grp_.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /* vi: set sw=4 ts=4: */
  2. /* Copyright (C) 1991,92,95,96,97,98,99,2000,01 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA.
  16. */
  17. /*
  18. * POSIX Standard: 9.2.1 Group Database Access <grp.h>
  19. */
  20. #ifndef BB_GRP_H
  21. #define BB_GRP_H 1
  22. PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
  23. /* This file is #included after #include <grp.h>
  24. * We will use libc-defined structures, but will #define function names
  25. * so that function calls are directed to bb_internal_XXX replacements
  26. */
  27. #define setgrent bb_internal_setgrent
  28. #define endgrent bb_internal_endgrent
  29. #define getgrent bb_internal_getgrent
  30. #define fgetgrent bb_internal_fgetgrent
  31. #define putgrent bb_internal_putgrent
  32. #define getgrgid bb_internal_getgrgid
  33. #define getgrnam bb_internal_getgrnam
  34. #define getgrent_r bb_internal_getgrent_r
  35. #define getgrgid_r bb_internal_getgrgid_r
  36. #define getgrnam_r bb_internal_getgrnam_r
  37. #define fgetgrent_r bb_internal_fgetgrent_r
  38. #define getgrouplist bb_internal_getgrouplist
  39. #define initgroups bb_internal_initgroups
  40. /* All function names below should be remapped by #defines above
  41. * in order to not collide with libc names. */
  42. /* Rewind the group-file stream. */
  43. extern void setgrent(void);
  44. /* Close the group-file stream. */
  45. extern void endgrent(void);
  46. #ifdef UNUSED_SINCE_WE_AVOID_STATIC_BUFS
  47. /* Read an entry from the group-file stream, opening it if necessary. */
  48. extern struct group *getgrent(void);
  49. /* Read a group entry from STREAM. */
  50. extern struct group *fgetgrent(FILE *__stream);
  51. /* Write the given entry onto the given stream. */
  52. extern int putgrent(const struct group *__restrict __p,
  53. FILE *__restrict __f);
  54. #endif
  55. /* Search for an entry with a matching group ID. */
  56. extern struct group *getgrgid(gid_t __gid);
  57. /* Search for an entry with a matching group name. */
  58. extern struct group *getgrnam(const char *__name);
  59. /* Reentrant versions of some of the functions above.
  60. PLEASE NOTE: the `getgrent_r' function is not (yet) standardized.
  61. The interface may change in later versions of this library. But
  62. the interface is designed following the principals used for the
  63. other reentrant functions so the chances are good this is what the
  64. POSIX people would choose. */
  65. extern int getgrent_r(struct group *__restrict __resultbuf,
  66. char *__restrict __buffer, size_t __buflen,
  67. struct group **__restrict __result);
  68. /* Search for an entry with a matching group ID. */
  69. extern int getgrgid_r(gid_t __gid, struct group *__restrict __resultbuf,
  70. char *__restrict __buffer, size_t __buflen,
  71. struct group **__restrict __result);
  72. /* Search for an entry with a matching group name. */
  73. extern int getgrnam_r(const char *__restrict __name,
  74. struct group *__restrict __resultbuf,
  75. char *__restrict __buffer, size_t __buflen,
  76. struct group **__restrict __result);
  77. /* Read a group entry from STREAM. This function is not standardized
  78. an probably never will. */
  79. extern int fgetgrent_r(FILE *__restrict __stream,
  80. struct group *__restrict __resultbuf,
  81. char *__restrict __buffer, size_t __buflen,
  82. struct group **__restrict __result);
  83. /* Store at most *NGROUPS members of the group set for USER into
  84. *GROUPS. Also include GROUP. The actual number of groups found is
  85. returned in *NGROUPS. Return -1 if the if *NGROUPS is too small. */
  86. extern int getgrouplist(const char *__user, gid_t __group,
  87. gid_t *__groups, int *__ngroups);
  88. /* Initialize the group set for the current user
  89. by reading the group database and using all groups
  90. of which USER is a member. Also include GROUP. */
  91. extern int initgroups(const char *__user, gid_t __group);
  92. POP_SAVED_FUNCTION_VISIBILITY
  93. #endif