usershell.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*
  2. * Copyright (c) 1985, 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. * This version has been hevily modified for use with uClibc
  30. * November 2002, Erik Andersen <andersen@codepoet.org>
  31. */
  32. #include <sys/param.h>
  33. #include <sys/file.h>
  34. #include <sys/stat.h>
  35. #include <stdio.h>
  36. #include <stdio_ext.h>
  37. #include <ctype.h>
  38. #include <stdlib.h>
  39. #include <unistd.h>
  40. #include <paths.h>
  41. #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_UNIX98)
  42. libc_hidden_proto(fstat)
  43. libc_hidden_proto(fopen)
  44. libc_hidden_proto(fclose)
  45. libc_hidden_proto(__fsetlocking)
  46. libc_hidden_proto(fileno)
  47. libc_hidden_proto(fgets_unlocked)
  48. #ifdef __UCLIBC_HAS_XLOCALE__
  49. libc_hidden_proto(__ctype_b_loc)
  50. #elif __UCLIBC_HAS_CTYPE_TABLES__
  51. libc_hidden_proto(__ctype_b)
  52. #endif
  53. /*
  54. * Local shells should NOT be added here. They should be added in
  55. * /etc/shells.
  56. */
  57. static const char * const validsh[] = { _PATH_BSHELL, _PATH_CSHELL, NULL };
  58. static char **curshell, **shells, *strings;
  59. static char **initshells __P((void));
  60. /*
  61. * Get a list of shells from _PATH_SHELLS, if it exists.
  62. */
  63. char * getusershell(void)
  64. {
  65. char *ret;
  66. if (curshell == NULL)
  67. curshell = initshells();
  68. ret = *curshell;
  69. if (ret != NULL)
  70. curshell++;
  71. return (ret);
  72. }
  73. static void __free_initshell_memory(void)
  74. {
  75. if (shells != NULL) {
  76. free(shells);
  77. }
  78. shells = NULL;
  79. if (strings != NULL) {
  80. free(strings);
  81. }
  82. strings = NULL;
  83. }
  84. void endusershell(void)
  85. {
  86. __free_initshell_memory();
  87. curshell = NULL;
  88. }
  89. void setusershell(void)
  90. {
  91. curshell = initshells();
  92. }
  93. static char ** initshells(void)
  94. {
  95. register char **sp, *cp;
  96. register FILE *fp;
  97. struct stat statb;
  98. int flen;
  99. __free_initshell_memory();
  100. if ((fp = fopen(_PATH_SHELLS, "r")) == NULL)
  101. return (char **) validsh;
  102. if (fstat(fileno(fp), &statb) == -1) {
  103. goto cleanup;
  104. }
  105. if ((strings = malloc((unsigned)statb.st_size + 1)) == NULL) {
  106. goto cleanup;
  107. }
  108. if ((shells = calloc((unsigned)statb.st_size / 3, sizeof (char *))) == NULL) {
  109. goto cleanup;
  110. }
  111. /* No threads using this stream. */
  112. #ifdef __UCLIBC_HAS_THREADS__
  113. __fsetlocking (fp, FSETLOCKING_BYCALLER);
  114. #endif
  115. sp = shells;
  116. cp = strings;
  117. flen = statb.st_size;
  118. while (fgets_unlocked(cp, flen - (cp - strings), fp) != NULL) {
  119. while (*cp != '#' && *cp != '/' && *cp != '\0')
  120. cp++;
  121. if (*cp == '#' || *cp == '\0')
  122. continue;
  123. *sp++ = cp;
  124. while (!isspace(*cp) && *cp != '#' && *cp != '\0')
  125. cp++;
  126. *cp++ = '\0';
  127. }
  128. *sp = NULL;
  129. fclose(fp);
  130. return (shells);
  131. cleanup:
  132. __free_initshell_memory();
  133. fclose(fp);
  134. return (char **) validsh;
  135. }
  136. #endif