source: mainline/uspace/lib/c/generic/loader.c@ 0dd16778

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 0dd16778 was 566992e1, checked in by Martin Decky <martin@…>, 10 years ago

extremely rudimentary support for interfaces and ports
(does not do much, but it is backward and forward compatible)

  • Property mode set to 100644
File size: 8.7 KB
Line 
1/*
2 * Copyright (c) 2008 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
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
15 * derived from this software without specific prior written permission.
16 *
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
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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
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
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup libc
30 * @{
31 */
32/** @file
33 */
34
35#include <ipc/loader.h>
36#include <ipc/services.h>
37#include <ns.h>
38#include <libc.h>
39#include <task.h>
40#include <str.h>
41#include <stdlib.h>
42#include <async.h>
43#include <errno.h>
44#include <vfs/vfs.h>
45#include <loader/loader.h>
46#include "private/loader.h"
47
48/** Connect to a new program loader.
49 *
50 * Spawns a new program loader task and returns the connection structure.
51 *
52 * @param name Symbolic name to set on the newly created task.
53 *
54 * @return Pointer to the loader connection structure (should be
55 * deallocated using free() after use).
56 *
57 */
58int loader_spawn(const char *name)
59{
60 return __SYSCALL2(SYS_PROGRAM_SPAWN_LOADER,
61 (sysarg_t) name, str_size(name));
62}
63
64loader_t *loader_connect(void)
65{
66 loader_t *ldr = malloc(sizeof(loader_t));
67 if (ldr == NULL)
68 return NULL;
69
70 async_sess_t *sess =
71 service_connect_blocking_iface_extended(SERVICE_LOADER,
72 INTERFACE_LOADER, 0);
73 if (sess == NULL) {
74 free(ldr);
75 return NULL;
76 }
77
78 ldr->sess = sess;
79 return ldr;
80}
81
82/** Get ID of the new task.
83 *
84 * Retrieves the ID of the new task from the loader.
85 *
86 * @param ldr Loader connection structure.
87 * @param task_id Points to a variable where the ID should be stored.
88 *
89 * @return Zero on success or negative error code.
90 *
91 */
92int loader_get_task_id(loader_t *ldr, task_id_t *task_id)
93{
94 /* Get task ID. */
95 async_exch_t *exch = async_exchange_begin(ldr->sess);
96
97 ipc_call_t answer;
98 aid_t req = async_send_0(exch, LOADER_GET_TASKID, &answer);
99 sysarg_t rc = async_data_read_start(exch, task_id, sizeof(task_id_t));
100
101 async_exchange_end(exch);
102
103 if (rc != EOK) {
104 async_forget(req);
105 return (int) rc;
106 }
107
108 async_wait_for(req, &rc);
109 return (int) rc;
110}
111
112/** Set current working directory for the loaded task.
113 *
114 * Sets the current working directory for the loaded task.
115 *
116 * @param ldr Loader connection structure.
117 *
118 * @return Zero on success or negative error code.
119 *
120 */
121int loader_set_cwd(loader_t *ldr)
122{
123 char *cwd = (char *) malloc(MAX_PATH_LEN + 1);
124 if (!cwd)
125 return ENOMEM;
126
127 if (!getcwd(cwd, MAX_PATH_LEN + 1))
128 str_cpy(cwd, MAX_PATH_LEN + 1, "/");
129
130 size_t len = str_length(cwd);
131
132 async_exch_t *exch = async_exchange_begin(ldr->sess);
133
134 ipc_call_t answer;
135 aid_t req = async_send_0(exch, LOADER_SET_CWD, &answer);
136 sysarg_t rc = async_data_write_start(exch, cwd, len);
137
138 async_exchange_end(exch);
139 free(cwd);
140
141 if (rc != EOK) {
142 async_forget(req);
143 return (int) rc;
144 }
145
146 async_wait_for(req, &rc);
147 return (int) rc;
148}
149
150/** Set pathname of the program to load.
151 *
152 * Sets the name of the program file to load. The name can be relative
153 * to the current working directory (it will be absolutized before
154 * sending to the loader).
155 *
156 * @param ldr Loader connection structure.
157 * @param path Pathname of the program file.
158 *
159 * @return Zero on success or negative error code.
160 *
161 */
162int loader_set_pathname(loader_t *ldr, const char *path)
163{
164 size_t pa_len;
165 char *pa = absolutize(path, &pa_len);
166 if (!pa)
167 return ENOMEM;
168
169 /* Send program pathname */
170 async_exch_t *exch = async_exchange_begin(ldr->sess);
171
172 ipc_call_t answer;
173 aid_t req = async_send_0(exch, LOADER_SET_PATHNAME, &answer);
174 sysarg_t rc = async_data_write_start(exch, (void *) pa, pa_len);
175
176 async_exchange_end(exch);
177 free(pa);
178
179 if (rc != EOK) {
180 async_forget(req);
181 return (int) rc;
182 }
183
184 async_wait_for(req, &rc);
185 return (int) rc;
186}
187
188/** Set command-line arguments for the program.
189 *
190 * Sets the vector of command-line arguments to be passed to the loaded
191 * program. By convention, the very first argument is typically the same as
192 * the command used to execute the program.
193 *
194 * @param ldr Loader connection structure.
195 * @param argv NULL-terminated array of pointers to arguments.
196 *
197 * @return Zero on success or negative error code.
198 *
199 */
200int loader_set_args(loader_t *ldr, const char *const argv[])
201{
202 /*
203 * Serialize the arguments into a single array. First
204 * compute size of the buffer needed.
205 */
206 const char *const *ap = argv;
207 size_t buffer_size = 0;
208 while (*ap != NULL) {
209 buffer_size += str_size(*ap) + 1;
210 ap++;
211 }
212
213 char *arg_buf = malloc(buffer_size);
214 if (arg_buf == NULL)
215 return ENOMEM;
216
217 /* Now fill the buffer with null-terminated argument strings */
218 ap = argv;
219 char *dp = arg_buf;
220
221 while (*ap != NULL) {
222 str_cpy(dp, buffer_size - (dp - arg_buf), *ap);
223 dp += str_size(*ap) + 1;
224 ap++;
225 }
226
227 /* Send serialized arguments to the loader */
228 async_exch_t *exch = async_exchange_begin(ldr->sess);
229
230 ipc_call_t answer;
231 aid_t req = async_send_0(exch, LOADER_SET_ARGS, &answer);
232 sysarg_t rc = async_data_write_start(exch, (void *) arg_buf,
233 buffer_size);
234
235 async_exchange_end(exch);
236 free(arg_buf);
237
238 if (rc != EOK) {
239 async_forget(req);
240 return (int) rc;
241 }
242
243 async_wait_for(req, &rc);
244 return (int) rc;
245}
246
247/** Set preset files for the program.
248 *
249 * Sets the vector of preset files to be passed to the loaded
250 * program. By convention, the first three files represent stdin,
251 * stdout and stderr respectively.
252 *
253 * @param ldr Loader connection structure.
254 * @param files NULL-terminated array of pointers to files.
255 *
256 * @return Zero on success or negative error code.
257 *
258 */
259int loader_set_files(loader_t *ldr, int * const files[])
260{
261 /* Send serialized files to the loader */
262 async_exch_t *exch = async_exchange_begin(ldr->sess);
263 async_exch_t *vfs_exch = vfs_exchange_begin();
264
265 int i;
266 for (i = 0; files[i]; i++);
267
268 ipc_call_t answer;
269 aid_t req = async_send_1(exch, LOADER_SET_FILES, i, &answer);
270
271 sysarg_t rc = EOK;
272
273 for (i = 0; files[i]; i++) {
274 rc = async_state_change_start(exch, VFS_PASS_HANDLE, *files[i],
275 0, vfs_exch);
276 if (rc != EOK)
277 break;
278 }
279
280 vfs_exchange_end(vfs_exch);
281 async_exchange_end(exch);
282
283 if (rc != EOK) {
284 async_forget(req);
285 return (int) rc;
286 }
287
288 async_wait_for(req, &rc);
289 return (int) rc;
290}
291
292/** Instruct loader to load the program.
293 *
294 * If this function succeeds, the program has been successfully loaded
295 * and is ready to be executed.
296 *
297 * @param ldr Loader connection structure.
298 *
299 * @return Zero on success or negative error code.
300 *
301 */
302int loader_load_program(loader_t *ldr)
303{
304 async_exch_t *exch = async_exchange_begin(ldr->sess);
305 int rc = async_req_0_0(exch, LOADER_LOAD);
306 async_exchange_end(exch);
307
308 return rc;
309}
310
311/** Instruct loader to execute the program.
312 *
313 * Note that this function blocks until the loader actually replies
314 * so you cannot expect this function to return if you are debugging
315 * the task and its thread is stopped.
316 *
317 * After using this function, no further operations can be performed
318 * on the loader structure and it is deallocated.
319 *
320 * @param ldr Loader connection structure.
321 *
322 * @return Zero on success or negative error code.
323 *
324 */
325int loader_run(loader_t *ldr)
326{
327 async_exch_t *exch = async_exchange_begin(ldr->sess);
328 int rc = async_req_0_0(exch, LOADER_RUN);
329 async_exchange_end(exch);
330
331 if (rc != EOK)
332 return rc;
333
334 async_hangup(ldr->sess);
335 free(ldr);
336
337 return EOK;
338}
339
340/** Cancel the loader session.
341 *
342 * Tell the loader not to load any program and terminate.
343 * After using this function, no further operations can be performed
344 * on the loader structure and it is deallocated.
345 *
346 * @param ldr Loader connection structure.
347 *
348 * @return Zero on success or negative error code.
349 *
350 */
351void loader_abort(loader_t *ldr)
352{
353 async_hangup(ldr->sess);
354 free(ldr);
355}
356
357/** @}
358 */
Note: See TracBrowser for help on using the repository browser.