*id_to_*id call reshape to return NTSTATUS errors
[ira/wip.git] / source3 / utils / pdbedit.c
index affcc75d67b8defb2816bf4a41168aadc303b177..4cb3db52b7f4a0be56089992a4e0e0ac9262f2f6 100644 (file)
@@ -81,6 +81,30 @@ static int export_database (struct pdb_context *in, struct pdb_context *out) {
        return 0;
 }
 
+/*********************************************************
+ Add all currently available group mappings to another db
+ ********************************************************/
+
+static int export_groups (struct pdb_context *in, struct pdb_context *out) {
+       GROUP_MAP *maps = NULL;
+       int i, entries = 0;
+
+       if (NT_STATUS_IS_ERR(in->pdb_enum_group_mapping(in, SID_NAME_UNKNOWN,
+                                                       &maps, &entries,
+                                                       False, False))) {
+               fprintf(stderr, "Can't get group mappings!\n");
+               return 1;
+       }
+
+       for (i=0; i<entries; i++) {
+               out->pdb_add_group_mapping_entry(out, &(maps[i]));
+       }
+
+       SAFE_FREE(maps);
+
+       return 0;
+}
+
 /*********************************************************
  Print info from sam structure
 **********************************************************/
@@ -98,12 +122,6 @@ static int print_sam_info (SAM_ACCOUNT *sam_pwent, BOOL verbosity, BOOL smbpwdst
                printf ("Unix username:        %s\n", pdb_get_username(sam_pwent));
                printf ("NT username:          %s\n", pdb_get_nt_username(sam_pwent));
                printf ("Account Flags:        %s\n", pdb_encode_acct_ctrl(pdb_get_acct_ctrl(sam_pwent), NEW_PW_FORMAT_SPACE_PADDED_LEN));
-               
-               if (IS_SAM_UNIX_USER(sam_pwent)) {
-                       uid = pdb_get_uid(sam_pwent);
-                       gid = pdb_get_gid(sam_pwent);
-                       printf ("User ID/Group ID:     %d/%d\n", uid, gid);
-               }
                printf ("User SID:             %s\n",
                        sid_string_static(pdb_get_user_sid(sam_pwent)));
                printf ("Primary Group SID:    %s\n",
@@ -137,35 +155,25 @@ static int print_sam_info (SAM_ACCOUNT *sam_pwent, BOOL verbosity, BOOL smbpwdst
                printf ("Password must change: %s\n", tmp ? http_timestring(tmp) : "0");
                
        } else if (smbpwdstyle) {
-               if (IS_SAM_UNIX_USER(sam_pwent)) {
-                       char lm_passwd[33];
-                       char nt_passwd[33];
-
-                       uid = pdb_get_uid(sam_pwent);
-                       pdb_sethexpwd(lm_passwd, 
-                                     pdb_get_lanman_passwd(sam_pwent), 
-                                     pdb_get_acct_ctrl(sam_pwent));
-                       pdb_sethexpwd(nt_passwd, 
-                                     pdb_get_nt_passwd(sam_pwent), 
-                                     pdb_get_acct_ctrl(sam_pwent));
+               char lm_passwd[33];
+               char nt_passwd[33];
+
+               uid = -1;
+               sid_to_uid(pdb_get_user_sid(sam_pwent), &uid);
+               pdb_sethexpwd(lm_passwd, pdb_get_lanman_passwd(sam_pwent), pdb_get_acct_ctrl(sam_pwent));
+               pdb_sethexpwd(nt_passwd, pdb_get_nt_passwd(sam_pwent), pdb_get_acct_ctrl(sam_pwent));
                        
-                       printf("%s:%d:%s:%s:%s:LCT-%08X:\n",
-                              pdb_get_username(sam_pwent),
-                              uid,
-                              lm_passwd,
-                              nt_passwd,
-                              pdb_encode_acct_ctrl(pdb_get_acct_ctrl(sam_pwent),NEW_PW_FORMAT_SPACE_PADDED_LEN),
-                              (uint32)pdb_get_pass_last_set_time(sam_pwent));
-               } else {
-                       fprintf(stderr, "Can't output in smbpasswd format, no uid on this record.\n");
-               }
+               printf("%s:%d:%s:%s:%s:LCT-%08X:\n",
+                      pdb_get_username(sam_pwent),
+                      uid,
+                      lm_passwd,
+                      nt_passwd,
+                      pdb_encode_acct_ctrl(pdb_get_acct_ctrl(sam_pwent),NEW_PW_FORMAT_SPACE_PADDED_LEN),
+                      (uint32)pdb_get_pass_last_set_time(sam_pwent));
        } else {
-               if (IS_SAM_UNIX_USER(sam_pwent)) {
-                       printf ("%s:%d:%s\n", pdb_get_username(sam_pwent), pdb_get_uid(sam_pwent), 
-                               pdb_get_fullname(sam_pwent));
-               } else {        
-                       printf ("%s:(null):%s\n", pdb_get_username(sam_pwent), pdb_get_fullname(sam_pwent));
-               }
+               uid = -1;
+               sid_to_uid(pdb_get_user_sid(sam_pwent), &uid);
+               printf ("%s:%d:%s\n", pdb_get_username(sam_pwent), uid, pdb_get_fullname(sam_pwent));
        }
 
        return 0;       
@@ -234,7 +242,8 @@ static int print_users_list (struct pdb_context *in, BOOL verbosity, BOOL smbpwd
 static int set_user_info (struct pdb_context *in, const char *username, 
                          const char *fullname, const char *homedir, 
                          const char *drive, const char *script, 
-                         const char *profile, const char *account_control)
+                         const char *profile, const char *account_control,
+                         const char *user_sid, const char *group_sid)
 {
        SAM_ACCOUNT *sam_pwent=NULL;
        BOOL ret;
@@ -275,6 +284,36 @@ static int set_user_info (struct pdb_context *in, const char *username,
                                  (pdb_get_acct_ctrl(sam_pwent) & not_settable) | newflag,
                                  PDB_CHANGED);
        }
+       if (user_sid) {
+               DOM_SID u_sid;
+               if (!string_to_sid(&u_sid, user_sid)) {
+                       /* not a complete sid, may be a RID, try building a SID */
+                       int u_rid;
+                       
+                       if (sscanf(user_sid, "%d", &u_rid) != 1) {
+                               fprintf(stderr, "Error passed string is not a complete user SID or RID!\n");
+                               return -1;
+                       }
+                       sid_copy(&u_sid, get_global_sam_sid());
+                       sid_append_rid(&u_sid, u_rid);
+               }
+               pdb_set_user_sid (sam_pwent, &u_sid, PDB_CHANGED);
+       }
+       if (group_sid) {
+               DOM_SID g_sid;
+               if (!string_to_sid(&g_sid, group_sid)) {
+                       /* not a complete sid, may be a RID, try building a SID */
+                       int g_rid;
+                       
+                       if (sscanf(group_sid, "%d", &g_rid) != 1) {
+                               fprintf(stderr, "Error passed string is not a complete group SID or RID!\n");
+                               return -1;
+                       }
+                       sid_copy(&g_sid, get_global_sam_sid());
+                       sid_append_rid(&g_sid, g_rid);
+               }
+               pdb_set_group_sid (sam_pwent, &g_sid, PDB_CHANGED);
+       }
        
        if (NT_STATUS_IS_OK(in->pdb_update_sam_account (in, sam_pwent)))
                print_user_info (in, username, True, False);
@@ -290,23 +329,18 @@ static int set_user_info (struct pdb_context *in, const char *username,
 /*********************************************************
  Add New User
 **********************************************************/
-static int new_user (struct pdb_context *in, const char *username, const char *fullname, const char *homedir, const char *drive, const char *script, const char *profile)
+static int new_user (struct pdb_context *in, const char *username,
+                       const char *fullname, const char *homedir,
+                       const char *drive, const char *script,
+                       const char *profile, char *user_sid, char *group_sid)
 {
        SAM_ACCOUNT *sam_pwent=NULL;
-       struct passwd  *pwd = NULL;
+       NTSTATUS nt_status;
        char *password1, *password2, *staticpass;
        
-       ZERO_STRUCT(sam_pwent);
-
-       if ((pwd = getpwnam_alloc(username))) {
-               pdb_init_sam_pw (&sam_pwent, pwd);
-               passwd_free(&pwd);
-       } else {
-               fprintf (stderr, "WARNING: user %s does not exist in system passwd\n", username);
-               pdb_init_sam(&sam_pwent);
-               if (!pdb_set_username(sam_pwent, username, PDB_CHANGED)) {
-                       return False;
-               }
+       if (!NT_STATUS_IS_OK(nt_status = pdb_init_sam_new(&sam_pwent, username))) {
+               DEBUG(0, ("could not create account to add new user %s\n", username));
+               return -1;
        }
 
        staticpass = getpass("new password:");
@@ -341,6 +375,36 @@ static int new_user (struct pdb_context *in, const char *username, const char *f
                pdb_set_logon_script(sam_pwent, script, PDB_CHANGED);
        if (profile)
                pdb_set_profile_path (sam_pwent, profile, PDB_CHANGED);
+       if (user_sid) {
+               DOM_SID u_sid;
+               if (!string_to_sid(&u_sid, user_sid)) {
+                       /* not a complete sid, may be a RID, try building a SID */
+                       int u_rid;
+                       
+                       if (sscanf(user_sid, "%d", &u_rid) != 1) {
+                               fprintf(stderr, "Error passed string is not a complete user SID or RID!\n");
+                               return -1;
+                       }
+                       sid_copy(&u_sid, get_global_sam_sid());
+                       sid_append_rid(&u_sid, u_rid);
+               }
+               pdb_set_user_sid (sam_pwent, &u_sid, PDB_CHANGED);
+       }
+       if (group_sid) {
+               DOM_SID g_sid;
+               if (!string_to_sid(&g_sid, group_sid)) {
+                       /* not a complete sid, may be a RID, try building a SID */
+                       int g_rid;
+                       
+                       if (sscanf(group_sid, "%d", &g_rid) != 1) {
+                               fprintf(stderr, "Error passed string is not a complete group SID or RID!\n");
+                               return -1;
+                       }
+                       sid_copy(&g_sid, get_global_sam_sid());
+                       sid_append_rid(&g_sid, g_rid);
+               }
+               pdb_set_group_sid (sam_pwent, &g_sid, PDB_CHANGED);
+       }
        
        pdb_set_acct_ctrl (sam_pwent, ACB_NORMAL, PDB_CHANGED);
        
@@ -478,10 +542,13 @@ int main (int argc, char **argv)
        static char *backend = NULL;
        static char *backend_in = NULL;
        static char *backend_out = NULL;
+       static BOOL transfer_groups = False;
        static char *logon_script = NULL;
        static char *profile_path = NULL;
        static char *account_control = NULL;
        static char *account_policy = NULL;
+       static char *user_sid = NULL;
+       static char *group_sid = NULL;
        static long int account_policy_value = 0;
        BOOL account_policy_value_set = False;
 
@@ -491,7 +558,7 @@ int main (int argc, char **argv)
        poptContext pc;
        struct poptOption long_options[] = {
                POPT_AUTOHELP
-               {"list",        'l', POPT_ARG_NONE, &list_users, 0, "list all users", NULL},
+               {"list",        'L', POPT_ARG_NONE, &list_users, 0, "list all users", NULL},
                {"verbose",     'v', POPT_ARG_NONE, &verbose, 0, "be verbose", NULL },
                {"smbpasswd-style",     'w',POPT_ARG_NONE, &spstyle, 0, "give output in smbpasswd style", NULL},
                {"user",        'u', POPT_ARG_STRING, &user_name, 0, "use username", "USER" },
@@ -500,6 +567,8 @@ int main (int argc, char **argv)
                {"drive",       'D', POPT_ARG_STRING, &home_drive, 0, "set home drive", NULL},
                {"script",      'S', POPT_ARG_STRING, &logon_script, 0, "set logon script", NULL},
                {"profile",     'p', POPT_ARG_STRING, &profile_path, 0, "set profile path", NULL},
+               {"user SID",    'U', POPT_ARG_STRING, &user_sid, 0, "set user SID or RID", NULL},
+               {"group SID",   'G', POPT_ARG_STRING, &group_sid, 0, "set group SID or RID", NULL},
                {"create",      'a', POPT_ARG_NONE, &add_user, 0, "create user", NULL},
                {"modify",      'r', POPT_ARG_NONE, &modify_user, 0, "modify user", NULL},
                {"machine",     'm', POPT_ARG_NONE, &machine, 0, "account is a machine account", NULL},
@@ -507,12 +576,12 @@ int main (int argc, char **argv)
                {"backend",     'b', POPT_ARG_STRING, &backend, 0, "use different passdb backend as default backend", NULL},
                {"import",      'i', POPT_ARG_STRING, &backend_in, 0, "import user accounts from this backend", NULL},
                {"export",      'e', POPT_ARG_STRING, &backend_out, 0, "export user accounts to this backend", NULL},
+               {"group",       'g', POPT_ARG_NONE, &transfer_groups, 0, "use -i and -e for groups", NULL},
                {"account-policy",      'P', POPT_ARG_STRING, &account_policy, 0,"value of an account policy (like maximum password age)",NULL},
-               {"value",       'V', POPT_ARG_LONG, &account_policy_value, 'V',"set the account policy to this value", NULL},
+               {"value",       'C', POPT_ARG_LONG, &account_policy_value, 'C',"set the account policy to this value", NULL},
                {"account-control",     'c', POPT_ARG_STRING, &account_control, 0, "Values of account control", NULL},
-               { NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_debug },
-               { NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_configfile },
-               {0,0,0,0}
+               POPT_COMMON_SAMBA
+               POPT_TABLEEND
        };
        
        setup_logging("pdbedit", True);
@@ -538,8 +607,6 @@ int main (int argc, char **argv)
                exit(1);
        }
 
-       init_modules();
-       
        if (!init_names())
                exit(1);
 
@@ -623,7 +690,11 @@ int main (int argc, char **argv)
                } else {
                        bout = bdef;
                }
-               return export_database(bin, bout);
+               if (transfer_groups) {
+                       return export_groups(bin, bout);
+               } else {
+                       return export_database(bin, bout);
+               }
        }
 
        /* if BIT_USER is defined but nothing else then threat it as -l -u for compatibility */
@@ -666,7 +737,7 @@ int main (int argc, char **argv)
                        } else {
                                return new_user (bdef, user_name, full_name, home_dir, 
                                                 home_drive, logon_script, 
-                                                profile_path);
+                                                profile_path, user_sid, group_sid);
                        }
                }
 
@@ -685,7 +756,8 @@ int main (int argc, char **argv)
                                              home_dir,
                                              home_drive,
                                              logon_script,
-                                             profile_path, account_control);
+                                             profile_path, account_control,
+                                             user_sid, group_sid);
                }
        }