]> git.ipfire.org Git - thirdparty/git.git/blame - rsh.c
Revert "Make left-right automatic."
[thirdparty/git.git] / rsh.c
CommitLineData
6eb7ed54 1#include <string.h>
ec8f8116 2#include <sys/types.h>
6eb7ed54
DB
3#include <sys/socket.h>
4
f336af17
PA
5#include "rsh.h"
6#include "quote.h"
6eb7ed54
DB
7#include "cache.h"
8
9#define COMMAND_SIZE 4096
10
86257aa3 11int setup_connection(int *fd_in, int *fd_out, const char *remote_prog,
6eb7ed54
DB
12 char *url, int rmt_argc, char **rmt_argv)
13{
14 char *host;
15 char *path;
16 int sv[2];
17 char command[COMMAND_SIZE];
18 char *posn;
0de68d28
PA
19 int sizen;
20 int of;
6eb7ed54 21 int i;
c9bc159d 22 pid_t pid;
6eb7ed54
DB
23
24 if (!strcmp(url, "-")) {
25 *fd_in = 0;
26 *fd_out = 1;
27 return 0;
28 }
29
30 host = strstr(url, "//");
001d4a27
LT
31 if (host) {
32 host += 2;
33 path = strchr(host, '/');
34 } else {
35 host = url;
36 path = strchr(host, ':');
479346ad
SV
37 if (path)
38 *(path++) = '\0';
6eb7ed54 39 }
6eb7ed54
DB
40 if (!path) {
41 return error("Bad URL: %s", url);
42 }
25738089 43 /* $GIT_RSH <host> "env GIT_DIR=<path> <remote_prog> <args...>" */
0de68d28
PA
44 sizen = COMMAND_SIZE;
45 posn = command;
46 of = 0;
47 of |= add_to_string(&posn, &sizen, "env ", 0);
977ed47d 48 of |= add_to_string(&posn, &sizen, GIT_DIR_ENVIRONMENT "=", 0);
0de68d28
PA
49 of |= add_to_string(&posn, &sizen, path, 1);
50 of |= add_to_string(&posn, &sizen, " ", 0);
51 of |= add_to_string(&posn, &sizen, remote_prog, 1);
52
53 for ( i = 0 ; i < rmt_argc ; i++ ) {
54 of |= add_to_string(&posn, &sizen, " ", 0);
55 of |= add_to_string(&posn, &sizen, rmt_argv[i], 1);
6eb7ed54 56 }
0de68d28
PA
57
58 of |= add_to_string(&posn, &sizen, " -", 0);
59
60 if ( of )
61 return error("Command line too long");
62
63 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sv))
6eb7ed54 64 return error("Couldn't create socket");
0de68d28 65
c9bc159d
PD
66 pid = fork();
67 if (pid < 0)
68 return error("Couldn't fork");
69 if (!pid) {
c7c81b3a
JR
70 const char *ssh, *ssh_basename;
71 ssh = getenv("GIT_SSH");
72 if (!ssh) ssh = "ssh";
73 ssh_basename = strrchr(ssh, '/');
4852f723
MS
74 if (!ssh_basename)
75 ssh_basename = ssh;
76 else
77 ssh_basename++;
6eb7ed54
DB
78 close(sv[1]);
79 dup2(sv[0], 0);
80 dup2(sv[0], 1);
4852f723 81 execlp(ssh, ssh_basename, host, command, NULL);
6eb7ed54
DB
82 }
83 close(sv[0]);
84 *fd_in = sv[1];
85 *fd_out = sv[1];
86 return 0;
87}