[PATCH] Test GIT environment use.
[git/gitweb.git] / rsh.c
blob5d1cb9d578a8e679fc190a9d7d2c842ad811223f
1 #include "rsh.h"
3 #include <string.h>
4 #include <sys/types.h>
5 #include <sys/socket.h>
7 #include "cache.h"
9 #define COMMAND_SIZE 4096
11 int setup_connection(int *fd_in, int *fd_out, char *remote_prog,
12 char *url, int rmt_argc, char **rmt_argv)
14 char *host;
15 char *path;
16 int sv[2];
17 char command[COMMAND_SIZE];
18 char *posn;
19 int i;
21 if (!strcmp(url, "-")) {
22 *fd_in = 0;
23 *fd_out = 1;
24 return 0;
27 host = strstr(url, "//");
28 if (!host) {
29 return error("Bad URL: %s", url);
31 host += 2;
32 path = strchr(host, '/');
33 if (!path) {
34 return error("Bad URL: %s", url);
36 *(path++) = '\0';
37 /* ssh <host> 'cd /<path>; stdio-pull <arg...> <commit-id>' */
38 snprintf(command, COMMAND_SIZE,
39 "cd /%s; %s=objects %s",
40 path, DB_ENVIRONMENT, remote_prog);
41 posn = command + strlen(command);
42 for (i = 0; i < rmt_argc; i++) {
43 *(posn++) = ' ';
44 strncpy(posn, rmt_argv[i], COMMAND_SIZE - (posn - command));
45 posn += strlen(rmt_argv[i]);
46 if (posn - command + 4 >= COMMAND_SIZE) {
47 return error("Command line too long");
50 strcpy(posn, " -");
51 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sv)) {
52 return error("Couldn't create socket");
54 if (!fork()) {
55 close(sv[1]);
56 dup2(sv[0], 0);
57 dup2(sv[0], 1);
58 execlp("ssh", "ssh", host, command, NULL);
60 close(sv[0]);
61 *fd_in = sv[1];
62 *fd_out = sv[1];
63 return 0;