Source code pulled from OpenBSD for OpenNTPD. The place to contribute to this code is via the OpenBSD CVS tree.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

116 lines
4.4 KiB

28 years ago
28 years ago
28 years ago
28 years ago
  1. /* $OpenBSD: pwd.h,v 1.20 2008/06/25 14:51:27 millert Exp $ */
  2. /* $NetBSD: pwd.h,v 1.9 1996/05/15 21:36:45 jtc Exp $ */
  3. /*-
  4. * Copyright (c) 1989, 1993
  5. * The Regents of the University of California. All rights reserved.
  6. * (c) UNIX System Laboratories, Inc.
  7. * All or some portions of this file are derived from material licensed
  8. * to the University of California by American Telephone and Telegraph
  9. * Co. or Unix System Laboratories, Inc. and are reproduced herein with
  10. * the permission of UNIX System Laboratories, Inc.
  11. * Portions Copyright(C) 1995, 1996, Jason Downs. All rights reserved.
  12. *
  13. * Redistribution and use in source and binary forms, with or without
  14. * modification, are permitted provided that the following conditions
  15. * are met:
  16. * 1. Redistributions of source code must retain the above copyright
  17. * notice, this list of conditions and the following disclaimer.
  18. * 2. Redistributions in binary form must reproduce the above copyright
  19. * notice, this list of conditions and the following disclaimer in the
  20. * documentation and/or other materials provided with the distribution.
  21. * 3. Neither the name of the University nor the names of its contributors
  22. * may be used to endorse or promote products derived from this software
  23. * without specific prior written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  26. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  27. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  28. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  29. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  30. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  31. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  32. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  33. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  34. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  35. * SUCH DAMAGE.
  36. *
  37. * @(#)pwd.h 8.2 (Berkeley) 1/21/94
  38. */
  39. #ifndef _PWD_H_
  40. #define _PWD_H_
  41. #include <sys/cdefs.h>
  42. #include <sys/types.h>
  43. #if __BSD_VISIBLE
  44. #define _PATH_PASSWD "/etc/passwd"
  45. #define _PATH_MASTERPASSWD "/etc/master.passwd"
  46. #define _PATH_MASTERPASSWD_LOCK "/etc/ptmp"
  47. #define _PATH_MP_DB "/etc/pwd.db"
  48. #define _PATH_SMP_DB "/etc/spwd.db"
  49. #define _PATH_PWD_MKDB "/usr/sbin/pwd_mkdb"
  50. #define _PW_KEYBYNAME '1' /* stored by name */
  51. #define _PW_KEYBYNUM '2' /* stored by entry in the "file" */
  52. #define _PW_KEYBYUID '3' /* stored by uid */
  53. #define _PW_YPTOKEN "__YP!"
  54. #define _PASSWORD_EFMT1 '_' /* extended encryption format */
  55. #define _PASSWORD_LEN 128 /* max length, not counting NUL */
  56. #define _PW_NAME_LEN 31 /* max length, not counting NUL */
  57. /* Should be MAXLOGNAME - 1 */
  58. #define _PW_BUF_LEN 1024 /* length of getpw*_r buffer */
  59. #define _PASSWORD_NOUID 0x01 /* flag for no specified uid. */
  60. #define _PASSWORD_NOGID 0x02 /* flag for no specified gid. */
  61. #define _PASSWORD_NOCHG 0x04 /* flag for no specified change. */
  62. #define _PASSWORD_NOEXP 0x08 /* flag for no specified expire. */
  63. /* Flags for pw_mkdb(3) */
  64. #define _PASSWORD_SECUREONLY 0x01 /* only generate spwd.db file */
  65. #define _PASSWORD_OMITV7 0x02 /* don't generate v7 passwd file */
  66. #endif
  67. struct passwd {
  68. char *pw_name; /* user name */
  69. char *pw_passwd; /* encrypted password */
  70. uid_t pw_uid; /* user uid */
  71. gid_t pw_gid; /* user gid */
  72. time_t pw_change; /* password change time */
  73. char *pw_class; /* user access class */
  74. char *pw_gecos; /* Honeywell login info */
  75. char *pw_dir; /* home directory */
  76. char *pw_shell; /* default shell */
  77. time_t pw_expire; /* account expiration */
  78. };
  79. __BEGIN_DECLS
  80. struct passwd *getpwuid(uid_t);
  81. struct passwd *getpwnam(const char *);
  82. int getpwnam_r(const char *, struct passwd *, char *, size_t,
  83. struct passwd **result);
  84. int getpwuid_r(uid_t uid, struct passwd *, char *buf, size_t buflen,
  85. struct passwd **result);
  86. #if __BSD_VISIBLE || __XPG_VISIBLE
  87. struct passwd *getpwent(void);
  88. void setpwent(void);
  89. void endpwent(void);
  90. #endif
  91. #if __BSD_VISIBLE
  92. int setpassent(int);
  93. char *user_from_uid(uid_t, int);
  94. char *bcrypt_gensalt(u_int8_t);
  95. char *bcrypt(const char *, const char *);
  96. char *md5crypt(const char *, const char *);
  97. struct passwd *pw_dup(const struct passwd *);
  98. #endif
  99. __END_DECLS
  100. #endif /* !_PWD_H_ */