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 DOM_SID *members = NULL;
1218 size_t i, num_members = 0;
1219 enum lsa_SidType grouptype;
1222 if (argc != 1 || c->display_usage) {
1223 d_fprintf(stderr, "usage: net sam listmem <group>\n");
1227 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
1228 &groupdomain, &groupname, &group, &grouptype)) {
1229 d_fprintf(stderr, "Could not find group %s\n", argv[0]);
1233 if ((grouptype == SID_NAME_ALIAS) ||
1234 (grouptype == SID_NAME_WKN_GRP)) {
1235 status = pdb_enum_aliasmem(&group, talloc_tos(), &members,
1237 if (!NT_STATUS_IS_OK(status)) {
1238 d_fprintf(stderr, "Listing group members failed with "
1239 "%s\n", nt_errstr(status));
1242 } else if (grouptype == SID_NAME_DOM_GRP) {
1245 status = pdb_enum_group_members(talloc_tos(), &group,
1246 &rids, &num_members);
1247 if (!NT_STATUS_IS_OK(status)) {
1248 d_fprintf(stderr, "Listing group members failed with "
1249 "%s\n", nt_errstr(status));
1253 members = talloc_array(talloc_tos(), struct dom_sid,
1255 if (members == NULL) {
1260 for (i=0; i<num_members; i++) {
1261 sid_compose(&members[i], get_global_sam_sid(),
1266 d_fprintf(stderr, "Can only list local group members so far.\n"
1267 "%s is a %s\n", argv[0], sid_type_lookup(grouptype));
1271 d_printf("%s\\%s has %u members\n", groupdomain, groupname,
1272 (unsigned int)num_members);
1273 for (i=0; i<num_members; i++) {
1274 const char *dom, *name;
1275 if (lookup_sid(talloc_tos(), &members[i], &dom, &name, NULL)) {
1276 d_printf(" %s\\%s\n", dom, name);
1278 d_printf(" %s\n", sid_string_tos(&members[i]));
1282 TALLOC_FREE(members);
1290 static int net_sam_do_list(struct net_context *c, int argc, const char **argv,
1291 struct pdb_search *search, const char *what)
1293 bool verbose = (argc == 1);
1295 if ((argc > 1) || c->display_usage ||
1296 ((argc == 1) && !strequal(argv[0], "verbose"))) {
1297 d_fprintf(stderr, "usage: net sam list %s [verbose]\n", what);
1301 if (search == NULL) {
1302 d_fprintf(stderr, "Could not start search\n");
1307 struct samr_displayentry entry;
1308 if (!search->next_entry(search, &entry)) {
1312 d_printf("%s:%d:%s\n",
1317 d_printf("%s\n", entry.account_name);
1321 TALLOC_FREE(search);
1325 static int net_sam_list_users(struct net_context *c, int argc,
1328 return net_sam_do_list(c, argc, argv,
1329 pdb_search_users(talloc_tos(), ACB_NORMAL),
1333 static int net_sam_list_groups(struct net_context *c, int argc,
1336 return net_sam_do_list(c, argc, argv, pdb_search_groups(talloc_tos()),
1340 static int net_sam_list_localgroups(struct net_context *c, int argc,
1343 return net_sam_do_list(c, argc, argv,
1344 pdb_search_aliases(talloc_tos(),
1345 get_global_sam_sid()),
1349 static int net_sam_list_builtin(struct net_context *c, int argc,
1352 return net_sam_do_list(c, argc, argv,
1353 pdb_search_aliases(talloc_tos(),
1354 &global_sid_Builtin),
1358 static int net_sam_list_workstations(struct net_context *c, int argc,
1361 return net_sam_do_list(c, argc, argv,
1362 pdb_search_users(talloc_tos(), ACB_WSTRUST),
1370 static int net_sam_list(struct net_context *c, int argc, const char **argv)
1372 struct functable func[] = {
1376 NET_TRANSPORT_LOCAL,
1378 "net sam list users\n"
1383 net_sam_list_groups,
1384 NET_TRANSPORT_LOCAL,
1386 "net sam list groups\n"
1391 net_sam_list_localgroups,
1392 NET_TRANSPORT_LOCAL,
1393 "List SAM local groups",
1394 "net sam list localgroups\n"
1395 " List SAM local groups"
1399 net_sam_list_builtin,
1400 NET_TRANSPORT_LOCAL,
1401 "List builtin groups",
1402 "net sam list builtin\n"
1403 " List builtin groups"
1407 net_sam_list_workstations,
1408 NET_TRANSPORT_LOCAL,
1409 "List domain member workstations",
1410 "net sam list workstations\n"
1411 " List domain member workstations"
1413 {NULL, NULL, 0, NULL, NULL}
1416 return net_run_function(c, argc, argv, "net sam list", func);
1420 * Show details of SAM entries
1423 static int net_sam_show(struct net_context *c, int argc, const char **argv)
1426 enum lsa_SidType type;
1427 const char *dom, *name;
1429 if (argc != 1 || c->display_usage) {
1430 d_fprintf(stderr, "usage: net sam show <name>\n");
1434 if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_LOCAL,
1435 &dom, &name, &sid, &type)) {
1436 d_fprintf(stderr, "Could not find name %s\n", argv[0]);
1440 d_printf("%s\\%s is a %s with SID %s\n", dom, name,
1441 sid_type_lookup(type), sid_string_tos(&sid));
1449 * Init an LDAP tree with default users and Groups
1450 * if ldapsam:editposix is enabled
1453 static int net_sam_provision(struct net_context *c, int argc, const char **argv)
1457 char *ldap_uri = NULL;
1459 struct smbldap_state *ls;
1462 gid_t domusers_gid = -1;
1463 gid_t domadmins_gid = -1;
1464 struct samu *samuser;
1467 if (c->display_usage) {
1469 "net sam provision\n"
1470 " Init an LDAP tree with default users/groups\n");
1474 tc = talloc_new(NULL);
1476 d_fprintf(stderr, "Out of Memory!\n");
1480 if ((ldap_bk = talloc_strdup(tc, lp_passdb_backend())) == NULL) {
1481 d_fprintf(stderr, "talloc failed\n");
1485 p = strchr(ldap_bk, ':');
1488 ldap_uri = talloc_strdup(tc, p+1);
1489 trim_char(ldap_uri, ' ', ' ');
1492 trim_char(ldap_bk, ' ', ' ');
1494 if (strcmp(ldap_bk, "ldapsam") != 0) {
1495 d_fprintf(stderr, "Provisioning works only with ldapsam backend\n");
1499 if (!lp_parm_bool(-1, "ldapsam", "trusted", false) ||
1500 !lp_parm_bool(-1, "ldapsam", "editposix", false)) {
1502 d_fprintf(stderr, "Provisioning works only if ldapsam:trusted"
1503 " and ldapsam:editposix are enabled.\n");
1507 if (!winbind_ping()) {
1508 d_fprintf(stderr, "winbind seems not to run. Provisioning "
1509 "LDAP only works when winbind runs.\n");
1513 if (!NT_STATUS_IS_OK(smbldap_init(tc, NULL, ldap_uri, &ls))) {
1514 d_fprintf(stderr, "Unable to connect to the LDAP server.\n");
1518 d_printf("Checking for Domain Users group.\n");
1520 sid_compose(&gsid, get_global_sam_sid(), DOMAIN_GROUP_RID_USERS);
1522 if (!pdb_getgrsid(&gmap, gsid)) {
1523 LDAPMod **mods = NULL;
1531 d_printf("Adding the Domain Users group.\n");
1533 /* lets allocate a new groupid for this group */
1534 if (!winbind_allocate_gid(&domusers_gid)) {
1535 d_fprintf(stderr, "Unable to allocate a new gid to create Domain Users group!\n");
1539 uname = talloc_strdup(tc, "domusers");
1540 wname = talloc_strdup(tc, "Domain Users");
1541 dn = talloc_asprintf(tc, "cn=%s,%s", "domusers", lp_ldap_group_suffix());
1542 gidstr = talloc_asprintf(tc, "%u", (unsigned int)domusers_gid);
1543 gtype = talloc_asprintf(tc, "%d", SID_NAME_DOM_GRP);
1545 if (!uname || !wname || !dn || !gidstr || !gtype) {
1546 d_fprintf(stderr, "Out of Memory!\n");
1550 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXGROUP);
1551 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_GROUPMAP);
1552 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", uname);
1553 smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", wname);
1554 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
1555 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSid",
1556 sid_string_talloc(tc, &gsid));
1557 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaGroupType", gtype);
1559 talloc_autofree_ldapmod(tc, mods);
1561 rc = smbldap_add(ls, dn, mods);
1563 if (rc != LDAP_SUCCESS) {
1564 d_fprintf(stderr, "Failed to add Domain Users group to ldap directory\n");
1567 domusers_gid = gmap.gid;
1568 d_printf("found!\n");
1573 d_printf("Checking for Domain Admins group.\n");
1575 sid_compose(&gsid, get_global_sam_sid(), DOMAIN_GROUP_RID_ADMINS);
1577 if (!pdb_getgrsid(&gmap, gsid)) {
1578 LDAPMod **mods = NULL;
1586 d_printf("Adding the Domain Admins group.\n");
1588 /* lets allocate a new groupid for this group */
1589 if (!winbind_allocate_gid(&domadmins_gid)) {
1590 d_fprintf(stderr, "Unable to allocate a new gid to create Domain Admins group!\n");
1594 uname = talloc_strdup(tc, "domadmins");
1595 wname = talloc_strdup(tc, "Domain Admins");
1596 dn = talloc_asprintf(tc, "cn=%s,%s", "domadmins", lp_ldap_group_suffix());
1597 gidstr = talloc_asprintf(tc, "%u", (unsigned int)domadmins_gid);
1598 gtype = talloc_asprintf(tc, "%d", SID_NAME_DOM_GRP);
1600 if (!uname || !wname || !dn || !gidstr || !gtype) {
1601 d_fprintf(stderr, "Out of Memory!\n");
1605 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXGROUP);
1606 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_GROUPMAP);
1607 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", uname);
1608 smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", wname);
1609 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
1610 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSid",
1611 sid_string_talloc(tc, &gsid));
1612 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaGroupType", gtype);
1614 talloc_autofree_ldapmod(tc, mods);
1616 rc = smbldap_add(ls, dn, mods);
1618 if (rc != LDAP_SUCCESS) {
1619 d_fprintf(stderr, "Failed to add Domain Admins group to ldap directory\n");
1622 domadmins_gid = gmap.gid;
1623 d_printf("found!\n");
1628 d_printf("Check for Administrator account.\n");
1630 samuser = samu_new(tc);
1632 d_fprintf(stderr, "Out of Memory!\n");
1636 if (!pdb_getsampwnam(samuser, "Administrator")) {
1637 LDAPMod **mods = NULL;
1648 d_printf("Adding the Administrator user.\n");
1650 if (domadmins_gid == -1) {
1651 d_fprintf(stderr, "Can't create Administrator user, Domain Admins group not available!\n");
1654 if (!winbind_allocate_uid(&uid)) {
1655 d_fprintf(stderr, "Unable to allocate a new uid to create the Administrator user!\n");
1658 name = talloc_strdup(tc, "Administrator");
1659 dn = talloc_asprintf(tc, "uid=Administrator,%s", lp_ldap_user_suffix());
1660 uidstr = talloc_asprintf(tc, "%u", (unsigned int)uid);
1661 gidstr = talloc_asprintf(tc, "%u", (unsigned int)domadmins_gid);
1662 dir = talloc_sub_specified(tc, lp_template_homedir(),
1664 get_global_sam_name(),
1665 uid, domadmins_gid);
1666 shell = talloc_sub_specified(tc, lp_template_shell(),
1668 get_global_sam_name(),
1669 uid, domadmins_gid);
1671 if (!name || !dn || !uidstr || !gidstr || !dir || !shell) {
1672 d_fprintf(stderr, "Out of Memory!\n");
1676 sid_compose(&sid, get_global_sam_sid(), DOMAIN_USER_RID_ADMIN);
1678 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_ACCOUNT);
1679 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXACCOUNT);
1680 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_SAMBASAMACCOUNT);
1681 smbldap_set_mod(&mods, LDAP_MOD_ADD, "uid", name);
1682 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", name);
1683 smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", name);
1684 smbldap_set_mod(&mods, LDAP_MOD_ADD, "uidNumber", uidstr);
1685 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
1686 smbldap_set_mod(&mods, LDAP_MOD_ADD, "homeDirectory", dir);
1687 smbldap_set_mod(&mods, LDAP_MOD_ADD, "loginShell", shell);
1688 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSID",
1689 sid_string_talloc(tc, &sid));
1690 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaAcctFlags",
1691 pdb_encode_acct_ctrl(ACB_NORMAL|ACB_DISABLED,
1692 NEW_PW_FORMAT_SPACE_PADDED_LEN));
1694 talloc_autofree_ldapmod(tc, mods);
1696 rc = smbldap_add(ls, dn, mods);
1698 if (rc != LDAP_SUCCESS) {
1699 d_fprintf(stderr, "Failed to add Administrator user to ldap directory\n");
1702 d_printf("found!\n");
1705 d_printf("Checking for Guest user.\n");
1707 samuser = samu_new(tc);
1709 d_fprintf(stderr, "Out of Memory!\n");
1713 if (!pdb_getsampwnam(samuser, lp_guestaccount())) {
1714 LDAPMod **mods = NULL;
1721 d_printf("Adding the Guest user.\n");
1723 pwd = getpwnam_alloc(tc, lp_guestaccount());
1726 if (domusers_gid == -1) {
1727 d_fprintf(stderr, "Can't create Guest user, Domain Users group not available!\n");
1730 if ((pwd = talloc(tc, struct passwd)) == NULL) {
1731 d_fprintf(stderr, "talloc failed\n");
1734 pwd->pw_name = talloc_strdup(pwd, lp_guestaccount());
1735 if (!winbind_allocate_uid(&(pwd->pw_uid))) {
1736 d_fprintf(stderr, "Unable to allocate a new uid to create the Guest user!\n");
1739 pwd->pw_gid = domusers_gid;
1740 pwd->pw_dir = talloc_strdup(tc, "/");
1741 pwd->pw_shell = talloc_strdup(tc, "/bin/false");
1742 if (!pwd->pw_dir || !pwd->pw_shell) {
1743 d_fprintf(stderr, "Out of Memory!\n");
1748 sid_compose(&sid, get_global_sam_sid(), DOMAIN_USER_RID_GUEST);
1750 dn = talloc_asprintf(tc, "uid=%s,%s", pwd->pw_name, lp_ldap_user_suffix ());
1751 uidstr = talloc_asprintf(tc, "%u", (unsigned int)pwd->pw_uid);
1752 gidstr = talloc_asprintf(tc, "%u", (unsigned int)pwd->pw_gid);
1753 if (!dn || !uidstr || !gidstr) {
1754 d_fprintf(stderr, "Out of Memory!\n");
1758 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_ACCOUNT);
1759 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXACCOUNT);
1760 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_SAMBASAMACCOUNT);
1761 smbldap_set_mod(&mods, LDAP_MOD_ADD, "uid", pwd->pw_name);
1762 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", pwd->pw_name);
1763 smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", pwd->pw_name);
1764 smbldap_set_mod(&mods, LDAP_MOD_ADD, "uidNumber", uidstr);
1765 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
1766 if ((pwd->pw_dir != NULL) && (pwd->pw_dir[0] != '\0')) {
1767 smbldap_set_mod(&mods, LDAP_MOD_ADD, "homeDirectory", pwd->pw_dir);
1769 if ((pwd->pw_shell != NULL) && (pwd->pw_shell[0] != '\0')) {
1770 smbldap_set_mod(&mods, LDAP_MOD_ADD, "loginShell", pwd->pw_shell);
1772 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSID",
1773 sid_string_talloc(tc, &sid));
1774 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaAcctFlags",
1775 pdb_encode_acct_ctrl(ACB_NORMAL|ACB_DISABLED,
1776 NEW_PW_FORMAT_SPACE_PADDED_LEN));
1778 talloc_autofree_ldapmod(tc, mods);
1780 rc = smbldap_add(ls, dn, mods);
1782 if (rc != LDAP_SUCCESS) {
1783 d_fprintf(stderr, "Failed to add Guest user to ldap directory\n");
1786 d_printf("found!\n");
1789 d_printf("Checking Guest's group.\n");
1791 pwd = getpwnam_alloc(talloc_autofree_context(), lp_guestaccount());
1793 d_fprintf(stderr, "Failed to find just created Guest account!\n"
1794 " Is nss properly configured?!\n");
1798 if (pwd->pw_gid == domusers_gid) {
1799 d_printf("found!\n");
1803 if (!pdb_getgrgid(&gmap, pwd->pw_gid)) {
1804 LDAPMod **mods = NULL;
1812 d_printf("Adding the Domain Guests group.\n");
1814 uname = talloc_strdup(tc, "domguests");
1815 wname = talloc_strdup(tc, "Domain Guests");
1816 dn = talloc_asprintf(tc, "cn=%s,%s", "domguests", lp_ldap_group_suffix());
1817 gidstr = talloc_asprintf(tc, "%u", (unsigned int)pwd->pw_gid);
1818 gtype = talloc_asprintf(tc, "%d", SID_NAME_DOM_GRP);
1820 if (!uname || !wname || !dn || !gidstr || !gtype) {
1821 d_fprintf(stderr, "Out of Memory!\n");
1825 sid_compose(&gsid, get_global_sam_sid(), DOMAIN_GROUP_RID_GUESTS);
1827 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_POSIXGROUP);
1828 smbldap_set_mod(&mods, LDAP_MOD_ADD, "objectClass", LDAP_OBJ_GROUPMAP);
1829 smbldap_set_mod(&mods, LDAP_MOD_ADD, "cn", uname);
1830 smbldap_set_mod(&mods, LDAP_MOD_ADD, "displayName", wname);
1831 smbldap_set_mod(&mods, LDAP_MOD_ADD, "gidNumber", gidstr);
1832 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaSid",
1833 sid_string_talloc(tc, &gsid));
1834 smbldap_set_mod(&mods, LDAP_MOD_ADD, "sambaGroupType", gtype);
1836 talloc_autofree_ldapmod(tc, mods);
1838 rc = smbldap_add(ls, dn, mods);
1840 if (rc != LDAP_SUCCESS) {
1841 d_fprintf(stderr, "Failed to add Domain Guests group to ldap directory\n");
1844 d_printf("found!\n");
1859 /***********************************************************
1860 migrated functionality from smbgroupedit
1861 **********************************************************/
1862 int net_sam(struct net_context *c, int argc, const char **argv)
1864 struct functable func[] = {
1866 "createbuiltingroup",
1867 net_sam_createbuiltingroup,
1868 NET_TRANSPORT_LOCAL,
1869 "Create a new BUILTIN group",
1870 "net sam createbuiltingroup\n"
1871 " Create a new BUILTIN group"
1875 net_sam_createlocalgroup,
1876 NET_TRANSPORT_LOCAL,
1877 "Create a new local group",
1878 "net sam createlocalgroup\n"
1879 " Create a new local group"
1882 "createdomaingroup",
1883 net_sam_createdomaingroup,
1884 NET_TRANSPORT_LOCAL,
1885 "Create a new group",
1886 "net sam createdomaingroup\n"
1887 " Create a new group"
1891 net_sam_deletelocalgroup,
1892 NET_TRANSPORT_LOCAL,
1893 "Delete an existing local group",
1894 "net sam deletelocalgroup\n"
1895 " Delete an existing local group"
1899 net_sam_mapunixgroup,
1900 NET_TRANSPORT_LOCAL,
1901 "Map a unix group to a domain group",
1902 "net sam mapunixgroup\n"
1903 " Map a unix group to a domain group"
1907 net_sam_unmapunixgroup,
1908 NET_TRANSPORT_LOCAL,
1909 "Remove a group mapping of an unix group to a domain "
1911 "net sam unmapunixgroup\n"
1912 " Remove a group mapping of an unix group to a "
1918 NET_TRANSPORT_LOCAL,
1919 "Add a member to a group",
1921 " Add a member to a group"
1926 NET_TRANSPORT_LOCAL,
1927 "Delete a member from a group",
1929 " Delete a member from a group"
1934 NET_TRANSPORT_LOCAL,
1935 "List group members",
1937 " List group members"
1942 NET_TRANSPORT_LOCAL,
1943 "List users, groups and local groups",
1945 " List users, groups and local groups"
1950 NET_TRANSPORT_LOCAL,
1951 "Show details of a SAM entry",
1953 " Show details of a SAM entry"
1958 NET_TRANSPORT_LOCAL,
1959 "Set details of a SAM account",
1961 " Set details of a SAM account"
1966 NET_TRANSPORT_LOCAL,
1967 "Set account policies",
1969 " Set account policies"
1974 NET_TRANSPORT_LOCAL,
1975 "Manipulate user privileges",
1977 " Manipulate user privileges"
1983 NET_TRANSPORT_LOCAL,
1984 "Provision a clean user database",
1985 "net sam privison\n"
1986 " Provision a clear user database"
1989 {NULL, NULL, 0, NULL, NULL}
1992 if (getuid() != 0) {
1993 d_fprintf(stderr, "You are not root, most things won't "
1997 return net_run_function(c, argc, argv, "net sam", func);