Blame


1 5261c201 2018-04-01 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 5261c201 2018-04-01 stsp *
4 5261c201 2018-04-01 stsp * Permission to use, copy, modify, and distribute this software for any
5 5261c201 2018-04-01 stsp * purpose with or without fee is hereby granted, provided that the above
6 5261c201 2018-04-01 stsp * copyright notice and this permission notice appear in all copies.
7 5261c201 2018-04-01 stsp *
8 5261c201 2018-04-01 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 5261c201 2018-04-01 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 5261c201 2018-04-01 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 5261c201 2018-04-01 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 5261c201 2018-04-01 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 5261c201 2018-04-01 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 5261c201 2018-04-01 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 5261c201 2018-04-01 stsp */
16 5261c201 2018-04-01 stsp
17 5261c201 2018-04-01 stsp #include <sys/types.h>
18 5261c201 2018-04-01 stsp #include <sys/queue.h>
19 5261c201 2018-04-01 stsp
20 a04f49d2 2019-02-04 stsp #include <dirent.h>
21 5261c201 2018-04-01 stsp #include <sha1.h>
22 5261c201 2018-04-01 stsp #include <stdio.h>
23 5261c201 2018-04-01 stsp #include <stdlib.h>
24 5261c201 2018-04-01 stsp #include <string.h>
25 5261c201 2018-04-01 stsp #include <util.h>
26 5261c201 2018-04-01 stsp #include <zlib.h>
27 788c352e 2018-06-16 stsp #include <time.h>
28 5261c201 2018-04-01 stsp
29 5261c201 2018-04-01 stsp #include "got_error.h"
30 5261c201 2018-04-01 stsp #include "got_object.h"
31 5261c201 2018-04-01 stsp #include "got_repository.h"
32 5261c201 2018-04-01 stsp #include "got_reference.h"
33 5261c201 2018-04-01 stsp
34 5261c201 2018-04-01 stsp #include "got_lib_sha1.h"
35 5261c201 2018-04-01 stsp #include "got_lib_path.h"
36 5261c201 2018-04-01 stsp #include "got_lib_delta.h"
37 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
38 5261c201 2018-04-01 stsp #include "got_lib_object.h"
39 5261c201 2018-04-01 stsp
40 fb79db15 2019-02-01 stsp #ifndef nitems
41 fb79db15 2019-02-01 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
42 fb79db15 2019-02-01 stsp #endif
43 fb79db15 2019-02-01 stsp
44 d1f2edc9 2018-06-13 stsp #define GOT_REF_HEADS "heads"
45 d1f2edc9 2018-06-13 stsp #define GOT_REF_TAGS "tags"
46 d1f2edc9 2018-06-13 stsp #define GOT_REF_REMOTES "remotes"
47 d1f2edc9 2018-06-13 stsp
48 5261c201 2018-04-01 stsp /* A symbolic reference. */
49 5261c201 2018-04-01 stsp struct got_symref {
50 5261c201 2018-04-01 stsp char *name;
51 5261c201 2018-04-01 stsp char *ref;
52 5261c201 2018-04-01 stsp };
53 5261c201 2018-04-01 stsp
54 5261c201 2018-04-01 stsp /* A non-symbolic reference (there is no better designation). */
55 5261c201 2018-04-01 stsp struct got_ref {
56 5261c201 2018-04-01 stsp char *name;
57 5261c201 2018-04-01 stsp u_int8_t sha1[SHA1_DIGEST_LENGTH];
58 5261c201 2018-04-01 stsp };
59 5261c201 2018-04-01 stsp
60 5261c201 2018-04-01 stsp /* A reference which points to an arbitrary object. */
61 5261c201 2018-04-01 stsp struct got_reference {
62 5261c201 2018-04-01 stsp unsigned int flags;
63 5261c201 2018-04-01 stsp #define GOT_REF_IS_SYMBOLIC 0x01
64 5261c201 2018-04-01 stsp
65 5261c201 2018-04-01 stsp union {
66 5261c201 2018-04-01 stsp struct got_ref ref;
67 5261c201 2018-04-01 stsp struct got_symref symref;
68 5261c201 2018-04-01 stsp } ref;
69 5261c201 2018-04-01 stsp };
70 5261c201 2018-04-01 stsp
71 5261c201 2018-04-01 stsp static const struct got_error *
72 5261c201 2018-04-01 stsp parse_symref(struct got_reference **ref, const char *name, const char *line)
73 5261c201 2018-04-01 stsp {
74 5261c201 2018-04-01 stsp struct got_symref *symref;
75 5261c201 2018-04-01 stsp char *symref_name;
76 5261c201 2018-04-01 stsp char *symref_ref;
77 5261c201 2018-04-01 stsp
78 5261c201 2018-04-01 stsp if (line[0] == '\0')
79 30c0868d 2019-02-03 stsp return got_error(GOT_ERR_BAD_REF_DATA);
80 5261c201 2018-04-01 stsp
81 5261c201 2018-04-01 stsp symref_name = strdup(name);
82 5261c201 2018-04-01 stsp if (symref_name == NULL)
83 5261c201 2018-04-01 stsp return got_error_from_errno();
84 5261c201 2018-04-01 stsp symref_ref = strdup(line);
85 5261c201 2018-04-01 stsp if (symref_ref == NULL) {
86 5261c201 2018-04-01 stsp const struct got_error *err = got_error_from_errno();
87 5261c201 2018-04-01 stsp free(symref_name);
88 5261c201 2018-04-01 stsp return err;
89 5261c201 2018-04-01 stsp }
90 5261c201 2018-04-01 stsp
91 5261c201 2018-04-01 stsp *ref = calloc(1, sizeof(**ref));
92 5261c201 2018-04-01 stsp if (*ref == NULL)
93 5261c201 2018-04-01 stsp return got_error_from_errno();
94 5261c201 2018-04-01 stsp (*ref)->flags |= GOT_REF_IS_SYMBOLIC;
95 5261c201 2018-04-01 stsp symref = &((*ref)->ref.symref);
96 5261c201 2018-04-01 stsp symref->name = symref_name;
97 5261c201 2018-04-01 stsp symref->ref = symref_ref;
98 5261c201 2018-04-01 stsp return NULL;
99 5261c201 2018-04-01 stsp }
100 5261c201 2018-04-01 stsp
101 5261c201 2018-04-01 stsp static const struct got_error *
102 5261c201 2018-04-01 stsp parse_ref_line(struct got_reference **ref, const char *name, const char *line)
103 5261c201 2018-04-01 stsp {
104 5261c201 2018-04-01 stsp uint8_t digest[SHA1_DIGEST_LENGTH];
105 5261c201 2018-04-01 stsp char *ref_name;
106 5261c201 2018-04-01 stsp
107 5261c201 2018-04-01 stsp if (strncmp(line, "ref: ", 5) == 0) {
108 5261c201 2018-04-01 stsp line += 5;
109 5261c201 2018-04-01 stsp return parse_symref(ref, name, line);
110 5261c201 2018-04-01 stsp }
111 5261c201 2018-04-01 stsp
112 5261c201 2018-04-01 stsp ref_name = strdup(name);
113 5261c201 2018-04-01 stsp if (ref_name == NULL)
114 5261c201 2018-04-01 stsp return got_error_from_errno();
115 5261c201 2018-04-01 stsp
116 5261c201 2018-04-01 stsp if (!got_parse_sha1_digest(digest, line))
117 30c0868d 2019-02-03 stsp return got_error(GOT_ERR_BAD_REF_DATA);
118 5261c201 2018-04-01 stsp
119 5261c201 2018-04-01 stsp *ref = calloc(1, sizeof(**ref));
120 5261c201 2018-04-01 stsp if (*ref == NULL)
121 5261c201 2018-04-01 stsp return got_error_from_errno();
122 5261c201 2018-04-01 stsp (*ref)->ref.ref.name = ref_name;
123 5261c201 2018-04-01 stsp memcpy(&(*ref)->ref.ref.sha1, digest, SHA1_DIGEST_LENGTH);
124 5261c201 2018-04-01 stsp return NULL;
125 5261c201 2018-04-01 stsp }
126 5261c201 2018-04-01 stsp
127 5261c201 2018-04-01 stsp static const struct got_error *
128 5261c201 2018-04-01 stsp parse_ref_file(struct got_reference **ref, const char *name,
129 5261c201 2018-04-01 stsp const char *abspath)
130 5261c201 2018-04-01 stsp {
131 5261c201 2018-04-01 stsp const struct got_error *err = NULL;
132 5261c201 2018-04-01 stsp FILE *f = fopen(abspath, "rb");
133 5261c201 2018-04-01 stsp char *line;
134 5261c201 2018-04-01 stsp size_t len;
135 5261c201 2018-04-01 stsp const char delim[3] = {'\0', '\0', '\0'};
136 5261c201 2018-04-01 stsp
137 5261c201 2018-04-01 stsp if (f == NULL)
138 1e37702e 2019-02-04 stsp return NULL;
139 5261c201 2018-04-01 stsp
140 5261c201 2018-04-01 stsp line = fparseln(f, &len, NULL, delim, 0);
141 5261c201 2018-04-01 stsp if (line == NULL) {
142 30c0868d 2019-02-03 stsp err = got_error(GOT_ERR_BAD_REF_DATA);
143 5261c201 2018-04-01 stsp goto done;
144 5261c201 2018-04-01 stsp }
145 5261c201 2018-04-01 stsp
146 5261c201 2018-04-01 stsp err = parse_ref_line(ref, name, line);
147 5261c201 2018-04-01 stsp done:
148 5261c201 2018-04-01 stsp free(line);
149 fb43ecf1 2019-02-11 stsp if (fclose(f) != 0 && err == NULL)
150 fb43ecf1 2019-02-11 stsp err = got_error_from_errno();
151 5261c201 2018-04-01 stsp return err;
152 5261c201 2018-04-01 stsp }
153 5261c201 2018-04-01 stsp
154 c5f754cc 2019-02-01 stsp static int
155 c5f754cc 2019-02-01 stsp is_well_known_ref(const char *refname)
156 5261c201 2018-04-01 stsp {
157 c5f754cc 2019-02-01 stsp return (strcmp(refname, GOT_REF_HEAD) == 0 ||
158 5261c201 2018-04-01 stsp strcmp(refname, GOT_REF_ORIG_HEAD) == 0 ||
159 5261c201 2018-04-01 stsp strcmp(refname, GOT_REF_MERGE_HEAD) == 0 ||
160 c5f754cc 2019-02-01 stsp strcmp(refname, GOT_REF_FETCH_HEAD) == 0);
161 c5f754cc 2019-02-01 stsp }
162 c5f754cc 2019-02-01 stsp
163 c5f754cc 2019-02-01 stsp static char *
164 c5f754cc 2019-02-01 stsp get_refs_dir_path(struct got_repository *repo, const char *refname)
165 c5f754cc 2019-02-01 stsp {
166 c5f754cc 2019-02-01 stsp if (is_well_known_ref(refname) || strncmp(refname, "refs/", 5) == 0)
167 6e9da951 2019-01-06 stsp return strdup(got_repo_get_path_git_dir(repo));
168 5261c201 2018-04-01 stsp
169 5261c201 2018-04-01 stsp return got_repo_get_path_refs(repo);
170 5261c201 2018-04-01 stsp }
171 5261c201 2018-04-01 stsp
172 d1f2edc9 2018-06-13 stsp static const struct got_error *
173 fb79db15 2019-02-01 stsp parse_packed_ref_line(struct got_reference **ref, const char *abs_refname,
174 fb79db15 2019-02-01 stsp const char *line)
175 fb79db15 2019-02-01 stsp {
176 fb79db15 2019-02-01 stsp uint8_t digest[SHA1_DIGEST_LENGTH];
177 fb79db15 2019-02-01 stsp char *name;
178 fb79db15 2019-02-01 stsp
179 fb79db15 2019-02-01 stsp *ref = NULL;
180 fb79db15 2019-02-01 stsp
181 532920c8 2019-02-01 stsp if (line[0] == '#' || line[0] == '^')
182 fb79db15 2019-02-01 stsp return NULL;
183 fb79db15 2019-02-01 stsp
184 fb79db15 2019-02-01 stsp if (!got_parse_sha1_digest(digest, line))
185 30c0868d 2019-02-03 stsp return got_error(GOT_ERR_BAD_REF_DATA);
186 fb79db15 2019-02-01 stsp
187 199a4027 2019-02-02 stsp if (abs_refname) {
188 199a4027 2019-02-02 stsp if (strcmp(line + SHA1_DIGEST_STRING_LENGTH, abs_refname) != 0)
189 199a4027 2019-02-02 stsp return NULL;
190 fb79db15 2019-02-01 stsp
191 199a4027 2019-02-02 stsp name = strdup(abs_refname);
192 199a4027 2019-02-02 stsp if (name == NULL)
193 199a4027 2019-02-02 stsp return got_error_from_errno();
194 199a4027 2019-02-02 stsp } else
195 199a4027 2019-02-02 stsp name = strdup(line + SHA1_DIGEST_STRING_LENGTH);
196 fb79db15 2019-02-01 stsp
197 fb79db15 2019-02-01 stsp *ref = calloc(1, sizeof(**ref));
198 fb79db15 2019-02-01 stsp if (*ref == NULL)
199 fb79db15 2019-02-01 stsp return got_error_from_errno();
200 fb79db15 2019-02-01 stsp (*ref)->ref.ref.name = name;;
201 fb79db15 2019-02-01 stsp memcpy(&(*ref)->ref.ref.sha1, digest, SHA1_DIGEST_LENGTH);
202 fb79db15 2019-02-01 stsp return NULL;
203 fb79db15 2019-02-01 stsp }
204 fb79db15 2019-02-01 stsp
205 fb79db15 2019-02-01 stsp static const struct got_error *
206 0dec1cc0 2019-02-01 stsp open_packed_ref(struct got_reference **ref, FILE *f, const char **subdirs,
207 0dec1cc0 2019-02-01 stsp int nsubdirs, const char *refname)
208 fb79db15 2019-02-01 stsp {
209 fb79db15 2019-02-01 stsp const struct got_error *err = NULL;
210 fb79db15 2019-02-01 stsp char *abs_refname;
211 fb79db15 2019-02-01 stsp char *line;
212 fb79db15 2019-02-01 stsp size_t len;
213 fb79db15 2019-02-01 stsp const char delim[3] = {'\0', '\0', '\0'};
214 0dec1cc0 2019-02-01 stsp int i, ref_is_absolute = (strncmp(refname, "refs/", 5) == 0);
215 fb79db15 2019-02-01 stsp
216 1e37702e 2019-02-04 stsp *ref = NULL;
217 1e37702e 2019-02-04 stsp
218 0dec1cc0 2019-02-01 stsp if (ref_is_absolute)
219 0dec1cc0 2019-02-01 stsp abs_refname = (char *)refname;
220 fb79db15 2019-02-01 stsp do {
221 fb79db15 2019-02-01 stsp line = fparseln(f, &len, NULL, delim, 0);
222 1e37702e 2019-02-04 stsp if (line == NULL)
223 fb79db15 2019-02-01 stsp break;
224 0dec1cc0 2019-02-01 stsp for (i = 0; i < nsubdirs; i++) {
225 0dec1cc0 2019-02-01 stsp if (!ref_is_absolute &&
226 0dec1cc0 2019-02-01 stsp asprintf(&abs_refname, "refs/%s/%s", subdirs[i],
227 0dec1cc0 2019-02-01 stsp refname) == -1)
228 0dec1cc0 2019-02-01 stsp return got_error_from_errno();
229 0dec1cc0 2019-02-01 stsp err = parse_packed_ref_line(ref, abs_refname, line);
230 0dec1cc0 2019-02-01 stsp if (!ref_is_absolute)
231 0dec1cc0 2019-02-01 stsp free(abs_refname);
232 532920c8 2019-02-01 stsp if (err || *ref != NULL)
233 0dec1cc0 2019-02-01 stsp break;
234 0dec1cc0 2019-02-01 stsp }
235 fb79db15 2019-02-01 stsp free(line);
236 fb79db15 2019-02-01 stsp if (err)
237 fb79db15 2019-02-01 stsp break;
238 fb79db15 2019-02-01 stsp } while (*ref == NULL);
239 fb79db15 2019-02-01 stsp
240 fb79db15 2019-02-01 stsp return err;
241 fb79db15 2019-02-01 stsp }
242 fb79db15 2019-02-01 stsp
243 fb79db15 2019-02-01 stsp static const struct got_error *
244 d1f2edc9 2018-06-13 stsp open_ref(struct got_reference **ref, const char *path_refs, const char *subdir,
245 a04f49d2 2019-02-04 stsp const char *name)
246 d1f2edc9 2018-06-13 stsp {
247 d1f2edc9 2018-06-13 stsp const struct got_error *err = NULL;
248 a04f49d2 2019-02-04 stsp char *path = NULL;
249 a04f49d2 2019-02-04 stsp char *normpath = NULL;
250 a04f49d2 2019-02-04 stsp char *absname = NULL;
251 a04f49d2 2019-02-04 stsp int ref_is_absolute = (strncmp(name, "refs/", 5) == 0);
252 a04f49d2 2019-02-04 stsp int ref_is_well_known = is_well_known_ref(name);
253 d1f2edc9 2018-06-13 stsp
254 1e37702e 2019-02-04 stsp *ref = NULL;
255 1e37702e 2019-02-04 stsp
256 a04f49d2 2019-02-04 stsp if (ref_is_absolute || ref_is_well_known) {
257 a04f49d2 2019-02-04 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1)
258 a04f49d2 2019-02-04 stsp return got_error_from_errno();
259 a04f49d2 2019-02-04 stsp absname = (char *)name;
260 a04f49d2 2019-02-04 stsp } else {
261 a04f49d2 2019-02-04 stsp if (asprintf(&path, "%s/%s/%s", path_refs, subdir, name) == -1)
262 a04f49d2 2019-02-04 stsp return got_error_from_errno();
263 d1f2edc9 2018-06-13 stsp
264 a04f49d2 2019-02-04 stsp if (asprintf(&absname, "refs/%s/%s", subdir, name) == -1) {
265 a04f49d2 2019-02-04 stsp err = got_error_from_errno();
266 a04f49d2 2019-02-04 stsp goto done;
267 a04f49d2 2019-02-04 stsp }
268 a04f49d2 2019-02-04 stsp }
269 a04f49d2 2019-02-04 stsp
270 a04f49d2 2019-02-04 stsp normpath = got_path_normalize(path);
271 d1f2edc9 2018-06-13 stsp if (normpath == NULL) {
272 30c0868d 2019-02-03 stsp err = got_error_from_errno();
273 d1f2edc9 2018-06-13 stsp goto done;
274 d1f2edc9 2018-06-13 stsp }
275 d1f2edc9 2018-06-13 stsp
276 a04f49d2 2019-02-04 stsp err = parse_ref_file(ref, absname, normpath);
277 d1f2edc9 2018-06-13 stsp done:
278 a04f49d2 2019-02-04 stsp if (!ref_is_absolute && !ref_is_well_known)
279 a04f49d2 2019-02-04 stsp free(absname);
280 a04f49d2 2019-02-04 stsp free(path);
281 d1f2edc9 2018-06-13 stsp free(normpath);
282 d1f2edc9 2018-06-13 stsp return err;
283 d1f2edc9 2018-06-13 stsp }
284 d1f2edc9 2018-06-13 stsp
285 5261c201 2018-04-01 stsp const struct got_error *
286 5261c201 2018-04-01 stsp got_ref_open(struct got_reference **ref, struct got_repository *repo,
287 5261c201 2018-04-01 stsp const char *refname)
288 5261c201 2018-04-01 stsp {
289 5261c201 2018-04-01 stsp const struct got_error *err = NULL;
290 c5f754cc 2019-02-01 stsp char *path_refs = NULL;
291 fb79db15 2019-02-01 stsp const char *subdirs[] = {
292 fb79db15 2019-02-01 stsp GOT_REF_HEADS, GOT_REF_TAGS, GOT_REF_REMOTES
293 fb79db15 2019-02-01 stsp };
294 c5f754cc 2019-02-01 stsp int i, well_known = is_well_known_ref(refname);
295 1e37702e 2019-02-04 stsp
296 1e37702e 2019-02-04 stsp *ref = NULL;
297 e135804e 2019-02-10 stsp
298 e135804e 2019-02-10 stsp path_refs = get_refs_dir_path(repo, refname);
299 e135804e 2019-02-10 stsp if (path_refs == NULL) {
300 e135804e 2019-02-10 stsp err = got_error_from_errno();
301 e135804e 2019-02-10 stsp goto done;
302 e135804e 2019-02-10 stsp }
303 5261c201 2018-04-01 stsp
304 c5f754cc 2019-02-01 stsp if (!well_known) {
305 c5f754cc 2019-02-01 stsp char *packed_refs_path;
306 c5f754cc 2019-02-01 stsp FILE *f;
307 c5f754cc 2019-02-01 stsp
308 e135804e 2019-02-10 stsp /* Search on-disk refs before packed refs! */
309 e135804e 2019-02-10 stsp for (i = 0; i < nitems(subdirs); i++) {
310 e135804e 2019-02-10 stsp err = open_ref(ref, path_refs, subdirs[i], refname);
311 e135804e 2019-02-10 stsp if (err || *ref)
312 e135804e 2019-02-10 stsp goto done;
313 e135804e 2019-02-10 stsp }
314 e135804e 2019-02-10 stsp
315 c5f754cc 2019-02-01 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
316 e135804e 2019-02-10 stsp if (packed_refs_path == NULL) {
317 e135804e 2019-02-10 stsp err = got_error_from_errno();
318 e135804e 2019-02-10 stsp goto done;
319 e135804e 2019-02-10 stsp }
320 c5f754cc 2019-02-01 stsp
321 c5f754cc 2019-02-01 stsp f = fopen(packed_refs_path, "rb");
322 c5f754cc 2019-02-01 stsp free(packed_refs_path);
323 c5f754cc 2019-02-01 stsp if (f != NULL) {
324 0dec1cc0 2019-02-01 stsp err = open_packed_ref(ref, f, subdirs, nitems(subdirs),
325 0dec1cc0 2019-02-01 stsp refname);
326 fb43ecf1 2019-02-11 stsp if (fclose(f) != 0 && err == NULL)
327 fb43ecf1 2019-02-11 stsp err = got_error_from_errno();
328 1e37702e 2019-02-04 stsp if (err || *ref)
329 0dec1cc0 2019-02-01 stsp goto done;
330 fb79db15 2019-02-01 stsp }
331 fb79db15 2019-02-01 stsp }
332 fb79db15 2019-02-01 stsp
333 fb79db15 2019-02-01 stsp err = open_ref(ref, path_refs, "", refname);
334 1e37702e 2019-02-04 stsp if (err)
335 1e37702e 2019-02-04 stsp goto done;
336 e135804e 2019-02-10 stsp done:
337 1e37702e 2019-02-04 stsp if (*ref == NULL)
338 1e37702e 2019-02-04 stsp err = got_error_not_ref(refname);
339 5261c201 2018-04-01 stsp free(path_refs);
340 5261c201 2018-04-01 stsp return err;
341 5261c201 2018-04-01 stsp }
342 5261c201 2018-04-01 stsp
343 5261c201 2018-04-01 stsp void
344 5261c201 2018-04-01 stsp got_ref_close(struct got_reference *ref)
345 5261c201 2018-04-01 stsp {
346 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
347 5261c201 2018-04-01 stsp free(ref->ref.symref.name);
348 5261c201 2018-04-01 stsp else
349 5261c201 2018-04-01 stsp free(ref->ref.ref.name);
350 5261c201 2018-04-01 stsp free(ref);
351 5261c201 2018-04-01 stsp }
352 5261c201 2018-04-01 stsp
353 5261c201 2018-04-01 stsp struct got_reference *
354 5261c201 2018-04-01 stsp got_ref_dup(struct got_reference *ref)
355 5261c201 2018-04-01 stsp {
356 5261c201 2018-04-01 stsp struct got_reference *ret;
357 5261c201 2018-04-01 stsp
358 5261c201 2018-04-01 stsp ret = calloc(1, sizeof(*ret));
359 5261c201 2018-04-01 stsp if (ret == NULL)
360 5261c201 2018-04-01 stsp return NULL;
361 5261c201 2018-04-01 stsp
362 5261c201 2018-04-01 stsp ret->flags = ref->flags;
363 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
364 5261c201 2018-04-01 stsp ret->ref.symref.name = strdup(ref->ref.symref.name);
365 5261c201 2018-04-01 stsp if (ret->ref.symref.name == NULL) {
366 5261c201 2018-04-01 stsp free(ret);
367 5261c201 2018-04-01 stsp return NULL;
368 5261c201 2018-04-01 stsp }
369 5261c201 2018-04-01 stsp ret->ref.symref.ref = strdup(ref->ref.symref.ref);
370 5261c201 2018-04-01 stsp if (ret->ref.symref.ref == NULL) {
371 5261c201 2018-04-01 stsp free(ret->ref.symref.name);
372 5261c201 2018-04-01 stsp free(ret);
373 5261c201 2018-04-01 stsp return NULL;
374 5261c201 2018-04-01 stsp }
375 5261c201 2018-04-01 stsp } else {
376 5261c201 2018-04-01 stsp ref->ref.ref.name = strdup(ref->ref.ref.name);
377 5261c201 2018-04-01 stsp if (ref->ref.ref.name == NULL) {
378 5261c201 2018-04-01 stsp free(ret);
379 5261c201 2018-04-01 stsp return NULL;
380 5261c201 2018-04-01 stsp }
381 5261c201 2018-04-01 stsp memcpy(ret->ref.ref.sha1, ref->ref.ref.sha1,
382 5261c201 2018-04-01 stsp SHA1_DIGEST_LENGTH);
383 5261c201 2018-04-01 stsp }
384 5261c201 2018-04-01 stsp
385 5261c201 2018-04-01 stsp return ret;
386 5261c201 2018-04-01 stsp }
387 5261c201 2018-04-01 stsp
388 5261c201 2018-04-01 stsp static const struct got_error *
389 5261c201 2018-04-01 stsp resolve_symbolic_ref(struct got_reference **resolved,
390 5261c201 2018-04-01 stsp struct got_repository *repo, struct got_reference *ref)
391 5261c201 2018-04-01 stsp {
392 5261c201 2018-04-01 stsp struct got_reference *nextref;
393 5261c201 2018-04-01 stsp const struct got_error *err;
394 5261c201 2018-04-01 stsp
395 5261c201 2018-04-01 stsp err = got_ref_open(&nextref, repo, ref->ref.symref.ref);
396 5261c201 2018-04-01 stsp if (err)
397 5261c201 2018-04-01 stsp return err;
398 5261c201 2018-04-01 stsp
399 5261c201 2018-04-01 stsp if (nextref->flags & GOT_REF_IS_SYMBOLIC)
400 5261c201 2018-04-01 stsp err = resolve_symbolic_ref(resolved, repo, nextref);
401 5261c201 2018-04-01 stsp else
402 5261c201 2018-04-01 stsp *resolved = got_ref_dup(nextref);
403 5261c201 2018-04-01 stsp
404 5261c201 2018-04-01 stsp got_ref_close(nextref);
405 5261c201 2018-04-01 stsp return err;
406 5261c201 2018-04-01 stsp }
407 5261c201 2018-04-01 stsp
408 5261c201 2018-04-01 stsp const struct got_error *
409 5261c201 2018-04-01 stsp got_ref_resolve(struct got_object_id **id, struct got_repository *repo,
410 5261c201 2018-04-01 stsp struct got_reference *ref)
411 5261c201 2018-04-01 stsp {
412 5261c201 2018-04-01 stsp const struct got_error *err;
413 5261c201 2018-04-01 stsp
414 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
415 5261c201 2018-04-01 stsp struct got_reference *resolved = NULL;
416 5261c201 2018-04-01 stsp err = resolve_symbolic_ref(&resolved, repo, ref);
417 5261c201 2018-04-01 stsp if (err == NULL)
418 5261c201 2018-04-01 stsp err = got_ref_resolve(id, repo, resolved);
419 5261c201 2018-04-01 stsp free(resolved);
420 5261c201 2018-04-01 stsp return err;
421 5261c201 2018-04-01 stsp }
422 5261c201 2018-04-01 stsp
423 5261c201 2018-04-01 stsp *id = calloc(1, sizeof(**id));
424 5261c201 2018-04-01 stsp if (*id == NULL)
425 5261c201 2018-04-01 stsp return got_error_from_errno();
426 5261c201 2018-04-01 stsp memcpy((*id)->sha1, ref->ref.ref.sha1, SHA1_DIGEST_LENGTH);
427 5261c201 2018-04-01 stsp return NULL;
428 5261c201 2018-04-01 stsp }
429 5261c201 2018-04-01 stsp
430 5261c201 2018-04-01 stsp char *
431 5261c201 2018-04-01 stsp got_ref_to_str(struct got_reference *ref)
432 5261c201 2018-04-01 stsp {
433 5261c201 2018-04-01 stsp char *str;
434 271d2a38 2018-12-25 stsp
435 271d2a38 2018-12-25 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
436 271d2a38 2018-12-25 stsp return strdup(ref->ref.symref.ref);
437 271d2a38 2018-12-25 stsp
438 271d2a38 2018-12-25 stsp str = malloc(SHA1_DIGEST_STRING_LENGTH);
439 271d2a38 2018-12-25 stsp if (str == NULL)
440 271d2a38 2018-12-25 stsp return NULL;
441 271d2a38 2018-12-25 stsp
442 271d2a38 2018-12-25 stsp if (got_sha1_digest_to_str(ref->ref.ref.sha1, str,
443 271d2a38 2018-12-25 stsp SHA1_DIGEST_STRING_LENGTH) == NULL) {
444 271d2a38 2018-12-25 stsp free(str);
445 271d2a38 2018-12-25 stsp return NULL;
446 5261c201 2018-04-01 stsp }
447 5261c201 2018-04-01 stsp
448 5261c201 2018-04-01 stsp return str;
449 5261c201 2018-04-01 stsp }
450 0bd18d37 2019-02-01 stsp
451 0bd18d37 2019-02-01 stsp const char *
452 0bd18d37 2019-02-01 stsp got_ref_get_name(struct got_reference *ref)
453 0bd18d37 2019-02-01 stsp {
454 0bd18d37 2019-02-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
455 0bd18d37 2019-02-01 stsp return ref->ref.symref.name;
456 0bd18d37 2019-02-01 stsp
457 0bd18d37 2019-02-01 stsp return ref->ref.ref.name;
458 199a4027 2019-02-02 stsp }
459 199a4027 2019-02-02 stsp
460 199a4027 2019-02-02 stsp static const struct got_error *
461 29b5c214 2019-02-04 stsp insert_ref(struct got_reflist_head *refs, struct got_reference *ref,
462 199a4027 2019-02-02 stsp struct got_repository *repo)
463 199a4027 2019-02-02 stsp {
464 199a4027 2019-02-02 stsp const struct got_error *err;
465 199a4027 2019-02-02 stsp struct got_object_id *id;
466 7a3c76f5 2019-02-05 stsp struct got_reflist_entry *new, *re, *prev;
467 e397b6db 2019-02-04 stsp int cmp;
468 7a3c76f5 2019-02-05 stsp
469 7a3c76f5 2019-02-05 stsp err = got_ref_resolve(&id, repo, ref);
470 7a3c76f5 2019-02-05 stsp if (err)
471 7a3c76f5 2019-02-05 stsp return err;
472 29b5c214 2019-02-04 stsp
473 7a3c76f5 2019-02-05 stsp new = malloc(sizeof(*re));
474 7a3c76f5 2019-02-05 stsp if (new == NULL) {
475 7a3c76f5 2019-02-05 stsp free(id);
476 7a3c76f5 2019-02-05 stsp return got_error_from_errno();
477 7a3c76f5 2019-02-05 stsp }
478 7a3c76f5 2019-02-05 stsp new->ref = ref;
479 7a3c76f5 2019-02-05 stsp new->id = id;
480 7a3c76f5 2019-02-05 stsp
481 29b5c214 2019-02-04 stsp /*
482 29b5c214 2019-02-04 stsp * We must de-duplicate entries on insert because packed-refs may
483 29b5c214 2019-02-04 stsp * contain redundant entries. On-disk refs take precedence.
484 29b5c214 2019-02-04 stsp * This code assumes that on-disk revs are read before packed-refs.
485 e397b6db 2019-02-04 stsp * We're iterating the list anyway, so insert elements sorted by name.
486 29b5c214 2019-02-04 stsp */
487 7a3c76f5 2019-02-05 stsp re = SIMPLEQ_FIRST(refs);
488 7a3c76f5 2019-02-05 stsp while (re) {
489 7a3c76f5 2019-02-05 stsp cmp = got_path_cmp(got_ref_get_name(re->ref),
490 7a3c76f5 2019-02-05 stsp got_ref_get_name(ref));
491 e397b6db 2019-02-04 stsp if (cmp == 0) {
492 7a3c76f5 2019-02-05 stsp free(ref); /* duplicate */
493 7a3c76f5 2019-02-05 stsp return NULL;
494 7a3c76f5 2019-02-05 stsp } else if (cmp > 0) {
495 7a3c76f5 2019-02-05 stsp if (prev)
496 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_AFTER(refs, prev, new, entry);
497 7a3c76f5 2019-02-05 stsp else
498 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_HEAD(refs, new, entry);
499 7a3c76f5 2019-02-05 stsp return NULL;
500 7a3c76f5 2019-02-05 stsp } else {
501 e397b6db 2019-02-04 stsp prev = re;
502 7a3c76f5 2019-02-05 stsp re = SIMPLEQ_NEXT(re, entry);
503 7a3c76f5 2019-02-05 stsp }
504 29b5c214 2019-02-04 stsp }
505 199a4027 2019-02-02 stsp
506 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_TAIL(refs, new, entry);
507 199a4027 2019-02-02 stsp return NULL;
508 0bd18d37 2019-02-01 stsp }
509 199a4027 2019-02-02 stsp
510 a04f49d2 2019-02-04 stsp static const struct got_error *
511 29b5c214 2019-02-04 stsp gather_on_disk_refs(struct got_reflist_head *refs, const char *path_refs,
512 a04f49d2 2019-02-04 stsp const char *subdir, struct got_repository *repo)
513 a04f49d2 2019-02-04 stsp {
514 a04f49d2 2019-02-04 stsp const struct got_error *err = NULL;
515 a04f49d2 2019-02-04 stsp DIR *d = NULL;
516 a04f49d2 2019-02-04 stsp char *path_subdir;
517 a04f49d2 2019-02-04 stsp
518 a04f49d2 2019-02-04 stsp if (asprintf(&path_subdir, "%s/%s", path_refs, subdir) == -1)
519 a04f49d2 2019-02-04 stsp return got_error_from_errno();
520 a04f49d2 2019-02-04 stsp
521 a04f49d2 2019-02-04 stsp d = opendir(path_subdir);
522 a04f49d2 2019-02-04 stsp if (d == NULL)
523 a04f49d2 2019-02-04 stsp goto done;
524 a04f49d2 2019-02-04 stsp
525 a04f49d2 2019-02-04 stsp while (1) {
526 a04f49d2 2019-02-04 stsp struct dirent *dent;
527 a04f49d2 2019-02-04 stsp struct got_reference *ref;
528 a04f49d2 2019-02-04 stsp char *child;
529 a04f49d2 2019-02-04 stsp
530 a04f49d2 2019-02-04 stsp dent = readdir(d);
531 a04f49d2 2019-02-04 stsp if (dent == NULL)
532 a04f49d2 2019-02-04 stsp break;
533 a04f49d2 2019-02-04 stsp
534 a04f49d2 2019-02-04 stsp if (strcmp(dent->d_name, ".") == 0 ||
535 a04f49d2 2019-02-04 stsp strcmp(dent->d_name, "..") == 0)
536 a04f49d2 2019-02-04 stsp continue;
537 a04f49d2 2019-02-04 stsp
538 a04f49d2 2019-02-04 stsp switch (dent->d_type) {
539 a04f49d2 2019-02-04 stsp case DT_REG:
540 a04f49d2 2019-02-04 stsp err = open_ref(&ref, path_refs, subdir, dent->d_name);
541 1e37702e 2019-02-04 stsp if (err)
542 a04f49d2 2019-02-04 stsp goto done;
543 a04f49d2 2019-02-04 stsp if (ref) {
544 29b5c214 2019-02-04 stsp err = insert_ref(refs, ref, repo);
545 a04f49d2 2019-02-04 stsp if (err)
546 a04f49d2 2019-02-04 stsp goto done;
547 a04f49d2 2019-02-04 stsp }
548 a04f49d2 2019-02-04 stsp break;
549 a04f49d2 2019-02-04 stsp case DT_DIR:
550 a04f49d2 2019-02-04 stsp if (asprintf(&child, "%s%s%s", subdir,
551 a04f49d2 2019-02-04 stsp subdir[0] == '\0' ? "" : "/", dent->d_name) == -1) {
552 a04f49d2 2019-02-04 stsp err = got_error_from_errno();
553 a04f49d2 2019-02-04 stsp break;
554 a04f49d2 2019-02-04 stsp }
555 29b5c214 2019-02-04 stsp err = gather_on_disk_refs(refs, path_refs, child, repo);
556 a04f49d2 2019-02-04 stsp free(child);
557 a04f49d2 2019-02-04 stsp break;
558 a04f49d2 2019-02-04 stsp default:
559 a04f49d2 2019-02-04 stsp break;
560 a04f49d2 2019-02-04 stsp }
561 a04f49d2 2019-02-04 stsp }
562 a04f49d2 2019-02-04 stsp done:
563 a04f49d2 2019-02-04 stsp if (d)
564 a04f49d2 2019-02-04 stsp closedir(d);
565 a04f49d2 2019-02-04 stsp free(path_subdir);
566 a04f49d2 2019-02-04 stsp return err;
567 a04f49d2 2019-02-04 stsp }
568 a04f49d2 2019-02-04 stsp
569 199a4027 2019-02-02 stsp const struct got_error *
570 199a4027 2019-02-02 stsp got_ref_list(struct got_reflist_head *refs, struct got_repository *repo)
571 199a4027 2019-02-02 stsp {
572 199a4027 2019-02-02 stsp const struct got_error *err;
573 a04f49d2 2019-02-04 stsp char *packed_refs_path, *path_refs = NULL;
574 29b5c214 2019-02-04 stsp FILE *f = NULL;
575 199a4027 2019-02-02 stsp struct got_reference *ref;
576 199a4027 2019-02-02 stsp
577 29b5c214 2019-02-04 stsp /* HEAD ref should always exist. */
578 29b5c214 2019-02-04 stsp path_refs = get_refs_dir_path(repo, GOT_REF_HEAD);
579 29b5c214 2019-02-04 stsp if (path_refs == NULL) {
580 29b5c214 2019-02-04 stsp err = got_error_from_errno();
581 29b5c214 2019-02-04 stsp goto done;
582 29b5c214 2019-02-04 stsp }
583 29b5c214 2019-02-04 stsp err = open_ref(&ref, path_refs, "", GOT_REF_HEAD);
584 29b5c214 2019-02-04 stsp if (err)
585 29b5c214 2019-02-04 stsp goto done;
586 29b5c214 2019-02-04 stsp err = insert_ref(refs, ref, repo);
587 29b5c214 2019-02-04 stsp if (err)
588 29b5c214 2019-02-04 stsp goto done;
589 29b5c214 2019-02-04 stsp
590 29b5c214 2019-02-04 stsp /* Gather on-disk refs before parsing packed-refs. */
591 29b5c214 2019-02-04 stsp free(path_refs);
592 29b5c214 2019-02-04 stsp path_refs = get_refs_dir_path(repo, "");
593 29b5c214 2019-02-04 stsp if (path_refs == NULL) {
594 29b5c214 2019-02-04 stsp err = got_error_from_errno();
595 29b5c214 2019-02-04 stsp goto done;
596 29b5c214 2019-02-04 stsp }
597 29b5c214 2019-02-04 stsp err = gather_on_disk_refs(refs, path_refs, "", repo);
598 29b5c214 2019-02-04 stsp if (err)
599 29b5c214 2019-02-04 stsp goto done;
600 29b5c214 2019-02-04 stsp
601 29b5c214 2019-02-04 stsp /*
602 29b5c214 2019-02-04 stsp * The packed-refs file may contain redundant entries, in which
603 29b5c214 2019-02-04 stsp * case on-disk refs take precedence.
604 29b5c214 2019-02-04 stsp */
605 199a4027 2019-02-02 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
606 29b5c214 2019-02-04 stsp if (packed_refs_path == NULL) {
607 29b5c214 2019-02-04 stsp err = got_error_from_errno();
608 29b5c214 2019-02-04 stsp goto done;
609 29b5c214 2019-02-04 stsp }
610 199a4027 2019-02-02 stsp
611 199a4027 2019-02-02 stsp f = fopen(packed_refs_path, "r");
612 199a4027 2019-02-02 stsp free(packed_refs_path);
613 199a4027 2019-02-02 stsp if (f) {
614 199a4027 2019-02-02 stsp char *line;
615 199a4027 2019-02-02 stsp size_t len;
616 199a4027 2019-02-02 stsp const char delim[3] = {'\0', '\0', '\0'};
617 199a4027 2019-02-02 stsp while (1) {
618 199a4027 2019-02-02 stsp line = fparseln(f, &len, NULL, delim, 0);
619 199a4027 2019-02-02 stsp if (line == NULL)
620 199a4027 2019-02-02 stsp break;
621 199a4027 2019-02-02 stsp err = parse_packed_ref_line(&ref, NULL, line);
622 199a4027 2019-02-02 stsp if (err)
623 199a4027 2019-02-02 stsp goto done;
624 76b4ead2 2019-02-03 stsp if (ref) {
625 29b5c214 2019-02-04 stsp err = insert_ref(refs, ref, repo);
626 76b4ead2 2019-02-03 stsp if (err)
627 76b4ead2 2019-02-03 stsp goto done;
628 76b4ead2 2019-02-03 stsp }
629 199a4027 2019-02-02 stsp }
630 199a4027 2019-02-02 stsp }
631 199a4027 2019-02-02 stsp done:
632 a04f49d2 2019-02-04 stsp free(path_refs);
633 fb43ecf1 2019-02-11 stsp if (f && fclose(f) != 0 && err == NULL)
634 fb43ecf1 2019-02-11 stsp err = got_error_from_errno();
635 199a4027 2019-02-02 stsp return err;
636 199a4027 2019-02-02 stsp }