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.
29 * bit flags representing initialized fields in SAM_ACCOUNT
60 PDB_BAD_PASSWORD_COUNT
,
65 PDB_BACKEND_PRIVATE_DATA
,
67 /* this must be the last element */
71 enum pdb_group_elements
{
74 PDB_GROUP_SID_NAME_USE
,
77 /* this must be the last element */
82 enum pdb_value_state
{
88 #define IS_SAM_SET(x, flag) (pdb_get_init_flags(x, flag) == PDB_SET)
89 #define IS_SAM_CHANGED(x, flag) (pdb_get_init_flags(x, flag) == PDB_CHANGED)
90 #define IS_SAM_DEFAULT(x, flag) (pdb_get_init_flags(x, flag) == PDB_DEFAULT)
92 typedef struct sam_passwd
96 void (*free_fn
)(struct sam_passwd
**);
98 struct pdb_methods
*methods
;
101 /* initialization flags */
102 struct bitmap
*change_flags
;
103 struct bitmap
*set_flags
;
105 time_t logon_time
; /* logon time */
106 time_t logoff_time
; /* logoff time */
107 time_t kickoff_time
; /* kickoff time */
108 time_t pass_last_set_time
; /* password last set time */
109 time_t pass_can_change_time
; /* password can change time */
110 time_t pass_must_change_time
; /* password must change time */
112 const char * username
; /* UNIX username string */
113 const char * domain
; /* Windows Domain name */
114 const char * nt_username
; /* Windows username string */
115 const char * full_name
; /* user's full name string */
116 const char * unix_home_dir
; /* UNIX home directory string */
117 const char * home_dir
; /* home directory string */
118 const char * dir_drive
; /* home directory drive string */
119 const char * logon_script
; /* logon script string */
120 const char * profile_path
; /* profile path string */
121 const char * acct_desc
; /* user description string */
122 const char * workstations
; /* login from workstations string */
123 const char * unknown_str
; /* don't know what this is, yet. */
124 const char * munged_dial
; /* munged path name and dial-back tel number */
126 DOM_SID user_sid
; /* Primary User SID */
127 DOM_SID group_sid
; /* Primary Group SID */
129 DATA_BLOB lm_pw
; /* .data is Null if no password */
130 DATA_BLOB nt_pw
; /* .data is Null if no password */
131 char* plaintext_pw
; /* is Null if not available */
133 uint16 acct_ctrl
; /* account info (ACB_xxxx bit-mask) */
134 uint32 unknown_3
; /* 0x00ff ffff */
136 uint16 logon_divs
; /* 168 - number of hours in a week */
137 uint32 hours_len
; /* normally 21 bytes */
138 uint8 hours
[MAX_HOURS_LEN
];
141 uint16 bad_password_count
;
144 uint32 unknown_6
; /* 0x0000 04ec */
145 /* a tag for who added the private methods */
146 const struct pdb_methods
*backend_private_methods
;
147 void *backend_private_data
;
148 void (*backend_private_data_free_fn
)(void **);
151 /* Lets see if the remaining code can get the hint that you
152 are meant to use the pdb_...() functions. */
156 typedef struct sam_group
{
159 void (*free_fn
)(struct sam_group
**);
161 struct pdb_methods
*methods
;
164 /* initialization flags */
165 struct bitmap
*change_flags
;
166 struct bitmap
*set_flags
;
168 const char *name
; /* Windows group name string */
170 DOM_SID sid
; /* Group SID */
171 enum SID_NAME_USE sid_name_use
; /* Group type */
173 uint32 mem_num
; /* Number of member SIDs */
174 DOM_SID
*members
; /* SID array */
180 typedef struct _GROUP_INFO
{
181 struct pdb_methods
*methods
;
183 enum SID_NAME_USE sid_name_use
;
189 /*****************************************************************
190 Functions to be implemented by the new (v2) passdb API
191 ****************************************************************/
194 * This next constant specifies the version number of the PASSDB interface
195 * this SAMBA will load. Increment this if *ANY* changes are made to the interface.
198 #define PASSDB_INTERFACE_VERSION 4
200 typedef struct pdb_context
202 struct pdb_methods
*pdb_methods
;
203 struct pdb_methods
*pwent_methods
;
205 /* These functions are wrappers for the functions listed above.
206 They may do extra things like re-reading a SAM_ACCOUNT on update */
208 NTSTATUS (*pdb_setsampwent
)(struct pdb_context
*, BOOL update
);
210 void (*pdb_endsampwent
)(struct pdb_context
*);
212 NTSTATUS (*pdb_getsampwent
)(struct pdb_context
*, SAM_ACCOUNT
*user
);
214 NTSTATUS (*pdb_getsampwnam
)(struct pdb_context
*, SAM_ACCOUNT
*sam_acct
, const char *username
);
216 NTSTATUS (*pdb_getsampwsid
)(struct pdb_context
*, SAM_ACCOUNT
*sam_acct
, const DOM_SID
*sid
);
218 NTSTATUS (*pdb_add_sam_account
)(struct pdb_context
*, SAM_ACCOUNT
*sampass
);
220 NTSTATUS (*pdb_update_sam_account
)(struct pdb_context
*, SAM_ACCOUNT
*sampass
);
222 NTSTATUS (*pdb_delete_sam_account
)(struct pdb_context
*, SAM_ACCOUNT
*username
);
224 /* group mapping functions: to be removed */
226 NTSTATUS (*pdb_getgrsid
)(struct pdb_context
*context
, GROUP_MAP
*map
, DOM_SID sid
);
228 NTSTATUS (*pdb_getgrgid
)(struct pdb_context
*context
, GROUP_MAP
*map
, gid_t gid
);
230 NTSTATUS (*pdb_getgrnam
)(struct pdb_context
*context
, GROUP_MAP
*map
, const char *name
);
232 NTSTATUS (*pdb_add_group_mapping_entry
)(struct pdb_context
*context
,
235 NTSTATUS (*pdb_update_group_mapping_entry
)(struct pdb_context
*context
,
238 NTSTATUS (*pdb_delete_group_mapping_entry
)(struct pdb_context
*context
,
241 NTSTATUS (*pdb_enum_group_mapping
)(struct pdb_context
*context
,
242 enum SID_NAME_USE sid_name_use
,
243 GROUP_MAP
**rmap
, int *num_entries
,
246 /* group functions */
248 NTSTATUS (*pdb_get_group_info_by_sid
)(struct pdb_context
*context
, GROUP_INFO
*info
, const DOM_SID
*group
);
250 NTSTATUS (*pdb_get_group_list
)(struct pdb_context
*context
, GROUP_INFO
**info
, const enum SID_NAME_USE sid_name_use
, int *num_groups
);
252 NTSTATUS (*pdb_get_group_sids
)(struct pdb_context
*context
, const DOM_SID
*group
, DOM_SID
**members
, int *num_members
);
254 NTSTATUS (*pdb_add_group
)(struct pdb_context
*context
, const SAM_GROUP
*group
);
256 NTSTATUS (*pdb_update_group
)(struct pdb_context
*context
, const SAM_GROUP
*group
);
258 NTSTATUS (*pdb_delete_group
)(struct pdb_context
*context
, const DOM_SID
*group
);
260 NTSTATUS (*pdb_add_sid_to_group
)(struct pdb_context
*context
, const DOM_SID
*group
, const DOM_SID
*member
);
262 NTSTATUS (*pdb_remove_sid_from_group
)(struct pdb_context
*context
, const DOM_SID
*group
, const DOM_SID
*member
);
264 NTSTATUS (*pdb_get_group_info_by_name
)(struct pdb_context
*context
, GROUP_INFO
*info
, const char *name
);
266 NTSTATUS (*pdb_get_group_info_by_nt_name
)(struct pdb_context
*context
, GROUP_INFO
*info
, const char *nt_name
);
268 NTSTATUS (*pdb_get_group_uids
)(struct pdb_context
*context
, const DOM_SID
*group
, uid_t
**members
, int *num_members
);
270 void (*free_fn
)(struct pdb_context
**);
276 typedef struct pdb_methods
278 const char *name
; /* What name got this module */
279 struct pdb_context
*parent
;
281 /* Use macros from dlinklist.h on these two */
282 struct pdb_methods
*next
;
283 struct pdb_methods
*prev
;
285 NTSTATUS (*setsampwent
)(struct pdb_methods
*, BOOL update
);
287 void (*endsampwent
)(struct pdb_methods
*);
289 NTSTATUS (*getsampwent
)(struct pdb_methods
*, SAM_ACCOUNT
*user
);
291 NTSTATUS (*getsampwnam
)(struct pdb_methods
*, SAM_ACCOUNT
*sam_acct
, const char *username
);
293 NTSTATUS (*getsampwsid
)(struct pdb_methods
*, SAM_ACCOUNT
*sam_acct
, const DOM_SID
*sid
);
295 NTSTATUS (*add_sam_account
)(struct pdb_methods
*, SAM_ACCOUNT
*sampass
);
297 NTSTATUS (*update_sam_account
)(struct pdb_methods
*, SAM_ACCOUNT
*sampass
);
299 NTSTATUS (*delete_sam_account
)(struct pdb_methods
*, SAM_ACCOUNT
*username
);
301 /* group mapping functions: to be removed */
303 NTSTATUS (*getgrsid
)(struct pdb_methods
*methods
, GROUP_MAP
*map
, DOM_SID sid
);
305 NTSTATUS (*getgrgid
)(struct pdb_methods
*methods
, GROUP_MAP
*map
, gid_t gid
);
307 NTSTATUS (*getgrnam
)(struct pdb_methods
*methods
, GROUP_MAP
*map
, const char *name
);
309 NTSTATUS (*add_group_mapping_entry
)(struct pdb_methods
*methods
,
312 NTSTATUS (*update_group_mapping_entry
)(struct pdb_methods
*methods
,
315 NTSTATUS (*delete_group_mapping_entry
)(struct pdb_methods
*methods
,
318 NTSTATUS (*enum_group_mapping
)(struct pdb_methods
*methods
,
319 enum SID_NAME_USE sid_name_use
,
320 GROUP_MAP
**rmap
, int *num_entries
,
323 /* group functions */
325 NTSTATUS (*get_group_info_by_sid
)(struct pdb_methods
*methods
, GROUP_INFO
*info
, const DOM_SID
*group
);
327 NTSTATUS (*get_group_list
)(struct pdb_methods
*methods
, GROUP_INFO
**info
, const enum SID_NAME_USE sid_name_use
, int *num_groups
);
329 NTSTATUS (*get_group_sids
)(struct pdb_methods
*methods
, const DOM_SID
*group
, DOM_SID
**members
, int *num_members
);
331 NTSTATUS (*add_group
)(struct pdb_methods
*methods
, const SAM_GROUP
*group
);
333 NTSTATUS (*update_group
)(struct pdb_methods
*methods
, const SAM_GROUP
*group
);
335 NTSTATUS (*delete_group
)(struct pdb_methods
*methods
, const DOM_SID
*group
);
337 NTSTATUS (*add_sid_to_group
)(struct pdb_methods
*methods
, const DOM_SID
*group
, const DOM_SID
*member
);
339 NTSTATUS (*remove_sid_from_group
)(struct pdb_methods
*methods
, const DOM_SID
*group
, const DOM_SID
*member
);
341 NTSTATUS (*get_group_info_by_name
)(struct pdb_methods
*methods
, GROUP_INFO
*info
, const char *name
);
343 NTSTATUS (*get_group_info_by_nt_name
)(struct pdb_methods
*methods
, GROUP_INFO
*info
, const char *nt_name
);
345 NTSTATUS (*get_group_uids
)(struct pdb_methods
*methods
, const DOM_SID
*group
, uid_t
**members
, int *num_members
);
347 void *private_data
; /* Private data of some kind */
349 void (*free_private_data
)(void **);
353 typedef NTSTATUS (*pdb_init_function
)(struct pdb_context
*,
354 struct pdb_methods
**,
357 struct pdb_init_function_entry
{
359 /* Function to create a member of the pdb_methods list */
360 pdb_init_function init
;
361 struct pdb_init_function_entry
*prev
, *next
;
364 #endif /* _PASSDB_H */