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

« back to all changes in this revision

Viewing changes to doc/dev/architecture.rst

  • Committer: David Coles
  • Date: 2009-11-27 05:34:33 UTC
  • mto: This revision was merged to the branch mainline in revision 1322.
  • Revision ID: coles.david@gmail.com-20091127053433-8ki9nm6xrkogxq67
Added diagram of system architecture

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. IVLE - Informatics Virtual Learning Environment
 
2
   Copyright (C) 2007-2009 The University of Melbourne
 
3
 
 
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.
 
8
 
 
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.
 
13
 
 
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
 
17
 
 
18
*******************
 
19
System Architecture
 
20
*******************
 
21
 
 
22
IVLE is a complex piece of software that integrates closely with the 
 
23
underlying system. It can be considered part web service and part local system 
 
24
daemon. Due to the implementation of these parts it is tied to Apache Web 
 
25
Server (mainly  due to the use of mod_python) and Linux. 
 
26
 
 
27
 
 
28
Jail System
 
29
===========
 
30
 
 
31
One of the main features of IVLE is it's ability to execute user's code in a 
 
32
customised environment that prevents access to other users files or underlying 
 
33
file system as well as placing basic resource limits to prevent users from 
 
34
accidentally exhausting shared resources such as CPU time and memory.
 
35
 
 
36
 
 
37
Trampoline
 
38
----------
 
39
 
 
40
To each user, it appears that they have their own private Unix filesystem 
 
41
containing software, libraries and a home directory to do with what they 
 
42
please. This is mainly done by the setuid root program ``trampoline`` (See 
 
43
:file:`bin/trampoline/trampoline.c`) which mounts the users home directory, 
 
44
sets up the users environment, jumps into the user's jail using the 
 
45
:manpage:`chroot(2)` system call and finally drops privileges to the desired 
 
46
user and group.
 
47
 
 
48
To prevent abuse, ``trampoline`` can only be used by root or one of the uids 
 
49
specified when trampoline is built by ``setup.py build`` (defaults to UID 33, 
 
50
www-data on Debian systems). Since it's one of two C programs involved in IVLE 
 
51
and runs setuid root it is rather secuity sensative.
 
52
 
 
53
Base Image Generation
 
54
---------------------
 
55
 
 
56
All user jails share a common base image that contains the files required for 
 
57
both IVLE's operation and for executing user code. This base image is 
 
58
generated automatically by the ``ivle-buildjail`` script. This then calls the 
 
59
distribution dependant details in :mod:`ivle.jailbuilder` module. At present 
 
60
we only support building jails for Debian derived systems using 
 
61
:program:`debootstrap`.
 
62
 
 
63
The contents of the base image contains a few core packages required for the 
 
64
operation of IVLE - Python and the Python CJSON and SVN libraries. Other 
 
65
options that can be configured in :file:`/etc/ivle/ivle.conf` are the file 
 
66
mirror that debootstrap should use, the suite to build (such as hardy or 
 
67
jaunty), extra apt-sources, extra apt keys and any additional packages to 
 
68
install.
 
69
 
 
70
To prevent users from altering files in the base image we change the 
 
71
permissions of :file:`/tmp`, :file:`/var/tmp` and :file:`/var/lock` to not be 
 
72
world writeable and check that no other files are world writeable.
 
73
 
 
74
Finally we make the user dependent :file:`/etc/passwd` and 
 
75
:file:`/etc/ivle/ivle.conf` symlinks to files in the :file:`/home` directory 
 
76
so that they will be used when we mount a user's home directory.
 
77
 
 
78
Mounting Home Directories
 
79
-------------------------
 
80
 
 
81
To give the appearance of a private file system we need to merge together a 
 
82
user's local home directory with the base image. In the first release of IVLE 
 
83
this was done off-line by hardlinking all the files into the target directory, 
 
84
but for more than a handful of users this process could take several hours and 
 
85
also ran the risk of exhausting inodes on the underlying file system.
 
86
 
 
87
The first solution was to use  `AUFS <http://aufs.sourceforge.net/>`_ to mount 
 
88
the user's home directory over a read-only version of the base on demand. This 
 
89
was implemented as part of ``trampoline`` and used a secondary program 
 
90
``timount`` (see :file:`bin/timount/timount.c`) run at regular intervals to 
 
91
unmount unused jails. This uses the :const:`MNT_EXPIRE` flag for 
 
92
:manpage:`umount(2)` (available since Linux 2.6.8) that only unmounts a 
 
93
directory if it hasn't been accessed since the previous call with 
 
94
:const:`MNT_EXPIRE`.
 
95
 
 
96
While quite effective, AUFS appears to cause NFS caching issues when IVLE is 
 
97
run as a cluster as well as questionable inclusion status in newer 
 
98
distributions. The current system used in IVLE the much older *bind mount* 
 
99
feature which allows directories to be accessible from another location in the 
 
100
file system. By carefully read-only bind mounting the jail image and then bind 
 
101
mounting the user's :file:`/home` and :file:`/tmp` directory data over the top 
 
102
we can create a jail with only three bind mounts and at virtually no 
 
103
filesystem overhead.
 
104
 
 
105
Entering the Jail
 
106
-----------------
 
107
 
 
108
Before running the specified program in the users jail we need to 
 
109
:manpage:`chroot(2)` into the users jail and update the processes environment 
 
110
so that we have the correct environment variables and user/group ids.
 
111
 
 
112
At this stage we also may apply a number of resource limits (see 
 
113
:manpage:`setrlimit`) to prevent run away processes (such as those containing 
 
114
infinite loops or "fork bombs") from exhausting all system resources. The 
 
115
default limits are on maximum address space (:const:`RLIMIT_AS`), process data 
 
116
space (:const:`RLIMIT_DATA`), core dump size (:const:`RLIMIT_CORE`), CPU time 
 
117
(:const:`RLIMIT_CPU`), file size (:const:`RLIMIT_FSIZE`) and number of 
 
118
processes that may be spawned (:const:`RLIMIT_NPROC`).
 
119
 
 
120
Unfortunately due to glibc's :manpage:`malloc(2)` implementation being able to 
 
121
allocate memory using :manpage:`mmap(2)`, :const:`RLIMIT_DATA` does not 
 
122
provide an effective limit on the amount of memory that a process can allocate 
 
123
(short of applying a kernel patch). Thus the only way to limit memory 
 
124
allocations is by placing limits on the address space, but this can cause 
 
125
problems with certain applications that allocate far larger address spaces 
 
126
than the real memory used. For this reason :const:`RLIMIT_AS` is currently set 
 
127
very large.
 
128
 
 
129
Console
 
130
=======
 
131
 
 
132
Version Control
 
133
===============
 
134
 
 
135
Worksheets
 
136
==========
 
137
 
 
138
Database
 
139
========
 
140
 
 
141
Template
 
142
========
 
143
 
 
144
..  TODO: Not yet merged
 
145
    Object Publishing
 
146
    =================