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.
16 #define CONST_DISCARD(type, ptr) ((type) ((void *) (ptr)))
20 #define CONST_ADD(type, ptr) ((type) ((const void *) (ptr)))
24 #define SAFE_FREE(x) do { if(x) {free(x); x=NULL;} } while(0)
27 #ifndef _WINBINDD_NTDOM_H
28 #define _WINBINDD_NTDOM_H
30 #define WINBINDD_SOCKET_NAME "pipe" /* Name of PF_UNIX socket */
31 #define WINBINDD_SOCKET_DIR "/tmp/.winbindd" /* Name of PF_UNIX dir */
32 #define WINBINDD_PRIV_SOCKET_SUBDIR "winbindd_privileged" /* name of subdirectory of lp_lockdir() to hold the 'privileged' pipe */
33 #define WINBINDD_DOMAIN_ENV "WINBINDD_DOMAIN" /* Environment variables */
34 #define WINBINDD_DONT_ENV "_NO_WINBINDD"
36 /* Update this when you change the interface. */
38 #define WINBIND_INTERFACE_VERSION 18
40 /* Have to deal with time_t being 4 or 8 bytes due to structure alignment.
41 On a 64bit Linux box, we have to support a constant structure size
42 between /lib/libnss_winbind.so.2 and /li64/libnss_winbind.so.2.
43 The easiest way to do this is to always use 8byte values for time_t. */
46 # define SMB_TIME_T int64
48 # define SMB_TIME_T time_t
55 WINBINDD_INTERFACE_VERSION
, /* Always a well known value */
57 /* Get users and groups */
65 /* Enumerate users and groups */
74 /* PAM authenticate and password change */
77 WINBINDD_PAM_AUTH_CRAP
,
78 WINBINDD_PAM_CHAUTHTOK
,
80 WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP
,
82 /* List various things */
84 WINBINDD_LIST_USERS
, /* List w/o rid->id mapping */
85 WINBINDD_LIST_GROUPS
, /* Ditto */
86 WINBINDD_LIST_TRUSTDOM
,
94 /* Lookup functions */
98 WINBINDD_SIDS_TO_XIDS
,
102 WINBINDD_ALLOCATE_UID
,
103 WINBINDD_ALLOCATE_GID
,
104 WINBINDD_SET_MAPPING
,
107 /* Miscellaneous other stuff */
111 WINBINDD_CHECK_MACHACC
, /* Check machine account pw works */
112 WINBINDD_PING
, /* Just tell me winbind is running */
113 WINBINDD_INFO
, /* Various bit of info. Currently just tidbits */
114 WINBINDD_DOMAIN_NAME
, /* The domain this winbind server is a member of (lp_workgroup()) */
116 WINBINDD_DOMAIN_INFO
, /* Most of what we know from
117 struct winbindd_domain */
118 WINBINDD_GETDCNAME
, /* Issue a GetDCName Request */
120 WINBINDD_SHOW_SEQUENCE
, /* display sequence numbers of domains */
125 WINBINDD_WINS_BYNAME
,
127 /* this is like GETGRENT but gives an empty group list */
130 WINBINDD_NETBIOS_NAME
, /* The netbios name of the server */
132 /* find the location of our privileged pipe */
133 WINBINDD_PRIV_PIPE_DIR
,
135 /* return a list of group sids for a user sid */
136 WINBINDD_GETUSERSIDS
,
138 /* Various group queries */
139 WINBINDD_GETUSERDOMGROUPS
,
141 /* Initialize connection in a child */
142 WINBINDD_INIT_CONNECTION
,
144 /* Blocking calls that are not allowed on the main winbind pipe, only
145 * between parent and children */
146 WINBINDD_DUAL_SID2UID
,
147 WINBINDD_DUAL_SID2GID
,
148 WINBINDD_DUAL_SIDS2XIDS
,
149 WINBINDD_DUAL_UID2SID
,
150 WINBINDD_DUAL_GID2SID
,
151 WINBINDD_DUAL_SET_MAPPING
,
152 WINBINDD_DUAL_SET_HWM
,
153 WINBINDD_DUAL_DUMP_MAPS
,
155 /* Wrapper around possibly blocking unix nss calls */
156 WINBINDD_DUAL_UID2NAME
,
157 WINBINDD_DUAL_NAME2UID
,
158 WINBINDD_DUAL_GID2NAME
,
159 WINBINDD_DUAL_NAME2GID
,
161 WINBINDD_DUAL_USERINFO
,
162 WINBINDD_DUAL_GETSIDALIASES
,
164 /* Complete the challenge phase of the NTLM authentication
165 protocol using cached password. */
166 WINBINDD_CCACHE_NTLMAUTH
,
171 typedef struct winbindd_pw
{
182 typedef struct winbindd_gr
{
187 uint32 gr_mem_ofs
; /* offset to group membership */
191 #define WBFLAG_PAM_INFO3_NDR 0x0001
192 #define WBFLAG_PAM_INFO3_TEXT 0x0002
193 #define WBFLAG_PAM_USER_SESSION_KEY 0x0004
194 #define WBFLAG_PAM_LMKEY 0x0008
195 #define WBFLAG_PAM_CONTACT_TRUSTDOM 0x0010
196 #define WBFLAG_QUERY_ONLY 0x0020
197 #define WBFLAG_PAM_UNIX_NAME 0x0080
198 #define WBFLAG_PAM_AFS_TOKEN 0x0100
199 #define WBFLAG_PAM_NT_STATUS_SQUASH 0x0200
201 /* This is a flag that can only be sent from parent to child */
202 #define WBFLAG_IS_PRIVILEGED 0x0400
203 /* Flag to say this is a winbindd internal send - don't recurse. */
204 #define WBFLAG_RECURSE 0x0800
206 #define WBFLAG_PAM_KRB5 0x1000
207 #define WBFLAG_PAM_FALLBACK_AFTER_KRB5 0x2000
208 #define WBFLAG_PAM_CACHED_LOGIN 0x4000
209 #define WBFLAG_PAM_GET_PWD_POLICY 0x8000
211 #define WINBINDD_MAX_EXTRA_DATA (128*1024)
213 /* Winbind request structure */
215 /*******************************************************************************
216 * This structure MUST be the same size in the 32bit and 64bit builds
217 * for compatibility between /lib64/libnss_winbind.so and /lib/libnss_winbind.so
219 * DO NOT CHANGE THIS STRUCTURE WITHOUT TESTING THE 32BIT NSS LIB AGAINST
220 * A 64BIT WINBINDD --jerry
221 ******************************************************************************/
223 struct winbindd_request
{
225 enum winbindd_cmd cmd
; /* Winbindd command to execute */
226 pid_t pid
; /* pid of calling process */
227 uint32 flags
; /* flags relavant to a given request */
228 fstring domain_name
; /* name of domain for which the request applies */
231 fstring winsreq
; /* WINS request */
232 fstring username
; /* getpwnam */
233 fstring groupname
; /* getgrnam */
234 uid_t uid
; /* getpwuid, uid_to_sid */
235 gid_t gid
; /* getgrgid, gid_to_sid */
237 /* We deliberatedly don't split into domain/user to
238 avoid having the client know what the separator
242 pstring require_membership_of_sid
;
243 fstring krb5_cc_type
;
245 } auth
; /* pam_winbind auth module */
247 unsigned char chal
[8];
248 uint32 logon_parameters
;
256 fstring require_membership_of_sid
;
262 } chauthtok
; /* pam_winbind passwd module */
266 unsigned char new_nt_pswd
[516];
267 uint16 new_nt_pswd_len
;
268 unsigned char old_nt_hash_enc
[16];
269 uint16 old_nt_hash_enc_len
;
270 unsigned char new_lm_pswd
[516];
271 uint16 new_lm_pswd_len
;
272 unsigned char old_lm_hash_enc
[16];
273 uint16 old_lm_hash_enc_len
;
274 } chng_pswd_auth_crap
;/* pam_winbind passwd module */
279 } logoff
; /* pam_winbind session module */
280 fstring sid
; /* lookupsid, sid_to_[ug]id */
282 fstring dom_name
; /* lookupname */
285 uint32 num_entries
; /* getpwent, getgrent */
303 BOOL list_all_domains
;
308 /* the effective uid of the client, must be the uid for 'user'.
309 This is checked by the main daemon, trusted by children. */
310 /* if the blobs are length zero, then this doesn't
311 produce an actual challenge response. It merely
312 succeeds if there are cached credentials available
313 that could be used. */
314 uint32 initial_blob_len
; /* blobs in extra_data */
315 uint32 challenge_blob_len
;
318 /* padding -- needed to fix alignment between 32bit and 64bit libs.
319 The size is the sizeof the union without the padding aligned on
320 an 8 byte boundary. --jerry */
332 /* Response values */
334 enum winbindd_result
{
340 /* Winbind response structure */
342 /*******************************************************************************
343 * This structure MUST be the same size in the 32bit and 64bit builds
344 * for compatibility between /lib64/libnss_winbind.so and /lib/libnss_winbind.so
346 * DO NOT CHANGE THIS STRUCTURE WITHOUT TESTING THE 32BIT NSS LIB AGAINST
347 * A 64BIT WINBINDD --jerry
348 ******************************************************************************/
350 struct winbindd_response
{
352 /* Header information */
354 uint32 length
; /* Length of response */
355 enum winbindd_result result
; /* Result code */
357 /* Fixed length return data */
360 int interface_version
; /* Try to ensure this is always in the same spot... */
362 fstring winsresp
; /* WINS response */
364 /* getpwnam, getpwuid */
366 struct winbindd_pw pw
;
368 /* getgrnam, getgrgid */
370 struct winbindd_gr gr
;
372 uint32 num_entries
; /* getpwent, getgrent */
373 struct winbindd_sid
{
374 fstring sid
; /* lookupname, [ug]id_to_sid */
377 struct winbindd_name
{
378 fstring dom_name
; /* lookupsid */
382 uid_t uid
; /* sid_to_uid */
383 gid_t gid
; /* sid_to_gid */
384 struct winbindd_info
{
385 char winbind_separator
;
386 fstring samba_version
;
389 fstring netbios_name
;
394 fstring nt_status_string
;
395 fstring error_string
;
397 char user_session_key
[16];
398 char first_8_lm_hash
[8];
400 uint32 reject_reason
;
402 struct policy_settings
{
403 uint32 min_length_password
;
404 uint32 password_history
;
405 uint32 password_properties
;
408 SMB_TIME_T min_passwordage
;
411 SMB_TIME_T logon_time
;
412 SMB_TIME_T logoff_time
;
413 SMB_TIME_T kickoff_time
;
414 SMB_TIME_T pass_last_set_time
;
415 SMB_TIME_T pass_can_change_time
;
416 SMB_TIME_T pass_must_change_time
;
424 uint32 num_other_sids
;
428 fstring logon_script
;
429 fstring profile_path
;
441 BOOL active_directory
;
443 uint32 sequence_number
;
454 uint32 auth_blob_len
; /* blob in extra_data */
458 /* Variable length return data */
466 struct WINBINDD_MEMORY_CREDS
{
467 struct WINBINDD_MEMORY_CREDS
*next
, *prev
;
468 const char *username
; /* lookup key. */
472 unsigned char *nt_hash
; /* Base pointer for the following 2 */
473 unsigned char *lm_hash
;
477 struct WINBINDD_CCACHE_ENTRY
{
478 struct WINBINDD_CCACHE_ENTRY
*next
, *prev
;
479 const char *principal_name
;
482 const char *username
;
484 struct WINBINDD_MEMORY_CREDS
*cred_ptr
;
490 struct timed_event
*event
;