getttyent.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /*
  2. * Copyright (c) 1989, 1993
  3. * The Regents of the University of California. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 4. Neither the name of the University nor the names of its contributors
  14. * may be used to endorse or promote products derived from this software
  15. * without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  18. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  21. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27. * SUCH DAMAGE.
  28. */
  29. #include <features.h>
  30. #include <ttyent.h>
  31. #include <stdio.h>
  32. #include <stdio_ext.h>
  33. #include <ctype.h>
  34. #include <string.h>
  35. #include <stdlib.h>
  36. #include <malloc.h>
  37. #ifdef __UCLIBC_HAS_THREADS__
  38. #include <pthread.h>
  39. #endif
  40. libc_hidden_proto(strchr)
  41. libc_hidden_proto(strcmp)
  42. libc_hidden_proto(strncmp)
  43. libc_hidden_proto(__fsetlocking)
  44. libc_hidden_proto(rewind)
  45. libc_hidden_proto(fgets_unlocked)
  46. libc_hidden_proto(getc_unlocked)
  47. libc_hidden_proto(__fgetc_unlocked)
  48. libc_hidden_proto(fopen)
  49. libc_hidden_proto(fclose)
  50. libc_hidden_proto(abort)
  51. #ifdef __UCLIBC_HAS_XLOCALE__
  52. libc_hidden_proto(__ctype_b_loc)
  53. #elif __UCLIBC_HAS_CTYPE_TABLES__
  54. libc_hidden_proto(__ctype_b)
  55. #endif
  56. static char zapchar;
  57. static FILE *tf;
  58. static struct ttyent tty;
  59. /* Skip over the current field, removing quotes, and return
  60. * a pointer to the next field.
  61. */
  62. #define QUOTED 1
  63. static char * skip(register char *p)
  64. {
  65. register char *t;
  66. register int c, q;
  67. for (q = 0, t = p; (c = *p) != '\0'; p++) {
  68. if (c == '"') {
  69. q ^= QUOTED; /* obscure, but nice */
  70. continue;
  71. }
  72. if (q == QUOTED && *p == '\\' && *(p+1) == '"')
  73. p++;
  74. *t++ = *p;
  75. if (q == QUOTED)
  76. continue;
  77. if (c == '#') {
  78. zapchar = c;
  79. *p = 0;
  80. break;
  81. }
  82. if (c == '\t' || c == ' ' || c == '\n') {
  83. zapchar = c;
  84. *p++ = 0;
  85. while ((c = *p) == '\t' || c == ' ' || c == '\n')
  86. p++;
  87. break;
  88. }
  89. }
  90. *--t = '\0';
  91. return (p);
  92. }
  93. static char * value(register char *p)
  94. {
  95. return ((p = strchr(p, '=')) ? ++p : NULL);
  96. }
  97. libc_hidden_proto(setttyent)
  98. int setttyent(void)
  99. {
  100. if (tf) {
  101. rewind(tf);
  102. return (1);
  103. } else if ((tf = fopen(_PATH_TTYS, "r"))) {
  104. /* We do the locking ourselves. */
  105. #ifdef __UCLIBC_HAS_THREADS__
  106. __fsetlocking (tf, FSETLOCKING_BYCALLER);
  107. #endif
  108. return (1);
  109. }
  110. return (0);
  111. }
  112. libc_hidden_def(setttyent)
  113. libc_hidden_proto(getttyent)
  114. struct ttyent * getttyent(void)
  115. {
  116. register int c;
  117. register char *p;
  118. static char *line = NULL;
  119. struct ttyent *retval = NULL;
  120. if (!tf && !setttyent())
  121. return (NULL);
  122. if (!line) {
  123. line = __uc_malloc(BUFSIZ);
  124. }
  125. __STDIO_ALWAYS_THREADLOCK(tf);
  126. for (;;) {
  127. if (!fgets_unlocked(p = line, BUFSIZ, tf)) {
  128. goto DONE;
  129. }
  130. /* skip lines that are too big */
  131. if (!strchr(p, '\n')) {
  132. while ((c = getc_unlocked(tf)) != '\n' && c != EOF)
  133. ;
  134. continue;
  135. }
  136. while (isspace(*p))
  137. ++p;
  138. if (*p && *p != '#')
  139. break;
  140. }
  141. zapchar = 0;
  142. tty.ty_name = p;
  143. p = skip(p);
  144. if (!*(tty.ty_getty = p))
  145. tty.ty_getty = tty.ty_type = NULL;
  146. else {
  147. p = skip(p);
  148. if (!*(tty.ty_type = p))
  149. tty.ty_type = NULL;
  150. else
  151. p = skip(p);
  152. }
  153. tty.ty_status = 0;
  154. tty.ty_window = NULL;
  155. #define scmp(e) !strncmp(p, e, sizeof(e) - 1) && isspace(p[sizeof(e) - 1])
  156. #define vcmp(e) !strncmp(p, e, sizeof(e) - 1) && p[sizeof(e) - 1] == '='
  157. for (; *p; p = skip(p)) {
  158. if (scmp(_TTYS_OFF))
  159. tty.ty_status &= ~TTY_ON;
  160. else if (scmp(_TTYS_ON))
  161. tty.ty_status |= TTY_ON;
  162. else if (scmp(_TTYS_SECURE))
  163. tty.ty_status |= TTY_SECURE;
  164. else if (vcmp(_TTYS_WINDOW))
  165. tty.ty_window = value(p);
  166. else
  167. break;
  168. }
  169. if (zapchar == '#' || *p == '#')
  170. while ((c = *++p) == ' ' || c == '\t')
  171. ;
  172. tty.ty_comment = p;
  173. if (*p == 0)
  174. tty.ty_comment = 0;
  175. if ((p = strchr(p, '\n')))
  176. *p = '\0';
  177. retval = &tty;
  178. DONE:
  179. __STDIO_ALWAYS_THREADUNLOCK(tf);
  180. return retval;
  181. }
  182. libc_hidden_def(getttyent)
  183. libc_hidden_proto(endttyent)
  184. int endttyent(void)
  185. {
  186. int rval;
  187. if (tf) {
  188. rval = !(fclose(tf) == EOF);
  189. tf = NULL;
  190. return (rval);
  191. }
  192. return (1);
  193. }
  194. libc_hidden_def(endttyent)
  195. struct ttyent * getttynam(const char *_tty)
  196. {
  197. register struct ttyent *t;
  198. setttyent();
  199. while ((t = getttyent()))
  200. if (!strcmp(_tty, t->ty_name))
  201. break;
  202. endttyent();
  203. return (t);
  204. }