# # users.py: Code for creating user accounts and setting the root password # # Copyright (C) 2006, 2007 Red Hat, Inc. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Author(s): Chris Lumens # import libuser import string import crypt import random import tempfile import os import os.path def createLuserConf(instPath): """Writes a libuser.conf for instPath.""" (fd, fn) = tempfile.mkstemp(prefix="libuser.") buf = """ [defaults] skeleton = %(instPath)s/etc/skel mailspooldir = %(instPath)s/var/mail crypt_style = md5 modules = files shadow create_modules = files shadow [files] directory = %(instPath)s/etc [shadow] directory = %(instPath)s/etc """ % {"instPath": instPath} os.write(fd, buf) os.close(fd) os.environ["LIBUSER_CONF"] = fn def cryptPassword(password, useMD5): if useMD5: salt = "$1$" saltLen = 8 else: salt = "" saltLen = 2 for i in range(saltLen): salt = salt + random.choice (string.letters + string.digits + './') return crypt.crypt (password, salt) class Users: def __init__ (self): self.admin = libuser.admin() def createUser (self, name, password=None, isCrypted=False, groups=[], homedir=None, shell=None, uid=None, lock=False, root="/mnt/sysimage"): if self.admin.lookupUserByName(name): return None userEnt = self.admin.initUser(name) groupEnt = self.admin.initGroup(name) grpLst = filter(lambda grp: grp, map(lambda name: self.admin.lookupGroupByName(name), groups)) userEnt.set(libuser.GIDNUMBER, [groupEnt.get(libuser.GIDNUMBER)[0]] + map(lambda grp: grp.get(libuser.GIDNUMBER)[0], grpLst)) if not homedir: homedir = "/home/" + name # Do this to make the user's home dir under the install root. if homedir[0] != "/": userEnt.set(libuser.HOMEDIRECTORY, root + "/" + homedir) else: userEnt.set(libuser.HOMEDIRECTORY, root + homedir) if shell: userEnt.set(libuser.LOGINSHELL, shell) if uid >= 0: userEnt.set(libuser.UIDNUMBER, uid) self.admin.addUser(userEnt) self.admin.addGroup(groupEnt) if password: if isCrypted: self.admin.setpassUser(userEnt, password, isCrypted) else: self.admin.setpassUser(userEnt, cryptPassword(password, True), isCrypted) if lock: self.admin.lockUser(userEnt) # Add the user to all the groups they should be part of. for grp in grpLst: grp.add(libuser.MEMBERNAME, name) self.admin.modifyGroup(grp) # Now set the correct home directory to fix up passwd. userEnt.set(libuser.HOMEDIRECTORY, homedir) self.admin.modifyUser(userEnt) return True def setRootPassword(self, password, isCrypted, useMD5, lock): rootUser = self.admin.lookupUserByName("root") if isCrypted: self.admin.setpassUser(rootUser, password, True) else: self.admin.setpassUser(rootUser, cryptPassword(password, useMD5), True) if lock: self.admin.lockUser(rootUser) self.admin.modifyUser(rootUser)