#include <sys/wait.h>
#include <ctype.h>
#include <err.h>
#include <paths.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define ISMAGICNO(p) \
(p)[0] == magic && isdigit((unsigned char)(p)[1]) && (p)[1] != '0'
__dead void usage(void);
static int mysystem(const char *);
char *str;
size_t sz;
void
stradd(char *p)
{
size_t n;
n = strlen(p);
if (str == NULL) {
sz = (n / 1024 + 1) * 1024;
if ((str = malloc(sz)) == NULL)
err(1, "malloc");
*str = '\0';
} else if (sz - strlen(str) <= n) {
sz += (n / 1024 + 1) * 1024;
if ((str = realloc(str, sz)) == NULL)
err(1, "realloc");
}
strlcat(str, p, sz);
}
void
strset(char *p)
{
if (str != NULL)
str[0] = '\0';
stradd(p);
}
int
main(int argc, char *argv[])
{
int ch, debug, i, magic, n, nargs, rval;
char buf[4], *cmd, *p;
if (pledge("stdio proc exec", NULL) == -1)
err(1, "pledge");
debug = 0;
magic = '%';
nargs = -1;
while ((ch = getopt(argc, argv, "a:d0123456789")) != -1)
switch (ch) {
case 'a':
if (optarg[0] == '\0' || optarg[1] != '\0')
errx(1,
"illegal magic character specification.");
magic = optarg[0];
break;
case 'd':
debug = 1;
break;
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
if (nargs != -1)
errx(1,
"only one -# argument may be specified.");
nargs = ch - '0';
break;
default:
usage();
}
argc -= optind;
argv += optind;
if (argc < 2)
usage();
for (n = 0, p = argv[0]; *p != '\0'; ++p)
if (ISMAGICNO(p)) {
++p;
if (p[0] - '0' > n)
n = p[0] - '0';
}
strset(argv[0]);
if (n == 0) {
if (nargs == -1)
nargs = 1;
for (i = 1; i <= nargs; i++) {
snprintf(buf, sizeof(buf), " %c%d", magic, i);
stradd(buf);
}
if (nargs == 0)
nargs = 1;
} else
nargs = n;
if ((cmd = strdup(str)) == NULL)
err(1, "strdup");
for (rval = 0; argc > nargs; argc -= nargs, argv += nargs) {
strset("exec ");
for (p = cmd; *p != '\0'; ++p)
if (ISMAGICNO(p))
stradd(argv[*(++p) - '0']);
else {
strlcpy(buf, p, 2);
stradd(buf);
}
if (debug)
(void)printf("%s\n", str);
else if (mysystem(str))
rval = 1;
}
if (argc != 1)
errx(1, "expecting additional argument%s after \"%s\"",
(nargs - argc) ? "s" : "", argv[argc - 1]);
exit(rval);
}
static int
mysystem(const char *command)
{
static const char *name, *shell;
pid_t pid;
int pstat;
sigset_t mask, omask;
sig_t intsave, quitsave;
if (shell == NULL) {
if ((shell = getenv("SHELL")) == NULL)
shell = _PATH_BSHELL;
if ((name = strrchr(shell, '/')) == NULL)
name = shell;
else
++name;
}
if (!command)
return(1);
sigemptyset(&mask);
sigaddset(&mask, SIGCHLD);
sigprocmask(SIG_BLOCK, &mask, &omask);
switch(pid = fork()) {
case -1:
err(1, "fork");
case 0:
sigprocmask(SIG_SETMASK, &omask, NULL);
execl(shell, name, "-c", command, (char *)NULL);
err(1, "%s", shell);
}
intsave = signal(SIGINT, SIG_IGN);
quitsave = signal(SIGQUIT, SIG_IGN);
pid = waitpid(pid, &pstat, 0);
sigprocmask(SIG_SETMASK, &omask, NULL);
(void)signal(SIGINT, intsave);
(void)signal(SIGQUIT, quitsave);
return(pid == -1 ? -1 : pstat);
}
__dead void
usage(void)
{
(void)fprintf(stderr,
"usage: apply [-#] [-d] [-a magic] command argument ...\n");
exit(1);
}