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 aaf88317 2019-07-10 stsp }
298 aaf88317 2019-07-10 stsp
299 aaf88317 2019-07-10 stsp const struct got_error *
300 aaf88317 2019-07-10 stsp got_ref_alloc_symref(struct got_reference **ref, const char *name,
301 aaf88317 2019-07-10 stsp struct got_reference *target_ref)
302 aaf88317 2019-07-10 stsp {
303 aaf88317 2019-07-10 stsp if (!is_valid_ref_name(name))
304 aaf88317 2019-07-10 stsp return got_error(GOT_ERR_BAD_REF_NAME);
305 aaf88317 2019-07-10 stsp
306 aaf88317 2019-07-10 stsp return alloc_symref(ref, name, got_ref_get_name(target_ref), 0);
307 5261c201 2018-04-01 stsp }
308 5261c201 2018-04-01 stsp
309 d1f2edc9 2018-06-13 stsp static const struct got_error *
310 fb79db15 2019-02-01 stsp parse_packed_ref_line(struct got_reference **ref, const char *abs_refname,
311 fb79db15 2019-02-01 stsp const char *line)
312 fb79db15 2019-02-01 stsp {
313 5892cdd6 2019-03-10 stsp struct got_object_id id;
314 5892cdd6 2019-03-10 stsp const char *name;
315 fb79db15 2019-02-01 stsp
316 fb79db15 2019-02-01 stsp *ref = NULL;
317 fb79db15 2019-02-01 stsp
318 532920c8 2019-02-01 stsp if (line[0] == '#' || line[0] == '^')
319 fb79db15 2019-02-01 stsp return NULL;
320 fb79db15 2019-02-01 stsp
321 5892cdd6 2019-03-10 stsp if (!got_parse_sha1_digest(id.sha1, line))
322 30c0868d 2019-02-03 stsp return got_error(GOT_ERR_BAD_REF_DATA);
323 fb79db15 2019-02-01 stsp
324 199a4027 2019-02-02 stsp if (abs_refname) {
325 199a4027 2019-02-02 stsp if (strcmp(line + SHA1_DIGEST_STRING_LENGTH, abs_refname) != 0)
326 199a4027 2019-02-02 stsp return NULL;
327 5892cdd6 2019-03-10 stsp name = abs_refname;
328 5892cdd6 2019-03-10 stsp } else
329 5892cdd6 2019-03-10 stsp name = line + SHA1_DIGEST_STRING_LENGTH;
330 fb79db15 2019-02-01 stsp
331 f9267c9a 2019-03-15 stsp return alloc_ref(ref, name, &id, GOT_REF_IS_PACKED);
332 fb79db15 2019-02-01 stsp }
333 fb79db15 2019-02-01 stsp
334 fb79db15 2019-02-01 stsp static const struct got_error *
335 0dec1cc0 2019-02-01 stsp open_packed_ref(struct got_reference **ref, FILE *f, const char **subdirs,
336 0dec1cc0 2019-02-01 stsp int nsubdirs, const char *refname)
337 fb79db15 2019-02-01 stsp {
338 fb79db15 2019-02-01 stsp const struct got_error *err = NULL;
339 fb79db15 2019-02-01 stsp char *abs_refname;
340 fb79db15 2019-02-01 stsp char *line;
341 fb79db15 2019-02-01 stsp size_t len;
342 fb79db15 2019-02-01 stsp const char delim[3] = {'\0', '\0', '\0'};
343 0dec1cc0 2019-02-01 stsp int i, ref_is_absolute = (strncmp(refname, "refs/", 5) == 0);
344 fb79db15 2019-02-01 stsp
345 1e37702e 2019-02-04 stsp *ref = NULL;
346 1e37702e 2019-02-04 stsp
347 0dec1cc0 2019-02-01 stsp if (ref_is_absolute)
348 0dec1cc0 2019-02-01 stsp abs_refname = (char *)refname;
349 fb79db15 2019-02-01 stsp do {
350 fb79db15 2019-02-01 stsp line = fparseln(f, &len, NULL, delim, 0);
351 7ab0422a 2019-03-15 stsp if (line == NULL) {
352 7ab0422a 2019-03-15 stsp if (feof(f))
353 7ab0422a 2019-03-15 stsp break;
354 7ab0422a 2019-03-15 stsp err = got_ferror(f, GOT_ERR_BAD_REF_DATA);
355 fb79db15 2019-02-01 stsp break;
356 7ab0422a 2019-03-15 stsp }
357 0dec1cc0 2019-02-01 stsp for (i = 0; i < nsubdirs; i++) {
358 0dec1cc0 2019-02-01 stsp if (!ref_is_absolute &&
359 0dec1cc0 2019-02-01 stsp asprintf(&abs_refname, "refs/%s/%s", subdirs[i],
360 0dec1cc0 2019-02-01 stsp refname) == -1)
361 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
362 0dec1cc0 2019-02-01 stsp err = parse_packed_ref_line(ref, abs_refname, line);
363 0dec1cc0 2019-02-01 stsp if (!ref_is_absolute)
364 0dec1cc0 2019-02-01 stsp free(abs_refname);
365 532920c8 2019-02-01 stsp if (err || *ref != NULL)
366 0dec1cc0 2019-02-01 stsp break;
367 0dec1cc0 2019-02-01 stsp }
368 fb79db15 2019-02-01 stsp free(line);
369 fb79db15 2019-02-01 stsp if (err)
370 fb79db15 2019-02-01 stsp break;
371 fb79db15 2019-02-01 stsp } while (*ref == NULL);
372 fb79db15 2019-02-01 stsp
373 fb79db15 2019-02-01 stsp return err;
374 fb79db15 2019-02-01 stsp }
375 fb79db15 2019-02-01 stsp
376 fb79db15 2019-02-01 stsp static const struct got_error *
377 d1f2edc9 2018-06-13 stsp open_ref(struct got_reference **ref, const char *path_refs, const char *subdir,
378 2f17228e 2019-05-12 stsp const char *name, int lock)
379 d1f2edc9 2018-06-13 stsp {
380 d1f2edc9 2018-06-13 stsp const struct got_error *err = NULL;
381 a04f49d2 2019-02-04 stsp char *path = NULL;
382 a04f49d2 2019-02-04 stsp char *absname = NULL;
383 a04f49d2 2019-02-04 stsp int ref_is_absolute = (strncmp(name, "refs/", 5) == 0);
384 a04f49d2 2019-02-04 stsp int ref_is_well_known = is_well_known_ref(name);
385 d1f2edc9 2018-06-13 stsp
386 1e37702e 2019-02-04 stsp *ref = NULL;
387 1e37702e 2019-02-04 stsp
388 a04f49d2 2019-02-04 stsp if (ref_is_absolute || ref_is_well_known) {
389 a04f49d2 2019-02-04 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1)
390 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
391 a04f49d2 2019-02-04 stsp absname = (char *)name;
392 a04f49d2 2019-02-04 stsp } else {
393 58908ed0 2019-03-11 stsp if (asprintf(&path, "%s/%s%s%s", path_refs, subdir,
394 58908ed0 2019-03-11 stsp subdir[0] ? "/" : "", name) == -1)
395 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
396 d1f2edc9 2018-06-13 stsp
397 58908ed0 2019-03-11 stsp if (asprintf(&absname, "refs/%s%s%s",
398 58908ed0 2019-03-11 stsp subdir, subdir[0] ? "/" : "", name) == -1) {
399 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
400 a04f49d2 2019-02-04 stsp goto done;
401 a04f49d2 2019-02-04 stsp }
402 a04f49d2 2019-02-04 stsp }
403 a04f49d2 2019-02-04 stsp
404 6e472252 2019-07-22 stsp err = parse_ref_file(ref, absname, path, 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 return err;
410 d1f2edc9 2018-06-13 stsp }
411 d1f2edc9 2018-06-13 stsp
412 5261c201 2018-04-01 stsp const struct got_error *
413 5261c201 2018-04-01 stsp got_ref_open(struct got_reference **ref, struct got_repository *repo,
414 2f17228e 2019-05-12 stsp const char *refname, int lock)
415 5261c201 2018-04-01 stsp {
416 5261c201 2018-04-01 stsp const struct got_error *err = NULL;
417 c5f754cc 2019-02-01 stsp char *path_refs = NULL;
418 fb79db15 2019-02-01 stsp const char *subdirs[] = {
419 fb79db15 2019-02-01 stsp GOT_REF_HEADS, GOT_REF_TAGS, GOT_REF_REMOTES
420 fb79db15 2019-02-01 stsp };
421 c5f754cc 2019-02-01 stsp int i, well_known = is_well_known_ref(refname);
422 a875589a 2019-05-12 stsp struct got_lockfile *lf = NULL;
423 1e37702e 2019-02-04 stsp
424 1e37702e 2019-02-04 stsp *ref = NULL;
425 e135804e 2019-02-10 stsp
426 e135804e 2019-02-10 stsp path_refs = get_refs_dir_path(repo, refname);
427 e135804e 2019-02-10 stsp if (path_refs == NULL) {
428 638f9024 2019-05-13 stsp err = got_error_from_errno2("get_refs_dir_path", refname);
429 e135804e 2019-02-10 stsp goto done;
430 e135804e 2019-02-10 stsp }
431 5261c201 2018-04-01 stsp
432 0885ce8f 2019-05-12 stsp if (well_known) {
433 0885ce8f 2019-05-12 stsp err = open_ref(ref, path_refs, "", refname, lock);
434 0885ce8f 2019-05-12 stsp } else {
435 c5f754cc 2019-02-01 stsp char *packed_refs_path;
436 c5f754cc 2019-02-01 stsp FILE *f;
437 c5f754cc 2019-02-01 stsp
438 e135804e 2019-02-10 stsp /* Search on-disk refs before packed refs! */
439 e135804e 2019-02-10 stsp for (i = 0; i < nitems(subdirs); i++) {
440 2f17228e 2019-05-12 stsp err = open_ref(ref, path_refs, subdirs[i], refname,
441 2f17228e 2019-05-12 stsp lock);
442 e135804e 2019-02-10 stsp if (err || *ref)
443 e135804e 2019-02-10 stsp goto done;
444 e135804e 2019-02-10 stsp }
445 e135804e 2019-02-10 stsp
446 c5f754cc 2019-02-01 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
447 e135804e 2019-02-10 stsp if (packed_refs_path == NULL) {
448 638f9024 2019-05-13 stsp err = got_error_from_errno(
449 230a42bd 2019-05-11 jcs "got_repo_get_path_packed_refs");
450 e135804e 2019-02-10 stsp goto done;
451 e135804e 2019-02-10 stsp }
452 c5f754cc 2019-02-01 stsp
453 2f17228e 2019-05-12 stsp if (lock) {
454 a875589a 2019-05-12 stsp err = got_lockfile_lock(&lf, packed_refs_path);
455 2f17228e 2019-05-12 stsp if (err)
456 2f17228e 2019-05-12 stsp goto done;
457 2f17228e 2019-05-12 stsp }
458 c5f754cc 2019-02-01 stsp f = fopen(packed_refs_path, "rb");
459 c5f754cc 2019-02-01 stsp free(packed_refs_path);
460 c5f754cc 2019-02-01 stsp if (f != NULL) {
461 0dec1cc0 2019-02-01 stsp err = open_packed_ref(ref, f, subdirs, nitems(subdirs),
462 0dec1cc0 2019-02-01 stsp refname);
463 a875589a 2019-05-12 stsp if (!err) {
464 a875589a 2019-05-12 stsp if (fclose(f) != 0) {
465 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
466 a875589a 2019-05-12 stsp got_ref_close(*ref);
467 a875589a 2019-05-12 stsp *ref = NULL;
468 6e472abb 2019-05-13 stsp } else if (*ref)
469 a875589a 2019-05-12 stsp (*ref)->lf = lf;
470 a875589a 2019-05-12 stsp }
471 fb79db15 2019-02-01 stsp }
472 fb79db15 2019-02-01 stsp }
473 e135804e 2019-02-10 stsp done:
474 5b575c25 2019-05-12 stsp if (!err && *ref == NULL)
475 1e37702e 2019-02-04 stsp err = got_error_not_ref(refname);
476 a875589a 2019-05-12 stsp if (err && lf)
477 a875589a 2019-05-12 stsp got_lockfile_unlock(lf);
478 5261c201 2018-04-01 stsp free(path_refs);
479 5261c201 2018-04-01 stsp return err;
480 5261c201 2018-04-01 stsp }
481 5261c201 2018-04-01 stsp
482 5261c201 2018-04-01 stsp void
483 5261c201 2018-04-01 stsp got_ref_close(struct got_reference *ref)
484 5261c201 2018-04-01 stsp {
485 e09d28b1 2019-03-15 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
486 5261c201 2018-04-01 stsp free(ref->ref.symref.name);
487 e09d28b1 2019-03-15 stsp free(ref->ref.symref.ref);
488 e09d28b1 2019-03-15 stsp } else
489 5261c201 2018-04-01 stsp free(ref->ref.ref.name);
490 5261c201 2018-04-01 stsp free(ref);
491 5261c201 2018-04-01 stsp }
492 5261c201 2018-04-01 stsp
493 5261c201 2018-04-01 stsp struct got_reference *
494 5261c201 2018-04-01 stsp got_ref_dup(struct got_reference *ref)
495 5261c201 2018-04-01 stsp {
496 5261c201 2018-04-01 stsp struct got_reference *ret;
497 5261c201 2018-04-01 stsp
498 5261c201 2018-04-01 stsp ret = calloc(1, sizeof(*ret));
499 5261c201 2018-04-01 stsp if (ret == NULL)
500 5261c201 2018-04-01 stsp return NULL;
501 5261c201 2018-04-01 stsp
502 5261c201 2018-04-01 stsp ret->flags = ref->flags;
503 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
504 5261c201 2018-04-01 stsp ret->ref.symref.name = strdup(ref->ref.symref.name);
505 5261c201 2018-04-01 stsp if (ret->ref.symref.name == NULL) {
506 5261c201 2018-04-01 stsp free(ret);
507 5261c201 2018-04-01 stsp return NULL;
508 5261c201 2018-04-01 stsp }
509 5261c201 2018-04-01 stsp ret->ref.symref.ref = strdup(ref->ref.symref.ref);
510 5261c201 2018-04-01 stsp if (ret->ref.symref.ref == NULL) {
511 5261c201 2018-04-01 stsp free(ret->ref.symref.name);
512 5261c201 2018-04-01 stsp free(ret);
513 5261c201 2018-04-01 stsp return NULL;
514 5261c201 2018-04-01 stsp }
515 5261c201 2018-04-01 stsp } else {
516 5261c201 2018-04-01 stsp ref->ref.ref.name = strdup(ref->ref.ref.name);
517 5261c201 2018-04-01 stsp if (ref->ref.ref.name == NULL) {
518 5261c201 2018-04-01 stsp free(ret);
519 5261c201 2018-04-01 stsp return NULL;
520 5261c201 2018-04-01 stsp }
521 5261c201 2018-04-01 stsp memcpy(ret->ref.ref.sha1, ref->ref.ref.sha1,
522 80d5fc1f 2019-03-15 stsp sizeof(ret->ref.ref.sha1));
523 5261c201 2018-04-01 stsp }
524 5261c201 2018-04-01 stsp
525 5261c201 2018-04-01 stsp return ret;
526 5261c201 2018-04-01 stsp }
527 5261c201 2018-04-01 stsp
528 5261c201 2018-04-01 stsp static const struct got_error *
529 5261c201 2018-04-01 stsp resolve_symbolic_ref(struct got_reference **resolved,
530 5261c201 2018-04-01 stsp struct got_repository *repo, struct got_reference *ref)
531 5261c201 2018-04-01 stsp {
532 5261c201 2018-04-01 stsp struct got_reference *nextref;
533 5261c201 2018-04-01 stsp const struct got_error *err;
534 5261c201 2018-04-01 stsp
535 2f17228e 2019-05-12 stsp err = got_ref_open(&nextref, repo, ref->ref.symref.ref, 0);
536 5261c201 2018-04-01 stsp if (err)
537 5261c201 2018-04-01 stsp return err;
538 5261c201 2018-04-01 stsp
539 5261c201 2018-04-01 stsp if (nextref->flags & GOT_REF_IS_SYMBOLIC)
540 5261c201 2018-04-01 stsp err = resolve_symbolic_ref(resolved, repo, nextref);
541 5261c201 2018-04-01 stsp else
542 5261c201 2018-04-01 stsp *resolved = got_ref_dup(nextref);
543 5261c201 2018-04-01 stsp
544 5261c201 2018-04-01 stsp got_ref_close(nextref);
545 5261c201 2018-04-01 stsp return err;
546 5261c201 2018-04-01 stsp }
547 5261c201 2018-04-01 stsp
548 5261c201 2018-04-01 stsp const struct got_error *
549 5261c201 2018-04-01 stsp got_ref_resolve(struct got_object_id **id, struct got_repository *repo,
550 5261c201 2018-04-01 stsp struct got_reference *ref)
551 5261c201 2018-04-01 stsp {
552 5261c201 2018-04-01 stsp const struct got_error *err;
553 5261c201 2018-04-01 stsp
554 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
555 5261c201 2018-04-01 stsp struct got_reference *resolved = NULL;
556 5261c201 2018-04-01 stsp err = resolve_symbolic_ref(&resolved, repo, ref);
557 5261c201 2018-04-01 stsp if (err == NULL)
558 5261c201 2018-04-01 stsp err = got_ref_resolve(id, repo, resolved);
559 57b6f99a 2019-04-13 stsp if (resolved)
560 57b6f99a 2019-04-13 stsp got_ref_close(resolved);
561 5261c201 2018-04-01 stsp return err;
562 5261c201 2018-04-01 stsp }
563 5261c201 2018-04-01 stsp
564 5261c201 2018-04-01 stsp *id = calloc(1, sizeof(**id));
565 5261c201 2018-04-01 stsp if (*id == NULL)
566 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
567 80d5fc1f 2019-03-15 stsp memcpy((*id)->sha1, ref->ref.ref.sha1, sizeof((*id)->sha1));
568 5261c201 2018-04-01 stsp return NULL;
569 5261c201 2018-04-01 stsp }
570 5261c201 2018-04-01 stsp
571 5261c201 2018-04-01 stsp char *
572 5261c201 2018-04-01 stsp got_ref_to_str(struct got_reference *ref)
573 5261c201 2018-04-01 stsp {
574 5261c201 2018-04-01 stsp char *str;
575 271d2a38 2018-12-25 stsp
576 271d2a38 2018-12-25 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
577 271d2a38 2018-12-25 stsp return strdup(ref->ref.symref.ref);
578 271d2a38 2018-12-25 stsp
579 271d2a38 2018-12-25 stsp str = malloc(SHA1_DIGEST_STRING_LENGTH);
580 271d2a38 2018-12-25 stsp if (str == NULL)
581 271d2a38 2018-12-25 stsp return NULL;
582 271d2a38 2018-12-25 stsp
583 271d2a38 2018-12-25 stsp if (got_sha1_digest_to_str(ref->ref.ref.sha1, str,
584 271d2a38 2018-12-25 stsp SHA1_DIGEST_STRING_LENGTH) == NULL) {
585 271d2a38 2018-12-25 stsp free(str);
586 271d2a38 2018-12-25 stsp return NULL;
587 5261c201 2018-04-01 stsp }
588 5261c201 2018-04-01 stsp
589 5261c201 2018-04-01 stsp return str;
590 5261c201 2018-04-01 stsp }
591 0bd18d37 2019-02-01 stsp
592 0bd18d37 2019-02-01 stsp const char *
593 0bd18d37 2019-02-01 stsp got_ref_get_name(struct got_reference *ref)
594 0bd18d37 2019-02-01 stsp {
595 0bd18d37 2019-02-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
596 0bd18d37 2019-02-01 stsp return ref->ref.symref.name;
597 0bd18d37 2019-02-01 stsp
598 0bd18d37 2019-02-01 stsp return ref->ref.ref.name;
599 199a4027 2019-02-02 stsp }
600 199a4027 2019-02-02 stsp
601 aaf88317 2019-07-10 stsp const char *
602 aaf88317 2019-07-10 stsp got_ref_get_symref_target(struct got_reference *ref)
603 aaf88317 2019-07-10 stsp {
604 aaf88317 2019-07-10 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
605 aaf88317 2019-07-10 stsp return ref->ref.symref.ref;
606 aaf88317 2019-07-10 stsp
607 aaf88317 2019-07-10 stsp return NULL;
608 aaf88317 2019-07-10 stsp }
609 aaf88317 2019-07-10 stsp
610 199a4027 2019-02-02 stsp static const struct got_error *
611 505287be 2019-03-15 stsp insert_ref(struct got_reflist_entry **newp, struct got_reflist_head *refs,
612 505287be 2019-03-15 stsp struct got_reference *ref, struct got_repository *repo)
613 199a4027 2019-02-02 stsp {
614 199a4027 2019-02-02 stsp const struct got_error *err;
615 199a4027 2019-02-02 stsp struct got_object_id *id;
616 6249107b 2019-03-15 stsp struct got_reflist_entry *new, *re, *prev = NULL;
617 e397b6db 2019-02-04 stsp int cmp;
618 7a3c76f5 2019-02-05 stsp
619 505287be 2019-03-15 stsp *newp = NULL;
620 505287be 2019-03-15 stsp
621 7a3c76f5 2019-02-05 stsp err = got_ref_resolve(&id, repo, ref);
622 7a3c76f5 2019-02-05 stsp if (err)
623 7a3c76f5 2019-02-05 stsp return err;
624 29b5c214 2019-02-04 stsp
625 6fdbf7b0 2019-03-15 stsp new = malloc(sizeof(*new));
626 7a3c76f5 2019-02-05 stsp if (new == NULL) {
627 7a3c76f5 2019-02-05 stsp free(id);
628 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
629 7a3c76f5 2019-02-05 stsp }
630 7a3c76f5 2019-02-05 stsp new->ref = ref;
631 7a3c76f5 2019-02-05 stsp new->id = id;
632 505287be 2019-03-15 stsp *newp = new;
633 7a3c76f5 2019-02-05 stsp
634 29b5c214 2019-02-04 stsp /*
635 29b5c214 2019-02-04 stsp * We must de-duplicate entries on insert because packed-refs may
636 29b5c214 2019-02-04 stsp * contain redundant entries. On-disk refs take precedence.
637 29b5c214 2019-02-04 stsp * This code assumes that on-disk revs are read before packed-refs.
638 e397b6db 2019-02-04 stsp * We're iterating the list anyway, so insert elements sorted by name.
639 29b5c214 2019-02-04 stsp */
640 7a3c76f5 2019-02-05 stsp re = SIMPLEQ_FIRST(refs);
641 7a3c76f5 2019-02-05 stsp while (re) {
642 7a3c76f5 2019-02-05 stsp cmp = got_path_cmp(got_ref_get_name(re->ref),
643 27a1ed03 2019-03-15 stsp got_ref_get_name(new->ref));
644 e397b6db 2019-02-04 stsp if (cmp == 0) {
645 27a1ed03 2019-03-15 stsp /* duplicate */
646 27a1ed03 2019-03-15 stsp free(new->id);
647 27a1ed03 2019-03-15 stsp free(new);
648 505287be 2019-03-15 stsp *newp = NULL;
649 7a3c76f5 2019-02-05 stsp return NULL;
650 7a3c76f5 2019-02-05 stsp } else if (cmp > 0) {
651 7a3c76f5 2019-02-05 stsp if (prev)
652 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_AFTER(refs, prev, new, entry);
653 7a3c76f5 2019-02-05 stsp else
654 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_HEAD(refs, new, entry);
655 7a3c76f5 2019-02-05 stsp return NULL;
656 7a3c76f5 2019-02-05 stsp } else {
657 e397b6db 2019-02-04 stsp prev = re;
658 7a3c76f5 2019-02-05 stsp re = SIMPLEQ_NEXT(re, entry);
659 7a3c76f5 2019-02-05 stsp }
660 29b5c214 2019-02-04 stsp }
661 199a4027 2019-02-02 stsp
662 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_TAIL(refs, new, entry);
663 199a4027 2019-02-02 stsp return NULL;
664 0bd18d37 2019-02-01 stsp }
665 199a4027 2019-02-02 stsp
666 a04f49d2 2019-02-04 stsp static const struct got_error *
667 29b5c214 2019-02-04 stsp gather_on_disk_refs(struct got_reflist_head *refs, const char *path_refs,
668 a04f49d2 2019-02-04 stsp const char *subdir, struct got_repository *repo)
669 a04f49d2 2019-02-04 stsp {
670 a04f49d2 2019-02-04 stsp const struct got_error *err = NULL;
671 a04f49d2 2019-02-04 stsp DIR *d = NULL;
672 a04f49d2 2019-02-04 stsp char *path_subdir;
673 a04f49d2 2019-02-04 stsp
674 a04f49d2 2019-02-04 stsp if (asprintf(&path_subdir, "%s/%s", path_refs, subdir) == -1)
675 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
676 a04f49d2 2019-02-04 stsp
677 a04f49d2 2019-02-04 stsp d = opendir(path_subdir);
678 a04f49d2 2019-02-04 stsp if (d == NULL)
679 a04f49d2 2019-02-04 stsp goto done;
680 a04f49d2 2019-02-04 stsp
681 656b1f76 2019-05-11 jcs for (;;) {
682 a04f49d2 2019-02-04 stsp struct dirent *dent;
683 a04f49d2 2019-02-04 stsp struct got_reference *ref;
684 a04f49d2 2019-02-04 stsp char *child;
685 a04f49d2 2019-02-04 stsp
686 a04f49d2 2019-02-04 stsp dent = readdir(d);
687 a04f49d2 2019-02-04 stsp if (dent == NULL)
688 a04f49d2 2019-02-04 stsp break;
689 a04f49d2 2019-02-04 stsp
690 a04f49d2 2019-02-04 stsp if (strcmp(dent->d_name, ".") == 0 ||
691 a04f49d2 2019-02-04 stsp strcmp(dent->d_name, "..") == 0)
692 a04f49d2 2019-02-04 stsp continue;
693 a04f49d2 2019-02-04 stsp
694 a04f49d2 2019-02-04 stsp switch (dent->d_type) {
695 a04f49d2 2019-02-04 stsp case DT_REG:
696 2f17228e 2019-05-12 stsp err = open_ref(&ref, path_refs, subdir, dent->d_name,
697 2f17228e 2019-05-12 stsp 0);
698 1e37702e 2019-02-04 stsp if (err)
699 a04f49d2 2019-02-04 stsp goto done;
700 a04f49d2 2019-02-04 stsp if (ref) {
701 505287be 2019-03-15 stsp struct got_reflist_entry *new;
702 505287be 2019-03-15 stsp err = insert_ref(&new, refs, ref, repo);
703 505287be 2019-03-15 stsp if (err || new == NULL /* duplicate */)
704 505287be 2019-03-15 stsp got_ref_close(ref);
705 a04f49d2 2019-02-04 stsp if (err)
706 a04f49d2 2019-02-04 stsp goto done;
707 a04f49d2 2019-02-04 stsp }
708 a04f49d2 2019-02-04 stsp break;
709 a04f49d2 2019-02-04 stsp case DT_DIR:
710 a04f49d2 2019-02-04 stsp if (asprintf(&child, "%s%s%s", subdir,
711 a04f49d2 2019-02-04 stsp subdir[0] == '\0' ? "" : "/", dent->d_name) == -1) {
712 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
713 a04f49d2 2019-02-04 stsp break;
714 a04f49d2 2019-02-04 stsp }
715 29b5c214 2019-02-04 stsp err = gather_on_disk_refs(refs, path_refs, child, repo);
716 a04f49d2 2019-02-04 stsp free(child);
717 a04f49d2 2019-02-04 stsp break;
718 a04f49d2 2019-02-04 stsp default:
719 a04f49d2 2019-02-04 stsp break;
720 a04f49d2 2019-02-04 stsp }
721 a04f49d2 2019-02-04 stsp }
722 a04f49d2 2019-02-04 stsp done:
723 a04f49d2 2019-02-04 stsp if (d)
724 a04f49d2 2019-02-04 stsp closedir(d);
725 a04f49d2 2019-02-04 stsp free(path_subdir);
726 a04f49d2 2019-02-04 stsp return err;
727 a04f49d2 2019-02-04 stsp }
728 a04f49d2 2019-02-04 stsp
729 199a4027 2019-02-02 stsp const struct got_error *
730 199a4027 2019-02-02 stsp got_ref_list(struct got_reflist_head *refs, struct got_repository *repo)
731 199a4027 2019-02-02 stsp {
732 199a4027 2019-02-02 stsp const struct got_error *err;
733 a04f49d2 2019-02-04 stsp char *packed_refs_path, *path_refs = NULL;
734 29b5c214 2019-02-04 stsp FILE *f = NULL;
735 199a4027 2019-02-02 stsp struct got_reference *ref;
736 505287be 2019-03-15 stsp struct got_reflist_entry *new;
737 199a4027 2019-02-02 stsp
738 29b5c214 2019-02-04 stsp /* HEAD ref should always exist. */
739 29b5c214 2019-02-04 stsp path_refs = get_refs_dir_path(repo, GOT_REF_HEAD);
740 29b5c214 2019-02-04 stsp if (path_refs == NULL) {
741 638f9024 2019-05-13 stsp err = got_error_from_errno("get_refs_dir_path");
742 29b5c214 2019-02-04 stsp goto done;
743 29b5c214 2019-02-04 stsp }
744 2f17228e 2019-05-12 stsp err = open_ref(&ref, path_refs, "", GOT_REF_HEAD, 0);
745 29b5c214 2019-02-04 stsp if (err)
746 29b5c214 2019-02-04 stsp goto done;
747 505287be 2019-03-15 stsp err = insert_ref(&new, refs, ref, repo);
748 505287be 2019-03-15 stsp if (err || new == NULL /* duplicate */)
749 505287be 2019-03-15 stsp got_ref_close(ref);
750 29b5c214 2019-02-04 stsp if (err)
751 29b5c214 2019-02-04 stsp goto done;
752 29b5c214 2019-02-04 stsp
753 29b5c214 2019-02-04 stsp /* Gather on-disk refs before parsing packed-refs. */
754 29b5c214 2019-02-04 stsp free(path_refs);
755 29b5c214 2019-02-04 stsp path_refs = get_refs_dir_path(repo, "");
756 29b5c214 2019-02-04 stsp if (path_refs == NULL) {
757 638f9024 2019-05-13 stsp err = got_error_from_errno("get_refs_dir_path");
758 29b5c214 2019-02-04 stsp goto done;
759 29b5c214 2019-02-04 stsp }
760 29b5c214 2019-02-04 stsp err = gather_on_disk_refs(refs, path_refs, "", repo);
761 29b5c214 2019-02-04 stsp if (err)
762 29b5c214 2019-02-04 stsp goto done;
763 29b5c214 2019-02-04 stsp
764 29b5c214 2019-02-04 stsp /*
765 29b5c214 2019-02-04 stsp * The packed-refs file may contain redundant entries, in which
766 29b5c214 2019-02-04 stsp * case on-disk refs take precedence.
767 29b5c214 2019-02-04 stsp */
768 199a4027 2019-02-02 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
769 29b5c214 2019-02-04 stsp if (packed_refs_path == NULL) {
770 638f9024 2019-05-13 stsp err = got_error_from_errno("got_repo_get_path_packed_refs");
771 29b5c214 2019-02-04 stsp goto done;
772 29b5c214 2019-02-04 stsp }
773 199a4027 2019-02-02 stsp
774 199a4027 2019-02-02 stsp f = fopen(packed_refs_path, "r");
775 199a4027 2019-02-02 stsp free(packed_refs_path);
776 199a4027 2019-02-02 stsp if (f) {
777 199a4027 2019-02-02 stsp char *line;
778 199a4027 2019-02-02 stsp size_t len;
779 199a4027 2019-02-02 stsp const char delim[3] = {'\0', '\0', '\0'};
780 656b1f76 2019-05-11 jcs for (;;) {
781 199a4027 2019-02-02 stsp line = fparseln(f, &len, NULL, delim, 0);
782 0bb4abae 2019-03-15 stsp if (line == NULL) {
783 0bb4abae 2019-03-15 stsp if (feof(f))
784 0bb4abae 2019-03-15 stsp break;
785 0bb4abae 2019-03-15 stsp err = got_ferror(f, GOT_ERR_BAD_REF_DATA);
786 0bb4abae 2019-03-15 stsp goto done;
787 0bb4abae 2019-03-15 stsp }
788 199a4027 2019-02-02 stsp err = parse_packed_ref_line(&ref, NULL, line);
789 0bb4abae 2019-03-15 stsp free(line);
790 199a4027 2019-02-02 stsp if (err)
791 199a4027 2019-02-02 stsp goto done;
792 76b4ead2 2019-02-03 stsp if (ref) {
793 505287be 2019-03-15 stsp err = insert_ref(&new, refs, ref, repo);
794 505287be 2019-03-15 stsp if (err || new == NULL /* duplicate */)
795 505287be 2019-03-15 stsp got_ref_close(ref);
796 76b4ead2 2019-02-03 stsp if (err)
797 76b4ead2 2019-02-03 stsp goto done;
798 76b4ead2 2019-02-03 stsp }
799 199a4027 2019-02-02 stsp }
800 199a4027 2019-02-02 stsp }
801 199a4027 2019-02-02 stsp done:
802 a04f49d2 2019-02-04 stsp free(path_refs);
803 fb43ecf1 2019-02-11 stsp if (f && fclose(f) != 0 && err == NULL)
804 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
805 199a4027 2019-02-02 stsp return err;
806 199a4027 2019-02-02 stsp }
807 9e672c74 2019-03-11 stsp
808 e2e879a0 2019-03-11 stsp void
809 e2e879a0 2019-03-11 stsp got_ref_list_free(struct got_reflist_head *refs)
810 e2e879a0 2019-03-11 stsp {
811 e2e879a0 2019-03-11 stsp struct got_reflist_entry *re;
812 e2e879a0 2019-03-11 stsp
813 e2e879a0 2019-03-11 stsp while (!SIMPLEQ_EMPTY(refs)) {
814 e2e879a0 2019-03-11 stsp re = SIMPLEQ_FIRST(refs);
815 e2e879a0 2019-03-11 stsp SIMPLEQ_REMOVE_HEAD(refs, entry);
816 e2e879a0 2019-03-11 stsp got_ref_close(re->ref);
817 e2e879a0 2019-03-11 stsp free(re->id);
818 e2e879a0 2019-03-11 stsp free(re);
819 e2e879a0 2019-03-11 stsp }
820 b249b824 2019-05-09 stsp
821 b249b824 2019-05-09 stsp }
822 b249b824 2019-05-09 stsp
823 b249b824 2019-05-09 stsp int
824 b249b824 2019-05-09 stsp got_ref_is_symbolic(struct got_reference *ref)
825 b249b824 2019-05-09 stsp {
826 b249b824 2019-05-09 stsp return (ref->flags & GOT_REF_IS_SYMBOLIC);
827 b249b824 2019-05-09 stsp }
828 b249b824 2019-05-09 stsp
829 b249b824 2019-05-09 stsp const struct got_error *
830 b249b824 2019-05-09 stsp got_ref_change_ref(struct got_reference *ref, struct got_object_id *id)
831 b249b824 2019-05-09 stsp {
832 b249b824 2019-05-09 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
833 b249b824 2019-05-09 stsp return got_error(GOT_ERR_BAD_REF_TYPE);
834 e2e879a0 2019-03-11 stsp
835 b249b824 2019-05-09 stsp memcpy(ref->ref.ref.sha1, id->sha1, sizeof(ref->ref.ref.sha1));
836 b249b824 2019-05-09 stsp return NULL;
837 e2e879a0 2019-03-11 stsp }
838 e2e879a0 2019-03-11 stsp
839 9e672c74 2019-03-11 stsp const struct got_error *
840 b249b824 2019-05-09 stsp got_ref_change_symref(struct got_reference *ref, char *refname)
841 b249b824 2019-05-09 stsp {
842 b249b824 2019-05-09 stsp char *new_name;
843 b249b824 2019-05-09 stsp
844 b249b824 2019-05-09 stsp if ((ref->flags & GOT_REF_IS_SYMBOLIC) == 0)
845 b249b824 2019-05-09 stsp return got_error(GOT_ERR_BAD_REF_TYPE);
846 b249b824 2019-05-09 stsp
847 b249b824 2019-05-09 stsp new_name = strdup(refname);
848 b249b824 2019-05-09 stsp if (new_name == NULL)
849 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
850 b249b824 2019-05-09 stsp
851 b249b824 2019-05-09 stsp free(ref->ref.symref.name);
852 b249b824 2019-05-09 stsp ref->ref.symref.name = new_name;
853 b249b824 2019-05-09 stsp return NULL;
854 b249b824 2019-05-09 stsp }
855 b249b824 2019-05-09 stsp
856 b249b824 2019-05-09 stsp const struct got_error *
857 9e672c74 2019-03-11 stsp got_ref_write(struct got_reference *ref, struct got_repository *repo)
858 9e672c74 2019-03-11 stsp {
859 9e672c74 2019-03-11 stsp const struct got_error *err = NULL, *unlock_err = NULL;
860 9e672c74 2019-03-11 stsp const char *name = got_ref_get_name(ref);
861 9e672c74 2019-03-11 stsp char *path_refs = NULL, *path = NULL, *tmppath = NULL;
862 9e672c74 2019-03-11 stsp struct got_lockfile *lf = NULL;
863 9e672c74 2019-03-11 stsp FILE *f = NULL;
864 9e672c74 2019-03-11 stsp size_t n;
865 9e672c74 2019-03-11 stsp struct stat sb;
866 9e672c74 2019-03-11 stsp
867 9e672c74 2019-03-11 stsp path_refs = get_refs_dir_path(repo, name);
868 9e672c74 2019-03-11 stsp if (path_refs == NULL) {
869 638f9024 2019-05-13 stsp err = got_error_from_errno2("get_refs_dir_path", name);
870 9e672c74 2019-03-11 stsp goto done;
871 9e672c74 2019-03-11 stsp }
872 9e672c74 2019-03-11 stsp
873 9e672c74 2019-03-11 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1) {
874 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
875 9e672c74 2019-03-11 stsp goto done;
876 9e672c74 2019-03-11 stsp }
877 9e672c74 2019-03-11 stsp
878 9e672c74 2019-03-11 stsp err = got_opentemp_named(&tmppath, &f, path);
879 49c7094f 2019-03-11 stsp if (err) {
880 d1667f0d 2019-03-11 stsp char *parent;
881 49c7094f 2019-03-11 stsp if (!(err->code == GOT_ERR_ERRNO && errno == ENOENT))
882 5e1c9f23 2019-03-11 stsp goto done;
883 d1667f0d 2019-03-11 stsp err = got_path_dirname(&parent, path);
884 d1667f0d 2019-03-11 stsp if (err)
885 0cd1c46a 2019-03-11 stsp goto done;
886 0cd1c46a 2019-03-11 stsp err = got_path_mkdir(parent);
887 5e1c9f23 2019-03-11 stsp free(parent);
888 0cd1c46a 2019-03-11 stsp if (err)
889 0cd1c46a 2019-03-11 stsp goto done;
890 0cd1c46a 2019-03-11 stsp err = got_opentemp_named(&tmppath, &f, path);
891 49c7094f 2019-03-11 stsp if (err)
892 0cd1c46a 2019-03-11 stsp goto done;
893 9e672c74 2019-03-11 stsp }
894 9e672c74 2019-03-11 stsp
895 9e672c74 2019-03-11 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
896 9e672c74 2019-03-11 stsp n = fprintf(f, "ref: %s\n", ref->ref.symref.ref);
897 9e672c74 2019-03-11 stsp if (n != strlen(ref->ref.symref.ref) + 6) {
898 9e672c74 2019-03-11 stsp err = got_ferror(f, GOT_ERR_IO);
899 9e672c74 2019-03-11 stsp goto done;
900 9e672c74 2019-03-11 stsp }
901 9e672c74 2019-03-11 stsp } else {
902 9e672c74 2019-03-11 stsp char hex[SHA1_DIGEST_STRING_LENGTH];
903 9e672c74 2019-03-11 stsp if (got_sha1_digest_to_str(ref->ref.ref.sha1, hex,
904 9e672c74 2019-03-11 stsp sizeof(hex)) == NULL) {
905 9e672c74 2019-03-11 stsp err = got_error(GOT_ERR_BAD_REF_DATA);
906 9e672c74 2019-03-11 stsp goto done;
907 9e672c74 2019-03-11 stsp }
908 9e672c74 2019-03-11 stsp n = fprintf(f, "%s\n", hex);
909 8fa2f096 2019-03-11 stsp if (n != sizeof(hex)) {
910 9e672c74 2019-03-11 stsp err = got_ferror(f, GOT_ERR_IO);
911 9e672c74 2019-03-11 stsp goto done;
912 9e672c74 2019-03-11 stsp }
913 9e672c74 2019-03-11 stsp }
914 9e672c74 2019-03-11 stsp
915 2f17228e 2019-05-12 stsp if (ref->lf == NULL) {
916 2f17228e 2019-05-12 stsp err = got_lockfile_lock(&lf, path);
917 2f17228e 2019-05-12 stsp if (err)
918 2f17228e 2019-05-12 stsp goto done;
919 2f17228e 2019-05-12 stsp }
920 9e672c74 2019-03-11 stsp
921 9e672c74 2019-03-11 stsp /* XXX: check if old content matches our expectations? */
922 9e672c74 2019-03-11 stsp
923 0cd1c46a 2019-03-11 stsp if (stat(path, &sb) != 0) {
924 0cd1c46a 2019-03-11 stsp if (errno != ENOENT) {
925 638f9024 2019-05-13 stsp err = got_error_from_errno2("stat", path);
926 0cd1c46a 2019-03-11 stsp goto done;
927 0cd1c46a 2019-03-11 stsp }
928 0cd1c46a 2019-03-11 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
929 9e672c74 2019-03-11 stsp }
930 9e672c74 2019-03-11 stsp
931 9e672c74 2019-03-11 stsp if (rename(tmppath, path) != 0) {
932 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath, path);
933 9e672c74 2019-03-11 stsp goto done;
934 9e672c74 2019-03-11 stsp }
935 9e672c74 2019-03-11 stsp free(tmppath);
936 9e672c74 2019-03-11 stsp tmppath = NULL;
937 9e672c74 2019-03-11 stsp
938 9e672c74 2019-03-11 stsp if (chmod(path, sb.st_mode) != 0) {
939 638f9024 2019-05-13 stsp err = got_error_from_errno2("chmod", path);
940 9e672c74 2019-03-11 stsp goto done;
941 9e672c74 2019-03-11 stsp }
942 9e672c74 2019-03-11 stsp done:
943 2f17228e 2019-05-12 stsp if (ref->lf == NULL && lf)
944 9e672c74 2019-03-11 stsp unlock_err = got_lockfile_unlock(lf);
945 9e672c74 2019-03-11 stsp if (f) {
946 9e672c74 2019-03-11 stsp if (fclose(f) != 0 && err == NULL)
947 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
948 9e672c74 2019-03-11 stsp }
949 9e672c74 2019-03-11 stsp free(path_refs);
950 9e672c74 2019-03-11 stsp free(path);
951 9e672c74 2019-03-11 stsp if (tmppath) {
952 9e672c74 2019-03-11 stsp if (unlink(tmppath) != 0 && err == NULL)
953 638f9024 2019-05-13 stsp err = got_error_from_errno2("unlink", tmppath);
954 9e672c74 2019-03-11 stsp free(tmppath);
955 2d2e1378 2019-03-11 stsp }
956 2d2e1378 2019-03-11 stsp return err ? err : unlock_err;
957 2d2e1378 2019-03-11 stsp }
958 598a8b91 2019-03-15 stsp
959 598a8b91 2019-03-15 stsp static const struct got_error *
960 598a8b91 2019-03-15 stsp delete_packed_ref(struct got_reference *delref, struct got_repository *repo)
961 598a8b91 2019-03-15 stsp {
962 598a8b91 2019-03-15 stsp const struct got_error *err = NULL, *unlock_err = NULL;
963 598a8b91 2019-03-15 stsp struct got_lockfile *lf = NULL;
964 598a8b91 2019-03-15 stsp FILE *f = NULL, *tmpf = NULL;
965 598a8b91 2019-03-15 stsp char *packed_refs_path, *tmppath = NULL;
966 598a8b91 2019-03-15 stsp struct got_reflist_head refs;
967 598a8b91 2019-03-15 stsp int found_delref = 0;
968 2d2e1378 2019-03-11 stsp
969 598a8b91 2019-03-15 stsp /* The packed-refs file does not cotain symbolic references. */
970 598a8b91 2019-03-15 stsp if (delref->flags & GOT_REF_IS_SYMBOLIC)
971 598a8b91 2019-03-15 stsp return got_error(GOT_ERR_BAD_REF_DATA);
972 598a8b91 2019-03-15 stsp
973 598a8b91 2019-03-15 stsp SIMPLEQ_INIT(&refs);
974 598a8b91 2019-03-15 stsp
975 598a8b91 2019-03-15 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
976 598a8b91 2019-03-15 stsp if (packed_refs_path == NULL)
977 638f9024 2019-05-13 stsp return got_error_from_errno("got_repo_get_path_packed_refs");
978 598a8b91 2019-03-15 stsp
979 598a8b91 2019-03-15 stsp err = got_opentemp_named(&tmppath, &tmpf, packed_refs_path);
980 598a8b91 2019-03-15 stsp if (err)
981 598a8b91 2019-03-15 stsp goto done;
982 598a8b91 2019-03-15 stsp
983 2f17228e 2019-05-12 stsp if (delref->lf == NULL) {
984 2f17228e 2019-05-12 stsp err = got_lockfile_lock(&lf, packed_refs_path);
985 2f17228e 2019-05-12 stsp if (err)
986 2f17228e 2019-05-12 stsp goto done;
987 2f17228e 2019-05-12 stsp }
988 598a8b91 2019-03-15 stsp
989 598a8b91 2019-03-15 stsp f = fopen(packed_refs_path, "r");
990 598a8b91 2019-03-15 stsp if (f == NULL) {
991 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", packed_refs_path);
992 598a8b91 2019-03-15 stsp goto done;
993 598a8b91 2019-03-15 stsp }
994 656b1f76 2019-05-11 jcs for (;;) {
995 598a8b91 2019-03-15 stsp char *line;
996 598a8b91 2019-03-15 stsp size_t len;
997 598a8b91 2019-03-15 stsp const char delim[3] = {'\0', '\0', '\0'};
998 598a8b91 2019-03-15 stsp struct got_reference *ref;
999 598a8b91 2019-03-15 stsp struct got_reflist_entry *new;
1000 598a8b91 2019-03-15 stsp
1001 598a8b91 2019-03-15 stsp line = fparseln(f, &len, NULL, delim, 0);
1002 598a8b91 2019-03-15 stsp if (line == NULL) {
1003 598a8b91 2019-03-15 stsp if (feof(f))
1004 598a8b91 2019-03-15 stsp break;
1005 598a8b91 2019-03-15 stsp err = got_ferror(f, GOT_ERR_BAD_REF_DATA);
1006 598a8b91 2019-03-15 stsp goto done;
1007 598a8b91 2019-03-15 stsp }
1008 598a8b91 2019-03-15 stsp err = parse_packed_ref_line(&ref, NULL, line);
1009 598a8b91 2019-03-15 stsp free(line);
1010 598a8b91 2019-03-15 stsp if (err)
1011 598a8b91 2019-03-15 stsp goto done;
1012 598a8b91 2019-03-15 stsp if (ref == NULL)
1013 598a8b91 2019-03-15 stsp continue;
1014 598a8b91 2019-03-15 stsp
1015 598a8b91 2019-03-15 stsp if (strcmp(ref->ref.ref.name, delref->ref.ref.name) == 0 &&
1016 598a8b91 2019-03-15 stsp memcmp(ref->ref.ref.sha1, delref->ref.ref.sha1,
1017 598a8b91 2019-03-15 stsp sizeof(delref->ref.ref.sha1)) == 0) {
1018 598a8b91 2019-03-15 stsp found_delref = 1;
1019 598a8b91 2019-03-15 stsp got_ref_close(ref);
1020 598a8b91 2019-03-15 stsp continue;
1021 598a8b91 2019-03-15 stsp }
1022 598a8b91 2019-03-15 stsp
1023 598a8b91 2019-03-15 stsp err = insert_ref(&new, &refs, ref, repo);
1024 598a8b91 2019-03-15 stsp if (err || new == NULL /* duplicate */)
1025 598a8b91 2019-03-15 stsp got_ref_close(ref);
1026 598a8b91 2019-03-15 stsp if (err)
1027 598a8b91 2019-03-15 stsp goto done;
1028 598a8b91 2019-03-15 stsp }
1029 598a8b91 2019-03-15 stsp
1030 598a8b91 2019-03-15 stsp if (found_delref) {
1031 598a8b91 2019-03-15 stsp struct got_reflist_entry *re;
1032 598a8b91 2019-03-15 stsp size_t n;
1033 598a8b91 2019-03-15 stsp struct stat sb;
1034 598a8b91 2019-03-15 stsp
1035 598a8b91 2019-03-15 stsp n = fprintf(tmpf, "%s\n", GOT_PACKED_REFS_HEADER);
1036 598a8b91 2019-03-15 stsp if (n != sizeof(GOT_PACKED_REFS_HEADER)) {
1037 598a8b91 2019-03-15 stsp err = got_ferror(f, GOT_ERR_IO);
1038 598a8b91 2019-03-15 stsp goto done;
1039 598a8b91 2019-03-15 stsp }
1040 598a8b91 2019-03-15 stsp
1041 598a8b91 2019-03-15 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
1042 598a8b91 2019-03-15 stsp uint8_t hex[SHA1_DIGEST_STRING_LENGTH];
1043 598a8b91 2019-03-15 stsp
1044 598a8b91 2019-03-15 stsp if (got_sha1_digest_to_str(re->ref->ref.ref.sha1, hex,
1045 598a8b91 2019-03-15 stsp sizeof(hex)) == NULL) {
1046 598a8b91 2019-03-15 stsp err = got_error(GOT_ERR_BAD_REF_DATA);
1047 598a8b91 2019-03-15 stsp goto done;
1048 598a8b91 2019-03-15 stsp }
1049 598a8b91 2019-03-15 stsp n = fprintf(tmpf, "%s ", hex);
1050 598a8b91 2019-03-15 stsp if (n != sizeof(hex)) {
1051 598a8b91 2019-03-15 stsp err = got_ferror(f, GOT_ERR_IO);
1052 598a8b91 2019-03-15 stsp goto done;
1053 598a8b91 2019-03-15 stsp }
1054 598a8b91 2019-03-15 stsp n = fprintf(tmpf, "%s\n", re->ref->ref.ref.name);
1055 598a8b91 2019-03-15 stsp if (n != strlen(re->ref->ref.ref.name) + 1) {
1056 598a8b91 2019-03-15 stsp err = got_ferror(f, GOT_ERR_IO);
1057 598a8b91 2019-03-15 stsp goto done;
1058 598a8b91 2019-03-15 stsp }
1059 598a8b91 2019-03-15 stsp }
1060 598a8b91 2019-03-15 stsp
1061 598a8b91 2019-03-15 stsp if (fflush(tmpf) != 0) {
1062 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
1063 598a8b91 2019-03-15 stsp goto done;
1064 598a8b91 2019-03-15 stsp }
1065 598a8b91 2019-03-15 stsp
1066 598a8b91 2019-03-15 stsp if (stat(packed_refs_path, &sb) != 0) {
1067 598a8b91 2019-03-15 stsp if (errno != ENOENT) {
1068 638f9024 2019-05-13 stsp err = got_error_from_errno2("stat",
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 sb.st_mode = GOT_DEFAULT_FILE_MODE;
1073 598a8b91 2019-03-15 stsp }
1074 598a8b91 2019-03-15 stsp
1075 598a8b91 2019-03-15 stsp if (rename(tmppath, packed_refs_path) != 0) {
1076 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath,
1077 230a42bd 2019-05-11 jcs packed_refs_path);
1078 598a8b91 2019-03-15 stsp goto done;
1079 598a8b91 2019-03-15 stsp }
1080 598a8b91 2019-03-15 stsp
1081 598a8b91 2019-03-15 stsp if (chmod(packed_refs_path, sb.st_mode) != 0) {
1082 638f9024 2019-05-13 stsp err = got_error_from_errno2("chmod",
1083 230a42bd 2019-05-11 jcs packed_refs_path);
1084 598a8b91 2019-03-15 stsp goto done;
1085 598a8b91 2019-03-15 stsp }
1086 598a8b91 2019-03-15 stsp }
1087 598a8b91 2019-03-15 stsp done:
1088 2f17228e 2019-05-12 stsp if (delref->lf == NULL && lf)
1089 598a8b91 2019-03-15 stsp unlock_err = got_lockfile_unlock(lf);
1090 598a8b91 2019-03-15 stsp if (f) {
1091 598a8b91 2019-03-15 stsp if (fclose(f) != 0 && err == NULL)
1092 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1093 598a8b91 2019-03-15 stsp }
1094 598a8b91 2019-03-15 stsp if (tmpf) {
1095 598a8b91 2019-03-15 stsp unlink(tmppath);
1096 598a8b91 2019-03-15 stsp if (fclose(tmpf) != 0 && err == NULL)
1097 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1098 598a8b91 2019-03-15 stsp }
1099 598a8b91 2019-03-15 stsp free(tmppath);
1100 598a8b91 2019-03-15 stsp free(packed_refs_path);
1101 598a8b91 2019-03-15 stsp got_ref_list_free(&refs);
1102 598a8b91 2019-03-15 stsp return err ? err : unlock_err;
1103 598a8b91 2019-03-15 stsp }
1104 598a8b91 2019-03-15 stsp
1105 2d2e1378 2019-03-11 stsp const struct got_error *
1106 2d2e1378 2019-03-11 stsp got_ref_delete(struct got_reference *ref, struct got_repository *repo)
1107 2d2e1378 2019-03-11 stsp {
1108 2d2e1378 2019-03-11 stsp const struct got_error *err = NULL, *unlock_err = NULL;
1109 2d2e1378 2019-03-11 stsp const char *name = got_ref_get_name(ref);
1110 2d2e1378 2019-03-11 stsp char *path_refs = NULL, *path = NULL;
1111 2d2e1378 2019-03-11 stsp struct got_lockfile *lf = NULL;
1112 2d2e1378 2019-03-11 stsp
1113 598a8b91 2019-03-15 stsp if (ref->flags & GOT_REF_IS_PACKED)
1114 598a8b91 2019-03-15 stsp return delete_packed_ref(ref, repo);
1115 2d2e1378 2019-03-11 stsp
1116 2d2e1378 2019-03-11 stsp path_refs = get_refs_dir_path(repo, name);
1117 2d2e1378 2019-03-11 stsp if (path_refs == NULL) {
1118 638f9024 2019-05-13 stsp err = got_error_from_errno2("get_refs_dir_path", name);
1119 2d2e1378 2019-03-11 stsp goto done;
1120 2d2e1378 2019-03-11 stsp }
1121 2d2e1378 2019-03-11 stsp
1122 2d2e1378 2019-03-11 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1) {
1123 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1124 2d2e1378 2019-03-11 stsp goto done;
1125 9e672c74 2019-03-11 stsp }
1126 2d2e1378 2019-03-11 stsp
1127 2f17228e 2019-05-12 stsp if (ref->lf == NULL) {
1128 2f17228e 2019-05-12 stsp err = got_lockfile_lock(&lf, path);
1129 2f17228e 2019-05-12 stsp if (err)
1130 2f17228e 2019-05-12 stsp goto done;
1131 2f17228e 2019-05-12 stsp }
1132 2d2e1378 2019-03-11 stsp
1133 2d2e1378 2019-03-11 stsp /* XXX: check if old content matches our expectations? */
1134 2d2e1378 2019-03-11 stsp
1135 2d2e1378 2019-03-11 stsp if (unlink(path) != 0)
1136 638f9024 2019-05-13 stsp err = got_error_from_errno2("unlink", path);
1137 2d2e1378 2019-03-11 stsp done:
1138 2f17228e 2019-05-12 stsp if (ref->lf == NULL && lf)
1139 2d2e1378 2019-03-11 stsp unlock_err = got_lockfile_unlock(lf);
1140 2d2e1378 2019-03-11 stsp
1141 2d2e1378 2019-03-11 stsp free(path_refs);
1142 2d2e1378 2019-03-11 stsp free(path);
1143 9e672c74 2019-03-11 stsp return err ? err : unlock_err;
1144 9e672c74 2019-03-11 stsp }
1145 2f17228e 2019-05-12 stsp
1146 2f17228e 2019-05-12 stsp const struct got_error *
1147 2f17228e 2019-05-12 stsp got_ref_unlock(struct got_reference *ref)
1148 2f17228e 2019-05-12 stsp {
1149 2f17228e 2019-05-12 stsp const struct got_error *err;
1150 2f17228e 2019-05-12 stsp err = got_lockfile_unlock(ref->lf);
1151 2f17228e 2019-05-12 stsp ref->lf = NULL;
1152 2f17228e 2019-05-12 stsp return err;
1153 2f17228e 2019-05-12 stsp }