blob: d0f3022655c596b68afa8f0645dfd3846989442b [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
// suidhelper should be installed setuid root. Having done this, it will
// run the provided command as the specified user identity.
// suidhelper deliberately attempts to be as simple as possible to
// simplify reviewing it for security concerns.
import (
"flag"
"fmt"
"os"
"v.io/x/ref/services/device/internal/suid"
)
func main() {
flag.Parse()
fmt.Fprintln(os.Stderr, os.Args)
if err := suid.Run(os.Environ()); err != nil {
fmt.Fprintln(os.Stderr, "Failed with:", err)
// TODO(rjkroege): We should really only print the usage message
// if the error is related to interpreting flags.
flag.Usage()
}
}