Samba 3: added Samba 3.0.24 sources
[tomato.git] / release / src / router / samba3 / source / include / passdb.h
blob432976412dbc432d360259ac1bb0bd3f628a2dcd
1 /*
2 Unix SMB/CIFS implementation.
3 passdb structures and parameters
4 Copyright (C) Gerald Carter 2001
5 Copyright (C) Luke Kenneth Casson Leighton 1998 - 2000
6 Copyright (C) Andrew Bartlett 2002
7 Copyright (C) Simo Sorce 2003
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #ifndef _PASSDB_H
25 #define _PASSDB_H
29 * fields_present flags meanings
30 * same names as found in samba4 idl files
33 #define ACCT_USERNAME 0x00000001
34 #define ACCT_FULL_NAME 0x00000002
35 #define ACCT_RID 0x00000004
36 #define ACCT_PRIMARY_GID 0x00000008
37 #define ACCT_ADMIN_DESC 0x00000010
38 #define ACCT_DESCRIPTION 0x00000020
39 #define ACCT_HOME_DIR 0x00000040
40 #define ACCT_HOME_DRIVE 0x00000080
41 #define ACCT_LOGON_SCRIPT 0x00000100
42 #define ACCT_PROFILE 0x00000200
43 #define ACCT_WORKSTATIONS 0x00000400
44 #define ACCT_LAST_LOGON 0x00000800
45 #define ACCT_LAST_LOGOFF 0x00001000
46 #define ACCT_LOGON_HOURS 0x00002000
47 #define ACCT_BAD_PWD_COUNT 0x00004000
48 #define ACCT_NUM_LOGONS 0x00008000
49 #define ACCT_ALLOW_PWD_CHANGE 0x00010000
50 #define ACCT_FORCE_PWD_CHANGE 0x00020000
51 #define ACCT_LAST_PWD_CHANGE 0x00040000
52 #define ACCT_EXPIRY 0x00080000
53 #define ACCT_FLAGS 0x00100000
54 #define ACCT_CALLBACK 0x00200000
55 #define ACCT_COUNTRY_CODE 0x00400000
56 #define ACCT_CODE_PAGE 0x00800000
57 #define ACCT_NT_PWD_SET 0x01000000
58 #define ACCT_LM_PWD_SET 0x02000000
59 #define ACCT_PRIVATEDATA 0x04000000
60 #define ACCT_EXPIRED_FLAG 0x08000000
61 #define ACCT_SEC_DESC 0x10000000
62 #define ACCT_OWF_PWD 0x20000000
65 * bit flags representing initialized fields in struct samu
67 enum pdb_elements {
68 PDB_UNINIT,
69 PDB_SMBHOME,
70 PDB_PROFILE,
71 PDB_DRIVE,
72 PDB_LOGONSCRIPT,
73 PDB_LOGONTIME,
74 PDB_LOGOFFTIME,
75 PDB_KICKOFFTIME,
76 PDB_BAD_PASSWORD_TIME,
77 PDB_CANCHANGETIME,
78 PDB_MUSTCHANGETIME,
79 PDB_PLAINTEXT_PW,
80 PDB_USERNAME,
81 PDB_FULLNAME,
82 PDB_DOMAIN,
83 PDB_NTUSERNAME,
84 PDB_HOURSLEN,
85 PDB_LOGONDIVS,
86 PDB_USERSID,
87 PDB_GROUPSID,
88 PDB_ACCTCTRL,
89 PDB_PASSLASTSET,
90 PDB_UNIXHOMEDIR,
91 PDB_ACCTDESC,
92 PDB_WORKSTATIONS,
93 PDB_UNKNOWNSTR,
94 PDB_MUNGEDDIAL,
95 PDB_HOURS,
96 PDB_FIELDS_PRESENT,
97 PDB_BAD_PASSWORD_COUNT,
98 PDB_LOGON_COUNT,
99 PDB_UNKNOWN6,
100 PDB_LMPASSWD,
101 PDB_NTPASSWD,
102 PDB_PWHISTORY,
103 PDB_BACKEND_PRIVATE_DATA,
105 /* this must be the last element */
106 PDB_COUNT
109 enum pdb_group_elements {
110 PDB_GROUP_NAME,
111 PDB_GROUP_SID,
112 PDB_GROUP_SID_NAME_USE,
113 PDB_GROUP_MEMBERS,
115 /* this must be the last element */
116 PDB_GROUP_COUNT
120 enum pdb_value_state {
121 PDB_DEFAULT=0,
122 PDB_SET,
123 PDB_CHANGED
126 #define IS_SAM_SET(x, flag) (pdb_get_init_flags(x, flag) == PDB_SET)
127 #define IS_SAM_CHANGED(x, flag) (pdb_get_init_flags(x, flag) == PDB_CHANGED)
128 #define IS_SAM_DEFAULT(x, flag) (pdb_get_init_flags(x, flag) == PDB_DEFAULT)
130 /* cache for bad password lockout data, to be used on replicated SAMs */
131 typedef struct logon_cache_struct {
132 time_t entry_timestamp;
133 uint32 acct_ctrl;
134 uint16 bad_password_count;
135 time_t bad_password_time;
136 } LOGIN_CACHE;
138 struct samu {
139 struct pdb_methods *methods;
141 /* initialization flags */
142 struct bitmap *change_flags;
143 struct bitmap *set_flags;
145 time_t logon_time; /* logon time */
146 time_t logoff_time; /* logoff time */
147 time_t kickoff_time; /* kickoff time */
148 time_t bad_password_time; /* last bad password entered */
149 time_t pass_last_set_time; /* password last set time */
150 time_t pass_can_change_time; /* password can change time */
151 time_t pass_must_change_time; /* password must change time */
153 const char *username; /* UNIX username string */
154 const char *domain; /* Windows Domain name */
155 const char *nt_username; /* Windows username string */
156 const char *full_name; /* user's full name string */
157 const char *home_dir; /* home directory string */
158 const char *dir_drive; /* home directory drive string */
159 const char *logon_script; /* logon script string */
160 const char *profile_path; /* profile path string */
161 const char *acct_desc; /* user description string */
162 const char *workstations; /* login from workstations string */
163 const char *unknown_str; /* don't know what this is, yet. */
164 const char *munged_dial; /* munged path name and dial-back tel number */
166 DOM_SID user_sid;
167 DOM_SID *group_sid;
169 DATA_BLOB lm_pw; /* .data is Null if no password */
170 DATA_BLOB nt_pw; /* .data is Null if no password */
171 DATA_BLOB nt_pw_his; /* nt hashed password history .data is Null if not available */
172 char* plaintext_pw; /* is Null if not available */
174 uint32 acct_ctrl; /* account info (ACB_xxxx bit-mask) */
175 uint32 fields_present; /* 0x00ff ffff */
177 uint16 logon_divs; /* 168 - number of hours in a week */
178 uint32 hours_len; /* normally 21 bytes */
179 uint8 hours[MAX_HOURS_LEN];
181 /* Was unknown_5. */
182 uint16 bad_password_count;
183 uint16 logon_count;
185 uint32 unknown_6; /* 0x0000 04ec */
187 /* a tag for who added the private methods */
189 const struct pdb_methods *backend_private_methods;
190 void *backend_private_data;
191 void (*backend_private_data_free_fn)(void **);
193 /* maintain a copy of the user's struct passwd */
195 struct passwd *unix_pw;
198 struct acct_info {
199 fstring acct_name; /* account name */
200 fstring acct_desc; /* account name */
201 uint32 rid; /* domain-relative RID */
204 struct samr_displayentry {
205 uint32 idx;
206 uint32 rid;
207 uint32 acct_flags;
208 const char *account_name;
209 const char *fullname;
210 const char *description;
213 enum pdb_search_type {
214 PDB_USER_SEARCH,
215 PDB_GROUP_SEARCH,
216 PDB_ALIAS_SEARCH
219 struct pdb_search {
220 TALLOC_CTX *mem_ctx;
221 enum pdb_search_type type;
222 struct samr_displayentry *cache;
223 uint32 num_entries;
224 ssize_t cache_size;
225 BOOL search_ended;
226 void *private_data;
227 BOOL (*next_entry)(struct pdb_search *search,
228 struct samr_displayentry *entry);
229 void (*search_end)(struct pdb_search *search);
232 /*****************************************************************
233 Functions to be implemented by the new (v2) passdb API
234 ****************************************************************/
237 * This next constant specifies the version number of the PASSDB interface
238 * this SAMBA will load. Increment this if *ANY* changes are made to the interface.
239 * Changed interface to fix int -> size_t problems. JRA.
240 * There's no point in allocating arrays in
241 * samr_lookup_rids twice. It was done in the srv_samr_nt.c code as well as in
242 * the pdb module. Remove the latter, this might happen more often. VL.
245 #define PASSDB_INTERFACE_VERSION 13
247 struct pdb_methods
249 const char *name; /* What name got this module */
251 NTSTATUS (*setsampwent)(struct pdb_methods *, BOOL update, uint32 acb_mask);
253 void (*endsampwent)(struct pdb_methods *);
255 NTSTATUS (*getsampwent)(struct pdb_methods *, struct samu *user);
257 NTSTATUS (*getsampwnam)(struct pdb_methods *, struct samu *sam_acct, const char *username);
259 NTSTATUS (*getsampwsid)(struct pdb_methods *, struct samu *sam_acct, const DOM_SID *sid);
261 NTSTATUS (*create_user)(struct pdb_methods *, TALLOC_CTX *tmp_ctx,
262 const char *name, uint32 acct_flags,
263 uint32 *rid);
265 NTSTATUS (*delete_user)(struct pdb_methods *, TALLOC_CTX *tmp_ctx,
266 struct samu *sam_acct);
268 NTSTATUS (*add_sam_account)(struct pdb_methods *, struct samu *sampass);
270 NTSTATUS (*update_sam_account)(struct pdb_methods *, struct samu *sampass);
272 NTSTATUS (*delete_sam_account)(struct pdb_methods *, struct samu *username);
274 NTSTATUS (*rename_sam_account)(struct pdb_methods *, struct samu *oldname, const char *newname);
276 NTSTATUS (*update_login_attempts)(struct pdb_methods *methods, struct samu *sam_acct, BOOL success);
278 NTSTATUS (*getgrsid)(struct pdb_methods *methods, GROUP_MAP *map, DOM_SID sid);
280 NTSTATUS (*getgrgid)(struct pdb_methods *methods, GROUP_MAP *map, gid_t gid);
282 NTSTATUS (*getgrnam)(struct pdb_methods *methods, GROUP_MAP *map, const char *name);
284 NTSTATUS (*create_dom_group)(struct pdb_methods *methods,
285 TALLOC_CTX *mem_ctx, const char *name,
286 uint32 *rid);
288 NTSTATUS (*delete_dom_group)(struct pdb_methods *methods,
289 TALLOC_CTX *mem_ctx, uint32 rid);
291 NTSTATUS (*add_group_mapping_entry)(struct pdb_methods *methods,
292 GROUP_MAP *map);
294 NTSTATUS (*update_group_mapping_entry)(struct pdb_methods *methods,
295 GROUP_MAP *map);
297 NTSTATUS (*delete_group_mapping_entry)(struct pdb_methods *methods,
298 DOM_SID sid);
300 NTSTATUS (*enum_group_mapping)(struct pdb_methods *methods,
301 const DOM_SID *sid, enum SID_NAME_USE sid_name_use,
302 GROUP_MAP **pp_rmap, size_t *p_num_entries,
303 BOOL unix_only);
305 NTSTATUS (*enum_group_members)(struct pdb_methods *methods,
306 TALLOC_CTX *mem_ctx,
307 const DOM_SID *group,
308 uint32 **pp_member_rids,
309 size_t *p_num_members);
311 NTSTATUS (*enum_group_memberships)(struct pdb_methods *methods,
312 TALLOC_CTX *mem_ctx,
313 struct samu *user,
314 DOM_SID **pp_sids, gid_t **pp_gids,
315 size_t *p_num_groups);
317 NTSTATUS (*set_unix_primary_group)(struct pdb_methods *methods,
318 TALLOC_CTX *mem_ctx,
319 struct samu *user);
321 NTSTATUS (*add_groupmem)(struct pdb_methods *methods,
322 TALLOC_CTX *mem_ctx,
323 uint32 group_rid, uint32 member_rid);
325 NTSTATUS (*del_groupmem)(struct pdb_methods *methods,
326 TALLOC_CTX *mem_ctx,
327 uint32 group_rid, uint32 member_rid);
329 NTSTATUS (*find_alias)(struct pdb_methods *methods,
330 const char *name, DOM_SID *sid);
332 NTSTATUS (*create_alias)(struct pdb_methods *methods,
333 const char *name, uint32 *rid);
335 NTSTATUS (*delete_alias)(struct pdb_methods *methods,
336 const DOM_SID *sid);
338 NTSTATUS (*get_aliasinfo)(struct pdb_methods *methods,
339 const DOM_SID *sid,
340 struct acct_info *info);
342 NTSTATUS (*set_aliasinfo)(struct pdb_methods *methods,
343 const DOM_SID *sid,
344 struct acct_info *info);
346 NTSTATUS (*add_aliasmem)(struct pdb_methods *methods,
347 const DOM_SID *alias, const DOM_SID *member);
348 NTSTATUS (*del_aliasmem)(struct pdb_methods *methods,
349 const DOM_SID *alias, const DOM_SID *member);
350 NTSTATUS (*enum_aliasmem)(struct pdb_methods *methods,
351 const DOM_SID *alias, DOM_SID **members,
352 size_t *p_num_members);
353 NTSTATUS (*enum_alias_memberships)(struct pdb_methods *methods,
354 TALLOC_CTX *mem_ctx,
355 const DOM_SID *domain_sid,
356 const DOM_SID *members,
357 size_t num_members,
358 uint32 **pp_alias_rids,
359 size_t *p_num_alias_rids);
361 NTSTATUS (*lookup_rids)(struct pdb_methods *methods,
362 const DOM_SID *domain_sid,
363 int num_rids,
364 uint32 *rids,
365 const char **pp_names,
366 uint32 *attrs);
368 NTSTATUS (*lookup_names)(struct pdb_methods *methods,
369 const DOM_SID *domain_sid,
370 int num_names,
371 const char **pp_names,
372 uint32 *rids,
373 uint32 *attrs);
375 NTSTATUS (*get_account_policy)(struct pdb_methods *methods,
376 int policy_index, uint32 *value);
378 NTSTATUS (*set_account_policy)(struct pdb_methods *methods,
379 int policy_index, uint32 value);
381 NTSTATUS (*get_seq_num)(struct pdb_methods *methods, time_t *seq_num);
383 BOOL (*search_users)(struct pdb_methods *methods,
384 struct pdb_search *search,
385 uint32 acct_flags);
386 BOOL (*search_groups)(struct pdb_methods *methods,
387 struct pdb_search *search);
388 BOOL (*search_aliases)(struct pdb_methods *methods,
389 struct pdb_search *search,
390 const DOM_SID *sid);
392 BOOL (*uid_to_rid)(struct pdb_methods *methods, uid_t uid,
393 uint32 *rid);
394 BOOL (*gid_to_sid)(struct pdb_methods *methods, gid_t gid,
395 DOM_SID *sid);
396 BOOL (*sid_to_id)(struct pdb_methods *methods, const DOM_SID *sid,
397 union unid_t *id, enum SID_NAME_USE *type);
399 BOOL (*rid_algorithm)(struct pdb_methods *methods);
400 BOOL (*new_rid)(struct pdb_methods *methods, uint32 *rid);
402 void *private_data; /* Private data of some kind */
404 void (*free_private_data)(void **);
407 typedef NTSTATUS (*pdb_init_function)(struct pdb_methods **, const char *);
409 struct pdb_init_function_entry {
410 const char *name;
412 /* Function to create a member of the pdb_methods list */
413 pdb_init_function init;
415 struct pdb_init_function_entry *prev, *next;
418 #endif /* _PASSDB_H */