Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / libpam / modules / pam_unix / support.h
1 /*
2  * $Id: support.h,v 1.3 2000/12/20 05:15:05 vorlon Exp $
3  * $FreeBSD: src/contrib/libpam/modules/pam_unix/support.h,v 1.1.1.1.2.2 2001/06/11 15:28:30 markm Exp $
4  */
5
6 #ifndef _PAM_UNIX_SUPPORT_H
7 #define _PAM_UNIX_SUPPORT_H
8
9
10 /*
11  * here is the string to inform the user that the new passwords they
12  * typed were not the same.
13  */
14
15 #define MISTYPED_PASS "Sorry, passwords do not match"
16
17 /* type definition for the control options */
18
19 typedef struct {
20         const char *token;
21         unsigned int mask;      /* shall assume 32 bits of flags */
22         unsigned int flag;
23 } UNIX_Ctrls;
24
25 /*
26  * macro to determine if a given flag is on
27  */
28
29 #define on(x,ctrl)  (unix_args[x].flag & ctrl)
30
31 /*
32  * macro to determine that a given flag is NOT on
33  */
34
35 #define off(x,ctrl) (!on(x,ctrl))
36
37 /*
38  * macro to turn on/off a ctrl flag manually
39  */
40
41 #define set(x,ctrl)   (ctrl = ((ctrl)&unix_args[x].mask)|unix_args[x].flag)
42 #define unset(x,ctrl) (ctrl &= ~(unix_args[x].flag))
43
44 /* the generic mask */
45
46 #define _ALL_ON_  (~0U)
47
48 /* end of macro definitions definitions for the control flags */
49
50 /* ****************************************************************** *
51  * ctrl flags proper..
52  */
53
54 /*
55  * here are the various options recognized by the unix module. They
56  * are enumerated here and then defined below. Internal arguments are
57  * given NULL tokens.
58  */
59
60 #define UNIX__OLD_PASSWD          0     /* internal */
61 #define UNIX__VERIFY_PASSWD       1     /* internal */
62 #define UNIX__IAMROOT             2     /* internal */
63
64 #define UNIX_AUDIT                3     /* print more things than debug..
65                                            some information may be sensitive */
66 #define UNIX_USE_FIRST_PASS       4
67 #define UNIX_TRY_FIRST_PASS       5
68 #define UNIX_NOT_SET_PASS         6     /* don't set the AUTHTOK items */
69
70 #define UNIX__PRELIM              7     /* internal */
71 #define UNIX__UPDATE              8     /* internal */
72 #define UNIX__NONULL              9     /* internal */
73 #define UNIX__QUIET              10     /* internal */
74 #define UNIX_USE_AUTHTOK         11     /* insist on reading PAM_AUTHTOK */
75 #define UNIX_SHADOW              12     /* signal shadow on */
76 #define UNIX_MD5_PASS            13     /* force the use of MD5 passwords */
77 #define UNIX__NULLOK             14     /* Null token ok */
78 #define UNIX_DEBUG               15     /* send more info to syslog(3) */
79 #define UNIX_NODELAY             16     /* admin does not want a fail-delay */
80 #define UNIX_NIS                 17     /* wish to use NIS for pwd */
81 #define UNIX_BIGCRYPT            18     /* use DEC-C2 crypt()^x function */
82 #define UNIX_LIKE_AUTH           19     /* need to auth for setcred to work */
83 #define UNIX_REMEMBER_PASSWD     20     /* Remember N previous passwords */
84 /* -------------- */
85 #define UNIX_CTRLS_              21     /* number of ctrl arguments defined */
86
87
88 static const UNIX_Ctrls unix_args[UNIX_CTRLS_] =
89 {
90 /* symbol                  token name          ctrl mask             ctrl     *
91  * ----------------------- ------------------- --------------------- -------- */
92
93 /* UNIX__OLD_PASSWD */     {NULL,              _ALL_ON_,                  01},
94 /* UNIX__VERIFY_PASSWD */  {NULL,              _ALL_ON_,                  02},
95 /* UNIX__IAMROOT */        {NULL,              _ALL_ON_,                  04},
96 /* UNIX_AUDIT */           {"audit",           _ALL_ON_,                 010},
97 /* UNIX_USE_FIRST_PASS */  {"use_first_pass",  _ALL_ON_^(060),           020},
98 /* UNIX_TRY_FIRST_PASS */  {"try_first_pass",  _ALL_ON_^(060),           040},
99 /* UNIX_NOT_SET_PASS */    {"not_set_pass",    _ALL_ON_,                0100},
100 /* UNIX__PRELIM */         {NULL,              _ALL_ON_^(0600),         0200},
101 /* UNIX__UPDATE */         {NULL,              _ALL_ON_^(0600),         0400},
102 /* UNIX__NONULL */         {NULL,              _ALL_ON_,               01000},
103 /* UNIX__QUIET */          {NULL,              _ALL_ON_,               02000},
104 /* UNIX_USE_AUTHTOK */     {"use_authtok",     _ALL_ON_,               04000},
105 /* UNIX_SHADOW */          {"shadow",          _ALL_ON_,              010000},
106 /* UNIX_MD5_PASS */        {"md5",             _ALL_ON_^(0400000),    020000},
107 /* UNIX__NULLOK */         {"nullok",          _ALL_ON_^(01000),           0},
108 /* UNIX_DEBUG */           {"debug",           _ALL_ON_,              040000},
109 /* UNIX_NODELAY */         {"nodelay",         _ALL_ON_,             0100000},
110 /* UNIX_NIS */             {"nis",             _ALL_ON_^(010000),    0200000},
111 /* UNIX_BIGCRYPT */        {"bigcrypt",        _ALL_ON_^(020000),    0400000},
112 /* UNIX_LIKE_AUTH */       {"likeauth",        _ALL_ON_,            01000000},
113 /* UNIX_REMEMBER_PASSWD */ {"remember=",       _ALL_ON_,            02000000},
114 };
115
116 #define UNIX_DEFAULTS  (unix_args[UNIX__NONULL].flag)
117
118
119 /* use this to free strings. ESPECIALLY password strings */
120
121 #define _pam_delete(xx)         \
122 {                               \
123         _pam_overwrite(xx);     \
124         _pam_drop(xx);          \
125 }
126
127 extern char *PAM_getlogin(void);
128 extern void _log_err(int err, pam_handle_t *pamh, const char *format,...);
129 extern int _make_remark(pam_handle_t * pamh, unsigned int ctrl
130                        ,int type, const char *text);
131 extern int _set_ctrl(pam_handle_t * pamh, int flags, int *remember, int argc,
132                      const char **argv);
133 extern int _unix_blankpasswd(unsigned int ctrl, const char *name);
134 extern int _unix_verify_password(pam_handle_t * pamh, const char *name
135                           ,const char *p, unsigned int ctrl);
136 extern int _unix_read_password(pam_handle_t * pamh
137                         ,unsigned int ctrl
138                         ,const char *comment
139                         ,const char *prompt1
140                         ,const char *prompt2
141                         ,const char *data_name
142                         ,const char **pass);
143
144 #endif /* _PAM_UNIX_SUPPORT_H */
145