]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.sbin/mount_portalfs/cred.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.sbin / mount_portalfs / cred.c
1 /*-
2  * Copyright (C) 2005 Diomidis Spinellis. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  *
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <errno.h>
31 #include <stdlib.h>
32 #include <unistd.h>
33
34 #include <sys/types.h>
35 #include <sys/param.h>
36 #include <sys/syslog.h>
37
38 #include "portald.h"
39
40 /*
41  * Set the process's credentials to those specified in user,
42  * saveing the existing ones in save.
43  * Return 0 on success, -1 (with errno set) on error.
44  */
45 int
46 set_user_credentials(struct portal_cred *user, struct portal_cred *save)
47 {
48         save->pcr_uid = geteuid();
49         if ((save->pcr_ngroups = getgroups(NGROUPS_MAX, save->pcr_groups)) < 0)
50                 return (-1);
51         if (setgroups(user->pcr_ngroups, user->pcr_groups) < 0)
52                 return (-1);
53         if (seteuid(user->pcr_uid) < 0)
54                 return (-1);
55         return (0);
56 }
57
58 /*
59  * Restore the process's credentials to the ones specified in save.
60  * Log failures using LOG_ERR.
61  * Return 0 on success, -1 (with errno set) on error.
62  */
63 int
64 restore_credentials(struct portal_cred *save)
65 {
66         if (seteuid(save->pcr_uid) < 0) {
67                 syslog(LOG_ERR, "seteuid: %m");
68                 return (-1);
69         }
70         if (setgroups(save->pcr_ngroups, save->pcr_groups) < 0) {
71                 syslog(LOG_ERR, "setgroups: %m");
72                 return (-1);
73         }
74         return (0);
75 }