]>
git.cameronkatri.com Git - pw-darwin.git/blob - libutil/login_cap.c
8347b5100dcce4a44d5f27a4af86fa0b0c541227
2 * Copyright (c) 1996 by
3 * Sean Eric Fagan <sef@kithrup.com>
4 * David Nugent <davidn@blaze.net.au>
7 * Portions copyright (c) 1995,1997
8 * Berkeley Software Design, Inc.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, is permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice immediately at the beginning of the file, without modification,
16 * this list of conditions, and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. This work was done expressly for inclusion into FreeBSD. Other use
21 * is permitted provided this notation is included.
22 * 4. Absolutely no warranty of function or purpose is made by the authors.
23 * 5. Modifications may be freely made to this file providing the above
26 * Low-level routines relating to the user capabilities database
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
32 #include <sys/types.h>
34 #include <sys/resource.h>
35 #include <sys/param.h>
39 #include <login_cap.h>
49 * Manage a single static pointer for handling a local char* buffer,
50 * resizing as necessary to contain the string.
53 * Manage a static array for handling a group of strings, resizing
57 static int lc_object_count
= 0;
59 static size_t internal_stringsz
= 0;
60 static char * internal_string
= NULL
;
61 static size_t internal_arraysz
= 0;
62 static const char ** internal_array
= NULL
;
65 allocstr(const char *str
)
69 size_t sz
= strlen(str
) + 1; /* realloc() only if necessary */
70 if (sz
<= internal_stringsz
)
71 p
= strcpy(internal_string
, str
);
72 else if ((p
= realloc(internal_string
, sz
)) != NULL
) {
73 internal_stringsz
= sz
;
74 internal_string
= strcpy(p
, str
);
83 static const char **p
;
85 if (sz
<= internal_arraysz
)
87 else if ((p
= realloc(internal_array
, sz
* sizeof(char*))) != NULL
) {
88 internal_arraysz
= sz
;
97 * Turn a simple string <str> separated by any of
98 * the set of <chars> into an array. The last element
99 * of the array will be NULL, as is proper.
100 * Free using freearraystr()
104 arrayize(const char *str
, const char *chars
, int *size
)
108 const char **res
= NULL
;
110 /* count the sub-strings */
111 for (i
= 0, ptr
= str
; *ptr
; i
++) {
112 int count
= strcspn(ptr
, chars
);
118 /* alloc the array */
119 if ((ptr
= allocstr(str
)) != NULL
) {
120 if ((res
= allocarray(++i
)) == NULL
)
123 /* now split the string */
126 int count
= strcspn(ptr
, chars
);
145 * Frees up all resources relating to a login class
150 login_close(login_cap_t
* lc
)
157 if (--lc_object_count
== 0) {
158 free(internal_string
);
159 free(internal_array
);
160 internal_array
= NULL
;
161 internal_arraysz
= 0;
162 internal_string
= NULL
;
163 internal_stringsz
= 0;
171 * login_getclassbyname() get the login class by its name.
172 * If the name given is NULL or empty, the default class
173 * LOGIN_DEFCLASS (ie. "default") is fetched. If the
174 * 'dir' argument contains a non-NULL non-empty string,
175 * then the file _FILE_LOGIN_CONF is picked up from that
176 * directory instead of the system login database.
177 * Return a filled-out login_cap_t structure, including
178 * class name, and the capability record buffer.
182 login_getclassbyname(char const *name
, const struct passwd
*pwd
)
186 if ((lc
= malloc(sizeof(login_cap_t
))) != NULL
) {
190 const char *msg
= NULL
;
192 char userpath
[MAXPATHLEN
];
194 static const char *login_dbarray
[] = { NULL
, NULL
, NULL
};
196 me
= (name
!= NULL
&& strcmp(name
, LOGIN_MECLASS
) == 0);
197 dir
= (!me
|| pwd
== NULL
) ? NULL
: pwd
->pw_dir
;
199 * Switch to user mode before checking/reading its ~/.login_conf
200 * - some NFSes have root read access disabled.
202 * XXX: This fails to configure additional groups.
207 (void)setegid(pwd
->pw_gid
);
208 (void)seteuid(pwd
->pw_uid
);
211 if (dir
&& snprintf(userpath
, MAXPATHLEN
, "%s/%s", dir
,
212 _FILE_LOGIN_CONF
) < MAXPATHLEN
) {
213 login_dbarray
[i
] = userpath
;
214 if (_secure_path(userpath
, pwd
->pw_uid
, pwd
->pw_gid
) != -1)
215 i
++; /* only use 'secure' data */
217 if (_secure_path(_PATH_LOGIN_CONF
, 0, 0) != -1)
218 login_dbarray
[i
++] = _PATH_LOGIN_CONF
;
219 login_dbarray
[i
] = NULL
;
221 memset(lc
, 0, sizeof(login_cap_t
));
222 lc
->lc_cap
= lc
->lc_class
= lc
->lc_style
= NULL
;
224 if (name
== NULL
|| *name
== '\0')
225 name
= LOGIN_DEFCLASS
;
227 switch (cgetent(&lc
->lc_cap
, login_dbarray
, name
)) {
228 case -1: /* Failed, entry does not exist */
230 break; /* Don't retry default on 'me' */
233 else if ((r
= open(login_dbarray
[0], O_RDONLY
)) >= 0)
236 * If there's at least one login class database,
237 * and we aren't searching for a default class
238 * then complain about a non-existent class.
240 if (r
>= 0 || strcmp(name
, LOGIN_DEFCLASS
) != 0)
241 syslog(LOG_ERR
, "login_getclass: unknown class '%s'", name
);
242 /* fall-back to default class */
243 name
= LOGIN_DEFCLASS
;
244 msg
= "%s: no default/fallback class '%s'";
245 if (cgetent(&lc
->lc_cap
, login_dbarray
, name
) != 0 && r
>= 0)
247 /* FALLTHROUGH - just return system defaults */
248 case 0: /* success! */
249 if ((lc
->lc_class
= strdup(name
)) != NULL
) {
257 msg
= "%s: strdup: %m";
260 msg
= "%s: retrieving class information: %m";
263 msg
= "%s: 'tc=' reference loop '%s'";
266 msg
= "couldn't resolve 'tc=' reference in '%s'";
269 msg
= "%s: unexpected cgetent() error '%s': %m";
277 syslog(LOG_ERR
, msg
, "login_getclass", name
);
288 * Get the login class for the system (only) login class database.
289 * Return a filled-out login_cap_t structure, including
290 * class name, and the capability record buffer.
294 login_getclass(const char *cls
)
296 return login_getclassbyname(cls
, NULL
);
302 * Get the login class for a given password entry from
303 * the system (only) login class database.
304 * If the password entry's class field is not set, or
305 * the class specified does not exist, then use the
306 * default of LOGIN_DEFCLASS (ie. "default").
307 * Return a filled-out login_cap_t structure, including
308 * class name, and the capability record buffer.
312 login_getpwclass(const struct passwd
*pwd
)
314 const char *cls
= NULL
;
318 if (cls
== NULL
|| *cls
== '\0')
319 cls
= (pwd
->pw_uid
== 0) ? LOGIN_DEFROOTCLASS
: LOGIN_DEFCLASS
;
321 return login_getclassbyname(cls
, pwd
);
326 * login_getuserclass()
327 * Get the login class for a given password entry, allowing user
328 * overrides via ~/.login_conf.
332 login_getuserclass(const struct passwd
*pwd
)
334 return login_getclassbyname(LOGIN_MECLASS
, pwd
);
341 * Given a login_cap entry, and a capability name, return the
342 * value defined for that capability, a defualt if not found, or
343 * an error string on error.
347 login_getcapstr(login_cap_t
*lc
, const char *cap
, const char *def
, const char *error
)
352 if (lc
== NULL
|| cap
== NULL
|| lc
->lc_cap
== NULL
|| *cap
== '\0')
355 if ((ret
= cgetstr(lc
->lc_cap
, cap
, &res
)) == -1)
357 return (ret
>= 0) ? res
: error
;
363 * Given a login_cap entry, and a capability name, return the
364 * value defined for that capability split into an array of
369 login_getcaplist(login_cap_t
*lc
, const char *cap
, const char *chars
)
375 if ((lstring
= login_getcapstr(lc
, cap
, NULL
, NULL
)) != NULL
)
376 return arrayize(lstring
, chars
, NULL
);
383 * From the login_cap_t <lc>, get the capability <cap> which is
384 * formatted as either a space or comma delimited list of paths
385 * and append them all into a string and separate by semicolons.
386 * If there is an error of any kind, return <error>.
390 login_getpath(login_cap_t
*lc
, const char *cap
, const char *error
)
396 str
= login_getcapstr(lc
, cap
, NULL
, NULL
);
399 ptr
= __DECONST(char *, str
); /* XXXX Yes, very dodgy */
401 count
= strcspn(ptr
, ", \t");
411 isinfinite(const char *s
)
413 static const char *infs
[] = {
421 const char **i
= &infs
[0];
424 if (strcasecmp(s
, *i
) == 0)
433 rmultiply(u_quad_t n1
, u_quad_t n2
)
440 /* Handle simple cases */
441 if (n1
== 0 || n2
== 0)
449 * sizeof() returns number of bytes needed for storage.
450 * This may be different from the actual number of useful bits.
453 bpw
= sizeof(u_quad_t
) * 8;
454 while (((u_quad_t
)1 << (bpw
-1)) == 0)
459 * First check the magnitude of each number. If the sum of the
460 * magnatude is way to high, reject the number. (If this test
461 * is not done then the first multiply below may overflow.)
463 for (b1
= bpw
; (((u_quad_t
)1 << (b1
-1)) & n1
) == 0; --b1
)
465 for (b2
= bpw
; (((u_quad_t
)1 << (b2
-1)) & n2
) == 0; --b2
)
467 if (b1
+ b2
- 2 > bpw
) {
473 * Decompose the multiplication to be:
478 * (h1 + l1) * (h2 + l2)
479 * (h1 * h2) + (h1 * l2) + (l1 * h2) + (l1 * l2)
481 * Since h1 && h2 do not have the low bit set, we can then say:
483 * (h1>>1 * h2>>1 * 4) + ...
485 * So if (h1>>1 * h2>>1) > (1<<(bpw - 2)) then the result will
488 * Finally, if MAX - ((h1 * l2) + (l1 * h2) + (l1 * l2)) < (h1*h2)
489 * then adding in residual amout will cause an overflow.
492 m
= (n1
>> 1) * (n2
>> 1);
493 if (m
>= ((u_quad_t
)1 << (bpw
-2))) {
500 + (n2
& 1) * (n1
& ~(u_quad_t
)1)
501 + (n1
& 1) * (n2
& ~(u_quad_t
)1);
503 if ((u_quad_t
)(m
+ r
) < m
) {
515 * From the login_cap_t <lc>, get the capability <cap>, which is
516 * formatted as a time (e.g., "<cap>=10h3m2s"). If <cap> is not
517 * present in <lc>, return <def>; if there is an error of some kind,
522 login_getcaptime(login_cap_t
*lc
, const char *cap
, rlim_t def
, rlim_t error
)
524 char *res
, *ep
, *oval
;
529 if (lc
== NULL
|| lc
->lc_cap
== NULL
)
533 * Look for <cap> in lc_cap.
534 * If it's not there (-1), return <def>.
535 * If there's an error, return <error>.
538 if ((r
= cgetstr(lc
->lc_cap
, cap
, &res
)) == -1)
545 /* "inf" and "infinity" are special cases */
547 return RLIM_INFINITY
;
550 * Now go through the string, turning something like 1h2m3s into
551 * an integral value. Whee.
558 rlim_t tim
= strtoq(res
, &ep
, 0);
561 if (ep
== NULL
|| ep
== res
|| errno
!= 0) {
563 syslog(LOG_WARNING
, "login_getcaptime: class '%s' bad value %s=%s",
564 lc
->lc_class
, cap
, oval
);
568 /* Look for suffixes */
572 break; /* end of string */
573 case 's': case 'S': /* seconds */
575 case 'm': case 'M': /* minutes */
578 case 'h': case 'H': /* hours */
581 case 'd': case 'D': /* days */
582 mult
= 60L * 60L * 24L;
584 case 'w': case 'W': /* weeks */
585 mult
= 60L * 60L * 24L * 7L;
587 case 'y': case 'Y': /* 365-day years */
588 mult
= 60L * 60L * 24L * 365L;
594 tot
+= rmultiply(tim
, mult
);
605 * From the login_cap_t <lc>, extract the numerical value <cap>.
606 * If it is not present, return <def> for a default, and return
607 * <error> if there is an error.
608 * Like login_getcaptime(), only it only converts to a number, not
609 * to a time; "infinity" and "inf" are 'special.'
613 login_getcapnum(login_cap_t
*lc
, const char *cap
, rlim_t def
, rlim_t error
)
619 if (lc
== NULL
|| lc
->lc_cap
== NULL
)
623 * For BSDI compatibility, try for the tag=<val> first
625 if ((r
= cgetstr(lc
->lc_cap
, cap
, &res
)) == -1) {
627 /* string capability not present, so try for tag#<val> as numeric */
628 if ((r
= cgetnum(lc
->lc_cap
, cap
, &lval
)) == -1)
629 return def
; /* Not there, so return default */
640 return RLIM_INFINITY
;
643 val
= strtoq(res
, &ep
, 0);
644 if (ep
== NULL
|| ep
== res
|| errno
!= 0) {
645 syslog(LOG_WARNING
, "login_getcapnum: class '%s' bad value %s=%s",
646 lc
->lc_class
, cap
, res
);
658 * From the login_cap_t <lc>, extract the capability <cap>, which is
659 * formatted as a size (e.g., "<cap>=10M"); it can also be "infinity".
660 * If not present, return <def>, or <error> if there is an error of
665 login_getcapsize(login_cap_t
*lc
, const char *cap
, rlim_t def
, rlim_t error
)
667 char *ep
, *res
, *oval
;
671 if (lc
== NULL
|| lc
->lc_cap
== NULL
)
674 if ((r
= cgetstr(lc
->lc_cap
, cap
, &res
)) == -1)
682 return RLIM_INFINITY
;
688 rlim_t siz
= strtoq(res
, &ep
, 0);
691 if (ep
== NULL
|| ep
== res
|| errno
!= 0) {
693 syslog(LOG_WARNING
, "login_getcapsize: class '%s' bad value %s=%s",
694 lc
->lc_class
, cap
, oval
);
699 case 0: /* end of string */
702 case 'b': case 'B': /* 512-byte blocks */
705 case 'k': case 'K': /* 1024-byte Kilobytes */
708 case 'm': case 'M': /* 1024-k kbytes */
711 case 'g': case 'G': /* 1Gbyte */
712 mult
= 1024 * 1024 * 1024;
714 case 't': case 'T': /* 1TBte */
715 mult
= 1024LL * 1024LL * 1024LL * 1024LL;
721 tot
+= rmultiply(siz
, mult
);
732 * From the login_cap_t <lc>, check for the existance of the capability
733 * of <cap>. Return <def> if <lc>->lc_cap is NULL, otherwise return
734 * the whether or not <cap> exists there.
738 login_getcapbool(login_cap_t
*lc
, const char *cap
, int def
)
740 if (lc
== NULL
|| lc
->lc_cap
== NULL
)
742 return (cgetcap(lc
->lc_cap
, cap
, ':') != NULL
);
748 * Given a login_cap entry <lc>, and optionally a type of auth <auth>,
749 * and optionally a style <style>, find the style that best suits these
751 * 1. If <auth> is non-null, look for an "auth-<auth>=" string
752 * in the capability; if not present, default to "auth=".
753 * 2. If there is no auth list found from (1), default to
754 * "passwd" as an authorization list.
755 * 3. If <style> is non-null, look for <style> in the list of
756 * authorization methods found from (2); if <style> is NULL, default
757 * to LOGIN_DEFSTYLE ("passwd").
758 * 4. If the chosen style is found in the chosen list of authorization
759 * methods, return that; otherwise, return NULL.
761 * login_getstyle(lc, NULL, "ftp");
762 * login_getstyle(lc, "login", NULL);
763 * login_getstyle(lc, "skey", "network");
767 login_getstyle(login_cap_t
*lc
, const char *style
, const char *auth
)
770 const char **authtypes
= NULL
;
774 static const char *defauthtypes
[] = { LOGIN_DEFSTYLE
, NULL
};
776 if (auth
!= NULL
&& *auth
!= '\0') {
777 if (snprintf(realauth
, sizeof realauth
, "auth-%s", auth
) < (int)sizeof(realauth
))
778 authtypes
= login_getcaplist(lc
, realauth
, NULL
);
781 if (authtypes
== NULL
)
782 authtypes
= login_getcaplist(lc
, "auth", NULL
);
784 if (authtypes
== NULL
)
785 authtypes
= defauthtypes
;
788 * We have at least one authtype now; auths is a comma-separated
789 * (or space-separated) list of authentication types. We have to
790 * convert from this to an array of char*'s; authtypes then gets this.
793 if (style
!= NULL
&& *style
!= '\0') {
794 while (authtypes
[i
] != NULL
&& strcmp(style
, authtypes
[i
]) != 0)
799 if (authtypes
[i
] != NULL
&& (auths
= strdup(authtypes
[i
])) != NULL
)
800 lc
->lc_style
= auths
;
802 if (lc
->lc_style
!= NULL
)
803 lc
->lc_style
= strdup(lc
->lc_style
);