如何使用 c以编程方式更改正在运行的外部进程的 uid 和 gid?
问问题
672 次
1 回答
3
一个小例子,其中包括使用现有用户和组名更改 uid 和 gid 的可能性:
#include <sys/types.h>
#include <unistd.h>
#include <pwd.h>
#include <grp.h>
// .. snip
// find user and group
struct passwd * pwd = getpwnam("new_user");
struct group * grp = getgrnam("new_group");
// not included : error checking
uid_t uid = pwd->pw_uid;
gid_t gid = grp->gr_gid;
setgid(gid);
setuid(uid);
编辑:这仅适用于当前进程
于 2012-04-05T10:35:30.100 回答