1
# IVLE - Informatics Virtual Learning Environment
2
# Copyright (C) 2007-2008 The University of Melbourne
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
# GNU General Public License for more details.
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
# Allows creation of users. This sets up the following:
23
# * User's jail and home directory within the jail.
24
# * Subversion repository (TODO)
25
# * Check out Subversion workspace into jail (TODO)
26
# * Database details for user
29
# TODO: Sanitize login name and other fields.
30
# Users must not be called "temp" or "template".
32
# TODO: When creating a new home directory, chown it to its owner
45
def make_svn_repo(login, throw_on_error=True):
46
"""Create a repository for the given user.
48
path = os.path.join(conf.svn_repo_path, login)
50
res = os.system("svnadmin create '%s'" % path)
51
if res != 0 and throw_on_error:
52
raise Exception("Cannot create repository for %s" % login)
53
except Exception, exc:
58
os.system("chown -R www-data:www-data %s" % path)
62
def rebuild_svn_config():
63
"""Build the complete SVN configuration file.
66
res = conn.query("SELECT login, rolenm FROM login;").dictresult()
70
if role not in groups:
72
groups[role].append(r['login'])
73
f = open(conf.svn_conf + ".new", "w")
74
f.write("# IVLE SVN Repositories Configuration\n")
75
f.write("# Auto-generated on %s\n" % time.asctime())
78
for (g,ls) in groups.iteritems():
79
f.write("%s = %s\n" % (g, ",".join(ls)))
83
f.write("[%s:/]\n" % login)
84
f.write("%s = rw\n" % login)
85
#f.write("@tutor = r\n")
86
#f.write("@lecturer = rw\n")
87
#f.write("@admin = rw\n")
90
os.rename(conf.svn_conf + ".new", conf.svn_conf)
92
def make_svn_config(login, throw_on_error=True):
93
"""Add an entry to the apache-svn config file for the given user.
94
Assumes the given user is either a guest or a student.
96
f = open(conf.svn_conf, "a")
97
f.write("[%s:/]\n" % login)
98
f.write("%s = rw\n" % login)
99
#f.write("@tutor = r\n")
100
#f.write("@lecturer = rw\n")
101
#f.write("@admin = rw\n")
105
def make_svn_auth(login, throw_on_error=True):
106
"""Setup svn authentication for the given user.
107
FIXME: create local.auth entry
109
passwd = md5.new(uuid.uuid4().bytes).digest().encode('hex')
110
if os.path.exists(conf.svn_auth_ivle):
115
db.DB().update_user(login, svn_pass=passwd)
117
res = os.system("htpasswd -%smb %s %s %s" % (create,
120
if res != 0 and throw_on_error:
121
raise Exception("Unable to create ivle-auth for %s" % login)
125
def make_jail(username, uid, force=True):
126
"""Creates a new user's jail space, in the jail directory as configured in
129
This expects there to be a "template" directory within the jail root which
130
contains all the files for a sample student jail. It creates the student's
131
directory in the jail root, by making a hard-link copy of every file in the
132
template directory, recursively.
134
Returns the path to the user's home directory.
136
Chowns the user's directory within the jail to the given UID.
138
Note: This takes separate username and uid arguments. The UID need not
139
*necessarily* correspond to a Unix username at all, if all you are
140
planning to do is setuid to it. This allows the caller the freedom of
141
deciding the binding between username and uid, if any.
143
force: If false, exception if jail already exists for this user.
144
If true (default), overwrites it, but preserves home directory.
146
# MUST run as root or some of this may fail
148
raise Exception("Must run make_jail as root")
150
templatedir = os.path.join(conf.jail_base, 'template')
151
if not os.path.isdir(templatedir):
152
raise Exception("Template jail directory does not exist: " +
154
# tempdir is for putting backup homes in
155
tempdir = os.path.join(conf.jail_base, 'temp')
156
if not os.path.exists(tempdir):
158
elif not os.path.isdir(tempdir):
161
userdir = os.path.join(conf.jail_base, username)
162
homedir = os.path.join(userdir, 'home')
164
if os.path.exists(userdir):
166
raise Exception("User's jail already exists")
167
# User jail already exists. Blow it away but preserve their home
169
# Ignore warnings about the use of tmpnam
170
warnings.simplefilter('ignore')
171
homebackup = os.tempnam(tempdir)
172
warnings.resetwarnings()
173
# Note: shutil.move does not behave like "mv" - it does not put a file
174
# into a directory if it already exists, just fails. Therefore it is
175
# not susceptible to tmpnam symlink attack.
176
shutil.move(homedir, homebackup)
178
# Any errors that occur after making the backup will be caught and
179
# the backup will be un-made.
180
# XXX This will still leave the user's jail in an unusable state,
181
# but at least they won't lose their files.
182
shutil.rmtree(userdir)
184
# Hard-link (copy aliasing) the entire tree over
185
linktree(templatedir, userdir)
187
# Set up the user's home directory (restore backup)
188
# First make sure the directory is empty and its parent exists
190
shutil.rmtree(homedir)
193
# XXX If this fails the user's directory will be lost (in the temp
194
# directory). But it shouldn't fail as homedir should not exist.
196
shutil.move(homebackup, homedir)
197
return os.path.join(homedir, username)
199
# No user jail exists
200
# Hard-link (copy aliasing) the entire tree over
201
linktree(templatedir, userdir)
203
# Set up the user's home directory
204
userhomedir = os.path.join(homedir, username)
205
os.mkdir(userhomedir)
206
# Chown (and set the GID to the same as the UID).
207
os.chown(userhomedir, uid, uid)
208
# Chmod to rwxr-xr-x (755)
209
os.chmod(userhomedir, 0755)
212
def linktree(src, dst):
213
"""Recursively hard-link a directory tree using os.link().
215
The destination directory must not already exist.
216
If exception(s) occur, an Error is raised with a list of reasons.
218
Symlinks are preserved (in fact, hard links are created which point to the
221
Code heavily based upon shutil.copytree from Python 2.5 library.
223
names = os.listdir(src)
227
srcname = os.path.join(src, name)
228
dstname = os.path.join(dst, name)
230
if os.path.isdir(srcname):
231
linktree(srcname, dstname)
233
os.link(srcname, dstname)
234
# XXX What about devices, sockets etc.?
235
except (IOError, os.error), why:
236
errors.append((srcname, dstname, str(why)))
237
# catch the Error from the recursive copytree so that we can
238
# continue with other files
239
except Exception, err:
240
errors.append(err.args[0])
242
shutil.copystat(src, dst)
244
# can't copy file access times on Windows
247
errors.extend((src, dst, str(why)))
249
raise Exception, errors
251
def make_user_db(throw_on_error = True, **kwargs):
252
"""Creates a user's entry in the database, filling in all the fields.
253
All arguments must be keyword args. They are the fields in the table.
254
However, instead of supplying a "passhash", you must supply a
255
"password" argument, which will be hashed internally.
256
Also do not supply a state. All users are created in the "no_agreement"
258
Throws an exception if the user already exists.
261
dbconn.create_user(**kwargs)
264
if kwargs['password']:
265
if os.path.exists(conf.svn_auth_local):
269
res = os.system("htpasswd -%smb %s %s %s" % (create,
273
if res != 0 and throw_on_error:
274
raise Exception("Unable to create local-auth for %s" % kwargs['login'])