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

« back to all changes in this revision

Viewing changes to setup/build.py

  • 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:
29
29
def build(args):
30
30
    usage = """usage: %prog build [options]
31
31
(requires root)
32
 
Compiles platform-specific code, and optionally Python too.
 
32
Compiles all files and sets up a jail template in the source directory.
 
33
-O is recommended to cause compilation to be optimised.
33
34
Details:
34
35
Compiles (GCC) bin/trampoline/trampoline.c to bin/trampoline/trampoline.
35
36
Compiles (GCC) bin/timount/timount.c to bin/timount/timount.
36
 
Optionally generates .pyc files for all the IVLE .py files."""
 
37
Creates jail with system and student packages installed from MIRROR.
 
38
Copies console/ to a location within the jail.
 
39
Copies OS programs and files to corresponding locations within the jail
 
40
  (eg. python and Python libs, ld.so, etc).
 
41
Generates .pyc or .pyo files for all the IVLE .py files."""
37
42
 
38
43
    # Parse arguments
39
44
    parser = optparse.OptionParser(usage)
40
45
    parser.add_option("-n", "--dry",
41
46
        action="store_true", dest="dry",
42
47
        help="Print out the actions but don't do anything.")
43
 
    parser.add_option("--no-compile",
44
 
        action="store_true", dest="nocompile",
45
 
        help="Don't byte-compile .py files.")
46
 
    parser.add_option("-t", "--trampoline-uids",
47
 
        action="store", dest="tuids", default="33",
48
 
        help="Comma-separated list of UIDs allowed to use trampoline. "
49
 
             "(default: 33)")
 
48
    parser.add_option("-j", "--rebuildjail",
 
49
        action="store_true", dest="rebuildjail",
 
50
        help="Don't recreate jail/ - just update its IVLE code.")
 
51
    parser.add_option("-m", "--mirror",
 
52
        action="store", dest="apt_mirror",
 
53
        help="Sets the APT mirror used to build the jail.")
50
54
    (options, args) = parser.parse_args(args)
51
55
 
52
56
    # Call the real function
53
 
    return __build(options.dry, options.nocompile, options.tuids)
 
57
    return __build(options.dry, options.rebuildjail, options.apt_mirror)
54
58
 
55
 
def __build(dry=False, no_compile=None, tuids=None):
 
59
def __build(dry=False,rebuildjail=False,apt_mirror=None):
 
60
    # We need to import the one in the working copy, not in the system path.
 
61
    confmodule = __import__("ivle/conf/conf")
56
62
    install_list = util.InstallList()
57
63
 
 
64
    # Must be run as root or a dry run  
58
65
    if dry:
59
66
        print "Dry run (no actions will be executed)\n"
60
 
 
61
 
    # Create trampoline configuration.
62
 
    conf_hfile = os.path.join(os.getcwd(), "bin/trampoline/conf.h")
63
 
    conf_h = open(conf_hfile, "w")
64
 
 
65
 
    conf_h.write("""/* IVLE Configuration File
66
 
 * conf.h
67
 
 * Administrator settings required by trampoline.
68
 
 * Note: trampoline will have to be rebuilt in order for changes to this file
69
 
 * to take effect.
70
 
 */
71
 
 
72
 
#define IVLE_AUFS_JAILS
73
 
 
74
 
/* Which user IDs are allowed to run the trampoline.
75
 
 * This list should be limited to the web server user.
76
 
 * (Note that root is an implicit member of this list).
77
 
 */
78
 
static const int allowed_uids[] = { %s };
79
 
""" % tuids)
80
 
    conf_h.close()
 
67
    
 
68
    if not dry and os.geteuid() != 0:
 
69
        print >>sys.stderr, "Must be root to run build"
 
70
        print >>sys.stderr, "(I need to chroot)."
 
71
        return 1
 
72
    
 
73
    if not rebuildjail and not os.path.exists('jail'):
 
74
        print >> sys.stderr, "No jail exists -- please rerun with -j."
 
75
        return 1
81
76
 
82
77
    # Compile the trampoline
83
78
    curdir = os.getcwd()
91
86
    util.action_runprog('make', [], dry)
92
87
    os.chdir(curdir)
93
88
 
 
89
    if rebuildjail:
 
90
        # Create the jail and its subdirectories
 
91
        # Note: Other subdirs will be made by copying files
 
92
        if apt_mirror != None:
 
93
            os.environ['MIRROR'] = apt_mirror
 
94
        util.action_runprog('setup/buildjail.sh', [], dry)
 
95
 
 
96
    # Copy all console and operating system files into the jail
 
97
    jail_share = os.path.join('jail', confmodule.share_path[1:])
 
98
    jail_services = os.path.join(jail_share, 'services')
 
99
    util.action_copylist(install_list.list_services, jail_share, dry)
 
100
 
 
101
    # Chmod the python console
 
102
    util.action_chmod_x(os.path.join(jail_services, 'python-console'), dry)
 
103
    util.action_chmod_x(os.path.join(jail_services, 'fileservice'), dry)
 
104
    util.action_chmod_x(os.path.join(jail_services, 'serveservice'), dry)
 
105
 
 
106
    # Also copy the IVLE lib directory into the jail
 
107
    # This is necessary for running certain services
 
108
    jail_site_packages = os.path.join('jail',
 
109
                                      confmodule.python_site_packages[1:])
 
110
    util.action_copylist(install_list.list_ivle_lib, jail_site_packages, dry)
 
111
    # IMPORTANT: ivle/conf/conf.py contains details
 
112
    # which could compromise security if left in the jail (such as the DB
 
113
    # password).
 
114
    # The "safe" version is in jailconf.py. Delete conf.py and replace it with
 
115
    # jailconf.py.
 
116
    util.action_copyfile('ivle/conf/jailconf.py',
 
117
        os.path.join(jail_site_packages, 'ivle/conf/conf.py'), dry)
 
118
 
94
119
    # Compile .py files into .pyc or .pyo files
95
 
    if not no_compile:
96
 
        compileall.compile_dir('ivle', quiet=True)
97
 
        compileall.compile_dir('services', quiet=True)
 
120
    compileall.compile_dir('www', quiet=True)
 
121
    compileall.compile_dir('ivle', quiet=True)
 
122
    compileall.compile_dir('services', quiet=True)
 
123
    compileall.compile_dir(os.path.join(jail_site_packages, 'ivle'),quiet=True)
98
124
 
99
125
    return 0
100
126