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

« back to all changes in this revision

Viewing changes to trampoline/trampoline.c

  • Committer: dilshan_a
  • Date: 2008-01-24 04:52:56 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:283
Fixed a bug where variables were persistent across test cases.

Added initial minutes/report/documentation on tutorials.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
 */
44
44
#include "conf.h"
45
45
 
46
 
/* Argument names */
47
 
#define ARG_UID         1
48
 
#define ARG_JAILPATH    2
49
 
#define ARG_CWD         3
50
 
#define ARG_PROG        4
51
 
 
52
 
#define MIN_ARGC        5
53
 
 
54
 
#define UID_ROOT        0
55
 
 
56
46
/* Returns TRUE if the given uid is allowed to execute trampoline.
57
47
 * Only root or the web server should be allowed to execute.
58
48
 * This is determined by the whitelist allowed_uids in conf.h.
73
63
    return 0;
74
64
}
75
65
 
 
66
/* Turn the process into a daemon using the standard
 
67
 * 2-fork technique.
 
68
 */
 
69
void daemonize(void)
 
70
{
 
71
    pid_t pid, sid;
 
72
 
 
73
    /* already a daemon */
 
74
    if ( getppid() == 1 ) return;
 
75
 
 
76
    /* Fork off the parent process */
 
77
    pid = fork();
 
78
    if (pid < 0) {
 
79
        exit(1);
 
80
    }
 
81
    /* If we got a good PID, then we can exit the parent process. */
 
82
    if (pid > 0) {
 
83
        exit(0);
 
84
    }
 
85
 
 
86
    /* At this point we are executing as the child process */
 
87
 
 
88
    /* Change the file mode mask */
 
89
    umask(0);
 
90
 
 
91
    /* Create a new SID for the child process */
 
92
    sid = setsid();
 
93
    if (sid < 0) {
 
94
        exit(1);
 
95
    }
 
96
 
 
97
    /* Change the current working directory.  This prevents the current
 
98
       directory from being locked; hence not being able to remove it. */
 
99
    if ((chdir("/")) < 0) {
 
100
        exit(1);
 
101
    }
 
102
 
 
103
    /* Redirect standard files to /dev/null */
 
104
    freopen( "/dev/null", "r", stdin);
 
105
    freopen( "/dev/null", "w", stdout);
 
106
    freopen( "/dev/null", "w", stderr);
 
107
}
 
108
 
 
109
static void usage(const char* nm)
 
110
{
 
111
    fprintf(stderr,
 
112
        "usage: %s [-d] <uid> <jail> <cwd> <program> [args...]\n", nm);
 
113
    exit(1);
 
114
}
 
115
 
76
116
int main(int argc, char* const argv[])
77
117
{
78
118
    char* jailpath;
 
119
    char* work_dir;
 
120
    char* prog;
 
121
    char* const * args;
79
122
    int uid;
 
123
    int arg_num = 1;
 
124
    int daemon_mode = 0;
80
125
 
81
126
    /* Disallow execution from all users but the whitelisted ones, and root */
82
127
    if (!uid_allowed(getuid()))
86
131
    }
87
132
 
88
133
    /* Args check and usage */
89
 
    if (argc < MIN_ARGC)
90
 
    {
91
 
        fprintf(stderr, "usage: %s <uid> <jail> <cwd> <program> [args...]\n",
92
 
            argv[0]);
93
 
        exit(EXIT_FAILURE);
94
 
    }
 
134
    if (argc < 5)
 
135
    {
 
136
        usage(argv[0]);
 
137
    }
 
138
 
 
139
    if (strcmp(argv[arg_num], "-d") == 0)
 
140
    {
 
141
        if (argc < 6)
 
142
        {
 
143
            usage(argv[0]);
 
144
        }
 
145
        daemon_mode = 1;
 
146
        arg_num++;
 
147
    }
 
148
    uid = atoi(argv[arg_num++]);
 
149
    jailpath = argv[arg_num++];
 
150
    work_dir = argv[arg_num++];
 
151
    prog = argv[arg_num];
 
152
    args = argv + arg_num;
95
153
 
96
154
    /* Disallow suiding to the root user */
97
 
    uid = atoi(argv[ARG_UID]);
98
 
    if (uid == UID_ROOT)
 
155
    if (uid == 0)
99
156
    {
100
157
        fprintf(stderr, "cannot set up a jail as root\n");
101
158
        exit(1);
107
164
     * Not contain "/.."
108
165
     * Begin with jail_base
109
166
     */
110
 
    jailpath = argv[ARG_JAILPATH];
111
167
    if (strlen(jailpath) < 1 || jailpath[0] != '/'
112
168
            || strstr(jailpath, "/..")
113
169
            || strncmp(jailpath, jail_base, strlen(jail_base)))
126
182
    }
127
183
 
128
184
    /* chdir into the specified working directory */
129
 
    if (chdir(argv[ARG_CWD]))
 
185
    if (chdir(work_dir))
130
186
    {
131
187
        perror("could not chdir");
132
188
        exit(1);
141
197
        exit(1);
142
198
    }
143
199
 
 
200
    if (daemon_mode)
 
201
    {
 
202
        daemonize();
 
203
    }
 
204
 
144
205
    /* exec (replace this process with the a new instance of the target
145
206
     * program). Pass along all the arguments.
146
207
     * Note that for script execution, the "program" will be the interpreter,
147
208
     * and the first argument will be the script. */
148
 
    execv(argv[ARG_PROG], argv + ARG_PROG);
 
209
    execv(prog, args);
149
210
 
 
211
    /* XXX if (daemon_mode) use syslog? */
150
212
    /* nb exec won't return unless there was an error */
151
213
    perror("could not exec");
152
 
    return EXIT_FAILURE;
 
214
    return 1;
153
215
}