r10400: commit merge patch from jra
[Samba/gbeck.git] / source / nsswitch / winbindd_nss.h
blobd012811d379b4f20e7f5409ade0c608ba31d1595
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind daemon for ntdom nss module
6 Copyright (C) Tim Potter 2000
8 You are free to use this interface definition in any way you see
9 fit, including without restriction, using this header in your own
10 products. You do not need to give any attribution.
14 #ifndef CONST_DISCARD
15 #define CONST_DISCARD(type, ptr) ((type) ((void *) (ptr)))
16 #endif
18 #ifndef CONST_ADD
19 #define CONST_ADD(type, ptr) ((type) ((const void *) (ptr)))
20 #endif
22 #ifndef SAFE_FREE
23 #define SAFE_FREE(x) do { if(x) {free(x); x=NULL;} } while(0)
24 #endif
26 #ifndef _WINBINDD_NTDOM_H
27 #define _WINBINDD_NTDOM_H
29 #define WINBINDD_SOCKET_NAME "pipe" /* Name of PF_UNIX socket */
30 #define WINBINDD_SOCKET_DIR "/tmp/.winbindd" /* Name of PF_UNIX dir */
31 #define WINBINDD_PRIV_SOCKET_SUBDIR "winbindd_privileged" /* name of subdirectory of lp_lockdir() to hold the 'privileged' pipe */
32 #define WINBINDD_DOMAIN_ENV "WINBINDD_DOMAIN" /* Environment variables */
33 #define WINBINDD_DONT_ENV "_NO_WINBINDD"
35 /* Update this when you change the interface. */
37 #define WINBIND_INTERFACE_VERSION 11
39 /* Socket commands */
41 enum winbindd_cmd {
43 WINBINDD_INTERFACE_VERSION, /* Always a well known value */
45 /* Get users and groups */
47 WINBINDD_GETPWNAM,
48 WINBINDD_GETPWUID,
49 WINBINDD_GETGRNAM,
50 WINBINDD_GETGRGID,
51 WINBINDD_GETGROUPS,
53 /* Enumerate users and groups */
55 WINBINDD_SETPWENT,
56 WINBINDD_ENDPWENT,
57 WINBINDD_GETPWENT,
58 WINBINDD_SETGRENT,
59 WINBINDD_ENDGRENT,
60 WINBINDD_GETGRENT,
62 /* PAM authenticate and password change */
64 WINBINDD_PAM_AUTH,
65 WINBINDD_PAM_AUTH_CRAP,
66 WINBINDD_PAM_CHAUTHTOK,
68 /* List various things */
70 WINBINDD_LIST_USERS, /* List w/o rid->id mapping */
71 WINBINDD_LIST_GROUPS, /* Ditto */
72 WINBINDD_LIST_TRUSTDOM,
74 /* SID conversion */
76 WINBINDD_LOOKUPSID,
77 WINBINDD_LOOKUPNAME,
79 /* Lookup functions */
81 WINBINDD_SID_TO_UID,
82 WINBINDD_SID_TO_GID,
83 WINBINDD_UID_TO_SID,
84 WINBINDD_GID_TO_SID,
85 WINBINDD_ALLOCATE_RID,
86 WINBINDD_ALLOCATE_RID_AND_GID,
88 /* Miscellaneous other stuff */
90 WINBINDD_CHECK_MACHACC, /* Check machine account pw works */
91 WINBINDD_PING, /* Just tell me winbind is running */
92 WINBINDD_INFO, /* Various bit of info. Currently just tidbits */
93 WINBINDD_DOMAIN_NAME, /* The domain this winbind server is a member of (lp_workgroup()) */
95 WINBINDD_DOMAIN_INFO, /* Most of what we know from
96 struct winbindd_domain */
97 WINBINDD_GETDCNAME, /* Issue a GetDCName Request */
99 WINBINDD_SHOW_SEQUENCE, /* display sequence numbers of domains */
101 /* WINS commands */
103 WINBINDD_WINS_BYIP,
104 WINBINDD_WINS_BYNAME,
106 /* this is like GETGRENT but gives an empty group list */
107 WINBINDD_GETGRLST,
109 WINBINDD_NETBIOS_NAME, /* The netbios name of the server */
111 /* find the location of our privileged pipe */
112 WINBINDD_PRIV_PIPE_DIR,
114 /* return a list of group sids for a user sid */
115 WINBINDD_GETUSERSIDS,
117 /* Return the domain groups a user is in */
118 WINBINDD_GETUSERDOMGROUPS,
120 /* Initialize connection in a child */
121 WINBINDD_INIT_CONNECTION,
123 /* Blocking calls that are not allowed on the main winbind pipe, only
124 * between parent and children */
125 WINBINDD_DUAL_SID2UID,
126 WINBINDD_DUAL_SID2GID,
127 WINBINDD_DUAL_IDMAPSET,
129 /* Wrapper around possibly blocking unix nss calls */
130 WINBINDD_DUAL_UID2NAME,
131 WINBINDD_DUAL_NAME2UID,
132 WINBINDD_DUAL_GID2NAME,
133 WINBINDD_DUAL_NAME2GID,
135 WINBINDD_DUAL_USERINFO,
136 WINBINDD_DUAL_GETSIDALIASES,
138 WINBINDD_NUM_CMDS
141 typedef struct winbindd_pw {
142 fstring pw_name;
143 fstring pw_passwd;
144 uid_t pw_uid;
145 gid_t pw_gid;
146 fstring pw_gecos;
147 fstring pw_dir;
148 fstring pw_shell;
149 } WINBINDD_PW;
152 typedef struct winbindd_gr {
153 fstring gr_name;
154 fstring gr_passwd;
155 gid_t gr_gid;
156 int num_gr_mem;
157 int gr_mem_ofs; /* offset to group membership */
158 char **gr_mem;
159 } WINBINDD_GR;
162 #define WBFLAG_PAM_INFO3_NDR 0x0001
163 #define WBFLAG_PAM_INFO3_TEXT 0x0002
164 #define WBFLAG_PAM_USER_SESSION_KEY 0x0004
165 #define WBFLAG_PAM_LMKEY 0x0008
166 #define WBFLAG_PAM_CONTACT_TRUSTDOM 0x0010
167 #define WBFLAG_QUERY_ONLY 0x0020
168 #define WBFLAG_ALLOCATE_RID 0x0040
169 #define WBFLAG_PAM_UNIX_NAME 0x0080
170 #define WBFLAG_PAM_AFS_TOKEN 0x0100
171 #define WBFLAG_PAM_NT_STATUS_SQUASH 0x0200
173 /* This is a flag that can only be sent from parent to child */
174 #define WBFLAG_IS_PRIVILEGED 0x0400
175 /* Flag to say this is a winbindd internal send - don't recurse. */
176 #define WBFLAG_RECURSE 0x0800
178 /* Winbind request structure */
180 struct winbindd_request {
181 uint32 length;
182 enum winbindd_cmd cmd; /* Winbindd command to execute */
183 pid_t pid; /* pid of calling process */
184 uint32 flags; /* flags relavant to a given request */
185 fstring domain_name; /* name of domain for which the request applies */
186 int msgid;
188 union {
189 fstring winsreq; /* WINS request */
190 fstring username; /* getpwnam */
191 fstring groupname; /* getgrnam */
192 uid_t uid; /* getpwuid, uid_to_sid */
193 gid_t gid; /* getgrgid, gid_to_sid */
194 struct {
195 /* We deliberatedly don't split into domain/user to
196 avoid having the client know what the separator
197 character is. */
198 fstring user;
199 fstring pass;
200 fstring require_membership_of_sid;
201 } auth; /* pam_winbind auth module */
202 struct {
203 unsigned char chal[8];
204 fstring user;
205 fstring domain;
206 fstring lm_resp;
207 uint16 lm_resp_len;
208 fstring nt_resp;
209 uint16 nt_resp_len;
210 fstring workstation;
211 fstring require_membership_of_sid;
212 } auth_crap;
213 struct {
214 fstring user;
215 fstring oldpass;
216 fstring newpass;
217 } chauthtok; /* pam_winbind passwd module */
218 fstring sid; /* lookupsid, sid_to_[ug]id */
219 struct {
220 fstring dom_name; /* lookupname */
221 fstring name;
222 } name;
223 uint32 num_entries; /* getpwent, getgrent */
224 struct {
225 fstring username;
226 fstring groupname;
227 } acct_mgt;
228 struct {
229 BOOL is_primary;
230 fstring dcname;
231 } init_conn;
232 struct {
233 fstring sid;
234 fstring name;
235 BOOL alloc;
236 } dual_sid2id;
237 struct {
238 int type;
239 uid_t uid;
240 gid_t gid;
241 fstring sid;
242 } dual_idmapset;
243 struct {
244 fstring cache_key;
245 } dual_sidaliases;
246 } data;
247 char null_term;
250 /* Response values */
252 enum winbindd_result {
253 WINBINDD_ERROR,
254 WINBINDD_PENDING,
255 WINBINDD_OK
258 /* Winbind response structure */
260 struct winbindd_response {
262 /* Header information */
264 uint32 length; /* Length of response */
265 enum winbindd_result result; /* Result code */
267 /* Fixed length return data */
269 union {
270 int interface_version; /* Try to ensure this is always in the same spot... */
272 fstring winsresp; /* WINS response */
274 /* getpwnam, getpwuid */
276 struct winbindd_pw pw;
278 /* getgrnam, getgrgid */
280 struct winbindd_gr gr;
282 uint32 num_entries; /* getpwent, getgrent */
283 struct winbindd_sid {
284 fstring sid; /* lookupname, [ug]id_to_sid */
285 int type;
286 } sid;
287 struct winbindd_name {
288 fstring dom_name; /* lookupsid */
289 fstring name;
290 int type;
291 } name;
292 uid_t uid; /* sid_to_uid */
293 gid_t gid; /* sid_to_gid */
294 struct winbindd_info {
295 char winbind_separator;
296 fstring samba_version;
297 } info;
298 fstring domain_name;
299 fstring netbios_name;
300 fstring dc_name;
302 struct auth_reply {
303 uint32 nt_status;
304 fstring nt_status_string;
305 fstring error_string;
306 int pam_error;
307 char user_session_key[16];
308 char first_8_lm_hash[8];
309 } auth;
310 uint32 rid; /* create user or group or allocate rid */
311 struct {
312 uint32 rid;
313 gid_t gid;
314 } rid_and_gid;
315 struct {
316 fstring name;
317 fstring alt_name;
318 fstring sid;
319 BOOL native_mode;
320 BOOL active_directory;
321 BOOL primary;
322 uint32 sequence_number;
323 } domain_info;
324 struct {
325 fstring acct_name;
326 fstring full_name;
327 fstring homedir;
328 fstring shell;
329 uint32 group_rid;
330 } user_info;
331 } data;
333 /* Variable length return data */
335 void *extra_data; /* getgrnam, getgrgid, getgrent */
338 #endif