s3-passdb: include samr.h where needed.
[samba.git] / source3 / pam_smbpass / general.h
1 #include "../librpc/gen_ndr/samr.h"
2
3 #ifndef LINUX
4 /* This is only needed by modules in the Sun implementation. */
5 #if defined(HAVE_SECURITY_PAM_APPL_H)
6 #include <security/pam_appl.h>
7 #elif defined(HAVE_PAM_PAM_APPL_H)
8 #include <pam/pam_appl.h>
9 #endif
10 #endif  /* LINUX */
11
12 #if defined(HAVE_SECURITY_PAM_MODULES_H)
13 #include <security/pam_modules.h>
14 #elif defined(HAVE_PAM_PAM_MODULES_H)
15 #include <pam/pam_modules.h>
16 #endif
17
18 #ifndef PAM_AUTHTOK_RECOVER_ERR  
19 #define PAM_AUTHTOK_RECOVER_ERR PAM_AUTHTOK_RECOVERY_ERR
20 #endif
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <syslog.h>
25 #include <unistd.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <sys/wait.h>
29
30 /*
31  * here is the string to inform the user that the new passwords they
32  * typed were not the same.
33  */
34
35 #define MISTYPED_PASS "Sorry, passwords do not match"
36
37 /* type definition for the control options */
38
39 typedef struct {
40      const char *token;
41      unsigned int mask;            /* shall assume 32 bits of flags */
42      unsigned int flag;
43 } SMB_Ctrls;
44
45 #ifndef False
46 #define False (0)
47 #endif
48
49 #ifndef True
50 #define True (1)
51 #endif
52
53 /* macro to determine if a given flag is on */
54 #define on(x,ctrl)  (smb_args[x].flag & ctrl)
55
56 /* macro to determine that a given flag is NOT on */
57 #define off(x,ctrl) (!on(x,ctrl))
58
59 /* macro to turn on/off a ctrl flag manually */
60 #define set(x,ctrl)   (ctrl = ((ctrl)&smb_args[x].mask)|smb_args[x].flag)
61 #define unset(x,ctrl) (ctrl &= ~(smb_args[x].flag))
62
63 /* the generic mask */
64 #define _ALL_ON_  (~0U)
65
66 /* end of macro definitions definitions for the control flags */
67
68 /*
69  * These are the options supported by the smb password module, very
70  * similar to the pwdb options
71  */
72
73 #define SMB__OLD_PASSWD          0      /* internal */
74 #define SMB__VERIFY_PASSWD       1      /* internal */
75
76 #define SMB_AUDIT                2      /* print more things than debug..
77                                            some information may be sensitive */
78 #define SMB_USE_FIRST_PASS       3
79 #define SMB_TRY_FIRST_PASS       4
80 #define SMB_NOT_SET_PASS         5      /* don't set the AUTHTOK items */
81
82 #define SMB__NONULL              6      /* internal */
83 #define SMB__QUIET               7      /* internal */
84 #define SMB_USE_AUTHTOK          8      /* insist on reading PAM_AUTHTOK */
85 #define SMB__NULLOK              9      /* Null token ok */
86 #define SMB_DEBUG               10      /* send more info to syslog(3) */
87 #define SMB_NODELAY             11      /* admin does not want a fail-delay */
88 #define SMB_MIGRATE             12      /* Does no authentication, just
89                                            updates the smb database. */
90 #define SMB_CONF_FILE           13      /* Alternate location of smb.conf */
91
92 #define SMB_CTRLS_              14      /* number of ctrl arguments defined */
93
94 static const SMB_Ctrls smb_args[SMB_CTRLS_] = {
95 /* symbol                 token name          ctrl mask      ctrl       *
96  * ------------------     ------------------  -------------- ---------- */
97
98 /* SMB__OLD_PASSWD */    {  NULL,            _ALL_ON_,              01 },
99 /* SMB__VERIFY_PASSWD */ {  NULL,            _ALL_ON_,              02 },
100 /* SMB_AUDIT */          { "audit",          _ALL_ON_,              04 },
101 /* SMB_USE_FIRST_PASS */ { "use_first_pass", _ALL_ON_^(030),       010 },
102 /* SMB_TRY_FIRST_PASS */ { "try_first_pass", _ALL_ON_^(030),       020 },
103 /* SMB_NOT_SET_PASS */   { "not_set_pass",   _ALL_ON_,             040 },
104 /* SMB__NONULL */        {  "nonull",        _ALL_ON_,            0100 },
105 /* SMB__QUIET */         {  NULL,            _ALL_ON_,            0200 },
106 /* SMB_USE_AUTHTOK */    { "use_authtok",    _ALL_ON_,            0400 },
107 /* SMB__NULLOK */        { "nullok",         _ALL_ON_^(0100),        0 },
108 /* SMB_DEBUG */          { "debug",          _ALL_ON_,           01000 },
109 /* SMB_NODELAY */        { "nodelay",        _ALL_ON_,           02000 },
110 /* SMB_MIGRATE */        { "migrate",        _ALL_ON_^(0100),    04000 },
111 /* SMB_CONF_FILE */      { "smbconf=",       _ALL_ON_,               0 },
112 };
113
114 #define SMB_DEFAULTS  (smb_args[SMB__NONULL].flag)
115
116 /*
117  * the following is used to keep track of the number of times a user fails
118  * to authenticate themself.
119  */
120
121 #define FAIL_PREFIX                     "-SMB-FAIL-"
122 #define SMB_MAX_RETRIES                 3
123
124 struct _pam_failed_auth {
125     char *user;                 /* user that's failed to be authenticated */
126     uid_t id;                   /* uid of requested user */
127     char *agent;                /* attempt from user with name */
128     int count;                  /* number of failures so far */
129 };
130
131 /*
132  * General use functions go here 
133  */
134
135 /* from support.c */
136 int make_remark(pam_handle_t *, unsigned int, int, const char *);