Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | #include "refs.h" |
| 3 | #include "pkt-line.h" |
Junio C Hamano | 958c24b | 2006-09-10 03:20:24 -0700 | [diff] [blame] | 4 | #include "sideband.h" |
Junio C Hamano | f6b42a8 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 5 | #include "tag.h" |
| 6 | #include "object.h" |
Johannes Schindelin | f0243f2 | 2005-10-28 04:48:32 +0200 | [diff] [blame] | 7 | #include "commit.h" |
Michal Ostrowski | 77cb17e | 2006-01-10 21:12:17 -0500 | [diff] [blame] | 8 | #include "exec_cmd.h" |
Johannes Schindelin | 9b8dc26 | 2006-10-30 20:08:43 +0100 | [diff] [blame] | 9 | #include "diff.h" |
| 10 | #include "revision.h" |
| 11 | #include "list-objects.h" |
Johannes Sixt | cc41fa8 | 2007-10-19 21:47:59 +0200 | [diff] [blame] | 12 | #include "run-command.h" |
Junio C Hamano | 47a5918 | 2013-07-08 13:56:53 -0700 | [diff] [blame] | 13 | #include "connect.h" |
Junio C Hamano | 051e400 | 2011-08-05 13:54:06 -0700 | [diff] [blame] | 14 | #include "sigchain.h" |
Jeff King | ff5effd | 2012-08-03 12:19:16 -0400 | [diff] [blame] | 15 | #include "version.h" |
Junio C Hamano | daebaa7 | 2013-01-18 16:08:30 -0800 | [diff] [blame] | 16 | #include "string-list.h" |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 17 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 18 | static const char upload_pack_usage[] = "git upload-pack [--strict] [--timeout=<n>] <dir>"; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 19 | |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 20 | /* bits #0..7 in revision.h, #8..10 in commit.c */ |
| 21 | #define THEY_HAVE (1u << 11) |
| 22 | #define OUR_REF (1u << 12) |
| 23 | #define WANTED (1u << 13) |
| 24 | #define COMMON_KNOWN (1u << 14) |
| 25 | #define REACHABLE (1u << 15) |
| 26 | |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 27 | #define SHALLOW (1u << 16) |
| 28 | #define NOT_SHALLOW (1u << 17) |
| 29 | #define CLIENT_SHALLOW (1u << 18) |
Junio C Hamano | 390eb36 | 2013-01-28 21:49:57 -0800 | [diff] [blame] | 30 | #define HIDDEN_REF (1u << 19) |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 31 | |
Junio C Hamano | 3fbe2d5 | 2006-11-24 02:34:27 -0800 | [diff] [blame] | 32 | static unsigned long oldest_have; |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 33 | |
Junio C Hamano | 3f1da57 | 2013-01-28 20:45:43 -0800 | [diff] [blame] | 34 | static int multi_ack; |
Junio C Hamano | 4e10cf9 | 2011-03-29 12:29:10 -0700 | [diff] [blame] | 35 | static int no_done; |
Shawn O. Pearce | 348e390 | 2008-03-03 22:27:33 -0500 | [diff] [blame] | 36 | static int use_thin_pack, use_ofs_delta, use_include_tag; |
Johannes Sixt | 9462e3f | 2009-06-16 20:41:16 +0200 | [diff] [blame] | 37 | static int no_progress, daemon_mode; |
Junio C Hamano | 390eb36 | 2013-01-28 21:49:57 -0800 | [diff] [blame] | 38 | static int allow_tip_sha1_in_want; |
Nick Edelen | f0cea83 | 2009-06-10 01:50:18 +0200 | [diff] [blame] | 39 | static int shallow_nr; |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 40 | static struct object_array have_obj; |
| 41 | static struct object_array want_obj; |
Nicolas Pitre | 6523078 | 2009-09-03 19:08:33 -0400 | [diff] [blame] | 42 | static struct object_array extra_edge_obj; |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 43 | static unsigned int timeout; |
Jeff King | 115dedd | 2013-09-08 05:02:06 -0400 | [diff] [blame] | 44 | static int keepalive = 5; |
Junio C Hamano | d47f3db | 2006-09-10 16:27:08 -0700 | [diff] [blame] | 45 | /* 0 for no sideband, |
| 46 | * otherwise maximum packet size (up to 65520 bytes). |
| 47 | */ |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 48 | static int use_sideband; |
Shawn O. Pearce | 42526b4 | 2009-10-30 17:47:33 -0700 | [diff] [blame] | 49 | static int advertise_refs; |
| 50 | static int stateless_rpc; |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 51 | |
| 52 | static void reset_timeout(void) |
| 53 | { |
| 54 | alarm(timeout); |
| 55 | } |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 56 | |
Junio C Hamano | 583b7ea | 2006-06-21 00:30:21 -0700 | [diff] [blame] | 57 | static ssize_t send_client_data(int fd, const char *data, ssize_t sz) |
| 58 | { |
Junio C Hamano | 958c24b | 2006-09-10 03:20:24 -0700 | [diff] [blame] | 59 | if (use_sideband) |
Junio C Hamano | d47f3db | 2006-09-10 16:27:08 -0700 | [diff] [blame] | 60 | return send_sideband(1, fd, data, sz, use_sideband); |
Junio C Hamano | 958c24b | 2006-09-10 03:20:24 -0700 | [diff] [blame] | 61 | if (fd == 3) |
| 62 | /* emergency quit */ |
| 63 | fd = 2; |
| 64 | if (fd == 2) { |
Andy Whitcroft | 93822c2 | 2007-01-08 15:58:23 +0000 | [diff] [blame] | 65 | /* XXX: are we happy to lose stuff here? */ |
Junio C Hamano | 958c24b | 2006-09-10 03:20:24 -0700 | [diff] [blame] | 66 | xwrite(fd, data, sz); |
| 67 | return sz; |
Junio C Hamano | 583b7ea | 2006-06-21 00:30:21 -0700 | [diff] [blame] | 68 | } |
Jeff King | cdf4fb8 | 2013-02-20 15:01:56 -0500 | [diff] [blame] | 69 | write_or_die(fd, data, sz); |
| 70 | return sz; |
Junio C Hamano | 583b7ea | 2006-06-21 00:30:21 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 73 | static void create_pack_file(void) |
| 74 | { |
Johannes Sixt | cc41fa8 | 2007-10-19 21:47:59 +0200 | [diff] [blame] | 75 | struct child_process pack_objects; |
Junio C Hamano | 363b781 | 2006-06-20 22:48:23 -0700 | [diff] [blame] | 76 | char data[8193], progress[128]; |
Junio C Hamano | 583b7ea | 2006-06-21 00:30:21 -0700 | [diff] [blame] | 77 | char abort_msg[] = "aborting due to possible repository " |
| 78 | "corruption on the remote side."; |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 79 | int buffered = -1; |
Junio C Hamano | 1456b04 | 2009-12-10 12:17:11 -0800 | [diff] [blame] | 80 | ssize_t sz; |
Nguyễn Thái Ngọc Duy | cdab485 | 2013-08-16 16:52:05 +0700 | [diff] [blame] | 81 | const char *argv[12]; |
| 82 | int i, arg = 0; |
| 83 | FILE *pipe_fd; |
| 84 | char *shallow_file = NULL; |
Linus Torvalds | 75bfc6c | 2005-07-04 16:35:13 -0700 | [diff] [blame] | 85 | |
Nguyễn Thái Ngọc Duy | cdab485 | 2013-08-16 16:52:05 +0700 | [diff] [blame] | 86 | if (shallow_nr) { |
| 87 | shallow_file = setup_temporary_shallow(); |
| 88 | argv[arg++] = "--shallow-file"; |
| 89 | argv[arg++] = shallow_file; |
Nick Edelen | f0cea83 | 2009-06-10 01:50:18 +0200 | [diff] [blame] | 90 | } |
Nguyễn Thái Ngọc Duy | cdab485 | 2013-08-16 16:52:05 +0700 | [diff] [blame] | 91 | argv[arg++] = "pack-objects"; |
| 92 | argv[arg++] = "--revs"; |
| 93 | if (use_thin_pack) |
| 94 | argv[arg++] = "--thin"; |
Linus Torvalds | 75bfc6c | 2005-07-04 16:35:13 -0700 | [diff] [blame] | 95 | |
Johannes Sixt | cc41fa8 | 2007-10-19 21:47:59 +0200 | [diff] [blame] | 96 | argv[arg++] = "--stdout"; |
| 97 | if (!no_progress) |
| 98 | argv[arg++] = "--progress"; |
| 99 | if (use_ofs_delta) |
| 100 | argv[arg++] = "--delta-base-offset"; |
Shawn O. Pearce | 348e390 | 2008-03-03 22:27:33 -0500 | [diff] [blame] | 101 | if (use_include_tag) |
| 102 | argv[arg++] = "--include-tag"; |
Johannes Sixt | cc41fa8 | 2007-10-19 21:47:59 +0200 | [diff] [blame] | 103 | argv[arg++] = NULL; |
| 104 | |
| 105 | memset(&pack_objects, 0, sizeof(pack_objects)); |
Jeff King | b961219 | 2011-04-06 17:33:33 -0400 | [diff] [blame] | 106 | pack_objects.in = -1; |
Johannes Sixt | cc41fa8 | 2007-10-19 21:47:59 +0200 | [diff] [blame] | 107 | pack_objects.out = -1; |
| 108 | pack_objects.err = -1; |
| 109 | pack_objects.git_cmd = 1; |
| 110 | pack_objects.argv = argv; |
Johannes Sixt | 21edd3f | 2007-10-19 21:48:03 +0200 | [diff] [blame] | 111 | |
Johannes Sixt | 4c324c0 | 2007-11-04 20:46:48 +0100 | [diff] [blame] | 112 | if (start_command(&pack_objects)) |
Junio C Hamano | 7e44c93 | 2008-08-31 09:39:19 -0700 | [diff] [blame] | 113 | die("git upload-pack: unable to fork git-pack-objects"); |
Johannes Schindelin | 83a5ad6 | 2007-02-20 03:01:44 +0100 | [diff] [blame] | 114 | |
Nguyễn Thái Ngọc Duy | cdab485 | 2013-08-16 16:52:05 +0700 | [diff] [blame] | 115 | pipe_fd = xfdopen(pack_objects.in, "w"); |
Nick Edelen | f0cea83 | 2009-06-10 01:50:18 +0200 | [diff] [blame] | 116 | |
Nguyễn Thái Ngọc Duy | cdab485 | 2013-08-16 16:52:05 +0700 | [diff] [blame] | 117 | for (i = 0; i < want_obj.nr; i++) |
| 118 | fprintf(pipe_fd, "%s\n", |
| 119 | sha1_to_hex(want_obj.objects[i].item->sha1)); |
| 120 | fprintf(pipe_fd, "--not\n"); |
| 121 | for (i = 0; i < have_obj.nr; i++) |
| 122 | fprintf(pipe_fd, "%s\n", |
| 123 | sha1_to_hex(have_obj.objects[i].item->sha1)); |
| 124 | for (i = 0; i < extra_edge_obj.nr; i++) |
| 125 | fprintf(pipe_fd, "%s\n", |
| 126 | sha1_to_hex(extra_edge_obj.objects[i].item->sha1)); |
| 127 | fprintf(pipe_fd, "\n"); |
| 128 | fflush(pipe_fd); |
| 129 | fclose(pipe_fd); |
Nick Edelen | f0cea83 | 2009-06-10 01:50:18 +0200 | [diff] [blame] | 130 | |
Johannes Sixt | cc41fa8 | 2007-10-19 21:47:59 +0200 | [diff] [blame] | 131 | /* We read from pack_objects.err to capture stderr output for |
| 132 | * progress bar, and pack_objects.out to capture the pack data. |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 133 | */ |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 134 | |
| 135 | while (1) { |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 136 | struct pollfd pfd[2]; |
Junio C Hamano | 363b781 | 2006-06-20 22:48:23 -0700 | [diff] [blame] | 137 | int pe, pu, pollsize; |
Jeff King | 05e9515 | 2013-09-08 05:01:31 -0400 | [diff] [blame] | 138 | int ret; |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 139 | |
Matthias Lederhofer | 0d516ad | 2006-07-18 19:14:51 +0200 | [diff] [blame] | 140 | reset_timeout(); |
| 141 | |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 142 | pollsize = 0; |
Junio C Hamano | 363b781 | 2006-06-20 22:48:23 -0700 | [diff] [blame] | 143 | pe = pu = -1; |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 144 | |
Johannes Sixt | cc41fa8 | 2007-10-19 21:47:59 +0200 | [diff] [blame] | 145 | if (0 <= pack_objects.out) { |
| 146 | pfd[pollsize].fd = pack_objects.out; |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 147 | pfd[pollsize].events = POLLIN; |
| 148 | pu = pollsize; |
| 149 | pollsize++; |
| 150 | } |
Johannes Sixt | cc41fa8 | 2007-10-19 21:47:59 +0200 | [diff] [blame] | 151 | if (0 <= pack_objects.err) { |
| 152 | pfd[pollsize].fd = pack_objects.err; |
Junio C Hamano | 363b781 | 2006-06-20 22:48:23 -0700 | [diff] [blame] | 153 | pfd[pollsize].events = POLLIN; |
| 154 | pe = pollsize; |
| 155 | pollsize++; |
| 156 | } |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 157 | |
Johannes Sixt | 4c324c0 | 2007-11-04 20:46:48 +0100 | [diff] [blame] | 158 | if (!pollsize) |
| 159 | break; |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 160 | |
Jeff King | 05e9515 | 2013-09-08 05:01:31 -0400 | [diff] [blame] | 161 | ret = poll(pfd, pollsize, 1000 * keepalive); |
| 162 | if (ret < 0) { |
Johannes Sixt | 4c324c0 | 2007-11-04 20:46:48 +0100 | [diff] [blame] | 163 | if (errno != EINTR) { |
| 164 | error("poll failed, resuming: %s", |
| 165 | strerror(errno)); |
| 166 | sleep(1); |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 167 | } |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 168 | continue; |
Johannes Sixt | 4c324c0 | 2007-11-04 20:46:48 +0100 | [diff] [blame] | 169 | } |
Nicolas Pitre | 6b59f51 | 2009-11-11 17:24:42 -0500 | [diff] [blame] | 170 | if (0 <= pe && (pfd[pe].revents & (POLLIN|POLLHUP))) { |
| 171 | /* Status ready; we ship that in the side-band |
| 172 | * or dump to the standard error. |
| 173 | */ |
| 174 | sz = xread(pack_objects.err, progress, |
| 175 | sizeof(progress)); |
| 176 | if (0 < sz) |
| 177 | send_client_data(2, progress, sz); |
| 178 | else if (sz == 0) { |
| 179 | close(pack_objects.err); |
| 180 | pack_objects.err = -1; |
| 181 | } |
| 182 | else |
| 183 | goto fail; |
| 184 | /* give priority to status messages */ |
| 185 | continue; |
| 186 | } |
Johannes Sixt | 4c324c0 | 2007-11-04 20:46:48 +0100 | [diff] [blame] | 187 | if (0 <= pu && (pfd[pu].revents & (POLLIN|POLLHUP))) { |
| 188 | /* Data ready; we keep the last byte to ourselves |
| 189 | * in case we detect broken rev-list, so that we |
| 190 | * can leave the stream corrupted. This is |
| 191 | * unfortunate -- unpack-objects would happily |
| 192 | * accept a valid packdata with trailing garbage, |
| 193 | * so appending garbage after we pass all the |
| 194 | * pack data is not good enough to signal |
| 195 | * breakage to downstream. |
| 196 | */ |
| 197 | char *cp = data; |
| 198 | ssize_t outsz = 0; |
| 199 | if (0 <= buffered) { |
| 200 | *cp++ = buffered; |
| 201 | outsz++; |
| 202 | } |
| 203 | sz = xread(pack_objects.out, cp, |
| 204 | sizeof(data) - outsz); |
| 205 | if (0 < sz) |
Junio C Hamano | 1456b04 | 2009-12-10 12:17:11 -0800 | [diff] [blame] | 206 | ; |
Johannes Sixt | 4c324c0 | 2007-11-04 20:46:48 +0100 | [diff] [blame] | 207 | else if (sz == 0) { |
| 208 | close(pack_objects.out); |
| 209 | pack_objects.out = -1; |
| 210 | } |
| 211 | else |
| 212 | goto fail; |
| 213 | sz += outsz; |
| 214 | if (1 < sz) { |
| 215 | buffered = data[sz-1] & 0xFF; |
| 216 | sz--; |
| 217 | } |
| 218 | else |
| 219 | buffered = -1; |
| 220 | sz = send_client_data(1, data, sz); |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 221 | if (sz < 0) |
| 222 | goto fail; |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 223 | } |
Jeff King | 05e9515 | 2013-09-08 05:01:31 -0400 | [diff] [blame] | 224 | |
| 225 | /* |
| 226 | * We hit the keepalive timeout without saying anything; send |
| 227 | * an empty message on the data sideband just to let the other |
| 228 | * side know we're still working on it, but don't have any data |
| 229 | * yet. |
| 230 | * |
| 231 | * If we don't have a sideband channel, there's no room in the |
| 232 | * protocol to say anything, so those clients are just out of |
| 233 | * luck. |
| 234 | */ |
| 235 | if (!ret && use_sideband) { |
| 236 | static const char buf[] = "0005\1"; |
| 237 | write_or_die(1, buf, 5); |
| 238 | } |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 239 | } |
Johannes Sixt | 4c324c0 | 2007-11-04 20:46:48 +0100 | [diff] [blame] | 240 | |
| 241 | if (finish_command(&pack_objects)) { |
Junio C Hamano | 7e44c93 | 2008-08-31 09:39:19 -0700 | [diff] [blame] | 242 | error("git upload-pack: git-pack-objects died with error."); |
Johannes Sixt | 4c324c0 | 2007-11-04 20:46:48 +0100 | [diff] [blame] | 243 | goto fail; |
| 244 | } |
Nguyễn Thái Ngọc Duy | cdab485 | 2013-08-16 16:52:05 +0700 | [diff] [blame] | 245 | if (shallow_file) { |
| 246 | if (*shallow_file) |
| 247 | unlink(shallow_file); |
| 248 | free(shallow_file); |
| 249 | } |
Johannes Sixt | 4c324c0 | 2007-11-04 20:46:48 +0100 | [diff] [blame] | 250 | |
| 251 | /* flush the data */ |
| 252 | if (0 <= buffered) { |
| 253 | data[0] = buffered; |
| 254 | sz = send_client_data(1, data, 1); |
| 255 | if (sz < 0) |
| 256 | goto fail; |
| 257 | fprintf(stderr, "flushed.\n"); |
| 258 | } |
| 259 | if (use_sideband) |
| 260 | packet_flush(1); |
| 261 | return; |
| 262 | |
Junio C Hamano | b1c71b7 | 2006-06-20 18:26:34 -0700 | [diff] [blame] | 263 | fail: |
Junio C Hamano | 583b7ea | 2006-06-21 00:30:21 -0700 | [diff] [blame] | 264 | send_client_data(3, abort_msg, sizeof(abort_msg)); |
Junio C Hamano | 7e44c93 | 2008-08-31 09:39:19 -0700 | [diff] [blame] | 265 | die("git upload-pack: %s", abort_msg); |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 266 | } |
| 267 | |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 268 | static int got_sha1(char *hex, unsigned char *sha1) |
| 269 | { |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 270 | struct object *o; |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 271 | int we_knew_they_have = 0; |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 272 | |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 273 | if (get_sha1_hex(hex, sha1)) |
Junio C Hamano | 7e44c93 | 2008-08-31 09:39:19 -0700 | [diff] [blame] | 274 | die("git upload-pack: expected SHA1 object, got '%s'", hex); |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 275 | if (!has_sha1_file(sha1)) |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 276 | return -1; |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 277 | |
Jeff King | a6eec12 | 2013-03-16 06:25:25 -0400 | [diff] [blame] | 278 | o = parse_object(sha1); |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 279 | if (!o) |
| 280 | die("oops (%s)", sha1_to_hex(sha1)); |
Junio C Hamano | 182a8da | 2006-08-12 22:16:51 -0700 | [diff] [blame] | 281 | if (o->type == OBJ_COMMIT) { |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 282 | struct commit_list *parents; |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 283 | struct commit *commit = (struct commit *)o; |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 284 | if (o->flags & THEY_HAVE) |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 285 | we_knew_they_have = 1; |
| 286 | else |
| 287 | o->flags |= THEY_HAVE; |
| 288 | if (!oldest_have || (commit->date < oldest_have)) |
| 289 | oldest_have = commit->date; |
| 290 | for (parents = commit->parents; |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 291 | parents; |
| 292 | parents = parents->next) |
| 293 | parents->item->object.flags |= THEY_HAVE; |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 294 | } |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 295 | if (!we_knew_they_have) { |
| 296 | add_object_array(o, NULL, &have_obj); |
| 297 | return 1; |
| 298 | } |
| 299 | return 0; |
| 300 | } |
| 301 | |
| 302 | static int reachable(struct commit *want) |
| 303 | { |
| 304 | struct commit_list *work = NULL; |
| 305 | |
Thiago Farina | 47e44ed | 2010-11-26 23:58:14 -0200 | [diff] [blame] | 306 | commit_list_insert_by_date(want, &work); |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 307 | while (work) { |
| 308 | struct commit_list *list = work->next; |
| 309 | struct commit *commit = work->item; |
| 310 | free(work); |
| 311 | work = list; |
| 312 | |
| 313 | if (commit->object.flags & THEY_HAVE) { |
| 314 | want->object.flags |= COMMON_KNOWN; |
| 315 | break; |
| 316 | } |
| 317 | if (!commit->object.parsed) |
| 318 | parse_object(commit->object.sha1); |
| 319 | if (commit->object.flags & REACHABLE) |
| 320 | continue; |
| 321 | commit->object.flags |= REACHABLE; |
| 322 | if (commit->date < oldest_have) |
| 323 | continue; |
| 324 | for (list = commit->parents; list; list = list->next) { |
| 325 | struct commit *parent = list->item; |
| 326 | if (!(parent->object.flags & REACHABLE)) |
Thiago Farina | 47e44ed | 2010-11-26 23:58:14 -0200 | [diff] [blame] | 327 | commit_list_insert_by_date(parent, &work); |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 328 | } |
| 329 | } |
| 330 | want->object.flags |= REACHABLE; |
| 331 | clear_commit_marks(want, REACHABLE); |
| 332 | free_commit_list(work); |
| 333 | return (want->object.flags & COMMON_KNOWN); |
| 334 | } |
| 335 | |
| 336 | static int ok_to_give_up(void) |
| 337 | { |
| 338 | int i; |
| 339 | |
| 340 | if (!have_obj.nr) |
| 341 | return 0; |
| 342 | |
| 343 | for (i = 0; i < want_obj.nr; i++) { |
| 344 | struct object *want = want_obj.objects[i].item; |
| 345 | |
| 346 | if (want->flags & COMMON_KNOWN) |
| 347 | continue; |
| 348 | want = deref_tag(want, "a want line", 0); |
| 349 | if (!want || want->type != OBJ_COMMIT) { |
| 350 | /* no way to tell if this is reachable by |
| 351 | * looking at the ancestry chain alone, so |
| 352 | * leave a note to ourselves not to worry about |
| 353 | * this object anymore. |
| 354 | */ |
| 355 | want_obj.objects[i].item->flags |= COMMON_KNOWN; |
| 356 | continue; |
| 357 | } |
| 358 | if (!reachable((struct commit *)want)) |
| 359 | return 0; |
| 360 | } |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 361 | return 1; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | static int get_common_commits(void) |
| 365 | { |
Junio C Hamano | c04c4e5 | 2006-07-05 18:12:12 -0700 | [diff] [blame] | 366 | unsigned char sha1[20]; |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 367 | char last_hex[41]; |
Shawn O. Pearce | 49bee71 | 2011-03-14 16:48:39 -0700 | [diff] [blame] | 368 | int got_common = 0; |
| 369 | int got_other = 0; |
Junio C Hamano | 4e10cf9 | 2011-03-29 12:29:10 -0700 | [diff] [blame] | 370 | int sent_ready = 0; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 371 | |
Johannes Schindelin | f0243f2 | 2005-10-28 04:48:32 +0200 | [diff] [blame] | 372 | save_commit_buffer = 0; |
| 373 | |
Brian Gianforcaro | eeefa7c | 2009-09-01 01:35:10 -0400 | [diff] [blame] | 374 | for (;;) { |
Jeff King | 74543a0 | 2013-02-20 15:02:57 -0500 | [diff] [blame] | 375 | char *line = packet_read_line(0, NULL); |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 376 | reset_timeout(); |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 377 | |
Jeff King | 74543a0 | 2013-02-20 15:02:57 -0500 | [diff] [blame] | 378 | if (!line) { |
Shawn O. Pearce | 49bee71 | 2011-03-14 16:48:39 -0700 | [diff] [blame] | 379 | if (multi_ack == 2 && got_common |
Junio C Hamano | 4e10cf9 | 2011-03-29 12:29:10 -0700 | [diff] [blame] | 380 | && !got_other && ok_to_give_up()) { |
| 381 | sent_ready = 1; |
Shawn O. Pearce | 49bee71 | 2011-03-14 16:48:39 -0700 | [diff] [blame] | 382 | packet_write(1, "ACK %s ready\n", last_hex); |
Junio C Hamano | 4e10cf9 | 2011-03-29 12:29:10 -0700 | [diff] [blame] | 383 | } |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 384 | if (have_obj.nr == 0 || multi_ack) |
Johannes Schindelin | 1bd8c8f | 2005-10-28 04:49:16 +0200 | [diff] [blame] | 385 | packet_write(1, "NAK\n"); |
Junio C Hamano | 4e10cf9 | 2011-03-29 12:29:10 -0700 | [diff] [blame] | 386 | |
| 387 | if (no_done && sent_ready) { |
| 388 | packet_write(1, "ACK %s\n", last_hex); |
| 389 | return 0; |
| 390 | } |
Shawn O. Pearce | 42526b4 | 2009-10-30 17:47:33 -0700 | [diff] [blame] | 391 | if (stateless_rpc) |
| 392 | exit(0); |
Shawn O. Pearce | 49bee71 | 2011-03-14 16:48:39 -0700 | [diff] [blame] | 393 | got_common = 0; |
| 394 | got_other = 0; |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 395 | continue; |
| 396 | } |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 397 | if (!prefixcmp(line, "have ")) { |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 398 | switch (got_sha1(line+5, sha1)) { |
| 399 | case -1: /* they have what we do not */ |
Shawn O. Pearce | 49bee71 | 2011-03-14 16:48:39 -0700 | [diff] [blame] | 400 | got_other = 1; |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 401 | if (multi_ack && ok_to_give_up()) { |
| 402 | const char *hex = sha1_to_hex(sha1); |
Junio C Hamano | 4e10cf9 | 2011-03-29 12:29:10 -0700 | [diff] [blame] | 403 | if (multi_ack == 2) { |
| 404 | sent_ready = 1; |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 405 | packet_write(1, "ACK %s ready\n", hex); |
Junio C Hamano | 4e10cf9 | 2011-03-29 12:29:10 -0700 | [diff] [blame] | 406 | } else |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 407 | packet_write(1, "ACK %s continue\n", hex); |
| 408 | } |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 409 | break; |
| 410 | default: |
Shawn O. Pearce | 49bee71 | 2011-03-14 16:48:39 -0700 | [diff] [blame] | 411 | got_common = 1; |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 412 | memcpy(last_hex, sha1_to_hex(sha1), 41); |
| 413 | if (multi_ack == 2) |
| 414 | packet_write(1, "ACK %s common\n", last_hex); |
| 415 | else if (multi_ack) |
| 416 | packet_write(1, "ACK %s continue\n", last_hex); |
Junio C Hamano | c04c4e5 | 2006-07-05 18:12:12 -0700 | [diff] [blame] | 417 | else if (have_obj.nr == 1) |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 418 | packet_write(1, "ACK %s\n", last_hex); |
Junio C Hamano | 937a515 | 2006-07-05 21:28:20 -0700 | [diff] [blame] | 419 | break; |
Junio C Hamano | af2d3aa | 2005-10-25 14:55:24 -0700 | [diff] [blame] | 420 | } |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 421 | continue; |
| 422 | } |
| 423 | if (!strcmp(line, "done")) { |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 424 | if (have_obj.nr > 0) { |
Johannes Schindelin | 1bd8c8f | 2005-10-28 04:49:16 +0200 | [diff] [blame] | 425 | if (multi_ack) |
Junio C Hamano | c04c4e5 | 2006-07-05 18:12:12 -0700 | [diff] [blame] | 426 | packet_write(1, "ACK %s\n", last_hex); |
Johannes Schindelin | 1bd8c8f | 2005-10-28 04:49:16 +0200 | [diff] [blame] | 427 | return 0; |
| 428 | } |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 429 | packet_write(1, "NAK\n"); |
| 430 | return -1; |
| 431 | } |
Junio C Hamano | 7e44c93 | 2008-08-31 09:39:19 -0700 | [diff] [blame] | 432 | die("git upload-pack: expected SHA1 list, got '%s'", line); |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 433 | } |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 434 | } |
| 435 | |
Junio C Hamano | 390eb36 | 2013-01-28 21:49:57 -0800 | [diff] [blame] | 436 | static int is_our_ref(struct object *o) |
| 437 | { |
| 438 | return o->flags & |
| 439 | ((allow_tip_sha1_in_want ? HIDDEN_REF : 0) | OUR_REF); |
| 440 | } |
| 441 | |
Junio C Hamano | 051e400 | 2011-08-05 13:54:06 -0700 | [diff] [blame] | 442 | static void check_non_tip(void) |
| 443 | { |
| 444 | static const char *argv[] = { |
| 445 | "rev-list", "--stdin", NULL, |
| 446 | }; |
| 447 | static struct child_process cmd; |
| 448 | struct object *o; |
| 449 | char namebuf[42]; /* ^ + SHA-1 + LF */ |
| 450 | int i; |
| 451 | |
| 452 | /* In the normal in-process case non-tip request can never happen */ |
| 453 | if (!stateless_rpc) |
| 454 | goto error; |
| 455 | |
| 456 | cmd.argv = argv; |
| 457 | cmd.git_cmd = 1; |
| 458 | cmd.no_stderr = 1; |
| 459 | cmd.in = -1; |
| 460 | cmd.out = -1; |
| 461 | |
| 462 | if (start_command(&cmd)) |
| 463 | goto error; |
| 464 | |
| 465 | /* |
| 466 | * If rev-list --stdin encounters an unknown commit, it |
| 467 | * terminates, which will cause SIGPIPE in the write loop |
| 468 | * below. |
| 469 | */ |
| 470 | sigchain_push(SIGPIPE, SIG_IGN); |
| 471 | |
| 472 | namebuf[0] = '^'; |
| 473 | namebuf[41] = '\n'; |
| 474 | for (i = get_max_object_index(); 0 < i; ) { |
| 475 | o = get_indexed_object(--i); |
Brian Harring | 2a74532 | 2011-08-23 22:47:17 -0700 | [diff] [blame] | 476 | if (!o) |
| 477 | continue; |
Junio C Hamano | 390eb36 | 2013-01-28 21:49:57 -0800 | [diff] [blame] | 478 | if (!is_our_ref(o)) |
Junio C Hamano | 051e400 | 2011-08-05 13:54:06 -0700 | [diff] [blame] | 479 | continue; |
| 480 | memcpy(namebuf + 1, sha1_to_hex(o->sha1), 40); |
| 481 | if (write_in_full(cmd.in, namebuf, 42) < 0) |
| 482 | goto error; |
| 483 | } |
| 484 | namebuf[40] = '\n'; |
| 485 | for (i = 0; i < want_obj.nr; i++) { |
| 486 | o = want_obj.objects[i].item; |
Junio C Hamano | 390eb36 | 2013-01-28 21:49:57 -0800 | [diff] [blame] | 487 | if (is_our_ref(o)) |
Junio C Hamano | 051e400 | 2011-08-05 13:54:06 -0700 | [diff] [blame] | 488 | continue; |
| 489 | memcpy(namebuf, sha1_to_hex(o->sha1), 40); |
| 490 | if (write_in_full(cmd.in, namebuf, 41) < 0) |
| 491 | goto error; |
| 492 | } |
| 493 | close(cmd.in); |
| 494 | |
| 495 | sigchain_pop(SIGPIPE); |
| 496 | |
| 497 | /* |
| 498 | * The commits out of the rev-list are not ancestors of |
| 499 | * our ref. |
| 500 | */ |
| 501 | i = read_in_full(cmd.out, namebuf, 1); |
| 502 | if (i) |
| 503 | goto error; |
| 504 | close(cmd.out); |
| 505 | |
| 506 | /* |
| 507 | * rev-list may have died by encountering a bad commit |
| 508 | * in the history, in which case we do want to bail out |
| 509 | * even when it showed no commit. |
| 510 | */ |
| 511 | if (finish_command(&cmd)) |
| 512 | goto error; |
| 513 | |
| 514 | /* All the non-tip ones are ancestors of what we advertised */ |
| 515 | return; |
| 516 | |
| 517 | error: |
| 518 | /* Pick one of them (we know there at least is one) */ |
| 519 | for (i = 0; i < want_obj.nr; i++) { |
| 520 | o = want_obj.objects[i].item; |
Junio C Hamano | 390eb36 | 2013-01-28 21:49:57 -0800 | [diff] [blame] | 521 | if (!is_our_ref(o)) |
Junio C Hamano | 051e400 | 2011-08-05 13:54:06 -0700 | [diff] [blame] | 522 | die("git upload-pack: not our ref %s", |
| 523 | sha1_to_hex(o->sha1)); |
| 524 | } |
| 525 | } |
| 526 | |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 527 | static void receive_needs(void) |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 528 | { |
Thiago Farina | 3cd4745 | 2010-08-28 23:04:17 -0300 | [diff] [blame] | 529 | struct object_array shallows = OBJECT_ARRAY_INIT; |
Jeff King | 74543a0 | 2013-02-20 15:02:57 -0500 | [diff] [blame] | 530 | int depth = 0; |
Junio C Hamano | 051e400 | 2011-08-05 13:54:06 -0700 | [diff] [blame] | 531 | int has_non_tip = 0; |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 532 | |
Nick Edelen | f0cea83 | 2009-06-10 01:50:18 +0200 | [diff] [blame] | 533 | shallow_nr = 0; |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 534 | for (;;) { |
Junio C Hamano | 565ebbf | 2005-10-24 18:59:18 -0700 | [diff] [blame] | 535 | struct object *o; |
Junio C Hamano | f47182c | 2012-01-08 22:06:19 +0100 | [diff] [blame] | 536 | const char *features; |
Junio C Hamano | 6ece0d3 | 2006-07-05 17:41:39 -0700 | [diff] [blame] | 537 | unsigned char sha1_buf[20]; |
Jeff King | 74543a0 | 2013-02-20 15:02:57 -0500 | [diff] [blame] | 538 | char *line = packet_read_line(0, NULL); |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 539 | reset_timeout(); |
Jeff King | 74543a0 | 2013-02-20 15:02:57 -0500 | [diff] [blame] | 540 | if (!line) |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 541 | break; |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 542 | |
Junio C Hamano | 599065a | 2007-02-20 01:54:00 -0800 | [diff] [blame] | 543 | if (!prefixcmp(line, "shallow ")) { |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 544 | unsigned char sha1[20]; |
| 545 | struct object *object; |
Jeff King | b7b0217 | 2013-02-20 14:53:33 -0500 | [diff] [blame] | 546 | if (get_sha1_hex(line + 8, sha1)) |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 547 | die("invalid shallow line: %s", line); |
| 548 | object = parse_object(sha1); |
| 549 | if (!object) |
Michael Heemskerk | af04fa2 | 2013-04-28 22:32:04 -0700 | [diff] [blame] | 550 | continue; |
Nguyễn Thái Ngọc Duy | 6293ded | 2013-01-08 18:32:36 +0700 | [diff] [blame] | 551 | if (object->type != OBJ_COMMIT) |
| 552 | die("invalid shallow object %s", sha1_to_hex(sha1)); |
Jeff King | e58e57e | 2013-02-20 14:54:57 -0500 | [diff] [blame] | 553 | if (!(object->flags & CLIENT_SHALLOW)) { |
| 554 | object->flags |= CLIENT_SHALLOW; |
| 555 | add_object_array(object, NULL, &shallows); |
| 556 | } |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 557 | continue; |
| 558 | } |
Junio C Hamano | 599065a | 2007-02-20 01:54:00 -0800 | [diff] [blame] | 559 | if (!prefixcmp(line, "deepen ")) { |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 560 | char *end; |
| 561 | depth = strtol(line + 7, &end, 0); |
| 562 | if (end == line + 7 || depth <= 0) |
| 563 | die("Invalid deepen: %s", line); |
| 564 | continue; |
| 565 | } |
Junio C Hamano | 599065a | 2007-02-20 01:54:00 -0800 | [diff] [blame] | 566 | if (prefixcmp(line, "want ") || |
Junio C Hamano | 6ece0d3 | 2006-07-05 17:41:39 -0700 | [diff] [blame] | 567 | get_sha1_hex(line+5, sha1_buf)) |
Junio C Hamano | 7e44c93 | 2008-08-31 09:39:19 -0700 | [diff] [blame] | 568 | die("git upload-pack: protocol error, " |
Junio C Hamano | e091eb9 | 2005-10-05 14:49:54 -0700 | [diff] [blame] | 569 | "expected to get sha, not '%s'", line); |
Junio C Hamano | f47182c | 2012-01-08 22:06:19 +0100 | [diff] [blame] | 570 | |
| 571 | features = line + 45; |
| 572 | |
| 573 | if (parse_feature_request(features, "multi_ack_detailed")) |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 574 | multi_ack = 2; |
Junio C Hamano | f47182c | 2012-01-08 22:06:19 +0100 | [diff] [blame] | 575 | else if (parse_feature_request(features, "multi_ack")) |
Johannes Schindelin | 1bd8c8f | 2005-10-28 04:49:16 +0200 | [diff] [blame] | 576 | multi_ack = 1; |
Junio C Hamano | f47182c | 2012-01-08 22:06:19 +0100 | [diff] [blame] | 577 | if (parse_feature_request(features, "no-done")) |
Junio C Hamano | 4e10cf9 | 2011-03-29 12:29:10 -0700 | [diff] [blame] | 578 | no_done = 1; |
Junio C Hamano | f47182c | 2012-01-08 22:06:19 +0100 | [diff] [blame] | 579 | if (parse_feature_request(features, "thin-pack")) |
Junio C Hamano | b19696c | 2006-02-20 00:38:39 -0800 | [diff] [blame] | 580 | use_thin_pack = 1; |
Junio C Hamano | f47182c | 2012-01-08 22:06:19 +0100 | [diff] [blame] | 581 | if (parse_feature_request(features, "ofs-delta")) |
Nicolas Pitre | e4fe4b8 | 2006-09-26 11:27:39 -0400 | [diff] [blame] | 582 | use_ofs_delta = 1; |
Junio C Hamano | f47182c | 2012-01-08 22:06:19 +0100 | [diff] [blame] | 583 | if (parse_feature_request(features, "side-band-64k")) |
Junio C Hamano | d47f3db | 2006-09-10 16:27:08 -0700 | [diff] [blame] | 584 | use_sideband = LARGE_PACKET_MAX; |
Junio C Hamano | f47182c | 2012-01-08 22:06:19 +0100 | [diff] [blame] | 585 | else if (parse_feature_request(features, "side-band")) |
Junio C Hamano | d47f3db | 2006-09-10 16:27:08 -0700 | [diff] [blame] | 586 | use_sideband = DEFAULT_PACKET_MAX; |
Junio C Hamano | f47182c | 2012-01-08 22:06:19 +0100 | [diff] [blame] | 587 | if (parse_feature_request(features, "no-progress")) |
Johannes Schindelin | b0e9089 | 2007-02-23 20:03:10 +0100 | [diff] [blame] | 588 | no_progress = 1; |
Junio C Hamano | f47182c | 2012-01-08 22:06:19 +0100 | [diff] [blame] | 589 | if (parse_feature_request(features, "include-tag")) |
Shawn O. Pearce | 348e390 | 2008-03-03 22:27:33 -0500 | [diff] [blame] | 590 | use_include_tag = 1; |
Junio C Hamano | 565ebbf | 2005-10-24 18:59:18 -0700 | [diff] [blame] | 591 | |
Jeff King | f59de5d | 2013-03-16 06:28:30 -0400 | [diff] [blame] | 592 | o = parse_object(sha1_buf); |
Junio C Hamano | 051e400 | 2011-08-05 13:54:06 -0700 | [diff] [blame] | 593 | if (!o) |
Elijah Newren | 9f9aa76 | 2010-07-31 14:11:46 -0600 | [diff] [blame] | 594 | die("git upload-pack: not our ref %s", |
| 595 | sha1_to_hex(sha1_buf)); |
Junio C Hamano | 565ebbf | 2005-10-24 18:59:18 -0700 | [diff] [blame] | 596 | if (!(o->flags & WANTED)) { |
| 597 | o->flags |= WANTED; |
Junio C Hamano | 390eb36 | 2013-01-28 21:49:57 -0800 | [diff] [blame] | 598 | if (!is_our_ref(o)) |
Junio C Hamano | 051e400 | 2011-08-05 13:54:06 -0700 | [diff] [blame] | 599 | has_non_tip = 1; |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 600 | add_object_array(o, NULL, &want_obj); |
Junio C Hamano | 565ebbf | 2005-10-24 18:59:18 -0700 | [diff] [blame] | 601 | } |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 602 | } |
Johannes Sixt | 9462e3f | 2009-06-16 20:41:16 +0200 | [diff] [blame] | 603 | |
Junio C Hamano | 051e400 | 2011-08-05 13:54:06 -0700 | [diff] [blame] | 604 | /* |
| 605 | * We have sent all our refs already, and the other end |
| 606 | * should have chosen out of them. When we are operating |
| 607 | * in the stateless RPC mode, however, their choice may |
| 608 | * have been based on the set of older refs advertised |
| 609 | * by another process that handled the initial request. |
| 610 | */ |
| 611 | if (has_non_tip) |
| 612 | check_non_tip(); |
| 613 | |
Johannes Sixt | 9462e3f | 2009-06-16 20:41:16 +0200 | [diff] [blame] | 614 | if (!use_sideband && daemon_mode) |
| 615 | no_progress = 1; |
| 616 | |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 617 | if (depth == 0 && shallows.nr == 0) |
| 618 | return; |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 619 | if (depth > 0) { |
Nguyễn Thái Ngọc Duy | 4dcb167 | 2013-01-11 16:05:46 +0700 | [diff] [blame] | 620 | struct commit_list *result = NULL, *backup = NULL; |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 621 | int i; |
Nguyễn Thái Ngọc Duy | 4dcb167 | 2013-01-11 16:05:46 +0700 | [diff] [blame] | 622 | if (depth == INFINITE_DEPTH) |
| 623 | for (i = 0; i < shallows.nr; i++) { |
| 624 | struct object *object = shallows.objects[i].item; |
| 625 | object->flags |= NOT_SHALLOW; |
| 626 | } |
| 627 | else |
| 628 | backup = result = |
| 629 | get_shallow_commits(&want_obj, depth, |
| 630 | SHALLOW, NOT_SHALLOW); |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 631 | while (result) { |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 632 | struct object *object = &result->item->object; |
Alexandre Julliard | 1f2de76 | 2006-11-24 15:58:25 +0100 | [diff] [blame] | 633 | if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) { |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 634 | packet_write(1, "shallow %s", |
| 635 | sha1_to_hex(object->sha1)); |
| 636 | register_shallow(object->sha1); |
Nick Edelen | f0cea83 | 2009-06-10 01:50:18 +0200 | [diff] [blame] | 637 | shallow_nr++; |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 638 | } |
Johannes Schindelin | 016e6cc | 2006-10-30 20:09:29 +0100 | [diff] [blame] | 639 | result = result->next; |
| 640 | } |
| 641 | free_commit_list(backup); |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 642 | for (i = 0; i < shallows.nr; i++) { |
| 643 | struct object *object = shallows.objects[i].item; |
| 644 | if (object->flags & NOT_SHALLOW) { |
| 645 | struct commit_list *parents; |
| 646 | packet_write(1, "unshallow %s", |
| 647 | sha1_to_hex(object->sha1)); |
| 648 | object->flags &= ~CLIENT_SHALLOW; |
| 649 | /* make sure the real parents are parsed */ |
| 650 | unregister_shallow(object->sha1); |
Junio C Hamano | 176d45c | 2006-11-13 22:47:46 -0800 | [diff] [blame] | 651 | object->parsed = 0; |
Martin Koegler | dec38c8 | 2008-02-18 21:48:03 +0100 | [diff] [blame] | 652 | if (parse_commit((struct commit *)object)) |
| 653 | die("invalid commit"); |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 654 | parents = ((struct commit *)object)->parents; |
| 655 | while (parents) { |
| 656 | add_object_array(&parents->item->object, |
| 657 | NULL, &want_obj); |
| 658 | parents = parents->next; |
| 659 | } |
Nicolas Pitre | 6523078 | 2009-09-03 19:08:33 -0400 | [diff] [blame] | 660 | add_object_array(object, NULL, &extra_edge_obj); |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 661 | } |
| 662 | /* make sure commit traversal conforms to client */ |
| 663 | register_shallow(object->sha1); |
| 664 | } |
| 665 | packet_flush(1); |
| 666 | } else |
| 667 | if (shallows.nr > 0) { |
| 668 | int i; |
| 669 | for (i = 0; i < shallows.nr; i++) |
| 670 | register_shallow(shallows.objects[i].item->sha1); |
| 671 | } |
Nick Edelen | f0cea83 | 2009-06-10 01:50:18 +0200 | [diff] [blame] | 672 | |
| 673 | shallow_nr += shallows.nr; |
Johannes Schindelin | f53514b | 2006-10-30 20:09:53 +0100 | [diff] [blame] | 674 | free(shallows.objects); |
Linus Torvalds | fb9040c | 2005-07-04 15:29:17 -0700 | [diff] [blame] | 675 | } |
| 676 | |
Junio C Hamano | daebaa7 | 2013-01-18 16:08:30 -0800 | [diff] [blame] | 677 | /* return non-zero if the ref is hidden, otherwise 0 */ |
Junio C Hamano | cbbe50d | 2013-01-18 15:48:49 -0800 | [diff] [blame] | 678 | static int mark_our_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data) |
| 679 | { |
| 680 | struct object *o = lookup_unknown_object(sha1); |
Junio C Hamano | daebaa7 | 2013-01-18 16:08:30 -0800 | [diff] [blame] | 681 | |
Junio C Hamano | 390eb36 | 2013-01-28 21:49:57 -0800 | [diff] [blame] | 682 | if (ref_is_hidden(refname)) { |
| 683 | o->flags |= HIDDEN_REF; |
Junio C Hamano | daebaa7 | 2013-01-18 16:08:30 -0800 | [diff] [blame] | 684 | return 1; |
Junio C Hamano | 390eb36 | 2013-01-28 21:49:57 -0800 | [diff] [blame] | 685 | } |
Junio C Hamano | cbbe50d | 2013-01-18 15:48:49 -0800 | [diff] [blame] | 686 | if (!o) |
| 687 | die("git upload-pack: cannot find object %s:", sha1_to_hex(sha1)); |
Junio C Hamano | 3f1da57 | 2013-01-28 20:45:43 -0800 | [diff] [blame] | 688 | o->flags |= OUR_REF; |
Junio C Hamano | cbbe50d | 2013-01-18 15:48:49 -0800 | [diff] [blame] | 689 | return 0; |
| 690 | } |
| 691 | |
Junio C Hamano | 7171d8c | 2013-09-17 16:17:33 -0700 | [diff] [blame] | 692 | static void format_symref_info(struct strbuf *buf, struct string_list *symref) |
| 693 | { |
| 694 | struct string_list_item *item; |
| 695 | |
| 696 | if (!symref->nr) |
| 697 | return; |
| 698 | for_each_string_list_item(item, symref) |
| 699 | strbuf_addf(buf, " symref=%s:%s", item->string, (char *)item->util); |
| 700 | } |
| 701 | |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 702 | static int send_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data) |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 703 | { |
Johannes Schindelin | ed09aef | 2006-10-30 20:09:06 +0100 | [diff] [blame] | 704 | static const char *capabilities = "multi_ack thin-pack side-band" |
Shawn O. Pearce | 348e390 | 2008-03-03 22:27:33 -0500 | [diff] [blame] | 705 | " side-band-64k ofs-delta shallow no-progress" |
Shawn O. Pearce | 78affc4 | 2009-10-30 17:47:25 -0700 | [diff] [blame] | 706 | " include-tag multi_ack_detailed"; |
Josh Triplett | 6b01ecf | 2011-07-08 16:13:32 -0700 | [diff] [blame] | 707 | const char *refname_nons = strip_namespace(refname); |
Jeff King | 435c833 | 2012-10-04 04:03:33 -0400 | [diff] [blame] | 708 | unsigned char peeled[20]; |
Carl Worth | b5b1699 | 2006-02-17 16:14:52 -0800 | [diff] [blame] | 709 | |
Junio C Hamano | a4d695d | 2013-09-17 16:03:32 -0700 | [diff] [blame] | 710 | if (mark_our_ref(refname, sha1, flag, NULL)) |
Junio C Hamano | daebaa7 | 2013-01-18 16:08:30 -0800 | [diff] [blame] | 711 | return 0; |
Junio C Hamano | cbbe50d | 2013-01-18 15:48:49 -0800 | [diff] [blame] | 712 | |
Junio C Hamano | 7171d8c | 2013-09-17 16:17:33 -0700 | [diff] [blame] | 713 | if (capabilities) { |
| 714 | struct strbuf symref_info = STRBUF_INIT; |
| 715 | |
| 716 | format_symref_info(&symref_info, cb_data); |
| 717 | packet_write(1, "%s %s%c%s%s%s%s agent=%s\n", |
Jeff King | ff5effd | 2012-08-03 12:19:16 -0400 | [diff] [blame] | 718 | sha1_to_hex(sha1), refname_nons, |
Junio C Hamano | cf2ad8e | 2011-03-29 10:24:59 -0700 | [diff] [blame] | 719 | 0, capabilities, |
Junio C Hamano | 390eb36 | 2013-01-28 21:49:57 -0800 | [diff] [blame] | 720 | allow_tip_sha1_in_want ? " allow-tip-sha1-in-want" : "", |
Jeff King | ff5effd | 2012-08-03 12:19:16 -0400 | [diff] [blame] | 721 | stateless_rpc ? " no-done" : "", |
Junio C Hamano | 7171d8c | 2013-09-17 16:17:33 -0700 | [diff] [blame] | 722 | symref_info.buf, |
Jeff King | ff5effd | 2012-08-03 12:19:16 -0400 | [diff] [blame] | 723 | git_user_agent_sanitized()); |
Junio C Hamano | 7171d8c | 2013-09-17 16:17:33 -0700 | [diff] [blame] | 724 | strbuf_release(&symref_info); |
| 725 | } else { |
Josh Triplett | 6b01ecf | 2011-07-08 16:13:32 -0700 | [diff] [blame] | 726 | packet_write(1, "%s %s\n", sha1_to_hex(sha1), refname_nons); |
Junio C Hamano | 7171d8c | 2013-09-17 16:17:33 -0700 | [diff] [blame] | 727 | } |
Johannes Schindelin | 1f5881b | 2005-10-28 05:56:41 +0200 | [diff] [blame] | 728 | capabilities = NULL; |
Jeff King | 435c833 | 2012-10-04 04:03:33 -0400 | [diff] [blame] | 729 | if (!peel_ref(refname, peeled)) |
| 730 | packet_write(1, "%s %s^{}\n", sha1_to_hex(peeled), refname_nons); |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 731 | return 0; |
| 732 | } |
| 733 | |
Junio C Hamano | 7171d8c | 2013-09-17 16:17:33 -0700 | [diff] [blame] | 734 | static int find_symref(const char *refname, const unsigned char *sha1, int flag, |
| 735 | void *cb_data) |
| 736 | { |
| 737 | const char *symref_target; |
| 738 | struct string_list_item *item; |
| 739 | unsigned char unused[20]; |
| 740 | |
| 741 | if ((flag & REF_ISSYMREF) == 0) |
| 742 | return 0; |
| 743 | symref_target = resolve_ref_unsafe(refname, unused, 0, &flag); |
| 744 | if (!symref_target || (flag & REF_ISSYMREF) == 0) |
| 745 | die("'%s' is a symref but it is not?", refname); |
| 746 | item = string_list_append(cb_data, refname); |
| 747 | item->util = xstrdup(symref_target); |
| 748 | return 0; |
| 749 | } |
| 750 | |
David Rientjes | 59076eb | 2006-08-14 13:40:51 -0700 | [diff] [blame] | 751 | static void upload_pack(void) |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 752 | { |
Junio C Hamano | 7171d8c | 2013-09-17 16:17:33 -0700 | [diff] [blame] | 753 | struct string_list symref = STRING_LIST_INIT_DUP; |
| 754 | |
| 755 | head_ref_namespaced(find_symref, &symref); |
| 756 | |
Shawn O. Pearce | 42526b4 | 2009-10-30 17:47:33 -0700 | [diff] [blame] | 757 | if (advertise_refs || !stateless_rpc) { |
| 758 | reset_timeout(); |
Junio C Hamano | 7171d8c | 2013-09-17 16:17:33 -0700 | [diff] [blame] | 759 | head_ref_namespaced(send_ref, &symref); |
| 760 | for_each_namespaced_ref(send_ref, &symref); |
Shawn O. Pearce | 42526b4 | 2009-10-30 17:47:33 -0700 | [diff] [blame] | 761 | packet_flush(1); |
| 762 | } else { |
Josh Triplett | 6b01ecf | 2011-07-08 16:13:32 -0700 | [diff] [blame] | 763 | head_ref_namespaced(mark_our_ref, NULL); |
| 764 | for_each_namespaced_ref(mark_our_ref, NULL); |
Shawn O. Pearce | 42526b4 | 2009-10-30 17:47:33 -0700 | [diff] [blame] | 765 | } |
Junio C Hamano | 7171d8c | 2013-09-17 16:17:33 -0700 | [diff] [blame] | 766 | string_list_clear(&symref, 1); |
Shawn O. Pearce | 42526b4 | 2009-10-30 17:47:33 -0700 | [diff] [blame] | 767 | if (advertise_refs) |
| 768 | return; |
| 769 | |
Junio C Hamano | b1e9fff | 2006-07-05 18:00:02 -0700 | [diff] [blame] | 770 | receive_needs(); |
David Rientjes | 59076eb | 2006-08-14 13:40:51 -0700 | [diff] [blame] | 771 | if (want_obj.nr) { |
| 772 | get_common_commits(); |
| 773 | create_pack_file(); |
| 774 | } |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 775 | } |
| 776 | |
Junio C Hamano | daebaa7 | 2013-01-18 16:08:30 -0800 | [diff] [blame] | 777 | static int upload_pack_config(const char *var, const char *value, void *unused) |
| 778 | { |
Junio C Hamano | 390eb36 | 2013-01-28 21:49:57 -0800 | [diff] [blame] | 779 | if (!strcmp("uploadpack.allowtipsha1inwant", var)) |
| 780 | allow_tip_sha1_in_want = git_config_bool(var, value); |
Jeff King | 05e9515 | 2013-09-08 05:01:31 -0400 | [diff] [blame] | 781 | else if (!strcmp("uploadpack.keepalive", var)) { |
| 782 | keepalive = git_config_int(var, value); |
| 783 | if (!keepalive) |
| 784 | keepalive = -1; |
| 785 | } |
Junio C Hamano | daebaa7 | 2013-01-18 16:08:30 -0800 | [diff] [blame] | 786 | return parse_hide_refs_config(var, value, "uploadpack"); |
| 787 | } |
| 788 | |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 789 | int main(int argc, char **argv) |
| 790 | { |
Andreas Ericsson | 8d63013 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 791 | char *dir; |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 792 | int i; |
| 793 | int strict = 0; |
| 794 | |
Ævar Arnfjörð Bjarmason | 5e9637c | 2011-11-18 00:14:42 +0100 | [diff] [blame] | 795 | git_setup_gettext(); |
| 796 | |
Jeff King | bbc30f9 | 2011-02-24 09:30:19 -0500 | [diff] [blame] | 797 | packet_trace_identity("upload-pack"); |
Steffen Prohaska | 2fb3f6d | 2009-01-18 13:00:12 +0100 | [diff] [blame] | 798 | git_extract_argv0_path(argv[0]); |
Christian Couder | dae556b | 2009-01-23 10:07:46 +0100 | [diff] [blame] | 799 | read_replace_refs = 0; |
Steffen Prohaska | 2fb3f6d | 2009-01-18 13:00:12 +0100 | [diff] [blame] | 800 | |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 801 | for (i = 1; i < argc; i++) { |
| 802 | char *arg = argv[i]; |
| 803 | |
| 804 | if (arg[0] != '-') |
| 805 | break; |
Shawn O. Pearce | 42526b4 | 2009-10-30 17:47:33 -0700 | [diff] [blame] | 806 | if (!strcmp(arg, "--advertise-refs")) { |
| 807 | advertise_refs = 1; |
| 808 | continue; |
| 809 | } |
| 810 | if (!strcmp(arg, "--stateless-rpc")) { |
| 811 | stateless_rpc = 1; |
| 812 | continue; |
| 813 | } |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 814 | if (!strcmp(arg, "--strict")) { |
| 815 | strict = 1; |
| 816 | continue; |
| 817 | } |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 818 | if (!prefixcmp(arg, "--timeout=")) { |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 819 | timeout = atoi(arg+10); |
Johannes Sixt | 9462e3f | 2009-06-16 20:41:16 +0200 | [diff] [blame] | 820 | daemon_mode = 1; |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 821 | continue; |
| 822 | } |
| 823 | if (!strcmp(arg, "--")) { |
| 824 | i++; |
| 825 | break; |
| 826 | } |
| 827 | } |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 828 | |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 829 | if (i != argc-1) |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 830 | usage(upload_pack_usage); |
Johannes Sixt | 04b3305 | 2008-02-12 12:28:01 +0100 | [diff] [blame] | 831 | |
Johannes Sixt | e1464ca | 2008-07-21 21:19:52 +0200 | [diff] [blame] | 832 | setup_path(); |
Johannes Sixt | 04b3305 | 2008-02-12 12:28:01 +0100 | [diff] [blame] | 833 | |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 834 | dir = argv[i]; |
Linus Torvalds | 113b947 | 2005-07-08 16:22:22 -0700 | [diff] [blame] | 835 | |
Andreas Ericsson | 8d63013 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 836 | if (!enter_repo(dir, strict)) |
Jeff King | 05ac6b3 | 2009-03-04 03:32:29 -0500 | [diff] [blame] | 837 | die("'%s' does not appear to be a git repository", dir); |
Junio C Hamano | a0022ee | 2007-01-21 22:23:58 -0800 | [diff] [blame] | 838 | if (is_repository_shallow()) |
| 839 | die("attempt to fetch/clone from a shallow repository"); |
Junio C Hamano | daebaa7 | 2013-01-18 16:08:30 -0800 | [diff] [blame] | 840 | git_config(upload_pack_config, NULL); |
Linus Torvalds | def88e9 | 2005-07-04 13:26:53 -0700 | [diff] [blame] | 841 | upload_pack(); |
| 842 | return 0; |
| 843 | } |