Release 0.8.1
[heimdal.git] / lib / roken / getcap.c
blobc9938b54b49107a6aca9d559f22c6eeade63bf70
1 /* $NetBSD: getcap.c,v 1.29 1999/03/29 09:27:29 abs Exp $ */
3 /*-
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Casey Leedom of Lawrence Livermore National Laboratory.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
35 #ifdef HAVE_CONFIG_H
36 #include <config.h>
37 #endif
38 #include "roken.h"
39 RCSID("$Id$");
41 #include <sys/types.h>
42 #include <ctype.h>
43 #if defined(HAVE_DB_185_H)
44 #include <db_185.h>
45 #elif defined(HAVE_DB_H)
46 #include <db.h>
47 #endif
48 #include <errno.h>
49 #include <fcntl.h>
50 #include <limits.h>
51 #include <stdio.h>
52 #include <stdlib.h>
53 #include <string.h>
54 #include <unistd.h>
56 #define BFRAG 1024
57 #if 0
58 #define BSIZE 1024
59 #endif
60 #define ESC ('[' & 037) /* ASCII ESC */
61 #define MAX_RECURSION 32 /* maximum getent recursion */
62 #define SFRAG 100 /* cgetstr mallocs in SFRAG chunks */
64 #define RECOK (char)0
65 #define TCERR (char)1
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 */
72 #if 0 /*
73 * Don't use db support unless its build into libc but we dont
74 * check for that now, so just disable the code.
76 #if defined(HAVE_DBOPEN) && defined(HAVE_DB_H)
77 #define USE_DB
78 #endif
79 #endif
81 #ifdef USE_DB
82 static int cdbget (DB *, char **, const char *);
83 #endif
84 static int getent (char **, size_t *, char **, int, const char *, int, char *);
85 static int nfcmp (char *, char *);
88 int ROKEN_LIB_FUNCTION cgetset(const char *ent);
89 char *ROKEN_LIB_FUNCTION cgetcap(char *buf, const char *cap, int type);
90 int ROKEN_LIB_FUNCTION cgetent(char **buf, char **db_array, const char *name);
91 int ROKEN_LIB_FUNCTION cgetmatch(const char *buf, const char *name);
92 int ROKEN_LIB_FUNCTION cgetclose(void);
93 #if 0
94 int cgetfirst(char **buf, char **db_array);
95 int cgetnext(char **bp, char **db_array);
96 #endif
97 int ROKEN_LIB_FUNCTION cgetstr(char *buf, const char *cap, char **str);
98 int ROKEN_LIB_FUNCTION cgetustr(char *buf, const char *cap, char **str);
99 int ROKEN_LIB_FUNCTION 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 int ROKEN_LIB_FUNCTION
106 cgetset(const char *ent)
108 const char *source, *check;
109 char *dest;
111 if (ent == NULL) {
112 if (toprec)
113 free(toprec);
114 toprec = NULL;
115 topreclen = 0;
116 return (0);
118 topreclen = strlen(ent);
119 if ((toprec = malloc (topreclen + 1)) == NULL) {
120 errno = ENOMEM;
121 return (-1);
123 gottoprec = 0;
125 source=ent;
126 dest=toprec;
127 while (*source) { /* Strip whitespace */
128 *dest++ = *source++; /* Do not check first field */
129 while (*source == ':') {
130 check=source+1;
131 while (*check && (isspace((unsigned char)*check) ||
132 (*check=='\\' && isspace((unsigned char)check[1]))))
133 ++check;
134 if( *check == ':' )
135 source=check;
136 else
137 break;
141 *dest=0;
143 return (0);
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
153 * cap is found.
155 * If (cap, '@') or (cap, terminator, '@') is found before (cap, terminator)
156 * return NULL.
158 char * ROKEN_LIB_FUNCTION
159 cgetcap(char *buf, const char *cap, int type)
161 char *bp;
162 const char *cp;
164 bp = buf;
165 for (;;) {
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.
171 for (;;)
172 if (*bp == '\0')
173 return (NULL);
174 else
175 if (*bp++ == ':')
176 break;
179 * Try to match (cap, type) in buf.
181 for (cp = cap; *cp == *bp && *bp != '\0'; cp++, bp++)
182 continue;
183 if (*cp != '\0')
184 continue;
185 if (*bp == '@')
186 return (NULL);
187 if (type == ':') {
188 if (*bp != '\0' && *bp != ':')
189 continue;
190 return(bp);
192 if (*bp != type)
193 continue;
194 bp++;
195 return (*bp == '@' ? NULL : bp);
197 /* NOTREACHED */
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 int ROKEN_LIB_FUNCTION
210 cgetent(char **buf, char **db_array, const char *name)
212 size_t dummy;
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=
221 * recursions.
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
226 * *cap and *len.
228 * Basic algorithm:
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
233 * MAX_RECURSION.
235 static int
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;
241 char *record;
242 int tc_not_resolved;
245 * Return with ``loop detected'' error if we've recursed more than
246 * MAX_RECURSION times.
248 if (depth > MAX_RECURSION)
249 return (-3);
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) {
257 errno = ENOMEM;
258 return (-2);
260 (void)strlcpy(record, toprec, len);
261 db_p = db_array;
262 rp = record + topreclen + 1;
263 r_end = rp + BFRAG;
264 goto tc_exp;
267 * Allocate first chunk of memory.
269 if ((record = malloc(BFRAG)) == NULL) {
270 errno = ENOMEM;
271 return (-2);
273 r_end = record + BFRAG;
274 foundit = 0;
276 * Loop through database array until finding the record.
279 for (db_p = db_array; *db_p != NULL; db_p++) {
280 eof = 0;
283 * Open database if not already open.
286 if (fd >= 0) {
287 (void)lseek(fd, (off_t)0, SEEK_SET);
288 } else {
289 #ifdef USE_DB
290 char pbuf[_POSIX_PATH_MAX];
291 char *cbuf;
292 size_t clen;
293 int retval;
294 DB *capdbp;
296 (void)snprintf(pbuf, sizeof(pbuf), "%s.db", *db_p);
297 if ((capdbp = dbopen(pbuf, O_RDONLY, 0, DB_HASH, 0))
298 != NULL) {
299 free(record);
300 retval = cdbget(capdbp, &record, name);
301 if (retval < 0) {
302 /* no record available */
303 (void)capdbp->close(capdbp);
304 return (retval);
306 /* save the data; close frees it */
307 clen = strlen(record);
308 cbuf = malloc(clen + 1);
309 memmove(cbuf, record, clen + 1);
310 if (capdbp->close(capdbp) < 0) {
311 free(cbuf);
312 return (-2);
314 *len = clen;
315 *cap = cbuf;
316 return (retval);
317 } else
318 #endif
320 fd = open(*db_p, O_RDONLY, 0);
321 if (fd < 0) {
322 /* No error on unfound file. */
323 continue;
325 myfd = 1;
329 * Find the requested capability record ...
332 char buf[BUFSIZ];
333 char *b_end, *bp, *cp;
334 int c, slash;
337 * Loop invariants:
338 * There is always room for one more character in record.
339 * R_end always points just past end of record.
340 * Rp always points just past last character in record.
341 * B_end always points just past last character in buf.
342 * Bp always points at next character in buf.
343 * Cp remembers where the last colon was.
345 b_end = buf;
346 bp = buf;
347 cp = 0;
348 slash = 0;
349 for (;;) {
352 * Read in a line implementing (\, newline)
353 * line continuation.
355 rp = record;
356 for (;;) {
357 if (bp >= b_end) {
358 int n;
360 n = read(fd, buf, sizeof(buf));
361 if (n <= 0) {
362 if (myfd)
363 (void)close(fd);
364 if (n < 0) {
365 free(record);
366 return (-2);
367 } else {
368 fd = -1;
369 eof = 1;
370 break;
373 b_end = buf+n;
374 bp = buf;
377 c = *bp++;
378 if (c == '\n') {
379 if (slash) {
380 slash = 0;
381 rp--;
382 continue;
383 } else
384 break;
386 if (slash) {
387 slash = 0;
388 cp = 0;
390 if (c == ':') {
392 * If the field was `empty' (i.e.
393 * contained only white space), back up
394 * to the colon (eliminating the
395 * field).
397 if (cp)
398 rp = cp;
399 else
400 cp = rp;
401 } else if (c == '\\') {
402 slash = 1;
403 } else if (c != ' ' && c != '\t') {
405 * Forget where the colon was, as this
406 * is not an empty field.
408 cp = 0;
410 *rp++ = c;
413 * Enforce loop invariant: if no room
414 * left in record buffer, try to get
415 * some more.
417 if (rp >= r_end) {
418 u_int pos;
419 size_t newsize;
421 pos = rp - record;
422 newsize = r_end - record + BFRAG;
423 record = realloc(record, newsize);
424 if (record == NULL) {
425 errno = ENOMEM;
426 if (myfd)
427 (void)close(fd);
428 return (-2);
430 r_end = record + newsize;
431 rp = record + pos;
434 /* Eliminate any white space after the last colon. */
435 if (cp)
436 rp = cp + 1;
437 /* Loop invariant lets us do this. */
438 *rp++ = '\0';
441 * If encountered eof check next file.
443 if (eof)
444 break;
447 * Toss blank lines and comments.
449 if (*record == '\0' || *record == '#')
450 continue;
453 * See if this is the record we want ...
455 if (cgetmatch(record, name) == 0) {
456 if (nfield == NULL || !nfcmp(nfield, record)) {
457 foundit = 1;
458 break; /* found it! */
463 if (foundit)
464 break;
467 if (!foundit)
468 return (-1);
471 * Got the capability record, but now we have to expand all tc=name
472 * references in it ...
474 tc_exp: {
475 char *newicap, *s;
476 size_t ilen, newilen;
477 int diff, iret, tclen;
478 char *icap, *scan, *tc, *tcstart, *tcend;
481 * Loop invariants:
482 * There is room for one more character in record.
483 * R_end points just past end of record.
484 * Rp points just past last character in record.
485 * Scan points at remainder of record that needs to be
486 * scanned for tc=name constructs.
488 scan = record;
489 tc_not_resolved = 0;
490 for (;;) {
491 if ((tc = cgetcap(scan, "tc", '=')) == NULL)
492 break;
495 * Find end of tc=name and stomp on the trailing `:'
496 * (if present) so we can use it to call ourselves.
498 s = tc;
499 for (;;)
500 if (*s == '\0')
501 break;
502 else
503 if (*s++ == ':') {
504 *(s - 1) = '\0';
505 break;
507 tcstart = tc - 3;
508 tclen = s - tcstart;
509 tcend = s;
511 iret = getent(&icap, &ilen, db_p, fd, tc, depth+1,
512 NULL);
513 newicap = icap; /* Put into a register. */
514 newilen = ilen;
515 if (iret != 0) {
516 /* an error */
517 if (iret < -1) {
518 if (myfd)
519 (void)close(fd);
520 free(record);
521 return (iret);
523 if (iret == 1)
524 tc_not_resolved = 1;
525 /* couldn't resolve tc */
526 if (iret == -1) {
527 *(s - 1) = ':';
528 scan = s - 1;
529 tc_not_resolved = 1;
530 continue;
534 /* not interested in name field of tc'ed record */
535 s = newicap;
536 for (;;)
537 if (*s == '\0')
538 break;
539 else
540 if (*s++ == ':')
541 break;
542 newilen -= s - newicap;
543 newicap = s;
545 /* make sure interpolated record is `:'-terminated */
546 s += newilen;
547 if (*(s-1) != ':') {
548 *s = ':'; /* overwrite NUL with : */
549 newilen++;
553 * Make sure there's enough room to insert the
554 * new record.
556 diff = newilen - tclen;
557 if (diff >= r_end - rp) {
558 u_int pos, tcpos, tcposend;
559 size_t newsize;
561 pos = rp - record;
562 newsize = r_end - record + diff + BFRAG;
563 tcpos = tcstart - record;
564 tcposend = tcend - record;
565 record = realloc(record, newsize);
566 if (record == NULL) {
567 errno = ENOMEM;
568 if (myfd)
569 (void)close(fd);
570 free(icap);
571 return (-2);
573 r_end = record + newsize;
574 rp = record + pos;
575 tcstart = record + tcpos;
576 tcend = record + tcposend;
580 * Insert tc'ed record into our record.
582 s = tcstart + newilen;
583 memmove(s, tcend, (size_t)(rp - tcend));
584 memmove(tcstart, newicap, newilen);
585 rp += diff;
586 free(icap);
589 * Start scan on `:' so next cgetcap works properly
590 * (cgetcap always skips first field).
592 scan = s-1;
597 * Close file (if we opened it), give back any extra memory, and
598 * return capability, length and success.
600 if (myfd)
601 (void)close(fd);
602 *len = rp - record - 1; /* don't count NUL */
603 if (r_end > rp)
604 if ((record =
605 realloc(record, (size_t)(rp - record))) == NULL) {
606 errno = ENOMEM;
607 return (-2);
610 *cap = record;
611 if (tc_not_resolved)
612 return (1);
613 return (0);
616 #ifdef USE_DB
617 static int
618 cdbget(DB *capdbp, char **bp, const char *name)
620 DBT key;
621 DBT data;
623 /* LINTED key is not modified */
624 key.data = (char *)name;
625 key.size = strlen(name);
627 for (;;) {
628 /* Get the reference. */
629 switch(capdbp->get(capdbp, &key, &data, 0)) {
630 case -1:
631 return (-2);
632 case 1:
633 return (-1);
636 /* If not an index to another record, leave. */
637 if (((char *)data.data)[0] != SHADOW)
638 break;
640 key.data = (char *)data.data + 1;
641 key.size = data.size - 1;
644 *bp = (char *)data.data + 1;
645 return (((char *)(data.data))[0] == TCERR ? 1 : 0);
647 #endif /* USE_DB */
650 * Cgetmatch will return 0 if name is one of the names of the capability
651 * record buf, -1 if not.
654 cgetmatch(const char *buf, const char *name)
656 const char *np, *bp;
659 * Start search at beginning of record.
661 bp = buf;
662 for (;;) {
664 * Try to match a record name.
666 np = name;
667 for (;;)
668 if (*np == '\0') {
669 if (*bp == '|' || *bp == ':' || *bp == '\0')
670 return (0);
671 else
672 break;
673 } else
674 if (*bp++ != *np++)
675 break;
678 * Match failed, skip to next name in record.
680 bp--; /* a '|' or ':' may have stopped the match */
681 for (;;)
682 if (*bp == '\0' || *bp == ':')
683 return (-1); /* match failed totally */
684 else
685 if (*bp++ == '|')
686 break; /* found next name */
690 #if 0
692 cgetfirst(char **buf, char **db_array)
694 (void)cgetclose();
695 return (cgetnext(buf, db_array));
697 #endif
699 static FILE *pfp;
700 static int slash;
701 static char **dbp;
703 int ROKEN_LIB_FUNCTION
704 cgetclose(void)
706 if (pfp != NULL) {
707 (void)fclose(pfp);
708 pfp = NULL;
710 dbp = NULL;
711 gottoprec = 0;
712 slash = 0;
713 return(0);
716 #if 0
718 * Cgetnext() gets either the first or next entry in the logical database
719 * specified by db_array. It returns 0 upon completion of the database, 1
720 * upon returning an entry with more remaining, and -1 if an error occurs.
723 cgetnext(char **bp, char **db_array)
725 size_t len;
726 int status, done;
727 char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE];
728 size_t dummy;
730 if (dbp == NULL)
731 dbp = db_array;
733 if (pfp == NULL && (pfp = fopen(*dbp, "r")) == NULL) {
734 (void)cgetclose();
735 return (-1);
737 for(;;) {
738 if (toprec && !gottoprec) {
739 gottoprec = 1;
740 line = toprec;
741 } else {
742 line = fgetln(pfp, &len);
743 if (line == NULL && pfp) {
744 if (ferror(pfp)) {
745 (void)cgetclose();
746 return (-1);
747 } else {
748 (void)fclose(pfp);
749 pfp = NULL;
750 if (*++dbp == NULL) {
751 (void)cgetclose();
752 return (0);
753 } else if ((pfp =
754 fopen(*dbp, "r")) == NULL) {
755 (void)cgetclose();
756 return (-1);
757 } else
758 continue;
760 } else
761 line[len - 1] = '\0';
762 if (len == 1) {
763 slash = 0;
764 continue;
766 if (isspace((unsigned char)*line) ||
767 *line == ':' || *line == '#' || slash) {
768 if (line[len - 2] == '\\')
769 slash = 1;
770 else
771 slash = 0;
772 continue;
774 if (line[len - 2] == '\\')
775 slash = 1;
776 else
777 slash = 0;
782 * Line points to a name line.
784 done = 0;
785 np = nbuf;
786 for (;;) {
787 for (cp = line; *cp != '\0'; cp++) {
788 if (*cp == ':') {
789 *np++ = ':';
790 done = 1;
791 break;
793 if (*cp == '\\')
794 break;
795 *np++ = *cp;
797 if (done) {
798 *np = '\0';
799 break;
800 } else { /* name field extends beyond the line */
801 line = fgetln(pfp, &len);
802 if (line == NULL && pfp) {
803 if (ferror(pfp)) {
804 (void)cgetclose();
805 return (-1);
807 (void)fclose(pfp);
808 pfp = NULL;
809 *np = '\0';
810 break;
811 } else
812 line[len - 1] = '\0';
815 rp = buf;
816 for(cp = nbuf; *cp != '\0'; cp++)
817 if (*cp == '|' || *cp == ':')
818 break;
819 else
820 *rp++ = *cp;
822 *rp = '\0';
824 * XXX
825 * Last argument of getent here should be nbuf if we want true
826 * sequential access in the case of duplicates.
827 * With NULL, getent will return the first entry found
828 * rather than the duplicate entry record. This is a
829 * matter of semantics that should be resolved.
831 status = getent(bp, &dummy, db_array, -1, buf, 0, NULL);
832 if (status == -2 || status == -3)
833 (void)cgetclose();
835 return (status + 1);
837 /* NOTREACHED */
839 #endif
842 * Cgetstr retrieves the value of the string capability cap from the
843 * capability record pointed to by buf. A pointer to a decoded, NUL
844 * terminated, malloc'd copy of the string is returned in the char *
845 * pointed to by str. The length of the string not including the trailing
846 * NUL is returned on success, -1 if the requested string capability
847 * couldn't be found, -2 if a system error was encountered (storage
848 * allocation failure).
850 int ROKEN_LIB_FUNCTION
851 cgetstr(char *buf, const char *cap, char **str)
853 u_int m_room;
854 const char *bp;
855 char *mp;
856 int len;
857 char *mem;
860 * Find string capability cap
862 bp = cgetcap(buf, cap, '=');
863 if (bp == NULL)
864 return (-1);
867 * Conversion / storage allocation loop ... Allocate memory in
868 * chunks SFRAG in size.
870 if ((mem = malloc(SFRAG)) == NULL) {
871 errno = ENOMEM;
872 return (-2); /* couldn't even allocate the first fragment */
874 m_room = SFRAG;
875 mp = mem;
877 while (*bp != ':' && *bp != '\0') {
879 * Loop invariants:
880 * There is always room for one more character in mem.
881 * Mp always points just past last character in mem.
882 * Bp always points at next character in buf.
884 if (*bp == '^') {
885 bp++;
886 if (*bp == ':' || *bp == '\0')
887 break; /* drop unfinished escape */
888 *mp++ = *bp++ & 037;
889 } else if (*bp == '\\') {
890 bp++;
891 if (*bp == ':' || *bp == '\0')
892 break; /* drop unfinished escape */
893 if ('0' <= *bp && *bp <= '7') {
894 int n, i;
896 n = 0;
897 i = 3; /* maximum of three octal digits */
898 do {
899 n = n * 8 + (*bp++ - '0');
900 } while (--i && '0' <= *bp && *bp <= '7');
901 *mp++ = n;
903 else switch (*bp++) {
904 case 'b': case 'B':
905 *mp++ = '\b';
906 break;
907 case 't': case 'T':
908 *mp++ = '\t';
909 break;
910 case 'n': case 'N':
911 *mp++ = '\n';
912 break;
913 case 'f': case 'F':
914 *mp++ = '\f';
915 break;
916 case 'r': case 'R':
917 *mp++ = '\r';
918 break;
919 case 'e': case 'E':
920 *mp++ = ESC;
921 break;
922 case 'c': case 'C':
923 *mp++ = ':';
924 break;
925 default:
927 * Catches '\', '^', and
928 * everything else.
930 *mp++ = *(bp-1);
931 break;
933 } else
934 *mp++ = *bp++;
935 m_room--;
938 * Enforce loop invariant: if no room left in current
939 * buffer, try to get some more.
941 if (m_room == 0) {
942 size_t size = mp - mem;
944 if ((mem = realloc(mem, size + SFRAG)) == NULL)
945 return (-2);
946 m_room = SFRAG;
947 mp = mem + size;
950 *mp++ = '\0'; /* loop invariant let's us do this */
951 m_room--;
952 len = mp - mem - 1;
955 * Give back any extra memory and return value and success.
957 if (m_room != 0)
958 if ((mem = realloc(mem, (size_t)(mp - mem))) == NULL)
959 return (-2);
960 *str = mem;
961 return (len);
965 * Cgetustr retrieves the value of the string capability cap from the
966 * capability record pointed to by buf. The difference between cgetustr()
967 * and cgetstr() is that cgetustr does not decode escapes but rather treats
968 * all characters literally. A pointer to a NUL terminated malloc'd
969 * copy of the string is returned in the char pointed to by str. The
970 * length of the string not including the trailing NUL is returned on success,
971 * -1 if the requested string capability couldn't be found, -2 if a system
972 * error was encountered (storage allocation failure).
974 int ROKEN_LIB_FUNCTION
975 cgetustr(char *buf, const char *cap, char **str)
977 u_int m_room;
978 const char *bp;
979 char *mp;
980 int len;
981 char *mem;
984 * Find string capability cap
986 if ((bp = cgetcap(buf, cap, '=')) == NULL)
987 return (-1);
990 * Conversion / storage allocation loop ... Allocate memory in
991 * chunks SFRAG in size.
993 if ((mem = malloc(SFRAG)) == NULL) {
994 errno = ENOMEM;
995 return (-2); /* couldn't even allocate the first fragment */
997 m_room = SFRAG;
998 mp = mem;
1000 while (*bp != ':' && *bp != '\0') {
1002 * Loop invariants:
1003 * There is always room for one more character in mem.
1004 * Mp always points just past last character in mem.
1005 * Bp always points at next character in buf.
1007 *mp++ = *bp++;
1008 m_room--;
1011 * Enforce loop invariant: if no room left in current
1012 * buffer, try to get some more.
1014 if (m_room == 0) {
1015 size_t size = mp - mem;
1017 if ((mem = realloc(mem, size + SFRAG)) == NULL)
1018 return (-2);
1019 m_room = SFRAG;
1020 mp = mem + size;
1023 *mp++ = '\0'; /* loop invariant let's us do this */
1024 m_room--;
1025 len = mp - mem - 1;
1028 * Give back any extra memory and return value and success.
1030 if (m_room != 0)
1031 if ((mem = realloc(mem, (size_t)(mp - mem))) == NULL)
1032 return (-2);
1033 *str = mem;
1034 return (len);
1038 * Cgetnum retrieves the value of the numeric capability cap from the
1039 * capability record pointed to by buf. The numeric value is returned in
1040 * the long pointed to by num. 0 is returned on success, -1 if the requested
1041 * numeric capability couldn't be found.
1043 int ROKEN_LIB_FUNCTION
1044 cgetnum(char *buf, const char *cap, long *num)
1046 long n;
1047 int base, digit;
1048 const char *bp;
1051 * Find numeric capability cap
1053 bp = cgetcap(buf, cap, '#');
1054 if (bp == NULL)
1055 return (-1);
1058 * Look at value and determine numeric base:
1059 * 0x... or 0X... hexadecimal,
1060 * else 0... octal,
1061 * else decimal.
1063 if (*bp == '0') {
1064 bp++;
1065 if (*bp == 'x' || *bp == 'X') {
1066 bp++;
1067 base = 16;
1068 } else
1069 base = 8;
1070 } else
1071 base = 10;
1074 * Conversion loop ...
1076 n = 0;
1077 for (;;) {
1078 if ('0' <= *bp && *bp <= '9')
1079 digit = *bp - '0';
1080 else if ('a' <= *bp && *bp <= 'f')
1081 digit = 10 + *bp - 'a';
1082 else if ('A' <= *bp && *bp <= 'F')
1083 digit = 10 + *bp - 'A';
1084 else
1085 break;
1087 if (digit >= base)
1088 break;
1090 n = n * base + digit;
1091 bp++;
1095 * Return value and success.
1097 *num = n;
1098 return (0);
1103 * Compare name field of record.
1105 static int
1106 nfcmp(char *nf, char *rec)
1108 char *cp, tmp;
1109 int ret;
1111 for (cp = rec; *cp != ':'; cp++)
1114 tmp = *(cp + 1);
1115 *(cp + 1) = '\0';
1116 ret = strcmp(nf, rec);
1117 *(cp + 1) = tmp;
1119 return (ret);