5 #include <sys/socket.h>
6 #include <netinet/in.h>
11 * Read all the refs from the other end
13 struct ref
**get_remote_heads(int in
, struct ref
**list
, int nr_match
, char **match
)
18 unsigned char old_sha1
[20];
19 static char buffer
[1000];
23 len
= packet_read_line(in
, buffer
, sizeof(buffer
));
26 if (buffer
[len
-1] == '\n')
29 if (len
< 42 || get_sha1_hex(buffer
, old_sha1
) || buffer
[40] != ' ')
30 die("protocol error: expected sha/ref, got '%s'", buffer
);
32 if (nr_match
&& !path_match(name
, nr_match
, match
))
34 ref
= xcalloc(1, sizeof(*ref
) + len
- 40);
35 memcpy(ref
->old_sha1
, old_sha1
, 20);
36 memcpy(ref
->name
, buffer
+ 41, len
- 40);
43 int get_ack(int fd
, unsigned char *result_sha1
)
45 static char line
[1000];
46 int len
= packet_read_line(fd
, line
, sizeof(line
));
49 die("git-fetch-pack: expected ACK/NAK, got EOF");
50 if (line
[len
-1] == '\n')
52 if (!strcmp(line
, "NAK"))
54 if (!strncmp(line
, "ACK ", 3)) {
55 if (!get_sha1_hex(line
+4, result_sha1
))
58 die("git-fetch_pack: expected ACK/NAK, got '%s'", line
);
61 int path_match(const char *path
, int nr
, char **match
)
64 int pathlen
= strlen(path
);
66 for (i
= 0; i
< nr
; i
++) {
70 if (!len
|| len
> pathlen
)
72 if (memcmp(path
+ pathlen
- len
, s
, len
))
74 if (pathlen
> len
&& path
[pathlen
- len
- 1] != '/')
89 * A:B means fast forward remote B with local A.
90 * +A:B means overwrite remote B with local A.
91 * +A is a shorthand for +A:A.
92 * A is a shorthand for A:A.
94 static struct refspec
*parse_ref_spec(int nr_refspec
, char **refspec
)
97 struct refspec
*rs
= xcalloc(sizeof(*rs
), (nr_refspec
+ 1));
98 for (i
= 0; i
< nr_refspec
; i
++) {
105 ep
= strchr(sp
, ':');
115 rs
[nr_refspec
].src
= rs
[nr_refspec
].dst
= NULL
;
119 static int count_refspec_match(const char *pattern
,
121 struct ref
**matched_ref
)
124 int patlen
= strlen(pattern
);
126 for (match
= 0; refs
; refs
= refs
->next
) {
127 char *name
= refs
->name
;
128 int namelen
= strlen(name
);
129 if (namelen
< patlen
||
130 memcmp(name
+ namelen
- patlen
, pattern
, patlen
))
132 if (namelen
!= patlen
&& name
[namelen
- patlen
- 1] != '/')
140 static void link_dst_tail(struct ref
*ref
, struct ref
***tail
)
147 static struct ref
*try_explicit_object_name(const char *name
)
149 unsigned char sha1
[20];
152 if (get_sha1(name
, sha1
))
154 len
= strlen(name
) + 1;
155 ref
= xcalloc(1, sizeof(*ref
) + len
);
156 memcpy(ref
->name
, name
, len
);
157 memcpy(ref
->new_sha1
, sha1
, 20);
161 static int match_explicit_refs(struct ref
*src
, struct ref
*dst
,
162 struct ref
***dst_tail
, struct refspec
*rs
)
165 for (i
= errs
= 0; rs
[i
].src
; i
++) {
166 struct ref
*matched_src
, *matched_dst
;
168 matched_src
= matched_dst
= NULL
;
169 switch (count_refspec_match(rs
[i
].src
, src
, &matched_src
)) {
173 /* The source could be in the get_sha1() format
174 * not a reference name.
176 matched_src
= try_explicit_object_name(rs
[i
].src
);
180 error("src refspec %s does not match any.",
185 error("src refspec %s matches more than one.",
189 switch (count_refspec_match(rs
[i
].dst
, dst
, &matched_dst
)) {
193 if (!memcmp(rs
[i
].dst
, "refs/", 5)) {
194 int len
= strlen(rs
[i
].dst
) + 1;
195 matched_dst
= xcalloc(1, sizeof(*dst
) + len
);
196 memcpy(matched_dst
->name
, rs
[i
].dst
, len
);
197 link_dst_tail(matched_dst
, dst_tail
);
199 else if (!strcmp(rs
[i
].src
, rs
[i
].dst
) &&
201 /* pushing "master:master" when
202 * remote does not have master yet.
204 int len
= strlen(matched_src
->name
) + 1;
205 matched_dst
= xcalloc(1, sizeof(*dst
) + len
);
206 memcpy(matched_dst
->name
, matched_src
->name
,
208 link_dst_tail(matched_dst
, dst_tail
);
212 error("dst refspec %s does not match any "
213 "existing ref on the remote and does "
214 "not start with refs/.", rs
[i
].dst
);
219 error("dst refspec %s matches more than one.",
225 if (matched_dst
->peer_ref
) {
227 error("dst ref %s receives from more than one src.",
231 matched_dst
->peer_ref
= matched_src
;
232 matched_dst
->force
= rs
[i
].force
;
238 static struct ref
*find_ref_by_name(struct ref
*list
, const char *name
)
240 for ( ; list
; list
= list
->next
)
241 if (!strcmp(list
->name
, name
))
246 int match_refs(struct ref
*src
, struct ref
*dst
, struct ref
***dst_tail
,
247 int nr_refspec
, char **refspec
, int all
)
249 struct refspec
*rs
= parse_ref_spec(nr_refspec
, refspec
);
252 return match_explicit_refs(src
, dst
, dst_tail
, rs
);
254 /* pick the remainder */
255 for ( ; src
; src
= src
->next
) {
256 struct ref
*dst_peer
;
259 dst_peer
= find_ref_by_name(dst
, src
->name
);
260 if ((dst_peer
&& dst_peer
->peer_ref
) || (!dst_peer
&& !all
))
263 /* Create a new one and link it */
264 int len
= strlen(src
->name
) + 1;
265 dst_peer
= xcalloc(1, sizeof(*dst_peer
) + len
);
266 memcpy(dst_peer
->name
, src
->name
, len
);
267 memcpy(dst_peer
->new_sha1
, src
->new_sha1
, 20);
268 link_dst_tail(dst_peer
, dst_tail
);
270 dst_peer
->peer_ref
= src
;
281 static enum protocol
get_protocol(const char *name
)
283 if (!strcmp(name
, "ssh"))
285 if (!strcmp(name
, "git"))
287 die("I don't handle protocol '%s'", name
);
291 #define STR(s) STR_(s)
295 static int git_tcp_connect(int fd
[2], const char *prog
, char *host
, char *path
)
299 char *port
= STR(DEFAULT_GIT_PORT
);
300 struct addrinfo hints
, *ai0
, *ai
;
303 if (host
[0] == '[') {
304 end
= strchr(host
+ 1, ']');
313 colon
= strchr(end
, ':');
320 memset(&hints
, 0, sizeof(hints
));
321 hints
.ai_socktype
= SOCK_STREAM
;
322 hints
.ai_protocol
= IPPROTO_TCP
;
324 gai
= getaddrinfo(host
, port
, &hints
, &ai
);
326 die("Unable to look up %s (%s)", host
, gai_strerror(gai
));
328 for (ai0
= ai
; ai
; ai
= ai
->ai_next
) {
329 sockfd
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
332 if (connect(sockfd
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
343 die("unable to connect a socket (%s)", strerror(errno
));
347 packet_write(sockfd
, "%s %s\n", prog
, path
);
353 static int git_tcp_connect(int fd
[2], const char *prog
, char *host
, char *path
)
357 char *port
= STR(DEFAULT_GIT_PORT
), *ep
;
359 struct sockaddr_in sa
;
363 if (host
[0] == '[') {
364 end
= strchr(host
+ 1, ']');
373 colon
= strchr(end
, ':');
381 he
= gethostbyname(host
);
383 die("Unable to look up %s (%s)", host
, hstrerror(h_errno
));
384 nport
= strtoul(port
, &ep
, 10);
385 if ( ep
== port
|| *ep
) {
387 struct servent
*se
= getservbyname(port
,"tcp");
389 die("Unknown port %s\n", port
);
393 for (ap
= he
->h_addr_list
; *ap
; ap
++) {
394 sockfd
= socket(he
->h_addrtype
, SOCK_STREAM
, 0);
398 memset(&sa
, 0, sizeof sa
);
399 sa
.sin_family
= he
->h_addrtype
;
400 sa
.sin_port
= htons(nport
);
401 memcpy(&sa
.sin_addr
, ap
, he
->h_length
);
403 if (connect(sockfd
, (struct sockaddr
*)&sa
, sizeof sa
) < 0) {
412 die("unable to connect a socket (%s)", strerror(errno
));
416 packet_write(sockfd
, "%s %s\n", prog
, path
);
423 * Yeah, yeah, fixme. Need to pass in the heads etc.
425 int git_connect(int fd
[2], char *url
, const char *prog
)
432 enum protocol protocol
;
436 colon
= strchr(url
, ':');
437 protocol
= PROTO_LOCAL
;
442 protocol
= PROTO_SSH
;
443 if (!memcmp(path
, "//", 2)) {
444 char *slash
= strchr(path
+ 2, '/');
446 int nr
= slash
- path
- 2;
447 memmove(path
, path
+2, nr
);
449 protocol
= get_protocol(url
);
456 if (protocol
== PROTO_GIT
)
457 return git_tcp_connect(fd
, prog
, host
, path
);
459 if (pipe(pipefd
[0]) < 0 || pipe(pipefd
[1]) < 0)
460 die("unable to create pipe pair for communication");
463 snprintf(command
, sizeof(command
), "%s %s", prog
,
465 dup2(pipefd
[1][0], 0);
466 dup2(pipefd
[0][1], 1);
471 if (protocol
== PROTO_SSH
) {
472 const char *ssh
, *ssh_basename
;
473 ssh
= getenv("GIT_SSH");
474 if (!ssh
) ssh
= "ssh";
475 ssh_basename
= strrchr(ssh
, '/');
480 execlp(ssh
, ssh_basename
, host
, command
, NULL
);
483 execlp("sh", "sh", "-c", command
, NULL
);
486 fd
[0] = pipefd
[0][0];
487 fd
[1] = pipefd
[1][1];
493 int finish_connect(pid_t pid
)
498 ret
= waitpid(pid
, NULL
, 0);