summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-03-26 02:14:40 +0000
committerJeremy Allison <jra@samba.org>1998-03-26 02:14:40 +0000
commit1edcbd31fc8a24a97069496fa6959bb4927edebd (patch)
tree9a0aa8de81e6a3b9ce024a5d85636fb66a0a242c /source3/utils
parent2dc1712d31612e9ec0234eef3e37d00c62e69079 (diff)
downloadsamba-1edcbd31fc8a24a97069496fa6959bb4927edebd.tar.gz
samba-1edcbd31fc8a24a97069496fa6959bb4927edebd.tar.bz2
samba-1edcbd31fc8a24a97069496fa6959bb4927edebd.zip
smbpass.c: Made unknown accounts ending in '$' server accounts, not
workstation. smbpasswd.c: Added code to count down from last machine account to add correct uid when adding a machine account. Jeremy. (This used to be commit 0601a41993d6ea4fb2a186b7ca55b2f3a6f6a53d)
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/smbpasswd.c34
1 files changed, 29 insertions, 5 deletions
diff --git a/source3/utils/smbpasswd.c b/source3/utils/smbpasswd.c
index db7f4c12e2..3a81a98718 100644
--- a/source3/utils/smbpasswd.c
+++ b/source3/utils/smbpasswd.c
@@ -359,9 +359,27 @@ char *encode_acct_ctrl(uint16 acct_ctrl)
machine account.
***********************************************************/
-int get_machine_uid(void)
+int get_new_machine_uid(void)
{
- return 65534;
+ int next_uid_start;
+ FILE *fp;
+ struct smb_passwd *smbpw;
+
+ if(sizeof(uid_t) == 2)
+ next_uid_start = 65533;
+
+ if(sizeof(uid_t) == 4)
+ next_uid_start = 0x7fffffff;
+
+ fp = startsmbpwent(False);
+ while((smbpw = getsmbpwent(fp)) != NULL) {
+ if(!(smbpw->acct_ctrl & ACB_SVRTRUST))
+ continue;
+
+ next_uid_start = MIN(next_uid_start, (smbpw->smb_userid-1));
+ }
+ endsmbpwent(fp);
+ return next_uid_start;
}
/*********************************************************
@@ -372,7 +390,7 @@ static void usage(char *name, BOOL is_root)
{
if(is_root)
fprintf(stderr, "Usage is : %s [-a] [-d] [-m] [-n] [username] [password]\n\
-%s: [-r machine] [username] [password]\n%s: [-h]\n", name, name, name);
+%s: [-R <name resolve order>] [-r machine] [username] [password]\n%s: [-h]\n", name, name, name);
else
fprintf(stderr, "Usage is : %s [-h] [-r machine] [password]\n", name);
exit(1);
@@ -450,7 +468,7 @@ int main(int argc, char **argv)
is_root = (real_uid == 0);
- while ((ch = getopt(argc, argv, "adhmnr:")) != EOF) {
+ while ((ch = getopt(argc, argv, "adhmnr:R:")) != EOF) {
switch(ch) {
case 'a':
if(is_root)
@@ -476,6 +494,12 @@ int main(int argc, char **argv)
case 'r':
remote_machine = optarg;
break;
+ case 'R':
+ if(is_root) {
+ lp_set_name_resolve_order(optarg);
+ break;
+ } else
+ usage(prog_name, is_root);
case 'm':
if(is_root)
machine_account = True;
@@ -714,7 +738,7 @@ int main(int argc, char **argv)
pwd->pw_gecos = "";
pwd->pw_dir = machine_dir_name;
pwd->pw_shell = "";
- pwd->pw_uid = get_machine_uid();
+ pwd->pw_uid = get_new_machine_uid();
}