tcp: Cache align ACK queue header.
[dragonfly.git] / lib / libutil / login_ok.c
blobb0637ef84899f3ffa8758124c9d76246687056eb
1 /*-
2 * Copyright (c) 1996 by
3 * David Nugent <davidn@blaze.net.au>
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, is permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice immediately at the beginning of the file, without modification,
11 * this list of conditions, and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. This work was done expressly for inclusion into FreeBSD. Other use
16 * is permitted provided this notation is included.
17 * 4. Absolutely no warranty of function or purpose is made by the authors.
18 * 5. Modifications may be freely made to this file providing the above
19 * conditions are met.
21 * Support allow/deny lists in login class capabilities
23 * $FreeBSD: head/lib/libutil/login_ok.c 154414 2006-01-16 00:28:11Z rwatson $
26 #include <sys/types.h>
27 #include <sys/time.h>
28 #include <sys/resource.h>
29 #include <sys/param.h>
30 #include <errno.h>
31 #include <fnmatch.h>
32 #include <login_cap.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <ttyent.h>
36 #include <unistd.h>
39 /* -- support functions -- */
42 * login_strinlist()
43 * This function is intentionally public - reused by TAS.
44 * Returns TRUE (non-zero) if a string matches a pattern
45 * in a given array of patterns. 'flags' is passed directly
46 * to fnmatch(3).
49 int
50 login_strinlist(const char **list, char const *str, int flags)
52 int rc = 0;
54 if (str != NULL && *str != '\0') {
55 int i = 0;
57 while (rc == 0 && list[i] != NULL)
58 rc = fnmatch(list[i++], str, flags) == 0;
60 return rc;
65 * login_str2inlist()
66 * Locate either or two strings in a given list
69 int
70 login_str2inlist(const char **ttlst, const char *str1, const char *str2, int flags)
72 int rc = 0;
74 if (login_strinlist(ttlst, str1, flags))
75 rc = 1;
76 else if (login_strinlist(ttlst, str2, flags))
77 rc = 1;
78 return rc;
83 * login_timelist()
84 * This function is intentionally public - reused by TAS.
85 * Returns an allocated list of time periods given an array
86 * of time periods in ascii form.
89 login_time_t *
90 login_timelist(login_cap_t *lc, char const *cap, int *ltno,
91 login_time_t **ltptr)
93 int j = 0;
94 struct login_time *lt = NULL;
95 const char **tl;
97 if ((tl = login_getcaplist(lc, cap, NULL)) != NULL) {
99 while (tl[j++] != NULL)
101 if (*ltno >= j)
102 lt = *ltptr;
103 else if ((lt = realloc(*ltptr, j * sizeof(struct login_time))) != NULL) {
104 *ltno = j;
105 *ltptr = lt;
107 if (lt != NULL) {
108 int i = 0;
110 for (--j; i < j; i++)
111 lt[i] = parse_lt(tl[i]);
112 lt[i].lt_dow = LTM_NONE;
115 return lt;
120 * login_ttyok()
121 * This function is a variation of auth_ttyok(), but it checks two
122 * arbitrary capability lists not necessarily related to access.
123 * This hook is provided for the accounted/exclude accounting lists.
127 login_ttyok(login_cap_t *lc, const char *tty, const char *allowcap,
128 const char *denycap)
130 int rc = 1;
132 if (lc != NULL && tty != NULL && *tty != '\0') {
133 struct ttyent *te;
134 char *grp;
135 const char **ttl;
137 te = getttynam(tty); /* Need group name */
138 grp = te ? te->ty_group : NULL;
139 ttl = login_getcaplist(lc, allowcap, NULL);
141 if (ttl != NULL && !login_str2inlist(ttl, tty, grp, 0))
142 rc = 0; /* tty or ttygroup not in allow list */
143 else {
145 ttl = login_getcaplist(lc, denycap, NULL);
146 if (ttl != NULL && login_str2inlist(ttl, tty, grp, 0))
147 rc = 0; /* tty or ttygroup in deny list */
151 return rc;
156 * auth_ttyok()
157 * Determine whether or not login on a tty is accessible for
158 * a login class
162 auth_ttyok(login_cap_t *lc, const char * tty)
164 return login_ttyok(lc, tty, "ttys.allow", "ttys.deny");
169 * login_hostok()
170 * This function is a variation of auth_hostok(), but it checks two
171 * arbitrary capability lists not necessarily related to access.
172 * This hook is provided for the accounted/exclude accounting lists.
176 login_hostok(login_cap_t *lc, const char *host, const char *ip,
177 const char *allowcap, const char *denycap)
179 int rc = 1; /* Default is ok */
181 if (lc != NULL &&
182 ((host != NULL && *host != '\0') || (ip != NULL && *ip != '\0'))) {
183 const char **hl;
185 hl = login_getcaplist(lc, allowcap, NULL);
186 if (hl != NULL && !login_str2inlist(hl, host, ip, FNM_CASEFOLD))
187 rc = 0; /* host or IP not in allow list */
188 else {
190 hl = login_getcaplist(lc, denycap, NULL);
191 if (hl != NULL && login_str2inlist(hl, host, ip, FNM_CASEFOLD))
192 rc = 0; /* host or IP in deny list */
196 return rc;
201 * auth_hostok()
202 * Determine whether or not login from a host is ok
206 auth_hostok(login_cap_t *lc, const char *host, const char *ip)
208 return login_hostok(lc, host, ip, "host.allow", "host.deny");
213 * auth_timeok()
214 * Determine whether or not login is ok at a given time
218 auth_timeok(login_cap_t *lc, time_t t)
220 int rc = 1; /* Default is ok */
222 if (lc != NULL && t != (time_t)0 && t != (time_t)-1) {
223 struct tm *tptr;
225 static int ltimesno = 0;
226 static struct login_time *ltimes = NULL;
228 if ((tptr = localtime(&t)) != NULL) {
229 struct login_time *lt;
231 lt = login_timelist(lc, "times.allow", &ltimesno, &ltimes);
232 if (lt != NULL && in_ltms(lt, tptr, NULL) == -1)
233 rc = 0; /* not in allowed times list */
234 else {
236 lt = login_timelist(lc, "times.deny", &ltimesno, &ltimes);
237 if (lt != NULL && in_ltms(lt, tptr, NULL) != -1)
238 rc = 0; /* in deny times list */
240 if (ltimes) {
241 free(ltimes);
242 ltimes = NULL;
243 ltimesno = 0;
248 return rc;