1 #ifndef _system_passwd_h
2 #define _system_passwd_h
5 Unix SMB/CIFS implementation.
7 passwd system include wrappers
9 Copyright (C) Andrew Tridgell 2004
11 ** NOTE! The following LGPL license applies to the replace
12 ** library. This does NOT imply that all of Samba is released
15 This library is free software; you can redistribute it and/or
16 modify it under the terms of the GNU Lesser General Public
17 License as published by the Free Software Foundation; either
18 version 3 of the License, or (at your option) any later version.
20 This library is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 Lesser General Public License for more details.
25 You should have received a copy of the GNU Lesser General Public
26 License along with this library; if not, see <http://www.gnu.org/licenses/>.
30 /* this needs to be included before nss_wrapper.h on some systems */
39 #ifdef HAVE_SYS_PRIV_H
54 #ifdef HAVE_SYS_SECURITY_H
55 #include <sys/security.h>
57 #define PASSWORD_LENGTH 16
58 #endif /* HAVE_SYS_SECURITY_H */
61 #include <sys/label.h>
62 #include <sys/audit.h>
70 #ifdef REPLACE_GETPASS
71 #if defined(REPLACE_GETPASS_BY_GETPASSPHRASE)
72 #define getpass(prompt) getpassphrase(prompt)
74 #define getpass(prompt) rep_getpass(prompt)
75 char *rep_getpass(const char *prompt
);
80 #define NGROUPS_MAX 32 /* Guess... */
83 /* what is the longest significant password available on your system?
84 Knowing this speeds up password searches a lot */
85 #ifndef PASSWORD_LENGTH
86 #define PASSWORD_LENGTH 8
89 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
90 #define OSF1_ENH_SEC 1
93 #ifndef ALLOW_CHANGE_PASSWORD
94 #if (defined(HAVE_TERMIOS_H) && defined(HAVE_DUP2) && defined(HAVE_SETSID))
95 #define ALLOW_CHANGE_PASSWORD 1
99 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
100 #define ULTRIX_AUTH 1
104 #ifndef NSS_WRAPPER_NOT_REPLACE
105 #define NSS_WRAPPER_REPLACE
107 #include "../nss_wrapper/nss_wrapper.h"