diff options
author | Kay Sievers <kay.sievers@suse.de> | 2006-01-13 13:18:41 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@suse.de> | 2006-01-13 13:18:41 +0100 |
commit | e3440f37f026b1e45d48f27ef1be903542b385f0 (patch) | |
tree | 9cdfef94d3208365492f7047d745b03671774efe /extras/volume_id/vol_id.c | |
parent | d548032795b3c02aad606537a35ff63d954f1613 (diff) |
vol_id: probe volume as user nobody
Signed-off-by: Kay Sievers <kay.sievers@suse.de>
Diffstat (limited to 'extras/volume_id/vol_id.c')
-rw-r--r-- | extras/volume_id/vol_id.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/extras/volume_id/vol_id.c b/extras/volume_id/vol_id.c index a291eda51d..6961969c13 100644 --- a/extras/volume_id/vol_id.c +++ b/extras/volume_id/vol_id.c @@ -27,6 +27,7 @@ #include <unistd.h> #include <string.h> #include <ctype.h> +#include <grp.h> #include <sys/ioctl.h> #include "../../udev.h" @@ -110,6 +111,8 @@ int main(int argc, char *argv[]) int i; uint64_t size; const char *node = NULL; + uid_t nobody_uid; + gid_t nobody_gid; int rc = 0; logging_init("vol_id"); @@ -146,12 +149,24 @@ int main(int argc, char *argv[]) size = 0; dbg("BLKGETSIZE64=%llu", size); + /* drop all privileges */ + nobody_uid = lookup_user("nobody"); + nobody_gid = lookup_group("nogroup"); + if (nobody_uid > 0 && nobody_gid > 0) { + if (setgroups(0, NULL) != 0 || + setgid(nobody_gid) != 0 || + setuid(nobody_uid) != 0) { + rc = 3; + goto exit; + } + } + if (volume_id_probe_all(vid, 0, size) == 0) goto print; if (print != PRINT_EXPORT) fprintf(stderr, "%s: unknown volume type\n", node); - rc = 3; + rc = 4; goto exit; print: |