2 Unix SMB/CIFS implementation.
4 Winbind daemon - sid related functions
6 Copyright (C) Tim Potter 2000
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #define DBGC_CLASS DBGC_WINBIND
28 /* Convert a string */
30 static void lookupsid_recv(void *private_data
, bool success
,
31 const char *dom_name
, const char *name
,
32 enum lsa_SidType type
);
34 void winbindd_lookupsid(struct winbindd_cli_state
*state
)
38 /* Ensure null termination */
39 state
->request
.data
.sid
[sizeof(state
->request
.data
.sid
)-1]='\0';
41 DEBUG(3, ("[%5lu]: lookupsid %s\n", (unsigned long)state
->pid
,
42 state
->request
.data
.sid
));
44 if (!string_to_sid(&sid
, state
->request
.data
.sid
)) {
45 DEBUG(5, ("%s not a SID\n", state
->request
.data
.sid
));
50 winbindd_lookupsid_async(state
->mem_ctx
, &sid
, lookupsid_recv
, state
);
53 static void lookupsid_recv(void *private_data
, bool success
,
54 const char *dom_name
, const char *name
,
55 enum lsa_SidType type
)
57 struct winbindd_cli_state
*state
=
58 talloc_get_type_abort(private_data
, struct winbindd_cli_state
);
61 DEBUG(5, ("lookupsid returned an error\n"));
66 fstrcpy(state
->response
.data
.name
.dom_name
, dom_name
);
67 fstrcpy(state
->response
.data
.name
.name
, name
);
68 state
->response
.data
.name
.type
= type
;
73 * Look up the SID for a qualified name.
76 static void lookupname_recv(void *private_data
, bool success
,
77 const DOM_SID
*sid
, enum lsa_SidType type
);
79 void winbindd_lookupname(struct winbindd_cli_state
*state
)
81 char *name_domain
, *name_user
;
84 /* Ensure null termination */
85 state
->request
.data
.name
.dom_name
[sizeof(state
->request
.data
.name
.dom_name
)-1]='\0';
87 /* Ensure null termination */
88 state
->request
.data
.name
.name
[sizeof(state
->request
.data
.name
.name
)-1]='\0';
90 /* cope with the name being a fully qualified name */
91 p
= strstr(state
->request
.data
.name
.name
, lp_winbind_separator());
94 name_domain
= state
->request
.data
.name
.name
;
97 name_domain
= state
->request
.data
.name
.dom_name
;
98 name_user
= state
->request
.data
.name
.name
;
101 DEBUG(3, ("[%5lu]: lookupname %s%s%s\n", (unsigned long)state
->pid
,
102 name_domain
, lp_winbind_separator(), name_user
));
104 winbindd_lookupname_async(state
->mem_ctx
, name_domain
, name_user
,
105 lookupname_recv
, WINBINDD_LOOKUPNAME
,
109 static void lookupname_recv(void *private_data
, bool success
,
110 const DOM_SID
*sid
, enum lsa_SidType type
)
112 struct winbindd_cli_state
*state
=
113 talloc_get_type_abort(private_data
, struct winbindd_cli_state
);
116 DEBUG(5, ("lookupname returned an error\n"));
117 request_error(state
);
121 sid_to_fstring(state
->response
.data
.sid
.sid
, sid
);
122 state
->response
.data
.sid
.type
= type
;
127 void winbindd_lookuprids(struct winbindd_cli_state
*state
)
129 struct winbindd_domain
*domain
;
132 /* Ensure null termination */
133 state
->request
.data
.sid
[sizeof(state
->request
.data
.sid
)-1]='\0';
135 DEBUG(10, ("lookup_rids: %s\n", state
->request
.data
.sid
));
137 if (!string_to_sid(&domain_sid
, state
->request
.data
.sid
)) {
138 DEBUG(5, ("Could not convert %s to SID\n",
139 state
->request
.data
.sid
));
140 request_error(state
);
144 domain
= find_lookup_domain_from_sid(&domain_sid
);
145 if (domain
== NULL
) {
146 DEBUG(10, ("Could not find domain for name %s\n",
147 state
->request
.domain_name
));
148 request_error(state
);
152 sendto_domain(state
, domain
);
155 /* Convert a sid to a uid. We assume we only have one rid attached to the
158 static void sid2uid_recv(void *private_data
, bool success
, uid_t uid
)
160 struct winbindd_cli_state
*state
=
161 talloc_get_type_abort(private_data
, struct winbindd_cli_state
);
164 DEBUG(5, ("Could not convert sid %s\n",
165 state
->request
.data
.sid
));
166 request_error(state
);
170 state
->response
.data
.uid
= uid
;
174 static void sid2uid_lookupsid_recv( void *private_data
, bool success
,
175 const char *domain_name
,
177 enum lsa_SidType type
)
179 struct winbindd_cli_state
*state
=
180 talloc_get_type_abort(private_data
, struct winbindd_cli_state
);
184 DEBUG(5, ("sid2uid_lookupsid_recv Could not convert get sid type for %s\n",
185 state
->request
.data
.sid
));
186 request_error(state
);
190 if ( (type
!=SID_NAME_USER
) && (type
!=SID_NAME_COMPUTER
) ) {
191 DEBUG(5,("sid2uid_lookupsid_recv: Sid %s is not a user or a computer.\n",
192 state
->request
.data
.sid
));
193 request_error(state
);
197 if (!string_to_sid(&sid
, state
->request
.data
.sid
)) {
198 DEBUG(1, ("sid2uid_lookupsid_recv: Could not get convert sid %s from string\n",
199 state
->request
.data
.sid
));
200 request_error(state
);
204 /* always use the async interface (may block) */
205 winbindd_sid2uid_async(state
->mem_ctx
, &sid
, sid2uid_recv
, state
);
208 void winbindd_sid_to_uid(struct winbindd_cli_state
*state
)
212 /* Ensure null termination */
213 state
->request
.data
.sid
[sizeof(state
->request
.data
.sid
)-1]='\0';
215 DEBUG(3, ("[%5lu]: sid to uid %s\n", (unsigned long)state
->pid
,
216 state
->request
.data
.sid
));
218 if (!string_to_sid(&sid
, state
->request
.data
.sid
)) {
219 DEBUG(1, ("Could not get convert sid %s from string\n",
220 state
->request
.data
.sid
));
221 request_error(state
);
225 /* Validate the SID as a user. Hopefully this will hit cache.
226 Needed to prevent DoS by exhausting the uid allocation
227 range from random SIDs. */
229 winbindd_lookupsid_async( state
->mem_ctx
, &sid
, sid2uid_lookupsid_recv
, state
);
232 /* Convert a sid to a gid. We assume we only have one rid attached to the
235 static void sid2gid_recv(void *private_data
, bool success
, gid_t gid
)
237 struct winbindd_cli_state
*state
=
238 talloc_get_type_abort(private_data
, struct winbindd_cli_state
);
241 DEBUG(5, ("Could not convert sid %s\n",
242 state
->request
.data
.sid
));
243 request_error(state
);
247 state
->response
.data
.gid
= gid
;
251 static void sid2gid_lookupsid_recv( void *private_data
, bool success
,
252 const char *domain_name
,
254 enum lsa_SidType type
)
256 struct winbindd_cli_state
*state
=
257 talloc_get_type_abort(private_data
, struct winbindd_cli_state
);
261 DEBUG(5, ("sid2gid_lookupsid_recv: Could not get sid type for %s\n",
262 state
->request
.data
.sid
));
263 request_error(state
);
267 if ( (type
!=SID_NAME_DOM_GRP
) &&
268 (type
!=SID_NAME_ALIAS
) &&
269 (type
!=SID_NAME_WKN_GRP
) )
271 DEBUG(5,("sid2gid_lookupsid_recv: Sid %s is not a group.\n",
272 state
->request
.data
.sid
));
273 request_error(state
);
277 if (!string_to_sid(&sid
, state
->request
.data
.sid
)) {
278 DEBUG(1, ("sid2gid_lookupsid_recv: Could not get convert sid %s from string\n",
279 state
->request
.data
.sid
));
280 request_error(state
);
284 /* always use the async interface (may block) */
285 winbindd_sid2gid_async(state
->mem_ctx
, &sid
, sid2gid_recv
, state
);
288 void winbindd_sid_to_gid(struct winbindd_cli_state
*state
)
292 /* Ensure null termination */
293 state
->request
.data
.sid
[sizeof(state
->request
.data
.sid
)-1]='\0';
295 DEBUG(3, ("[%5lu]: sid to gid %s\n", (unsigned long)state
->pid
,
296 state
->request
.data
.sid
));
298 if (!string_to_sid(&sid
, state
->request
.data
.sid
)) {
299 DEBUG(1, ("Could not get convert sid %s from string\n",
300 state
->request
.data
.sid
));
301 request_error(state
);
305 /* Validate the SID as a group. Hopefully this will hit cache.
306 Needed to prevent DoS by exhausting the uid allocation
307 range from random SIDs. */
309 winbindd_lookupsid_async( state
->mem_ctx
, &sid
, sid2gid_lookupsid_recv
, state
);
312 static void sids2xids_recv(void *private_data
, bool success
, void *data
, int len
)
314 struct winbindd_cli_state
*state
=
315 talloc_get_type_abort(private_data
, struct winbindd_cli_state
);
318 DEBUG(5, ("Could not convert sids to xids\n"));
319 request_error(state
);
323 state
->response
.extra_data
.data
= data
;
324 state
->response
.length
= sizeof(state
->response
) + len
;
328 void winbindd_sids_to_unixids(struct winbindd_cli_state
*state
)
330 DEBUG(3, ("[%5lu]: sids to xids\n", (unsigned long)state
->pid
));
332 winbindd_sids2xids_async(state
->mem_ctx
,
333 state
->request
.extra_data
.data
,
334 state
->request
.extra_len
,
335 sids2xids_recv
, state
);
338 static void set_mapping_recv(void *private_data
, bool success
)
340 struct winbindd_cli_state
*state
=
341 talloc_get_type_abort(private_data
, struct winbindd_cli_state
);
344 DEBUG(5, ("Could not set sid mapping\n"));
345 request_error(state
);
352 void winbindd_set_mapping(struct winbindd_cli_state
*state
)
357 DEBUG(3, ("[%5lu]: set id map\n", (unsigned long)state
->pid
));
359 if ( ! state
->privileged
) {
360 DEBUG(0, ("Only root is allowed to set mappings!\n"));
361 request_error(state
);
365 if (!string_to_sid(&sid
, state
->request
.data
.dual_idmapset
.sid
)) {
366 DEBUG(1, ("Could not get convert sid %s from string\n",
367 state
->request
.data
.sid
));
368 request_error(state
);
373 map
.xid
.id
= state
->request
.data
.dual_idmapset
.id
;
374 map
.xid
.type
= state
->request
.data
.dual_idmapset
.type
;
376 winbindd_set_mapping_async(state
->mem_ctx
, &map
,
377 set_mapping_recv
, state
);
380 static void set_hwm_recv(void *private_data
, bool success
)
382 struct winbindd_cli_state
*state
=
383 talloc_get_type_abort(private_data
, struct winbindd_cli_state
);
386 DEBUG(5, ("Could not set sid mapping\n"));
387 request_error(state
);
394 void winbindd_set_hwm(struct winbindd_cli_state
*state
)
398 DEBUG(3, ("[%5lu]: set hwm\n", (unsigned long)state
->pid
));
400 if ( ! state
->privileged
) {
401 DEBUG(0, ("Only root is allowed to set mappings!\n"));
402 request_error(state
);
406 xid
.id
= state
->request
.data
.dual_idmapset
.id
;
407 xid
.type
= state
->request
.data
.dual_idmapset
.type
;
409 winbindd_set_hwm_async(state
->mem_ctx
, &xid
, set_hwm_recv
, state
);
412 /* Convert a uid to a sid */
414 static void uid2sid_recv(void *private_data
, bool success
, const char *sid
)
416 struct winbindd_cli_state
*state
=
417 (struct winbindd_cli_state
*)private_data
;
420 DEBUG(10,("uid2sid: uid %lu has sid %s\n",
421 (unsigned long)(state
->request
.data
.uid
), sid
));
422 fstrcpy(state
->response
.data
.sid
.sid
, sid
);
423 state
->response
.data
.sid
.type
= SID_NAME_USER
;
428 request_error(state
);
432 void winbindd_uid_to_sid(struct winbindd_cli_state
*state
)
434 DEBUG(3, ("[%5lu]: uid to sid %lu\n", (unsigned long)state
->pid
,
435 (unsigned long)state
->request
.data
.uid
));
437 /* always go via the async interface (may block) */
438 winbindd_uid2sid_async(state
->mem_ctx
, state
->request
.data
.uid
, uid2sid_recv
, state
);
441 /* Convert a gid to a sid */
443 static void gid2sid_recv(void *private_data
, bool success
, const char *sid
)
445 struct winbindd_cli_state
*state
=
446 (struct winbindd_cli_state
*)private_data
;
449 DEBUG(10,("gid2sid: gid %lu has sid %s\n",
450 (unsigned long)(state
->request
.data
.gid
), sid
));
451 fstrcpy(state
->response
.data
.sid
.sid
, sid
);
452 state
->response
.data
.sid
.type
= SID_NAME_DOM_GRP
;
457 request_error(state
);
462 void winbindd_gid_to_sid(struct winbindd_cli_state
*state
)
464 DEBUG(3, ("[%5lu]: gid to sid %lu\n", (unsigned long)state
->pid
,
465 (unsigned long)state
->request
.data
.gid
));
467 /* always use async calls (may block) */
468 winbindd_gid2sid_async(state
->mem_ctx
, state
->request
.data
.gid
, gid2sid_recv
, state
);
471 void winbindd_allocate_uid(struct winbindd_cli_state
*state
)
473 if ( !state
->privileged
) {
474 DEBUG(2, ("winbindd_allocate_uid: non-privileged access "
476 request_error(state
);
480 sendto_child(state
, idmap_child());
483 enum winbindd_result
winbindd_dual_allocate_uid(struct winbindd_domain
*domain
,
484 struct winbindd_cli_state
*state
)
488 if (!NT_STATUS_IS_OK(idmap_allocate_uid(&xid
))) {
489 return WINBINDD_ERROR
;
491 state
->response
.data
.uid
= xid
.id
;
495 void winbindd_allocate_gid(struct winbindd_cli_state
*state
)
497 if ( !state
->privileged
) {
498 DEBUG(2, ("winbindd_allocate_gid: non-privileged access "
500 request_error(state
);
504 sendto_child(state
, idmap_child());
507 enum winbindd_result
winbindd_dual_allocate_gid(struct winbindd_domain
*domain
,
508 struct winbindd_cli_state
*state
)
512 if (!NT_STATUS_IS_OK(idmap_allocate_gid(&xid
))) {
513 return WINBINDD_ERROR
;
515 state
->response
.data
.gid
= xid
.id
;