You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
154 lines
3.1 KiB
154 lines
3.1 KiB
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2016 Cyril Hrubis <chrubis@suse.cz>
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
|
|
#define WRITE_STRING(fd, string) if (write(fd, string, sizeof(string)-1)) {}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int i, pos = 0;
|
|
char *args[argc];
|
|
char *stdin_path = NULL, *stdout_path = NULL, *stderr_path = NULL;
|
|
int stderr_fd = 0;
|
|
|
|
if (argc <= 1) {
|
|
fprintf(stderr, "%s: Takes at least one agrument!\n", argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
if (argv[i][0] == '>') {
|
|
if (argv[i][1]) {
|
|
stdout_path = argv[i]+1;
|
|
} else {
|
|
if (++i >= argc) {
|
|
fprintf(stderr,
|
|
"%s: Missing filename after >\n",
|
|
argv[0]);
|
|
return 1;
|
|
}
|
|
stdout_path = argv[i];
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if (argv[i][0] == '<') {
|
|
if (argv[i][1]) {
|
|
stdin_path = argv[i]+1;
|
|
} else {
|
|
if (++i >= argc) {
|
|
fprintf(stderr,
|
|
"%s: Missing filename after <\n",
|
|
argv[0]);
|
|
return 1;
|
|
}
|
|
stdin_path = argv[i];
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if (argv[i][0] == '2' && argv[i][1] == '>') {
|
|
if (argv[i][2]) {
|
|
stderr_path = argv[i]+2;
|
|
} else {
|
|
if (++i >= argc) {
|
|
fprintf(stderr,
|
|
"%s: Missing filename after 2>\n",
|
|
argv[0]);
|
|
return 1;
|
|
}
|
|
stderr_path = argv[i];
|
|
}
|
|
continue;
|
|
}
|
|
|
|
args[pos++] = argv[i];
|
|
}
|
|
|
|
args[pos] = NULL;
|
|
|
|
if (stdin_path) {
|
|
if (close(0)) {
|
|
fprintf(stderr, "%s: Failed to close stdin: %s\n",
|
|
argv[0], strerror(errno));
|
|
return 1;
|
|
}
|
|
if (open(stdin_path, O_RDONLY) < 0) {
|
|
fprintf(stderr,
|
|
"%s: Failed to open '%s' for reading: %s\n",
|
|
argv[0], stdin_path, strerror(errno));
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
if (stdout_path) {
|
|
if (close(1)) {
|
|
fprintf(stderr, "%s: Failed to close stdout: %s\n",
|
|
argv[0], strerror(errno));
|
|
return 1;
|
|
}
|
|
if (open(stdout_path, O_CREAT|O_WRONLY|O_TRUNC, 0777) < 0) {
|
|
fprintf(stderr,
|
|
"%s: Failed to open '%s' for writing: %s\n",
|
|
argv[0], stdout_path, strerror(errno));
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
if (stderr_path) {
|
|
int fd = open(stderr_path, O_CREAT|O_WRONLY|O_TRUNC, 0777);
|
|
int stderr_fd = dup(2);
|
|
|
|
if (stderr_fd < 0) {
|
|
fprintf(stderr, "%s: Failed to dup() stderr: %s\n",
|
|
argv[0], strerror(errno));
|
|
return 1;
|
|
}
|
|
|
|
if (fd < 0) {
|
|
fprintf(stderr,
|
|
"%s: Failed to open '%s' for writing: %s\n",
|
|
argv[0], stderr_path, strerror(errno));
|
|
return 1;
|
|
}
|
|
|
|
if (dup2(fd, 2) < 0) {
|
|
fprintf(stderr, "%s: Failed to dup2 stderr: %s\n",
|
|
argv[0], strerror(errno));
|
|
WRITE_STRING(stderr_fd, "Failed to dup2 stderr\n");
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
execvp(argv[1], args);
|
|
|
|
/* Fall back to shell if command wasn't found */
|
|
FILE *sin = popen("/bin/sh", "w");
|
|
|
|
if (!sin) {
|
|
if (stderr_fd) {
|
|
WRITE_STRING(stderr_fd, "Failed to popen /bin/sh\n");
|
|
} else {
|
|
fprintf(stderr, "%s: Failed to popen /bin/sh: %s\n",
|
|
argv[0], strerror(errno));
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
//TODO: Should we escape args?
|
|
for (i = 0; args[i]; i++)
|
|
fprintf(sin, "%s ", args[i]);
|
|
|
|
return !!pclose(sin);
|
|
}
|