2 * Copyright (C) 2019 Red Hat Inc.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * * Neither the name of Red Hat nor the names of its contributors may be
16 * used to endorse or promote products derived from this software without
17 * specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
22 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
26 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
29 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43 #include <sys/types.h>
47 static uid_t
parseuser (const char *);
48 static gid_t
parsegroup (const char *);
50 /* Handle the -u and -g options. If user and group are non-NULL
51 * then this parses them to work out the UID/GID and changes
58 gid_t gid
= parsegroup (group
);
60 if (setgid (gid
) == -1) {
65 /* Kill supplemental groups from parent process. */
66 if (setgroups (1, &gid
) == -1) {
71 debug ("changed group to %s", group
);
75 uid_t uid
= parseuser (user
);
77 if (setuid (uid
) == -1) {
82 debug ("changed user to %s", user
);
87 parseuser (const char *id
)
100 if (nbdkit_parse_int ("parseuser", id
, &val
) == 0)
103 fprintf (stderr
, "%s: -u option: %s is not a valid user name or uid",
105 if (saved_errno
!= 0)
106 fprintf (stderr
, " (getpwnam error: %s)", strerror (saved_errno
));
107 fprintf (stderr
, "\n");
115 parsegroup (const char *id
)
128 if (nbdkit_parse_int ("parsegroup", id
, &val
) == 0)
131 fprintf (stderr
, "%s: -g option: %s is not a valid group name or gid",
133 if (saved_errno
!= 0)
134 fprintf (stderr
, " (getgrnam error: %s)", strerror (saved_errno
));
135 fprintf (stderr
, "\n");