vfs_ceph_new: handle case of readlinkat with empty name string
[samba.git] / source3 / utils / net_groupmap.c
blob4f36d450f8ef3dc890fe804240fe7c5ea71bb339
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) Gerald Carter 2003,
7 * Copyright (C) Volker Lendecke 2004
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/>.
24 #include "includes.h"
25 #include "system/passwd.h"
26 #include "utils/net.h"
27 #include "../libcli/security/security.h"
28 #include "passdb.h"
29 #include "lib/util/string_wrappers.h"
31 /*********************************************************
32 Figure out if the input was an NT group or a SID string.
33 Return the SID.
34 **********************************************************/
35 static bool get_sid_from_input(struct dom_sid *sid, char *input)
37 GROUP_MAP *map;
39 map = talloc_zero(NULL, GROUP_MAP);
40 if (!map) {
41 return false;
44 if (strncasecmp_m( input, "S-", 2)) {
45 /* Perhaps its the NT group name? */
46 if (!pdb_getgrnam(map, input)) {
47 printf(_("NT Group %s doesn't exist in mapping DB\n"),
48 input);
49 TALLOC_FREE(map);
50 return false;
51 } else {
52 *sid = map->sid;
54 } else {
55 if (!string_to_sid(sid, input)) {
56 printf(_("converting sid %s from a string failed!\n"),
57 input);
58 TALLOC_FREE(map);
59 return false;
62 TALLOC_FREE(map);
63 return true;
66 /*********************************************************
67 Dump a GROUP_MAP entry to stdout (long or short listing)
68 **********************************************************/
70 static void print_map_entry (const GROUP_MAP *map, bool long_list)
72 struct dom_sid_buf buf;
74 if (!long_list)
75 d_printf("%s (%s) -> %s\n", map->nt_name,
76 dom_sid_str_buf(&map->sid, &buf),
77 gidtoname(map->gid));
78 else {
79 d_printf("%s\n", map->nt_name);
80 d_printf(_("\tSID : %s\n"),
81 dom_sid_str_buf(&map->sid, &buf));
82 d_printf(_("\tUnix gid : %u\n"), (unsigned int)map->gid);
83 d_printf(_("\tUnix group: %s\n"), gidtoname(map->gid));
84 d_printf(_("\tGroup type: %s\n"),
85 sid_type_lookup(map->sid_name_use));
86 d_printf(_("\tComment : %s\n"), map->comment);
90 /*********************************************************
91 List the groups.
92 **********************************************************/
93 static int net_groupmap_list(struct net_context *c, int argc, const char **argv)
95 size_t entries;
96 bool long_list = false;
97 size_t i;
98 fstring ntgroup = "";
99 fstring sid_string = "";
100 const char list_usage_str[] = N_("net groupmap list [verbose] "
101 "[ntgroup=NT group] [sid=SID]\n"
102 " verbose\tPrint verbose list\n"
103 " ntgroup\tNT group to list\n"
104 " sid\tSID of group to list");
106 if (c->display_usage) {
107 d_printf("%s\n%s\n", _("Usage: "), list_usage_str);
108 return 0;
111 if (c->opt_verbose || c->opt_long_list_entries)
112 long_list = true;
114 /* get the options */
115 for ( i=0; i<argc; i++ ) {
116 if ( !strcasecmp_m(argv[i], "verbose")) {
117 long_list = true;
119 else if ( !strncasecmp_m(argv[i], "ntgroup", strlen("ntgroup")) ) {
120 fstrcpy( ntgroup, get_string_param( argv[i] ) );
121 if ( !ntgroup[0] ) {
122 d_fprintf(stderr, _("must supply a name\n"));
123 return -1;
126 else if ( !strncasecmp_m(argv[i], "sid", strlen("sid")) ) {
127 fstrcpy( sid_string, get_string_param( argv[i] ) );
128 if ( !sid_string[0] ) {
129 d_fprintf(stderr, _("must supply a SID\n"));
130 return -1;
133 else {
134 d_fprintf(stderr, _("Bad option: %s\n"), argv[i]);
135 d_printf("%s\n%s\n", _("Usage:"), list_usage_str);
136 return -1;
140 /* list a single group is given a name */
141 if ( ntgroup[0] || sid_string[0] ) {
142 struct dom_sid sid;
143 GROUP_MAP *map;
145 if ( sid_string[0] )
146 strlcpy(ntgroup, sid_string, sizeof(ntgroup));
148 if (!get_sid_from_input(&sid, ntgroup)) {
149 return -1;
152 map = talloc_zero(NULL, GROUP_MAP);
153 if (!map) {
154 return -1;
157 /* Get the current mapping from the database */
158 if(!pdb_getgrsid(map, sid)) {
159 d_fprintf(stderr,
160 _("Failure to find local group SID in the "
161 "database\n"));
162 TALLOC_FREE(map);
163 return -1;
166 print_map_entry(map, long_list );
167 TALLOC_FREE(map);
169 else {
170 GROUP_MAP **maps = NULL;
171 bool ok = false;
172 /* enumerate all group mappings */
173 ok = pdb_enum_group_mapping(NULL, SID_NAME_UNKNOWN,
174 &maps, &entries,
175 ENUM_ALL_MAPPED);
176 if (!ok) {
177 return -1;
180 for (i=0; i<entries; i++) {
181 print_map_entry(maps[i], long_list);
184 TALLOC_FREE(maps);
187 return 0;
190 /*********************************************************
191 Add a new group mapping entry
192 **********************************************************/
194 static int net_groupmap_add(struct net_context *c, int argc, const char **argv)
196 struct dom_sid sid;
197 fstring ntgroup = "";
198 fstring unixgrp = "";
199 fstring string_sid = "";
200 fstring type = "";
201 fstring ntcomment = "";
202 enum lsa_SidType sid_type = SID_NAME_DOM_GRP;
203 uint32_t rid = 0;
204 gid_t gid;
205 int i;
206 GROUP_MAP *map;
208 const char *name_type;
209 const char add_usage_str[] = N_("net groupmap add "
210 "{rid=<int>|sid=<string>}"
211 " unixgroup=<string> "
212 "[type=<domain|local|builtin>] "
213 "[ntgroup=<string>] "
214 "[comment=<string>]");
216 name_type = "domain group";
218 if (c->display_usage) {
219 d_printf("%s\n%s\n", _("Usage:\n"), add_usage_str);
220 return 0;
223 /* get the options */
224 for ( i=0; i<argc; i++ ) {
225 if ( !strncasecmp_m(argv[i], "rid", strlen("rid")) ) {
226 rid = get_int_param(argv[i]);
227 if ( rid < DOMAIN_RID_ADMINS ) {
228 d_fprintf(stderr,
229 _("RID must be greater than %d\n"),
230 (uint32_t)DOMAIN_RID_ADMINS-1);
231 return -1;
234 else if ( !strncasecmp_m(argv[i], "unixgroup", strlen("unixgroup")) ) {
235 fstrcpy( unixgrp, get_string_param( argv[i] ) );
236 if ( !unixgrp[0] ) {
237 d_fprintf(stderr,_( "must supply a name\n"));
238 return -1;
241 else if ( !strncasecmp_m(argv[i], "ntgroup", strlen("ntgroup")) ) {
242 fstrcpy( ntgroup, get_string_param( argv[i] ) );
243 if ( !ntgroup[0] ) {
244 d_fprintf(stderr, _("must supply a name\n"));
245 return -1;
248 else if ( !strncasecmp_m(argv[i], "sid", strlen("sid")) ) {
249 fstrcpy( string_sid, get_string_param( argv[i] ) );
250 if ( !string_sid[0] ) {
251 d_fprintf(stderr, _("must supply a SID\n"));
252 return -1;
255 else if ( !strncasecmp_m(argv[i], "comment", strlen("comment")) ) {
256 fstrcpy( ntcomment, get_string_param( argv[i] ) );
257 if ( !ntcomment[0] ) {
258 d_fprintf(stderr,
259 _("must supply a comment string\n"));
260 return -1;
263 else if ( !strncasecmp_m(argv[i], "type", strlen("type")) ) {
264 fstrcpy( type, get_string_param( argv[i] ) );
265 switch ( type[0] ) {
266 case 'b':
267 case 'B':
268 sid_type = SID_NAME_WKN_GRP;
269 name_type = "wellknown group";
270 break;
271 case 'd':
272 case 'D':
273 sid_type = SID_NAME_DOM_GRP;
274 name_type = "domain group";
275 break;
276 case 'l':
277 case 'L':
278 sid_type = SID_NAME_ALIAS;
279 name_type = "alias (local) group";
280 break;
281 default:
282 d_fprintf(stderr,
283 _("unknown group type %s\n"),
284 type);
285 return -1;
288 else {
289 d_fprintf(stderr, _("Bad option: %s\n"), argv[i]);
290 return -1;
294 if ( !unixgrp[0] ) {
295 d_printf("%s\n%s\n", _("Usage:\n"), add_usage_str);
296 return -1;
299 if ( (gid = nametogid(unixgrp)) == (gid_t)-1 ) {
300 d_fprintf(stderr, _("Can't lookup UNIX group %s\n"), unixgrp);
301 return -1;
304 map = talloc_zero(NULL, GROUP_MAP);
305 if (!map) {
306 return -1;
308 /* Default is domain group. */
309 map->sid_name_use = SID_NAME_DOM_GRP;
310 if (pdb_getgrgid(map, gid)) {
311 struct dom_sid_buf buf;
312 d_printf(_("Unix group %s already mapped to SID %s\n"),
313 unixgrp, dom_sid_str_buf(&map->sid, &buf));
314 TALLOC_FREE(map);
315 return -1;
317 TALLOC_FREE(map);
319 if ( (rid == 0) && (string_sid[0] == '\0') ) {
320 d_printf(_("No rid or sid specified, choosing a RID\n"));
321 if (pdb_capabilities() & PDB_CAP_STORE_RIDS) {
322 if (!pdb_new_rid(&rid)) {
323 d_printf(_("Could not get new RID\n"));
325 } else {
326 rid = algorithmic_pdb_gid_to_group_rid(gid);
328 d_printf(_("Got RID %d\n"), rid);
331 /* append the rid to our own domain/machine SID if we don't have a full SID */
332 if ( !string_sid[0] ) {
333 sid_compose(&sid, get_global_sam_sid(), rid);
334 sid_to_fstring(string_sid, &sid);
337 if (!ntcomment[0]) {
338 switch (sid_type) {
339 case SID_NAME_WKN_GRP:
340 fstrcpy(ntcomment, "Wellknown Unix group");
341 break;
342 case SID_NAME_DOM_GRP:
343 fstrcpy(ntcomment, "Domain Unix group");
344 break;
345 case SID_NAME_ALIAS:
346 fstrcpy(ntcomment, "Local Unix group");
347 break;
348 default:
349 fstrcpy(ntcomment, "Unix group");
350 break;
354 if (!ntgroup[0] )
355 strlcpy(ntgroup, unixgrp, sizeof(ntgroup));
357 if (!NT_STATUS_IS_OK(add_initial_entry(gid, string_sid, sid_type, ntgroup, ntcomment))) {
358 d_fprintf(stderr, _("adding entry for group %s failed!\n"), ntgroup);
359 return -1;
362 d_printf(_("Successfully added group %s to the mapping db as a %s\n"),
363 ntgroup, name_type);
364 return 0;
367 static int net_groupmap_modify(struct net_context *c, int argc, const char **argv)
369 struct dom_sid sid;
370 GROUP_MAP *map = NULL;
371 fstring ntcomment = "";
372 fstring type = "";
373 fstring ntgroup = "";
374 fstring unixgrp = "";
375 fstring sid_string = "";
376 enum lsa_SidType sid_type = SID_NAME_UNKNOWN;
377 int i;
378 gid_t gid;
379 const char modify_usage_str[] = N_("net groupmap modify "
380 "{ntgroup=<string>|sid=<SID>} "
381 "[comment=<string>] "
382 "[unixgroup=<string>] "
383 "[type=<domain|local>]");
385 if (c->display_usage) {
386 d_printf("%s\n%s\n", _("Usage:\n"), modify_usage_str);
387 return 0;
390 /* get the options */
391 for ( i=0; i<argc; i++ ) {
392 if ( !strncasecmp_m(argv[i], "ntgroup", strlen("ntgroup")) ) {
393 fstrcpy( ntgroup, get_string_param( argv[i] ) );
394 if ( !ntgroup[0] ) {
395 d_fprintf(stderr, _("must supply a name\n"));
396 return -1;
399 else if ( !strncasecmp_m(argv[i], "sid", strlen("sid")) ) {
400 fstrcpy( sid_string, get_string_param( argv[i] ) );
401 if ( !sid_string[0] ) {
402 d_fprintf(stderr, _("must supply a name\n"));
403 return -1;
406 else if ( !strncasecmp_m(argv[i], "comment", strlen("comment")) ) {
407 fstrcpy( ntcomment, get_string_param( argv[i] ) );
408 if ( !ntcomment[0] ) {
409 d_fprintf(stderr,
410 _("must supply a comment string\n"));
411 return -1;
414 else if ( !strncasecmp_m(argv[i], "unixgroup", strlen("unixgroup")) ) {
415 fstrcpy( unixgrp, get_string_param( argv[i] ) );
416 if ( !unixgrp[0] ) {
417 d_fprintf(stderr,
418 _("must supply a group name\n"));
419 return -1;
422 else if ( !strncasecmp_m(argv[i], "type", strlen("type")) ) {
423 fstrcpy( type, get_string_param( argv[i] ) );
424 switch ( type[0] ) {
425 case 'd':
426 case 'D':
427 sid_type = SID_NAME_DOM_GRP;
428 break;
429 case 'l':
430 case 'L':
431 sid_type = SID_NAME_ALIAS;
432 break;
435 else {
436 d_fprintf(stderr, _("Bad option: %s\n"), argv[i]);
437 return -1;
441 if ( !ntgroup[0] && !sid_string[0] ) {
442 d_printf("%s\n%s\n", _("Usage:\n"), modify_usage_str);
443 return -1;
446 /* give preference to the SID; if both the ntgroup name and SID
447 are defined, use the SID and assume that the group name could be a
448 new name */
450 if ( sid_string[0] ) {
451 if (!get_sid_from_input(&sid, sid_string)) {
452 return -1;
455 else {
456 if (!get_sid_from_input(&sid, ntgroup)) {
457 return -1;
461 map = talloc_zero(NULL, GROUP_MAP);
462 if (!map) {
463 return -1;
466 /* Get the current mapping from the database */
467 if(!pdb_getgrsid(map, sid)) {
468 d_fprintf(stderr,
469 _("Failed to find local group SID in the database\n"));
470 TALLOC_FREE(map);
471 return -1;
475 * Allow changing of group type only between domain and local
476 * We disallow changing Builtin groups !!! (SID problem)
478 if (sid_type == SID_NAME_UNKNOWN) {
479 d_fprintf(stderr, _("Can't map to an unknown group type.\n"));
480 TALLOC_FREE(map);
481 return -1;
484 if (map->sid_name_use == SID_NAME_WKN_GRP) {
485 d_fprintf(stderr,
486 _("You can only change between domain and local "
487 "groups.\n"));
488 TALLOC_FREE(map);
489 return -1;
492 map->sid_name_use = sid_type;
494 /* Change comment if new one */
495 if (ntcomment[0]) {
496 map->comment = talloc_strdup(map, ntcomment);
497 if (!map->comment) {
498 d_fprintf(stderr, _("Out of memory!\n"));
499 return -1;
503 if (ntgroup[0]) {
504 map->nt_name = talloc_strdup(map, ntgroup);
505 if (!map->nt_name) {
506 d_fprintf(stderr, _("Out of memory!\n"));
507 return -1;
511 if ( unixgrp[0] ) {
512 gid = nametogid( unixgrp );
513 if ( gid == -1 ) {
514 d_fprintf(stderr, _("Unable to lookup UNIX group %s. "
515 "Make sure the group exists.\n"),
516 unixgrp);
517 TALLOC_FREE(map);
518 return -1;
521 map->gid = gid;
524 if (!NT_STATUS_IS_OK(pdb_update_group_mapping_entry(map))) {
525 d_fprintf(stderr, _("Could not update group database\n"));
526 TALLOC_FREE(map);
527 return -1;
530 d_printf(_("Updated mapping entry for %s\n"), map->nt_name);
532 TALLOC_FREE(map);
533 return 0;
536 static int net_groupmap_delete(struct net_context *c, int argc, const char **argv)
538 struct dom_sid sid;
539 fstring ntgroup = "";
540 fstring sid_string = "";
541 int i;
542 const char delete_usage_str[] = N_("net groupmap delete "
543 "{ntgroup=<string>|sid=<SID>}");
545 if (c->display_usage) {
546 d_printf("%s\n%s\n", _("Usage:\n"), delete_usage_str);
547 return 0;
550 /* get the options */
551 for ( i=0; i<argc; i++ ) {
552 if ( !strncasecmp_m(argv[i], "ntgroup", strlen("ntgroup")) ) {
553 fstrcpy( ntgroup, get_string_param( argv[i] ) );
554 if ( !ntgroup[0] ) {
555 d_fprintf(stderr, _("must supply a name\n"));
556 return -1;
559 else if ( !strncasecmp_m(argv[i], "sid", strlen("sid")) ) {
560 fstrcpy( sid_string, get_string_param( argv[i] ) );
561 if ( !sid_string[0] ) {
562 d_fprintf(stderr, _("must supply a SID\n"));
563 return -1;
566 else {
567 d_fprintf(stderr, _("Bad option: %s\n"), argv[i]);
568 return -1;
572 if ( !ntgroup[0] && !sid_string[0]) {
573 d_printf("%s\n%s\n", _("Usage:\n"), delete_usage_str);
574 return -1;
577 /* give preference to the SID if we have that */
579 if ( sid_string[0] )
580 strlcpy(ntgroup, sid_string, sizeof(ntgroup));
582 if ( !get_sid_from_input(&sid, ntgroup) ) {
583 d_fprintf(stderr, _("Unable to resolve group %s to a SID\n"),
584 ntgroup);
585 return -1;
588 if ( !NT_STATUS_IS_OK(pdb_delete_group_mapping_entry(sid)) ) {
589 d_fprintf(stderr,
590 _("Failed to remove group %s from the mapping db!\n"),
591 ntgroup);
592 return -1;
595 d_printf(_("Successfully removed %s from the mapping db\n"), ntgroup);
597 return 0;
600 static int net_groupmap_set(struct net_context *c, int argc, const char **argv)
602 const char *ntgroup = NULL;
603 struct group *grp = NULL;
604 GROUP_MAP *map;
605 bool have_map = false;
607 if ((argc < 1) || (argc > 2) || c->display_usage) {
608 d_printf("%s\n%s",
609 _("Usage:"),
610 _(" net groupmap set \"NT Group\" "
611 "[\"unix group\"] [-C \"comment\"] [-L] [-D]\n"));
612 return -1;
615 if ( c->opt_localgroup && c->opt_domaingroup ) {
616 d_printf(_("Can only specify -L or -D, not both\n"));
617 return -1;
620 ntgroup = argv[0];
622 if (argc == 2) {
623 grp = getgrnam(argv[1]);
625 if (grp == NULL) {
626 d_fprintf(stderr, _("Could not find unix group %s\n"),
627 argv[1]);
628 return -1;
632 map = talloc_zero(NULL, GROUP_MAP);
633 if (!map) {
634 d_printf(_("Out of memory!\n"));
635 return -1;
638 have_map = pdb_getgrnam(map, ntgroup);
640 if (!have_map) {
641 struct dom_sid sid;
642 have_map = ( (strncmp(ntgroup, "S-", 2) == 0) &&
643 string_to_sid(&sid, ntgroup) &&
644 pdb_getgrsid(map, sid) );
647 if (!have_map) {
649 /* Ok, add it */
651 if (grp == NULL) {
652 d_fprintf(stderr,
653 _("Could not find group mapping for %s\n"),
654 ntgroup);
655 TALLOC_FREE(map);
656 return -1;
659 map->gid = grp->gr_gid;
661 if (c->opt_rid == 0) {
662 if ( pdb_capabilities() & PDB_CAP_STORE_RIDS ) {
663 if ( !pdb_new_rid((uint32_t *)&c->opt_rid) ) {
664 d_fprintf( stderr,
665 _("Could not allocate new RID\n"));
666 TALLOC_FREE(map);
667 return -1;
669 } else {
670 c->opt_rid = algorithmic_pdb_gid_to_group_rid(map->gid);
674 sid_compose(&map->sid, get_global_sam_sid(), c->opt_rid);
676 map->sid_name_use = SID_NAME_DOM_GRP;
677 map->nt_name = talloc_strdup(map, ntgroup);
678 map->comment = talloc_strdup(map, "");
679 if (!map->nt_name || !map->comment) {
680 d_printf(_("Out of memory!\n"));
681 TALLOC_FREE(map);
682 return -1;
685 if (!NT_STATUS_IS_OK(pdb_add_group_mapping_entry(map))) {
686 d_fprintf(stderr,
687 _("Could not add mapping entry for %s\n"),
688 ntgroup);
689 TALLOC_FREE(map);
690 return -1;
694 /* Now we have a mapping entry, update that stuff */
696 if ( c->opt_localgroup || c->opt_domaingroup ) {
697 if (map->sid_name_use == SID_NAME_WKN_GRP) {
698 d_fprintf(stderr,
699 _("Can't change type of the BUILTIN "
700 "group %s\n"),
701 map->nt_name);
702 TALLOC_FREE(map);
703 return -1;
707 if (c->opt_localgroup)
708 map->sid_name_use = SID_NAME_ALIAS;
710 if (c->opt_domaingroup)
711 map->sid_name_use = SID_NAME_DOM_GRP;
713 /* The case (opt_domaingroup && opt_localgroup) was tested for above */
715 if ((c->opt_comment != NULL) && (strlen(c->opt_comment) > 0)) {
716 map->comment = talloc_strdup(map, c->opt_comment);
717 if (!map->comment) {
718 d_printf(_("Out of memory!\n"));
719 TALLOC_FREE(map);
720 return -1;
724 if ((c->opt_newntname != NULL) && (strlen(c->opt_newntname) > 0)) {
725 map->nt_name = talloc_strdup(map, c->opt_newntname);
726 if (!map->nt_name) {
727 d_printf(_("Out of memory!\n"));
728 TALLOC_FREE(map);
729 return -1;
733 if (grp != NULL)
734 map->gid = grp->gr_gid;
736 if (!NT_STATUS_IS_OK(pdb_update_group_mapping_entry(map))) {
737 d_fprintf(stderr, _("Could not update group mapping for %s\n"),
738 ntgroup);
739 TALLOC_FREE(map);
740 return -1;
743 TALLOC_FREE(map);
744 return 0;
747 static int net_groupmap_cleanup(struct net_context *c, int argc, const char **argv)
749 GROUP_MAP **maps = NULL;
750 size_t i, entries;
752 if (c->display_usage) {
753 d_printf( "%s\n"
754 "net groupmap cleanup\n"
755 " %s\n",
756 _("Usage:"),
757 _("Delete all group mappings"));
758 return 0;
761 if (!pdb_enum_group_mapping(NULL, SID_NAME_UNKNOWN, &maps, &entries,
762 ENUM_ALL_MAPPED)) {
763 d_fprintf(stderr, _("Could not list group mappings\n"));
764 return -1;
767 for (i=0; i<entries; i++) {
769 if (maps[i]->gid == -1)
770 printf(_("Group %s is not mapped\n"),
771 maps[i]->nt_name);
773 if (!sid_check_is_in_our_sam(&maps[i]->sid) &&
774 !sid_check_is_in_builtin(&maps[i]->sid))
776 struct dom_sid_buf buf;
777 printf(_("Deleting mapping for NT Group %s, sid %s\n"),
778 maps[i]->nt_name,
779 dom_sid_str_buf(&maps[i]->sid, &buf));
780 pdb_delete_group_mapping_entry(maps[i]->sid);
784 TALLOC_FREE(maps);
785 return 0;
788 static int net_groupmap_addmem(struct net_context *c, int argc, const char **argv)
790 struct dom_sid alias, member;
792 if ( (argc != 2) ||
793 c->display_usage ||
794 !string_to_sid(&alias, argv[0]) ||
795 !string_to_sid(&member, argv[1]) ) {
796 d_printf("%s\n%s",
797 _("Usage:"),
798 _("net groupmap addmem alias-sid member-sid\n"));
799 return -1;
802 if (!NT_STATUS_IS_OK(pdb_add_aliasmem(&alias, &member))) {
803 d_fprintf(stderr, _("Could not add sid %s to alias %s\n"),
804 argv[1], argv[0]);
805 return -1;
808 return 0;
811 static int net_groupmap_delmem(struct net_context *c, int argc, const char **argv)
813 struct dom_sid alias, member;
815 if ( (argc != 2) ||
816 c->display_usage ||
817 !string_to_sid(&alias, argv[0]) ||
818 !string_to_sid(&member, argv[1]) ) {
819 d_printf("%s\n%s",
820 _("Usage:"),
821 _("net groupmap delmem alias-sid member-sid\n"));
822 return -1;
825 if (!NT_STATUS_IS_OK(pdb_del_aliasmem(&alias, &member))) {
826 d_fprintf(stderr, _("Could not delete sid %s from alias %s\n"),
827 argv[1], argv[0]);
828 return -1;
831 return 0;
834 static int net_groupmap_listmem(struct net_context *c, int argc, const char **argv)
836 struct dom_sid alias;
837 struct dom_sid *members;
838 size_t i, num;
840 if ( (argc != 1) ||
841 c->display_usage ||
842 !string_to_sid(&alias, argv[0]) ) {
843 d_printf("%s\n%s",
844 _("Usage:"),
845 _("net groupmap listmem alias-sid\n"));
846 return -1;
849 members = NULL;
850 num = 0;
852 if (!NT_STATUS_IS_OK(pdb_enum_aliasmem(&alias, talloc_tos(),
853 &members, &num))) {
854 d_fprintf(stderr, _("Could not list members for sid %s\n"),
855 argv[0]);
856 return -1;
859 for (i = 0; i < num; i++) {
860 struct dom_sid_buf buf;
861 printf("%s\n", dom_sid_str_buf(&(members[i]), &buf));
864 TALLOC_FREE(members);
866 return 0;
869 static bool print_alias_memberships(TALLOC_CTX *mem_ctx,
870 const struct dom_sid *domain_sid,
871 const struct dom_sid *member)
873 uint32_t *alias_rids;
874 size_t i, num_alias_rids;
875 struct dom_sid_buf buf;
877 alias_rids = NULL;
878 num_alias_rids = 0;
880 if (!NT_STATUS_IS_OK(pdb_enum_alias_memberships(
881 mem_ctx, domain_sid, member, 1,
882 &alias_rids, &num_alias_rids))) {
883 d_fprintf(stderr, _("Could not list memberships for sid %s\n"),
884 dom_sid_str_buf(member, &buf));
885 return false;
888 for (i = 0; i < num_alias_rids; i++) {
889 struct dom_sid alias;
890 sid_compose(&alias, domain_sid, alias_rids[i]);
891 printf("%s\n", dom_sid_str_buf(&alias, &buf));
894 return true;
897 static int net_groupmap_memberships(struct net_context *c, int argc, const char **argv)
899 TALLOC_CTX *mem_ctx;
900 struct dom_sid *domain_sid, member;
902 if ( (argc != 1) ||
903 c->display_usage ||
904 !string_to_sid(&member, argv[0]) ) {
905 d_printf("%s\n%s",
906 _("Usage:"),
907 _("net groupmap memberships sid\n"));
908 return -1;
911 mem_ctx = talloc_init("net_groupmap_memberships");
912 if (mem_ctx == NULL) {
913 d_fprintf(stderr, _("talloc_init failed\n"));
914 return -1;
917 domain_sid = get_global_sam_sid();
918 if (domain_sid == NULL) {
919 d_fprintf(stderr, _("Could not get domain sid\n"));
920 return -1;
923 if (!print_alias_memberships(mem_ctx, domain_sid, &member) ||
924 !print_alias_memberships(mem_ctx, &global_sid_Builtin, &member))
925 return -1;
927 talloc_destroy(mem_ctx);
929 return 0;
932 /***********************************************************
933 migrated functionality from smbgroupedit
934 **********************************************************/
935 int net_groupmap(struct net_context *c, int argc, const char **argv)
937 struct functable func[] = {
939 "add",
940 net_groupmap_add,
941 NET_TRANSPORT_LOCAL,
942 N_("Create a new group mapping"),
943 N_("net groupmap add\n"
944 " Create a new group mapping")
947 "modify",
948 net_groupmap_modify,
949 NET_TRANSPORT_LOCAL,
950 N_("Update a group mapping"),
951 N_("net groupmap modify\n"
952 " Modify an existing group mapping")
955 "delete",
956 net_groupmap_delete,
957 NET_TRANSPORT_LOCAL,
958 N_("Remove a group mapping"),
959 N_("net groupmap delete\n"
960 " Remove a group mapping")
963 "set",
964 net_groupmap_set,
965 NET_TRANSPORT_LOCAL,
966 N_("Set group mapping"),
967 N_("net groupmap set\n"
968 " Set a group mapping")
971 "cleanup",
972 net_groupmap_cleanup,
973 NET_TRANSPORT_LOCAL,
974 N_("Remove foreign group mapping entries"),
975 N_("net groupmap cleanup\n"
976 " Remove foreign group mapping entries")
979 "addmem",
980 net_groupmap_addmem,
981 NET_TRANSPORT_LOCAL,
982 N_("Add a foreign alias member"),
983 N_("net groupmap addmem\n"
984 " Add a foreign alias member")
987 "delmem",
988 net_groupmap_delmem,
989 NET_TRANSPORT_LOCAL,
990 N_("Delete foreign alias member"),
991 N_("net groupmap delmem\n"
992 " Delete foreign alias member")
995 "listmem",
996 net_groupmap_listmem,
997 NET_TRANSPORT_LOCAL,
998 N_("List foreign group members"),
999 N_("net groupmap listmem\n"
1000 " List foreign alias members")
1003 "memberships",
1004 net_groupmap_memberships,
1005 NET_TRANSPORT_LOCAL,
1006 N_("List foreign group memberships"),
1007 N_("net groupmap memberships\n"
1008 " List foreign group memberships")
1011 "list",
1012 net_groupmap_list,
1013 NET_TRANSPORT_LOCAL,
1014 N_("List current group map"),
1015 N_("net groupmap list\n"
1016 " List current group map")
1018 {NULL, NULL, 0, NULL, NULL}
1021 return net_run_function(c,argc, argv, "net groupmap", func);