Subversion Repositories HelenOS

Rev

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

Rev 3169 Rev 3170
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 <fcntl.h>
49
#include <fcntl.h>
50
#include <sys/types.h>
50
#include <sys/types.h>
51
#include <ipc/ipc.h>
51
#include <ipc/ipc.h>
52
#include <ipc/loader.h>
52
#include <ipc/loader.h>
53
#include <loader/pcb.h>
53
#include <loader/pcb.h>
54
#include <errno.h>
54
#include <errno.h>
55
#include <async.h>
55
#include <async.h>
56
#include <as.h>
56
#include <as.h>
57
 
57
 
58
#include <elf.h>
58
#include <elf.h>
59
#include <elf_load.h>
59
#include <elf_load.h>
60
#include <arch/pcb.h>
-
 
61
 
60
 
62
/**
61
/**
63
 * Bias used for loading the dynamic linker. This will be soon replaced
62
 * Bias used for loading the dynamic linker. This will be soon replaced
64
 * by automatic placement.
63
 * by automatic placement.
65
 */
64
 */
66
#define RTLD_BIAS 0x80000
65
#define RTLD_BIAS 0x80000
67
 
66
 
68
/** Pathname of the file that will be loaded */
67
/** Pathname of the file that will be loaded */
69
static char *pathname = NULL;
68
static char *pathname = NULL;
70
 
69
 
-
 
70
/** The Program control block */
-
 
71
static pcb_t pcb;
-
 
72
 
71
/** Receive a call setting pathname of the program to execute.
73
/** Receive a call setting pathname of the program to execute.
72
 *
74
 *
73
 * @param rid
75
 * @param rid
74
 * @param request
76
 * @param request
75
 */
77
 */
76
static void iloader_set_pathname(ipc_callid_t rid, ipc_call_t *request)
78
static void iloader_set_pathname(ipc_callid_t rid, ipc_call_t *request)
77
{
79
{
78
    ipc_callid_t callid;
80
    ipc_callid_t callid;
79
    size_t len;
81
    size_t len;
80
    char *name_buf;
82
    char *name_buf;
81
 
83
 
82
    if (!ipc_data_write_receive(&callid, &len)) {
84
    if (!ipc_data_write_receive(&callid, &len)) {
83
        ipc_answer_0(callid, EINVAL);
85
        ipc_answer_0(callid, EINVAL);
84
        ipc_answer_0(rid, EINVAL);
86
        ipc_answer_0(rid, EINVAL);
85
        return;
87
        return;
86
    }
88
    }
87
 
89
 
88
    name_buf = malloc(len + 1);
90
    name_buf = malloc(len + 1);
89
    if (!name_buf) {
91
    if (!name_buf) {
90
        ipc_answer_0(callid, ENOMEM);
92
        ipc_answer_0(callid, ENOMEM);
91
        ipc_answer_0(rid, ENOMEM);
93
        ipc_answer_0(rid, ENOMEM);
92
        return;
94
        return;
93
    }
95
    }
94
 
96
 
95
    ipc_data_write_finalize(callid, name_buf, len);
97
    ipc_data_write_finalize(callid, name_buf, len);
96
    ipc_answer_0(rid, EOK);
98
    ipc_answer_0(rid, EOK);
97
 
99
 
98
    if (pathname != NULL) {
100
    if (pathname != NULL) {
99
        free(pathname);
101
        free(pathname);
100
        pathname = NULL;
102
        pathname = NULL;
101
    }
103
    }
102
 
104
 
103
    name_buf[len] = '\0';
105
    name_buf[len] = '\0';
104
    pathname = name_buf;
106
    pathname = name_buf;
105
}
107
}
106
 
108
 
107
/** Load and run the previously selected program.
109
/** Load and run the previously selected program.
108
 *
110
 *
109
 * @param rid
111
 * @param rid
110
 * @param request
112
 * @param request
111
 * @return 0 on success, !0 on error.
113
 * @return 0 on success, !0 on error.
112
 */
114
 */
113
static int iloader_run(ipc_callid_t rid, ipc_call_t *request)
115
static int iloader_run(ipc_callid_t rid, ipc_call_t *request)
114
{
116
{
115
    int rc;
117
    int rc;
116
    pcb_t *pcb;
-
 
117
 
118
 
118
    elf_info_t prog_info;
119
    elf_info_t prog_info;
119
    elf_info_t interp_info;
120
    elf_info_t interp_info;
120
 
121
 
121
//  printf("Load program '%s'\n", pathname);
122
//  printf("Load program '%s'\n", pathname);
122
 
123
 
123
    rc = elf_load_file(pathname, 0, &prog_info);
124
    rc = elf_load_file(pathname, 0, &prog_info);
124
    if (rc < 0) {
125
    if (rc < 0) {
125
        printf("failed to load program\n");
126
        printf("failed to load program\n");
126
        ipc_answer_0(rid, EINVAL);
127
        ipc_answer_0(rid, EINVAL);
127
        return 1;
128
        return 1;
128
    }
129
    }
129
 
130
 
130
//  printf("Create PCB\n");
131
//  printf("Create PCB\n");
131
    if (elf_create_pcb(&prog_info) < 0) {
132
    elf_create_pcb(&prog_info, &pcb);
132
        ipc_answer_0(rid, ENOMEM);
-
 
133
        return 1;
-
 
134
    }
-
 
135
 
133
 
136
    if (prog_info.interp == NULL) {
134
    if (prog_info.interp == NULL) {
137
        /* Statically linked program */
135
        /* Statically linked program */
138
//      printf("Run statically linked program\n");
136
//      printf("Run statically linked program\n");
139
//      printf("entry point: 0x%llx\n", prog_info.entry);
137
//      printf("entry point: 0x%llx\n", prog_info.entry);
140
        ipc_answer_0(rid, EOK);
138
        ipc_answer_0(rid, EOK);
141
        close_console();
139
        close_console();
142
        elf_run(&prog_info, __pcb_get());
140
        elf_run(&prog_info, &pcb);
143
        return 0;
141
        return 0;
144
    }
142
    }
145
 
143
 
146
    printf("Load dynamic linker '%s'\n", prog_info.interp);
144
    printf("Load dynamic linker '%s'\n", prog_info.interp);
147
    rc = elf_load_file("/rtld.so", RTLD_BIAS, &interp_info);
145
    rc = elf_load_file("/rtld.so", RTLD_BIAS, &interp_info);
148
    if (rc < 0) {
146
    if (rc < 0) {
149
        printf("failed to load dynamic linker\n");
147
        printf("failed to load dynamic linker\n");
150
        ipc_answer_0(rid, EINVAL);
148
        ipc_answer_0(rid, EINVAL);
151
        return 1;
149
        return 1;
152
    }
150
    }
153
 
151
 
154
    /*
152
    /*
155
     * Provide dynamic linker with some useful data
153
     * Provide dynamic linker with some useful data
156
     */
154
     */
157
    pcb = (pcb_t *)PCB_ADDRESS;
-
 
158
    pcb->rtld_dynamic = interp_info.dynamic;
155
    pcb.rtld_dynamic = interp_info.dynamic;
159
    pcb->rtld_bias = RTLD_BIAS;
156
    pcb.rtld_bias = RTLD_BIAS;
160
 
157
 
161
    printf("run dynamic linker\n");
158
    printf("run dynamic linker\n");
162
    printf("entry point: 0x%llx\n", interp_info.entry);
159
    printf("entry point: 0x%llx\n", interp_info.entry);
163
    close_console();
160
    close_console();
164
 
161
 
165
    ipc_answer_0(rid, EOK);
162
    ipc_answer_0(rid, EOK);
166
    elf_run(&interp_info, __pcb_get());
163
    elf_run(&interp_info, &pcb);
167
 
164
 
168
    /* Not reached(?) */
165
    /* Not reached */
169
    return 0;
166
    return 0;
170
}
167
}
171
 
168
 
172
/** Handle loader connection.
169
/** Handle loader connection.
173
 *
170
 *
174
 * Receive and carry out commands (of which the last one should be
171
 * Receive and carry out commands (of which the last one should be
175
 * to execute the loaded program).
172
 * to execute the loaded program).
176
 */
173
 */
177
static void loader_connection(ipc_callid_t iid, ipc_call_t *icall)
174
static void loader_connection(ipc_callid_t iid, ipc_call_t *icall)
178
{
175
{
179
    ipc_callid_t callid;
176
    ipc_callid_t callid;
180
    ipc_call_t call;
177
    ipc_call_t call;
181
    int retval;
178
    int retval;
182
 
179
 
183
    /* Ignore parameters, the connection is already open */
180
    /* Ignore parameters, the connection is already open */
184
    (void)iid; (void)icall;
181
    (void)iid; (void)icall;
185
 
182
 
186
    while (1) {
183
    while (1) {
187
        callid = async_get_call(&call);
184
        callid = async_get_call(&call);
188
//      printf("received call from phone %d, method=%d\n",
185
//      printf("received call from phone %d, method=%d\n",
189
//          call.in_phone_hash, IPC_GET_METHOD(call));
186
//          call.in_phone_hash, IPC_GET_METHOD(call));
190
        switch (IPC_GET_METHOD(call)) {
187
        switch (IPC_GET_METHOD(call)) {
191
        case LOADER_SET_PATHNAME:
188
        case LOADER_SET_PATHNAME:
192
            iloader_set_pathname(callid, &call);
189
            iloader_set_pathname(callid, &call);
193
            continue;
190
            continue;
194
        case LOADER_RUN:
191
        case LOADER_RUN:
195
            iloader_run(callid, &call);
192
            iloader_run(callid, &call);
196
            exit(0);
193
            exit(0);
197
            continue;
194
            continue;
198
        default:
195
        default:
199
            retval = ENOENT;
196
            retval = ENOENT;
200
            break;
197
            break;
201
        }
198
        }
202
        if ((callid & IPC_CALLID_NOTIFICATION) == 0) {
199
        if ((callid & IPC_CALLID_NOTIFICATION) == 0) {
203
            printf("responding EINVAL to method %d\n", IPC_GET_METHOD(call));
200
            printf("responding EINVAL to method %d\n", IPC_GET_METHOD(call));
204
            ipc_answer_0(callid, EINVAL);
201
            ipc_answer_0(callid, EINVAL);
205
        }
202
        }
206
    }
203
    }
207
}
204
}
208
 
205
 
209
/** Program loader main function.
206
/** Program loader main function.
210
 */
207
 */
211
int main(int argc, char *argv[])
208
int main(int argc, char *argv[])
212
{
209
{
213
    ipc_callid_t callid;
210
    ipc_callid_t callid;
214
    ipc_call_t call;
211
    ipc_call_t call;
215
    ipcarg_t phone_hash;
212
    ipcarg_t phone_hash;
216
 
213
 
217
    /* The first call only communicates the incoming phone hash */
214
    /* The first call only communicates the incoming phone hash */
218
    callid = ipc_wait_for_call(&call);
215
    callid = ipc_wait_for_call(&call);
219
 
216
 
220
    if (IPC_GET_METHOD(call) != LOADER_HELLO) {
217
    if (IPC_GET_METHOD(call) != LOADER_HELLO) {
221
        if (IPC_GET_METHOD(call) != IPC_M_PHONE_HUNGUP)
218
        if (IPC_GET_METHOD(call) != IPC_M_PHONE_HUNGUP)
222
            ipc_answer_0(callid, EINVAL);
219
            ipc_answer_0(callid, EINVAL);
223
        return 1;
220
        return 1;
224
    }
221
    }
225
 
222
 
226
    ipc_answer_0(callid, EOK);
223
    ipc_answer_0(callid, EOK);
227
    phone_hash = call.in_phone_hash;
224
    phone_hash = call.in_phone_hash;
228
 
225
 
229
    /*
226
    /*
230
     * FIXME: up until now no async calls can be used!!!
227
     * Up until now async must not be used as it couldn't
231
     * (Which means e.g. printf() cannot be used)
228
     * handle incoming requests. (Which means e.g. printf()
-
 
229
     * cannot be used)
232
     */
230
     */
233
    async_new_connection(phone_hash, 0, NULL, loader_connection);
231
    async_new_connection(phone_hash, 0, NULL, loader_connection);
234
    async_manager();
232
    async_manager();
235
 
233
 
236
    /* not reached */
234
    /* not reached */
237
    return 0;
235
    return 0;
238
}
236
}
239
 
237
 
240
/** @}
238
/** @}
241
 */
239
 */
242
 
240