Rev 4618 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1175 | jermar | 1 | /* |
| 2071 | jermar | 2 | * Copyright (c) 2006 Jakub Jermar |
| 3222 | svoboda | 3 | * Copyright (c) 2008 Jiri Svoboda |
| 1175 | jermar | 4 | * All rights reserved. |
| 5 | * |
||
| 6 | * Redistribution and use in source and binary forms, with or without |
||
| 7 | * modification, are permitted provided that the following conditions |
||
| 8 | * are met: |
||
| 9 | * |
||
| 10 | * - Redistributions of source code must retain the above copyright |
||
| 11 | * notice, this list of conditions and the following disclaimer. |
||
| 12 | * - Redistributions in binary form must reproduce the above copyright |
||
| 13 | * notice, this list of conditions and the following disclaimer in the |
||
| 14 | * documentation and/or other materials provided with the distribution. |
||
| 15 | * - The name of the author may not be used to endorse or promote products |
||
| 16 | * derived from this software without specific prior written permission. |
||
| 17 | * |
||
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 1653 | cejka | 28 | */ |
| 29 | |||
| 1866 | jermar | 30 | /** @addtogroup libc |
| 1653 | cejka | 31 | * @{ |
| 32 | */ |
||
| 33 | /** @file |
||
| 4470 | decky | 34 | */ |
| 1175 | jermar | 35 | |
| 36 | #include <task.h> |
||
| 37 | #include <libc.h> |
||
| 3222 | svoboda | 38 | #include <stdlib.h> |
| 39 | #include <errno.h> |
||
| 3469 | svoboda | 40 | #include <loader/loader.h> |
| 3983 | svoboda | 41 | #include <string.h> |
| 4470 | decky | 42 | #include <ipc/ns.h> |
| 43 | #include <macros.h> |
||
| 44 | #include <async.h> |
||
| 1175 | jermar | 45 | |
| 1228 | jermar | 46 | task_id_t task_get_id(void) |
| 1175 | jermar | 47 | { |
| 48 | task_id_t task_id; |
||
| 1228 | jermar | 49 | (void) __SYSCALL1(SYS_TASK_GET_ID, (sysarg_t) &task_id); |
| 4470 | decky | 50 | |
| 1175 | jermar | 51 | return task_id; |
| 52 | } |
||
| 1653 | cejka | 53 | |
| 3983 | svoboda | 54 | /** Set the task name. |
| 55 | * |
||
| 4470 | decky | 56 | * @param name The new name, typically the command used to execute the |
| 57 | * program. |
||
| 58 | * |
||
| 59 | * @return Zero on success or negative error code. |
||
| 60 | * |
||
| 3983 | svoboda | 61 | */ |
| 62 | int task_set_name(const char *name) |
||
| 63 | { |
||
| 4256 | svoboda | 64 | return __SYSCALL2(SYS_TASK_SET_NAME, (sysarg_t) name, str_size(name)); |
| 3983 | svoboda | 65 | } |
| 66 | |||
| 3469 | svoboda | 67 | /** Create a new task by running an executable from the filesystem. |
| 3222 | svoboda | 68 | * |
| 3469 | svoboda | 69 | * This is really just a convenience wrapper over the more complicated |
| 70 | * loader API. |
||
| 71 | * |
||
| 4470 | decky | 72 | * @param path pathname of the binary to execute |
| 73 | * @param argv command-line arguments |
||
| 74 | * |
||
| 75 | * @return ID of the newly created task or zero on error. |
||
| 76 | * |
||
| 3222 | svoboda | 77 | */ |
| 4470 | decky | 78 | task_id_t task_spawn(const char *path, char *const args[]) |
| 3222 | svoboda | 79 | { |
| 3896 | svoboda | 80 | /* Connect to a program loader. */ |
| 4470 | decky | 81 | loader_t *ldr = loader_connect(); |
| 3469 | svoboda | 82 | if (ldr == NULL) |
| 3306 | jermar | 83 | return 0; |
| 4470 | decky | 84 | |
| 3469 | svoboda | 85 | /* Get task ID. */ |
| 4470 | decky | 86 | task_id_t task_id; |
| 87 | int rc = loader_get_task_id(ldr, &task_id); |
||
| 3306 | jermar | 88 | if (rc != EOK) |
| 3447 | svoboda | 89 | goto error; |
| 4470 | decky | 90 | |
| 3470 | svoboda | 91 | /* Send program pathname. */ |
| 3469 | svoboda | 92 | rc = loader_set_pathname(ldr, path); |
| 93 | if (rc != EOK) |
||
| 3306 | jermar | 94 | goto error; |
| 4470 | decky | 95 | |
| 3470 | svoboda | 96 | /* Send arguments. */ |
| 4470 | decky | 97 | rc = loader_set_args(ldr, args); |
| 3306 | jermar | 98 | if (rc != EOK) |
| 99 | goto error; |
||
| 4470 | decky | 100 | |
| 101 | |||
| 102 | /* Send default files */ |
||
| 4492 | jermar | 103 | fdi_node_t *files[4]; |
| 104 | fdi_node_t stdin_node; |
||
| 105 | fdi_node_t stdout_node; |
||
| 106 | fdi_node_t stderr_node; |
||
| 4470 | decky | 107 | |
| 4508 | decky | 108 | if ((stdin != NULL) && (fnode(stdin, &stdin_node) == EOK)) |
| 4470 | decky | 109 | files[0] = &stdin_node; |
| 4508 | decky | 110 | else |
| 4470 | decky | 111 | files[0] = NULL; |
| 112 | |||
| 4508 | decky | 113 | if ((stdout != NULL) && (fnode(stdout, &stdout_node) == EOK)) |
| 4470 | decky | 114 | files[1] = &stdout_node; |
| 4508 | decky | 115 | else |
| 4470 | decky | 116 | files[1] = NULL; |
| 117 | |||
| 4508 | decky | 118 | if ((stderr != NULL) && (fnode(stderr, &stderr_node) == EOK)) |
| 4470 | decky | 119 | files[2] = &stderr_node; |
| 4508 | decky | 120 | else |
| 4470 | decky | 121 | files[2] = NULL; |
| 122 | |||
| 123 | files[3] = NULL; |
||
| 124 | |||
| 125 | rc = loader_set_files(ldr, files); |
||
| 126 | if (rc != EOK) |
||
| 127 | goto error; |
||
| 128 | |||
| 3470 | svoboda | 129 | /* Load the program. */ |
| 130 | rc = loader_load_program(ldr); |
||
| 3306 | jermar | 131 | if (rc != EOK) |
| 132 | goto error; |
||
| 4470 | decky | 133 | |
| 3470 | svoboda | 134 | /* Run it. */ |
| 135 | rc = loader_run(ldr); |
||
| 136 | if (rc != EOK) |
||
| 137 | goto error; |
||
| 4470 | decky | 138 | |
| 3222 | svoboda | 139 | /* Success */ |
| 3470 | svoboda | 140 | free(ldr); |
| 3447 | svoboda | 141 | return task_id; |
| 4470 | decky | 142 | |
| 143 | error: |
||
| 3222 | svoboda | 144 | /* Error exit */ |
| 3469 | svoboda | 145 | loader_abort(ldr); |
| 3470 | svoboda | 146 | free(ldr); |
| 4470 | decky | 147 | |
| 3222 | svoboda | 148 | return 0; |
| 149 | } |
||
| 150 | |||
| 4620 | svoboda | 151 | int task_wait(task_id_t id, task_exit_t *texit, int *retval) |
| 4470 | decky | 152 | { |
| 4620 | svoboda | 153 | ipcarg_t te, rv; |
| 4617 | svoboda | 154 | int rc; |
| 155 | |||
| 4620 | svoboda | 156 | rc = (int) async_req_2_2(PHONE_NS, NS_TASK_WAIT, LOWER32(id), |
| 157 | UPPER32(id), &te, &rv); |
||
| 158 | *texit = te; |
||
| 4617 | svoboda | 159 | *retval = rv; |
| 160 | |||
| 161 | return rc; |
||
| 4470 | decky | 162 | } |
| 163 | |||
| 4617 | svoboda | 164 | int task_retval(int val) |
| 165 | { |
||
| 4618 | svoboda | 166 | return (int) async_req_1_0(PHONE_NS, NS_RETVAL, val); |
| 4617 | svoboda | 167 | } |
| 168 | |||
| 1866 | jermar | 169 | /** @} |
| 1653 | cejka | 170 | */ |