Changeset 7171760 in mainline
- Timestamp:
- 2011-08-18T12:05:00Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b33ec43
- Parents:
- 866e627
- Location:
- uspace
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/app/bdsh/exec.c ¶
r866e627 r7171760 100 100 char *tmp; 101 101 int rc, retval, i; 102 fdi_node_t file_nodes[3];103 fdi_node_t *file_nodes_p[4];102 int file_handles[3]; 103 int *file_handles_p[4]; 104 104 FILE *files[3]; 105 105 … … 112 112 113 113 for (i = 0; i < 3 && files[i] != NULL; i++) { 114 if (f node(files[i], &file_nodes[i]) == EOK) {115 file_ nodes_p[i] = &file_nodes[i];114 if (fhandle(files[i], &file_handles[i]) == EOK) { 115 file_handles_p[i] = &file_handles[i]; 116 116 } 117 117 else { 118 file_ nodes_p[i] = NULL;118 file_handles_p[i] = NULL; 119 119 } 120 120 } 121 file_ nodes_p[i] = NULL;121 file_handles_p[i] = NULL; 122 122 123 rc = task_spawnvf(&tid, tmp, (const char **) argv, file_ nodes_p);123 rc = task_spawnvf(&tid, tmp, (const char **) argv, file_handles_p); 124 124 free(tmp); 125 125 -
TabularUnified uspace/app/trace/trace.c ¶
r866e627 r7171760 587 587 588 588 /* Send default files */ 589 fdi_node_t *files[4];590 fdi_node_t stdin_node;591 fdi_node_t stdout_node;592 fdi_node_t stderr_node;593 594 if ((stdin != NULL) && (f node(stdin, &stdin_node) == EOK))595 files[0] = & stdin_node;589 int *files[4]; 590 int fd_stdin; 591 int fd_stdout; 592 int fd_stderr; 593 594 if ((stdin != NULL) && (fhandle(stdin, &fd_stdin) == EOK)) 595 files[0] = &fd_stdin; 596 596 else 597 597 files[0] = NULL; 598 598 599 if ((stdout != NULL) && (f node(stdout, &stdout_node) == EOK))600 files[1] = & stdout_node;599 if ((stdout != NULL) && (fhandle(stdout, &fd_stdout) == EOK)) 600 files[1] = &fd_stdout; 601 601 else 602 602 files[1] = NULL; 603 603 604 if ((stderr != NULL) && (f node(stderr, &stderr_node) == EOK))605 files[2] = & stderr_node;604 if ((stderr != NULL) && (fhandle(stderr, &fd_stderr) == EOK)) 605 files[2] = &fd_stderr; 606 606 else 607 607 files[2] = NULL; … … 762 762 o = oper_new("open", 2, arg_def, V_INT_ERRNO, 0, resp_def); 763 763 proto_add_oper(p, VFS_IN_OPEN, o); 764 o = oper_new("open_node", 4, arg_def, V_INT_ERRNO, 0, resp_def);765 proto_add_oper(p, VFS_IN_OPEN_NODE, o);766 764 o = oper_new("read", 1, arg_def, V_ERRNO, 1, resp_def); 767 765 proto_add_oper(p, VFS_IN_READ, o); -
TabularUnified uspace/lib/c/generic/io/io.c ¶
r866e627 r7171760 101 101 static LIST_INITIALIZE(files); 102 102 103 void __stdio_init(int filc , fdi_node_t *filv[])103 void __stdio_init(int filc) 104 104 { 105 105 if (filc > 0) { 106 stdin = fopen_ node(filv[0], "r");106 stdin = fopen_handle(0); 107 107 } else { 108 108 stdin = &stdin_null; … … 111 111 112 112 if (filc > 1) { 113 stdout = fopen_ node(filv[1], "w");113 stdout = fopen_handle(1); 114 114 } else { 115 115 stdout = &stdout_klog; … … 118 118 119 119 if (filc > 2) { 120 stderr = fopen_ node(filv[2], "w");120 stderr = fopen_handle(2); 121 121 } else { 122 122 stderr = &stderr_klog; … … 285 285 } 286 286 287 FILE *fopen_node(fdi_node_t *node, const char *mode) 288 { 289 int flags; 290 if (!parse_mode(mode, &flags)) 291 return NULL; 292 287 FILE *fopen_handle(int fd) 288 { 293 289 /* Open file. */ 294 290 FILE *stream = malloc(sizeof(FILE)); … … 298 294 } 299 295 300 stream->fd = open_node(node, flags); 301 if (stream->fd < 0) { 302 /* errno was set by open_node() */ 303 free(stream); 304 return NULL; 305 } 306 296 stream->fd = fd; 307 297 stream->error = false; 308 298 stream->eof = false; … … 780 770 } 781 771 782 int fnode(FILE *stream, fdi_node_t *node) 783 { 784 if (stream->fd >= 0) 785 return fd_node(stream->fd, node); 772 int fhandle(FILE *stream, int *handle) 773 { 774 if (stream->fd >= 0) { 775 *handle = stream->fd; 776 return EOK; 777 } 786 778 787 779 return ENOENT; -
TabularUnified uspace/lib/c/generic/libc.c ¶
r866e627 r7171760 91 91 argc = 0; 92 92 argv = NULL; 93 __stdio_init(0 , NULL);93 __stdio_init(0); 94 94 } else { 95 95 argc = __pcb->argc; 96 96 argv = __pcb->argv; 97 __stdio_init(__pcb->filc , __pcb->filv);97 __stdio_init(__pcb->filc); 98 98 (void) chdir(__pcb->cwd); 99 99 } -
TabularUnified uspace/lib/c/generic/loader.c ¶
r866e627 r7171760 256 256 * 257 257 */ 258 int loader_set_files(loader_t *ldr, fdi_node_t *const files[]) 259 { 260 /* 261 * Serialize the arguments into a single array. First 262 * compute size of the buffer needed. 263 */ 264 fdi_node_t *const *ap = files; 265 size_t count = 0; 266 while (*ap != NULL) { 267 count++; 268 ap++; 269 } 270 271 fdi_node_t *files_buf; 272 files_buf = (fdi_node_t *) malloc(count * sizeof(fdi_node_t)); 273 if (files_buf == NULL) 274 return ENOMEM; 275 276 /* Fill the buffer */ 277 size_t i; 278 for (i = 0; i < count; i++) 279 files_buf[i] = *files[i]; 280 258 int loader_set_files(loader_t *ldr, int * const files[]) 259 { 281 260 /* Send serialized files to the loader */ 282 261 async_exch_t *exch = async_exchange_begin(ldr->sess); 283 284 ipc_call_t answer; 285 aid_t req = async_send_0(exch, LOADER_SET_FILES, &answer); 286 sysarg_t rc = async_data_write_start(exch, (void *) files_buf, 287 count * sizeof(fdi_node_t)); 288 289 async_exchange_end(exch); 290 free(files_buf); 291 262 async_exch_t *vfs_exch = vfs_exchange_begin(); 263 264 int i; 265 for (i = 0; files[i]; i++) 266 ; 267 268 ipc_call_t answer; 269 aid_t req = async_send_1(exch, LOADER_SET_FILES, i, &answer); 270 271 sysarg_t rc; 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 292 283 if (rc != EOK) { 293 284 async_wait_for(req, NULL); -
TabularUnified uspace/lib/c/generic/private/async.h ¶
r866e627 r7171760 36 36 #define LIBC_PRIVATE_ASYNC_H_ 37 37 38 #include <ipc/common.h> 38 39 #include <adt/list.h> 39 40 #include <fibril.h> -
TabularUnified uspace/lib/c/generic/private/io.h ¶
r866e627 r7171760 36 36 #define LIBC_PRIVATE_IO_H_ 37 37 38 #include <vfs/vfs.h> 39 40 extern void __stdio_init(int filc, fdi_node_t *filv[]); 38 extern void __stdio_init(int); 41 39 extern void __stdio_done(void); 42 40 -
TabularUnified uspace/lib/c/generic/task.c ¶
r866e627 r7171760 103 103 { 104 104 /* Send default files */ 105 fdi_node_t *files[4];106 fdi_node_t stdin_node;107 fdi_node_t stdout_node;108 fdi_node_t stderr_node;109 110 if ((stdin != NULL) && (f node(stdin, &stdin_node) == EOK))111 files[0] = & stdin_node;105 int *files[4]; 106 int fd_stdin; 107 int fd_stdout; 108 int fd_stderr; 109 110 if ((stdin != NULL) && (fhandle(stdin, &fd_stdin) == EOK)) 111 files[0] = &fd_stdin; 112 112 else 113 113 files[0] = NULL; 114 114 115 if ((stdout != NULL) && (f node(stdout, &stdout_node) == EOK))116 files[1] = & stdout_node;115 if ((stdout != NULL) && (fhandle(stdout, &fd_stdout) == EOK)) 116 files[1] = &fd_stdout; 117 117 else 118 118 files[1] = NULL; 119 119 120 if ((stderr != NULL) && (f node(stderr, &stderr_node) == EOK))121 files[2] = & stderr_node;120 if ((stderr != NULL) && (fhandle(stderr, &fd_stderr) == EOK)) 121 files[2] = &fd_stderr; 122 122 else 123 123 files[2] = NULL; … … 143 143 */ 144 144 int task_spawnvf(task_id_t *id, const char *path, const char *const args[], 145 fdi_node_t *const files[])145 int *const files[]) 146 146 { 147 147 /* Connect to a program loader. */ -
TabularUnified uspace/lib/c/generic/vfs/vfs.c ¶
r866e627 r7171760 329 329 } 330 330 331 int open_node(fdi_node_t *node, int oflag)332 {333 async_exch_t *exch = vfs_exchange_begin();334 335 ipc_call_t answer;336 aid_t req = async_send_4(exch, VFS_IN_OPEN_NODE, node->fs_handle,337 node->devmap_handle, node->index, oflag, &answer);338 339 vfs_exchange_end(exch);340 341 sysarg_t rc;342 async_wait_for(req, &rc);343 344 if (rc != EOK)345 return (int) rc;346 347 return (int) IPC_GET_ARG1(answer);348 }349 350 331 int close(int fildes) 351 332 { … … 819 800 } 820 801 821 int fd_node(int fildes, fdi_node_t *node)822 {823 struct stat stat;824 int rc = fstat(fildes, &stat);825 826 if (rc == EOK) {827 node->fs_handle = stat.fs_handle;828 node->devmap_handle = stat.devmap_handle;829 node->index = stat.index;830 }831 832 return rc;833 }834 835 802 int dup2(int oldfd, int newfd) 836 803 { -
TabularUnified uspace/lib/c/include/loader/loader.h ¶
r866e627 r7171760 39 39 #include <task.h> 40 40 41 typedef struct fdi_node fdi_node_t;42 43 41 /** Forward declararion */ 44 42 struct loader; … … 51 49 extern int loader_set_pathname(loader_t *, const char *); 52 50 extern int loader_set_args(loader_t *, const char *const[]); 53 extern int loader_set_files(loader_t *, fdi_node_t *const[]);51 extern int loader_set_files(loader_t *, int *const[]); 54 52 extern int loader_load_program(loader_t *); 55 53 extern int loader_run(loader_t *); -
TabularUnified uspace/lib/c/include/loader/pcb.h ¶
r866e627 r7171760 38 38 39 39 #include <sys/types.h> 40 #include <vfs/vfs.h>41 40 42 41 typedef void (*entry_point_t)(void); … … 62 61 63 62 /** Number of preset files. */ 64 int filc; 65 /** Preset files. */ 66 fdi_node_t **filv; 63 unsigned int filc; 67 64 68 65 /* -
TabularUnified uspace/lib/c/include/task.h ¶
r866e627 r7171760 38 38 #include <sys/types.h> 39 39 40 typedef struct fdi_node fdi_node_t;41 42 40 typedef uint64_t task_id_t; 43 41 … … 54 52 extern int task_spawnv(task_id_t *, const char *path, const char *const []); 55 53 extern int task_spawnvf(task_id_t *, const char *path, const char *const [], 56 fdi_node_t *const []);54 int *const []); 57 55 extern int task_spawnl(task_id_t *, const char *path, ...); 58 56 -
TabularUnified uspace/lib/c/include/vfs/vfs.h ¶
r866e627 r7171760 46 46 }; 47 47 48 /** Libc version of the VFS triplet.49 *50 * Unique identification of a file system node51 * within a file system instance.52 *53 */54 typedef struct fdi_node {55 fs_handle_t fs_handle;56 devmap_handle_t devmap_handle;57 fs_index_t index;58 } fdi_node_t;59 60 48 extern char *absolutize(const char *, size_t *); 61 49 … … 64 52 extern int unmount(const char *); 65 53 66 extern int open_node(fdi_node_t *, int); 67 extern int fd_node(int, fdi_node_t *); 68 69 extern FILE *fopen_node(fdi_node_t *, const char *); 70 extern int fnode(FILE *, fdi_node_t *); 54 extern FILE *fopen_handle(int); 55 extern int fhandle(FILE *, int *); 71 56 72 57 extern async_exch_t *vfs_exchange_begin(void); -
TabularUnified uspace/srv/loader/main.c ¶
r866e627 r7171760 61 61 #include <elf/elf.h> 62 62 #include <elf/elf_load.h> 63 #include <vfs/vfs.h> 63 64 64 65 #ifdef CONFIG_RTLD … … 89 90 90 91 /** Number of preset files */ 91 static int filc = 0; 92 /** Preset files vector */ 93 static fdi_node_t **filv = NULL; 94 /** Buffer holding all preset files */ 95 static fdi_node_t *fil_buf = NULL; 92 static unsigned int filc = 0; 96 93 97 94 static elf_info_t prog_info; … … 239 236 static void ldr_set_files(ipc_callid_t rid, ipc_call_t *request) 240 237 { 241 fdi_node_t *buf; 242 size_t buf_size; 243 int rc = async_data_write_accept((void **) &buf, false, 0, 0, 244 sizeof(fdi_node_t), &buf_size); 245 246 if (rc == EOK) { 247 int count = buf_size / sizeof(fdi_node_t); 248 249 /* 250 * Allocate new filv 251 */ 252 fdi_node_t **_filv = (fdi_node_t **) calloc(count + 1, sizeof(fdi_node_t *)); 253 if (_filv == NULL) { 254 free(buf); 255 async_answer_0(rid, ENOMEM); 256 return; 238 size_t count = IPC_GET_ARG1(*request); 239 240 async_exch_t *vfs_exch = vfs_exchange_begin(); 241 242 for (filc = 0; filc < count; filc++) { 243 ipc_callid_t callid; 244 245 if (!async_state_change_receive(&callid, NULL, NULL, NULL)) { 246 async_answer_0(callid, EINVAL); 247 break; 257 248 } 258 259 /* 260 * Fill the new filv with argument pointers 261 */ 262 int i; 263 for (i = 0; i < count; i++) 264 _filv[i] = &buf[i]; 265 266 _filv[count] = NULL; 267 268 /* 269 * Copy temporary data to global variables 270 */ 271 if (fil_buf != NULL) 272 free(fil_buf); 273 274 if (filv != NULL) 275 free(filv); 276 277 filc = count; 278 fil_buf = buf; 279 filv = _filv; 280 } 281 249 async_state_change_finalize(callid, vfs_exch); 250 } 251 252 vfs_exchange_end(vfs_exch); 253 282 254 async_answer_0(rid, EOK); 283 255 } … … 308 280 309 281 pcb.filc = filc; 310 pcb.filv = filv;311 282 312 283 if (prog_info.interp == NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.