-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
different from #817 in that it can resolve user names, automatically use user's primary gid & allows specifying gid in the same argument, with `:` eg `username:groupname`. feel free to criticize & suggest different argument name & description because i didn't put much of thought to that. --------- Co-authored-by: Neil <[email protected]> Co-authored-by: VNAT <[email protected]> Co-authored-by: Neil Alexander <[email protected]>
- Loading branch information
1 parent
c4b29b7
commit 34f087d
Showing
3 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
//go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris | ||
// +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris | ||
|
||
package main | ||
|
||
import "errors" | ||
|
||
func chuser(user string) error { | ||
return errors.New("setting uid/gid is not supported on this platform") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris | ||
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris | ||
|
||
package main | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
"math" | ||
osuser "os/user" | ||
"strconv" | ||
"strings" | ||
"syscall" | ||
) | ||
|
||
func chuser(user string) error { | ||
group := "" | ||
if i := strings.IndexByte(user, ':'); i >= 0 { | ||
user, group = user[:i], user[i+1:] | ||
} | ||
|
||
u := (*osuser.User)(nil) | ||
g := (*osuser.Group)(nil) | ||
|
||
if user != "" { | ||
if _, err := strconv.ParseUint(user, 10, 32); err == nil { | ||
u, err = osuser.LookupId(user) | ||
if err != nil { | ||
return fmt.Errorf("failed to lookup user by id %q: %v", user, err) | ||
} | ||
} else { | ||
u, err = osuser.Lookup(user) | ||
if err != nil { | ||
return fmt.Errorf("failed to lookup user by name %q: %v", user, err) | ||
} | ||
} | ||
} | ||
if group != "" { | ||
if _, err := strconv.ParseUint(group, 10, 32); err == nil { | ||
g, err = osuser.LookupGroupId(group) | ||
if err != nil { | ||
return fmt.Errorf("failed to lookup group by id %q: %v", user, err) | ||
} | ||
} else { | ||
g, err = osuser.LookupGroup(group) | ||
if err != nil { | ||
return fmt.Errorf("failed to lookup group by name %q: %v", user, err) | ||
} | ||
} | ||
} | ||
|
||
if g != nil { | ||
gid, _ := strconv.ParseUint(g.Gid, 10, 32) | ||
var err error | ||
if gid < math.MaxInt { | ||
err = syscall.Setgid(int(gid)) | ||
} else { | ||
err = errors.New("gid too big") | ||
} | ||
|
||
if err != nil { | ||
return fmt.Errorf("failed to setgid %d: %v", gid, err) | ||
} | ||
} else if u != nil { | ||
gid, _ := strconv.ParseUint(u.Gid, 10, 32) | ||
err := syscall.Setgid(int(uint32(gid))) | ||
if err != nil { | ||
return fmt.Errorf("failed to setgid %d: %v", gid, err) | ||
} | ||
} | ||
|
||
if u != nil { | ||
uid, _ := strconv.ParseUint(u.Uid, 10, 32) | ||
var err error | ||
if uid < math.MaxInt { | ||
err = syscall.Setuid(int(uid)) | ||
} else { | ||
err = errors.New("uid too big") | ||
} | ||
|
||
if err != nil { | ||
return fmt.Errorf("failed to setuid %d: %v", uid, err) | ||
} | ||
} | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters