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 9e672c74 2019-03-11 stsp #include <sys/stat.h>
20 5261c201 2018-04-01 stsp
21 0fd469ce 2019-03-11 stsp #include <errno.h>
22 f77a24b0 2019-03-11 stsp #include <ctype.h>
23 a04f49d2 2019-02-04 stsp #include <dirent.h>
24 5261c201 2018-04-01 stsp #include <sha1.h>
25 5261c201 2018-04-01 stsp #include <stdio.h>
26 5261c201 2018-04-01 stsp #include <stdlib.h>
27 5261c201 2018-04-01 stsp #include <string.h>
28 5261c201 2018-04-01 stsp #include <util.h>
29 5261c201 2018-04-01 stsp #include <zlib.h>
30 788c352e 2018-06-16 stsp #include <time.h>
31 0cd1c46a 2019-03-11 stsp #include <libgen.h>
32 5261c201 2018-04-01 stsp
33 5261c201 2018-04-01 stsp #include "got_error.h"
34 5261c201 2018-04-01 stsp #include "got_object.h"
35 5261c201 2018-04-01 stsp #include "got_repository.h"
36 5261c201 2018-04-01 stsp #include "got_reference.h"
37 9e672c74 2019-03-11 stsp #include "got_opentemp.h"
38 324d37e7 2019-05-11 stsp #include "got_path.h"
39 5261c201 2018-04-01 stsp
40 5261c201 2018-04-01 stsp #include "got_lib_sha1.h"
41 5261c201 2018-04-01 stsp #include "got_lib_delta.h"
42 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
43 5261c201 2018-04-01 stsp #include "got_lib_object.h"
44 f77a24b0 2019-03-11 stsp #include "got_lib_lockfile.h"
45 5261c201 2018-04-01 stsp
46 fb79db15 2019-02-01 stsp #ifndef nitems
47 fb79db15 2019-02-01 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
48 fb79db15 2019-02-01 stsp #endif
49 fb79db15 2019-02-01 stsp
50 d1f2edc9 2018-06-13 stsp #define GOT_REF_HEADS "heads"
51 d1f2edc9 2018-06-13 stsp #define GOT_REF_TAGS "tags"
52 d1f2edc9 2018-06-13 stsp #define GOT_REF_REMOTES "remotes"
53 d1f2edc9 2018-06-13 stsp
54 598a8b91 2019-03-15 stsp /*
55 598a8b91 2019-03-15 stsp * We do not resolve tags yet, and don't yet care about sorting refs either,
56 598a8b91 2019-03-15 stsp * so packed-refs files we write contain a minimal header which disables all
57 598a8b91 2019-03-15 stsp * packed-refs "traits" supported by Git.
58 598a8b91 2019-03-15 stsp */
59 598a8b91 2019-03-15 stsp #define GOT_PACKED_REFS_HEADER "# pack-refs with:"
60 598a8b91 2019-03-15 stsp
61 5261c201 2018-04-01 stsp /* A symbolic reference. */
62 5261c201 2018-04-01 stsp struct got_symref {
63 5261c201 2018-04-01 stsp char *name;
64 5261c201 2018-04-01 stsp char *ref;
65 5261c201 2018-04-01 stsp };
66 29e86f7a 2019-08-12 stsp
67 29e86f7a 2019-08-12 stsp #define GOT_REF_RECURSE_MAX 20
68 5261c201 2018-04-01 stsp
69 5261c201 2018-04-01 stsp /* A non-symbolic reference (there is no better designation). */
70 5261c201 2018-04-01 stsp struct got_ref {
71 5261c201 2018-04-01 stsp char *name;
72 5261c201 2018-04-01 stsp u_int8_t sha1[SHA1_DIGEST_LENGTH];
73 5261c201 2018-04-01 stsp };
74 5261c201 2018-04-01 stsp
75 5261c201 2018-04-01 stsp /* A reference which points to an arbitrary object. */
76 5261c201 2018-04-01 stsp struct got_reference {
77 5261c201 2018-04-01 stsp unsigned int flags;
78 5261c201 2018-04-01 stsp #define GOT_REF_IS_SYMBOLIC 0x01
79 f9267c9a 2019-03-15 stsp #define GOT_REF_IS_PACKED 0x02
80 5261c201 2018-04-01 stsp
81 5261c201 2018-04-01 stsp union {
82 5261c201 2018-04-01 stsp struct got_ref ref;
83 5261c201 2018-04-01 stsp struct got_symref symref;
84 5261c201 2018-04-01 stsp } ref;
85 2f17228e 2019-05-12 stsp
86 2f17228e 2019-05-12 stsp struct got_lockfile *lf;
87 5261c201 2018-04-01 stsp };
88 5261c201 2018-04-01 stsp
89 5261c201 2018-04-01 stsp static const struct got_error *
90 f9267c9a 2019-03-15 stsp alloc_ref(struct got_reference **ref, const char *name,
91 f9267c9a 2019-03-15 stsp struct got_object_id *id, int flags)
92 5261c201 2018-04-01 stsp {
93 f9267c9a 2019-03-15 stsp const struct got_error *err = NULL;
94 5261c201 2018-04-01 stsp
95 f9267c9a 2019-03-15 stsp *ref = calloc(1, sizeof(**ref));
96 f9267c9a 2019-03-15 stsp if (*ref == NULL)
97 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
98 f9267c9a 2019-03-15 stsp
99 80d5fc1f 2019-03-15 stsp memcpy((*ref)->ref.ref.sha1, id->sha1, sizeof((*ref)->ref.ref.sha1));
100 c980e470 2019-03-15 stsp (*ref)->flags = flags;
101 f9267c9a 2019-03-15 stsp (*ref)->ref.ref.name = strdup(name);
102 f9267c9a 2019-03-15 stsp if ((*ref)->ref.ref.name == NULL) {
103 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
104 c980e470 2019-03-15 stsp got_ref_close(*ref);
105 f9267c9a 2019-03-15 stsp *ref = NULL;
106 5261c201 2018-04-01 stsp }
107 f9267c9a 2019-03-15 stsp return err;
108 f9267c9a 2019-03-15 stsp }
109 5261c201 2018-04-01 stsp
110 f9267c9a 2019-03-15 stsp static const struct got_error *
111 f9267c9a 2019-03-15 stsp alloc_symref(struct got_reference **ref, const char *name,
112 f9267c9a 2019-03-15 stsp const char *target_ref, int flags)
113 f9267c9a 2019-03-15 stsp {
114 f9267c9a 2019-03-15 stsp const struct got_error *err = NULL;
115 f9267c9a 2019-03-15 stsp
116 5261c201 2018-04-01 stsp *ref = calloc(1, sizeof(**ref));
117 5261c201 2018-04-01 stsp if (*ref == NULL)
118 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
119 f9267c9a 2019-03-15 stsp
120 f9267c9a 2019-03-15 stsp (*ref)->flags = GOT_REF_IS_SYMBOLIC | flags;
121 f9267c9a 2019-03-15 stsp (*ref)->ref.symref.name = strdup(name);
122 f9267c9a 2019-03-15 stsp if ((*ref)->ref.symref.name == NULL) {
123 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
124 f9267c9a 2019-03-15 stsp got_ref_close(*ref);
125 f9267c9a 2019-03-15 stsp *ref = NULL;
126 f9267c9a 2019-03-15 stsp }
127 f9267c9a 2019-03-15 stsp (*ref)->ref.symref.ref = strdup(target_ref);
128 f9267c9a 2019-03-15 stsp if ((*ref)->ref.symref.ref == NULL) {
129 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
130 f9267c9a 2019-03-15 stsp got_ref_close(*ref);
131 f9267c9a 2019-03-15 stsp *ref = NULL;
132 f9267c9a 2019-03-15 stsp }
133 f9267c9a 2019-03-15 stsp return err;
134 5261c201 2018-04-01 stsp }
135 5261c201 2018-04-01 stsp
136 5261c201 2018-04-01 stsp static const struct got_error *
137 f9267c9a 2019-03-15 stsp parse_symref(struct got_reference **ref, const char *name, const char *line)
138 f9267c9a 2019-03-15 stsp {
139 f9267c9a 2019-03-15 stsp if (line[0] == '\0')
140 f9267c9a 2019-03-15 stsp return got_error(GOT_ERR_BAD_REF_DATA);
141 f9267c9a 2019-03-15 stsp
142 f9267c9a 2019-03-15 stsp return alloc_symref(ref, name, line, 0);
143 f9267c9a 2019-03-15 stsp }
144 f9267c9a 2019-03-15 stsp
145 f9267c9a 2019-03-15 stsp static const struct got_error *
146 5261c201 2018-04-01 stsp parse_ref_line(struct got_reference **ref, const char *name, const char *line)
147 5261c201 2018-04-01 stsp {
148 5892cdd6 2019-03-10 stsp struct got_object_id id;
149 5261c201 2018-04-01 stsp
150 5261c201 2018-04-01 stsp if (strncmp(line, "ref: ", 5) == 0) {
151 5261c201 2018-04-01 stsp line += 5;
152 5261c201 2018-04-01 stsp return parse_symref(ref, name, line);
153 5261c201 2018-04-01 stsp }
154 5261c201 2018-04-01 stsp
155 5892cdd6 2019-03-10 stsp if (!got_parse_sha1_digest(id.sha1, line))
156 30c0868d 2019-02-03 stsp return got_error(GOT_ERR_BAD_REF_DATA);
157 5261c201 2018-04-01 stsp
158 f9267c9a 2019-03-15 stsp return alloc_ref(ref, name, &id, 0);
159 5261c201 2018-04-01 stsp }
160 5261c201 2018-04-01 stsp
161 5261c201 2018-04-01 stsp static const struct got_error *
162 5261c201 2018-04-01 stsp parse_ref_file(struct got_reference **ref, const char *name,
163 2f17228e 2019-05-12 stsp const char *abspath, int lock)
164 5261c201 2018-04-01 stsp {
165 5261c201 2018-04-01 stsp const struct got_error *err = NULL;
166 c0a1c016 2019-03-15 stsp FILE *f;
167 5261c201 2018-04-01 stsp char *line;
168 5261c201 2018-04-01 stsp size_t len;
169 5261c201 2018-04-01 stsp const char delim[3] = {'\0', '\0', '\0'};
170 2f17228e 2019-05-12 stsp struct got_lockfile *lf = NULL;
171 5261c201 2018-04-01 stsp
172 2f17228e 2019-05-12 stsp if (lock) {
173 2f17228e 2019-05-12 stsp err = got_lockfile_lock(&lf, abspath);
174 2f17228e 2019-05-12 stsp if (err)
175 2f17228e 2019-05-12 stsp return (err);
176 2f17228e 2019-05-12 stsp }
177 2f17228e 2019-05-12 stsp
178 c0a1c016 2019-03-15 stsp f = fopen(abspath, "rb");
179 f5c58ad1 2019-05-12 stsp if (f == NULL) {
180 f5c58ad1 2019-05-12 stsp if (lock)
181 f5c58ad1 2019-05-12 stsp got_lockfile_unlock(lf);
182 1e37702e 2019-02-04 stsp return NULL;
183 f5c58ad1 2019-05-12 stsp }
184 5261c201 2018-04-01 stsp
185 5261c201 2018-04-01 stsp line = fparseln(f, &len, NULL, delim, 0);
186 5261c201 2018-04-01 stsp if (line == NULL) {
187 30c0868d 2019-02-03 stsp err = got_error(GOT_ERR_BAD_REF_DATA);
188 f5c58ad1 2019-05-12 stsp if (lock)
189 f5c58ad1 2019-05-12 stsp got_lockfile_unlock(lf);
190 5261c201 2018-04-01 stsp goto done;
191 5261c201 2018-04-01 stsp }
192 5261c201 2018-04-01 stsp
193 5261c201 2018-04-01 stsp err = parse_ref_line(ref, name, line);
194 f5c58ad1 2019-05-12 stsp if (lock) {
195 f5c58ad1 2019-05-12 stsp if (err)
196 f5c58ad1 2019-05-12 stsp got_lockfile_unlock(lf);
197 f5c58ad1 2019-05-12 stsp else {
198 f5c58ad1 2019-05-12 stsp if (*ref)
199 f5c58ad1 2019-05-12 stsp (*ref)->lf = lf;
200 f5c58ad1 2019-05-12 stsp else
201 f5c58ad1 2019-05-12 stsp got_lockfile_unlock(lf);
202 f5c58ad1 2019-05-12 stsp }
203 f5c58ad1 2019-05-12 stsp }
204 5261c201 2018-04-01 stsp done:
205 5261c201 2018-04-01 stsp free(line);
206 2f17228e 2019-05-12 stsp if (fclose(f) != 0 && err == NULL) {
207 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
208 2f17228e 2019-05-12 stsp if (*ref) {
209 f5c58ad1 2019-05-12 stsp if (lock)
210 f5c58ad1 2019-05-12 stsp got_ref_unlock(*ref);
211 2f17228e 2019-05-12 stsp got_ref_close(*ref);
212 2f17228e 2019-05-12 stsp *ref = NULL;
213 2f17228e 2019-05-12 stsp }
214 2f17228e 2019-05-12 stsp }
215 5261c201 2018-04-01 stsp return err;
216 5261c201 2018-04-01 stsp }
217 5261c201 2018-04-01 stsp
218 c5f754cc 2019-02-01 stsp static int
219 c5f754cc 2019-02-01 stsp is_well_known_ref(const char *refname)
220 5261c201 2018-04-01 stsp {
221 c5f754cc 2019-02-01 stsp return (strcmp(refname, GOT_REF_HEAD) == 0 ||
222 5261c201 2018-04-01 stsp strcmp(refname, GOT_REF_ORIG_HEAD) == 0 ||
223 5261c201 2018-04-01 stsp strcmp(refname, GOT_REF_MERGE_HEAD) == 0 ||
224 c5f754cc 2019-02-01 stsp strcmp(refname, GOT_REF_FETCH_HEAD) == 0);
225 c5f754cc 2019-02-01 stsp }
226 c5f754cc 2019-02-01 stsp
227 c5f754cc 2019-02-01 stsp static char *
228 c5f754cc 2019-02-01 stsp get_refs_dir_path(struct got_repository *repo, const char *refname)
229 c5f754cc 2019-02-01 stsp {
230 c5f754cc 2019-02-01 stsp if (is_well_known_ref(refname) || strncmp(refname, "refs/", 5) == 0)
231 6e9da951 2019-01-06 stsp return strdup(got_repo_get_path_git_dir(repo));
232 5261c201 2018-04-01 stsp
233 5261c201 2018-04-01 stsp return got_repo_get_path_refs(repo);
234 f77a24b0 2019-03-11 stsp }
235 f77a24b0 2019-03-11 stsp
236 f77a24b0 2019-03-11 stsp static int
237 f77a24b0 2019-03-11 stsp is_valid_ref_name(const char *name)
238 f77a24b0 2019-03-11 stsp {
239 f77a24b0 2019-03-11 stsp const char *s, *slash, *seg;
240 f77a24b0 2019-03-11 stsp const char forbidden[] = { ' ', '~', '^', ':', '?', '*', '[' , '\\' };
241 f77a24b0 2019-03-11 stsp const char *forbidden_seq[] = { "//", "..", "@{" };
242 f77a24b0 2019-03-11 stsp const char *lfs = GOT_LOCKFILE_SUFFIX;
243 f77a24b0 2019-03-11 stsp const size_t lfs_len = sizeof(GOT_LOCKFILE_SUFFIX) - 1;
244 f77a24b0 2019-03-11 stsp int i;
245 f77a24b0 2019-03-11 stsp
246 f77a24b0 2019-03-11 stsp if (name[0] == '@' && name[1] == '\0')
247 f77a24b0 2019-03-11 stsp return 0;
248 f77a24b0 2019-03-11 stsp
249 f77a24b0 2019-03-11 stsp slash = strchr(name, '/');
250 f77a24b0 2019-03-11 stsp if (slash == NULL)
251 f77a24b0 2019-03-11 stsp return 0;
252 f77a24b0 2019-03-11 stsp
253 f77a24b0 2019-03-11 stsp s = name;
254 f77a24b0 2019-03-11 stsp seg = s;
255 f77a24b0 2019-03-11 stsp if (seg[0] == '\0' || seg[0] == '.' || seg[0] == '/')
256 f77a24b0 2019-03-11 stsp return 0;
257 f77a24b0 2019-03-11 stsp while (*s) {
258 f77a24b0 2019-03-11 stsp for (i = 0; i < nitems(forbidden); i++) {
259 f77a24b0 2019-03-11 stsp if (*s == forbidden[i])
260 f77a24b0 2019-03-11 stsp return 0;
261 f77a24b0 2019-03-11 stsp }
262 f77a24b0 2019-03-11 stsp for (i = 0; i < nitems(forbidden_seq); i++) {
263 f77a24b0 2019-03-11 stsp if (s[0] == forbidden_seq[i][0] &&
264 f77a24b0 2019-03-11 stsp s[1] == forbidden_seq[i][1])
265 f77a24b0 2019-03-11 stsp return 0;
266 f77a24b0 2019-03-11 stsp }
267 f77a24b0 2019-03-11 stsp if (iscntrl((unsigned char)s[0]))
268 f77a24b0 2019-03-11 stsp return 0;
269 f77a24b0 2019-03-11 stsp if (s[0] == '.' && s[1] == '\0')
270 f77a24b0 2019-03-11 stsp return 0;
271 f77a24b0 2019-03-11 stsp if (*s == '/') {
272 f77a24b0 2019-03-11 stsp const char *nextseg = s + 1;
273 f77a24b0 2019-03-11 stsp if (nextseg[0] == '\0' || nextseg[0] == '.' ||
274 f77a24b0 2019-03-11 stsp nextseg[0] == '/')
275 f77a24b0 2019-03-11 stsp return 0;
276 f77a24b0 2019-03-11 stsp if (seg <= s - lfs_len &&
277 f77a24b0 2019-03-11 stsp strncmp(s - lfs_len, lfs, lfs_len) == 0)
278 f77a24b0 2019-03-11 stsp return 0;
279 f77a24b0 2019-03-11 stsp seg = nextseg;
280 f77a24b0 2019-03-11 stsp }
281 f77a24b0 2019-03-11 stsp s++;
282 f77a24b0 2019-03-11 stsp }
283 f77a24b0 2019-03-11 stsp
284 f77a24b0 2019-03-11 stsp if (seg <= s - lfs_len &&
285 f77a24b0 2019-03-11 stsp strncmp(s - lfs_len, lfs, lfs_len) == 0)
286 f77a24b0 2019-03-11 stsp return 0;
287 f77a24b0 2019-03-11 stsp
288 f77a24b0 2019-03-11 stsp return 1;
289 5892cdd6 2019-03-10 stsp }
290 5892cdd6 2019-03-10 stsp
291 5892cdd6 2019-03-10 stsp const struct got_error *
292 5892cdd6 2019-03-10 stsp got_ref_alloc(struct got_reference **ref, const char *name,
293 5892cdd6 2019-03-10 stsp struct got_object_id *id)
294 5892cdd6 2019-03-10 stsp {
295 0f148cb7 2019-05-13 stsp if (!is_valid_ref_name(name))
296 0f148cb7 2019-05-13 stsp return got_error(GOT_ERR_BAD_REF_NAME);
297 f77a24b0 2019-03-11 stsp
298 0f148cb7 2019-05-13 stsp return alloc_ref(ref, name, id, 0);
299 aaf88317 2019-07-10 stsp }
300 aaf88317 2019-07-10 stsp
301 aaf88317 2019-07-10 stsp const struct got_error *
302 aaf88317 2019-07-10 stsp got_ref_alloc_symref(struct got_reference **ref, const char *name,
303 aaf88317 2019-07-10 stsp struct got_reference *target_ref)
304 aaf88317 2019-07-10 stsp {
305 aaf88317 2019-07-10 stsp if (!is_valid_ref_name(name))
306 aaf88317 2019-07-10 stsp return got_error(GOT_ERR_BAD_REF_NAME);
307 aaf88317 2019-07-10 stsp
308 aaf88317 2019-07-10 stsp return alloc_symref(ref, name, got_ref_get_name(target_ref), 0);
309 5261c201 2018-04-01 stsp }
310 5261c201 2018-04-01 stsp
311 d1f2edc9 2018-06-13 stsp static const struct got_error *
312 fb79db15 2019-02-01 stsp parse_packed_ref_line(struct got_reference **ref, const char *abs_refname,
313 fb79db15 2019-02-01 stsp const char *line)
314 fb79db15 2019-02-01 stsp {
315 5892cdd6 2019-03-10 stsp struct got_object_id id;
316 5892cdd6 2019-03-10 stsp const char *name;
317 fb79db15 2019-02-01 stsp
318 fb79db15 2019-02-01 stsp *ref = NULL;
319 fb79db15 2019-02-01 stsp
320 532920c8 2019-02-01 stsp if (line[0] == '#' || line[0] == '^')
321 fb79db15 2019-02-01 stsp return NULL;
322 fb79db15 2019-02-01 stsp
323 5892cdd6 2019-03-10 stsp if (!got_parse_sha1_digest(id.sha1, line))
324 30c0868d 2019-02-03 stsp return got_error(GOT_ERR_BAD_REF_DATA);
325 fb79db15 2019-02-01 stsp
326 199a4027 2019-02-02 stsp if (abs_refname) {
327 199a4027 2019-02-02 stsp if (strcmp(line + SHA1_DIGEST_STRING_LENGTH, abs_refname) != 0)
328 199a4027 2019-02-02 stsp return NULL;
329 5892cdd6 2019-03-10 stsp name = abs_refname;
330 5892cdd6 2019-03-10 stsp } else
331 5892cdd6 2019-03-10 stsp name = line + SHA1_DIGEST_STRING_LENGTH;
332 fb79db15 2019-02-01 stsp
333 f9267c9a 2019-03-15 stsp return alloc_ref(ref, name, &id, GOT_REF_IS_PACKED);
334 fb79db15 2019-02-01 stsp }
335 fb79db15 2019-02-01 stsp
336 fb79db15 2019-02-01 stsp static const struct got_error *
337 0dec1cc0 2019-02-01 stsp open_packed_ref(struct got_reference **ref, FILE *f, const char **subdirs,
338 0dec1cc0 2019-02-01 stsp int nsubdirs, const char *refname)
339 fb79db15 2019-02-01 stsp {
340 fb79db15 2019-02-01 stsp const struct got_error *err = NULL;
341 fb79db15 2019-02-01 stsp char *abs_refname;
342 fb79db15 2019-02-01 stsp char *line;
343 fb79db15 2019-02-01 stsp size_t len;
344 fb79db15 2019-02-01 stsp const char delim[3] = {'\0', '\0', '\0'};
345 0dec1cc0 2019-02-01 stsp int i, ref_is_absolute = (strncmp(refname, "refs/", 5) == 0);
346 fb79db15 2019-02-01 stsp
347 1e37702e 2019-02-04 stsp *ref = NULL;
348 1e37702e 2019-02-04 stsp
349 0dec1cc0 2019-02-01 stsp if (ref_is_absolute)
350 0dec1cc0 2019-02-01 stsp abs_refname = (char *)refname;
351 fb79db15 2019-02-01 stsp do {
352 fb79db15 2019-02-01 stsp line = fparseln(f, &len, NULL, delim, 0);
353 7ab0422a 2019-03-15 stsp if (line == NULL) {
354 7ab0422a 2019-03-15 stsp if (feof(f))
355 7ab0422a 2019-03-15 stsp break;
356 7ab0422a 2019-03-15 stsp err = got_ferror(f, GOT_ERR_BAD_REF_DATA);
357 fb79db15 2019-02-01 stsp break;
358 7ab0422a 2019-03-15 stsp }
359 0dec1cc0 2019-02-01 stsp for (i = 0; i < nsubdirs; i++) {
360 0dec1cc0 2019-02-01 stsp if (!ref_is_absolute &&
361 0dec1cc0 2019-02-01 stsp asprintf(&abs_refname, "refs/%s/%s", subdirs[i],
362 0dec1cc0 2019-02-01 stsp refname) == -1)
363 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
364 0dec1cc0 2019-02-01 stsp err = parse_packed_ref_line(ref, abs_refname, line);
365 0dec1cc0 2019-02-01 stsp if (!ref_is_absolute)
366 0dec1cc0 2019-02-01 stsp free(abs_refname);
367 532920c8 2019-02-01 stsp if (err || *ref != NULL)
368 0dec1cc0 2019-02-01 stsp break;
369 0dec1cc0 2019-02-01 stsp }
370 fb79db15 2019-02-01 stsp free(line);
371 fb79db15 2019-02-01 stsp if (err)
372 fb79db15 2019-02-01 stsp break;
373 fb79db15 2019-02-01 stsp } while (*ref == NULL);
374 fb79db15 2019-02-01 stsp
375 fb79db15 2019-02-01 stsp return err;
376 fb79db15 2019-02-01 stsp }
377 fb79db15 2019-02-01 stsp
378 fb79db15 2019-02-01 stsp static const struct got_error *
379 d1f2edc9 2018-06-13 stsp open_ref(struct got_reference **ref, const char *path_refs, const char *subdir,
380 2f17228e 2019-05-12 stsp const char *name, int lock)
381 d1f2edc9 2018-06-13 stsp {
382 d1f2edc9 2018-06-13 stsp const struct got_error *err = NULL;
383 a04f49d2 2019-02-04 stsp char *path = NULL;
384 a04f49d2 2019-02-04 stsp char *absname = NULL;
385 a04f49d2 2019-02-04 stsp int ref_is_absolute = (strncmp(name, "refs/", 5) == 0);
386 a04f49d2 2019-02-04 stsp int ref_is_well_known = is_well_known_ref(name);
387 d1f2edc9 2018-06-13 stsp
388 1e37702e 2019-02-04 stsp *ref = NULL;
389 1e37702e 2019-02-04 stsp
390 a04f49d2 2019-02-04 stsp if (ref_is_absolute || ref_is_well_known) {
391 a04f49d2 2019-02-04 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1)
392 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
393 a04f49d2 2019-02-04 stsp absname = (char *)name;
394 a04f49d2 2019-02-04 stsp } else {
395 58908ed0 2019-03-11 stsp if (asprintf(&path, "%s/%s%s%s", path_refs, subdir,
396 58908ed0 2019-03-11 stsp subdir[0] ? "/" : "", name) == -1)
397 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
398 d1f2edc9 2018-06-13 stsp
399 58908ed0 2019-03-11 stsp if (asprintf(&absname, "refs/%s%s%s",
400 58908ed0 2019-03-11 stsp subdir, subdir[0] ? "/" : "", name) == -1) {
401 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
402 a04f49d2 2019-02-04 stsp goto done;
403 a04f49d2 2019-02-04 stsp }
404 a04f49d2 2019-02-04 stsp }
405 a04f49d2 2019-02-04 stsp
406 6e472252 2019-07-22 stsp err = parse_ref_file(ref, absname, path, lock);
407 d1f2edc9 2018-06-13 stsp done:
408 a04f49d2 2019-02-04 stsp if (!ref_is_absolute && !ref_is_well_known)
409 a04f49d2 2019-02-04 stsp free(absname);
410 a04f49d2 2019-02-04 stsp free(path);
411 d1f2edc9 2018-06-13 stsp return err;
412 d1f2edc9 2018-06-13 stsp }
413 d1f2edc9 2018-06-13 stsp
414 5261c201 2018-04-01 stsp const struct got_error *
415 5261c201 2018-04-01 stsp got_ref_open(struct got_reference **ref, struct got_repository *repo,
416 2f17228e 2019-05-12 stsp const char *refname, int lock)
417 5261c201 2018-04-01 stsp {
418 5261c201 2018-04-01 stsp const struct got_error *err = NULL;
419 c5f754cc 2019-02-01 stsp char *path_refs = NULL;
420 fb79db15 2019-02-01 stsp const char *subdirs[] = {
421 fb79db15 2019-02-01 stsp GOT_REF_HEADS, GOT_REF_TAGS, GOT_REF_REMOTES
422 fb79db15 2019-02-01 stsp };
423 c5f754cc 2019-02-01 stsp int i, well_known = is_well_known_ref(refname);
424 a875589a 2019-05-12 stsp struct got_lockfile *lf = NULL;
425 1e37702e 2019-02-04 stsp
426 1e37702e 2019-02-04 stsp *ref = NULL;
427 e135804e 2019-02-10 stsp
428 e135804e 2019-02-10 stsp path_refs = get_refs_dir_path(repo, refname);
429 e135804e 2019-02-10 stsp if (path_refs == NULL) {
430 638f9024 2019-05-13 stsp err = got_error_from_errno2("get_refs_dir_path", refname);
431 e135804e 2019-02-10 stsp goto done;
432 e135804e 2019-02-10 stsp }
433 5261c201 2018-04-01 stsp
434 0885ce8f 2019-05-12 stsp if (well_known) {
435 0885ce8f 2019-05-12 stsp err = open_ref(ref, path_refs, "", refname, lock);
436 0885ce8f 2019-05-12 stsp } else {
437 c5f754cc 2019-02-01 stsp char *packed_refs_path;
438 c5f754cc 2019-02-01 stsp FILE *f;
439 c5f754cc 2019-02-01 stsp
440 e135804e 2019-02-10 stsp /* Search on-disk refs before packed refs! */
441 e135804e 2019-02-10 stsp for (i = 0; i < nitems(subdirs); i++) {
442 2f17228e 2019-05-12 stsp err = open_ref(ref, path_refs, subdirs[i], refname,
443 2f17228e 2019-05-12 stsp lock);
444 e135804e 2019-02-10 stsp if (err || *ref)
445 e135804e 2019-02-10 stsp goto done;
446 e135804e 2019-02-10 stsp }
447 e135804e 2019-02-10 stsp
448 c5f754cc 2019-02-01 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
449 e135804e 2019-02-10 stsp if (packed_refs_path == NULL) {
450 638f9024 2019-05-13 stsp err = got_error_from_errno(
451 230a42bd 2019-05-11 jcs "got_repo_get_path_packed_refs");
452 e135804e 2019-02-10 stsp goto done;
453 e135804e 2019-02-10 stsp }
454 c5f754cc 2019-02-01 stsp
455 2f17228e 2019-05-12 stsp if (lock) {
456 a875589a 2019-05-12 stsp err = got_lockfile_lock(&lf, packed_refs_path);
457 2f17228e 2019-05-12 stsp if (err)
458 2f17228e 2019-05-12 stsp goto done;
459 2f17228e 2019-05-12 stsp }
460 c5f754cc 2019-02-01 stsp f = fopen(packed_refs_path, "rb");
461 c5f754cc 2019-02-01 stsp free(packed_refs_path);
462 c5f754cc 2019-02-01 stsp if (f != NULL) {
463 0dec1cc0 2019-02-01 stsp err = open_packed_ref(ref, f, subdirs, nitems(subdirs),
464 0dec1cc0 2019-02-01 stsp refname);
465 a875589a 2019-05-12 stsp if (!err) {
466 a875589a 2019-05-12 stsp if (fclose(f) != 0) {
467 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
468 a875589a 2019-05-12 stsp got_ref_close(*ref);
469 a875589a 2019-05-12 stsp *ref = NULL;
470 6e472abb 2019-05-13 stsp } else if (*ref)
471 a875589a 2019-05-12 stsp (*ref)->lf = lf;
472 a875589a 2019-05-12 stsp }
473 fb79db15 2019-02-01 stsp }
474 fb79db15 2019-02-01 stsp }
475 e135804e 2019-02-10 stsp done:
476 5b575c25 2019-05-12 stsp if (!err && *ref == NULL)
477 1e37702e 2019-02-04 stsp err = got_error_not_ref(refname);
478 a875589a 2019-05-12 stsp if (err && lf)
479 a875589a 2019-05-12 stsp got_lockfile_unlock(lf);
480 5261c201 2018-04-01 stsp free(path_refs);
481 5261c201 2018-04-01 stsp return err;
482 5261c201 2018-04-01 stsp }
483 5261c201 2018-04-01 stsp
484 5261c201 2018-04-01 stsp void
485 5261c201 2018-04-01 stsp got_ref_close(struct got_reference *ref)
486 5261c201 2018-04-01 stsp {
487 e09d28b1 2019-03-15 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
488 5261c201 2018-04-01 stsp free(ref->ref.symref.name);
489 e09d28b1 2019-03-15 stsp free(ref->ref.symref.ref);
490 e09d28b1 2019-03-15 stsp } else
491 5261c201 2018-04-01 stsp free(ref->ref.ref.name);
492 5261c201 2018-04-01 stsp free(ref);
493 5261c201 2018-04-01 stsp }
494 5261c201 2018-04-01 stsp
495 5261c201 2018-04-01 stsp struct got_reference *
496 5261c201 2018-04-01 stsp got_ref_dup(struct got_reference *ref)
497 5261c201 2018-04-01 stsp {
498 5261c201 2018-04-01 stsp struct got_reference *ret;
499 5261c201 2018-04-01 stsp
500 5261c201 2018-04-01 stsp ret = calloc(1, sizeof(*ret));
501 5261c201 2018-04-01 stsp if (ret == NULL)
502 5261c201 2018-04-01 stsp return NULL;
503 5261c201 2018-04-01 stsp
504 5261c201 2018-04-01 stsp ret->flags = ref->flags;
505 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
506 5261c201 2018-04-01 stsp ret->ref.symref.name = strdup(ref->ref.symref.name);
507 5261c201 2018-04-01 stsp if (ret->ref.symref.name == NULL) {
508 5261c201 2018-04-01 stsp free(ret);
509 5261c201 2018-04-01 stsp return NULL;
510 5261c201 2018-04-01 stsp }
511 5261c201 2018-04-01 stsp ret->ref.symref.ref = strdup(ref->ref.symref.ref);
512 5261c201 2018-04-01 stsp if (ret->ref.symref.ref == NULL) {
513 5261c201 2018-04-01 stsp free(ret->ref.symref.name);
514 5261c201 2018-04-01 stsp free(ret);
515 5261c201 2018-04-01 stsp return NULL;
516 5261c201 2018-04-01 stsp }
517 5261c201 2018-04-01 stsp } else {
518 5261c201 2018-04-01 stsp ref->ref.ref.name = strdup(ref->ref.ref.name);
519 5261c201 2018-04-01 stsp if (ref->ref.ref.name == NULL) {
520 5261c201 2018-04-01 stsp free(ret);
521 5261c201 2018-04-01 stsp return NULL;
522 5261c201 2018-04-01 stsp }
523 5261c201 2018-04-01 stsp memcpy(ret->ref.ref.sha1, ref->ref.ref.sha1,
524 80d5fc1f 2019-03-15 stsp sizeof(ret->ref.ref.sha1));
525 5261c201 2018-04-01 stsp }
526 5261c201 2018-04-01 stsp
527 5261c201 2018-04-01 stsp return ret;
528 5261c201 2018-04-01 stsp }
529 b8bad2ba 2019-08-23 stsp
530 b8bad2ba 2019-08-23 stsp const struct got_error *
531 b8bad2ba 2019-08-23 stsp got_reflist_entry_dup(struct got_reflist_entry **newp,
532 b8bad2ba 2019-08-23 stsp struct got_reflist_entry *re)
533 b8bad2ba 2019-08-23 stsp {
534 b8bad2ba 2019-08-23 stsp const struct got_error *err = NULL;
535 b8bad2ba 2019-08-23 stsp struct got_reflist_entry *new;
536 b8bad2ba 2019-08-23 stsp
537 b8bad2ba 2019-08-23 stsp *newp = NULL;
538 b8bad2ba 2019-08-23 stsp
539 b8bad2ba 2019-08-23 stsp new = malloc(sizeof(*new));
540 b8bad2ba 2019-08-23 stsp if (new == NULL)
541 b8bad2ba 2019-08-23 stsp return got_error_from_errno("malloc");
542 5261c201 2018-04-01 stsp
543 b8bad2ba 2019-08-23 stsp new->ref = got_ref_dup(re->ref);
544 b8bad2ba 2019-08-23 stsp if (new->ref == NULL) {
545 b8bad2ba 2019-08-23 stsp err = got_error_from_errno("got_ref_dup");
546 b8bad2ba 2019-08-23 stsp free(new);
547 b8bad2ba 2019-08-23 stsp return err;
548 b8bad2ba 2019-08-23 stsp }
549 b8bad2ba 2019-08-23 stsp
550 b8bad2ba 2019-08-23 stsp new->id = got_object_id_dup(re->id);
551 b8bad2ba 2019-08-23 stsp if (new->id == NULL) {
552 b8bad2ba 2019-08-23 stsp err = got_error_from_errno("got_ref_dup");
553 b8bad2ba 2019-08-23 stsp free(new->id);
554 b8bad2ba 2019-08-23 stsp free(new);
555 b8bad2ba 2019-08-23 stsp return err;
556 b8bad2ba 2019-08-23 stsp }
557 b8bad2ba 2019-08-23 stsp
558 b8bad2ba 2019-08-23 stsp *newp = new;
559 b8bad2ba 2019-08-23 stsp return NULL;
560 b8bad2ba 2019-08-23 stsp }
561 b8bad2ba 2019-08-23 stsp
562 5261c201 2018-04-01 stsp static const struct got_error *
563 5261c201 2018-04-01 stsp resolve_symbolic_ref(struct got_reference **resolved,
564 5261c201 2018-04-01 stsp struct got_repository *repo, struct got_reference *ref)
565 5261c201 2018-04-01 stsp {
566 5261c201 2018-04-01 stsp struct got_reference *nextref;
567 5261c201 2018-04-01 stsp const struct got_error *err;
568 5261c201 2018-04-01 stsp
569 2f17228e 2019-05-12 stsp err = got_ref_open(&nextref, repo, ref->ref.symref.ref, 0);
570 5261c201 2018-04-01 stsp if (err)
571 5261c201 2018-04-01 stsp return err;
572 5261c201 2018-04-01 stsp
573 5261c201 2018-04-01 stsp if (nextref->flags & GOT_REF_IS_SYMBOLIC)
574 5261c201 2018-04-01 stsp err = resolve_symbolic_ref(resolved, repo, nextref);
575 5261c201 2018-04-01 stsp else
576 5261c201 2018-04-01 stsp *resolved = got_ref_dup(nextref);
577 5261c201 2018-04-01 stsp
578 5261c201 2018-04-01 stsp got_ref_close(nextref);
579 5261c201 2018-04-01 stsp return err;
580 5261c201 2018-04-01 stsp }
581 5261c201 2018-04-01 stsp
582 29e86f7a 2019-08-12 stsp static const struct got_error *
583 29e86f7a 2019-08-12 stsp ref_resolve(struct got_object_id **id, struct got_repository *repo,
584 29e86f7a 2019-08-12 stsp struct got_reference *ref, int recursion)
585 5261c201 2018-04-01 stsp {
586 5261c201 2018-04-01 stsp const struct got_error *err;
587 5261c201 2018-04-01 stsp
588 29e86f7a 2019-08-12 stsp if (recursion <= 0)
589 29e86f7a 2019-08-12 stsp return got_error_msg(GOT_ERR_RECURSION,
590 29e86f7a 2019-08-12 stsp "reference recursion limit reached");
591 29e86f7a 2019-08-12 stsp
592 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
593 5261c201 2018-04-01 stsp struct got_reference *resolved = NULL;
594 5261c201 2018-04-01 stsp err = resolve_symbolic_ref(&resolved, repo, ref);
595 5261c201 2018-04-01 stsp if (err == NULL)
596 29e86f7a 2019-08-12 stsp err = ref_resolve(id, repo, resolved, --recursion);
597 57b6f99a 2019-04-13 stsp if (resolved)
598 57b6f99a 2019-04-13 stsp got_ref_close(resolved);
599 5261c201 2018-04-01 stsp return err;
600 5261c201 2018-04-01 stsp }
601 5261c201 2018-04-01 stsp
602 5261c201 2018-04-01 stsp *id = calloc(1, sizeof(**id));
603 5261c201 2018-04-01 stsp if (*id == NULL)
604 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
605 80d5fc1f 2019-03-15 stsp memcpy((*id)->sha1, ref->ref.ref.sha1, sizeof((*id)->sha1));
606 5261c201 2018-04-01 stsp return NULL;
607 29e86f7a 2019-08-12 stsp }
608 29e86f7a 2019-08-12 stsp
609 29e86f7a 2019-08-12 stsp const struct got_error *
610 29e86f7a 2019-08-12 stsp got_ref_resolve(struct got_object_id **id, struct got_repository *repo,
611 29e86f7a 2019-08-12 stsp struct got_reference *ref)
612 29e86f7a 2019-08-12 stsp {
613 29e86f7a 2019-08-12 stsp return ref_resolve(id, repo, ref, GOT_REF_RECURSE_MAX);
614 5261c201 2018-04-01 stsp }
615 5261c201 2018-04-01 stsp
616 5261c201 2018-04-01 stsp char *
617 5261c201 2018-04-01 stsp got_ref_to_str(struct got_reference *ref)
618 5261c201 2018-04-01 stsp {
619 5261c201 2018-04-01 stsp char *str;
620 271d2a38 2018-12-25 stsp
621 271d2a38 2018-12-25 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
622 271d2a38 2018-12-25 stsp return strdup(ref->ref.symref.ref);
623 271d2a38 2018-12-25 stsp
624 271d2a38 2018-12-25 stsp str = malloc(SHA1_DIGEST_STRING_LENGTH);
625 271d2a38 2018-12-25 stsp if (str == NULL)
626 271d2a38 2018-12-25 stsp return NULL;
627 271d2a38 2018-12-25 stsp
628 271d2a38 2018-12-25 stsp if (got_sha1_digest_to_str(ref->ref.ref.sha1, str,
629 271d2a38 2018-12-25 stsp SHA1_DIGEST_STRING_LENGTH) == NULL) {
630 271d2a38 2018-12-25 stsp free(str);
631 271d2a38 2018-12-25 stsp return NULL;
632 5261c201 2018-04-01 stsp }
633 5261c201 2018-04-01 stsp
634 5261c201 2018-04-01 stsp return str;
635 5261c201 2018-04-01 stsp }
636 0bd18d37 2019-02-01 stsp
637 0bd18d37 2019-02-01 stsp const char *
638 0bd18d37 2019-02-01 stsp got_ref_get_name(struct got_reference *ref)
639 0bd18d37 2019-02-01 stsp {
640 0bd18d37 2019-02-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
641 0bd18d37 2019-02-01 stsp return ref->ref.symref.name;
642 0bd18d37 2019-02-01 stsp
643 0bd18d37 2019-02-01 stsp return ref->ref.ref.name;
644 199a4027 2019-02-02 stsp }
645 199a4027 2019-02-02 stsp
646 aaf88317 2019-07-10 stsp const char *
647 aaf88317 2019-07-10 stsp got_ref_get_symref_target(struct got_reference *ref)
648 aaf88317 2019-07-10 stsp {
649 aaf88317 2019-07-10 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
650 aaf88317 2019-07-10 stsp return ref->ref.symref.ref;
651 b8bad2ba 2019-08-23 stsp
652 b8bad2ba 2019-08-23 stsp return NULL;
653 b8bad2ba 2019-08-23 stsp }
654 b8bad2ba 2019-08-23 stsp
655 b8bad2ba 2019-08-23 stsp const struct got_error *
656 b8bad2ba 2019-08-23 stsp got_ref_cmp_by_name(void *arg, int *cmp, struct got_reference *re1,
657 b8bad2ba 2019-08-23 stsp struct got_reference* re2)
658 b8bad2ba 2019-08-23 stsp {
659 b8bad2ba 2019-08-23 stsp const char *name1 = got_ref_get_name(re1);
660 b8bad2ba 2019-08-23 stsp const char *name2 = got_ref_get_name(re2);
661 aaf88317 2019-07-10 stsp
662 b8bad2ba 2019-08-23 stsp *cmp = got_path_cmp(name1, name2, strlen(name1), strlen(name2));
663 aaf88317 2019-07-10 stsp return NULL;
664 aaf88317 2019-07-10 stsp }
665 aaf88317 2019-07-10 stsp
666 199a4027 2019-02-02 stsp static const struct got_error *
667 505287be 2019-03-15 stsp insert_ref(struct got_reflist_entry **newp, struct got_reflist_head *refs,
668 b8bad2ba 2019-08-23 stsp struct got_reference *ref, struct got_repository *repo,
669 b8bad2ba 2019-08-23 stsp got_ref_cmp_cb cmp_cb, void *cmp_arg)
670 199a4027 2019-02-02 stsp {
671 199a4027 2019-02-02 stsp const struct got_error *err;
672 199a4027 2019-02-02 stsp struct got_object_id *id;
673 6249107b 2019-03-15 stsp struct got_reflist_entry *new, *re, *prev = NULL;
674 e397b6db 2019-02-04 stsp int cmp;
675 7a3c76f5 2019-02-05 stsp
676 505287be 2019-03-15 stsp *newp = NULL;
677 505287be 2019-03-15 stsp
678 7a3c76f5 2019-02-05 stsp err = got_ref_resolve(&id, repo, ref);
679 7a3c76f5 2019-02-05 stsp if (err)
680 7a3c76f5 2019-02-05 stsp return err;
681 29b5c214 2019-02-04 stsp
682 6fdbf7b0 2019-03-15 stsp new = malloc(sizeof(*new));
683 7a3c76f5 2019-02-05 stsp if (new == NULL) {
684 7a3c76f5 2019-02-05 stsp free(id);
685 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
686 7a3c76f5 2019-02-05 stsp }
687 7a3c76f5 2019-02-05 stsp new->ref = ref;
688 7a3c76f5 2019-02-05 stsp new->id = id;
689 505287be 2019-03-15 stsp *newp = new;
690 7a3c76f5 2019-02-05 stsp
691 29b5c214 2019-02-04 stsp /*
692 29b5c214 2019-02-04 stsp * We must de-duplicate entries on insert because packed-refs may
693 29b5c214 2019-02-04 stsp * contain redundant entries. On-disk refs take precedence.
694 29b5c214 2019-02-04 stsp * This code assumes that on-disk revs are read before packed-refs.
695 e397b6db 2019-02-04 stsp * We're iterating the list anyway, so insert elements sorted by name.
696 29b5c214 2019-02-04 stsp */
697 7a3c76f5 2019-02-05 stsp re = SIMPLEQ_FIRST(refs);
698 7a3c76f5 2019-02-05 stsp while (re) {
699 b8bad2ba 2019-08-23 stsp err = (*cmp_cb)(cmp_arg, &cmp, re->ref, new->ref);
700 b8bad2ba 2019-08-23 stsp if (err)
701 b8bad2ba 2019-08-23 stsp return err;
702 e397b6db 2019-02-04 stsp if (cmp == 0) {
703 27a1ed03 2019-03-15 stsp /* duplicate */
704 27a1ed03 2019-03-15 stsp free(new->id);
705 27a1ed03 2019-03-15 stsp free(new);
706 505287be 2019-03-15 stsp *newp = NULL;
707 7a3c76f5 2019-02-05 stsp return NULL;
708 7a3c76f5 2019-02-05 stsp } else if (cmp > 0) {
709 7a3c76f5 2019-02-05 stsp if (prev)
710 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_AFTER(refs, prev, new, entry);
711 7a3c76f5 2019-02-05 stsp else
712 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_HEAD(refs, new, entry);
713 7a3c76f5 2019-02-05 stsp return NULL;
714 7a3c76f5 2019-02-05 stsp } else {
715 e397b6db 2019-02-04 stsp prev = re;
716 7a3c76f5 2019-02-05 stsp re = SIMPLEQ_NEXT(re, entry);
717 7a3c76f5 2019-02-05 stsp }
718 29b5c214 2019-02-04 stsp }
719 199a4027 2019-02-02 stsp
720 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_TAIL(refs, new, entry);
721 199a4027 2019-02-02 stsp return NULL;
722 0bd18d37 2019-02-01 stsp }
723 199a4027 2019-02-02 stsp
724 a04f49d2 2019-02-04 stsp static const struct got_error *
725 29b5c214 2019-02-04 stsp gather_on_disk_refs(struct got_reflist_head *refs, const char *path_refs,
726 b8bad2ba 2019-08-23 stsp const char *subdir, struct got_repository *repo,
727 b8bad2ba 2019-08-23 stsp got_ref_cmp_cb cmp_cb, void *cmp_arg)
728 a04f49d2 2019-02-04 stsp {
729 a04f49d2 2019-02-04 stsp const struct got_error *err = NULL;
730 a04f49d2 2019-02-04 stsp DIR *d = NULL;
731 a04f49d2 2019-02-04 stsp char *path_subdir;
732 a04f49d2 2019-02-04 stsp
733 a04f49d2 2019-02-04 stsp if (asprintf(&path_subdir, "%s/%s", path_refs, subdir) == -1)
734 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
735 a04f49d2 2019-02-04 stsp
736 a04f49d2 2019-02-04 stsp d = opendir(path_subdir);
737 a04f49d2 2019-02-04 stsp if (d == NULL)
738 a04f49d2 2019-02-04 stsp goto done;
739 a04f49d2 2019-02-04 stsp
740 656b1f76 2019-05-11 jcs for (;;) {
741 a04f49d2 2019-02-04 stsp struct dirent *dent;
742 a04f49d2 2019-02-04 stsp struct got_reference *ref;
743 a04f49d2 2019-02-04 stsp char *child;
744 a04f49d2 2019-02-04 stsp
745 a04f49d2 2019-02-04 stsp dent = readdir(d);
746 a04f49d2 2019-02-04 stsp if (dent == NULL)
747 a04f49d2 2019-02-04 stsp break;
748 a04f49d2 2019-02-04 stsp
749 a04f49d2 2019-02-04 stsp if (strcmp(dent->d_name, ".") == 0 ||
750 a04f49d2 2019-02-04 stsp strcmp(dent->d_name, "..") == 0)
751 a04f49d2 2019-02-04 stsp continue;
752 a04f49d2 2019-02-04 stsp
753 a04f49d2 2019-02-04 stsp switch (dent->d_type) {
754 a04f49d2 2019-02-04 stsp case DT_REG:
755 2f17228e 2019-05-12 stsp err = open_ref(&ref, path_refs, subdir, dent->d_name,
756 2f17228e 2019-05-12 stsp 0);
757 1e37702e 2019-02-04 stsp if (err)
758 a04f49d2 2019-02-04 stsp goto done;
759 a04f49d2 2019-02-04 stsp if (ref) {
760 505287be 2019-03-15 stsp struct got_reflist_entry *new;
761 b8bad2ba 2019-08-23 stsp err = insert_ref(&new, refs, ref, repo,
762 b8bad2ba 2019-08-23 stsp cmp_cb, cmp_arg);
763 505287be 2019-03-15 stsp if (err || new == NULL /* duplicate */)
764 505287be 2019-03-15 stsp got_ref_close(ref);
765 a04f49d2 2019-02-04 stsp if (err)
766 a04f49d2 2019-02-04 stsp goto done;
767 a04f49d2 2019-02-04 stsp }
768 a04f49d2 2019-02-04 stsp break;
769 a04f49d2 2019-02-04 stsp case DT_DIR:
770 a04f49d2 2019-02-04 stsp if (asprintf(&child, "%s%s%s", subdir,
771 a04f49d2 2019-02-04 stsp subdir[0] == '\0' ? "" : "/", dent->d_name) == -1) {
772 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
773 a04f49d2 2019-02-04 stsp break;
774 a04f49d2 2019-02-04 stsp }
775 b8bad2ba 2019-08-23 stsp err = gather_on_disk_refs(refs, path_refs, child, repo,
776 b8bad2ba 2019-08-23 stsp cmp_cb, cmp_arg);
777 a04f49d2 2019-02-04 stsp free(child);
778 a04f49d2 2019-02-04 stsp break;
779 a04f49d2 2019-02-04 stsp default:
780 a04f49d2 2019-02-04 stsp break;
781 a04f49d2 2019-02-04 stsp }
782 a04f49d2 2019-02-04 stsp }
783 a04f49d2 2019-02-04 stsp done:
784 a04f49d2 2019-02-04 stsp if (d)
785 a04f49d2 2019-02-04 stsp closedir(d);
786 a04f49d2 2019-02-04 stsp free(path_subdir);
787 a04f49d2 2019-02-04 stsp return err;
788 a04f49d2 2019-02-04 stsp }
789 a04f49d2 2019-02-04 stsp
790 199a4027 2019-02-02 stsp const struct got_error *
791 29606af7 2019-08-23 stsp got_ref_list(struct got_reflist_head *refs, struct got_repository *repo,
792 b8bad2ba 2019-08-23 stsp const char *ref_namespace, got_ref_cmp_cb cmp_cb, void *cmp_arg)
793 199a4027 2019-02-02 stsp {
794 199a4027 2019-02-02 stsp const struct got_error *err;
795 a04f49d2 2019-02-04 stsp char *packed_refs_path, *path_refs = NULL;
796 29b5c214 2019-02-04 stsp FILE *f = NULL;
797 199a4027 2019-02-02 stsp struct got_reference *ref;
798 505287be 2019-03-15 stsp struct got_reflist_entry *new;
799 199a4027 2019-02-02 stsp
800 29606af7 2019-08-23 stsp if (ref_namespace == NULL || ref_namespace[0] == '\0') {
801 29606af7 2019-08-23 stsp /* HEAD ref should always exist. */
802 29606af7 2019-08-23 stsp path_refs = get_refs_dir_path(repo, GOT_REF_HEAD);
803 29606af7 2019-08-23 stsp if (path_refs == NULL) {
804 29606af7 2019-08-23 stsp err = got_error_from_errno("get_refs_dir_path");
805 29606af7 2019-08-23 stsp goto done;
806 29606af7 2019-08-23 stsp }
807 29606af7 2019-08-23 stsp err = open_ref(&ref, path_refs, "", GOT_REF_HEAD, 0);
808 29606af7 2019-08-23 stsp if (err)
809 29606af7 2019-08-23 stsp goto done;
810 b8bad2ba 2019-08-23 stsp err = insert_ref(&new, refs, ref, repo, cmp_cb, cmp_arg);
811 29606af7 2019-08-23 stsp if (err || new == NULL /* duplicate */)
812 29606af7 2019-08-23 stsp got_ref_close(ref);
813 29606af7 2019-08-23 stsp if (err)
814 29606af7 2019-08-23 stsp goto done;
815 29b5c214 2019-02-04 stsp }
816 29b5c214 2019-02-04 stsp
817 29606af7 2019-08-23 stsp if (ref_namespace && strncmp(ref_namespace, "refs/", 5) == 0)
818 29606af7 2019-08-23 stsp ref_namespace += 5;
819 29606af7 2019-08-23 stsp
820 29b5c214 2019-02-04 stsp /* Gather on-disk refs before parsing packed-refs. */
821 29b5c214 2019-02-04 stsp free(path_refs);
822 29b5c214 2019-02-04 stsp path_refs = get_refs_dir_path(repo, "");
823 29b5c214 2019-02-04 stsp if (path_refs == NULL) {
824 638f9024 2019-05-13 stsp err = got_error_from_errno("get_refs_dir_path");
825 29b5c214 2019-02-04 stsp goto done;
826 29b5c214 2019-02-04 stsp }
827 29606af7 2019-08-23 stsp err = gather_on_disk_refs(refs, path_refs,
828 b8bad2ba 2019-08-23 stsp ref_namespace ? ref_namespace : "", repo, cmp_cb, cmp_arg);
829 29b5c214 2019-02-04 stsp if (err)
830 29b5c214 2019-02-04 stsp goto done;
831 29b5c214 2019-02-04 stsp
832 29b5c214 2019-02-04 stsp /*
833 29b5c214 2019-02-04 stsp * The packed-refs file may contain redundant entries, in which
834 29b5c214 2019-02-04 stsp * case on-disk refs take precedence.
835 29b5c214 2019-02-04 stsp */
836 199a4027 2019-02-02 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
837 29b5c214 2019-02-04 stsp if (packed_refs_path == NULL) {
838 638f9024 2019-05-13 stsp err = got_error_from_errno("got_repo_get_path_packed_refs");
839 29b5c214 2019-02-04 stsp goto done;
840 29b5c214 2019-02-04 stsp }
841 199a4027 2019-02-02 stsp
842 199a4027 2019-02-02 stsp f = fopen(packed_refs_path, "r");
843 199a4027 2019-02-02 stsp free(packed_refs_path);
844 199a4027 2019-02-02 stsp if (f) {
845 199a4027 2019-02-02 stsp char *line;
846 199a4027 2019-02-02 stsp size_t len;
847 199a4027 2019-02-02 stsp const char delim[3] = {'\0', '\0', '\0'};
848 656b1f76 2019-05-11 jcs for (;;) {
849 199a4027 2019-02-02 stsp line = fparseln(f, &len, NULL, delim, 0);
850 0bb4abae 2019-03-15 stsp if (line == NULL) {
851 0bb4abae 2019-03-15 stsp if (feof(f))
852 0bb4abae 2019-03-15 stsp break;
853 0bb4abae 2019-03-15 stsp err = got_ferror(f, GOT_ERR_BAD_REF_DATA);
854 0bb4abae 2019-03-15 stsp goto done;
855 0bb4abae 2019-03-15 stsp }
856 199a4027 2019-02-02 stsp err = parse_packed_ref_line(&ref, NULL, line);
857 0bb4abae 2019-03-15 stsp free(line);
858 199a4027 2019-02-02 stsp if (err)
859 199a4027 2019-02-02 stsp goto done;
860 76b4ead2 2019-02-03 stsp if (ref) {
861 29606af7 2019-08-23 stsp if (ref_namespace) {
862 29606af7 2019-08-23 stsp const char *name;
863 29606af7 2019-08-23 stsp name = got_ref_get_name(ref);
864 29606af7 2019-08-23 stsp if (strncmp(name, ref_namespace,
865 29606af7 2019-08-23 stsp strlen(ref_namespace)) != 0) {
866 29606af7 2019-08-23 stsp got_ref_close(ref);
867 29606af7 2019-08-23 stsp continue;
868 29606af7 2019-08-23 stsp }
869 29606af7 2019-08-23 stsp }
870 b8bad2ba 2019-08-23 stsp err = insert_ref(&new, refs, ref, repo,
871 b8bad2ba 2019-08-23 stsp cmp_cb, cmp_arg);
872 505287be 2019-03-15 stsp if (err || new == NULL /* duplicate */)
873 505287be 2019-03-15 stsp got_ref_close(ref);
874 76b4ead2 2019-02-03 stsp if (err)
875 76b4ead2 2019-02-03 stsp goto done;
876 76b4ead2 2019-02-03 stsp }
877 199a4027 2019-02-02 stsp }
878 199a4027 2019-02-02 stsp }
879 199a4027 2019-02-02 stsp done:
880 a04f49d2 2019-02-04 stsp free(path_refs);
881 fb43ecf1 2019-02-11 stsp if (f && fclose(f) != 0 && err == NULL)
882 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
883 199a4027 2019-02-02 stsp return err;
884 199a4027 2019-02-02 stsp }
885 9e672c74 2019-03-11 stsp
886 e2e879a0 2019-03-11 stsp void
887 e2e879a0 2019-03-11 stsp got_ref_list_free(struct got_reflist_head *refs)
888 e2e879a0 2019-03-11 stsp {
889 e2e879a0 2019-03-11 stsp struct got_reflist_entry *re;
890 e2e879a0 2019-03-11 stsp
891 e2e879a0 2019-03-11 stsp while (!SIMPLEQ_EMPTY(refs)) {
892 e2e879a0 2019-03-11 stsp re = SIMPLEQ_FIRST(refs);
893 e2e879a0 2019-03-11 stsp SIMPLEQ_REMOVE_HEAD(refs, entry);
894 e2e879a0 2019-03-11 stsp got_ref_close(re->ref);
895 e2e879a0 2019-03-11 stsp free(re->id);
896 e2e879a0 2019-03-11 stsp free(re);
897 e2e879a0 2019-03-11 stsp }
898 b249b824 2019-05-09 stsp
899 b249b824 2019-05-09 stsp }
900 b249b824 2019-05-09 stsp
901 b249b824 2019-05-09 stsp int
902 b249b824 2019-05-09 stsp got_ref_is_symbolic(struct got_reference *ref)
903 b249b824 2019-05-09 stsp {
904 b249b824 2019-05-09 stsp return (ref->flags & GOT_REF_IS_SYMBOLIC);
905 b249b824 2019-05-09 stsp }
906 b249b824 2019-05-09 stsp
907 b249b824 2019-05-09 stsp const struct got_error *
908 b249b824 2019-05-09 stsp got_ref_change_ref(struct got_reference *ref, struct got_object_id *id)
909 b249b824 2019-05-09 stsp {
910 b249b824 2019-05-09 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
911 b249b824 2019-05-09 stsp return got_error(GOT_ERR_BAD_REF_TYPE);
912 e2e879a0 2019-03-11 stsp
913 b249b824 2019-05-09 stsp memcpy(ref->ref.ref.sha1, id->sha1, sizeof(ref->ref.ref.sha1));
914 b249b824 2019-05-09 stsp return NULL;
915 e2e879a0 2019-03-11 stsp }
916 e2e879a0 2019-03-11 stsp
917 9e672c74 2019-03-11 stsp const struct got_error *
918 b249b824 2019-05-09 stsp got_ref_change_symref(struct got_reference *ref, char *refname)
919 b249b824 2019-05-09 stsp {
920 b249b824 2019-05-09 stsp char *new_name;
921 b249b824 2019-05-09 stsp
922 b249b824 2019-05-09 stsp if ((ref->flags & GOT_REF_IS_SYMBOLIC) == 0)
923 b249b824 2019-05-09 stsp return got_error(GOT_ERR_BAD_REF_TYPE);
924 b249b824 2019-05-09 stsp
925 b249b824 2019-05-09 stsp new_name = strdup(refname);
926 b249b824 2019-05-09 stsp if (new_name == NULL)
927 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
928 b249b824 2019-05-09 stsp
929 b249b824 2019-05-09 stsp free(ref->ref.symref.name);
930 b249b824 2019-05-09 stsp ref->ref.symref.name = new_name;
931 b249b824 2019-05-09 stsp return NULL;
932 b249b824 2019-05-09 stsp }
933 b249b824 2019-05-09 stsp
934 b249b824 2019-05-09 stsp const struct got_error *
935 9e672c74 2019-03-11 stsp got_ref_write(struct got_reference *ref, struct got_repository *repo)
936 9e672c74 2019-03-11 stsp {
937 9e672c74 2019-03-11 stsp const struct got_error *err = NULL, *unlock_err = NULL;
938 9e672c74 2019-03-11 stsp const char *name = got_ref_get_name(ref);
939 9e672c74 2019-03-11 stsp char *path_refs = NULL, *path = NULL, *tmppath = NULL;
940 9e672c74 2019-03-11 stsp struct got_lockfile *lf = NULL;
941 9e672c74 2019-03-11 stsp FILE *f = NULL;
942 9e672c74 2019-03-11 stsp size_t n;
943 9e672c74 2019-03-11 stsp struct stat sb;
944 9e672c74 2019-03-11 stsp
945 9e672c74 2019-03-11 stsp path_refs = get_refs_dir_path(repo, name);
946 9e672c74 2019-03-11 stsp if (path_refs == NULL) {
947 638f9024 2019-05-13 stsp err = got_error_from_errno2("get_refs_dir_path", name);
948 9e672c74 2019-03-11 stsp goto done;
949 9e672c74 2019-03-11 stsp }
950 9e672c74 2019-03-11 stsp
951 9e672c74 2019-03-11 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1) {
952 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
953 9e672c74 2019-03-11 stsp goto done;
954 9e672c74 2019-03-11 stsp }
955 9e672c74 2019-03-11 stsp
956 9e672c74 2019-03-11 stsp err = got_opentemp_named(&tmppath, &f, path);
957 49c7094f 2019-03-11 stsp if (err) {
958 d1667f0d 2019-03-11 stsp char *parent;
959 49c7094f 2019-03-11 stsp if (!(err->code == GOT_ERR_ERRNO && errno == ENOENT))
960 5e1c9f23 2019-03-11 stsp goto done;
961 d1667f0d 2019-03-11 stsp err = got_path_dirname(&parent, path);
962 d1667f0d 2019-03-11 stsp if (err)
963 0cd1c46a 2019-03-11 stsp goto done;
964 0cd1c46a 2019-03-11 stsp err = got_path_mkdir(parent);
965 5e1c9f23 2019-03-11 stsp free(parent);
966 0cd1c46a 2019-03-11 stsp if (err)
967 0cd1c46a 2019-03-11 stsp goto done;
968 0cd1c46a 2019-03-11 stsp err = got_opentemp_named(&tmppath, &f, path);
969 49c7094f 2019-03-11 stsp if (err)
970 0cd1c46a 2019-03-11 stsp goto done;
971 9e672c74 2019-03-11 stsp }
972 9e672c74 2019-03-11 stsp
973 9e672c74 2019-03-11 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
974 9e672c74 2019-03-11 stsp n = fprintf(f, "ref: %s\n", ref->ref.symref.ref);
975 9e672c74 2019-03-11 stsp if (n != strlen(ref->ref.symref.ref) + 6) {
976 9e672c74 2019-03-11 stsp err = got_ferror(f, GOT_ERR_IO);
977 9e672c74 2019-03-11 stsp goto done;
978 9e672c74 2019-03-11 stsp }
979 9e672c74 2019-03-11 stsp } else {
980 9e672c74 2019-03-11 stsp char hex[SHA1_DIGEST_STRING_LENGTH];
981 9e672c74 2019-03-11 stsp if (got_sha1_digest_to_str(ref->ref.ref.sha1, hex,
982 9e672c74 2019-03-11 stsp sizeof(hex)) == NULL) {
983 9e672c74 2019-03-11 stsp err = got_error(GOT_ERR_BAD_REF_DATA);
984 9e672c74 2019-03-11 stsp goto done;
985 9e672c74 2019-03-11 stsp }
986 9e672c74 2019-03-11 stsp n = fprintf(f, "%s\n", hex);
987 8fa2f096 2019-03-11 stsp if (n != sizeof(hex)) {
988 9e672c74 2019-03-11 stsp err = got_ferror(f, GOT_ERR_IO);
989 9e672c74 2019-03-11 stsp goto done;
990 9e672c74 2019-03-11 stsp }
991 9e672c74 2019-03-11 stsp }
992 9e672c74 2019-03-11 stsp
993 2f17228e 2019-05-12 stsp if (ref->lf == NULL) {
994 2f17228e 2019-05-12 stsp err = got_lockfile_lock(&lf, path);
995 2f17228e 2019-05-12 stsp if (err)
996 2f17228e 2019-05-12 stsp goto done;
997 2f17228e 2019-05-12 stsp }
998 9e672c74 2019-03-11 stsp
999 9e672c74 2019-03-11 stsp /* XXX: check if old content matches our expectations? */
1000 9e672c74 2019-03-11 stsp
1001 0cd1c46a 2019-03-11 stsp if (stat(path, &sb) != 0) {
1002 0cd1c46a 2019-03-11 stsp if (errno != ENOENT) {
1003 638f9024 2019-05-13 stsp err = got_error_from_errno2("stat", path);
1004 0cd1c46a 2019-03-11 stsp goto done;
1005 0cd1c46a 2019-03-11 stsp }
1006 0cd1c46a 2019-03-11 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
1007 9e672c74 2019-03-11 stsp }
1008 9e672c74 2019-03-11 stsp
1009 9e672c74 2019-03-11 stsp if (rename(tmppath, path) != 0) {
1010 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath, path);
1011 9e672c74 2019-03-11 stsp goto done;
1012 9e672c74 2019-03-11 stsp }
1013 9e672c74 2019-03-11 stsp free(tmppath);
1014 9e672c74 2019-03-11 stsp tmppath = NULL;
1015 9e672c74 2019-03-11 stsp
1016 9e672c74 2019-03-11 stsp if (chmod(path, sb.st_mode) != 0) {
1017 638f9024 2019-05-13 stsp err = got_error_from_errno2("chmod", path);
1018 9e672c74 2019-03-11 stsp goto done;
1019 9e672c74 2019-03-11 stsp }
1020 9e672c74 2019-03-11 stsp done:
1021 2f17228e 2019-05-12 stsp if (ref->lf == NULL && lf)
1022 9e672c74 2019-03-11 stsp unlock_err = got_lockfile_unlock(lf);
1023 9e672c74 2019-03-11 stsp if (f) {
1024 9e672c74 2019-03-11 stsp if (fclose(f) != 0 && err == NULL)
1025 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1026 9e672c74 2019-03-11 stsp }
1027 9e672c74 2019-03-11 stsp free(path_refs);
1028 9e672c74 2019-03-11 stsp free(path);
1029 9e672c74 2019-03-11 stsp if (tmppath) {
1030 9e672c74 2019-03-11 stsp if (unlink(tmppath) != 0 && err == NULL)
1031 638f9024 2019-05-13 stsp err = got_error_from_errno2("unlink", tmppath);
1032 9e672c74 2019-03-11 stsp free(tmppath);
1033 2d2e1378 2019-03-11 stsp }
1034 2d2e1378 2019-03-11 stsp return err ? err : unlock_err;
1035 2d2e1378 2019-03-11 stsp }
1036 598a8b91 2019-03-15 stsp
1037 598a8b91 2019-03-15 stsp static const struct got_error *
1038 598a8b91 2019-03-15 stsp delete_packed_ref(struct got_reference *delref, struct got_repository *repo)
1039 598a8b91 2019-03-15 stsp {
1040 598a8b91 2019-03-15 stsp const struct got_error *err = NULL, *unlock_err = NULL;
1041 598a8b91 2019-03-15 stsp struct got_lockfile *lf = NULL;
1042 598a8b91 2019-03-15 stsp FILE *f = NULL, *tmpf = NULL;
1043 598a8b91 2019-03-15 stsp char *packed_refs_path, *tmppath = NULL;
1044 598a8b91 2019-03-15 stsp struct got_reflist_head refs;
1045 598a8b91 2019-03-15 stsp int found_delref = 0;
1046 2d2e1378 2019-03-11 stsp
1047 598a8b91 2019-03-15 stsp /* The packed-refs file does not cotain symbolic references. */
1048 598a8b91 2019-03-15 stsp if (delref->flags & GOT_REF_IS_SYMBOLIC)
1049 598a8b91 2019-03-15 stsp return got_error(GOT_ERR_BAD_REF_DATA);
1050 598a8b91 2019-03-15 stsp
1051 598a8b91 2019-03-15 stsp SIMPLEQ_INIT(&refs);
1052 598a8b91 2019-03-15 stsp
1053 598a8b91 2019-03-15 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
1054 598a8b91 2019-03-15 stsp if (packed_refs_path == NULL)
1055 638f9024 2019-05-13 stsp return got_error_from_errno("got_repo_get_path_packed_refs");
1056 598a8b91 2019-03-15 stsp
1057 598a8b91 2019-03-15 stsp err = got_opentemp_named(&tmppath, &tmpf, packed_refs_path);
1058 598a8b91 2019-03-15 stsp if (err)
1059 598a8b91 2019-03-15 stsp goto done;
1060 598a8b91 2019-03-15 stsp
1061 2f17228e 2019-05-12 stsp if (delref->lf == NULL) {
1062 2f17228e 2019-05-12 stsp err = got_lockfile_lock(&lf, packed_refs_path);
1063 2f17228e 2019-05-12 stsp if (err)
1064 2f17228e 2019-05-12 stsp goto done;
1065 2f17228e 2019-05-12 stsp }
1066 598a8b91 2019-03-15 stsp
1067 598a8b91 2019-03-15 stsp f = fopen(packed_refs_path, "r");
1068 598a8b91 2019-03-15 stsp if (f == NULL) {
1069 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", packed_refs_path);
1070 598a8b91 2019-03-15 stsp goto done;
1071 598a8b91 2019-03-15 stsp }
1072 656b1f76 2019-05-11 jcs for (;;) {
1073 598a8b91 2019-03-15 stsp char *line;
1074 598a8b91 2019-03-15 stsp size_t len;
1075 598a8b91 2019-03-15 stsp const char delim[3] = {'\0', '\0', '\0'};
1076 598a8b91 2019-03-15 stsp struct got_reference *ref;
1077 598a8b91 2019-03-15 stsp struct got_reflist_entry *new;
1078 598a8b91 2019-03-15 stsp
1079 598a8b91 2019-03-15 stsp line = fparseln(f, &len, NULL, delim, 0);
1080 598a8b91 2019-03-15 stsp if (line == NULL) {
1081 598a8b91 2019-03-15 stsp if (feof(f))
1082 598a8b91 2019-03-15 stsp break;
1083 598a8b91 2019-03-15 stsp err = got_ferror(f, GOT_ERR_BAD_REF_DATA);
1084 598a8b91 2019-03-15 stsp goto done;
1085 598a8b91 2019-03-15 stsp }
1086 598a8b91 2019-03-15 stsp err = parse_packed_ref_line(&ref, NULL, line);
1087 598a8b91 2019-03-15 stsp free(line);
1088 598a8b91 2019-03-15 stsp if (err)
1089 598a8b91 2019-03-15 stsp goto done;
1090 598a8b91 2019-03-15 stsp if (ref == NULL)
1091 598a8b91 2019-03-15 stsp continue;
1092 598a8b91 2019-03-15 stsp
1093 598a8b91 2019-03-15 stsp if (strcmp(ref->ref.ref.name, delref->ref.ref.name) == 0 &&
1094 598a8b91 2019-03-15 stsp memcmp(ref->ref.ref.sha1, delref->ref.ref.sha1,
1095 598a8b91 2019-03-15 stsp sizeof(delref->ref.ref.sha1)) == 0) {
1096 598a8b91 2019-03-15 stsp found_delref = 1;
1097 598a8b91 2019-03-15 stsp got_ref_close(ref);
1098 598a8b91 2019-03-15 stsp continue;
1099 598a8b91 2019-03-15 stsp }
1100 598a8b91 2019-03-15 stsp
1101 b8bad2ba 2019-08-23 stsp err = insert_ref(&new, &refs, ref, repo,
1102 b8bad2ba 2019-08-23 stsp got_ref_cmp_by_name, NULL);
1103 598a8b91 2019-03-15 stsp if (err || new == NULL /* duplicate */)
1104 598a8b91 2019-03-15 stsp got_ref_close(ref);
1105 598a8b91 2019-03-15 stsp if (err)
1106 598a8b91 2019-03-15 stsp goto done;
1107 598a8b91 2019-03-15 stsp }
1108 598a8b91 2019-03-15 stsp
1109 598a8b91 2019-03-15 stsp if (found_delref) {
1110 598a8b91 2019-03-15 stsp struct got_reflist_entry *re;
1111 598a8b91 2019-03-15 stsp size_t n;
1112 598a8b91 2019-03-15 stsp struct stat sb;
1113 598a8b91 2019-03-15 stsp
1114 598a8b91 2019-03-15 stsp n = fprintf(tmpf, "%s\n", GOT_PACKED_REFS_HEADER);
1115 598a8b91 2019-03-15 stsp if (n != sizeof(GOT_PACKED_REFS_HEADER)) {
1116 598a8b91 2019-03-15 stsp err = got_ferror(f, GOT_ERR_IO);
1117 598a8b91 2019-03-15 stsp goto done;
1118 598a8b91 2019-03-15 stsp }
1119 598a8b91 2019-03-15 stsp
1120 598a8b91 2019-03-15 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
1121 598a8b91 2019-03-15 stsp uint8_t hex[SHA1_DIGEST_STRING_LENGTH];
1122 598a8b91 2019-03-15 stsp
1123 598a8b91 2019-03-15 stsp if (got_sha1_digest_to_str(re->ref->ref.ref.sha1, hex,
1124 598a8b91 2019-03-15 stsp sizeof(hex)) == NULL) {
1125 598a8b91 2019-03-15 stsp err = got_error(GOT_ERR_BAD_REF_DATA);
1126 598a8b91 2019-03-15 stsp goto done;
1127 598a8b91 2019-03-15 stsp }
1128 598a8b91 2019-03-15 stsp n = fprintf(tmpf, "%s ", hex);
1129 598a8b91 2019-03-15 stsp if (n != sizeof(hex)) {
1130 598a8b91 2019-03-15 stsp err = got_ferror(f, GOT_ERR_IO);
1131 598a8b91 2019-03-15 stsp goto done;
1132 598a8b91 2019-03-15 stsp }
1133 598a8b91 2019-03-15 stsp n = fprintf(tmpf, "%s\n", re->ref->ref.ref.name);
1134 598a8b91 2019-03-15 stsp if (n != strlen(re->ref->ref.ref.name) + 1) {
1135 598a8b91 2019-03-15 stsp err = got_ferror(f, GOT_ERR_IO);
1136 598a8b91 2019-03-15 stsp goto done;
1137 598a8b91 2019-03-15 stsp }
1138 598a8b91 2019-03-15 stsp }
1139 598a8b91 2019-03-15 stsp
1140 598a8b91 2019-03-15 stsp if (fflush(tmpf) != 0) {
1141 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
1142 598a8b91 2019-03-15 stsp goto done;
1143 598a8b91 2019-03-15 stsp }
1144 598a8b91 2019-03-15 stsp
1145 598a8b91 2019-03-15 stsp if (stat(packed_refs_path, &sb) != 0) {
1146 598a8b91 2019-03-15 stsp if (errno != ENOENT) {
1147 638f9024 2019-05-13 stsp err = got_error_from_errno2("stat",
1148 230a42bd 2019-05-11 jcs packed_refs_path);
1149 598a8b91 2019-03-15 stsp goto done;
1150 598a8b91 2019-03-15 stsp }
1151 598a8b91 2019-03-15 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
1152 598a8b91 2019-03-15 stsp }
1153 598a8b91 2019-03-15 stsp
1154 598a8b91 2019-03-15 stsp if (rename(tmppath, packed_refs_path) != 0) {
1155 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath,
1156 230a42bd 2019-05-11 jcs packed_refs_path);
1157 598a8b91 2019-03-15 stsp goto done;
1158 598a8b91 2019-03-15 stsp }
1159 598a8b91 2019-03-15 stsp
1160 598a8b91 2019-03-15 stsp if (chmod(packed_refs_path, sb.st_mode) != 0) {
1161 638f9024 2019-05-13 stsp err = got_error_from_errno2("chmod",
1162 230a42bd 2019-05-11 jcs packed_refs_path);
1163 598a8b91 2019-03-15 stsp goto done;
1164 598a8b91 2019-03-15 stsp }
1165 598a8b91 2019-03-15 stsp }
1166 598a8b91 2019-03-15 stsp done:
1167 2f17228e 2019-05-12 stsp if (delref->lf == NULL && lf)
1168 598a8b91 2019-03-15 stsp unlock_err = got_lockfile_unlock(lf);
1169 598a8b91 2019-03-15 stsp if (f) {
1170 598a8b91 2019-03-15 stsp if (fclose(f) != 0 && err == NULL)
1171 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1172 598a8b91 2019-03-15 stsp }
1173 598a8b91 2019-03-15 stsp if (tmpf) {
1174 598a8b91 2019-03-15 stsp unlink(tmppath);
1175 598a8b91 2019-03-15 stsp if (fclose(tmpf) != 0 && err == NULL)
1176 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1177 598a8b91 2019-03-15 stsp }
1178 598a8b91 2019-03-15 stsp free(tmppath);
1179 598a8b91 2019-03-15 stsp free(packed_refs_path);
1180 598a8b91 2019-03-15 stsp got_ref_list_free(&refs);
1181 598a8b91 2019-03-15 stsp return err ? err : unlock_err;
1182 598a8b91 2019-03-15 stsp }
1183 598a8b91 2019-03-15 stsp
1184 2d2e1378 2019-03-11 stsp const struct got_error *
1185 2d2e1378 2019-03-11 stsp got_ref_delete(struct got_reference *ref, struct got_repository *repo)
1186 2d2e1378 2019-03-11 stsp {
1187 2d2e1378 2019-03-11 stsp const struct got_error *err = NULL, *unlock_err = NULL;
1188 2d2e1378 2019-03-11 stsp const char *name = got_ref_get_name(ref);
1189 2d2e1378 2019-03-11 stsp char *path_refs = NULL, *path = NULL;
1190 2d2e1378 2019-03-11 stsp struct got_lockfile *lf = NULL;
1191 2d2e1378 2019-03-11 stsp
1192 598a8b91 2019-03-15 stsp if (ref->flags & GOT_REF_IS_PACKED)
1193 598a8b91 2019-03-15 stsp return delete_packed_ref(ref, repo);
1194 2d2e1378 2019-03-11 stsp
1195 2d2e1378 2019-03-11 stsp path_refs = get_refs_dir_path(repo, name);
1196 2d2e1378 2019-03-11 stsp if (path_refs == NULL) {
1197 638f9024 2019-05-13 stsp err = got_error_from_errno2("get_refs_dir_path", name);
1198 2d2e1378 2019-03-11 stsp goto done;
1199 2d2e1378 2019-03-11 stsp }
1200 2d2e1378 2019-03-11 stsp
1201 2d2e1378 2019-03-11 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1) {
1202 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1203 2d2e1378 2019-03-11 stsp goto done;
1204 9e672c74 2019-03-11 stsp }
1205 2d2e1378 2019-03-11 stsp
1206 2f17228e 2019-05-12 stsp if (ref->lf == NULL) {
1207 2f17228e 2019-05-12 stsp err = got_lockfile_lock(&lf, path);
1208 2f17228e 2019-05-12 stsp if (err)
1209 2f17228e 2019-05-12 stsp goto done;
1210 2f17228e 2019-05-12 stsp }
1211 2d2e1378 2019-03-11 stsp
1212 2d2e1378 2019-03-11 stsp /* XXX: check if old content matches our expectations? */
1213 2d2e1378 2019-03-11 stsp
1214 2d2e1378 2019-03-11 stsp if (unlink(path) != 0)
1215 638f9024 2019-05-13 stsp err = got_error_from_errno2("unlink", path);
1216 2d2e1378 2019-03-11 stsp done:
1217 2f17228e 2019-05-12 stsp if (ref->lf == NULL && lf)
1218 2d2e1378 2019-03-11 stsp unlock_err = got_lockfile_unlock(lf);
1219 2d2e1378 2019-03-11 stsp
1220 2d2e1378 2019-03-11 stsp free(path_refs);
1221 2d2e1378 2019-03-11 stsp free(path);
1222 9e672c74 2019-03-11 stsp return err ? err : unlock_err;
1223 9e672c74 2019-03-11 stsp }
1224 2f17228e 2019-05-12 stsp
1225 2f17228e 2019-05-12 stsp const struct got_error *
1226 2f17228e 2019-05-12 stsp got_ref_unlock(struct got_reference *ref)
1227 2f17228e 2019-05-12 stsp {
1228 2f17228e 2019-05-12 stsp const struct got_error *err;
1229 2f17228e 2019-05-12 stsp err = got_lockfile_unlock(ref->lf);
1230 2f17228e 2019-05-12 stsp ref->lf = NULL;
1231 2f17228e 2019-05-12 stsp return err;
1232 2f17228e 2019-05-12 stsp }