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/>.
25 #include "utils/net.h"
27 /*********************************************************
28 Figure out if the input was an NT group or a SID string.
30 **********************************************************/
31 static bool get_sid_from_input(DOM_SID
*sid
, char *input
)
35 if (StrnCaseCmp( input
, "S-", 2)) {
36 /* Perhaps its the NT group name? */
37 if (!pdb_getgrnam(&map
, input
)) {
38 printf("NT Group %s doesn't exist in mapping DB\n", input
);
44 if (!string_to_sid(sid
, input
)) {
45 printf("converting sid %s from a string failed!\n", input
);
52 /*********************************************************
53 Dump a GROUP_MAP entry to stdout (long or short listing)
54 **********************************************************/
56 static void print_map_entry ( GROUP_MAP map
, bool long_list
)
59 d_printf("%s (%s) -> %s\n", map
.nt_name
,
60 sid_string_tos(&map
.sid
), gidtoname(map
.gid
));
62 d_printf("%s\n", map
.nt_name
);
63 d_printf("\tSID : %s\n", sid_string_tos(&map
.sid
));
64 d_printf("\tUnix gid : %d\n", map
.gid
);
65 d_printf("\tUnix group: %s\n", gidtoname(map
.gid
));
66 d_printf("\tGroup type: %s\n",
67 sid_type_lookup(map
.sid_name_use
));
68 d_printf("\tComment : %s\n", map
.comment
);
72 /*********************************************************
74 **********************************************************/
75 static int net_groupmap_list(int argc
, const char **argv
)
78 bool long_list
= False
;
81 fstring sid_string
= "";
83 if (opt_verbose
|| opt_long_list_entries
)
87 for ( i
=0; i
<argc
; i
++ ) {
88 if ( !StrCaseCmp(argv
[i
], "verbose")) {
91 else if ( !StrnCaseCmp(argv
[i
], "ntgroup", strlen("ntgroup")) ) {
92 fstrcpy( ntgroup
, get_string_param( argv
[i
] ) );
94 d_fprintf(stderr
, "must supply a name\n");
98 else if ( !StrnCaseCmp(argv
[i
], "sid", strlen("sid")) ) {
99 fstrcpy( sid_string
, get_string_param( argv
[i
] ) );
100 if ( !sid_string
[0] ) {
101 d_fprintf(stderr
, "must supply a SID\n");
106 d_fprintf(stderr
, "Bad option: %s\n", argv
[i
]);
111 /* list a single group is given a name */
112 if ( ntgroup
[0] || sid_string
[0] ) {
117 fstrcpy( ntgroup
, sid_string
);
119 if (!get_sid_from_input(&sid
, ntgroup
)) {
123 /* Get the current mapping from the database */
124 if(!pdb_getgrsid(&map
, sid
)) {
125 d_fprintf(stderr
, "Failure to local group SID in the database\n");
129 print_map_entry( map
, long_list
);
133 /* enumerate all group mappings */
134 if (!pdb_enum_group_mapping(NULL
, SID_NAME_UNKNOWN
, &map
, &entries
, ENUM_ALL_MAPPED
))
137 for (i
=0; i
<entries
; i
++) {
138 print_map_entry( map
[i
], long_list
);
147 /*********************************************************
148 Add a new group mapping entry
149 **********************************************************/
151 static int net_groupmap_add(int argc
, const char **argv
)
154 fstring ntgroup
= "";
155 fstring unixgrp
= "";
156 fstring string_sid
= "";
158 fstring ntcomment
= "";
159 enum lsa_SidType sid_type
= SID_NAME_DOM_GRP
;
165 const char *name_type
;
169 /* Default is domain group. */
170 map
.sid_name_use
= SID_NAME_DOM_GRP
;
171 name_type
= "domain group";
173 /* get the options */
174 for ( i
=0; i
<argc
; i
++ ) {
175 if ( !StrnCaseCmp(argv
[i
], "rid", strlen("rid")) ) {
176 rid
= get_int_param(argv
[i
]);
177 if ( rid
< DOMAIN_GROUP_RID_ADMINS
) {
178 d_fprintf(stderr
, "RID must be greater than %d\n", (uint32
)DOMAIN_GROUP_RID_ADMINS
-1);
182 else if ( !StrnCaseCmp(argv
[i
], "unixgroup", strlen("unixgroup")) ) {
183 fstrcpy( unixgrp
, get_string_param( argv
[i
] ) );
185 d_fprintf(stderr
, "must supply a name\n");
189 else if ( !StrnCaseCmp(argv
[i
], "ntgroup", strlen("ntgroup")) ) {
190 fstrcpy( ntgroup
, get_string_param( argv
[i
] ) );
192 d_fprintf(stderr
, "must supply a name\n");
196 else if ( !StrnCaseCmp(argv
[i
], "sid", strlen("sid")) ) {
197 fstrcpy( string_sid
, get_string_param( argv
[i
] ) );
198 if ( !string_sid
[0] ) {
199 d_fprintf(stderr
, "must supply a SID\n");
203 else if ( !StrnCaseCmp(argv
[i
], "comment", strlen("comment")) ) {
204 fstrcpy( ntcomment
, get_string_param( argv
[i
] ) );
205 if ( !ntcomment
[0] ) {
206 d_fprintf(stderr
, "must supply a comment string\n");
210 else if ( !StrnCaseCmp(argv
[i
], "type", strlen("type")) ) {
211 fstrcpy( type
, get_string_param( argv
[i
] ) );
215 sid_type
= SID_NAME_WKN_GRP
;
216 name_type
= "wellknown group";
220 sid_type
= SID_NAME_DOM_GRP
;
221 name_type
= "domain group";
225 sid_type
= SID_NAME_ALIAS
;
226 name_type
= "alias (local) group";
229 d_fprintf(stderr
, "unknown group type %s\n", type
);
234 d_fprintf(stderr
, "Bad option: %s\n", argv
[i
]);
240 d_printf("Usage: net groupmap add {rid=<int>|sid=<string>} unixgroup=<string> [type=<domain|local|builtin>] [ntgroup=<string>] [comment=<string>]\n");
244 if ( (gid
= nametogid(unixgrp
)) == (gid_t
)-1 ) {
245 d_fprintf(stderr
, "Can't lookup UNIX group %s\n", unixgrp
);
250 if (pdb_getgrgid(&map
, gid
)) {
251 d_printf("Unix group %s already mapped to SID %s\n",
252 unixgrp
, sid_string_tos(&map
.sid
));
257 if ( (rid
== 0) && (string_sid
[0] == '\0') ) {
258 d_printf("No rid or sid specified, choosing a RID\n");
259 if (pdb_rid_algorithm()) {
260 rid
= algorithmic_pdb_gid_to_group_rid(gid
);
262 if (!pdb_new_rid(&rid
)) {
263 d_printf("Could not get new RID\n");
266 d_printf("Got RID %d\n", rid
);
269 /* append the rid to our own domain/machine SID if we don't have a full SID */
270 if ( !string_sid
[0] ) {
271 sid_copy(&sid
, get_global_sam_sid());
272 sid_append_rid(&sid
, rid
);
273 sid_to_fstring(string_sid
, &sid
);
278 case SID_NAME_WKN_GRP
:
279 fstrcpy(ntcomment
, "Wellknown Unix group");
281 case SID_NAME_DOM_GRP
:
282 fstrcpy(ntcomment
, "Domain Unix group");
285 fstrcpy(ntcomment
, "Local Unix group");
288 fstrcpy(ntcomment
, "Unix group");
294 fstrcpy( ntgroup
, unixgrp
);
297 if (!NT_STATUS_IS_OK(add_initial_entry(gid
, string_sid
, sid_type
, ntgroup
, ntcomment
))) {
298 d_fprintf(stderr
, "adding entry for group %s failed!\n", ntgroup
);
302 d_printf("Successfully added group %s to the mapping db as a %s\n",
307 static int net_groupmap_modify(int argc
, const char **argv
)
311 fstring ntcomment
= "";
313 fstring ntgroup
= "";
314 fstring unixgrp
= "";
315 fstring sid_string
= "";
316 enum lsa_SidType sid_type
= SID_NAME_UNKNOWN
;
320 /* get the options */
321 for ( i
=0; i
<argc
; i
++ ) {
322 if ( !StrnCaseCmp(argv
[i
], "ntgroup", strlen("ntgroup")) ) {
323 fstrcpy( ntgroup
, get_string_param( argv
[i
] ) );
325 d_fprintf(stderr
, "must supply a name\n");
329 else if ( !StrnCaseCmp(argv
[i
], "sid", strlen("sid")) ) {
330 fstrcpy( sid_string
, get_string_param( argv
[i
] ) );
331 if ( !sid_string
[0] ) {
332 d_fprintf(stderr
, "must supply a name\n");
336 else if ( !StrnCaseCmp(argv
[i
], "comment", strlen("comment")) ) {
337 fstrcpy( ntcomment
, get_string_param( argv
[i
] ) );
338 if ( !ntcomment
[0] ) {
339 d_fprintf(stderr
, "must supply a comment string\n");
343 else if ( !StrnCaseCmp(argv
[i
], "unixgroup", strlen("unixgroup")) ) {
344 fstrcpy( unixgrp
, get_string_param( argv
[i
] ) );
346 d_fprintf(stderr
, "must supply a group name\n");
350 else if ( !StrnCaseCmp(argv
[i
], "type", strlen("type")) ) {
351 fstrcpy( type
, get_string_param( argv
[i
] ) );
355 sid_type
= SID_NAME_DOM_GRP
;
359 sid_type
= SID_NAME_ALIAS
;
364 d_fprintf(stderr
, "Bad option: %s\n", argv
[i
]);
369 if ( !ntgroup
[0] && !sid_string
[0] ) {
370 d_printf("Usage: net groupmap modify {ntgroup=<string>|sid=<SID>} [comment=<string>] [unixgroup=<string>] [type=<domain|local>]\n");
374 /* give preference to the SID; if both the ntgroup name and SID
375 are defined, use the SID and assume that the group name could be a
378 if ( sid_string
[0] ) {
379 if (!get_sid_from_input(&sid
, sid_string
)) {
384 if (!get_sid_from_input(&sid
, ntgroup
)) {
389 /* Get the current mapping from the database */
390 if(!pdb_getgrsid(&map
, sid
)) {
391 d_fprintf(stderr
, "Failure to local group SID in the database\n");
396 * Allow changing of group type only between domain and local
397 * We disallow changing Builtin groups !!! (SID problem)
399 if (sid_type
== SID_NAME_UNKNOWN
) {
400 d_fprintf(stderr
, "Can't map to an unknown group type.\n");
404 if (map
.sid_name_use
== SID_NAME_WKN_GRP
) {
405 d_fprintf(stderr
, "You can only change between domain and local groups.\n");
409 map
.sid_name_use
=sid_type
;
411 /* Change comment if new one */
413 fstrcpy( map
.comment
, ntcomment
);
416 fstrcpy( map
.nt_name
, ntgroup
);
419 gid
= nametogid( unixgrp
);
421 d_fprintf(stderr
, "Unable to lookup UNIX group %s. Make sure the group exists.\n",
429 if ( !NT_STATUS_IS_OK(pdb_update_group_mapping_entry(&map
)) ) {
430 d_fprintf(stderr
, "Could not update group database\n");
434 d_printf("Updated mapping entry for %s\n", map
.nt_name
);
439 static int net_groupmap_delete(int argc
, const char **argv
)
442 fstring ntgroup
= "";
443 fstring sid_string
= "";
446 /* get the options */
447 for ( i
=0; i
<argc
; i
++ ) {
448 if ( !StrnCaseCmp(argv
[i
], "ntgroup", strlen("ntgroup")) ) {
449 fstrcpy( ntgroup
, get_string_param( argv
[i
] ) );
451 d_fprintf(stderr
, "must supply a name\n");
455 else if ( !StrnCaseCmp(argv
[i
], "sid", strlen("sid")) ) {
456 fstrcpy( sid_string
, get_string_param( argv
[i
] ) );
457 if ( !sid_string
[0] ) {
458 d_fprintf(stderr
, "must supply a SID\n");
463 d_fprintf(stderr
, "Bad option: %s\n", argv
[i
]);
468 if ( !ntgroup
[0] && !sid_string
[0]) {
469 d_printf("Usage: net groupmap delete {ntgroup=<string>|sid=<SID>}\n");
473 /* give preference to the SID if we have that */
476 fstrcpy( ntgroup
, sid_string
);
478 if ( !get_sid_from_input(&sid
, ntgroup
) ) {
479 d_fprintf(stderr
, "Unable to resolve group %s to a SID\n", ntgroup
);
483 if ( !NT_STATUS_IS_OK(pdb_delete_group_mapping_entry(sid
)) ) {
484 d_fprintf(stderr
, "Failed to removing group %s from the mapping db!\n", ntgroup
);
488 d_printf("Sucessfully removed %s from the mapping db\n", ntgroup
);
493 static int net_groupmap_set(int argc
, const char **argv
)
495 const char *ntgroup
= NULL
;
496 struct group
*grp
= NULL
;
498 bool have_map
= False
;
500 if ((argc
< 1) || (argc
> 2)) {
501 d_printf("Usage: net groupmap set \"NT Group\" "
502 "[\"unix group\"] [-C \"comment\"] [-L] [-D]\n");
506 if ( opt_localgroup
&& opt_domaingroup
) {
507 d_printf("Can only specify -L or -D, not both\n");
514 grp
= getgrnam(argv
[1]);
517 d_fprintf(stderr
, "Could not find unix group %s\n", argv
[1]);
522 have_map
= pdb_getgrnam(&map
, ntgroup
);
526 have_map
= ( (strncmp(ntgroup
, "S-", 2) == 0) &&
527 string_to_sid(&sid
, ntgroup
) &&
528 pdb_getgrsid(&map
, sid
) );
536 d_fprintf(stderr
, "Could not find group mapping for %s\n",
541 map
.gid
= grp
->gr_gid
;
544 if ( pdb_rid_algorithm() )
545 opt_rid
= algorithmic_pdb_gid_to_group_rid(map
.gid
);
547 if ( !pdb_new_rid((uint32
*)&opt_rid
) ) {
548 d_fprintf( stderr
, "Could not allocate new RID\n");
554 sid_copy(&map
.sid
, get_global_sam_sid());
555 sid_append_rid(&map
.sid
, opt_rid
);
557 map
.sid_name_use
= SID_NAME_DOM_GRP
;
558 fstrcpy(map
.nt_name
, ntgroup
);
559 fstrcpy(map
.comment
, "");
561 if (!NT_STATUS_IS_OK(pdb_add_group_mapping_entry(&map
))) {
562 d_fprintf(stderr
, "Could not add mapping entry for %s\n",
568 /* Now we have a mapping entry, update that stuff */
570 if ( opt_localgroup
|| opt_domaingroup
) {
571 if (map
.sid_name_use
== SID_NAME_WKN_GRP
) {
572 d_fprintf(stderr
, "Can't change type of the BUILTIN group %s\n",
579 map
.sid_name_use
= SID_NAME_ALIAS
;
582 map
.sid_name_use
= SID_NAME_DOM_GRP
;
584 /* The case (opt_domaingroup && opt_localgroup) was tested for above */
586 if (strlen(opt_comment
) > 0)
587 fstrcpy(map
.comment
, opt_comment
);
589 if (strlen(opt_newntname
) > 0)
590 fstrcpy(map
.nt_name
, opt_newntname
);
593 map
.gid
= grp
->gr_gid
;
595 if (!NT_STATUS_IS_OK(pdb_update_group_mapping_entry(&map
))) {
596 d_fprintf(stderr
, "Could not update group mapping for %s\n", ntgroup
);
603 static int net_groupmap_cleanup(int argc
, const char **argv
)
605 GROUP_MAP
*map
= NULL
;
608 if (!pdb_enum_group_mapping(NULL
, SID_NAME_UNKNOWN
, &map
, &entries
,
610 d_fprintf(stderr
, "Could not list group mappings\n");
614 for (i
=0; i
<entries
; i
++) {
616 if (map
[i
].gid
== -1)
617 printf("Group %s is not mapped\n", map
[i
].nt_name
);
619 if (!sid_check_is_in_our_domain(&map
[i
].sid
)) {
620 printf("Deleting mapping for NT Group %s, sid %s\n",
622 sid_string_tos(&map
[i
].sid
));
623 pdb_delete_group_mapping_entry(map
[i
].sid
);
632 static int net_groupmap_addmem(int argc
, const char **argv
)
634 DOM_SID alias
, member
;
637 !string_to_sid(&alias
, argv
[0]) ||
638 !string_to_sid(&member
, argv
[1]) ) {
639 d_printf("Usage: net groupmap addmem alias-sid member-sid\n");
643 if (!NT_STATUS_IS_OK(pdb_add_aliasmem(&alias
, &member
))) {
644 d_fprintf(stderr
, "Could not add sid %s to alias %s\n",
652 static int net_groupmap_delmem(int argc
, const char **argv
)
654 DOM_SID alias
, member
;
657 !string_to_sid(&alias
, argv
[0]) ||
658 !string_to_sid(&member
, argv
[1]) ) {
659 d_printf("Usage: net groupmap delmem alias-sid member-sid\n");
663 if (!NT_STATUS_IS_OK(pdb_del_aliasmem(&alias
, &member
))) {
664 d_fprintf(stderr
, "Could not delete sid %s from alias %s\n",
672 static int net_groupmap_listmem(int argc
, const char **argv
)
679 !string_to_sid(&alias
, argv
[0]) ) {
680 d_printf("Usage: net groupmap listmem alias-sid\n");
687 if (!NT_STATUS_IS_OK(pdb_enum_aliasmem(&alias
, &members
, &num
))) {
688 d_fprintf(stderr
, "Could not list members for sid %s\n", argv
[0]);
692 for (i
= 0; i
< num
; i
++) {
693 printf("%s\n", sid_string_tos(&(members
[i
])));
696 TALLOC_FREE(members
);
701 static bool print_alias_memberships(TALLOC_CTX
*mem_ctx
,
702 const DOM_SID
*domain_sid
,
703 const DOM_SID
*member
)
706 size_t i
, num_alias_rids
;
711 if (!NT_STATUS_IS_OK(pdb_enum_alias_memberships(
712 mem_ctx
, domain_sid
, member
, 1,
713 &alias_rids
, &num_alias_rids
))) {
714 d_fprintf(stderr
, "Could not list memberships for sid %s\n",
715 sid_string_tos(member
));
719 for (i
= 0; i
< num_alias_rids
; i
++) {
721 sid_copy(&alias
, domain_sid
);
722 sid_append_rid(&alias
, alias_rids
[i
]);
723 printf("%s\n", sid_string_tos(&alias
));
729 static int net_groupmap_memberships(int argc
, const char **argv
)
732 DOM_SID
*domain_sid
, *builtin_sid
, member
;
735 !string_to_sid(&member
, argv
[0]) ) {
736 d_printf("Usage: net groupmap memberof sid\n");
740 mem_ctx
= talloc_init("net_groupmap_memberships");
741 if (mem_ctx
== NULL
) {
742 d_fprintf(stderr
, "talloc_init failed\n");
746 domain_sid
= get_global_sam_sid();
747 builtin_sid
= string_sid_talloc(mem_ctx
, "S-1-5-32");
748 if ((domain_sid
== NULL
) || (builtin_sid
== NULL
)) {
749 d_fprintf(stderr
, "Could not get domain sid\n");
753 if (!print_alias_memberships(mem_ctx
, domain_sid
, &member
) ||
754 !print_alias_memberships(mem_ctx
, builtin_sid
, &member
))
757 talloc_destroy(mem_ctx
);
762 int net_help_groupmap(int argc
, const char **argv
)
764 d_printf("net groupmap add"\
765 "\n Create a new group mapping\n");
766 d_printf("net groupmap modify"\
767 "\n Update a group mapping\n");
768 d_printf("net groupmap delete"\
769 "\n Remove a group mapping\n");
770 d_printf("net groupmap addmem"\
771 "\n Add a foreign alias member\n");
772 d_printf("net groupmap delmem"\
773 "\n Delete a foreign alias member\n");
774 d_printf("net groupmap listmem"\
775 "\n List foreign group members\n");
776 d_printf("net groupmap memberships"\
777 "\n List foreign group memberships\n");
778 d_printf("net groupmap list"\
779 "\n List current group map\n");
780 d_printf("net groupmap set"\
781 "\n Set group mapping\n");
782 d_printf("net groupmap cleanup"\
783 "\n Remove foreign group mapping entries\n");
789 /***********************************************************
790 migrated functionality from smbgroupedit
791 **********************************************************/
792 int net_groupmap(int argc
, const char **argv
)
794 struct functable func
[] = {
795 {"add", net_groupmap_add
},
796 {"modify", net_groupmap_modify
},
797 {"delete", net_groupmap_delete
},
798 {"set", net_groupmap_set
},
799 {"cleanup", net_groupmap_cleanup
},
800 {"addmem", net_groupmap_addmem
},
801 {"delmem", net_groupmap_delmem
},
802 {"listmem", net_groupmap_listmem
},
803 {"memberships", net_groupmap_memberships
},
804 {"list", net_groupmap_list
},
805 {"help", net_help_groupmap
},
809 /* we shouldn't have silly checks like this */
811 d_fprintf(stderr
, "You must be root to edit group mappings.\n");
816 return net_run_function(argc
, argv
, func
, net_help_groupmap
);
818 return net_help_groupmap( argc
, argv
);