2 * Unix SMB/CIFS implementation.
3 * Local SAM access routines
4 * Copyright (C) Volker Lendecke 2006
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "utils/net.h"
28 static int net_sam_userset(struct net_context *c, int argc, const char **argv,
30 bool (*fn)(struct samu *, const char *,
31 enum pdb_value_state))
33 struct samu *sam_acct = NULL;
35 enum lsa_SidType type;
36 const char *dom, *name;
39 if (argc != 2 || c->display_usage) {
40 d_fprintf(stderr, "usage: net sam set %s <user> <value>\n",
45 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
46 &dom, &name, &sid, &type)) {
47 d_fprintf(stderr, "Could not find name %s\n", argv[0]);
51 if (type != SID_NAME_USER) {
52 d_fprintf(stderr, "%s is a %s, not a user\n", argv[0],
53 sid_type_lookup(type));
57 if ( !(sam_acct = samu_new( NULL )) ) {
58 d_fprintf(stderr, "Internal error\n");
62 if (!pdb_getsampwsid(sam_acct, &sid)) {
63 d_fprintf(stderr, "Loading user %s failed\n", argv[0]);
67 if (!fn(sam_acct, argv[1], PDB_CHANGED)) {
68 d_fprintf(stderr, "Internal error\n");
72 status = pdb_update_sam_account(sam_acct);
73 if (!NT_STATUS_IS_OK(status)) {
74 d_fprintf(stderr, "Updating sam account %s failed with %s\n",
75 argv[0], nt_errstr(status));
79 TALLOC_FREE(sam_acct);
81 d_printf("Updated %s for %s\\%s to %s\n", field, dom, name, argv[1]);
85 static int net_sam_set_fullname(struct net_context *c, int argc,
88 return net_sam_userset(c, argc, argv, "fullname",
92 static int net_sam_set_logonscript(struct net_context *c, int argc,
95 return net_sam_userset(c, argc, argv, "logonscript",
96 pdb_set_logon_script);
99 static int net_sam_set_profilepath(struct net_context *c, int argc,
102 return net_sam_userset(c, argc, argv, "profilepath",
103 pdb_set_profile_path);
106 static int net_sam_set_homedrive(struct net_context *c, int argc,
109 return net_sam_userset(c, argc, argv, "homedrive",
113 static int net_sam_set_homedir(struct net_context *c, int argc,
116 return net_sam_userset(c, argc, argv, "homedir",
120 static int net_sam_set_workstations(struct net_context *c, int argc,
123 return net_sam_userset(c, argc, argv, "workstations",
124 pdb_set_workstations);
131 static int net_sam_set_userflag(struct net_context *c, int argc,
132 const char **argv, const char *field,
135 struct samu *sam_acct = NULL;
137 enum lsa_SidType type;
138 const char *dom, *name;
142 if ((argc != 2) || c->display_usage ||
143 (!strequal(argv[1], "yes") &&
144 !strequal(argv[1], "no"))) {
145 d_fprintf(stderr, "usage: net sam set %s <user> [yes|no]\n",
150 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
151 &dom, &name, &sid, &type)) {
152 d_fprintf(stderr, "Could not find name %s\n", argv[0]);
156 if (type != SID_NAME_USER) {
157 d_fprintf(stderr, "%s is a %s, not a user\n", argv[0],
158 sid_type_lookup(type));
162 if ( !(sam_acct = samu_new( NULL )) ) {
163 d_fprintf(stderr, "Internal error\n");
167 if (!pdb_getsampwsid(sam_acct, &sid)) {
168 d_fprintf(stderr, "Loading user %s failed\n", argv[0]);
172 acct_flags = pdb_get_acct_ctrl(sam_acct);
174 if (strequal(argv[1], "yes")) {
180 pdb_set_acct_ctrl(sam_acct, acct_flags, PDB_CHANGED);
182 status = pdb_update_sam_account(sam_acct);
183 if (!NT_STATUS_IS_OK(status)) {
184 d_fprintf(stderr, "Updating sam account %s failed with %s\n",
185 argv[0], nt_errstr(status));
189 TALLOC_FREE(sam_acct);
191 d_fprintf(stderr, "Updated flag %s for %s\\%s to %s\n", field, dom,
196 static int net_sam_set_disabled(struct net_context *c, int argc,
199 return net_sam_set_userflag(c, argc, argv, "disabled", ACB_DISABLED);
202 static int net_sam_set_pwnotreq(struct net_context *c, int argc,
205 return net_sam_set_userflag(c, argc, argv, "pwnotreq", ACB_PWNOTREQ);
208 static int net_sam_set_autolock(struct net_context *c, int argc,
211 return net_sam_set_userflag(c, argc, argv, "autolock", ACB_AUTOLOCK);
214 static int net_sam_set_pwnoexp(struct net_context *c, int argc,
217 return net_sam_set_userflag(c, argc, argv, "pwnoexp", ACB_PWNOEXP);
221 * Set pass last change time, based on force pass change now
224 static int net_sam_set_pwdmustchangenow(struct net_context *c, int argc,
227 struct samu *sam_acct = NULL;
229 enum lsa_SidType type;
230 const char *dom, *name;
233 if ((argc != 2) || c->display_usage ||
234 (!strequal(argv[1], "yes") &&
235 !strequal(argv[1], "no"))) {
236 d_fprintf(stderr, "usage: net sam set pwdmustchangenow <user> [yes|no]\n");
240 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
241 &dom, &name, &sid, &type)) {
242 d_fprintf(stderr, "Could not find name %s\n", argv[0]);
246 if (type != SID_NAME_USER) {
247 d_fprintf(stderr, "%s is a %s, not a user\n", argv[0],
248 sid_type_lookup(type));
252 if ( !(sam_acct = samu_new( NULL )) ) {
253 d_fprintf(stderr, "Internal error\n");
257 if (!pdb_getsampwsid(sam_acct, &sid)) {
258 d_fprintf(stderr, "Loading user %s failed\n", argv[0]);
262 if (strequal(argv[1], "yes")) {
263 pdb_set_pass_last_set_time(sam_acct, 0, PDB_CHANGED);
265 pdb_set_pass_last_set_time(sam_acct, time(NULL), PDB_CHANGED);
268 status = pdb_update_sam_account(sam_acct);
269 if (!NT_STATUS_IS_OK(status)) {
270 d_fprintf(stderr, "Updating sam account %s failed with %s\n",
271 argv[0], nt_errstr(status));
275 TALLOC_FREE(sam_acct);
277 d_fprintf(stderr, "Updated 'user must change password at next logon' for %s\\%s to %s\n", dom,
284 * Set a user's or a group's comment
287 static int net_sam_set_comment(struct net_context *c, int argc,
292 enum lsa_SidType type;
293 const char *dom, *name;
296 if (argc != 2 || c->display_usage) {
297 d_fprintf(stderr, "usage: net sam set comment <name> "
302 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
303 &dom, &name, &sid, &type)) {
304 d_fprintf(stderr, "Could not find name %s\n", argv[0]);
308 if (type == SID_NAME_USER) {
309 return net_sam_userset(c, argc, argv, "comment",
313 if ((type != SID_NAME_DOM_GRP) && (type != SID_NAME_ALIAS) &&
314 (type != SID_NAME_WKN_GRP)) {
315 d_fprintf(stderr, "%s is a %s, not a group\n", argv[0],
316 sid_type_lookup(type));
320 if (!pdb_getgrsid(&map, sid)) {
321 d_fprintf(stderr, "Could not load group %s\n", argv[0]);
325 fstrcpy(map.comment, argv[1]);
327 status = pdb_update_group_mapping_entry(&map);
329 if (!NT_STATUS_IS_OK(status)) {
330 d_fprintf(stderr, "Updating group mapping entry failed with "
331 "%s\n", nt_errstr(status));
335 d_printf("Updated comment of group %s\\%s to %s\n", dom, name,
341 static int net_sam_set(struct net_context *c, int argc, const char **argv)
343 struct functable func[] = {
348 "Change a user's home directory",
349 "net sam set homedir\n"
350 " Change a user's home directory"
354 net_sam_set_profilepath,
356 "Change a user's profile path",
357 "net sam set profilepath\n"
358 " Change a user's profile path"
364 "Change a users or groups description",
365 "net sam set comment\n"
366 " Change a users or groups description"
370 net_sam_set_fullname,
372 "Change a user's full name",
373 "net sam set fullname\n"
374 " Change a user's full name"
378 net_sam_set_logonscript,
380 "Change a user's logon script",
381 "net sam set logonscript\n"
382 " Change a user's logon script"
386 net_sam_set_homedrive,
388 "Change a user's home drive",
389 "net sam set homedrive\n"
390 " Change a user's home drive"
394 net_sam_set_workstations,
396 "Change a user's allowed workstations",
397 "net sam set workstations\n"
398 " Change a user's allowed workstations"
402 net_sam_set_disabled,
404 "Disable/Enable a user",
405 "net sam set disable\n"
406 " Disable/Enable a user"
410 net_sam_set_pwnotreq,
412 "Disable/Enable the password not required flag",
413 "net sam set pwnotreq\n"
414 " Disable/Enable the password not required flag"
418 net_sam_set_autolock,
420 "Disable/Enable a user's lockout flag",
421 "net sam set autolock\n"
422 " Disable/Enable a user's lockout flag"
428 "Disable/Enable whether a user's pw does not expire",
429 "net sam set pwnoexp\n"
430 " Disable/Enable whether a user's pw does not expire"
434 net_sam_set_pwdmustchangenow,
436 "Force users password must change at next logon",
437 "net sam set pwdmustchangenow\n"
438 " Force users password must change at next logon"
440 {NULL, NULL, 0, NULL, NULL}
443 return net_run_function(c, argc, argv, "net sam set", func);
447 * Manage account policies
450 static int net_sam_policy_set(struct net_context *c, int argc, const char **argv)
452 const char *account_policy = NULL;
454 uint32 old_value = 0;
458 if (argc != 2 || c->display_usage) {
459 d_fprintf(stderr, "usage: net sam policy set "
460 "\"<account policy>\" <value> \n");
464 account_policy = argv[0];
465 field = account_policy_name_to_fieldnum(account_policy);
467 if (strequal(argv[1], "forever") || strequal(argv[1], "never")
468 || strequal(argv[1], "off")) {
472 value = strtoul(argv[1], &endptr, 10);
474 if ((endptr == argv[1]) || (endptr[0] != '\0')) {
475 d_printf("Unable to set policy \"%s\"! Invalid value "
477 account_policy, argv[1]);
486 account_policy_names_list(&names, &count);
487 d_fprintf(stderr, "No account policy \"%s\"!\n\n", argv[0]);
488 d_fprintf(stderr, "Valid account policies are:\n");
490 for (i=0; i<count; i++) {
491 d_fprintf(stderr, "%s\n", names[i]);
498 if (!pdb_get_account_policy(field, &old_value)) {
499 d_fprintf(stderr, "Valid account policy, but unable to fetch "
502 d_printf("Account policy \"%s\" value was: %d\n", account_policy,
506 if (!pdb_set_account_policy(field, value)) {
507 d_fprintf(stderr, "Valid account policy, but unable to "
511 d_printf("Account policy \"%s\" value is now: %d\n", account_policy,
518 static int net_sam_policy_show(struct net_context *c, int argc, const char **argv)
520 const char *account_policy = NULL;
524 if (argc != 1 || c->display_usage) {
525 d_fprintf(stderr, "usage: net sam policy show"
526 " \"<account policy>\" \n");
530 account_policy = argv[0];
531 field = account_policy_name_to_fieldnum(account_policy);
537 account_policy_names_list(&names, &count);
538 d_fprintf(stderr, "No account policy by that name!\n");
540 d_fprintf(stderr, "Valid account policies "
542 for (i=0; i<count; i++) {
543 d_fprintf(stderr, "%s\n", names[i]);
550 if (!pdb_get_account_policy(field, &old_value)) {
551 fprintf(stderr, "Valid account policy, but unable to "
556 printf("Account policy \"%s\" description: %s\n",
557 account_policy, account_policy_get_desc(field));
558 printf("Account policy \"%s\" value is: %d\n", account_policy,
563 static int net_sam_policy_list(struct net_context *c, int argc, const char **argv)
569 if (c->display_usage) {
571 "net sam policy list\n"
572 " List account policies\n");
576 account_policy_names_list(&names, &count);
578 d_fprintf(stderr, "Valid account policies "
580 for (i = 0; i < count ; i++) {
581 d_fprintf(stderr, "%s\n", names[i]);
588 static int net_sam_policy(struct net_context *c, int argc, const char **argv)
590 struct functable func[] = {
595 "List account policies",
596 "net sam policy list\n"
597 " List account policies"
603 "Show account policies",
604 "net sam policy show\n"
605 " Show account policies"
611 "Change account policies",
612 "net sam policy set\n"
613 " Change account policies"
615 {NULL, NULL, 0, NULL, NULL}
618 return net_run_function(c, argc, argv, "net sam policy", func);
621 extern PRIVS privs[];
623 static int net_sam_rights_list(struct net_context *c, int argc,
628 if (argc > 1 || c->display_usage) {
629 d_fprintf(stderr, "usage: net sam rights list [privilege name]\n");
635 int num = count_all_privileges();
637 for (i=0; i<num; i++) {
638 d_printf("%s\n", privs[i].name);
643 if (se_priv_from_name(argv[0], &mask)) {
648 status = privilege_enum_sids(&mask, talloc_tos(),
650 if (!NT_STATUS_IS_OK(status)) {
651 d_fprintf(stderr, "Could not list rights: %s\n",
656 for (i=0; i<num_sids; i++) {
657 const char *dom, *name;
658 enum lsa_SidType type;
660 if (lookup_sid(talloc_tos(), &sids[i], &dom, &name,
662 d_printf("%s\\%s\n", dom, name);
665 d_printf("%s\n", sid_string_tos(&sids[i]));
674 static int net_sam_rights_grant(struct net_context *c, int argc,
678 enum lsa_SidType type;
679 const char *dom, *name;
682 if (argc != 2 || c->display_usage) {
683 d_fprintf(stderr, "usage: net sam rights grant <name> "
688 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
689 &dom, &name, &sid, &type)) {
690 d_fprintf(stderr, "Could not find name %s\n", argv[0]);
694 if (!se_priv_from_name(argv[1], &mask)) {
695 d_fprintf(stderr, "%s unknown\n", argv[1]);
699 if (!grant_privilege(&sid, &mask)) {
700 d_fprintf(stderr, "Could not grant privilege\n");
704 d_printf("Granted %s to %s\\%s\n", argv[1], dom, name);
708 static int net_sam_rights_revoke(struct net_context *c, int argc, const char **argv)
711 enum lsa_SidType type;
712 const char *dom, *name;
715 if (argc != 2 || c->display_usage) {
716 d_fprintf(stderr, "usage: net sam rights revoke <name> "
721 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
722 &dom, &name, &sid, &type)) {
723 d_fprintf(stderr, "Could not find name %s\n", argv[0]);
727 if (!se_priv_from_name(argv[1], &mask)) {
728 d_fprintf(stderr, "%s unknown\n", argv[1]);
732 if (!revoke_privilege(&sid, &mask)) {
733 d_fprintf(stderr, "Could not revoke privilege\n");
737 d_printf("Revoked %s from %s\\%s\n", argv[1], dom, name);
741 static int net_sam_rights(struct net_context *c, int argc, const char **argv)
743 struct functable func[] = {
748 "List possible user rights",
749 "net sam rights list\n"
750 " List possible user rights"
754 net_sam_rights_grant,
757 "net sam rights grant\n"
762 net_sam_rights_revoke,
765 "net sam rights revoke\n"
768 {NULL, NULL, 0, NULL, NULL}
770 return net_run_function(c, argc, argv, "net sam rights", func);
774 * Map a unix group to a domain group
777 static NTSTATUS map_unix_group(const struct group *grp, GROUP_MAP *pmap)
781 const char *grpname, *dom, *name;
784 if (pdb_getgrgid(&map, grp->gr_gid)) {
785 return NT_STATUS_GROUP_EXISTS;
788 map.gid = grp->gr_gid;
789 grpname = grp->gr_name;
791 if (lookup_name(talloc_tos(), grpname, LOOKUP_NAME_LOCAL,
792 &dom, &name, NULL, NULL)) {
794 const char *tmp = talloc_asprintf(
795 talloc_tos(), "Unix Group %s", grp->gr_name);
797 DEBUG(5, ("%s exists as %s\\%s, retrying as \"%s\"\n",
798 grpname, dom, name, tmp));
802 if (lookup_name(talloc_tos(), grpname, LOOKUP_NAME_LOCAL,
803 NULL, NULL, NULL, NULL)) {
804 DEBUG(3, ("\"%s\" exists, can't map it\n", grp->gr_name));
805 return NT_STATUS_GROUP_EXISTS;
808 fstrcpy(map.nt_name, grpname);
810 if (pdb_rid_algorithm()) {
811 rid = algorithmic_pdb_gid_to_group_rid( grp->gr_gid );
813 if (!pdb_new_rid(&rid)) {
814 DEBUG(3, ("Could not get a new RID for %s\n",
816 return NT_STATUS_ACCESS_DENIED;
820 sid_compose(&map.sid, get_global_sam_sid(), rid);
821 map.sid_name_use = SID_NAME_DOM_GRP;
822 fstrcpy(map.comment, talloc_asprintf(talloc_tos(), "Unix Group %s",
825 status = pdb_add_group_mapping_entry(&map);
826 if (NT_STATUS_IS_OK(status)) {
832 static int net_sam_mapunixgroup(struct net_context *c, int argc, const char **argv)
838 if (argc != 1 || c->display_usage) {
839 d_fprintf(stderr, "usage: net sam mapunixgroup <name>\n");
843 grp = getgrnam(argv[0]);
845 d_fprintf(stderr, "Could not find group %s\n", argv[0]);
849 status = map_unix_group(grp, &map);
851 if (!NT_STATUS_IS_OK(status)) {
852 d_fprintf(stderr, "Mapping group %s failed with %s\n",
853 argv[0], nt_errstr(status));
857 d_printf("Mapped unix group %s to SID %s\n", argv[0],
858 sid_string_tos(&map.sid));
864 * Remove a group mapping
867 static NTSTATUS unmap_unix_group(const struct group *grp, GROUP_MAP *pmap)
874 map.gid = grp->gr_gid;
875 grpname = grp->gr_name;
877 if (!lookup_name(talloc_tos(), grpname, LOOKUP_NAME_LOCAL,
878 NULL, NULL, NULL, NULL)) {
879 DEBUG(3, ("\"%s\" does not exist, can't unmap it\n", grp->gr_name));
880 return NT_STATUS_NO_SUCH_GROUP;
883 fstrcpy(map.nt_name, grpname);
885 if (!pdb_gid_to_sid(map.gid, &dom_sid)) {
886 return NT_STATUS_UNSUCCESSFUL;
889 status = pdb_delete_group_mapping_entry(dom_sid);
894 static int net_sam_unmapunixgroup(struct net_context *c, int argc, const char **argv)
900 if (argc != 1 || c->display_usage) {
901 d_fprintf(stderr, "usage: net sam unmapunixgroup <name>\n");
905 grp = getgrnam(argv[0]);
907 d_fprintf(stderr, "Could not find mapping for group %s.\n", argv[0]);
911 status = unmap_unix_group(grp, &map);
913 if (!NT_STATUS_IS_OK(status)) {
914 d_fprintf(stderr, "Unmapping group %s failed with %s.\n",
915 argv[0], nt_errstr(status));
919 d_printf("Unmapped unix group %s.\n", argv[0]);
925 * Create a domain group
928 static int net_sam_createdomaingroup(struct net_context *c, int argc,
934 if (argc != 1 || c->display_usage) {
935 d_fprintf(stderr, "usage: net sam createdomaingroup <name>\n");
939 status = pdb_create_dom_group(talloc_tos(), argv[0], &rid);
941 if (!NT_STATUS_IS_OK(status)) {
942 d_fprintf(stderr, "Creating %s failed with %s\n",
943 argv[0], nt_errstr(status));
947 d_printf("Created domain group %s with RID %d\n", argv[0], rid);
953 * Create a local group
956 static int net_sam_createlocalgroup(struct net_context *c, int argc, const char **argv)
961 if (argc != 1 || c->display_usage) {
962 d_fprintf(stderr, "usage: net sam createlocalgroup <name>\n");
966 if (!winbind_ping()) {
967 d_fprintf(stderr, "winbind seems not to run. createlocalgroup "
968 "only works when winbind runs.\n");
972 status = pdb_create_alias(argv[0], &rid);
974 if (!NT_STATUS_IS_OK(status)) {
975 d_fprintf(stderr, "Creating %s failed with %s\n",
976 argv[0], nt_errstr(status));
980 d_printf("Created local group %s with RID %d\n", argv[0], rid);
986 * Delete a local group
989 static int net_sam_deletelocalgroup(struct net_context *c, int argc, const char **argv)
992 enum lsa_SidType type;
993 const char *dom, *name;
996 if (argc != 1 || c->display_usage) {
997 d_fprintf(stderr, "usage: net sam deletelocalgroup <name>\n");
1001 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
1002 &dom, &name, &sid, &type)) {
1003 d_fprintf(stderr, "Could not find %s.\n", argv[0]);
1007 if (type != SID_NAME_ALIAS) {
1008 d_fprintf(stderr, "%s is a %s, not a local group.\n", argv[0],
1009 sid_type_lookup(type));
1013 status = pdb_delete_alias(&sid);
1015 if (!NT_STATUS_IS_OK(status)) {
1016 d_fprintf(stderr, "Deleting local group %s failed with %s\n",
1017 argv[0], nt_errstr(status));
1021 d_printf("Deleted local group %s.\n", argv[0]);
1027 * Create a builtin group
1030 static int net_sam_createbuiltingroup(struct net_context *c, int argc, const char **argv)
1034 enum lsa_SidType type;
1038 if (argc != 1 || c->display_usage) {
1039 d_fprintf(stderr, "usage: net sam createbuiltingroup <name>\n");
1043 if (!winbind_ping()) {
1044 d_fprintf(stderr, "winbind seems not to run. createbuiltingroup "
1045 "only works when winbind runs.\n");
1049 /* validate the name and get the group */
1051 fstrcpy( groupname, "BUILTIN\\" );
1052 fstrcat( groupname, argv[0] );
1054 if ( !lookup_name(talloc_tos(), groupname, LOOKUP_NAME_ALL, NULL,
1055 NULL, &sid, &type)) {
1056 d_fprintf(stderr, "%s is not a BUILTIN group\n", argv[0]);
1060 if ( !sid_peek_rid( &sid, &rid ) ) {
1061 d_fprintf(stderr, "Failed to get RID for %s\n", argv[0]);
1065 status = pdb_create_builtin_alias( rid );
1067 if (!NT_STATUS_IS_OK(status)) {
1068 d_fprintf(stderr, "Creating %s failed with %s\n",
1069 argv[0], nt_errstr(status));
1073 d_printf("Created BUILTIN group %s with RID %d\n", argv[0], rid);
1079 * Add a group member
1082 static int net_sam_addmem(struct net_context *c, int argc, const char **argv)
1084 const char *groupdomain, *groupname, *memberdomain, *membername;
1085 DOM_SID group, member;
1086 enum lsa_SidType grouptype, membertype;
1089 if (argc != 2 || c->display_usage) {
1090 d_fprintf(stderr, "usage: net sam addmem <group> <member>\n");
1094 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
1095 &groupdomain, &groupname, &group, &grouptype)) {
1096 d_fprintf(stderr, "Could not find group %s\n", argv[0]);
1100 /* check to see if the member to be added is a name or a SID */
1102 if (!lookup_name(talloc_tos(), argv[1], LOOKUP_NAME_LOCAL,
1103 &memberdomain, &membername, &member, &membertype))
1105 /* try it as a SID */
1107 if ( !string_to_sid( &member, argv[1] ) ) {
1108 d_fprintf(stderr, "Could not find member %s\n", argv[1]);
1112 if ( !lookup_sid(talloc_tos(), &member, &memberdomain,
1113 &membername, &membertype) )
1115 d_fprintf(stderr, "Could not resolve SID %s\n", argv[1]);
1120 if ((grouptype == SID_NAME_ALIAS) || (grouptype == SID_NAME_WKN_GRP)) {
1121 if ((membertype != SID_NAME_USER) &&
1122 (membertype != SID_NAME_DOM_GRP)) {
1123 d_fprintf(stderr, "%s is a local group, only users "
1124 "and domain groups can be added.\n"
1125 "%s is a %s\n", argv[0], argv[1],
1126 sid_type_lookup(membertype));
1129 status = pdb_add_aliasmem(&group, &member);
1131 if (!NT_STATUS_IS_OK(status)) {
1132 d_fprintf(stderr, "Adding local group member failed "
1133 "with %s\n", nt_errstr(status));
1137 d_fprintf(stderr, "Can only add members to local groups so "
1138 "far, %s is a %s\n", argv[0],
1139 sid_type_lookup(grouptype));
1143 d_printf("Added %s\\%s to %s\\%s\n", memberdomain, membername,
1144 groupdomain, groupname);
1150 * Delete a group member
1153 static int net_sam_delmem(struct net_context *c, int argc, const char **argv)
1155 const char *groupdomain, *groupname;
1156 const char *memberdomain = NULL;
1157 const char *membername = NULL;
1158 DOM_SID group, member;
1159 enum lsa_SidType grouptype;
1162 if (argc != 2 || c->display_usage) {
1163 d_fprintf(stderr, "usage: net sam delmem <group> <member>\n");
1167 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
1168 &groupdomain, &groupname, &group, &grouptype)) {
1169 d_fprintf(stderr, "Could not find group %s\n", argv[0]);
1173 if (!lookup_name(talloc_tos(), argv[1], LOOKUP_NAME_LOCAL,
1174 &memberdomain, &membername, &member, NULL)) {
1175 if (!string_to_sid(&member, argv[1])) {
1176 d_fprintf(stderr, "Could not find member %s\n",
1182 if ((grouptype == SID_NAME_ALIAS) ||
1183 (grouptype == SID_NAME_WKN_GRP)) {
1184 status = pdb_del_aliasmem(&group, &member);
1186 if (!NT_STATUS_IS_OK(status)) {
1187 d_fprintf(stderr, "Deleting local group member failed "
1188 "with %s\n", nt_errstr(status));
1192 d_fprintf(stderr, "Can only delete members from local groups "
1193 "so far, %s is a %s\n", argv[0],
1194 sid_type_lookup(grouptype));
1198 if (membername != NULL) {
1199 d_printf("Deleted %s\\%s from %s\\%s\n",
1200 memberdomain, membername, groupdomain, groupname);
1202 d_printf("Deleted %s from %s\\%s\n",
1203 sid_string_tos(&member), groupdomain, groupname);
1210 * List group members
1213 static int net_sam_listmem(struct net_context *c, int argc, const char **argv)
1215 const char *groupdomain, *groupname;
1217 enum lsa_SidType grouptype;
1220 if (argc != 1 || c->display_usage) {
1221 d_fprintf(stderr, "usage: net sam listmem <group>\n");
1225 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
1226 &groupdomain, &groupname, &group, &grouptype)) {
1227 d_fprintf(stderr, "Could not find group %s\n", argv[0]);
1231 if ((grouptype == SID_NAME_ALIAS) ||
1232 (grouptype == SID_NAME_WKN_GRP)) {
1233 DOM_SID *members = NULL;
1234 size_t i, num_members = 0;
1236 status = pdb_enum_aliasmem(&group, talloc_tos(), &members,
1239 if (!NT_STATUS_IS_OK(status)) {
1240 d_fprintf(stderr, "Listing group members failed with "
1241 "%s\n", nt_errstr(status));
1245 d_printf("%s\\%s has %u members\n", groupdomain, groupname,
1246 (unsigned int)num_members);
1247 for (i=0; i<num_members; i++) {
1248 const char *dom, *name;
1249 if (lookup_sid(talloc_tos(), &members[i],
1250 &dom, &name, NULL)) {
1251 d_printf(" %s\\%s\n", dom, name);
1253 d_printf(" %s\n", sid_string_tos(&members[i]));
1257 TALLOC_FREE(members);
1259 d_fprintf(stderr, "Can only list local group members so far.\n"
1260 "%s is a %s\n", argv[0], sid_type_lookup(grouptype));
1270 static int net_sam_do_list(struct net_context *c, int argc, const char **argv,
1271 struct pdb_search *search, const char *what)
1273 bool verbose = (argc == 1);
1275 if ((argc > 1) || c->display_usage ||
1276 ((argc == 1) && !strequal(argv[0], "verbose"))) {
1277 d_fprintf(stderr, "usage: net sam list %s [verbose]\n", what);
1281 if (search == NULL) {
1282 d_fprintf(stderr, "Could not start search\n");
1287 struct samr_displayentry entry;
1288 if (!search->next_entry(search, &entry)) {
1292 d_printf("%s:%d:%s\n",
1297 d_printf("%s\n", entry.account_name);
1301 TALLOC_FREE(search);
1305 static int net_sam_list_users(struct net_context *c, int argc,
1308 return net_sam_do_list(c, argc, argv,
1309 pdb_search_users(talloc_tos(), ACB_NORMAL),
1313 static int net_sam_list_groups(struct net_context *c, int argc,
1316 return net_sam_do_list(c, argc, argv, pdb_search_groups(talloc_tos()),
1320 static int net_sam_list_localgroups(struct net_context *c, int argc,
1323 return net_sam_do_list(c, argc, argv,
1324 pdb_search_aliases(talloc_tos(),
1325 get_global_sam_sid()),
1329 static int net_sam_list_builtin(struct net_context *c, int argc,
1332 return net_sam_do_list(c, argc, argv,
1333 pdb_search_aliases(talloc_tos(),
1334 &global_sid_Builtin),
1338 static int net_sam_list_workstations(struct net_context *c, int argc,
1341 return net_sam_do_list(c, argc, argv,
1342 pdb_search_users(talloc_tos(), ACB_WSTRUST),
1350 static int net_sam_list(struct net_context *c, int argc, const char **argv)
1352 struct functable func[] = {
1356 NET_TRANSPORT_LOCAL,
1358 "net sam list users\n"
1363 net_sam_list_groups,
1364 NET_TRANSPORT_LOCAL,
1366 "net sam list groups\n"
1371 net_sam_list_localgroups,
1372 NET_TRANSPORT_LOCAL,
1373 "List SAM local groups",
1374 "net sam list localgroups\n"
1375 " List SAM local groups"
1379 net_sam_list_builtin,
1380 NET_TRANSPORT_LOCAL,
1381 "List builtin groups",
1382 "net sam list builtin\n"
1383 " List builtin groups"
1387 net_sam_list_workstations,
1388 NET_TRANSPORT_LOCAL,
1389 "List domain member workstations",
1390 "net sam list workstations\n"
1391 " List domain member workstations"
1393 {NULL, NULL, 0, NULL, NULL}
1396 return net_run_function(c, argc, argv, "net sam list", func);
1400 * Show details of SAM entries
1403 static int net_sam_show(struct net_context *c, int argc, const char **argv)
1406 enum lsa_SidType type;
1407 const char *dom, *name;
1409 if (argc != 1 || c->display_usage) {
1410 d_fprintf(stderr, "usage: net sam show <name>\n");
1414 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
1415 &dom, &name, &sid, &type)) {
1416 d_fprintf(stderr, "Could not find name %s\n", argv[0]);
1420 d_printf("%s\\%s is a %s with SID %s\n", dom, name,
1421 sid_type_lookup(type), sid_string_tos(&sid));
1429 * Init an LDAP tree with default users and Groups
1430 * if ldapsam:editposix is enabled
1433 static int net_sam_provision(struct net_context *c, int argc, const char **argv)
1437 char *ldap_uri = NULL;
1439 struct smbldap_state *ls;
1442 gid_t domusers_gid = -1;
1443 gid_t domadmins_gid = -1;
1444 struct samu *samuser;
1447 if (c->display_usage) {
1449 "net sam provision\n"
1450 " Init an LDAP tree with default users/groups\n");
1454 tc = talloc_new(NULL);
1456 d_fprintf(stderr, "Out of Memory!\n");
1460 if ((ldap_bk = talloc_strdup(tc, lp_passdb_backend())) == NULL) {
1461 d_fprintf(stderr, "talloc failed\n");
1465 p = strchr(ldap_bk, ':');
1468 ldap_uri = talloc_strdup(tc, p+1);
1469 trim_char(ldap_uri, ' ', ' ');
1472 trim_char(ldap_bk, ' ', ' ');
1474 if (strcmp(ldap_bk, "ldapsam") != 0) {
1475 d_fprintf(stderr, "Provisioning works only with ldapsam backend\n");
1479 if (!lp_parm_bool(-1, "ldapsam", "trusted", false) ||
1480 !lp_parm_bool(-1, "ldapsam", "editposix", false)) {
1482 d_fprintf(stderr, "Provisioning works only if ldapsam:trusted"
1483 " and ldapsam:editposix are enabled.\n");
1487 if (!winbind_ping()) {
1488 d_fprintf(stderr, "winbind seems not to run. Provisioning "
1489 "LDAP only works when winbind runs.\n");
1493 if (!NT_STATUS_IS_OK(smbldap_init(tc, NULL, ldap_uri, &ls))) {
1494 d_fprintf(stderr, "Unable to connect to the LDAP server.\n");
1498 d_printf("Checking for Domain Users group.\n");
1500 sid_compose(&gsid, get_global_sam_sid(), DOMAIN_GROUP_RID_USERS);
1502 if (!pdb_getgrsid(&gmap, gsid)) {
1503 LDAPMod **mods = NULL;
1511 d_printf("Adding the Domain Users group.\n");
1513 /* lets allocate a new groupid for this group */
1514 if (!winbind_allocate_gid(&domusers_gid)) {
1515 d_fprintf(stderr, "Unable to allocate a new gid to create Domain Users group!\n");
1519 uname = talloc_strdup(tc, "domusers");
1520 wname = talloc_strdup(tc, "Domain Users");
1521 dn = talloc_asprintf(tc, "cn=%s,%s", "domusers", lp_ldap_group_suffix());
1522 gidstr = talloc_asprintf(tc, "%u", (unsigned int)domusers_gid);
1523 gtype = talloc_asprintf(tc, "%d", SID_NAME_DOM_GRP);
1525 if (!uname || !wname || !dn || !gidstr || !gtype) {
1526 d_fprintf(stderr, "Out of Memory!\n");
1530 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXGROUP);
1531 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_GROUPMAP);
1532 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", uname);
1533 smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", wname);
1534 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
1535 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSid",
1536 sid_string_talloc(tc, &gsid));
1537 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaGroupType", gtype);
1539 talloc_autofree_ldapmod(tc, mods);
1541 rc = smbldap_add(ls, dn, mods);
1543 if (rc != LDAP_SUCCESS) {
1544 d_fprintf(stderr, "Failed to add Domain Users group to ldap directory\n");
1547 domusers_gid = gmap.gid;
1548 d_printf("found!\n");
1553 d_printf("Checking for Domain Admins group.\n");
1555 sid_compose(&gsid, get_global_sam_sid(), DOMAIN_GROUP_RID_ADMINS);
1557 if (!pdb_getgrsid(&gmap, gsid)) {
1558 LDAPMod **mods = NULL;
1566 d_printf("Adding the Domain Admins group.\n");
1568 /* lets allocate a new groupid for this group */
1569 if (!winbind_allocate_gid(&domadmins_gid)) {
1570 d_fprintf(stderr, "Unable to allocate a new gid to create Domain Admins group!\n");
1574 uname = talloc_strdup(tc, "domadmins");
1575 wname = talloc_strdup(tc, "Domain Admins");
1576 dn = talloc_asprintf(tc, "cn=%s,%s", "domadmins", lp_ldap_group_suffix());
1577 gidstr = talloc_asprintf(tc, "%u", (unsigned int)domadmins_gid);
1578 gtype = talloc_asprintf(tc, "%d", SID_NAME_DOM_GRP);
1580 if (!uname || !wname || !dn || !gidstr || !gtype) {
1581 d_fprintf(stderr, "Out of Memory!\n");
1585 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXGROUP);
1586 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_GROUPMAP);
1587 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", uname);
1588 smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", wname);
1589 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
1590 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSid",
1591 sid_string_talloc(tc, &gsid));
1592 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaGroupType", gtype);
1594 talloc_autofree_ldapmod(tc, mods);
1596 rc = smbldap_add(ls, dn, mods);
1598 if (rc != LDAP_SUCCESS) {
1599 d_fprintf(stderr, "Failed to add Domain Admins group to ldap directory\n");
1602 domadmins_gid = gmap.gid;
1603 d_printf("found!\n");
1608 d_printf("Check for Administrator account.\n");
1610 samuser = samu_new(tc);
1612 d_fprintf(stderr, "Out of Memory!\n");
1616 if (!pdb_getsampwnam(samuser, "Administrator")) {
1617 LDAPMod **mods = NULL;
1628 d_printf("Adding the Administrator user.\n");
1630 if (domadmins_gid == -1) {
1631 d_fprintf(stderr, "Can't create Administrator user, Domain Admins group not available!\n");
1634 if (!winbind_allocate_uid(&uid)) {
1635 d_fprintf(stderr, "Unable to allocate a new uid to create the Administrator user!\n");
1638 name = talloc_strdup(tc, "Administrator");
1639 dn = talloc_asprintf(tc, "uid=Administrator,%s", lp_ldap_user_suffix());
1640 uidstr = talloc_asprintf(tc, "%u", (unsigned int)uid);
1641 gidstr = talloc_asprintf(tc, "%u", (unsigned int)domadmins_gid);
1642 dir = talloc_sub_specified(tc, lp_template_homedir(),
1644 get_global_sam_name(),
1645 uid, domadmins_gid);
1646 shell = talloc_sub_specified(tc, lp_template_shell(),
1648 get_global_sam_name(),
1649 uid, domadmins_gid);
1651 if (!name || !dn || !uidstr || !gidstr || !dir || !shell) {
1652 d_fprintf(stderr, "Out of Memory!\n");
1656 sid_compose(&sid, get_global_sam_sid(), DOMAIN_USER_RID_ADMIN);
1658 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_ACCOUNT);
1659 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXACCOUNT);
1660 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_SAMBASAMACCOUNT);
1661 smbldap_set_mod(&mods, LDAP_MOD_ADD, "uid", name);
1662 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", name);
1663 smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", name);
1664 smbldap_set_mod(&mods, LDAP_MOD_ADD, "uidNumber", uidstr);
1665 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
1666 smbldap_set_mod(&mods, LDAP_MOD_ADD, "homeDirectory", dir);
1667 smbldap_set_mod(&mods, LDAP_MOD_ADD, "loginShell", shell);
1668 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSID",
1669 sid_string_talloc(tc, &sid));
1670 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaAcctFlags",
1671 pdb_encode_acct_ctrl(ACB_NORMAL|ACB_DISABLED,
1672 NEW_PW_FORMAT_SPACE_PADDED_LEN));
1674 talloc_autofree_ldapmod(tc, mods);
1676 rc = smbldap_add(ls, dn, mods);
1678 if (rc != LDAP_SUCCESS) {
1679 d_fprintf(stderr, "Failed to add Administrator user to ldap directory\n");
1682 d_printf("found!\n");
1685 d_printf("Checking for Guest user.\n");
1687 samuser = samu_new(tc);
1689 d_fprintf(stderr, "Out of Memory!\n");
1693 if (!pdb_getsampwnam(samuser, lp_guestaccount())) {
1694 LDAPMod **mods = NULL;
1701 d_printf("Adding the Guest user.\n");
1703 pwd = getpwnam_alloc(tc, lp_guestaccount());
1706 if (domusers_gid == -1) {
1707 d_fprintf(stderr, "Can't create Guest user, Domain Users group not available!\n");
1710 if ((pwd = talloc(tc, struct passwd)) == NULL) {
1711 d_fprintf(stderr, "talloc failed\n");
1714 pwd->pw_name = talloc_strdup(pwd, lp_guestaccount());
1715 if (!winbind_allocate_uid(&(pwd->pw_uid))) {
1716 d_fprintf(stderr, "Unable to allocate a new uid to create the Guest user!\n");
1719 pwd->pw_gid = domusers_gid;
1720 pwd->pw_dir = talloc_strdup(tc, "/");
1721 pwd->pw_shell = talloc_strdup(tc, "/bin/false");
1722 if (!pwd->pw_dir || !pwd->pw_shell) {
1723 d_fprintf(stderr, "Out of Memory!\n");
1728 sid_compose(&sid, get_global_sam_sid(), DOMAIN_USER_RID_GUEST);
1730 dn = talloc_asprintf(tc, "uid=%s,%s", pwd->pw_name, lp_ldap_user_suffix ());
1731 uidstr = talloc_asprintf(tc, "%u", (unsigned int)pwd->pw_uid);
1732 gidstr = talloc_asprintf(tc, "%u", (unsigned int)pwd->pw_gid);
1733 if (!dn || !uidstr || !gidstr) {
1734 d_fprintf(stderr, "Out of Memory!\n");
1738 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_ACCOUNT);
1739 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXACCOUNT);
1740 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_SAMBASAMACCOUNT);
1741 smbldap_set_mod(&mods, LDAP_MOD_ADD, "uid", pwd->pw_name);
1742 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", pwd->pw_name);
1743 smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", pwd->pw_name);
1744 smbldap_set_mod(&mods, LDAP_MOD_ADD, "uidNumber", uidstr);
1745 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
1746 if ((pwd->pw_dir != NULL) && (pwd->pw_dir[0] != '\0')) {
1747 smbldap_set_mod(&mods, LDAP_MOD_ADD, "homeDirectory", pwd->pw_dir);
1749 if ((pwd->pw_shell != NULL) && (pwd->pw_shell[0] != '\0')) {
1750 smbldap_set_mod(&mods, LDAP_MOD_ADD, "loginShell", pwd->pw_shell);
1752 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSID",
1753 sid_string_talloc(tc, &sid));
1754 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaAcctFlags",
1755 pdb_encode_acct_ctrl(ACB_NORMAL|ACB_DISABLED,
1756 NEW_PW_FORMAT_SPACE_PADDED_LEN));
1758 talloc_autofree_ldapmod(tc, mods);
1760 rc = smbldap_add(ls, dn, mods);
1762 if (rc != LDAP_SUCCESS) {
1763 d_fprintf(stderr, "Failed to add Guest user to ldap directory\n");
1766 d_printf("found!\n");
1769 d_printf("Checking Guest's group.\n");
1771 pwd = getpwnam_alloc(talloc_autofree_context(), lp_guestaccount());
1773 d_fprintf(stderr, "Failed to find just created Guest account!\n"
1774 " Is nss properly configured?!\n");
1778 if (pwd->pw_gid == domusers_gid) {
1779 d_printf("found!\n");
1783 if (!pdb_getgrgid(&gmap, pwd->pw_gid)) {
1784 LDAPMod **mods = NULL;
1792 d_printf("Adding the Domain Guests group.\n");
1794 uname = talloc_strdup(tc, "domguests");
1795 wname = talloc_strdup(tc, "Domain Guests");
1796 dn = talloc_asprintf(tc, "cn=%s,%s", "domguests", lp_ldap_group_suffix());
1797 gidstr = talloc_asprintf(tc, "%u", (unsigned int)pwd->pw_gid);
1798 gtype = talloc_asprintf(tc, "%d", SID_NAME_DOM_GRP);
1800 if (!uname || !wname || !dn || !gidstr || !gtype) {
1801 d_fprintf(stderr, "Out of Memory!\n");
1805 sid_compose(&gsid, get_global_sam_sid(), DOMAIN_GROUP_RID_GUESTS);
1807 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXGROUP);
1808 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_GROUPMAP);
1809 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", uname);
1810 smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", wname);
1811 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
1812 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSid",
1813 sid_string_talloc(tc, &gsid));
1814 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaGroupType", gtype);
1816 talloc_autofree_ldapmod(tc, mods);
1818 rc = smbldap_add(ls, dn, mods);
1820 if (rc != LDAP_SUCCESS) {
1821 d_fprintf(stderr, "Failed to add Domain Guests group to ldap directory\n");
1824 d_printf("found!\n");
1839 /***********************************************************
1840 migrated functionality from smbgroupedit
1841 **********************************************************/
1842 int net_sam(struct net_context *c, int argc, const char **argv)
1844 struct functable func[] = {
1846 "createbuiltingroup",
1847 net_sam_createbuiltingroup,
1848 NET_TRANSPORT_LOCAL,
1849 "Create a new BUILTIN group",
1850 "net sam createbuiltingroup\n"
1851 " Create a new BUILTIN group"
1855 net_sam_createlocalgroup,
1856 NET_TRANSPORT_LOCAL,
1857 "Create a new local group",
1858 "net sam createlocalgroup\n"
1859 " Create a new local group"
1862 "createdomaingroup",
1863 net_sam_createdomaingroup,
1864 NET_TRANSPORT_LOCAL,
1865 "Create a new group",
1866 "net sam createdomaingroup\n"
1867 " Create a new group"
1871 net_sam_deletelocalgroup,
1872 NET_TRANSPORT_LOCAL,
1873 "Delete an existing local group",
1874 "net sam deletelocalgroup\n"
1875 " Delete an existing local group"
1879 net_sam_mapunixgroup,
1880 NET_TRANSPORT_LOCAL,
1881 "Map a unix group to a domain group",
1882 "net sam mapunixgroup\n"
1883 " Map a unix group to a domain group"
1887 net_sam_unmapunixgroup,
1888 NET_TRANSPORT_LOCAL,
1889 "Remove a group mapping of an unix group to a domain "
1891 "net sam unmapunixgroup\n"
1892 " Remove a group mapping of an unix group to a "
1898 NET_TRANSPORT_LOCAL,
1899 "Add a member to a group",
1901 " Add a member to a group"
1906 NET_TRANSPORT_LOCAL,
1907 "Delete a member from a group",
1909 " Delete a member from a group"
1914 NET_TRANSPORT_LOCAL,
1915 "List group members",
1917 " List group members"
1922 NET_TRANSPORT_LOCAL,
1923 "List users, groups and local groups",
1925 " List users, groups and local groups"
1930 NET_TRANSPORT_LOCAL,
1931 "Show details of a SAM entry",
1933 " Show details of a SAM entry"
1938 NET_TRANSPORT_LOCAL,
1939 "Set details of a SAM account",
1941 " Set details of a SAM account"
1946 NET_TRANSPORT_LOCAL,
1947 "Set account policies",
1949 " Set account policies"
1954 NET_TRANSPORT_LOCAL,
1955 "Manipulate user privileges",
1957 " Manipulate user privileges"
1963 NET_TRANSPORT_LOCAL,
1964 "Provision a clean user database",
1965 "net sam privison\n"
1966 " Provision a clear user database"
1969 {NULL, NULL, 0, NULL, NULL}
1972 if (getuid() != 0) {
1973 d_fprintf(stderr, "You are not root, most things won't "
1977 return net_run_function(c, argc, argv, "net sam", func);