1
0
mirror of https://github.com/samba-team/samba.git synced 2025-09-11 09:44:19 +03:00

samba-tool: Add facility to add rfc2307 attributes to an already created user or group

Signed-off-by: Rowland Penny <rpenny@samba.org>
Reviewed-by: David Mulder <dmulder@suse.com>
Reviewed-by: Andrew Bartlet <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>

Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Thu Oct 17 12:21:55 UTC 2019 on sn-devel-184
This commit is contained in:
Rowland Penny
2019-07-02 13:41:34 +01:00
committed by Andreas Schneider
parent aacbd383b9
commit 68155811ab
4 changed files with 472 additions and 6 deletions

View File

@@ -2603,6 +2603,229 @@ class cmd_user_move(Command):
(username, full_new_parent_dn))
class cmd_user_add_unix_attrs(Command):
"""Add RFC2307 attributes to a user.
This command adds Unix attributes to a user account in the Active
Directory domain.
The username specified on the command is the sAMaccountName.
You must supply a unique uidNumber.
Unix (RFC2307) attributes will be added to the user account.
If you supply a gidNumber with '--gid-number', this will be used for the
users Unix 'gidNumber' attribute.
If '--gid-number' is not supplied, the users Unix gidNumber will be set to the
one found in 'Domain Users', this means Domain Users must have a gidNumber
attribute.
if '--unix-home' is not supplied, the users Unix home directory will be
set to /home/DOMAIN/username
if '--login-shell' is not supplied, the users Unix login shell will be
set to '/bin/sh'
if ---gecos' is not supplied, the users Unix gecos field will be set to the
users 'CN'
Add 'idmap_ldb:use rfc2307 = Yes' to the smb.conf on DCs, to use these
attributes for UID/GID mapping.
The command may be run from the root userid or another authorised userid.
The -H or --URL= option can be used to execute the command against a
remote server.
Example1:
samba-tool user addunixattrs User1 10001
Example1 shows how to add RFC2307 attributes to a domain enabled user
account, Domain Users will be set as the users gidNumber.
The users Unix ID will be set to '10001', provided this ID isn't already
in use.
Example2:
samba-tool user addunixattrs User2 10002 --gid-number=10001 \
--unix-home=/home/User2
Example2 shows how to add RFC2307 attributes to a domain enabled user
account.
The users Unix ID will be set to '10002', provided this ID isn't already
in use.
The users gidNumber attribute will be set to '10001'
The users Unix home directory will be set to '/home/user2'
Example3:
samba-tool user addunixattrs User3 10003 --gid-number=10001 \
--login-shell=/bin/false --gecos='User3 test'
Example3 shows how to add RFC2307 attributes to a domain enabled user
account.
The users Unix ID will be set to '10003', provided this ID isn't already
in use.
The users gidNumber attribute will be set to '10001'
The users Unix login shell will be set to '/bin/false'
The users gecos field will be set to 'User3 test'
Example4:
samba-tool user addunixattrs User4 10004 --gid-number=10001 \
--unix-home=/home/User4 --login-shell=/bin/bash --gecos='User4 test'
Example4 shows how to add RFC2307 attributes to a domain enabled user
account.
The users Unix ID will be set to '10004', provided this ID isn't already
in use.
The users gidNumber attribute will be set to '10001'
The users Unix home directory will be set to '/home/User4'
The users Unix login shell will be set to '/bin/bash'
The users gecos field will be set to 'User4 test'
"""
synopsis = "%prog <username> <uid-number> [options]"
takes_options = [
Option("-H", "--URL", help="LDB URL for database or target server",
type=str, metavar="URL", dest="H"),
Option("--gid-number", help="User's Unix/RFC2307 GID", type=str),
Option("--unix-home", help="User's Unix/RFC2307 home directory",
type=str),
Option("--login-shell", help="User's Unix/RFC2307 login shell",
type=str),
Option("--gecos", help="User's Unix/RFC2307 GECOS field", type=str),
Option("--uid", help="User's Unix/RFC2307 username", type=str),
]
takes_args = ["username", "uid-number"]
takes_optiongroups = {
"sambaopts": options.SambaOptions,
"credopts": options.CredentialsOptions,
"versionopts": options.VersionOptions,
}
def run(self, username, uid_number, credopts=None, sambaopts=None,
versionopts=None, H=None, gid_number=None, unix_home=None,
login_shell=None, gecos=None, uid=None):
lp = sambaopts.get_loadparm()
creds = credopts.get_credentials(lp)
samdb = SamDB(url=H, session_info=system_session(),
credentials=creds, lp=lp)
domaindn = samdb.domain_dn()
# Check that uidNumber supplied isn't already in use
filter = ("(&(objectClass=person)(uidNumber={}))"
.format(uid_number))
res = samdb.search(domaindn,
scope=ldb.SCOPE_SUBTREE,
expression=filter)
if (len(res) != 0):
raise CommandError("uidNumber {} is already being used."
.format(uid_number))
# Check user exists and doesn't have a uidNumber
filter = "(samaccountname={})".format(ldb.binary_encode(username))
res = samdb.search(domaindn,
scope=ldb.SCOPE_SUBTREE,
expression=filter)
if (len(res) == 0):
raise CommandError("Unable to find user '{}'".format(username))
user_dn = res[0].dn
if "uidNumber" in res[0]:
raise CommandError("User {} is already a Unix user."
.format(username))
if gecos is None:
gecos = res[0]["cn"][0]
if uid is None:
uid = res[0]["cn"][0]
if gid_number is None:
search_filter = ("(samaccountname={})"
.format(ldb.binary_encode('Domain Users')))
try:
res = samdb.search(domaindn,
scope=ldb.SCOPE_SUBTREE,
expression=search_filter)
for msg in res:
gid_number=msg.get('gidNumber')
except IndexError:
raise CommandError('Domain Users does not have a'
' gidNumber attribute')
if login_shell is None:
login_shell = "/bin/sh"
if unix_home is None:
# obtain nETBIOS Domain Name
filter = "(&(objectClass=crossRef)(nETBIOSName=*))"
searchdn = ("CN=Partitions,CN=Configuration," + domaindn)
try:
res = samdb.search(searchdn,
scope=ldb.SCOPE_SUBTREE,
expression=filter)
unix_domain = res[0]["nETBIOSName"][0]
except IndexError:
raise CommandError('Unable to find Unix domain')
unix_home = "/home/{0}/{1}".format(unix_domain, username)
if not lp.get("idmap_ldb:use rfc2307"):
self.outf.write("You are setting a Unix/RFC2307 UID & GID. "
"You may want to set 'idmap_ldb:use rfc2307 = Yes'"
" in smb.conf to use the attributes for "
"XID/SID-mapping.\n")
user_mod = """
dn: {0}
changetype: modify
add: uidNumber
uidNumber: {1}
add: gidnumber
gidNumber: {2}
add: gecos
gecos: {3}
add: uid
uid: {4}
add: loginshell
loginShell: {5}
add: unixHomeDirectory
unixHomeDirectory: {6}
""".format(user_dn, uid_number, gid_number, gecos, uid, login_shell, unix_home)
samdb.transaction_start()
try:
samdb.modify_ldif(user_mod)
except ldb.LdbError as e:
raise CommandError("Failed to modify user '{0}': {1}"
.format(username, e))
else:
samdb.transaction_commit()
self.outf.write("Modified User '{}' successfully\n"
.format(username))
class cmd_user(SuperCommand):
"""User management."""
@@ -2621,3 +2844,4 @@ class cmd_user(SuperCommand):
subcommands["edit"] = cmd_user_edit()
subcommands["show"] = cmd_user_show()
subcommands["move"] = cmd_user_move()
subcommands["addunixattrs"] = cmd_user_add_unix_attrs()