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 5261c201 2018-04-01 stsp fclose(f);
150 5261c201 2018-04-01 stsp return err;
151 5261c201 2018-04-01 stsp }
152 5261c201 2018-04-01 stsp
153 c5f754cc 2019-02-01 stsp static int
154 c5f754cc 2019-02-01 stsp is_well_known_ref(const char *refname)
155 5261c201 2018-04-01 stsp {
156 c5f754cc 2019-02-01 stsp return (strcmp(refname, GOT_REF_HEAD) == 0 ||
157 5261c201 2018-04-01 stsp strcmp(refname, GOT_REF_ORIG_HEAD) == 0 ||
158 5261c201 2018-04-01 stsp strcmp(refname, GOT_REF_MERGE_HEAD) == 0 ||
159 c5f754cc 2019-02-01 stsp strcmp(refname, GOT_REF_FETCH_HEAD) == 0);
160 c5f754cc 2019-02-01 stsp }
161 c5f754cc 2019-02-01 stsp
162 c5f754cc 2019-02-01 stsp static char *
163 c5f754cc 2019-02-01 stsp get_refs_dir_path(struct got_repository *repo, const char *refname)
164 c5f754cc 2019-02-01 stsp {
165 c5f754cc 2019-02-01 stsp if (is_well_known_ref(refname) || strncmp(refname, "refs/", 5) == 0)
166 6e9da951 2019-01-06 stsp return strdup(got_repo_get_path_git_dir(repo));
167 5261c201 2018-04-01 stsp
168 5261c201 2018-04-01 stsp return got_repo_get_path_refs(repo);
169 5261c201 2018-04-01 stsp }
170 5261c201 2018-04-01 stsp
171 d1f2edc9 2018-06-13 stsp static const struct got_error *
172 fb79db15 2019-02-01 stsp parse_packed_ref_line(struct got_reference **ref, const char *abs_refname,
173 fb79db15 2019-02-01 stsp const char *line)
174 fb79db15 2019-02-01 stsp {
175 fb79db15 2019-02-01 stsp uint8_t digest[SHA1_DIGEST_LENGTH];
176 fb79db15 2019-02-01 stsp char *name;
177 fb79db15 2019-02-01 stsp
178 fb79db15 2019-02-01 stsp *ref = NULL;
179 fb79db15 2019-02-01 stsp
180 532920c8 2019-02-01 stsp if (line[0] == '#' || line[0] == '^')
181 fb79db15 2019-02-01 stsp return NULL;
182 fb79db15 2019-02-01 stsp
183 fb79db15 2019-02-01 stsp if (!got_parse_sha1_digest(digest, line))
184 30c0868d 2019-02-03 stsp return got_error(GOT_ERR_BAD_REF_DATA);
185 fb79db15 2019-02-01 stsp
186 199a4027 2019-02-02 stsp if (abs_refname) {
187 199a4027 2019-02-02 stsp if (strcmp(line + SHA1_DIGEST_STRING_LENGTH, abs_refname) != 0)
188 199a4027 2019-02-02 stsp return NULL;
189 fb79db15 2019-02-01 stsp
190 199a4027 2019-02-02 stsp name = strdup(abs_refname);
191 199a4027 2019-02-02 stsp if (name == NULL)
192 199a4027 2019-02-02 stsp return got_error_from_errno();
193 199a4027 2019-02-02 stsp } else
194 199a4027 2019-02-02 stsp name = strdup(line + SHA1_DIGEST_STRING_LENGTH);
195 fb79db15 2019-02-01 stsp
196 fb79db15 2019-02-01 stsp *ref = calloc(1, sizeof(**ref));
197 fb79db15 2019-02-01 stsp if (*ref == NULL)
198 fb79db15 2019-02-01 stsp return got_error_from_errno();
199 fb79db15 2019-02-01 stsp (*ref)->ref.ref.name = name;;
200 fb79db15 2019-02-01 stsp memcpy(&(*ref)->ref.ref.sha1, digest, SHA1_DIGEST_LENGTH);
201 fb79db15 2019-02-01 stsp return NULL;
202 fb79db15 2019-02-01 stsp }
203 fb79db15 2019-02-01 stsp
204 fb79db15 2019-02-01 stsp static const struct got_error *
205 0dec1cc0 2019-02-01 stsp open_packed_ref(struct got_reference **ref, FILE *f, const char **subdirs,
206 0dec1cc0 2019-02-01 stsp int nsubdirs, const char *refname)
207 fb79db15 2019-02-01 stsp {
208 fb79db15 2019-02-01 stsp const struct got_error *err = NULL;
209 fb79db15 2019-02-01 stsp char *abs_refname;
210 fb79db15 2019-02-01 stsp char *line;
211 fb79db15 2019-02-01 stsp size_t len;
212 fb79db15 2019-02-01 stsp const char delim[3] = {'\0', '\0', '\0'};
213 0dec1cc0 2019-02-01 stsp int i, ref_is_absolute = (strncmp(refname, "refs/", 5) == 0);
214 fb79db15 2019-02-01 stsp
215 1e37702e 2019-02-04 stsp *ref = NULL;
216 1e37702e 2019-02-04 stsp
217 0dec1cc0 2019-02-01 stsp if (ref_is_absolute)
218 0dec1cc0 2019-02-01 stsp abs_refname = (char *)refname;
219 fb79db15 2019-02-01 stsp do {
220 fb79db15 2019-02-01 stsp line = fparseln(f, &len, NULL, delim, 0);
221 1e37702e 2019-02-04 stsp if (line == NULL)
222 fb79db15 2019-02-01 stsp break;
223 0dec1cc0 2019-02-01 stsp for (i = 0; i < nsubdirs; i++) {
224 0dec1cc0 2019-02-01 stsp if (!ref_is_absolute &&
225 0dec1cc0 2019-02-01 stsp asprintf(&abs_refname, "refs/%s/%s", subdirs[i],
226 0dec1cc0 2019-02-01 stsp refname) == -1)
227 0dec1cc0 2019-02-01 stsp return got_error_from_errno();
228 0dec1cc0 2019-02-01 stsp err = parse_packed_ref_line(ref, abs_refname, line);
229 0dec1cc0 2019-02-01 stsp if (!ref_is_absolute)
230 0dec1cc0 2019-02-01 stsp free(abs_refname);
231 532920c8 2019-02-01 stsp if (err || *ref != NULL)
232 0dec1cc0 2019-02-01 stsp break;
233 0dec1cc0 2019-02-01 stsp }
234 fb79db15 2019-02-01 stsp free(line);
235 fb79db15 2019-02-01 stsp if (err)
236 fb79db15 2019-02-01 stsp break;
237 fb79db15 2019-02-01 stsp } while (*ref == NULL);
238 fb79db15 2019-02-01 stsp
239 fb79db15 2019-02-01 stsp return err;
240 fb79db15 2019-02-01 stsp }
241 fb79db15 2019-02-01 stsp
242 fb79db15 2019-02-01 stsp static const struct got_error *
243 d1f2edc9 2018-06-13 stsp open_ref(struct got_reference **ref, const char *path_refs, const char *subdir,
244 a04f49d2 2019-02-04 stsp const char *name)
245 d1f2edc9 2018-06-13 stsp {
246 d1f2edc9 2018-06-13 stsp const struct got_error *err = NULL;
247 a04f49d2 2019-02-04 stsp char *path = NULL;
248 a04f49d2 2019-02-04 stsp char *normpath = NULL;
249 a04f49d2 2019-02-04 stsp char *absname = NULL;
250 a04f49d2 2019-02-04 stsp int ref_is_absolute = (strncmp(name, "refs/", 5) == 0);
251 a04f49d2 2019-02-04 stsp int ref_is_well_known = is_well_known_ref(name);
252 d1f2edc9 2018-06-13 stsp
253 1e37702e 2019-02-04 stsp *ref = NULL;
254 1e37702e 2019-02-04 stsp
255 a04f49d2 2019-02-04 stsp if (ref_is_absolute || ref_is_well_known) {
256 a04f49d2 2019-02-04 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1)
257 a04f49d2 2019-02-04 stsp return got_error_from_errno();
258 a04f49d2 2019-02-04 stsp absname = (char *)name;
259 a04f49d2 2019-02-04 stsp } else {
260 a04f49d2 2019-02-04 stsp if (asprintf(&path, "%s/%s/%s", path_refs, subdir, name) == -1)
261 a04f49d2 2019-02-04 stsp return got_error_from_errno();
262 d1f2edc9 2018-06-13 stsp
263 a04f49d2 2019-02-04 stsp if (asprintf(&absname, "refs/%s/%s", subdir, name) == -1) {
264 a04f49d2 2019-02-04 stsp err = got_error_from_errno();
265 a04f49d2 2019-02-04 stsp goto done;
266 a04f49d2 2019-02-04 stsp }
267 a04f49d2 2019-02-04 stsp }
268 a04f49d2 2019-02-04 stsp
269 a04f49d2 2019-02-04 stsp normpath = got_path_normalize(path);
270 d1f2edc9 2018-06-13 stsp if (normpath == NULL) {
271 30c0868d 2019-02-03 stsp err = got_error_from_errno();
272 d1f2edc9 2018-06-13 stsp goto done;
273 d1f2edc9 2018-06-13 stsp }
274 d1f2edc9 2018-06-13 stsp
275 a04f49d2 2019-02-04 stsp err = parse_ref_file(ref, absname, normpath);
276 d1f2edc9 2018-06-13 stsp done:
277 a04f49d2 2019-02-04 stsp if (!ref_is_absolute && !ref_is_well_known)
278 a04f49d2 2019-02-04 stsp free(absname);
279 a04f49d2 2019-02-04 stsp free(path);
280 d1f2edc9 2018-06-13 stsp free(normpath);
281 d1f2edc9 2018-06-13 stsp return err;
282 d1f2edc9 2018-06-13 stsp }
283 d1f2edc9 2018-06-13 stsp
284 5261c201 2018-04-01 stsp const struct got_error *
285 5261c201 2018-04-01 stsp got_ref_open(struct got_reference **ref, struct got_repository *repo,
286 5261c201 2018-04-01 stsp const char *refname)
287 5261c201 2018-04-01 stsp {
288 5261c201 2018-04-01 stsp const struct got_error *err = NULL;
289 c5f754cc 2019-02-01 stsp char *path_refs = NULL;
290 fb79db15 2019-02-01 stsp const char *subdirs[] = {
291 fb79db15 2019-02-01 stsp GOT_REF_HEADS, GOT_REF_TAGS, GOT_REF_REMOTES
292 fb79db15 2019-02-01 stsp };
293 c5f754cc 2019-02-01 stsp int i, well_known = is_well_known_ref(refname);
294 1e37702e 2019-02-04 stsp
295 1e37702e 2019-02-04 stsp *ref = NULL;
296 e135804e 2019-02-10 stsp
297 e135804e 2019-02-10 stsp path_refs = get_refs_dir_path(repo, refname);
298 e135804e 2019-02-10 stsp if (path_refs == NULL) {
299 e135804e 2019-02-10 stsp err = got_error_from_errno();
300 e135804e 2019-02-10 stsp goto done;
301 e135804e 2019-02-10 stsp }
302 5261c201 2018-04-01 stsp
303 c5f754cc 2019-02-01 stsp if (!well_known) {
304 c5f754cc 2019-02-01 stsp char *packed_refs_path;
305 c5f754cc 2019-02-01 stsp FILE *f;
306 c5f754cc 2019-02-01 stsp
307 e135804e 2019-02-10 stsp /* Search on-disk refs before packed refs! */
308 e135804e 2019-02-10 stsp for (i = 0; i < nitems(subdirs); i++) {
309 e135804e 2019-02-10 stsp err = open_ref(ref, path_refs, subdirs[i], refname);
310 e135804e 2019-02-10 stsp if (err || *ref)
311 e135804e 2019-02-10 stsp goto done;
312 e135804e 2019-02-10 stsp }
313 e135804e 2019-02-10 stsp
314 c5f754cc 2019-02-01 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
315 e135804e 2019-02-10 stsp if (packed_refs_path == NULL) {
316 e135804e 2019-02-10 stsp err = got_error_from_errno();
317 e135804e 2019-02-10 stsp goto done;
318 e135804e 2019-02-10 stsp }
319 c5f754cc 2019-02-01 stsp
320 c5f754cc 2019-02-01 stsp f = fopen(packed_refs_path, "rb");
321 c5f754cc 2019-02-01 stsp free(packed_refs_path);
322 c5f754cc 2019-02-01 stsp if (f != NULL) {
323 0dec1cc0 2019-02-01 stsp err = open_packed_ref(ref, f, subdirs, nitems(subdirs),
324 0dec1cc0 2019-02-01 stsp refname);
325 c5f754cc 2019-02-01 stsp fclose(f);
326 1e37702e 2019-02-04 stsp if (err || *ref)
327 0dec1cc0 2019-02-01 stsp goto done;
328 fb79db15 2019-02-01 stsp }
329 fb79db15 2019-02-01 stsp }
330 fb79db15 2019-02-01 stsp
331 fb79db15 2019-02-01 stsp err = open_ref(ref, path_refs, "", refname);
332 1e37702e 2019-02-04 stsp if (err)
333 1e37702e 2019-02-04 stsp goto done;
334 e135804e 2019-02-10 stsp done:
335 1e37702e 2019-02-04 stsp if (*ref == NULL)
336 1e37702e 2019-02-04 stsp err = got_error_not_ref(refname);
337 5261c201 2018-04-01 stsp free(path_refs);
338 5261c201 2018-04-01 stsp return err;
339 5261c201 2018-04-01 stsp }
340 5261c201 2018-04-01 stsp
341 5261c201 2018-04-01 stsp void
342 5261c201 2018-04-01 stsp got_ref_close(struct got_reference *ref)
343 5261c201 2018-04-01 stsp {
344 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
345 5261c201 2018-04-01 stsp free(ref->ref.symref.name);
346 5261c201 2018-04-01 stsp else
347 5261c201 2018-04-01 stsp free(ref->ref.ref.name);
348 5261c201 2018-04-01 stsp free(ref);
349 5261c201 2018-04-01 stsp }
350 5261c201 2018-04-01 stsp
351 5261c201 2018-04-01 stsp struct got_reference *
352 5261c201 2018-04-01 stsp got_ref_dup(struct got_reference *ref)
353 5261c201 2018-04-01 stsp {
354 5261c201 2018-04-01 stsp struct got_reference *ret;
355 5261c201 2018-04-01 stsp
356 5261c201 2018-04-01 stsp ret = calloc(1, sizeof(*ret));
357 5261c201 2018-04-01 stsp if (ret == NULL)
358 5261c201 2018-04-01 stsp return NULL;
359 5261c201 2018-04-01 stsp
360 5261c201 2018-04-01 stsp ret->flags = ref->flags;
361 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
362 5261c201 2018-04-01 stsp ret->ref.symref.name = strdup(ref->ref.symref.name);
363 5261c201 2018-04-01 stsp if (ret->ref.symref.name == NULL) {
364 5261c201 2018-04-01 stsp free(ret);
365 5261c201 2018-04-01 stsp return NULL;
366 5261c201 2018-04-01 stsp }
367 5261c201 2018-04-01 stsp ret->ref.symref.ref = strdup(ref->ref.symref.ref);
368 5261c201 2018-04-01 stsp if (ret->ref.symref.ref == NULL) {
369 5261c201 2018-04-01 stsp free(ret->ref.symref.name);
370 5261c201 2018-04-01 stsp free(ret);
371 5261c201 2018-04-01 stsp return NULL;
372 5261c201 2018-04-01 stsp }
373 5261c201 2018-04-01 stsp } else {
374 5261c201 2018-04-01 stsp ref->ref.ref.name = strdup(ref->ref.ref.name);
375 5261c201 2018-04-01 stsp if (ref->ref.ref.name == NULL) {
376 5261c201 2018-04-01 stsp free(ret);
377 5261c201 2018-04-01 stsp return NULL;
378 5261c201 2018-04-01 stsp }
379 5261c201 2018-04-01 stsp memcpy(ret->ref.ref.sha1, ref->ref.ref.sha1,
380 5261c201 2018-04-01 stsp SHA1_DIGEST_LENGTH);
381 5261c201 2018-04-01 stsp }
382 5261c201 2018-04-01 stsp
383 5261c201 2018-04-01 stsp return ret;
384 5261c201 2018-04-01 stsp }
385 5261c201 2018-04-01 stsp
386 5261c201 2018-04-01 stsp static const struct got_error *
387 5261c201 2018-04-01 stsp resolve_symbolic_ref(struct got_reference **resolved,
388 5261c201 2018-04-01 stsp struct got_repository *repo, struct got_reference *ref)
389 5261c201 2018-04-01 stsp {
390 5261c201 2018-04-01 stsp struct got_reference *nextref;
391 5261c201 2018-04-01 stsp const struct got_error *err;
392 5261c201 2018-04-01 stsp
393 5261c201 2018-04-01 stsp err = got_ref_open(&nextref, repo, ref->ref.symref.ref);
394 5261c201 2018-04-01 stsp if (err)
395 5261c201 2018-04-01 stsp return err;
396 5261c201 2018-04-01 stsp
397 5261c201 2018-04-01 stsp if (nextref->flags & GOT_REF_IS_SYMBOLIC)
398 5261c201 2018-04-01 stsp err = resolve_symbolic_ref(resolved, repo, nextref);
399 5261c201 2018-04-01 stsp else
400 5261c201 2018-04-01 stsp *resolved = got_ref_dup(nextref);
401 5261c201 2018-04-01 stsp
402 5261c201 2018-04-01 stsp got_ref_close(nextref);
403 5261c201 2018-04-01 stsp return err;
404 5261c201 2018-04-01 stsp }
405 5261c201 2018-04-01 stsp
406 5261c201 2018-04-01 stsp const struct got_error *
407 5261c201 2018-04-01 stsp got_ref_resolve(struct got_object_id **id, struct got_repository *repo,
408 5261c201 2018-04-01 stsp struct got_reference *ref)
409 5261c201 2018-04-01 stsp {
410 5261c201 2018-04-01 stsp const struct got_error *err;
411 5261c201 2018-04-01 stsp
412 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
413 5261c201 2018-04-01 stsp struct got_reference *resolved = NULL;
414 5261c201 2018-04-01 stsp err = resolve_symbolic_ref(&resolved, repo, ref);
415 5261c201 2018-04-01 stsp if (err == NULL)
416 5261c201 2018-04-01 stsp err = got_ref_resolve(id, repo, resolved);
417 5261c201 2018-04-01 stsp free(resolved);
418 5261c201 2018-04-01 stsp return err;
419 5261c201 2018-04-01 stsp }
420 5261c201 2018-04-01 stsp
421 5261c201 2018-04-01 stsp *id = calloc(1, sizeof(**id));
422 5261c201 2018-04-01 stsp if (*id == NULL)
423 5261c201 2018-04-01 stsp return got_error_from_errno();
424 5261c201 2018-04-01 stsp memcpy((*id)->sha1, ref->ref.ref.sha1, SHA1_DIGEST_LENGTH);
425 5261c201 2018-04-01 stsp return NULL;
426 5261c201 2018-04-01 stsp }
427 5261c201 2018-04-01 stsp
428 5261c201 2018-04-01 stsp char *
429 5261c201 2018-04-01 stsp got_ref_to_str(struct got_reference *ref)
430 5261c201 2018-04-01 stsp {
431 5261c201 2018-04-01 stsp char *str;
432 271d2a38 2018-12-25 stsp
433 271d2a38 2018-12-25 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
434 271d2a38 2018-12-25 stsp return strdup(ref->ref.symref.ref);
435 271d2a38 2018-12-25 stsp
436 271d2a38 2018-12-25 stsp str = malloc(SHA1_DIGEST_STRING_LENGTH);
437 271d2a38 2018-12-25 stsp if (str == NULL)
438 271d2a38 2018-12-25 stsp return NULL;
439 271d2a38 2018-12-25 stsp
440 271d2a38 2018-12-25 stsp if (got_sha1_digest_to_str(ref->ref.ref.sha1, str,
441 271d2a38 2018-12-25 stsp SHA1_DIGEST_STRING_LENGTH) == NULL) {
442 271d2a38 2018-12-25 stsp free(str);
443 271d2a38 2018-12-25 stsp return NULL;
444 5261c201 2018-04-01 stsp }
445 5261c201 2018-04-01 stsp
446 5261c201 2018-04-01 stsp return str;
447 5261c201 2018-04-01 stsp }
448 0bd18d37 2019-02-01 stsp
449 0bd18d37 2019-02-01 stsp const char *
450 0bd18d37 2019-02-01 stsp got_ref_get_name(struct got_reference *ref)
451 0bd18d37 2019-02-01 stsp {
452 0bd18d37 2019-02-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
453 0bd18d37 2019-02-01 stsp return ref->ref.symref.name;
454 0bd18d37 2019-02-01 stsp
455 0bd18d37 2019-02-01 stsp return ref->ref.ref.name;
456 199a4027 2019-02-02 stsp }
457 199a4027 2019-02-02 stsp
458 199a4027 2019-02-02 stsp static const struct got_error *
459 29b5c214 2019-02-04 stsp insert_ref(struct got_reflist_head *refs, struct got_reference *ref,
460 199a4027 2019-02-02 stsp struct got_repository *repo)
461 199a4027 2019-02-02 stsp {
462 199a4027 2019-02-02 stsp const struct got_error *err;
463 199a4027 2019-02-02 stsp struct got_object_id *id;
464 7a3c76f5 2019-02-05 stsp struct got_reflist_entry *new, *re, *prev;
465 e397b6db 2019-02-04 stsp int cmp;
466 7a3c76f5 2019-02-05 stsp
467 7a3c76f5 2019-02-05 stsp err = got_ref_resolve(&id, repo, ref);
468 7a3c76f5 2019-02-05 stsp if (err)
469 7a3c76f5 2019-02-05 stsp return err;
470 29b5c214 2019-02-04 stsp
471 7a3c76f5 2019-02-05 stsp new = malloc(sizeof(*re));
472 7a3c76f5 2019-02-05 stsp if (new == NULL) {
473 7a3c76f5 2019-02-05 stsp free(id);
474 7a3c76f5 2019-02-05 stsp return got_error_from_errno();
475 7a3c76f5 2019-02-05 stsp }
476 7a3c76f5 2019-02-05 stsp new->ref = ref;
477 7a3c76f5 2019-02-05 stsp new->id = id;
478 7a3c76f5 2019-02-05 stsp
479 29b5c214 2019-02-04 stsp /*
480 29b5c214 2019-02-04 stsp * We must de-duplicate entries on insert because packed-refs may
481 29b5c214 2019-02-04 stsp * contain redundant entries. On-disk refs take precedence.
482 29b5c214 2019-02-04 stsp * This code assumes that on-disk revs are read before packed-refs.
483 e397b6db 2019-02-04 stsp * We're iterating the list anyway, so insert elements sorted by name.
484 29b5c214 2019-02-04 stsp */
485 7a3c76f5 2019-02-05 stsp re = SIMPLEQ_FIRST(refs);
486 7a3c76f5 2019-02-05 stsp while (re) {
487 7a3c76f5 2019-02-05 stsp cmp = got_path_cmp(got_ref_get_name(re->ref),
488 7a3c76f5 2019-02-05 stsp got_ref_get_name(ref));
489 e397b6db 2019-02-04 stsp if (cmp == 0) {
490 7a3c76f5 2019-02-05 stsp free(ref); /* duplicate */
491 7a3c76f5 2019-02-05 stsp return NULL;
492 7a3c76f5 2019-02-05 stsp } else if (cmp > 0) {
493 7a3c76f5 2019-02-05 stsp if (prev)
494 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_AFTER(refs, prev, new, entry);
495 7a3c76f5 2019-02-05 stsp else
496 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_HEAD(refs, new, entry);
497 7a3c76f5 2019-02-05 stsp return NULL;
498 7a3c76f5 2019-02-05 stsp } else {
499 e397b6db 2019-02-04 stsp prev = re;
500 7a3c76f5 2019-02-05 stsp re = SIMPLEQ_NEXT(re, entry);
501 7a3c76f5 2019-02-05 stsp }
502 29b5c214 2019-02-04 stsp }
503 199a4027 2019-02-02 stsp
504 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_TAIL(refs, new, entry);
505 199a4027 2019-02-02 stsp return NULL;
506 0bd18d37 2019-02-01 stsp }
507 199a4027 2019-02-02 stsp
508 a04f49d2 2019-02-04 stsp static const struct got_error *
509 29b5c214 2019-02-04 stsp gather_on_disk_refs(struct got_reflist_head *refs, const char *path_refs,
510 a04f49d2 2019-02-04 stsp const char *subdir, struct got_repository *repo)
511 a04f49d2 2019-02-04 stsp {
512 a04f49d2 2019-02-04 stsp const struct got_error *err = NULL;
513 a04f49d2 2019-02-04 stsp DIR *d = NULL;
514 a04f49d2 2019-02-04 stsp char *path_subdir;
515 a04f49d2 2019-02-04 stsp
516 a04f49d2 2019-02-04 stsp if (asprintf(&path_subdir, "%s/%s", path_refs, subdir) == -1)
517 a04f49d2 2019-02-04 stsp return got_error_from_errno();
518 a04f49d2 2019-02-04 stsp
519 a04f49d2 2019-02-04 stsp d = opendir(path_subdir);
520 a04f49d2 2019-02-04 stsp if (d == NULL)
521 a04f49d2 2019-02-04 stsp goto done;
522 a04f49d2 2019-02-04 stsp
523 a04f49d2 2019-02-04 stsp while (1) {
524 a04f49d2 2019-02-04 stsp struct dirent *dent;
525 a04f49d2 2019-02-04 stsp struct got_reference *ref;
526 a04f49d2 2019-02-04 stsp char *child;
527 a04f49d2 2019-02-04 stsp
528 a04f49d2 2019-02-04 stsp dent = readdir(d);
529 a04f49d2 2019-02-04 stsp if (dent == NULL)
530 a04f49d2 2019-02-04 stsp break;
531 a04f49d2 2019-02-04 stsp
532 a04f49d2 2019-02-04 stsp if (strcmp(dent->d_name, ".") == 0 ||
533 a04f49d2 2019-02-04 stsp strcmp(dent->d_name, "..") == 0)
534 a04f49d2 2019-02-04 stsp continue;
535 a04f49d2 2019-02-04 stsp
536 a04f49d2 2019-02-04 stsp switch (dent->d_type) {
537 a04f49d2 2019-02-04 stsp case DT_REG:
538 a04f49d2 2019-02-04 stsp err = open_ref(&ref, path_refs, subdir, dent->d_name);
539 1e37702e 2019-02-04 stsp if (err)
540 a04f49d2 2019-02-04 stsp goto done;
541 a04f49d2 2019-02-04 stsp if (ref) {
542 29b5c214 2019-02-04 stsp err = insert_ref(refs, ref, repo);
543 a04f49d2 2019-02-04 stsp if (err)
544 a04f49d2 2019-02-04 stsp goto done;
545 a04f49d2 2019-02-04 stsp }
546 a04f49d2 2019-02-04 stsp break;
547 a04f49d2 2019-02-04 stsp case DT_DIR:
548 a04f49d2 2019-02-04 stsp if (asprintf(&child, "%s%s%s", subdir,
549 a04f49d2 2019-02-04 stsp subdir[0] == '\0' ? "" : "/", dent->d_name) == -1) {
550 a04f49d2 2019-02-04 stsp err = got_error_from_errno();
551 a04f49d2 2019-02-04 stsp break;
552 a04f49d2 2019-02-04 stsp }
553 29b5c214 2019-02-04 stsp err = gather_on_disk_refs(refs, path_refs, child, repo);
554 a04f49d2 2019-02-04 stsp free(child);
555 a04f49d2 2019-02-04 stsp break;
556 a04f49d2 2019-02-04 stsp default:
557 a04f49d2 2019-02-04 stsp break;
558 a04f49d2 2019-02-04 stsp }
559 a04f49d2 2019-02-04 stsp }
560 a04f49d2 2019-02-04 stsp done:
561 a04f49d2 2019-02-04 stsp if (d)
562 a04f49d2 2019-02-04 stsp closedir(d);
563 a04f49d2 2019-02-04 stsp free(path_subdir);
564 a04f49d2 2019-02-04 stsp return err;
565 a04f49d2 2019-02-04 stsp }
566 a04f49d2 2019-02-04 stsp
567 199a4027 2019-02-02 stsp const struct got_error *
568 199a4027 2019-02-02 stsp got_ref_list(struct got_reflist_head *refs, struct got_repository *repo)
569 199a4027 2019-02-02 stsp {
570 199a4027 2019-02-02 stsp const struct got_error *err;
571 a04f49d2 2019-02-04 stsp char *packed_refs_path, *path_refs = NULL;
572 29b5c214 2019-02-04 stsp FILE *f = NULL;
573 199a4027 2019-02-02 stsp struct got_reference *ref;
574 199a4027 2019-02-02 stsp
575 29b5c214 2019-02-04 stsp /* HEAD ref should always exist. */
576 29b5c214 2019-02-04 stsp path_refs = get_refs_dir_path(repo, GOT_REF_HEAD);
577 29b5c214 2019-02-04 stsp if (path_refs == NULL) {
578 29b5c214 2019-02-04 stsp err = got_error_from_errno();
579 29b5c214 2019-02-04 stsp goto done;
580 29b5c214 2019-02-04 stsp }
581 29b5c214 2019-02-04 stsp err = open_ref(&ref, path_refs, "", GOT_REF_HEAD);
582 29b5c214 2019-02-04 stsp if (err)
583 29b5c214 2019-02-04 stsp goto done;
584 29b5c214 2019-02-04 stsp err = insert_ref(refs, ref, repo);
585 29b5c214 2019-02-04 stsp if (err)
586 29b5c214 2019-02-04 stsp goto done;
587 29b5c214 2019-02-04 stsp
588 29b5c214 2019-02-04 stsp /* Gather on-disk refs before parsing packed-refs. */
589 29b5c214 2019-02-04 stsp free(path_refs);
590 29b5c214 2019-02-04 stsp path_refs = get_refs_dir_path(repo, "");
591 29b5c214 2019-02-04 stsp if (path_refs == NULL) {
592 29b5c214 2019-02-04 stsp err = got_error_from_errno();
593 29b5c214 2019-02-04 stsp goto done;
594 29b5c214 2019-02-04 stsp }
595 29b5c214 2019-02-04 stsp err = gather_on_disk_refs(refs, path_refs, "", repo);
596 29b5c214 2019-02-04 stsp if (err)
597 29b5c214 2019-02-04 stsp goto done;
598 29b5c214 2019-02-04 stsp
599 29b5c214 2019-02-04 stsp /*
600 29b5c214 2019-02-04 stsp * The packed-refs file may contain redundant entries, in which
601 29b5c214 2019-02-04 stsp * case on-disk refs take precedence.
602 29b5c214 2019-02-04 stsp */
603 199a4027 2019-02-02 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
604 29b5c214 2019-02-04 stsp if (packed_refs_path == NULL) {
605 29b5c214 2019-02-04 stsp err = got_error_from_errno();
606 29b5c214 2019-02-04 stsp goto done;
607 29b5c214 2019-02-04 stsp }
608 199a4027 2019-02-02 stsp
609 199a4027 2019-02-02 stsp f = fopen(packed_refs_path, "r");
610 199a4027 2019-02-02 stsp free(packed_refs_path);
611 199a4027 2019-02-02 stsp if (f) {
612 199a4027 2019-02-02 stsp char *line;
613 199a4027 2019-02-02 stsp size_t len;
614 199a4027 2019-02-02 stsp const char delim[3] = {'\0', '\0', '\0'};
615 199a4027 2019-02-02 stsp while (1) {
616 199a4027 2019-02-02 stsp line = fparseln(f, &len, NULL, delim, 0);
617 199a4027 2019-02-02 stsp if (line == NULL)
618 199a4027 2019-02-02 stsp break;
619 199a4027 2019-02-02 stsp err = parse_packed_ref_line(&ref, NULL, line);
620 199a4027 2019-02-02 stsp if (err)
621 199a4027 2019-02-02 stsp goto done;
622 76b4ead2 2019-02-03 stsp if (ref) {
623 29b5c214 2019-02-04 stsp err = insert_ref(refs, ref, repo);
624 76b4ead2 2019-02-03 stsp if (err)
625 76b4ead2 2019-02-03 stsp goto done;
626 76b4ead2 2019-02-03 stsp }
627 199a4027 2019-02-02 stsp }
628 199a4027 2019-02-02 stsp }
629 199a4027 2019-02-02 stsp done:
630 a04f49d2 2019-02-04 stsp free(path_refs);
631 199a4027 2019-02-02 stsp if (f)
632 199a4027 2019-02-02 stsp fclose(f);
633 199a4027 2019-02-02 stsp return err;
634 199a4027 2019-02-02 stsp }