trying to get HEAD building again. If you want the code
[sfrench/samba-autobuild/.git] / source3 / utils / pdbedit.c
index 03be2571e54d75537ef80846699382580bea63fe..96d0d3c057fad35fe5fe0e0d7be71992c462ad7e 100644 (file)
 #define MASK_ALWAYS_GOOD       0x0000001F
 #define MASK_USER_GOOD         0x00401F00
 
+/*****************************************************************************
+ stubb functions
+****************************************************************************/
+
+void become_root( void )
+{
+        return;
+}
+
+void unbecome_root( void )
+{
+        return;
+}
+
+
 /*********************************************************
  Add all currently available users to another db
  ********************************************************/
@@ -91,7 +106,7 @@ static int export_groups (struct pdb_context *in, struct pdb_context *out) {
 
        if (NT_STATUS_IS_ERR(in->pdb_enum_group_mapping(in, SID_NAME_UNKNOWN,
                                                        &maps, &entries,
-                                                       False, False))) {
+                                                       False))) {
                fprintf(stderr, "Can't get group mappings!\n");
                return 1;
        }
@@ -112,7 +127,6 @@ static int export_groups (struct pdb_context *in, struct pdb_context *out) {
 static int print_sam_info (SAM_ACCOUNT *sam_pwent, BOOL verbosity, BOOL smbpwdstyle)
 {
        uid_t uid;
-       gid_t gid;
        time_t tmp;
 
        /* TODO: chaeck if entry is a user or a workstation */
@@ -122,12 +136,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",
@@ -161,35 +169,23 @@ 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 = nametouid(pdb_get_username(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));
                        
-                       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 = nametouid(pdb_get_username(sam_pwent));
+               printf ("%s:%d:%s\n", pdb_get_username(sam_pwent), uid, pdb_get_fullname(sam_pwent));
        }
 
        return 0;       
@@ -258,7 +254,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;
@@ -299,6 +296,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);
@@ -314,23 +341,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, 0))) {
+               DEBUG(0, ("could not create account to add new user %s\n", username));
+               return -1;
        }
 
        staticpass = getpass("new password:");
@@ -365,6 +387,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);
        
@@ -446,7 +498,7 @@ static int delete_user_entry (struct pdb_context *in, const char *username)
                return -1;
        }
 
-       if (NT_STATUS_IS_ERR(in->pdb_getsampwnam(in, samaccount, username))) {
+       if (!NT_STATUS_IS_OK(in->pdb_getsampwnam(in, samaccount, username))) {
                fprintf (stderr, "user %s does not exist in the passdb\n", username);
                return -1;
        }
@@ -472,7 +524,7 @@ static int delete_machine_entry (struct pdb_context *in, const char *machinename
                return -1;
        }
 
-       if (NT_STATUS_IS_ERR(in->pdb_getsampwnam(in, samaccount, name))) {
+       if (!NT_STATUS_IS_OK(in->pdb_getsampwnam(in, samaccount, name))) {
                fprintf (stderr, "machine %s does not exist in the passdb\n", name);
                return -1;
        }
@@ -507,6 +559,8 @@ int main (int argc, char **argv)
        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;
 
@@ -516,7 +570,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" },
@@ -525,6 +579,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},
@@ -547,7 +603,7 @@ int main (int argc, char **argv)
        
        while((opt = poptGetNextOpt(pc)) != -1) {
                switch (opt) {
-               case 'V':
+               case 'C':
                        account_policy_value_set = True;
                        break;
                }
@@ -563,8 +619,9 @@ int main (int argc, char **argv)
                exit(1);
        }
 
-       init_modules();
-       
+       if(!initialize_password_db(False))
+               exit(1);
+
        if (!init_names())
                exit(1);
 
@@ -695,7 +752,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);
                        }
                }
 
@@ -714,7 +771,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);
                }
        }