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

« back to all changes in this revision

Viewing changes to trampoline/trampoline.c

  • Committer: mattgiuca
  • Date: 2008-01-25 06:20:32 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:313
test/test_framework: Updated examples, a bit of better descriptions, sample
    partial solutions, etc.

Added all sample subject material.
This has been copied from test/test_framework and modified slightly.
There is now a subject "sample" with 2 worksheets. The 1st worksheet has 3
exercises. These work in IVLE by default.

setup.py: Added code to install subjects into the designated directory. This
means that installing IVLE will result in the sample subjects being
immediately available.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 *  sudo chown root:root trampoline; sudo chroot +s trampoline
34
34
 */
35
35
 
36
 
#define _XOPEN_SOURCE
37
 
 
38
36
#include <stdio.h>
39
37
#include <stdlib.h>
40
38
#include <string.h>
41
39
#include <unistd.h>
42
 
#include <syslog.h>
43
 
#include <sys/mount.h>
44
 
#include <sys/types.h>
45
 
#include <sys/stat.h>
46
 
#include <sys/time.h>
47
 
#include <sys/resource.h>
48
 
#include <limits.h>
49
 
#include <signal.h>
50
40
 
51
41
/* conf.h is admin-configured by the setup process.
52
42
 * It defines jail_base.
53
43
 */
54
44
#include "conf.h"
55
45
 
56
 
#include "norm.h"
57
 
 
58
46
/* Returns TRUE if the given uid is allowed to execute trampoline.
59
47
 * Only root or the web server should be allowed to execute.
60
48
 * This is determined by the whitelist allowed_uids in conf.h.
98
86
    /* At this point we are executing as the child process */
99
87
 
100
88
    /* Change the file mode mask */
101
 
    umask(022);
 
89
    umask(0);
102
90
 
103
91
    /* Create a new SID for the child process */
104
92
    sid = setsid();
121
109
static void usage(const char* nm)
122
110
{
123
111
    fprintf(stderr,
124
 
        "usage: %s [-d] [-u] <uid> <jail> <cwd> <program> [args...]\n", nm);
 
112
        "usage: %s [-d] <uid> <jail> <cwd> <program> [args...]\n", nm);
125
113
    exit(1);
126
114
}
127
115
 
128
 
#ifdef IVLE_AUFS_JAILS
129
 
/* Die more pleasantly if mallocs fail. */
130
 
void *die_if_null(void *ptr)
131
 
{
132
 
    if (ptr == NULL)
133
 
    {
134
 
        perror("not enough memory");
135
 
        exit(1);
136
 
    }
137
 
    return ptr;
138
 
}
139
 
 
140
 
/* Find the path of the user components of a jail, given a mountpoint. */
141
 
char *jail_src(const char* jailpath)
142
 
{
143
 
    char* src;
144
 
    int srclen;
145
 
    int dstlen;
146
 
 
147
 
    srclen = strlen(jail_src_base);
148
 
    dstlen = strlen(jail_base);
149
 
    
150
 
    src = die_if_null(malloc(strlen(jailpath) + (srclen - dstlen) + 1));
151
 
    strcpy(src, jail_src_base);
152
 
    strcat(src, jailpath+dstlen);
153
 
 
154
 
    return src;
155
 
}
156
 
 
157
 
/* Check for the validity of a jail in the given path, mounting it if it looks
158
 
 * empty.
159
 
 * TODO: Updating /etc/mtab would be nice. */
160
 
void mount_if_needed(const char* jailpath)
161
 
{
162
 
    char *jailsrc;
163
 
    char *jaillib;
164
 
    char *mountdata;
165
 
 
166
 
    /* Check if there is something useful in the jail. If not, it's probably
167
 
     * not mounted. */
168
 
    jaillib = die_if_null(malloc(strlen(jailpath) + 5));
169
 
    sprintf(jaillib, "%s/lib", jailpath);
170
 
 
171
 
    if (access(jaillib, F_OK))
172
 
    {
173
 
        /* No /lib? Mustn't be mounted. Mount it, creating the dir if needed. */
174
 
        if (access(jailpath, F_OK))
175
 
        {
176
 
             if(mkdir(jailpath, 0755))
177
 
             {
178
 
                 syslog(LOG_ERR, "could not create mountpoint %s\n", jailpath);
179
 
                 perror("could not create jail mountpoint");
180
 
                 exit(1);
181
 
             }
182
 
             syslog(LOG_NOTICE, "created mountpoint %s\n", jailpath);
183
 
        }
184
 
       
185
 
        jailsrc = jail_src(jailpath);
186
 
        mountdata = die_if_null(malloc(3 + strlen(jailsrc) + 4 + strlen(jail_system) + 3 + 1));
187
 
        sprintf(mountdata, "br:%s=rw:%s=ro", jailsrc, jail_system);
188
 
        if (mount("none", jailpath, "aufs", 0, mountdata))
189
 
        {
190
 
            syslog(LOG_ERR, "could not mount %s\n", jailpath);
191
 
            perror("could not mount");
192
 
            exit(1);
193
 
        } 
194
 
 
195
 
        syslog(LOG_INFO, "mounted %s\n", jailpath);
196
 
 
197
 
        free(jailsrc);
198
 
        free(mountdata);
199
 
    }
200
 
 
201
 
    free(jaillib);
202
 
}
203
 
#endif /* IVLE_AUFS_JAILS */
204
 
 
205
 
/* Unsets any signal mask applied by the parent process */
206
 
int unmask_signals(void)
207
 
{
208
 
    int result;
209
 
    sigset_t* sigset;
210
 
    sigset = die_if_null(malloc(sizeof(sigset_t)));
211
 
    sigemptyset(sigset);
212
 
    result = sigprocmask(SIG_SETMASK, sigset, NULL);
213
 
    free(sigset);
214
 
    printf("%d", result);
215
 
    return result;
216
 
}
217
 
 
218
116
int main(int argc, char* const argv[])
219
117
{
220
118
    char* jailpath;
224
122
    int uid;
225
123
    int arg_num = 1;
226
124
    int daemon_mode = 0;
227
 
    int unlimited = 0;
228
 
    char canonical_jailpath[PATH_MAX];
229
125
 
230
126
    /* Disallow execution from all users but the whitelisted ones, and root */
231
127
    if (!uid_allowed(getuid()))
249
145
        daemon_mode = 1;
250
146
        arg_num++;
251
147
    }
252
 
 
253
 
    if (strcmp(argv[arg_num], "-u") == 0)
254
 
    {
255
 
        if (argc < 6)
256
 
        {
257
 
            usage(argv[0]);
258
 
        }
259
 
        unlimited = 1;
260
 
        arg_num++;
261
 
    }
262
148
    uid = atoi(argv[arg_num++]);
263
149
    jailpath = argv[arg_num++];
264
150
    work_dir = argv[arg_num++];
272
158
        exit(1);
273
159
    }
274
160
 
275
 
    /* Jail path must be an absolute path,
276
 
     * and it must begin with jail_base.
 
161
    /* Jail path must:
 
162
     * Be non-empty
 
163
     * Start with a '/'
 
164
     * Not contain "/.."
 
165
     * Begin with jail_base
277
166
     */
278
 
    if (norm(canonical_jailpath, PATH_MAX, jailpath) != 0)
279
 
    {
280
 
        fprintf(stderr, "bad jail path: %s\n", jailpath);
281
 
        exit(1);
282
 
    }
283
 
    if (strncmp(canonical_jailpath, jail_base, strlen(jail_base)))
284
 
    {
285
 
        fprintf(stderr, "bad jail path: %s\n", jailpath);
286
 
        exit(1);
287
 
    }
288
 
 
289
 
    openlog("trampoline", LOG_CONS | LOG_PID | LOG_NDELAY, LOG_USER);
290
 
 
291
 
    #ifdef IVLE_AUFS_JAILS
292
 
    mount_if_needed(canonical_jailpath);
293
 
    #endif /* IVLE_AUFS_JAILS */
 
167
    if (strlen(jailpath) < 1 || jailpath[0] != '/'
 
168
            || strstr(jailpath, "/..")
 
169
            || strncmp(jailpath, jail_base, strlen(jail_base)))
 
170
    {
 
171
        fprintf(stderr, "bad jail path: %s\n", jailpath);
 
172
        exit(1);
 
173
    }
294
174
 
295
175
    /* chroot into the jail.
296
176
     * Henceforth this process, and its children, cannot see anything above
297
 
     * canoncial_jailpath. */
298
 
    if (chroot(canonical_jailpath))
 
177
     * jailpath. */
 
178
    if (chroot(jailpath))
299
179
    {
300
 
        syslog(LOG_ERR, "chroot to %s failed\n", canonical_jailpath);
301
 
 
302
180
        perror("could not chroot");
303
181
        exit(1);
304
182
    }
313
191
    /* setuid to the given user ID.
314
192
     * Henceforth we will be running as this user instead of root.
315
193
     */
316
 
    if (setgid(uid))
317
 
    {
318
 
        perror("could not setgid");
319
 
        exit(1);
320
 
    }
321
 
 
322
194
    if (setuid(uid))
323
195
    {
324
196
        perror("could not setuid");
325
197
        exit(1);
326
198
    }
327
199
 
328
 
    /* set user resource limits */
329
 
    if (!unlimited)
330
 
    {
331
 
        struct rlimit l;
332
 
        /* Process adress space in memory */
333
 
        l.rlim_cur = 192 * 1024 * 1024; /* 192MiB */
334
 
        l.rlim_max = 256 * 1024 * 1024; /* 256MiB */
335
 
        if (setrlimit(RLIMIT_AS, &l))
336
 
        {
337
 
            perror("could not setrlimit/RLIMIT_AS");
338
 
            exit(1);
339
 
        }
340
 
        
341
 
        /* Process data segment in memory
342
 
         * Note: This requires a kernel patch to work correctly otherwise it is  
343
 
         * ineffective (thus you are only limited by RLIMIT_AS)
344
 
         */
345
 
        l.rlim_cur = 192 * 1024 * 1024; /* 192MiB */
346
 
        l.rlim_max = 256 * 1024 * 1024; /* 256MiB */
347
 
        if (setrlimit(RLIMIT_DATA, &l))
348
 
        {
349
 
            perror("could not setrlimit/RLIMIT_DATA");
350
 
            exit(1);
351
 
        }
352
 
 
353
 
        /* Core */
354
 
        l.rlim_cur = 0; /* No core files */
355
 
        l.rlim_max = 0; /* No core files */
356
 
        if (setrlimit(RLIMIT_CORE, &l))
357
 
        {
358
 
            perror("could not setrlimit/RLIMIT_CORE");
359
 
            exit(1);
360
 
        }
361
 
 
362
 
        /* CPU */
363
 
        l.rlim_cur = 25; /* 25 Seconds */
364
 
        l.rlim_max = 30; /* 30 Seconds */
365
 
        if (setrlimit(RLIMIT_CPU, &l))
366
 
        {
367
 
            perror("could not setrlimit/RLIMIT_CPU");
368
 
            exit(1);
369
 
        }
370
 
 
371
 
        /* File Size */
372
 
        l.rlim_cur = 64 * 1024 * 1024; /* 64MiB */
373
 
        l.rlim_max = 72 * 1024 * 1024; /* 72MiB */
374
 
if (setrlimit(RLIMIT_FSIZE, &l))
375
 
        {
376
 
            perror("could not setrlimit/RLIMIT_FSIZE");
377
 
            exit(1);
378
 
        }
379
 
    }
380
 
 
381
 
    /* Remove any signal handler masks so we can send signals to the child */
382
 
    if(unmask_signals())
383
 
    {
384
 
        perror("could not unmask signals");
385
 
        exit(1);
386
 
    }
387
 
 
388
 
    /* If everything was OK daemonize (if required) */
389
200
    if (daemon_mode)
390
201
    {
391
202
        daemonize();
397
208
     * and the first argument will be the script. */
398
209
    execv(prog, args);
399
210
 
 
211
    /* XXX if (daemon_mode) use syslog? */
400
212
    /* nb exec won't return unless there was an error */
401
 
    syslog(LOG_ERR, "exec of %s in %s failed", prog, canonical_jailpath);
402
 
 
403
213
    perror("could not exec");
404
 
    closelog();
405
214
    return 1;
406
215
}