2 * Copyright (c) 1996 by
3 * Sean Eric Fagan <sef@kithrup.com>
4 * David Nugent <davidn@blaze.net.au>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, is permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice immediately at the beginning of the file, without modification,
12 * this list of conditions, and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. This work was done expressly for inclusion into FreeBSD. Other use
17 * is permitted provided this notation is included.
18 * 4. Absolutely no warranty of function or purpose is made by the authors.
19 * 5. Modifications may be freely made to this file providing the above
22 * High-level routines relating to use of the user capabilities database
25 #include <sys/cdefs.h>
26 __FBSDID("$FreeBSD$");
28 #include <sys/types.h>
29 #include <sys/param.h>
32 #include <sys/resource.h>
33 #include <sys/cpuset.h>
35 #include <sys/rtprio.h>
38 #include <login_cap.h>
48 static struct login_res
{
50 rlim_t (*who
)(login_cap_t
*, const char *, rlim_t
, rlim_t
);
53 { "cputime", login_getcaptime
, RLIMIT_CPU
},
54 { "filesize", login_getcapsize
, RLIMIT_FSIZE
},
55 { "datasize", login_getcapsize
, RLIMIT_DATA
},
56 { "stacksize", login_getcapsize
, RLIMIT_STACK
},
57 { "memoryuse", login_getcapsize
, RLIMIT_RSS
},
58 { "memorylocked", login_getcapsize
, RLIMIT_MEMLOCK
},
59 { "maxproc", login_getcapnum
, RLIMIT_NPROC
},
60 { "openfiles", login_getcapnum
, RLIMIT_NOFILE
},
61 { "coredumpsize", login_getcapsize
, RLIMIT_CORE
},
62 { "sbsize", login_getcapsize
, RLIMIT_SBSIZE
},
63 { "vmemoryuse", login_getcapsize
, RLIMIT_VMEM
},
64 { "pseudoterminals", login_getcapnum
, RLIMIT_NPTS
},
70 setclassresources(login_cap_t
*lc
)
77 for (lr
= resources
; lr
->what
!= NULL
; ++lr
) {
81 * The login.conf file can have <limit>, <limit>-max, and
82 * <limit>-cur entries.
83 * What we do is get the current current- and maximum- limits.
84 * Then, we try to get an entry for <limit> from the capability,
85 * using the current and max limits we just got as the
86 * default/error values.
87 * *Then*, we try looking for <limit>-cur and <limit>-max,
88 * again using the appropriate values as the default/error
92 if (getrlimit(lr
->why
, &rlim
) != 0)
93 syslog(LOG_ERR
, "getting %s resource limit: %m", lr
->what
);
97 rlim_t rcur
= rlim
.rlim_cur
;
98 rlim_t rmax
= rlim
.rlim_max
;
100 sprintf(name_cur
, "%s-cur", lr
->what
);
101 sprintf(name_max
, "%s-max", lr
->what
);
103 rcur
= (*lr
->who
)(lc
, lr
->what
, rcur
, rcur
);
104 rmax
= (*lr
->who
)(lc
, lr
->what
, rmax
, rmax
);
105 rlim
.rlim_cur
= (*lr
->who
)(lc
, name_cur
, rcur
, rcur
);
106 rlim
.rlim_max
= (*lr
->who
)(lc
, name_max
, rmax
, rmax
);
108 if (setrlimit(lr
->why
, &rlim
) == -1)
109 syslog(LOG_WARNING
, "set class '%s' resource limit %s: %m", lc
->lc_class
, lr
->what
);
116 static struct login_vars
{
122 { "path", "PATH", NULL
, 1},
123 { "cdpath", "CDPATH", NULL
, 1},
124 { "manpath", "MANPATH", NULL
, 1},
125 { NULL
, NULL
, NULL
, 0}
127 { "lang", "LANG", NULL
, 1},
128 { "charset", "MM_CHARSET", NULL
, 1},
129 { "timezone", "TZ", NULL
, 1},
130 { "term", "TERM", NULL
, 0},
131 { NULL
, NULL
, NULL
, 0}
135 substvar(const char * var
, const struct passwd
* pwd
, int hlen
, int pch
, int nlen
)
145 /* Count the number of ~'s in var to substitute */
146 for (p
= (char *)var
; (p
= strchr(p
, '~')) != NULL
; p
++)
148 /* Count the number of $'s in var to substitute */
149 for (p
= (char *)var
; (p
= strchr(p
, '$')) != NULL
; p
++)
153 np
= malloc(strlen(var
) + (dollas
* nlen
)
154 - dollas
+ (tildes
* (pch
+hlen
))
162 * This loop does user username and homedir substitutions
163 * for unescaped $ (username) and ~ (homedir)
165 while (*(p
+= strcspn(p
, "~$")) != '\0') {
168 if (p
> np
&& *(p
-1) == '\\') /* Escaped: */
169 memmove(p
- 1, p
, l
+ 1); /* Slide-out the backslash */
170 else if (*p
== '~') {
171 int v
= pch
&& *(p
+1) != '/'; /* Avoid double // */
172 memmove(p
+ hlen
+ v
, p
+ 1, l
); /* Subst homedir */
173 memmove(p
, pwd
->pw_dir
, hlen
);
178 else /* if (*p == '$') */ {
179 memmove(p
+ nlen
, p
+ 1, l
); /* Subst username */
180 memmove(p
, pwd
->pw_name
, nlen
);
193 setclassenvironment(login_cap_t
*lc
, const struct passwd
* pwd
, int paths
)
195 struct login_vars
*vars
= paths
? pathvars
: envars
;
196 int hlen
= pwd
? strlen(pwd
->pw_dir
) : 0;
197 int nlen
= pwd
? strlen(pwd
->pw_name
) : 0;
200 if (hlen
&& pwd
->pw_dir
[hlen
-1] != '/')
203 while (vars
->tag
!= NULL
) {
204 const char * var
= paths
? login_getpath(lc
, vars
->tag
, NULL
)
205 : login_getcapstr(lc
, vars
->tag
, NULL
, NULL
);
207 char * np
= substvar(var
, pwd
, hlen
, pch
, nlen
);
210 setenv(vars
->var
, np
, vars
->overwrite
);
212 } else if (vars
->def
!= NULL
) {
213 setenv(vars
->var
, vars
->def
, 0);
219 * If we're not processing paths, then see if there is a setenv list by
220 * which the admin and/or user may set an arbitrary set of env vars.
223 const char **set_env
= login_getcaplist(lc
, "setenv", ",");
225 if (set_env
!= NULL
) {
226 while (*set_env
!= NULL
) {
227 char *p
= strchr(*set_env
, '=');
229 if (p
!= NULL
) { /* Discard invalid entries */
233 if ((np
= substvar(p
, pwd
, hlen
, pch
, nlen
)) != NULL
) {
234 setenv(*set_env
, np
, 1);
246 list2cpuset(const char *list
, cpuset_t
*mask
)
248 enum { NONE
, NUM
, DASH
} state
;
254 curnum
= lastnum
= 0;
255 for (l
= list
; *l
!= '\0';) {
258 if (curnum
> CPU_SETSIZE
)
260 "Only %d cpus supported", CPU_SETSIZE
);
269 for (; lastnum
<= curnum
; lastnum
++)
270 CPU_SET(lastnum
, mask
);
285 CPU_SET(curnum
, mask
);
307 CPU_SET(curnum
, mask
);
317 setclasscpumask(login_cap_t
*lc
)
323 maskstr
= login_getcapstr(lc
, "cpumask", NULL
, NULL
);
327 if (strcasecmp("default", maskstr
) == 0)
329 if (!list2cpuset(maskstr
, &maskset
)) {
331 "list2cpuset(%s) invalid mask specification", maskstr
);
335 if (cpuset(&setid
) != 0) {
336 syslog(LOG_ERR
, "cpuset(): %s", strerror(errno
));
340 if (cpuset_setaffinity(CPU_LEVEL_CPUSET
, CPU_WHICH_PID
, -1,
341 sizeof(maskset
), &maskset
) != 0)
342 syslog(LOG_ERR
, "cpuset_setaffinity(%s): %s", maskstr
,
350 * For the login class <class>, set various class context values
351 * (limits, mainly) to the values for that class. Which values are
352 * set are controlled by <flags> -- see <login_class.h> for the
355 * setclasscontext() can only set resources, priority, and umask.
359 setclasscontext(const char *classname
, unsigned int flags
)
364 lc
= login_getclassbyname(classname
, NULL
);
366 flags
&= LOGIN_SETRESOURCES
| LOGIN_SETPRIORITY
|
367 LOGIN_SETUMASK
| LOGIN_SETPATH
;
369 rc
= lc
? setusercontext(lc
, NULL
, 0, flags
) : -1;
377 * Private function which takes care of processing
381 setlogincontext(login_cap_t
*lc
, const struct passwd
*pwd
,
382 mode_t mymask
, unsigned long flags
)
386 if (flags
& LOGIN_SETRESOURCES
)
387 setclassresources(lc
);
388 /* See if there's a umask override */
389 if (flags
& LOGIN_SETUMASK
)
390 mymask
= (mode_t
)login_getcapnum(lc
, "umask", mymask
, mymask
);
392 if (flags
& LOGIN_SETPATH
)
393 setclassenvironment(lc
, pwd
, 1);
394 /* Set environment */
395 if (flags
& LOGIN_SETENV
)
396 setclassenvironment(lc
, pwd
, 0);
397 /* Set cpu affinity */
398 if (flags
& LOGIN_SETCPUMASK
)
409 * Given a login class <lc> and a user in <pwd>, with a uid <uid>,
410 * set the context as in setclasscontext(). <flags> controls which
413 * The difference between setclasscontext() and setusercontext() is
414 * that the former sets things up for an already-existing process,
415 * while the latter sets things up from a root context. Such as might
416 * be called from login(1).
421 setusercontext(login_cap_t
*lc
, const struct passwd
*pwd
, uid_t uid
, unsigned int flags
)
425 login_cap_t
*llc
= NULL
;
430 if (pwd
!= NULL
&& (lc
= login_getpwclass(pwd
)) != NULL
)
431 llc
= lc
; /* free this when we're done */
434 if (flags
& LOGIN_SETPATH
)
435 pathvars
[0].def
= uid
? _PATH_DEFPATH
: _PATH_STDPATH
;
437 /* we need a passwd entry to set these */
439 flags
&= ~(LOGIN_SETGROUP
| LOGIN_SETLOGIN
| LOGIN_SETMAC
);
441 /* Set the process priority */
442 if (flags
& LOGIN_SETPRIORITY
) {
443 p
= login_getcapnum(lc
, "priority", LOGIN_DEFPRI
, LOGIN_DEFPRI
);
446 rtp
.type
= RTP_PRIO_IDLE
;
447 rtp
.prio
= p
- PRIO_MAX
- 1;
448 p
= (rtp
.prio
> RTP_PRIO_MAX
) ? 31 : p
;
449 if (rtprio(RTP_SET
, 0, &rtp
))
450 syslog(LOG_WARNING
, "rtprio '%s' (%s): %m",
451 pwd
->pw_name
, lc
? lc
->lc_class
: LOGIN_DEFCLASS
);
452 } else if (p
< PRIO_MIN
) {
453 rtp
.type
= RTP_PRIO_REALTIME
;
454 rtp
.prio
= abs(p
- PRIO_MIN
+ RTP_PRIO_MAX
);
455 p
= (rtp
.prio
> RTP_PRIO_MAX
) ? 1 : p
;
456 if (rtprio(RTP_SET
, 0, &rtp
))
457 syslog(LOG_WARNING
, "rtprio '%s' (%s): %m",
458 pwd
->pw_name
, lc
? lc
->lc_class
: LOGIN_DEFCLASS
);
460 if (setpriority(PRIO_PROCESS
, 0, (int)p
) != 0)
461 syslog(LOG_WARNING
, "setpriority '%s' (%s): %m",
462 pwd
->pw_name
, lc
? lc
->lc_class
: LOGIN_DEFCLASS
);
466 /* Setup the user's group permissions */
467 if (flags
& LOGIN_SETGROUP
) {
468 if (setgid(pwd
->pw_gid
) != 0) {
469 syslog(LOG_ERR
, "setgid(%lu): %m", (u_long
)pwd
->pw_gid
);
473 if (initgroups(pwd
->pw_name
, pwd
->pw_gid
) == -1) {
474 syslog(LOG_ERR
, "initgroups(%s,%lu): %m", pwd
->pw_name
,
475 (u_long
)pwd
->pw_gid
);
481 /* Set up the user's MAC label. */
482 if ((flags
& LOGIN_SETMAC
) && mac_is_present(NULL
) == 1) {
483 const char *label_string
;
486 label_string
= login_getcapstr(lc
, "label", NULL
, NULL
);
487 if (label_string
!= NULL
) {
488 if (mac_from_text(&label
, label_string
) == -1) {
489 syslog(LOG_ERR
, "mac_from_text('%s') for %s: %m",
490 pwd
->pw_name
, label_string
);
493 if (mac_set_proc(label
) == -1)
499 syslog(LOG_ERR
, "mac_set_proc('%s') for %s: %s",
500 label_string
, pwd
->pw_name
, strerror(error
));
506 /* Set the sessions login */
507 if ((flags
& LOGIN_SETLOGIN
) && setlogin(pwd
->pw_name
) != 0) {
508 syslog(LOG_ERR
, "setlogin(%s): %m", pwd
->pw_name
);
513 mymask
= (flags
& LOGIN_SETUMASK
) ? umask(LOGIN_DEFUMASK
) : 0;
514 mymask
= setlogincontext(lc
, pwd
, mymask
, flags
);
517 /* This needs to be done after anything that needs root privs */
518 if ((flags
& LOGIN_SETUSER
) && setuid(uid
) != 0) {
519 syslog(LOG_ERR
, "setuid(%lu): %m", (u_long
)uid
);
520 return -1; /* Paranoia again */
524 * Now, we repeat some of the above for the user's private entries
526 if ((lc
= login_getuserclass(pwd
)) != NULL
) {
527 mymask
= setlogincontext(lc
, pwd
, mymask
, flags
);
531 /* Finally, set any umask we've found */
532 if (flags
& LOGIN_SETUMASK
)