Subversion Repositories HelenOS

Rev

Rev 3447 | Rev 3475 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3447 Rev 3470
1
/*
1
/*
2
 * Copyright (c) 2008 Jiri Svoboda
2
 * Copyright (c) 2008 Jiri Svoboda
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup loader
29
/** @addtogroup loader
30
 * @brief   Loads and runs programs from VFS.
30
 * @brief   Loads and runs programs from VFS.
31
 * @{
31
 * @{
32
 */
32
 */
33
/**
33
/**
34
 * @file
34
 * @file
35
 * @brief   Loads and runs programs from VFS.
35
 * @brief   Loads and runs programs from VFS.
36
 *
36
 *
37
 * The program loader is a special init binary. Its image is used
37
 * The program loader is a special init binary. Its image is used
38
 * to create a new task upon a @c task_spawn syscall. The syscall
38
 * to create a new task upon a @c task_spawn syscall. The syscall
39
 * returns the id of a phone connected to the newly created task.
39
 * returns the id of a phone connected to the newly created task.
40
 *
40
 *
41
 * The caller uses this phone to send the pathname and various other
41
 * The caller uses this phone to send the pathname and various other
42
 * information to the loader. This is normally done by the C library
42
 * information to the loader. This is normally done by the C library
43
 * and completely hidden from applications.
43
 * and completely hidden from applications.
44
 */
44
 */
45
 
45
 
46
#include <stdio.h>
46
#include <stdio.h>
47
#include <stdlib.h>
47
#include <stdlib.h>
48
#include <unistd.h>
48
#include <unistd.h>
-
 
49
#include <bool.h>
49
#include <fcntl.h>
50
#include <fcntl.h>
50
#include <sys/types.h>
51
#include <sys/types.h>
51
#include <ipc/ipc.h>
52
#include <ipc/ipc.h>
52
#include <ipc/loader.h>
53
#include <ipc/loader.h>
53
#include <loader/pcb.h>
54
#include <loader/pcb.h>
54
#include <errno.h>
55
#include <errno.h>
55
#include <async.h>
56
#include <async.h>
56
#include <as.h>
57
#include <as.h>
57
 
58
 
58
#include <elf.h>
59
#include <elf.h>
59
#include <elf_load.h>
60
#include <elf_load.h>
60
 
61
 
61
/**
62
/**
62
 * Bias used for loading the dynamic linker. This will be soon replaced
63
 * Bias used for loading the dynamic linker. This will be soon replaced
63
 * by automatic placement.
64
 * by automatic placement.
64
 */
65
 */
65
#define RTLD_BIAS 0x80000
66
#define RTLD_BIAS 0x80000
66
 
67
 
67
/** Pathname of the file that will be loaded */
68
/** Pathname of the file that will be loaded */
68
static char *pathname = NULL;
69
static char *pathname = NULL;
69
 
70
 
70
/** The Program control block */
71
/** The Program control block */
71
static pcb_t pcb;
72
static pcb_t pcb;
72
 
73
 
73
/** Number of arguments */
74
/** Number of arguments */
74
static int argc = 0;
75
static int argc = 0;
75
/** Argument vector */
76
/** Argument vector */
76
static char **argv = NULL;
77
static char **argv = NULL;
77
/** Buffer holding all arguments */
78
/** Buffer holding all arguments */
78
static char *arg_buf = NULL;
79
static char *arg_buf = NULL;
79
 
80
 
-
 
81
static elf_info_t prog_info;
-
 
82
static elf_info_t interp_info;
-
 
83
 
-
 
84
static bool is_dyn_linked;
-
 
85
 
-
 
86
 
80
static int loader_get_taskid(ipc_callid_t rid, ipc_call_t *request)
87
static void loader_get_taskid(ipc_callid_t rid, ipc_call_t *request)
81
{
88
{
82
    ipc_callid_t callid;
89
    ipc_callid_t callid;
83
    task_id_t task_id;
90
    task_id_t task_id;
84
    size_t len;
91
    size_t len;
85
 
92
 
86
    task_id = task_get_id();
93
    task_id = task_get_id();
87
 
94
 
88
    if (!ipc_data_read_receive(&callid, &len)) {
95
    if (!ipc_data_read_receive(&callid, &len)) {
89
        ipc_answer_0(callid, EINVAL);
96
        ipc_answer_0(callid, EINVAL);
90
        ipc_answer_0(rid, EINVAL);
97
        ipc_answer_0(rid, EINVAL);
91
        return;
98
        return;
92
    }
99
    }
93
 
100
 
94
    if (len > sizeof(task_id)) len = sizeof(task_id);
101
    if (len > sizeof(task_id)) len = sizeof(task_id);
95
 
102
 
96
    ipc_data_write_finalize(callid, &task_id, len);
103
    ipc_data_write_finalize(callid, &task_id, len);
97
    ipc_answer_0(rid, EOK);
104
    ipc_answer_0(rid, EOK);
98
}
105
}
99
 
106
 
100
 
107
 
101
/** Receive a call setting pathname of the program to execute.
108
/** Receive a call setting pathname of the program to execute.
102
 *
109
 *
103
 * @param rid
110
 * @param rid
104
 * @param request
111
 * @param request
105
 */
112
 */
106
static void loader_set_pathname(ipc_callid_t rid, ipc_call_t *request)
113
static void loader_set_pathname(ipc_callid_t rid, ipc_call_t *request)
107
{
114
{
108
    ipc_callid_t callid;
115
    ipc_callid_t callid;
109
    size_t len;
116
    size_t len;
110
    char *name_buf;
117
    char *name_buf;
111
 
118
 
112
    if (!ipc_data_write_receive(&callid, &len)) {
119
    if (!ipc_data_write_receive(&callid, &len)) {
113
        ipc_answer_0(callid, EINVAL);
120
        ipc_answer_0(callid, EINVAL);
114
        ipc_answer_0(rid, EINVAL);
121
        ipc_answer_0(rid, EINVAL);
115
        return;
122
        return;
116
    }
123
    }
117
 
124
 
118
    name_buf = malloc(len + 1);
125
    name_buf = malloc(len + 1);
119
    if (!name_buf) {
126
    if (!name_buf) {
120
        ipc_answer_0(callid, ENOMEM);
127
        ipc_answer_0(callid, ENOMEM);
121
        ipc_answer_0(rid, ENOMEM);
128
        ipc_answer_0(rid, ENOMEM);
122
        return;
129
        return;
123
    }
130
    }
124
 
131
 
125
    ipc_data_write_finalize(callid, name_buf, len);
132
    ipc_data_write_finalize(callid, name_buf, len);
126
    ipc_answer_0(rid, EOK);
133
    ipc_answer_0(rid, EOK);
127
 
134
 
128
    if (pathname != NULL) {
135
    if (pathname != NULL) {
129
        free(pathname);
136
        free(pathname);
130
        pathname = NULL;
137
        pathname = NULL;
131
    }
138
    }
132
 
139
 
133
    name_buf[len] = '\0';
140
    name_buf[len] = '\0';
134
    pathname = name_buf;
141
    pathname = name_buf;
135
}
142
}
136
 
143
 
137
/** Receive a call setting arguments of the program to execute.
144
/** Receive a call setting arguments of the program to execute.
138
 *
145
 *
139
 * @param rid
146
 * @param rid
140
 * @param request
147
 * @param request
141
 */
148
 */
142
static void loader_set_args(ipc_callid_t rid, ipc_call_t *request)
149
static void loader_set_args(ipc_callid_t rid, ipc_call_t *request)
143
{
150
{
144
    ipc_callid_t callid;
151
    ipc_callid_t callid;
145
    size_t buf_len, arg_len;
152
    size_t buf_len, arg_len;
146
    char *p;
153
    char *p;
147
    int n;
154
    int n;
148
 
155
 
149
    if (!ipc_data_write_receive(&callid, &buf_len)) {
156
    if (!ipc_data_write_receive(&callid, &buf_len)) {
150
        ipc_answer_0(callid, EINVAL);
157
        ipc_answer_0(callid, EINVAL);
151
        ipc_answer_0(rid, EINVAL);
158
        ipc_answer_0(rid, EINVAL);
152
        return;
159
        return;
153
    }
160
    }
154
 
161
 
155
    if (arg_buf != NULL) {
162
    if (arg_buf != NULL) {
156
        free(arg_buf);
163
        free(arg_buf);
157
        arg_buf = NULL;
164
        arg_buf = NULL;
158
    }
165
    }
159
 
166
 
160
    if (argv != NULL) {
167
    if (argv != NULL) {
161
        free(argv);
168
        free(argv);
162
        argv = NULL;
169
        argv = NULL;
163
    }
170
    }
164
 
171
 
165
    arg_buf = malloc(buf_len + 1);
172
    arg_buf = malloc(buf_len + 1);
166
    if (!arg_buf) {
173
    if (!arg_buf) {
167
        ipc_answer_0(callid, ENOMEM);
174
        ipc_answer_0(callid, ENOMEM);
168
        ipc_answer_0(rid, ENOMEM);
175
        ipc_answer_0(rid, ENOMEM);
169
        return;
176
        return;
170
    }
177
    }
171
 
178
 
172
    ipc_data_write_finalize(callid, arg_buf, buf_len);
179
    ipc_data_write_finalize(callid, arg_buf, buf_len);
173
    ipc_answer_0(rid, EOK);
180
    ipc_answer_0(rid, EOK);
174
 
181
 
175
    arg_buf[buf_len] = '\0';
182
    arg_buf[buf_len] = '\0';
176
 
183
 
177
    /*
184
    /*
178
     * Count number of arguments
185
     * Count number of arguments
179
     */
186
     */
180
    p = arg_buf;
187
    p = arg_buf;
181
    n = 0;
188
    n = 0;
182
    while (p < arg_buf + buf_len) {
189
    while (p < arg_buf + buf_len) {
183
        arg_len = strlen(p);
190
        arg_len = strlen(p);
184
        p = p + arg_len + 1;
191
        p = p + arg_len + 1;
185
        ++n;
192
        ++n;
186
    }
193
    }
187
 
194
 
188
    /* Allocate argv */
195
    /* Allocate argv */
189
    argv = malloc((n + 1) * sizeof(char *));
196
    argv = malloc((n + 1) * sizeof(char *));
190
 
197
 
191
    if (argv == NULL) {
198
    if (argv == NULL) {
192
        free(arg_buf);
199
        free(arg_buf);
193
        ipc_answer_0(callid, ENOMEM);
200
        ipc_answer_0(callid, ENOMEM);
194
        ipc_answer_0(rid, ENOMEM);
201
        ipc_answer_0(rid, ENOMEM);
195
        return;
202
        return;
196
    }
203
    }
197
 
204
 
198
    /*
205
    /*
199
     * Fill argv with argument pointers
206
     * Fill argv with argument pointers
200
     */
207
     */
201
    p = arg_buf;
208
    p = arg_buf;
202
    n = 0;
209
    n = 0;
203
    while (p < arg_buf + buf_len) {
210
    while (p < arg_buf + buf_len) {
204
        argv[n] = p;
211
        argv[n] = p;
205
 
212
 
206
        arg_len = strlen(p);
213
        arg_len = strlen(p);
207
        p = p + arg_len + 1;
214
        p = p + arg_len + 1;
208
        ++n;
215
        ++n;
209
    }
216
    }
210
 
217
 
211
    argc = n;
218
    argc = n;
212
    argv[n] = NULL;
219
    argv[n] = NULL;
213
}
220
}
214
 
221
 
215
 
-
 
216
/** Load and run the previously selected program.
222
/** Load the previously selected program.
217
 *
223
 *
218
 * @param rid
224
 * @param rid
219
 * @param request
225
 * @param request
220
 * @return 0 on success, !0 on error.
226
 * @return 0 on success, !0 on error.
221
 */
227
 */
222
static int loader_run(ipc_callid_t rid, ipc_call_t *request)
228
static int loader_load(ipc_callid_t rid, ipc_call_t *request)
223
{
229
{
224
    int rc;
230
    int rc;
225
 
231
 
226
    elf_info_t prog_info;
-
 
227
    elf_info_t interp_info;
-
 
228
 
-
 
229
//  printf("Load program '%s'\n", pathname);
232
//  printf("Load program '%s'\n", pathname);
230
 
233
 
231
    rc = elf_load_file(pathname, 0, &prog_info);
234
    rc = elf_load_file(pathname, 0, &prog_info);
232
    if (rc < 0) {
235
    if (rc < 0) {
233
        printf("failed to load program\n");
236
        printf("failed to load program\n");
234
        ipc_answer_0(rid, EINVAL);
237
        ipc_answer_0(rid, EINVAL);
235
        return 1;
238
        return 1;
236
    }
239
    }
237
 
240
 
238
//  printf("Create PCB\n");
241
//  printf("Create PCB\n");
239
    elf_create_pcb(&prog_info, &pcb);
242
    elf_create_pcb(&prog_info, &pcb);
240
 
243
 
241
    pcb.argc = argc;
244
    pcb.argc = argc;
242
    pcb.argv = argv;
245
    pcb.argv = argv;
243
 
246
 
244
    if (prog_info.interp == NULL) {
247
    if (prog_info.interp == NULL) {
245
        /* Statically linked program */
248
        /* Statically linked program */
246
//      printf("Run statically linked program\n");
249
//      printf("Run statically linked program\n");
247
//      printf("entry point: 0x%llx\n", prog_info.entry);
250
//      printf("entry point: 0x%llx\n", prog_info.entry);
-
 
251
        is_dyn_linked = false;
248
        ipc_answer_0(rid, EOK);
252
        ipc_answer_0(rid, EOK);
249
        close_console();
-
 
250
        elf_run(&prog_info, &pcb);
-
 
251
        return 0;
253
        return 0;
252
    }
254
    }
253
 
255
 
254
    printf("Load dynamic linker '%s'\n", prog_info.interp);
256
    printf("Load dynamic linker '%s'\n", prog_info.interp);
255
    rc = elf_load_file("/rtld.so", RTLD_BIAS, &interp_info);
257
    rc = elf_load_file("/rtld.so", RTLD_BIAS, &interp_info);
256
    if (rc < 0) {
258
    if (rc < 0) {
257
        printf("failed to load dynamic linker\n");
259
        printf("failed to load dynamic linker\n");
258
        ipc_answer_0(rid, EINVAL);
260
        ipc_answer_0(rid, EINVAL);
259
        return 1;
261
        return 1;
260
    }
262
    }
261
 
263
 
262
    /*
264
    /*
263
     * Provide dynamic linker with some useful data
265
     * Provide dynamic linker with some useful data
264
     */
266
     */
265
    pcb.rtld_dynamic = interp_info.dynamic;
267
    pcb.rtld_dynamic = interp_info.dynamic;
266
    pcb.rtld_bias = RTLD_BIAS;
268
    pcb.rtld_bias = RTLD_BIAS;
267
 
269
 
268
    printf("run dynamic linker\n");
270
    is_dyn_linked = true;
269
    printf("entry point: 0x%llx\n", interp_info.entry);
-
 
270
    close_console();
-
 
271
 
-
 
272
    ipc_answer_0(rid, EOK);
271
    ipc_answer_0(rid, EOK);
273
    elf_run(&interp_info, &pcb);
-
 
274
 
272
 
275
    /* Not reached */
-
 
276
    return 0;
273
    return 0;
277
}
274
}
278
 
275
 
-
 
276
 
-
 
277
/** Run the previously loaded program.
-
 
278
 *
-
 
279
 * @param rid
-
 
280
 * @param request
-
 
281
 * @return 0 on success, !0 on error.
-
 
282
 */
-
 
283
static void loader_run(ipc_callid_t rid, ipc_call_t *request)
-
 
284
{
-
 
285
    if (is_dyn_linked == true) {
-
 
286
        /* Dynamically linked program */
-
 
287
        printf("run dynamic linker\n");
-
 
288
        printf("entry point: 0x%llx\n", interp_info.entry);
-
 
289
        close_console();
-
 
290
 
-
 
291
        ipc_answer_0(rid, EOK);
-
 
292
        elf_run(&interp_info, &pcb);
-
 
293
 
-
 
294
    } else {
-
 
295
        /* Statically linked program */
-
 
296
        close_console();
-
 
297
        ipc_answer_0(rid, EOK);
-
 
298
        elf_run(&prog_info, &pcb);
-
 
299
    }
-
 
300
 
-
 
301
    /* Not reached */
-
 
302
}
-
 
303
 
279
/** Handle loader connection.
304
/** Handle loader connection.
280
 *
305
 *
281
 * Receive and carry out commands (of which the last one should be
306
 * Receive and carry out commands (of which the last one should be
282
 * to execute the loaded program).
307
 * to execute the loaded program).
283
 */
308
 */
284
static void loader_connection(ipc_callid_t iid, ipc_call_t *icall)
309
static void loader_connection(ipc_callid_t iid, ipc_call_t *icall)
285
{
310
{
286
    ipc_callid_t callid;
311
    ipc_callid_t callid;
287
    ipc_call_t call;
312
    ipc_call_t call;
288
    int retval;
313
    int retval;
289
 
314
 
290
    /* Ignore parameters, the connection is already open */
315
    /* Ignore parameters, the connection is already open */
291
    (void)iid; (void)icall;
316
    (void)iid; (void)icall;
292
 
317
 
293
    while (1) {
318
    while (1) {
294
        callid = async_get_call(&call);
319
        callid = async_get_call(&call);
295
//      printf("received call from phone %d, method=%d\n",
-
 
296
//          call.in_phone_hash, IPC_GET_METHOD(call));
-
 
-
 
320
 
297
        switch (IPC_GET_METHOD(call)) {
321
        switch (IPC_GET_METHOD(call)) {
298
        case LOADER_GET_TASKID:
322
        case LOADER_GET_TASKID:
299
            loader_get_taskid(callid, &call);
323
            loader_get_taskid(callid, &call);
300
            continue;
324
            continue;
301
        case LOADER_SET_PATHNAME:
325
        case LOADER_SET_PATHNAME:
302
            loader_set_pathname(callid, &call);
326
            loader_set_pathname(callid, &call);
303
            continue;
327
            continue;
304
        case LOADER_SET_ARGS:
328
        case LOADER_SET_ARGS:
305
            loader_set_args(callid, &call);
329
            loader_set_args(callid, &call);
-
 
330
            continue;
-
 
331
        case LOADER_LOAD:
-
 
332
            loader_load(callid, &call);
-
 
333
            continue;
306
        case LOADER_RUN:
334
        case LOADER_RUN:
307
            loader_run(callid, &call);
335
            loader_run(callid, &call);
308
            exit(0);
-
 
309
            continue;
336
            /* Not reached */
310
        default:
337
        default:
311
            retval = ENOENT;
338
            retval = ENOENT;
312
            break;
339
            break;
313
        }
340
        }
314
        if ((callid & IPC_CALLID_NOTIFICATION) == 0 &&
341
        if ((callid & IPC_CALLID_NOTIFICATION) == 0 &&
315
            IPC_GET_METHOD(call) != IPC_M_PHONE_HUNGUP) {
342
            IPC_GET_METHOD(call) != IPC_M_PHONE_HUNGUP) {
316
            printf("responding EINVAL to method %d\n",
343
            printf("responding EINVAL to method %d\n",
317
                IPC_GET_METHOD(call));
344
                IPC_GET_METHOD(call));
318
            ipc_answer_0(callid, EINVAL);
345
            ipc_answer_0(callid, EINVAL);
319
        }
346
        }
320
    }
347
    }
321
}
348
}
322
 
349
 
323
/** Program loader main function.
350
/** Program loader main function.
324
 */
351
 */
325
int main(int argc, char *argv[])
352
int main(int argc, char *argv[])
326
{
353
{
327
    ipc_callid_t callid;
354
    ipc_callid_t callid;
328
    ipc_call_t call;
355
    ipc_call_t call;
329
    ipcarg_t phone_hash;
356
    ipcarg_t phone_hash;
330
 
357
 
331
    /* The first call only communicates the incoming phone hash */
358
    /* The first call only communicates the incoming phone hash */
332
    callid = ipc_wait_for_call(&call);
359
    callid = ipc_wait_for_call(&call);
333
 
360
 
334
    if (IPC_GET_METHOD(call) != LOADER_HELLO) {
361
    if (IPC_GET_METHOD(call) != LOADER_HELLO) {
335
        if (IPC_GET_METHOD(call) != IPC_M_PHONE_HUNGUP)
362
        if (IPC_GET_METHOD(call) != IPC_M_PHONE_HUNGUP)
336
            ipc_answer_0(callid, EINVAL);
363
            ipc_answer_0(callid, EINVAL);
337
        return 1;
364
        return 1;
338
    }
365
    }
339
 
366
 
340
    ipc_answer_0(callid, EOK);
367
    ipc_answer_0(callid, EOK);
341
    phone_hash = call.in_phone_hash;
368
    phone_hash = call.in_phone_hash;
342
 
369
 
343
    /*
370
    /*
344
     * Up until now async must not be used as it couldn't
371
     * Up until now async must not be used as it couldn't
345
     * handle incoming requests. (Which means e.g. printf()
372
     * handle incoming requests. (Which means e.g. printf()
346
     * cannot be used)
373
     * cannot be used)
347
     */
374
     */
348
    async_new_connection(phone_hash, 0, NULL, loader_connection);
375
    async_new_connection(phone_hash, 0, NULL, loader_connection);
349
    async_manager();
376
    async_manager();
350
 
377
 
351
    /* not reached */
378
    /* not reached */
352
    return 0;
379
    return 0;
353
}
380
}
354
 
381
 
355
/** @}
382
/** @}
356
 */
383
 */
357
 
384