1 /* Minimal /bin/sh for in-container use.
2 Copyright (C) 2018-2019 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #define _FILE_OFFSET_BITS 64
25 #include <sys/syscall.h>
27 #include <sys/types.h>
31 #include <sys/fcntl.h>
35 #include <sys/sysmacros.h>
41 #include <support/support.h>
43 /* Design considerations
45 General rule: optimize for developer time, not run time.
49 * Don't worry about slow algorithms
50 * Don't worry about free'ing memory
51 * Don't implement anything the testsuite doesn't need.
52 * Line and argument counts are limited, see below.
56 #define MAX_ARG_COUNT 100
57 #define MAX_LINE_LENGTH 1000
59 /* Debugging is enabled via --debug, which must be the first argument. */
60 static int debug_mode
= 0;
61 #define dprintf if (debug_mode) fprintf
63 /* Emulate the "/bin/true" command. Arguments are ignored. */
65 true_func (char **argv
)
70 /* Emulate the "/bin/echo" command. Options are ignored, arguments
71 are printed to stdout. */
73 echo_func (char **argv
)
77 for (i
= 0; argv
[i
]; i
++)
81 fputs (argv
[i
], stdout
);
88 /* Emulate the "/bin/cp" command. Options are ignored. Only copies
89 one source file to one destination file. Directory destinations
92 copy_func (char **argv
)
94 char *sname
= argv
[0];
95 char *dname
= argv
[1];
99 sfd
= open (sname
, O_RDONLY
);
102 fprintf (stderr
, "cp: unable to open %s for reading: %s\n",
103 sname
, strerror (errno
));
107 if (fstat (sfd
, &st
) < 0)
109 fprintf (stderr
, "cp: unable to fstat %s: %s\n",
110 sname
, strerror (errno
));
114 dfd
= open (dname
, O_WRONLY
| O_TRUNC
| O_CREAT
, 0600);
117 fprintf (stderr
, "cp: unable to open %s for writing: %s\n",
118 dname
, strerror (errno
));
122 if (support_copy_file_range (sfd
, 0, dfd
, 0, st
.st_size
, 0) != st
.st_size
)
124 fprintf (stderr
, "cp: cannot copy file %s to %s: %s\n",
125 sname
, dname
, strerror (errno
));
132 chmod (dname
, st
.st_mode
& 0777);
138 /* This is a list of all the built-in commands we understand. */
141 int (*func
) (char **argv
);
142 } builtin_funcs
[] = {
143 { "true", true_func
},
144 { "echo", echo_func
},
149 /* Run one tokenized command. argv[0] is the command. argv is
152 run_command_array (char **argv
)
157 int (*builtin_func
) (char **args
);
168 dprintf (stderr
, "run_command_array starting\n");
169 for (i
= 0; argv
[i
]; i
++)
170 dprintf (stderr
, " argv [%d] `%s'\n", i
, argv
[i
]);
172 for (j
= i
= 0; argv
[i
]; i
++)
174 if (strcmp (argv
[i
], "<") == 0 && argv
[i
+ 1])
176 new_stdin
= open (argv
[i
+ 1], O_WRONLY
|O_CREAT
|O_TRUNC
, 0777);
180 if (strcmp (argv
[i
], ">") == 0 && argv
[i
+ 1])
182 new_stdout
= open (argv
[i
+ 1], O_WRONLY
|O_CREAT
|O_TRUNC
, 0777);
186 if (strcmp (argv
[i
], ">>") == 0 && argv
[i
+ 1])
188 new_stdout
= open (argv
[i
+ 1], O_WRONLY
|O_CREAT
|O_APPEND
, 0777);
192 if (strcmp (argv
[i
], "2>") == 0 && argv
[i
+ 1])
194 new_stderr
= open (argv
[i
+ 1], O_WRONLY
|O_CREAT
|O_TRUNC
, 0777);
203 for (i
= 0; builtin_funcs
[i
].name
!= NULL
; i
++)
204 if (strcmp (argv
[0], builtin_funcs
[i
].name
) == 0)
205 builtin_func
= builtin_funcs
[i
].func
;
207 dprintf (stderr
, "builtin %p argv0 `%s'\n", builtin_func
, argv
[0]);
212 fprintf (stderr
, "sh: fork failed\n");
225 dup2 (new_stdout
, 1);
230 dup2 (new_stderr
, 2);
234 if (builtin_func
!= NULL
)
235 exit (builtin_func (argv
+ 1));
237 execvp (argv
[0], argv
);
239 fprintf (stderr
, "sh: execing %s failed: %s",
240 argv
[0], strerror (errno
));
244 waitpid (pid
, &status
, 0);
246 dprintf (stderr
, "exiting run_command_array\n");
248 if (WIFEXITED (status
))
250 int rv
= WEXITSTATUS (status
);
258 /* Run one command-as-a-string, by tokenizing it. Limited to
259 MAX_ARG_COUNT arguments. Simple substitution is done of $1 to $9
260 (as whole separate tokens) from iargs[]. Quoted strings work if
261 the quotes wrap whole tokens; i.e. "foo bar" but not foo" bar". */
263 run_command_string (const char *cmdline
, const char **iargs
)
265 char *args
[MAX_ARG_COUNT
+1];
267 const char *start
, *end
;
270 for (nargs
= 0; iargs
[nargs
] != NULL
; ++nargs
)
273 dprintf (stderr
, "run_command_string starting: '%s'\n", cmdline
);
275 while (ap
< MAX_ARG_COUNT
)
277 /* If the argument is quoted, this is the quote character, else NUL. */
280 /* Skip whitespace up to the next token. */
281 while (*cmdline
&& isspace (*cmdline
))
287 /* Check for quoted argument. */
288 in_quote
= (*cmdline
== '\'' || *cmdline
== '"') ? *cmdline
: 0;
290 /* Skip to end of token; either by whitespace or matching quote. */
291 dprintf (stderr
, "in_quote %d\n", in_quote
);
293 && (!isspace (*cmdline
) || in_quote
))
295 if (*cmdline
== in_quote
298 dprintf (stderr
, "[%c]%d ", *cmdline
, in_quote
);
301 dprintf (stderr
, "\n");
303 /* Allocate space for this token and store it in args[]. */
305 dprintf (stderr
, "start<%s> end<%s>\n", start
, end
);
306 args
[ap
] = (char *) xmalloc (end
- start
+ 1);
307 memcpy (args
[ap
], start
, end
- start
);
308 args
[ap
][end
- start
] = 0;
310 /* Strip off quotes, if found. */
311 dprintf (stderr
, "args[%d] = <%s>\n", ap
, args
[ap
]);
312 if (args
[ap
][0] == '\''
313 && args
[ap
][strlen (args
[ap
])-1] == '\'')
315 args
[ap
][strlen (args
[ap
])-1] = 0;
319 else if (args
[ap
][0] == '"'
320 && args
[ap
][strlen (args
[ap
])-1] == '"')
322 args
[ap
][strlen (args
[ap
])-1] = 0;
326 /* Replace positional parameters like $4. */
327 else if (args
[ap
][0] == '$'
328 && isdigit (args
[ap
][1])
331 int a
= args
[ap
][1] - '1';
332 if (0 <= a
&& a
< nargs
)
333 args
[ap
] = strdup (iargs
[a
]);
342 /* Lastly, NULL terminate the array and run it. */
344 run_command_array (args
);
347 /* Run a script by reading lines and passing them to the above
350 run_script (const char *filename
, const char **args
)
352 char line
[MAX_LINE_LENGTH
+ 1];
353 dprintf (stderr
, "run_script starting: '%s'\n", filename
);
354 FILE *f
= fopen (filename
, "r");
357 fprintf (stderr
, "sh: %s: %s\n", filename
, strerror (errno
));
360 while (fgets (line
, sizeof (line
), f
) != NULL
)
364 dprintf (stderr
, "comment: %s\n", line
);
367 run_command_string (line
, args
);
373 main (int argc
, const char **argv
)
377 if (strcmp (argv
[1], "--debug") == 0)
384 dprintf (stderr
, "container-sh starting:\n");
385 for (i
= 0; i
< argc
; i
++)
386 dprintf (stderr
, " argv[%d] is `%s'\n", i
, argv
[i
]);
388 if (strcmp (argv
[1], "-c") == 0)
389 run_command_string (argv
[2], argv
+3);
391 run_script (argv
[1], argv
+2);
393 dprintf (stderr
, "normal exit 0\n");