s4:torture/rpc/samba3rpc.c: make use of dcerpc_binding_handle stubs
[Samba/nascimento.git] / source3 / groupdb / mapping.c
blob7add05e84c6ddb80dd7f700fd83ef2de6385ea76
1 /*
2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
4 * Copyright (C) Andrew Tridgell 1992-2000,
5 * Copyright (C) Jean François Micouleau 1998-2001.
6 * Copyright (C) Volker Lendecke 2006.
7 * Copyright (C) Gerald Carter 2006.
8 *
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 3 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, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "groupdb/mapping.h"
26 static const struct mapping_backend *backend;
29 initialise a group mapping backend
31 static bool init_group_mapping(void)
33 if (backend != NULL) {
34 /* already initialised */
35 return True;
38 backend = groupdb_tdb_init();
40 return backend != NULL;
43 /****************************************************************************
44 initialise first time the mapping list
45 ****************************************************************************/
46 NTSTATUS add_initial_entry(gid_t gid, const char *sid, enum lsa_SidType sid_name_use, const char *nt_name, const char *comment)
48 GROUP_MAP map;
50 if(!init_group_mapping()) {
51 DEBUG(0,("failed to initialize group mapping\n"));
52 return NT_STATUS_UNSUCCESSFUL;
55 map.gid=gid;
56 if (!string_to_sid(&map.sid, sid)) {
57 DEBUG(0, ("string_to_sid failed: %s", sid));
58 return NT_STATUS_UNSUCCESSFUL;
61 map.sid_name_use=sid_name_use;
62 fstrcpy(map.nt_name, nt_name);
63 fstrcpy(map.comment, comment);
65 return pdb_add_group_mapping_entry(&map);
68 static NTSTATUS alias_memberships(const DOM_SID *members, size_t num_members,
69 DOM_SID **sids, size_t *num)
71 size_t i;
73 *num = 0;
74 *sids = NULL;
76 for (i=0; i<num_members; i++) {
77 NTSTATUS status = backend->one_alias_membership(&members[i], sids, num);
78 if (!NT_STATUS_IS_OK(status))
79 return status;
81 return NT_STATUS_OK;
84 struct aliasmem_closure {
85 const DOM_SID *alias;
86 DOM_SID **sids;
87 size_t *num;
94 * High level functions
95 * better to use them than the lower ones.
97 * we are checking if the group is in the mapping file
98 * and if the group is an existing unix group
102 /* get a domain group from it's SID */
104 bool get_domain_group_from_sid(DOM_SID sid, GROUP_MAP *map)
106 struct group *grp;
107 bool ret;
109 if(!init_group_mapping()) {
110 DEBUG(0,("failed to initialize group mapping\n"));
111 return(False);
114 DEBUG(10, ("get_domain_group_from_sid\n"));
116 /* if the group is NOT in the database, it CAN NOT be a domain group */
118 become_root();
119 ret = pdb_getgrsid(map, sid);
120 unbecome_root();
122 /* special case check for rid 513 */
124 if ( !ret ) {
125 uint32 rid;
127 sid_peek_rid( &sid, &rid );
129 if ( rid == DOMAIN_GROUP_RID_USERS ) {
130 fstrcpy( map->nt_name, "None" );
131 fstrcpy( map->comment, "Ordinary Users" );
132 sid_copy( &map->sid, &sid );
133 map->sid_name_use = SID_NAME_DOM_GRP;
134 map->gid = (gid_t)-1;
135 return True;
137 return False;
140 DEBUG(10, ("get_domain_group_from_sid: SID found in the TDB\n"));
142 /* if it's not a domain group, continue */
143 if (map->sid_name_use!=SID_NAME_DOM_GRP) {
144 return False;
147 DEBUG(10, ("get_domain_group_from_sid: SID is a domain group\n"));
149 if (map->gid==-1) {
150 return False;
153 DEBUG(10, ("get_domain_group_from_sid: SID is mapped to gid:%lu\n",(unsigned long)map->gid));
155 grp = getgrgid(map->gid);
156 if ( !grp ) {
157 DEBUG(10, ("get_domain_group_from_sid: gid DOESN'T exist in UNIX security\n"));
158 return False;
161 DEBUG(10, ("get_domain_group_from_sid: gid exists in UNIX security\n"));
163 return True;
166 /****************************************************************************
167 Create a UNIX group on demand.
168 ****************************************************************************/
170 int smb_create_group(const char *unix_group, gid_t *new_gid)
172 char *add_script = NULL;
173 int ret = -1;
174 int fd = 0;
176 *new_gid = 0;
178 /* defer to scripts */
180 if ( *lp_addgroup_script() ) {
181 TALLOC_CTX *ctx = talloc_tos();
183 add_script = talloc_strdup(ctx,
184 lp_addgroup_script());
185 if (!add_script) {
186 return -1;
188 add_script = talloc_string_sub(ctx,
189 add_script, "%g", unix_group);
190 if (!add_script) {
191 return -1;
194 ret = smbrun(add_script, &fd);
195 DEBUG(ret ? 0 : 3,("smb_create_group: Running the command `%s' gave %d\n",add_script,ret));
196 if (ret == 0) {
197 smb_nscd_flush_group_cache();
199 if (ret != 0)
200 return ret;
202 if (fd != 0) {
203 fstring output;
205 *new_gid = 0;
206 if (read(fd, output, sizeof(output)) > 0) {
207 *new_gid = (gid_t)strtoul(output, NULL, 10);
210 close(fd);
215 if (*new_gid == 0) {
216 struct group *grp = getgrnam(unix_group);
218 if (grp != NULL)
219 *new_gid = grp->gr_gid;
222 return ret;
225 /****************************************************************************
226 Delete a UNIX group on demand.
227 ****************************************************************************/
229 int smb_delete_group(const char *unix_group)
231 char *del_script = NULL;
232 int ret = -1;
234 /* defer to scripts */
236 if ( *lp_delgroup_script() ) {
237 TALLOC_CTX *ctx = talloc_tos();
239 del_script = talloc_strdup(ctx,
240 lp_delgroup_script());
241 if (!del_script) {
242 return -1;
244 del_script = talloc_string_sub(ctx,
245 del_script, "%g", unix_group);
246 if (!del_script) {
247 return -1;
249 ret = smbrun(del_script,NULL);
250 DEBUG(ret ? 0 : 3,("smb_delete_group: Running the command `%s' gave %d\n",del_script,ret));
251 if (ret == 0) {
252 smb_nscd_flush_group_cache();
254 return ret;
257 return -1;
260 /****************************************************************************
261 Set a user's primary UNIX group.
262 ****************************************************************************/
264 int smb_set_primary_group(const char *unix_group, const char* unix_user)
266 char *add_script = NULL;
267 int ret = -1;
269 /* defer to scripts */
271 if ( *lp_setprimarygroup_script() ) {
272 TALLOC_CTX *ctx = talloc_tos();
274 add_script = talloc_strdup(ctx,
275 lp_setprimarygroup_script());
276 if (!add_script) {
277 return -1;
279 add_script = talloc_all_string_sub(ctx,
280 add_script, "%g", unix_group);
281 if (!add_script) {
282 return -1;
284 add_script = talloc_string_sub(ctx,
285 add_script, "%u", unix_user);
286 if (!add_script) {
287 return -1;
289 ret = smbrun(add_script,NULL);
290 flush_pwnam_cache();
291 DEBUG(ret ? 0 : 3,("smb_set_primary_group: "
292 "Running the command `%s' gave %d\n",add_script,ret));
293 if (ret == 0) {
294 smb_nscd_flush_group_cache();
296 return ret;
299 return -1;
302 /****************************************************************************
303 Add a user to a UNIX group.
304 ****************************************************************************/
306 int smb_add_user_group(const char *unix_group, const char *unix_user)
308 char *add_script = NULL;
309 int ret = -1;
311 /* defer to scripts */
313 if ( *lp_addusertogroup_script() ) {
314 TALLOC_CTX *ctx = talloc_tos();
316 add_script = talloc_strdup(ctx,
317 lp_addusertogroup_script());
318 if (!add_script) {
319 return -1;
321 add_script = talloc_string_sub(ctx,
322 add_script, "%g", unix_group);
323 if (!add_script) {
324 return -1;
326 add_script = talloc_string_sub(ctx,
327 add_script, "%u", unix_user);
328 if (!add_script) {
329 return -1;
331 ret = smbrun(add_script,NULL);
332 DEBUG(ret ? 0 : 3,("smb_add_user_group: Running the command `%s' gave %d\n",add_script,ret));
333 if (ret == 0) {
334 smb_nscd_flush_group_cache();
336 return ret;
339 return -1;
342 /****************************************************************************
343 Delete a user from a UNIX group
344 ****************************************************************************/
346 int smb_delete_user_group(const char *unix_group, const char *unix_user)
348 char *del_script = NULL;
349 int ret = -1;
351 /* defer to scripts */
353 if ( *lp_deluserfromgroup_script() ) {
354 TALLOC_CTX *ctx = talloc_tos();
356 del_script = talloc_strdup(ctx,
357 lp_deluserfromgroup_script());
358 if (!del_script) {
359 return -1;
361 del_script = talloc_string_sub(ctx,
362 del_script, "%g", unix_group);
363 if (!del_script) {
364 return -1;
366 del_script = talloc_string_sub(ctx,
367 del_script, "%u", unix_user);
368 if (!del_script) {
369 return -1;
371 ret = smbrun(del_script,NULL);
372 DEBUG(ret ? 0 : 3,("smb_delete_user_group: Running the command `%s' gave %d\n",del_script,ret));
373 if (ret == 0) {
374 smb_nscd_flush_group_cache();
376 return ret;
379 return -1;
383 NTSTATUS pdb_default_getgrsid(struct pdb_methods *methods, GROUP_MAP *map,
384 DOM_SID sid)
386 if (!init_group_mapping()) {
387 DEBUG(0,("failed to initialize group mapping\n"));
388 return NT_STATUS_UNSUCCESSFUL;
390 return backend->get_group_map_from_sid(sid, map) ?
391 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
394 NTSTATUS pdb_default_getgrgid(struct pdb_methods *methods, GROUP_MAP *map,
395 gid_t gid)
397 if (!init_group_mapping()) {
398 DEBUG(0,("failed to initialize group mapping\n"));
399 return NT_STATUS_UNSUCCESSFUL;
401 return backend->get_group_map_from_gid(gid, map) ?
402 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
405 NTSTATUS pdb_default_getgrnam(struct pdb_methods *methods, GROUP_MAP *map,
406 const char *name)
408 if (!init_group_mapping()) {
409 DEBUG(0,("failed to initialize group mapping\n"));
410 return NT_STATUS_UNSUCCESSFUL;
412 return backend->get_group_map_from_ntname(name, map) ?
413 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
416 NTSTATUS pdb_default_add_group_mapping_entry(struct pdb_methods *methods,
417 GROUP_MAP *map)
419 if (!init_group_mapping()) {
420 DEBUG(0,("failed to initialize group mapping\n"));
421 return NT_STATUS_UNSUCCESSFUL;
423 return backend->add_mapping_entry(map, TDB_INSERT) ?
424 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
427 NTSTATUS pdb_default_update_group_mapping_entry(struct pdb_methods *methods,
428 GROUP_MAP *map)
430 if (!init_group_mapping()) {
431 DEBUG(0,("failed to initialize group mapping\n"));
432 return NT_STATUS_UNSUCCESSFUL;
434 return backend->add_mapping_entry(map, TDB_REPLACE) ?
435 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
438 NTSTATUS pdb_default_delete_group_mapping_entry(struct pdb_methods *methods,
439 DOM_SID sid)
441 if (!init_group_mapping()) {
442 DEBUG(0,("failed to initialize group mapping\n"));
443 return NT_STATUS_UNSUCCESSFUL;
445 return backend->group_map_remove(&sid) ?
446 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
449 NTSTATUS pdb_default_enum_group_mapping(struct pdb_methods *methods,
450 const DOM_SID *sid, enum lsa_SidType sid_name_use,
451 GROUP_MAP **pp_rmap, size_t *p_num_entries,
452 bool unix_only)
454 if (!init_group_mapping()) {
455 DEBUG(0,("failed to initialize group mapping\n"));
456 return NT_STATUS_UNSUCCESSFUL;
458 return backend->enum_group_mapping(sid, sid_name_use, pp_rmap, p_num_entries, unix_only) ?
459 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
462 NTSTATUS pdb_default_create_alias(struct pdb_methods *methods,
463 const char *name, uint32 *rid)
465 DOM_SID sid;
466 enum lsa_SidType type;
467 uint32 new_rid;
468 gid_t gid;
469 bool exists;
470 GROUP_MAP map;
471 TALLOC_CTX *mem_ctx;
472 NTSTATUS status;
474 DEBUG(10, ("Trying to create alias %s\n", name));
476 mem_ctx = talloc_new(NULL);
477 if (mem_ctx == NULL) {
478 return NT_STATUS_NO_MEMORY;
481 exists = lookup_name(mem_ctx, name, LOOKUP_NAME_LOCAL,
482 NULL, NULL, &sid, &type);
483 TALLOC_FREE(mem_ctx);
485 if (exists) {
486 return NT_STATUS_ALIAS_EXISTS;
489 if (!winbind_allocate_gid(&gid)) {
490 DEBUG(3, ("Could not get a gid out of winbind\n"));
491 return NT_STATUS_ACCESS_DENIED;
494 if (!pdb_new_rid(&new_rid)) {
495 DEBUG(0, ("Could not allocate a RID -- wasted a gid :-(\n"));
496 return NT_STATUS_ACCESS_DENIED;
499 DEBUG(10, ("Creating alias %s with gid %u and rid %u\n",
500 name, (unsigned int)gid, (unsigned int)new_rid));
502 sid_compose(&sid, get_global_sam_sid(), new_rid);
504 map.gid = gid;
505 sid_copy(&map.sid, &sid);
506 map.sid_name_use = SID_NAME_ALIAS;
507 fstrcpy(map.nt_name, name);
508 fstrcpy(map.comment, "");
510 status = pdb_add_group_mapping_entry(&map);
512 if (!NT_STATUS_IS_OK(status)) {
513 DEBUG(0, ("Could not add group mapping entry for alias %s "
514 "(%s)\n", name, nt_errstr(status)));
515 return status;
518 *rid = new_rid;
520 return NT_STATUS_OK;
523 NTSTATUS pdb_default_delete_alias(struct pdb_methods *methods,
524 const DOM_SID *sid)
526 return pdb_delete_group_mapping_entry(*sid);
529 NTSTATUS pdb_default_get_aliasinfo(struct pdb_methods *methods,
530 const DOM_SID *sid,
531 struct acct_info *info)
533 GROUP_MAP map;
535 if (!pdb_getgrsid(&map, *sid))
536 return NT_STATUS_NO_SUCH_ALIAS;
538 if ((map.sid_name_use != SID_NAME_ALIAS) &&
539 (map.sid_name_use != SID_NAME_WKN_GRP)) {
540 DEBUG(2, ("%s is a %s, expected an alias\n",
541 sid_string_dbg(sid),
542 sid_type_lookup(map.sid_name_use)));
543 return NT_STATUS_NO_SUCH_ALIAS;
546 fstrcpy(info->acct_name, map.nt_name);
547 fstrcpy(info->acct_desc, map.comment);
548 sid_peek_rid(&map.sid, &info->rid);
549 return NT_STATUS_OK;
552 NTSTATUS pdb_default_set_aliasinfo(struct pdb_methods *methods,
553 const DOM_SID *sid,
554 struct acct_info *info)
556 GROUP_MAP map;
558 if (!pdb_getgrsid(&map, *sid))
559 return NT_STATUS_NO_SUCH_ALIAS;
561 fstrcpy(map.nt_name, info->acct_name);
562 fstrcpy(map.comment, info->acct_desc);
564 return pdb_update_group_mapping_entry(&map);
567 NTSTATUS pdb_default_add_aliasmem(struct pdb_methods *methods,
568 const DOM_SID *alias, const DOM_SID *member)
570 if (!init_group_mapping()) {
571 DEBUG(0,("failed to initialize group mapping\n"));
572 return NT_STATUS_UNSUCCESSFUL;
574 return backend->add_aliasmem(alias, member);
577 NTSTATUS pdb_default_del_aliasmem(struct pdb_methods *methods,
578 const DOM_SID *alias, const DOM_SID *member)
580 if (!init_group_mapping()) {
581 DEBUG(0,("failed to initialize group mapping\n"));
582 return NT_STATUS_UNSUCCESSFUL;
584 return backend->del_aliasmem(alias, member);
587 NTSTATUS pdb_default_enum_aliasmem(struct pdb_methods *methods,
588 const DOM_SID *alias, TALLOC_CTX *mem_ctx,
589 DOM_SID **pp_members, size_t *p_num_members)
591 if (!init_group_mapping()) {
592 DEBUG(0,("failed to initialize group mapping\n"));
593 return NT_STATUS_UNSUCCESSFUL;
595 return backend->enum_aliasmem(alias, mem_ctx, pp_members,
596 p_num_members);
599 NTSTATUS pdb_default_alias_memberships(struct pdb_methods *methods,
600 TALLOC_CTX *mem_ctx,
601 const DOM_SID *domain_sid,
602 const DOM_SID *members,
603 size_t num_members,
604 uint32 **pp_alias_rids,
605 size_t *p_num_alias_rids)
607 DOM_SID *alias_sids;
608 size_t i, num_alias_sids;
609 NTSTATUS result;
611 if (!init_group_mapping()) {
612 DEBUG(0,("failed to initialize group mapping\n"));
613 return NT_STATUS_UNSUCCESSFUL;
616 alias_sids = NULL;
617 num_alias_sids = 0;
619 result = alias_memberships(members, num_members,
620 &alias_sids, &num_alias_sids);
622 if (!NT_STATUS_IS_OK(result))
623 return result;
625 *p_num_alias_rids = 0;
627 if (num_alias_sids == 0) {
628 TALLOC_FREE(alias_sids);
629 return NT_STATUS_OK;
632 *pp_alias_rids = TALLOC_ARRAY(mem_ctx, uint32, num_alias_sids);
633 if (*pp_alias_rids == NULL)
634 return NT_STATUS_NO_MEMORY;
636 for (i=0; i<num_alias_sids; i++) {
637 if (!sid_peek_check_rid(domain_sid, &alias_sids[i],
638 &(*pp_alias_rids)[*p_num_alias_rids]))
639 continue;
640 *p_num_alias_rids += 1;
643 TALLOC_FREE(alias_sids);
645 return NT_STATUS_OK;
648 /**********************************************************************
649 no ops for passdb backends that don't implement group mapping
650 *********************************************************************/
652 NTSTATUS pdb_nop_getgrsid(struct pdb_methods *methods, GROUP_MAP *map,
653 DOM_SID sid)
655 return NT_STATUS_UNSUCCESSFUL;
658 NTSTATUS pdb_nop_getgrgid(struct pdb_methods *methods, GROUP_MAP *map,
659 gid_t gid)
661 return NT_STATUS_UNSUCCESSFUL;
664 NTSTATUS pdb_nop_getgrnam(struct pdb_methods *methods, GROUP_MAP *map,
665 const char *name)
667 return NT_STATUS_UNSUCCESSFUL;
670 NTSTATUS pdb_nop_add_group_mapping_entry(struct pdb_methods *methods,
671 GROUP_MAP *map)
673 return NT_STATUS_UNSUCCESSFUL;
676 NTSTATUS pdb_nop_update_group_mapping_entry(struct pdb_methods *methods,
677 GROUP_MAP *map)
679 return NT_STATUS_UNSUCCESSFUL;
682 NTSTATUS pdb_nop_delete_group_mapping_entry(struct pdb_methods *methods,
683 DOM_SID sid)
685 return NT_STATUS_UNSUCCESSFUL;
688 NTSTATUS pdb_nop_enum_group_mapping(struct pdb_methods *methods,
689 enum lsa_SidType sid_name_use,
690 GROUP_MAP **rmap, size_t *num_entries,
691 bool unix_only)
693 return NT_STATUS_UNSUCCESSFUL;
696 /****************************************************************************
697 These need to be redirected through pdb_interface.c
698 ****************************************************************************/
699 bool pdb_get_dom_grp_info(const DOM_SID *sid, struct acct_info *info)
701 GROUP_MAP map;
702 bool res;
704 become_root();
705 res = get_domain_group_from_sid(*sid, &map);
706 unbecome_root();
708 if (!res)
709 return False;
711 fstrcpy(info->acct_name, map.nt_name);
712 fstrcpy(info->acct_desc, map.comment);
713 sid_peek_rid(sid, &info->rid);
714 return True;
717 bool pdb_set_dom_grp_info(const DOM_SID *sid, const struct acct_info *info)
719 GROUP_MAP map;
721 if (!get_domain_group_from_sid(*sid, &map))
722 return False;
724 fstrcpy(map.nt_name, info->acct_name);
725 fstrcpy(map.comment, info->acct_desc);
727 return NT_STATUS_IS_OK(pdb_update_group_mapping_entry(&map));
730 /********************************************************************
731 Really just intended to be called by smbd
732 ********************************************************************/
734 NTSTATUS pdb_create_builtin_alias(uint32 rid)
736 DOM_SID sid;
737 enum lsa_SidType type;
738 gid_t gid;
739 GROUP_MAP map;
740 TALLOC_CTX *mem_ctx;
741 NTSTATUS status;
742 const char *name = NULL;
743 fstring groupname;
745 DEBUG(10, ("Trying to create builtin alias %d\n", rid));
747 if ( !sid_compose( &sid, &global_sid_Builtin, rid ) ) {
748 return NT_STATUS_NO_SUCH_ALIAS;
751 if ( (mem_ctx = talloc_new(NULL)) == NULL ) {
752 return NT_STATUS_NO_MEMORY;
755 if ( !lookup_sid(mem_ctx, &sid, NULL, &name, &type) ) {
756 TALLOC_FREE( mem_ctx );
757 return NT_STATUS_NO_SUCH_ALIAS;
760 /* validate RID so copy the name and move on */
762 fstrcpy( groupname, name );
763 TALLOC_FREE( mem_ctx );
765 if (!winbind_allocate_gid(&gid)) {
766 DEBUG(3, ("pdb_create_builtin_alias: Could not get a gid out of winbind\n"));
767 return NT_STATUS_ACCESS_DENIED;
770 DEBUG(10,("Creating alias %s with gid %u\n", groupname, (unsigned int)gid));
772 map.gid = gid;
773 sid_copy(&map.sid, &sid);
774 map.sid_name_use = SID_NAME_ALIAS;
775 fstrcpy(map.nt_name, groupname);
776 fstrcpy(map.comment, "");
778 status = pdb_add_group_mapping_entry(&map);
780 if (!NT_STATUS_IS_OK(status)) {
781 DEBUG(0, ("pdb_create_builtin_alias: Could not add group mapping entry for alias %d "
782 "(%s)\n", rid, nt_errstr(status)));
785 return status;