~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to bin/ivle-mountallusers

  • Committer: matt.giuca
  • Date: 2009-01-14 10:10:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1132
The new ivle.database.User class is now used in Request and usrmgt, which
    means it is now almost universally used in favour of ivle.user.User (now
    deprecated).

Noticeable change: The minor bug where the change to a user object in the
    database is not reflected in the user's session (eg. changing nick doesn't
    update title until log out).

ivle.dispatch:
    Session now contains 'login' (username string) rather than 'user' (full
        ivle.user.User object). This is a unicode string now.

    req.user is now a ivle.database.User object rather than an ivle.user.User
        object. This makes for a whole lot of really subtle differences, but
        largely conforms to the same interface. Note that strings must now all
        be unicode.

    login: Removed use of ivle.db. Now uses User object.

    html: Now handles unicode login and config options.

ivle.db: Removed update_user. Now replaced with Storm model.

ivle.database: Renamed has_cap back to hasCap (saved for later). Fixed small
    unicode bug.

ivle.makeuser.make_svn_auth now takes a store object.

usrmgt-server: Use new User class.

userservice: Now uses User class internally.
    get_user action now returns ISO 8601 date format, rather than a
        time tuple. (Wasn't being used).
    get_user action no longer transmits local_password (small security risk;
        note that it wasn't possible to see this for any user other than
        yourself unless admin).

ivle.util - added function object_to_dict.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
# Author:  William Grant
21
21
# Date:    4/7/2008
22
22
 
23
 
# Script to bind-mount jails for all users on the system.
 
23
# Script to UnionFS-mount jails for all users on the system.
24
24
# Requires root to run.
25
25
 
26
26
import sys
29
29
import optparse
30
30
import logging
31
31
 
32
 
import ivle.config
33
 
import ivle.database
 
32
import ivle.db
 
33
import ivle.conf
34
34
 
35
35
p = optparse.OptionParser()
36
36
p.add_option('--verbose', '-v', action='store_true')
49
49
                          os.path.basename(sys.argv[0])
50
50
    sys.exit(1)
51
51
 
52
 
config = ivle.config.Config()
53
 
store = ivle.database.get_store(config)
54
 
users = store.find(ivle.database.User).order_by(ivle.database.User.login)
55
 
 
56
 
logging.info("mass bind mount started")
57
 
 
58
 
for user in users:
 
52
try:
 
53
    db = ivle.db.DB()
 
54
    list = db.get_users()
 
55
    res = db.get_all('login', ['login', 'unixid'])
 
56
    def repack(flds):
 
57
        return (flds['login'], flds['unixid'])
 
58
    uids = dict(map(repack,res))
 
59
except Exception, message:
 
60
    logging.error(str(message))
 
61
    sys.exit(1)
 
62
 
 
63
logging.info("mass aufs mount started")
 
64
 
 
65
list.sort(key=lambda user: user.login)
 
66
for user in list:
59
67
    login = user.login
60
68
    # This is where we'll mount to...
61
 
    destdir = os.path.join(config['paths']['jails']['mounts'], login)
 
69
    destdir = os.path.join(ivle.conf.jail_base, login)
62
70
    # ... and this is where we'll get the user bits.
63
 
    srcdir = os.path.join(config['paths']['jails']['src'], login)
 
71
    srcdir = os.path.join(ivle.conf.jail_src_base, login)
64
72
 
65
73
    try:
66
74
        if not options.unmount:
70
78
            if not os.path.exists(destdir):
71
79
                logging.debug("user %s had no mountpoint - creating" % login)
72
80
                os.mkdir(destdir)
73
 
            if os.path.exists(os.path.join(destdir, 'lib')):
74
 
                logging.info("%s's jail appears mounted. skipping." % login)
75
 
                continue
76
 
            # Mount read only root template
77
 
            if os.system('/bin/mount --bind -o ro %s %s'
78
 
                    % (config['paths']['jails']['template'], destdir)) == 0:
79
 
                logging.debug("mounted user %s's root template" % login)
80
 
            else:
81
 
                logging.debug("failed to mount %s's root template!" % login)
82
 
                continue
83
 
            # Mount homedir
84
 
            if os.system('/bin/mount --bind %s %s'
85
 
                    % (os.path.join(srcdir,'home'), os.path.join(destdir,'home'))) == 0:
86
 
                logging.debug("mounted user %s's home." % login)
87
 
            else:
88
 
                logging.error("failed to mount user %s's home!" % login)
89
 
                os.system("/bin/umount %s" % destdir)
90
 
                continue
91
 
            # Mount tmp
92
 
            if os.system('/bin/mount --bind %s %s'
93
 
                    % (os.path.join(srcdir,'tmp'), os.path.join(destdir,'tmp'))) == 0:
94
 
                logging.debug("mounted user %s's tmp." % login)
95
 
            else:
96
 
                logging.error("failed to mount user %s's tmp!" % login)
97
 
                os.system("/bin/umount %s" % os.path.join(destdir,'home'))
98
 
                os.system("/bin/umount %s" % destdir)
99
 
                continue
100
 
            logging.info("mounted user %s's jail" % login)
 
81
        
 
82
            if os.system('/bin/mount -t aufs -o dirs=%s:%s=ro none %s'
 
83
                             % (srcdir,ivle.conf.jail_system,destdir)) == 0:
 
84
                logging.info("mounted user %s's jail." % login)
 
85
            else:
 
86
                logging.error("failed to mount user %s's jail!" % login)
101
87
        else:
102
 
            os.system("/bin/umount %s" % os.path.join(destdir,'tmp'))
103
 
            os.system("/bin/umount %s" % os.path.join(destdir,'home'))
104
 
            os.system("/bin/umount %s" % destdir)
 
88
            os.system('/bin/umount ' + destdir)
105
89
            logging.info("unmounted user %s's jail." % login)
106
90
    except Exception, message:
107
91
        logging.warning(str(message))