pam_modutil.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * Copyright (c) 2001-2002 Andrew Morgan <morgan@kernel.org>
  3. *
  4. * <security/pam_modutil.h>
  5. *
  6. * This file is a list of handy libc wrappers that attempt to provide some
  7. * thread-safe and other convenient functionality to modules in a common form.
  8. *
  9. * A number of these functions reserve space in a pam_[sg]et_data item.
  10. * In all cases, the name of the item is prefixed with "pam_modutil_*".
  11. *
  12. * On systems that simply can't support thread safe programming, these
  13. * functions don't support it either - sorry.
  14. *
  15. * Redistribution and use in source and binary forms, with or without
  16. * modification, are permitted provided that the following conditions
  17. * are met:
  18. * 1. Redistributions of source code must retain the above copyright
  19. * notice, and the entire permission notice in its entirety,
  20. * including the disclaimer of warranties.
  21. * 2. Redistributions in binary form must reproduce the above copyright
  22. * notice, this list of conditions and the following disclaimer in the
  23. * documentation and/or other materials provided with the distribution.
  24. * 3. The name of the author may not be used to endorse or promote
  25. * products derived from this software without specific prior
  26. * written permission.
  27. *
  28. * ALTERNATIVELY, this product may be distributed under the terms of
  29. * the GNU Public License, in which case the provisions of the GPL are
  30. * required INSTEAD OF the above restrictions. (This clause is
  31. * necessary due to a potential bad interaction between the GPL and
  32. * the restrictions contained in a BSD-style copyright.)
  33. *
  34. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  35. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  36. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  37. * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
  38. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  39. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  40. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  41. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  42. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  43. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  44. * OF THE POSSIBILITY OF SUCH DAMAGE.
  45. */
  46. #ifndef _SECURITY__PAM_MODUTIL_H
  47. #define _SECURITY__PAM_MODUTIL_H
  48. #include <sys/types.h>
  49. #include <pwd.h>
  50. #include <grp.h>
  51. #include <shadow.h>
  52. #ifdef __cplusplus
  53. extern "C" {
  54. #endif
  55. #include <security/_pam_types.h>
  56. extern struct passwd * PAM_NONNULL((1,2))
  57. pam_modutil_getpwnam(pam_handle_t *pamh, const char *user);
  58. extern struct passwd * PAM_NONNULL((1))
  59. pam_modutil_getpwuid(pam_handle_t *pamh, uid_t uid);
  60. extern struct group * PAM_NONNULL((1,2))
  61. pam_modutil_getgrnam(pam_handle_t *pamh, const char *group);
  62. extern struct group * PAM_NONNULL((1))
  63. pam_modutil_getgrgid(pam_handle_t *pamh, gid_t gid);
  64. extern struct spwd * PAM_NONNULL((1,2))
  65. pam_modutil_getspnam(pam_handle_t *pamh, const char *user);
  66. extern int PAM_NONNULL((1,2,3))
  67. pam_modutil_user_in_group_nam_nam(pam_handle_t *pamh,
  68. const char *user,
  69. const char *group);
  70. extern int PAM_NONNULL((1,2))
  71. pam_modutil_user_in_group_nam_gid(pam_handle_t *pamh,
  72. const char *user,
  73. gid_t group);
  74. extern int PAM_NONNULL((1,3))
  75. pam_modutil_user_in_group_uid_nam(pam_handle_t *pamh,
  76. uid_t user,
  77. const char *group);
  78. extern int PAM_NONNULL((1))
  79. pam_modutil_user_in_group_uid_gid(pam_handle_t *pamh,
  80. uid_t user,
  81. gid_t group);
  82. extern const char * PAM_NONNULL((1))
  83. pam_modutil_getlogin(pam_handle_t *pamh);
  84. extern int
  85. pam_modutil_read(int fd, char *buffer, int count);
  86. extern int
  87. pam_modutil_write(int fd, const char *buffer, int count);
  88. extern int PAM_NONNULL((1,3))
  89. pam_modutil_audit_write(pam_handle_t *pamh, int type,
  90. const char *message, int retval);
  91. struct pam_modutil_privs {
  92. gid_t *grplist;
  93. int number_of_groups;
  94. int allocated;
  95. gid_t old_gid;
  96. uid_t old_uid;
  97. int is_dropped;
  98. };
  99. #define PAM_MODUTIL_NGROUPS 64
  100. #define PAM_MODUTIL_DEF_PRIVS(n) \
  101. gid_t n##_grplist[PAM_MODUTIL_NGROUPS]; \
  102. struct pam_modutil_privs n = { n##_grplist, PAM_MODUTIL_NGROUPS, 0, -1, -1, 0 }
  103. extern int PAM_NONNULL((1,2,3))
  104. pam_modutil_drop_priv(pam_handle_t *pamh,
  105. struct pam_modutil_privs *p,
  106. const struct passwd *pw);
  107. extern int PAM_NONNULL((1,2))
  108. pam_modutil_regain_priv(pam_handle_t *pamh,
  109. struct pam_modutil_privs *p);
  110. enum pam_modutil_redirect_fd {
  111. PAM_MODUTIL_IGNORE_FD, /* do not redirect */
  112. PAM_MODUTIL_PIPE_FD, /* redirect to a pipe */
  113. PAM_MODUTIL_NULL_FD, /* redirect to /dev/null */
  114. };
  115. /* redirect standard descriptors, close all other descriptors. */
  116. extern int PAM_NONNULL((1))
  117. pam_modutil_sanitize_helper_fds(pam_handle_t *pamh,
  118. enum pam_modutil_redirect_fd redirect_stdin,
  119. enum pam_modutil_redirect_fd redirect_stdout,
  120. enum pam_modutil_redirect_fd redirect_stderr);
  121. #ifdef __cplusplus
  122. }
  123. #endif
  124. #endif /* _SECURITY__PAM_MODUTIL_H */