1 /* $NetBSD: getcap.c,v 1.1.1.2 2014/04/24 12:45:52 pettai Exp $ */
3 /* NetBSD: getcap.c,v 1.29 1999/03/29 09:27:29 abs Exp */
6 * Copyright (c) 1992, 1993
7 * The Regents of the University of California. All rights reserved.
9 * This code is derived from software contributed to Berkeley by
10 * Casey Leedom of Lawrence Livermore National Laboratory.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, 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. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 #include <krb5/roken.h>
41 #include <sys/types.h>
43 #if defined(HAVE_DB_185_H)
45 #elif defined(HAVE_DB_H)
60 #define ESC ('[' & 037) /* ASCII ESC */
61 #define MAX_RECURSION 32 /* maximum getent recursion */
62 #define SFRAG 100 /* cgetstr mallocs in SFRAG chunks */
66 #define SHADOW (char)2
68 static size_t topreclen
; /* toprec length */
69 static char *toprec
; /* Additional record specified by cgetset() */
70 static int gottoprec
; /* Flag indicating retrieval of toprecord */
73 * Don't use db support unless it's build into libc but we don't
74 * check for that now, so just disable the code.
76 #if defined(HAVE_DBOPEN) && defined(HAVE_DB_H)
82 static int cdbget (DB
*, char **, const char *);
84 static int getent (char **, size_t *, char **, int, const char *, int, char *);
85 static int nfcmp (char *, char *);
88 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
cgetset(const char *ent
);
89 ROKEN_LIB_FUNCTION
char * ROKEN_LIB_CALL
cgetcap(char *buf
, const char *cap
, int type
);
90 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
cgetent(char **buf
, char **db_array
, const char *name
);
91 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
cgetmatch(const char *buf
, const char *name
);
92 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
cgetclose(void);
94 int cgetfirst(char **buf
, char **db_array
);
95 int cgetnext(char **bp
, char **db_array
);
97 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
cgetstr(char *buf
, const char *cap
, char **str
);
98 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
cgetustr(char *buf
, const char *cap
, char **str
);
99 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
cgetnum(char *buf
, const char *cap
, long *num
);
101 * Cgetset() allows the addition of a user specified buffer to be added
102 * to the database array, in effect "pushing" the buffer on top of the
103 * virtual database. 0 is returned on success, -1 on failure.
105 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
106 cgetset(const char *ent
)
108 const char *source
, *check
;
118 topreclen
= strlen(ent
);
119 if ((toprec
= malloc (topreclen
+ 1)) == NULL
) {
127 while (*source
) { /* Strip whitespace */
128 *dest
++ = *source
++; /* Do not check first field */
129 while (*source
== ':') {
131 while (*check
&& (isspace((unsigned char)*check
) ||
132 (*check
=='\\' && isspace((unsigned char)check
[1]))))
147 * Cgetcap searches the capability record buf for the capability cap with
148 * type `type'. A pointer to the value of cap is returned on success, NULL
149 * if the requested capability couldn't be found.
151 * Specifying a type of ':' means that nothing should follow cap (:cap:).
152 * In this case a pointer to the terminating ':' or NUL will be returned if
155 * If (cap, '@') or (cap, terminator, '@') is found before (cap, terminator)
158 ROKEN_LIB_FUNCTION
char * ROKEN_LIB_CALL
159 cgetcap(char *buf
, const char *cap
, int type
)
167 * Skip past the current capability field - it's either the
168 * name field if this is the first time through the loop, or
169 * the remainder of a field whose name failed to match cap.
179 * Try to match (cap, type) in buf.
181 for (cp
= cap
; *cp
== *bp
&& *bp
!= '\0'; cp
++, bp
++)
188 if (*bp
!= '\0' && *bp
!= ':')
195 return (*bp
== '@' ? NULL
: bp
);
201 * Cgetent extracts the capability record name from the NULL terminated file
202 * array db_array and returns a pointer to a malloc'd copy of it in buf.
203 * Buf must be retained through all subsequent calls to cgetcap, cgetnum,
204 * cgetflag, and cgetstr, but may then be free'd. 0 is returned on success,
205 * -1 if the requested record couldn't be found, -2 if a system error was
206 * encountered (couldn't open/read a file, etc.), and -3 if a potential
207 * reference loop is detected.
209 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
210 cgetent(char **buf
, char **db_array
, const char *name
)
214 return (getent(buf
, &dummy
, db_array
, -1, name
, 0, NULL
));
218 * Getent implements the functions of cgetent. If fd is non-negative,
219 * *db_array has already been opened and fd is the open file descriptor. We
220 * do this to save time and avoid using up file descriptors for tc=
223 * Getent returns the same success/failure codes as cgetent. On success, a
224 * pointer to a malloc'ed capability record with all tc= capabilities fully
225 * expanded and its length (not including trailing ASCII NUL) are left in
229 * + Allocate memory incrementally as needed in chunks of size BFRAG
230 * for capability buffer.
231 * + Recurse for each tc=name and interpolate result. Stop when all
232 * names interpolated, a name can't be found, or depth exceeds
236 getent(char **cap
, size_t *len
, char **db_array
, int fd
,
237 const char *name
, int depth
, char *nfield
)
239 char *r_end
, *rp
= NULL
, **db_p
; /* pacify gcc */
240 int myfd
= 0, eof
, foundit
;
245 * Return with ``loop detected'' error if we've recursed more than
246 * MAX_RECURSION times.
248 if (depth
> MAX_RECURSION
)
252 * Check if we have a top record from cgetset().
254 if (depth
== 0 && toprec
!= NULL
&& cgetmatch(toprec
, name
) == 0) {
255 size_t len
= topreclen
+ BFRAG
;
256 if ((record
= malloc (len
)) == NULL
) {
260 (void)strlcpy(record
, toprec
, len
);
262 rp
= record
+ topreclen
+ 1;
267 * Allocate first chunk of memory.
269 if ((record
= malloc(BFRAG
)) == NULL
) {
273 r_end
= record
+ BFRAG
;
276 * Loop through database array until finding the record.
279 for (db_p
= db_array
; *db_p
!= NULL
; db_p
++) {
283 * Open database if not already open.
287 (void)lseek(fd
, (off_t
)0, SEEK_SET
);
290 char pbuf
[_POSIX_PATH_MAX
];
296 (void)snprintf(pbuf
, sizeof(pbuf
), "%s.db", *db_p
);
297 if ((capdbp
= dbopen(pbuf
, O_RDONLY
, 0, DB_HASH
, 0))
300 retval
= cdbget(capdbp
, &record
, name
);
302 /* no record available */
303 (void)capdbp
->close(capdbp
);
306 /* save the data; close frees it */
307 clen
= strlen(record
);
308 cbuf
= malloc(clen
+ 1);
311 memmove(cbuf
, record
, clen
+ 1);
312 if (capdbp
->close(capdbp
) < 0) {
322 fd
= open(*db_p
, O_RDONLY
, 0);
324 /* No error on unfound file. */
331 * Find the requested capability record ...
335 char *b_end
, *bp
, *cp
;
340 * There is always room for one more character in record.
341 * R_end always points just past end of record.
342 * Rp always points just past last character in record.
343 * B_end always points just past last character in buf.
344 * Bp always points at next character in buf.
345 * Cp remembers where the last colon was.
354 * Read in a line implementing (\, newline)
362 n
= read(fd
, buf
, sizeof(buf
));
394 * If the field was `empty' (i.e.
395 * contained only white space), back up
396 * to the colon (eliminating the
403 } else if (c
== '\\') {
405 } else if (c
!= ' ' && c
!= '\t') {
407 * Forget where the colon was, as this
408 * is not an empty field.
415 * Enforce loop invariant: if no room
416 * left in record buffer, try to get
424 newsize
= r_end
- record
+ BFRAG
;
425 record
= realloc(record
, newsize
);
426 if (record
== NULL
) {
432 r_end
= record
+ newsize
;
436 /* Eliminate any white space after the last colon. */
439 /* Loop invariant lets us do this. */
443 * If encountered eof check next file.
449 * Toss blank lines and comments.
451 if (*record
== '\0' || *record
== '#')
455 * See if this is the record we want ...
457 if (cgetmatch(record
, name
) == 0) {
458 if (nfield
== NULL
|| !nfcmp(nfield
, record
)) {
460 break; /* found it! */
473 * Got the capability record, but now we have to expand all tc=name
474 * references in it ...
478 size_t ilen
, newilen
;
479 int diff
, iret
, tclen
;
480 char *icap
, *scan
, *tc
, *tcstart
, *tcend
;
484 * There is room for one more character in record.
485 * R_end points just past end of record.
486 * Rp points just past last character in record.
487 * Scan points at remainder of record that needs to be
488 * scanned for tc=name constructs.
493 if ((tc
= cgetcap(scan
, "tc", '=')) == NULL
)
497 * Find end of tc=name and stomp on the trailing `:'
498 * (if present) so we can use it to call ourselves.
513 iret
= getent(&icap
, &ilen
, db_p
, fd
, tc
, depth
+1,
515 newicap
= icap
; /* Put into a register. */
527 /* couldn't resolve tc */
536 /* not interested in name field of tc'ed record */
544 newilen
-= s
- newicap
;
547 /* make sure interpolated record is `:'-terminated */
550 *s
= ':'; /* overwrite NUL with : */
555 * Make sure there's enough room to insert the
558 diff
= newilen
- tclen
;
559 if (diff
>= r_end
- rp
) {
560 u_int pos
, tcpos
, tcposend
;
564 newsize
= r_end
- record
+ diff
+ BFRAG
;
565 tcpos
= tcstart
- record
;
566 tcposend
= tcend
- record
;
567 record
= realloc(record
, newsize
);
568 if (record
== NULL
) {
575 r_end
= record
+ newsize
;
577 tcstart
= record
+ tcpos
;
578 tcend
= record
+ tcposend
;
582 * Insert tc'ed record into our record.
584 s
= tcstart
+ newilen
;
585 memmove(s
, tcend
, (size_t)(rp
- tcend
));
586 memmove(tcstart
, newicap
, newilen
);
591 * Start scan on `:' so next cgetcap works properly
592 * (cgetcap always skips first field).
599 * Close file (if we opened it), give back any extra memory, and
600 * return capability, length and success.
604 *len
= rp
- record
- 1; /* don't count NUL */
607 realloc(record
, (size_t)(rp
- record
))) == NULL
) {
620 cdbget(DB
*capdbp
, char **bp
, const char *name
)
625 /* LINTED key is not modified */
626 key
.data
= (char *)name
;
627 key
.size
= strlen(name
);
630 /* Get the reference. */
631 switch(capdbp
->get(capdbp
, &key
, &data
, 0)) {
638 /* If not an index to another record, leave. */
639 if (((char *)data
.data
)[0] != SHADOW
)
642 key
.data
= (char *)data
.data
+ 1;
643 key
.size
= data
.size
- 1;
646 *bp
= (char *)data
.data
+ 1;
647 return (((char *)(data
.data
))[0] == TCERR
? 1 : 0);
652 * Cgetmatch will return 0 if name is one of the names of the capability
653 * record buf, -1 if not.
656 cgetmatch(const char *buf
, const char *name
)
661 * Start search at beginning of record.
666 * Try to match a record name.
671 if (*bp
== '|' || *bp
== ':' || *bp
== '\0')
680 * Match failed, skip to next name in record.
682 bp
--; /* a '|' or ':' may have stopped the match */
684 if (*bp
== '\0' || *bp
== ':')
685 return (-1); /* match failed totally */
688 break; /* found next name */
694 cgetfirst(char **buf
, char **db_array
)
697 return (cgetnext(buf
, db_array
));
705 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
720 * Cgetnext() gets either the first or next entry in the logical database
721 * specified by db_array. It returns 0 upon completion of the database, 1
722 * upon returning an entry with more remaining, and -1 if an error occurs.
725 cgetnext(char **bp
, char **db_array
)
729 char *cp
, *line
, *rp
, *np
, buf
[BSIZE
], nbuf
[BSIZE
];
735 if (pfp
== NULL
&& (pfp
= fopen(*dbp
, "r")) == NULL
) {
740 if (toprec
&& !gottoprec
) {
744 line
= fgetln(pfp
, &len
);
745 if (line
== NULL
&& pfp
) {
752 if (*++dbp
== NULL
) {
756 fopen(*dbp
, "r")) == NULL
) {
763 line
[len
- 1] = '\0';
768 if (isspace((unsigned char)*line
) ||
769 *line
== ':' || *line
== '#' || slash
) {
770 if (line
[len
- 2] == '\\')
776 if (line
[len
- 2] == '\\')
784 * Line points to a name line.
789 for (cp
= line
; *cp
!= '\0'; cp
++) {
802 } else { /* name field extends beyond the line */
803 line
= fgetln(pfp
, &len
);
804 if (line
== NULL
&& pfp
) {
814 line
[len
- 1] = '\0';
818 for(cp
= nbuf
; *cp
!= '\0'; cp
++)
819 if (*cp
== '|' || *cp
== ':')
827 * Last argument of getent here should be nbuf if we want true
828 * sequential access in the case of duplicates.
829 * With NULL, getent will return the first entry found
830 * rather than the duplicate entry record. This is a
831 * matter of semantics that should be resolved.
833 status
= getent(bp
, &dummy
, db_array
, -1, buf
, 0, NULL
);
834 if (status
== -2 || status
== -3)
844 * Cgetstr retrieves the value of the string capability cap from the
845 * capability record pointed to by buf. A pointer to a decoded, NUL
846 * terminated, malloc'd copy of the string is returned in the char *
847 * pointed to by str. The length of the string not including the trailing
848 * NUL is returned on success, -1 if the requested string capability
849 * couldn't be found, -2 if a system error was encountered (storage
850 * allocation failure).
852 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
853 cgetstr(char *buf
, const char *cap
, char **str
)
864 * Find string capability cap
866 bp
= cgetcap(buf
, cap
, '=');
871 * Conversion / storage allocation loop ... Allocate memory in
872 * chunks SFRAG in size.
874 if ((mem
= malloc(SFRAG
)) == NULL
) {
876 return (-2); /* couldn't even allocate the first fragment */
881 while (*bp
!= ':' && *bp
!= '\0') {
884 * There is always room for one more character in mem.
885 * Mp always points just past last character in mem.
886 * Bp always points at next character in buf.
890 if (*bp
== ':' || *bp
== '\0')
891 break; /* drop unfinished escape */
893 } else if (*bp
== '\\') {
895 if (*bp
== ':' || *bp
== '\0')
896 break; /* drop unfinished escape */
897 if ('0' <= *bp
&& *bp
<= '7') {
901 i
= 3; /* maximum of three octal digits */
903 n
= n
* 8 + (*bp
++ - '0');
904 } while (--i
&& '0' <= *bp
&& *bp
<= '7');
907 else switch (*bp
++) {
931 * Catches '\', '^', and
942 * Enforce loop invariant: if no room left in current
943 * buffer, try to get some more.
946 size_t size
= mp
- mem
;
948 if ((nmem
= realloc(mem
, size
+ SFRAG
)) == NULL
) {
957 *mp
++ = '\0'; /* loop invariant let's us do this */
962 * Give back any extra memory and return value and success.
965 if ((nmem
= realloc(mem
, (size_t)(mp
- mem
))) == NULL
) {
976 * Cgetustr retrieves the value of the string capability cap from the
977 * capability record pointed to by buf. The difference between cgetustr()
978 * and cgetstr() is that cgetustr does not decode escapes but rather treats
979 * all characters literally. A pointer to a NUL terminated malloc'd
980 * copy of the string is returned in the char pointed to by str. The
981 * length of the string not including the trailing NUL is returned on success,
982 * -1 if the requested string capability couldn't be found, -2 if a system
983 * error was encountered (storage allocation failure).
985 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
986 cgetustr(char *buf
, const char *cap
, char **str
)
995 * Find string capability cap
997 if ((bp
= cgetcap(buf
, cap
, '=')) == NULL
)
1001 * Conversion / storage allocation loop ... Allocate memory in
1002 * chunks SFRAG in size.
1004 if ((mem
= malloc(SFRAG
)) == NULL
) {
1006 return (-2); /* couldn't even allocate the first fragment */
1011 while (*bp
!= ':' && *bp
!= '\0') {
1014 * There is always room for one more character in mem.
1015 * Mp always points just past last character in mem.
1016 * Bp always points at next character in buf.
1022 * Enforce loop invariant: if no room left in current
1023 * buffer, try to get some more.
1026 size_t size
= mp
- mem
;
1028 if ((mem
= realloc(mem
, size
+ SFRAG
)) == NULL
)
1034 *mp
++ = '\0'; /* loop invariant let's us do this */
1039 * Give back any extra memory and return value and success.
1042 if ((mem
= realloc(mem
, (size_t)(mp
- mem
))) == NULL
)
1049 * Cgetnum retrieves the value of the numeric capability cap from the
1050 * capability record pointed to by buf. The numeric value is returned in
1051 * the long pointed to by num. 0 is returned on success, -1 if the requested
1052 * numeric capability couldn't be found.
1054 ROKEN_LIB_FUNCTION
int ROKEN_LIB_CALL
1055 cgetnum(char *buf
, const char *cap
, long *num
)
1062 * Find numeric capability cap
1064 bp
= cgetcap(buf
, cap
, '#');
1069 * Look at value and determine numeric base:
1070 * 0x... or 0X... hexadecimal,
1076 if (*bp
== 'x' || *bp
== 'X') {
1085 * Conversion loop ...
1089 if ('0' <= *bp
&& *bp
<= '9')
1091 else if ('a' <= *bp
&& *bp
<= 'f')
1092 digit
= 10 + *bp
- 'a';
1093 else if ('A' <= *bp
&& *bp
<= 'F')
1094 digit
= 10 + *bp
- 'A';
1101 n
= n
* base
+ digit
;
1106 * Return value and success.
1114 * Compare name field of record.
1117 nfcmp(char *nf
, char *rec
)
1122 for (cp
= rec
; *cp
!= ':'; cp
++)
1127 ret
= strcmp(nf
, rec
);