source: mainline/uspace/app/bdsh/exec.c@ 99013b84

Last change on this file since 99013b84 was a35b458, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 7 years ago

style: Remove trailing whitespace on _all_ lines, including empty ones, for particular file types.

Command used: tools/srepl '\s\+$' '' -- *.c *.h *.py *.sh *.s *.S *.ag

Currently, whitespace on empty lines is very inconsistent.
There are two basic choices: Either remove the whitespace, or keep empty lines
indented to the level of surrounding code. The former is AFAICT more common,
and also much easier to do automatically.

Alternatively, we could write script for automatic indentation, and use that
instead. However, if such a script exists, it's possible to use the indented
style locally, by having the editor apply relevant conversions on load/save,
without affecting remote repository. IMO, it makes more sense to adopt
the simpler rule.

  • Property mode set to 100644
File size: 4.0 KB
Line 
1/*
2 * Copyright (c) 2008 Tim Post
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/* The VERY basics of execute in place support. These are buggy, leaky
30 * and not nearly done. Only here for beta testing!! You were warned!!
31 * TODO:
32 * Hash command lookups to save time
33 * Create a running pointer to **path and advance/rewind it as we go */
34
35#include <stdio.h>
36#include <stdlib.h>
37#include <str.h>
38#include <str_error.h>
39#include <errno.h>
40#include <vfs/vfs.h>
41
42#include "config.h"
43#include "util.h"
44#include "exec.h"
45#include "errors.h"
46
47/* FIXME: Just have find_command() return an allocated string */
48static char *found;
49
50static char *find_command(char *);
51static int try_access(const char *);
52
53const char *search_dir[] = { "/app", "/srv", NULL };
54
55/* work-around for access() */
56static int try_access(const char *f)
57{
58 int fd;
59
60 errno_t rc = vfs_lookup_open(f, WALK_REGULAR, MODE_READ, &fd);
61 if (rc == EOK) {
62 vfs_put(fd);
63 return 0;
64 } else
65 return -1;
66}
67
68/* Returns the full path of "cmd" if cmd is found, else just hand back
69 * cmd as it was presented */
70static char *find_command(char *cmd)
71{
72 size_t i;
73
74 found = (char *)malloc(PATH_MAX);
75
76 /* The user has specified a full or relative path, just give it back. */
77 if (-1 != try_access(cmd)) {
78 return (char *) cmd;
79 }
80
81 /* We now have n places to look for the command */
82 for (i = 0; search_dir[i] != NULL; i++) {
83 memset(found, 0, PATH_MAX);
84 snprintf(found, PATH_MAX, "%s/%s", search_dir[i], cmd);
85 if (-1 != try_access(found)) {
86 return (char *) found;
87 }
88 }
89
90 /* We didn't find it, just give it back as-is. */
91 return (char *) cmd;
92}
93
94unsigned int try_exec(char *cmd, char **argv, iostate_t *io)
95{
96 task_id_t tid;
97 task_wait_t twait;
98 task_exit_t texit;
99 char *tmp;
100 errno_t rc;
101 int retval, i;
102 int file_handles[3] = { -1, -1, -1 };
103 FILE *files[3];
104
105 tmp = str_dup(find_command(cmd));
106 free(found);
107
108 files[0] = io->stdin;
109 files[1] = io->stdout;
110 files[2] = io->stderr;
111
112 for (i = 0; i < 3 && files[i] != NULL; i++) {
113 vfs_fhandle(files[i], &file_handles[i]);
114 }
115
116 rc = task_spawnvf(&tid, &twait, tmp, (const char **) argv,
117 file_handles[0], file_handles[1], file_handles[2]);
118 free(tmp);
119
120 if (rc != EOK) {
121 cli_error(CL_EEXEC, "%s: Cannot spawn `%s' (%s)", progname, cmd,
122 str_error(rc));
123 return 1;
124 }
125
126 rc = task_wait(&twait, &texit, &retval);
127 if (rc != EOK) {
128 printf("%s: Failed waiting for command (%s)\n", progname,
129 str_error(rc));
130 return 1;
131 } else if (texit != TASK_EXIT_NORMAL) {
132 printf("%s: Command failed (unexpectedly terminated)\n", progname);
133 return 1;
134 } else if (retval != 0) {
135 printf("%s: Command failed (exit code %d)\n",
136 progname, retval);
137 return 1;
138 }
139
140 return 0;
141}
Note: See TracBrowser for help on using the repository browser.