1 #ifndef COUNTERPART_ENV_NAME
2 #define COUNTERPART_ENV_NAME "GIT_SSH_FETCH"
4 #ifndef COUNTERPART_PROGRAM_NAME
5 #define COUNTERPART_PROGRAM_NAME "git-ssh-fetch"
7 #ifndef MY_PROGRAM_NAME
8 #define MY_PROGRAM_NAME "git-ssh-upload"
15 static unsigned char local_version
= 1;
16 static unsigned char remote_version
;
20 static int serve_object(int fd_in
, int fd_out
) {
22 unsigned char sha1
[20];
25 size
= read_in_full(fd_in
, sha1
, 20);
27 perror("git-ssh-upload: read ");
34 fprintf(stderr
, "Serving %s\n", sha1_to_hex(sha1
));
38 if (!has_sha1_file(sha1
)) {
39 fprintf(stderr
, "git-ssh-upload: could not find %s\n",
44 if (write_in_full(fd_out
, &remote
, 1) != 1)
50 return write_sha1_to_fd(fd_out
, sha1
);
53 static int serve_version(int fd_in
, int fd_out
)
55 if (xread(fd_in
, &remote_version
, 1) < 1)
57 write_in_full(fd_out
, &local_version
, 1);
61 static int serve_ref(int fd_in
, int fd_out
)
64 unsigned char sha1
[20];
66 signed char remote
= 0;
68 if (posn
>= PATH_MAX
|| xread(fd_in
, ref
+ posn
, 1) < 1)
71 } while (ref
[posn
- 1]);
74 fprintf(stderr
, "Serving %s\n", ref
);
76 if (get_ref_sha1(ref
, sha1
))
78 if (write_in_full(fd_out
, &remote
, 1) != 1)
82 write_in_full(fd_out
, sha1
, 20);
87 static void service(int fd_in
, int fd_out
) {
91 retval
= xread(fd_in
, &type
, 1);
94 perror("git-ssh-upload: read ");
97 if (type
== 'v' && serve_version(fd_in
, fd_out
))
99 if (type
== 'o' && serve_object(fd_in
, fd_out
))
101 if (type
== 'r' && serve_ref(fd_in
, fd_out
))
106 static const char ssh_push_usage
[] =
107 MY_PROGRAM_NAME
" [-c] [-t] [-a] [-w ref] commit-id url";
109 int main(int argc
, char **argv
)
116 unsigned char sha1
[20];
119 prog
= getenv(COUNTERPART_ENV_NAME
);
120 if (!prog
) prog
= COUNTERPART_PROGRAM_NAME
;
122 setup_git_directory();
124 while (arg
< argc
&& argv
[arg
][0] == '-') {
125 if (argv
[arg
][1] == 'w')
130 usage(ssh_push_usage
);
131 commit_id
= argv
[arg
];
133 if (get_sha1(commit_id
, sha1
))
134 die("Not a valid object name %s", commit_id
);
135 memcpy(hex
, sha1_to_hex(sha1
), sizeof(hex
));
138 if (setup_connection(&fd_in
, &fd_out
, prog
, url
, arg
, argv
+ 1))
141 service(fd_in
, fd_out
);