2 Unix SMB/CIFS implementation.
4 Winbind daemon for ntdom nss module
6 Copyright (C) Tim Potter 2000
7 Copyright (C) Gerald Carter 2006
9 You are free to use this interface definition in any way you see
10 fit, including without restriction, using this header in your own
11 products. You do not need to give any attribution.
15 #define SAFE_FREE(x) do { if(x) {free(x); x=NULL;} } while(0)
19 #define FSTRING_LEN 256
20 typedef char fstring
[FSTRING_LEN
];
23 #ifndef _WINBINDD_NTDOM_H
24 #define _WINBINDD_NTDOM_H
26 #define WINBINDD_SOCKET_NAME "pipe" /* Name of PF_UNIX socket */
28 /* We let the build environment set the public winbindd socket
29 * location. Therefore we no longer set
31 * #define WINBINDD_SOCKET_DIR "/tmp/.winbindd"
33 * A number of different distributions set different paths, and so it
34 * needs to come from configure in Samba. External users of this header will
35 * need to know where the path is on their system by some other
40 * when compiled with socket_wrapper support
41 * the location of the WINBINDD_SOCKET_DIR
42 * can be overwritten via an environment variable
44 #define WINBINDD_SOCKET_DIR_ENVVAR "WINBINDD_SOCKET_DIR"
46 #define WINBINDD_PRIV_SOCKET_SUBDIR "winbindd_privileged" /* name of subdirectory of lp_lock_directory() to hold the 'privileged' pipe */
47 #define WINBINDD_DOMAIN_ENV "WINBINDD_DOMAIN" /* Environment variables */
48 #define WINBINDD_DONT_ENV "_NO_WINBINDD"
49 #define WINBINDD_LOCATOR_KDC_ADDRESS "WINBINDD_LOCATOR_KDC_ADDRESS"
51 /* Update this when you change the interface.
52 * 21: added WINBINDD_GETPWSID
53 * added WINBINDD_GETSIDALIASES
54 * 22: added WINBINDD_PING_DC
55 * 23: added session_key to ccache_ntlm_auth response
56 * added WINBINDD_CCACHE_SAVE
57 * 24: Fill in num_entries WINBINDD_LIST_USERS and WINBINDD_LIST_GROUPS
58 * 25: removed WINBINDD_SET_HWM
59 * removed WINBINDD_SET_MAPPING
60 * removed WINBINDD_REMOVE_MAPPING
61 * 26: added WINBINDD_DC_INFO
62 * 27: added WINBINDD_LOOKUPSIDS
64 #define WINBIND_INTERFACE_VERSION 27
66 /* Have to deal with time_t being 4 or 8 bytes due to structure alignment.
67 On a 64bit Linux box, we have to support a constant structure size
68 between /lib/libnss_winbind.so.2 and /lib64/libnss_winbind.so.2.
69 The easiest way to do this is to always use 8byte values for time_t. */
71 #define SMB_TIME_T int64_t
77 WINBINDD_INTERFACE_VERSION
, /* Always a well known value */
79 /* Get users and groups */
88 /* Enumerate users and groups */
97 /* PAM authenticate and password change */
100 WINBINDD_PAM_AUTH_CRAP
,
101 WINBINDD_PAM_CHAUTHTOK
,
103 WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP
,
105 /* List various things */
107 WINBINDD_LIST_USERS
, /* List w/o rid->id mapping */
108 WINBINDD_LIST_GROUPS
, /* Ditto */
109 WINBINDD_LIST_TRUSTDOM
,
118 /* Lookup functions */
122 WINBINDD_SIDS_TO_XIDS
,
126 WINBINDD_ALLOCATE_UID
,
127 WINBINDD_ALLOCATE_GID
,
129 /* Miscellaneous other stuff */
131 WINBINDD_CHECK_MACHACC
, /* Check machine account pw works */
132 WINBINDD_CHANGE_MACHACC
, /* Change machine account pw */
133 WINBINDD_PING_DC
, /* Ping the DC through NETLOGON */
134 WINBINDD_PING
, /* Just tell me winbind is running */
135 WINBINDD_INFO
, /* Various bit of info. Currently just tidbits */
136 WINBINDD_DOMAIN_NAME
, /* The domain this winbind server is a member of (lp_workgroup()) */
138 WINBINDD_DOMAIN_INFO
, /* Most of what we know from
139 struct winbindd_domain */
140 WINBINDD_GETDCNAME
, /* Issue a GetDCName Request */
141 WINBINDD_DSGETDCNAME
, /* Issue a DsGetDCName Request */
142 WINBINDD_DC_INFO
, /* Which DC are we connected to? */
144 WINBINDD_SHOW_SEQUENCE
, /* display sequence numbers of domains */
149 WINBINDD_WINS_BYNAME
,
151 /* this is like GETGRENT but gives an empty group list */
154 WINBINDD_NETBIOS_NAME
, /* The netbios name of the server */
156 /* find the location of our privileged pipe */
157 WINBINDD_PRIV_PIPE_DIR
,
159 /* return a list of group sids for a user sid */
160 WINBINDD_GETUSERSIDS
,
162 /* Various group queries */
163 WINBINDD_GETUSERDOMGROUPS
,
165 /* lookup local groups */
166 WINBINDD_GETSIDALIASES
,
168 /* Initialize connection in a child */
169 WINBINDD_INIT_CONNECTION
,
171 /* Blocking calls that are not allowed on the main winbind pipe, only
172 * between parent and children */
173 WINBINDD_DUAL_SID2UID
,
174 WINBINDD_DUAL_SID2GID
,
175 WINBINDD_DUAL_SIDS2XIDS
,
176 WINBINDD_DUAL_UID2SID
,
177 WINBINDD_DUAL_GID2SID
,
179 /* Wrapper around possibly blocking unix nss calls */
180 WINBINDD_DUAL_USERINFO
,
181 WINBINDD_DUAL_GETSIDALIASES
,
183 WINBINDD_DUAL_NDRCMD
,
185 /* Complete the challenge phase of the NTLM authentication
186 protocol using cached password. */
187 WINBINDD_CCACHE_NTLMAUTH
,
188 WINBINDD_CCACHE_SAVE
,
193 typedef struct winbindd_pw
{
204 typedef struct winbindd_gr
{
209 uint32_t gr_mem_ofs
; /* offset to group membership */
213 #define WBFLAG_PAM_INFO3_NDR 0x00000001
214 #define WBFLAG_PAM_INFO3_TEXT 0x00000002
215 #define WBFLAG_PAM_USER_SESSION_KEY 0x00000004
216 #define WBFLAG_PAM_LMKEY 0x00000008
217 #define WBFLAG_PAM_CONTACT_TRUSTDOM 0x00000010
218 #define WBFLAG_QUERY_ONLY 0x00000020 /* not used */
219 #define WBFLAG_PAM_AUTH_PAC 0x00000040
220 #define WBFLAG_PAM_UNIX_NAME 0x00000080
221 #define WBFLAG_PAM_AFS_TOKEN 0x00000100
222 #define WBFLAG_PAM_NT_STATUS_SQUASH 0x00000200
223 /* This is a flag that can only be sent from parent to child */
224 #define WBFLAG_IS_PRIVILEGED 0x00000400 /* not used */
225 /* Flag to say this is a winbindd internal send - don't recurse. */
226 #define WBFLAG_RECURSE 0x00000800
227 #define WBFLAG_PAM_KRB5 0x00001000
228 #define WBFLAG_PAM_FALLBACK_AFTER_KRB5 0x00002000
229 #define WBFLAG_PAM_CACHED_LOGIN 0x00004000
230 #define WBFLAG_PAM_GET_PWD_POLICY 0x00008000
231 /* Flag to tell winbind the NTLMv2 blob is too big for the struct and is in the
232 * extra_data field */
233 #define WBFLAG_BIG_NTLMV2_BLOB 0x00010000
235 #define WINBINDD_MAX_EXTRA_DATA (128*1024)
237 /* Winbind request structure */
239 /*******************************************************************************
240 * This structure MUST be the same size in the 32bit and 64bit builds
241 * for compatibility between /lib64/libnss_winbind.so and /lib/libnss_winbind.so
243 * DO NOT CHANGE THIS STRUCTURE WITHOUT TESTING THE 32BIT NSS LIB AGAINST
244 * A 64BIT WINBINDD --jerry
245 ******************************************************************************/
247 struct winbindd_request
{
249 enum winbindd_cmd cmd
; /* Winbindd command to execute */
250 enum winbindd_cmd original_cmd
; /* Original Winbindd command
251 issued to parent process */
252 pid_t pid
; /* pid of calling process */
253 uint32_t wb_flags
; /* generic flags */
254 uint32_t flags
; /* flags relevant *only* to a given request */
255 fstring domain_name
; /* name of domain for which the request applies */
258 fstring winsreq
; /* WINS request */
259 fstring username
; /* getpwnam */
260 fstring groupname
; /* getgrnam */
261 uid_t uid
; /* getpwuid, uid_to_sid */
262 gid_t gid
; /* getgrgid, gid_to_sid */
265 /* We deliberatedly don't split into domain/user to
266 avoid having the client know what the separator
270 char require_membership_of_sid
[1024];
271 fstring krb5_cc_type
;
273 } auth
; /* pam_winbind auth module */
276 uint32_t logon_parameters
;
280 uint32_t lm_resp_len
;
282 uint32_t nt_resp_len
;
284 fstring require_membership_of_sid
;
290 } chauthtok
; /* pam_winbind passwd module */
294 uint8_t new_nt_pswd
[516];
295 uint16_t new_nt_pswd_len
;
296 uint8_t old_nt_hash_enc
[16];
297 uint16_t old_nt_hash_enc_len
;
298 uint8_t new_lm_pswd
[516];
299 uint16_t new_lm_pswd_len
;
300 uint8_t old_lm_hash_enc
[16];
301 uint16_t old_lm_hash_enc_len
;
302 } chng_pswd_auth_crap
;/* pam_winbind passwd module */
307 } logoff
; /* pam_winbind session module */
308 fstring sid
; /* lookupsid, sid_to_[ug]id */
310 fstring dom_name
; /* lookupname */
313 uint32_t num_entries
; /* getpwent, getgrent */
331 bool list_all_domains
;
336 /* the effective uid of the client, must be the uid for 'user'.
337 This is checked by the main daemon, trusted by children. */
338 /* if the blobs are length zero, then this doesn't
339 produce an actual challenge response. It merely
340 succeeds if there are cached credentials available
341 that could be used. */
342 uint32_t initial_blob_len
; /* blobs in extra_data */
343 uint32_t challenge_blob_len
;
357 /* padding -- needed to fix alignment between 32bit and 64bit libs.
358 The size is the sizeof the union without the padding aligned on
359 an 8 byte boundary. --jerry */
371 /* Response values */
373 enum winbindd_result
{
379 /* Winbind response structure */
381 /*******************************************************************************
382 * This structure MUST be the same size in the 32bit and 64bit builds
383 * for compatibility between /lib64/libnss_winbind.so and /lib/libnss_winbind.so
385 * DO NOT CHANGE THIS STRUCTURE WITHOUT TESTING THE 32BIT NSS LIB AGAINST
386 * A 64BIT WINBINDD --jerry
387 ******************************************************************************/
389 struct winbindd_response
{
391 /* Header information */
393 uint32_t length
; /* Length of response */
394 enum winbindd_result result
; /* Result code */
396 /* Fixed length return data */
399 int interface_version
; /* Try to ensure this is always in the same spot... */
401 fstring winsresp
; /* WINS response */
403 /* getpwnam, getpwuid */
405 struct winbindd_pw pw
;
407 /* getgrnam, getgrgid */
409 struct winbindd_gr gr
;
411 uint32_t num_entries
; /* getpwent, getgrent */
412 struct winbindd_sid
{
413 fstring sid
; /* lookupname, [ug]id_to_sid */
416 struct winbindd_name
{
417 fstring dom_name
; /* lookupsid */
421 uid_t uid
; /* sid_to_uid */
422 gid_t gid
; /* sid_to_gid */
423 struct winbindd_info
{
424 char winbind_separator
;
425 fstring samba_version
;
428 fstring netbios_name
;
433 fstring nt_status_string
;
434 fstring error_string
;
436 char user_session_key
[16];
437 char first_8_lm_hash
[8];
439 uint32_t reject_reason
;
441 struct policy_settings
{
442 uint32_t min_length_password
;
443 uint32_t password_history
;
444 uint32_t password_properties
;
447 SMB_TIME_T min_passwordage
;
450 SMB_TIME_T logon_time
;
451 SMB_TIME_T logoff_time
;
452 SMB_TIME_T kickoff_time
;
453 SMB_TIME_T pass_last_set_time
;
454 SMB_TIME_T pass_can_change_time
;
455 SMB_TIME_T pass_must_change_time
;
456 uint32_t logon_count
;
457 uint32_t bad_pw_count
;
463 uint32_t num_other_sids
;
467 fstring logon_script
;
468 fstring profile_path
;
474 fstring unix_username
;
481 bool active_directory
;
484 uint32_t sequence_number
;
490 uint32_t primary_gid
;
494 uint8_t session_key
[16];
495 uint32_t auth_blob_len
; /* blob in extra_data */
500 uint32_t dc_address_type
;
505 fstring dc_site_name
;
506 fstring client_site_name
;
510 /* Variable length return data */