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