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 5261c201 2018-04-01 stsp
32 5261c201 2018-04-01 stsp #include "got_error.h"
33 5261c201 2018-04-01 stsp #include "got_object.h"
34 5261c201 2018-04-01 stsp #include "got_repository.h"
35 5261c201 2018-04-01 stsp #include "got_reference.h"
36 9e672c74 2019-03-11 stsp #include "got_opentemp.h"
37 5261c201 2018-04-01 stsp
38 5261c201 2018-04-01 stsp #include "got_lib_sha1.h"
39 5261c201 2018-04-01 stsp #include "got_lib_path.h"
40 5261c201 2018-04-01 stsp #include "got_lib_delta.h"
41 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
42 5261c201 2018-04-01 stsp #include "got_lib_object.h"
43 f77a24b0 2019-03-11 stsp #include "got_lib_lockfile.h"
44 5261c201 2018-04-01 stsp
45 fb79db15 2019-02-01 stsp #ifndef nitems
46 fb79db15 2019-02-01 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
47 fb79db15 2019-02-01 stsp #endif
48 fb79db15 2019-02-01 stsp
49 d1f2edc9 2018-06-13 stsp #define GOT_REF_HEADS "heads"
50 d1f2edc9 2018-06-13 stsp #define GOT_REF_TAGS "tags"
51 d1f2edc9 2018-06-13 stsp #define GOT_REF_REMOTES "remotes"
52 d1f2edc9 2018-06-13 stsp
53 5261c201 2018-04-01 stsp /* A symbolic reference. */
54 5261c201 2018-04-01 stsp struct got_symref {
55 5261c201 2018-04-01 stsp char *name;
56 5261c201 2018-04-01 stsp char *ref;
57 5261c201 2018-04-01 stsp };
58 5261c201 2018-04-01 stsp
59 5261c201 2018-04-01 stsp /* A non-symbolic reference (there is no better designation). */
60 5261c201 2018-04-01 stsp struct got_ref {
61 5261c201 2018-04-01 stsp char *name;
62 5261c201 2018-04-01 stsp u_int8_t sha1[SHA1_DIGEST_LENGTH];
63 5261c201 2018-04-01 stsp };
64 5261c201 2018-04-01 stsp
65 5261c201 2018-04-01 stsp /* A reference which points to an arbitrary object. */
66 5261c201 2018-04-01 stsp struct got_reference {
67 5261c201 2018-04-01 stsp unsigned int flags;
68 5261c201 2018-04-01 stsp #define GOT_REF_IS_SYMBOLIC 0x01
69 5261c201 2018-04-01 stsp
70 5261c201 2018-04-01 stsp union {
71 5261c201 2018-04-01 stsp struct got_ref ref;
72 5261c201 2018-04-01 stsp struct got_symref symref;
73 5261c201 2018-04-01 stsp } ref;
74 5261c201 2018-04-01 stsp };
75 5261c201 2018-04-01 stsp
76 5261c201 2018-04-01 stsp static const struct got_error *
77 5261c201 2018-04-01 stsp parse_symref(struct got_reference **ref, const char *name, const char *line)
78 5261c201 2018-04-01 stsp {
79 5261c201 2018-04-01 stsp struct got_symref *symref;
80 5261c201 2018-04-01 stsp char *symref_name;
81 5261c201 2018-04-01 stsp char *symref_ref;
82 5261c201 2018-04-01 stsp
83 5261c201 2018-04-01 stsp if (line[0] == '\0')
84 30c0868d 2019-02-03 stsp return got_error(GOT_ERR_BAD_REF_DATA);
85 5261c201 2018-04-01 stsp
86 5261c201 2018-04-01 stsp symref_name = strdup(name);
87 5261c201 2018-04-01 stsp if (symref_name == NULL)
88 5261c201 2018-04-01 stsp return got_error_from_errno();
89 5261c201 2018-04-01 stsp symref_ref = strdup(line);
90 5261c201 2018-04-01 stsp if (symref_ref == NULL) {
91 5261c201 2018-04-01 stsp const struct got_error *err = got_error_from_errno();
92 5261c201 2018-04-01 stsp free(symref_name);
93 5261c201 2018-04-01 stsp return err;
94 5261c201 2018-04-01 stsp }
95 5261c201 2018-04-01 stsp
96 5261c201 2018-04-01 stsp *ref = calloc(1, sizeof(**ref));
97 5261c201 2018-04-01 stsp if (*ref == NULL)
98 5261c201 2018-04-01 stsp return got_error_from_errno();
99 5261c201 2018-04-01 stsp (*ref)->flags |= GOT_REF_IS_SYMBOLIC;
100 5261c201 2018-04-01 stsp symref = &((*ref)->ref.symref);
101 5261c201 2018-04-01 stsp symref->name = symref_name;
102 5261c201 2018-04-01 stsp symref->ref = symref_ref;
103 5261c201 2018-04-01 stsp return NULL;
104 5261c201 2018-04-01 stsp }
105 5261c201 2018-04-01 stsp
106 5261c201 2018-04-01 stsp static const struct got_error *
107 5261c201 2018-04-01 stsp parse_ref_line(struct got_reference **ref, const char *name, const char *line)
108 5261c201 2018-04-01 stsp {
109 5892cdd6 2019-03-10 stsp struct got_object_id id;
110 5261c201 2018-04-01 stsp
111 5261c201 2018-04-01 stsp if (strncmp(line, "ref: ", 5) == 0) {
112 5261c201 2018-04-01 stsp line += 5;
113 5261c201 2018-04-01 stsp return parse_symref(ref, name, line);
114 5261c201 2018-04-01 stsp }
115 5261c201 2018-04-01 stsp
116 5892cdd6 2019-03-10 stsp if (!got_parse_sha1_digest(id.sha1, line))
117 30c0868d 2019-02-03 stsp return got_error(GOT_ERR_BAD_REF_DATA);
118 5261c201 2018-04-01 stsp
119 5892cdd6 2019-03-10 stsp return got_ref_alloc(ref, name, &id);
120 5261c201 2018-04-01 stsp }
121 5261c201 2018-04-01 stsp
122 5261c201 2018-04-01 stsp static const struct got_error *
123 5261c201 2018-04-01 stsp parse_ref_file(struct got_reference **ref, const char *name,
124 5261c201 2018-04-01 stsp const char *abspath)
125 5261c201 2018-04-01 stsp {
126 5261c201 2018-04-01 stsp const struct got_error *err = NULL;
127 5261c201 2018-04-01 stsp FILE *f = fopen(abspath, "rb");
128 5261c201 2018-04-01 stsp char *line;
129 5261c201 2018-04-01 stsp size_t len;
130 5261c201 2018-04-01 stsp const char delim[3] = {'\0', '\0', '\0'};
131 5261c201 2018-04-01 stsp
132 5261c201 2018-04-01 stsp if (f == NULL)
133 1e37702e 2019-02-04 stsp return NULL;
134 5261c201 2018-04-01 stsp
135 5261c201 2018-04-01 stsp line = fparseln(f, &len, NULL, delim, 0);
136 5261c201 2018-04-01 stsp if (line == NULL) {
137 30c0868d 2019-02-03 stsp err = got_error(GOT_ERR_BAD_REF_DATA);
138 5261c201 2018-04-01 stsp goto done;
139 5261c201 2018-04-01 stsp }
140 5261c201 2018-04-01 stsp
141 5261c201 2018-04-01 stsp err = parse_ref_line(ref, name, line);
142 5261c201 2018-04-01 stsp done:
143 5261c201 2018-04-01 stsp free(line);
144 fb43ecf1 2019-02-11 stsp if (fclose(f) != 0 && err == NULL)
145 fb43ecf1 2019-02-11 stsp err = got_error_from_errno();
146 5261c201 2018-04-01 stsp return err;
147 5261c201 2018-04-01 stsp }
148 5261c201 2018-04-01 stsp
149 c5f754cc 2019-02-01 stsp static int
150 c5f754cc 2019-02-01 stsp is_well_known_ref(const char *refname)
151 5261c201 2018-04-01 stsp {
152 c5f754cc 2019-02-01 stsp return (strcmp(refname, GOT_REF_HEAD) == 0 ||
153 5261c201 2018-04-01 stsp strcmp(refname, GOT_REF_ORIG_HEAD) == 0 ||
154 5261c201 2018-04-01 stsp strcmp(refname, GOT_REF_MERGE_HEAD) == 0 ||
155 c5f754cc 2019-02-01 stsp strcmp(refname, GOT_REF_FETCH_HEAD) == 0);
156 c5f754cc 2019-02-01 stsp }
157 c5f754cc 2019-02-01 stsp
158 c5f754cc 2019-02-01 stsp static char *
159 c5f754cc 2019-02-01 stsp get_refs_dir_path(struct got_repository *repo, const char *refname)
160 c5f754cc 2019-02-01 stsp {
161 c5f754cc 2019-02-01 stsp if (is_well_known_ref(refname) || strncmp(refname, "refs/", 5) == 0)
162 6e9da951 2019-01-06 stsp return strdup(got_repo_get_path_git_dir(repo));
163 5261c201 2018-04-01 stsp
164 5261c201 2018-04-01 stsp return got_repo_get_path_refs(repo);
165 f77a24b0 2019-03-11 stsp }
166 f77a24b0 2019-03-11 stsp
167 f77a24b0 2019-03-11 stsp static int
168 f77a24b0 2019-03-11 stsp is_valid_ref_name(const char *name)
169 f77a24b0 2019-03-11 stsp {
170 f77a24b0 2019-03-11 stsp const char *s, *slash, *seg;
171 f77a24b0 2019-03-11 stsp const char forbidden[] = { ' ', '~', '^', ':', '?', '*', '[' , '\\' };
172 f77a24b0 2019-03-11 stsp const char *forbidden_seq[] = { "//", "..", "@{" };
173 f77a24b0 2019-03-11 stsp const char *lfs = GOT_LOCKFILE_SUFFIX;
174 f77a24b0 2019-03-11 stsp const size_t lfs_len = sizeof(GOT_LOCKFILE_SUFFIX) - 1;
175 f77a24b0 2019-03-11 stsp int i;
176 f77a24b0 2019-03-11 stsp
177 f77a24b0 2019-03-11 stsp if (name[0] == '@' && name[1] == '\0')
178 f77a24b0 2019-03-11 stsp return 0;
179 f77a24b0 2019-03-11 stsp
180 f77a24b0 2019-03-11 stsp slash = strchr(name, '/');
181 f77a24b0 2019-03-11 stsp if (slash == NULL)
182 f77a24b0 2019-03-11 stsp return 0;
183 f77a24b0 2019-03-11 stsp
184 f77a24b0 2019-03-11 stsp s = name;
185 f77a24b0 2019-03-11 stsp seg = s;
186 f77a24b0 2019-03-11 stsp if (seg[0] == '\0' || seg[0] == '.' || seg[0] == '/')
187 f77a24b0 2019-03-11 stsp return 0;
188 f77a24b0 2019-03-11 stsp while (*s) {
189 f77a24b0 2019-03-11 stsp for (i = 0; i < nitems(forbidden); i++) {
190 f77a24b0 2019-03-11 stsp if (*s == forbidden[i])
191 f77a24b0 2019-03-11 stsp return 0;
192 f77a24b0 2019-03-11 stsp }
193 f77a24b0 2019-03-11 stsp for (i = 0; i < nitems(forbidden_seq); i++) {
194 f77a24b0 2019-03-11 stsp if (s[0] == forbidden_seq[i][0] &&
195 f77a24b0 2019-03-11 stsp s[1] == forbidden_seq[i][1])
196 f77a24b0 2019-03-11 stsp return 0;
197 f77a24b0 2019-03-11 stsp }
198 f77a24b0 2019-03-11 stsp if (iscntrl((unsigned char)s[0]))
199 f77a24b0 2019-03-11 stsp return 0;
200 f77a24b0 2019-03-11 stsp if (s[0] == '.' && s[1] == '\0')
201 f77a24b0 2019-03-11 stsp return 0;
202 f77a24b0 2019-03-11 stsp if (*s == '/') {
203 f77a24b0 2019-03-11 stsp const char *nextseg = s + 1;
204 f77a24b0 2019-03-11 stsp if (nextseg[0] == '\0' || nextseg[0] == '.' ||
205 f77a24b0 2019-03-11 stsp nextseg[0] == '/')
206 f77a24b0 2019-03-11 stsp return 0;
207 f77a24b0 2019-03-11 stsp if (seg <= s - lfs_len &&
208 f77a24b0 2019-03-11 stsp strncmp(s - lfs_len, lfs, lfs_len) == 0)
209 f77a24b0 2019-03-11 stsp return 0;
210 f77a24b0 2019-03-11 stsp seg = nextseg;
211 f77a24b0 2019-03-11 stsp }
212 f77a24b0 2019-03-11 stsp s++;
213 f77a24b0 2019-03-11 stsp }
214 f77a24b0 2019-03-11 stsp
215 f77a24b0 2019-03-11 stsp if (seg <= s - lfs_len &&
216 f77a24b0 2019-03-11 stsp strncmp(s - lfs_len, lfs, lfs_len) == 0)
217 f77a24b0 2019-03-11 stsp return 0;
218 f77a24b0 2019-03-11 stsp
219 f77a24b0 2019-03-11 stsp return 1;
220 5892cdd6 2019-03-10 stsp }
221 5892cdd6 2019-03-10 stsp
222 5892cdd6 2019-03-10 stsp const struct got_error *
223 5892cdd6 2019-03-10 stsp got_ref_alloc(struct got_reference **ref, const char *name,
224 5892cdd6 2019-03-10 stsp struct got_object_id *id)
225 5892cdd6 2019-03-10 stsp {
226 5892cdd6 2019-03-10 stsp const struct got_error *err = NULL;
227 5892cdd6 2019-03-10 stsp
228 f77a24b0 2019-03-11 stsp if (!is_valid_ref_name(name))
229 f77a24b0 2019-03-11 stsp return got_error(GOT_ERR_BAD_REF_NAME);
230 f77a24b0 2019-03-11 stsp
231 5892cdd6 2019-03-10 stsp *ref = calloc(1, sizeof(**ref));
232 5892cdd6 2019-03-10 stsp if (*ref == NULL)
233 5892cdd6 2019-03-10 stsp return got_error_from_errno();
234 5892cdd6 2019-03-10 stsp
235 5892cdd6 2019-03-10 stsp memcpy(&(*ref)->ref.ref.sha1, id->sha1, SHA1_DIGEST_LENGTH);
236 5892cdd6 2019-03-10 stsp (*ref)->ref.ref.name = strdup(name);
237 5892cdd6 2019-03-10 stsp if ((*ref)->ref.ref.name == NULL) {
238 5892cdd6 2019-03-10 stsp err = got_error_from_errno();
239 5892cdd6 2019-03-10 stsp free(*ref);
240 5892cdd6 2019-03-10 stsp *ref = NULL;
241 5892cdd6 2019-03-10 stsp }
242 5892cdd6 2019-03-10 stsp return err;
243 5261c201 2018-04-01 stsp }
244 5261c201 2018-04-01 stsp
245 d1f2edc9 2018-06-13 stsp static const struct got_error *
246 fb79db15 2019-02-01 stsp parse_packed_ref_line(struct got_reference **ref, const char *abs_refname,
247 fb79db15 2019-02-01 stsp const char *line)
248 fb79db15 2019-02-01 stsp {
249 5892cdd6 2019-03-10 stsp struct got_object_id id;
250 5892cdd6 2019-03-10 stsp const char *name;
251 fb79db15 2019-02-01 stsp
252 fb79db15 2019-02-01 stsp *ref = NULL;
253 fb79db15 2019-02-01 stsp
254 532920c8 2019-02-01 stsp if (line[0] == '#' || line[0] == '^')
255 fb79db15 2019-02-01 stsp return NULL;
256 fb79db15 2019-02-01 stsp
257 5892cdd6 2019-03-10 stsp if (!got_parse_sha1_digest(id.sha1, line))
258 30c0868d 2019-02-03 stsp return got_error(GOT_ERR_BAD_REF_DATA);
259 fb79db15 2019-02-01 stsp
260 199a4027 2019-02-02 stsp if (abs_refname) {
261 199a4027 2019-02-02 stsp if (strcmp(line + SHA1_DIGEST_STRING_LENGTH, abs_refname) != 0)
262 199a4027 2019-02-02 stsp return NULL;
263 5892cdd6 2019-03-10 stsp name = abs_refname;
264 5892cdd6 2019-03-10 stsp } else
265 5892cdd6 2019-03-10 stsp name = line + SHA1_DIGEST_STRING_LENGTH;
266 fb79db15 2019-02-01 stsp
267 5892cdd6 2019-03-10 stsp return got_ref_alloc(ref, name, &id);
268 fb79db15 2019-02-01 stsp }
269 fb79db15 2019-02-01 stsp
270 fb79db15 2019-02-01 stsp static const struct got_error *
271 0dec1cc0 2019-02-01 stsp open_packed_ref(struct got_reference **ref, FILE *f, const char **subdirs,
272 0dec1cc0 2019-02-01 stsp int nsubdirs, const char *refname)
273 fb79db15 2019-02-01 stsp {
274 fb79db15 2019-02-01 stsp const struct got_error *err = NULL;
275 fb79db15 2019-02-01 stsp char *abs_refname;
276 fb79db15 2019-02-01 stsp char *line;
277 fb79db15 2019-02-01 stsp size_t len;
278 fb79db15 2019-02-01 stsp const char delim[3] = {'\0', '\0', '\0'};
279 0dec1cc0 2019-02-01 stsp int i, ref_is_absolute = (strncmp(refname, "refs/", 5) == 0);
280 fb79db15 2019-02-01 stsp
281 1e37702e 2019-02-04 stsp *ref = NULL;
282 1e37702e 2019-02-04 stsp
283 0dec1cc0 2019-02-01 stsp if (ref_is_absolute)
284 0dec1cc0 2019-02-01 stsp abs_refname = (char *)refname;
285 fb79db15 2019-02-01 stsp do {
286 fb79db15 2019-02-01 stsp line = fparseln(f, &len, NULL, delim, 0);
287 1e37702e 2019-02-04 stsp if (line == NULL)
288 fb79db15 2019-02-01 stsp break;
289 0dec1cc0 2019-02-01 stsp for (i = 0; i < nsubdirs; i++) {
290 0dec1cc0 2019-02-01 stsp if (!ref_is_absolute &&
291 0dec1cc0 2019-02-01 stsp asprintf(&abs_refname, "refs/%s/%s", subdirs[i],
292 0dec1cc0 2019-02-01 stsp refname) == -1)
293 0dec1cc0 2019-02-01 stsp return got_error_from_errno();
294 0dec1cc0 2019-02-01 stsp err = parse_packed_ref_line(ref, abs_refname, line);
295 0dec1cc0 2019-02-01 stsp if (!ref_is_absolute)
296 0dec1cc0 2019-02-01 stsp free(abs_refname);
297 532920c8 2019-02-01 stsp if (err || *ref != NULL)
298 0dec1cc0 2019-02-01 stsp break;
299 0dec1cc0 2019-02-01 stsp }
300 fb79db15 2019-02-01 stsp free(line);
301 fb79db15 2019-02-01 stsp if (err)
302 fb79db15 2019-02-01 stsp break;
303 fb79db15 2019-02-01 stsp } while (*ref == NULL);
304 fb79db15 2019-02-01 stsp
305 fb79db15 2019-02-01 stsp return err;
306 fb79db15 2019-02-01 stsp }
307 fb79db15 2019-02-01 stsp
308 fb79db15 2019-02-01 stsp static const struct got_error *
309 d1f2edc9 2018-06-13 stsp open_ref(struct got_reference **ref, const char *path_refs, const char *subdir,
310 a04f49d2 2019-02-04 stsp const char *name)
311 d1f2edc9 2018-06-13 stsp {
312 d1f2edc9 2018-06-13 stsp const struct got_error *err = NULL;
313 a04f49d2 2019-02-04 stsp char *path = NULL;
314 a04f49d2 2019-02-04 stsp char *normpath = NULL;
315 a04f49d2 2019-02-04 stsp char *absname = NULL;
316 a04f49d2 2019-02-04 stsp int ref_is_absolute = (strncmp(name, "refs/", 5) == 0);
317 a04f49d2 2019-02-04 stsp int ref_is_well_known = is_well_known_ref(name);
318 d1f2edc9 2018-06-13 stsp
319 1e37702e 2019-02-04 stsp *ref = NULL;
320 1e37702e 2019-02-04 stsp
321 a04f49d2 2019-02-04 stsp if (ref_is_absolute || ref_is_well_known) {
322 a04f49d2 2019-02-04 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1)
323 a04f49d2 2019-02-04 stsp return got_error_from_errno();
324 a04f49d2 2019-02-04 stsp absname = (char *)name;
325 a04f49d2 2019-02-04 stsp } else {
326 58908ed0 2019-03-11 stsp if (asprintf(&path, "%s/%s%s%s", path_refs, subdir,
327 58908ed0 2019-03-11 stsp subdir[0] ? "/" : "", name) == -1)
328 a04f49d2 2019-02-04 stsp return got_error_from_errno();
329 d1f2edc9 2018-06-13 stsp
330 58908ed0 2019-03-11 stsp if (asprintf(&absname, "refs/%s%s%s",
331 58908ed0 2019-03-11 stsp subdir, subdir[0] ? "/" : "", name) == -1) {
332 a04f49d2 2019-02-04 stsp err = got_error_from_errno();
333 a04f49d2 2019-02-04 stsp goto done;
334 a04f49d2 2019-02-04 stsp }
335 a04f49d2 2019-02-04 stsp }
336 a04f49d2 2019-02-04 stsp
337 a04f49d2 2019-02-04 stsp normpath = got_path_normalize(path);
338 d1f2edc9 2018-06-13 stsp if (normpath == NULL) {
339 30c0868d 2019-02-03 stsp err = got_error_from_errno();
340 d1f2edc9 2018-06-13 stsp goto done;
341 d1f2edc9 2018-06-13 stsp }
342 d1f2edc9 2018-06-13 stsp
343 a04f49d2 2019-02-04 stsp err = parse_ref_file(ref, absname, normpath);
344 d1f2edc9 2018-06-13 stsp done:
345 a04f49d2 2019-02-04 stsp if (!ref_is_absolute && !ref_is_well_known)
346 a04f49d2 2019-02-04 stsp free(absname);
347 a04f49d2 2019-02-04 stsp free(path);
348 d1f2edc9 2018-06-13 stsp free(normpath);
349 d1f2edc9 2018-06-13 stsp return err;
350 d1f2edc9 2018-06-13 stsp }
351 d1f2edc9 2018-06-13 stsp
352 5261c201 2018-04-01 stsp const struct got_error *
353 5261c201 2018-04-01 stsp got_ref_open(struct got_reference **ref, struct got_repository *repo,
354 5261c201 2018-04-01 stsp const char *refname)
355 5261c201 2018-04-01 stsp {
356 5261c201 2018-04-01 stsp const struct got_error *err = NULL;
357 c5f754cc 2019-02-01 stsp char *path_refs = NULL;
358 fb79db15 2019-02-01 stsp const char *subdirs[] = {
359 fb79db15 2019-02-01 stsp GOT_REF_HEADS, GOT_REF_TAGS, GOT_REF_REMOTES
360 fb79db15 2019-02-01 stsp };
361 c5f754cc 2019-02-01 stsp int i, well_known = is_well_known_ref(refname);
362 1e37702e 2019-02-04 stsp
363 1e37702e 2019-02-04 stsp *ref = NULL;
364 e135804e 2019-02-10 stsp
365 e135804e 2019-02-10 stsp path_refs = get_refs_dir_path(repo, refname);
366 e135804e 2019-02-10 stsp if (path_refs == NULL) {
367 e135804e 2019-02-10 stsp err = got_error_from_errno();
368 e135804e 2019-02-10 stsp goto done;
369 e135804e 2019-02-10 stsp }
370 5261c201 2018-04-01 stsp
371 c5f754cc 2019-02-01 stsp if (!well_known) {
372 c5f754cc 2019-02-01 stsp char *packed_refs_path;
373 c5f754cc 2019-02-01 stsp FILE *f;
374 c5f754cc 2019-02-01 stsp
375 e135804e 2019-02-10 stsp /* Search on-disk refs before packed refs! */
376 e135804e 2019-02-10 stsp for (i = 0; i < nitems(subdirs); i++) {
377 e135804e 2019-02-10 stsp err = open_ref(ref, path_refs, subdirs[i], refname);
378 e135804e 2019-02-10 stsp if (err || *ref)
379 e135804e 2019-02-10 stsp goto done;
380 e135804e 2019-02-10 stsp }
381 e135804e 2019-02-10 stsp
382 c5f754cc 2019-02-01 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
383 e135804e 2019-02-10 stsp if (packed_refs_path == NULL) {
384 e135804e 2019-02-10 stsp err = got_error_from_errno();
385 e135804e 2019-02-10 stsp goto done;
386 e135804e 2019-02-10 stsp }
387 c5f754cc 2019-02-01 stsp
388 c5f754cc 2019-02-01 stsp f = fopen(packed_refs_path, "rb");
389 c5f754cc 2019-02-01 stsp free(packed_refs_path);
390 c5f754cc 2019-02-01 stsp if (f != NULL) {
391 0dec1cc0 2019-02-01 stsp err = open_packed_ref(ref, f, subdirs, nitems(subdirs),
392 0dec1cc0 2019-02-01 stsp refname);
393 fb43ecf1 2019-02-11 stsp if (fclose(f) != 0 && err == NULL)
394 fb43ecf1 2019-02-11 stsp err = got_error_from_errno();
395 1e37702e 2019-02-04 stsp if (err || *ref)
396 0dec1cc0 2019-02-01 stsp goto done;
397 fb79db15 2019-02-01 stsp }
398 fb79db15 2019-02-01 stsp }
399 fb79db15 2019-02-01 stsp
400 fb79db15 2019-02-01 stsp err = open_ref(ref, path_refs, "", refname);
401 1e37702e 2019-02-04 stsp if (err)
402 1e37702e 2019-02-04 stsp goto done;
403 e135804e 2019-02-10 stsp done:
404 1e37702e 2019-02-04 stsp if (*ref == NULL)
405 1e37702e 2019-02-04 stsp err = got_error_not_ref(refname);
406 5261c201 2018-04-01 stsp free(path_refs);
407 5261c201 2018-04-01 stsp return err;
408 5261c201 2018-04-01 stsp }
409 5261c201 2018-04-01 stsp
410 5261c201 2018-04-01 stsp void
411 5261c201 2018-04-01 stsp got_ref_close(struct got_reference *ref)
412 5261c201 2018-04-01 stsp {
413 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
414 5261c201 2018-04-01 stsp free(ref->ref.symref.name);
415 5261c201 2018-04-01 stsp else
416 5261c201 2018-04-01 stsp free(ref->ref.ref.name);
417 5261c201 2018-04-01 stsp free(ref);
418 5261c201 2018-04-01 stsp }
419 5261c201 2018-04-01 stsp
420 5261c201 2018-04-01 stsp struct got_reference *
421 5261c201 2018-04-01 stsp got_ref_dup(struct got_reference *ref)
422 5261c201 2018-04-01 stsp {
423 5261c201 2018-04-01 stsp struct got_reference *ret;
424 5261c201 2018-04-01 stsp
425 5261c201 2018-04-01 stsp ret = calloc(1, sizeof(*ret));
426 5261c201 2018-04-01 stsp if (ret == NULL)
427 5261c201 2018-04-01 stsp return NULL;
428 5261c201 2018-04-01 stsp
429 5261c201 2018-04-01 stsp ret->flags = ref->flags;
430 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
431 5261c201 2018-04-01 stsp ret->ref.symref.name = strdup(ref->ref.symref.name);
432 5261c201 2018-04-01 stsp if (ret->ref.symref.name == NULL) {
433 5261c201 2018-04-01 stsp free(ret);
434 5261c201 2018-04-01 stsp return NULL;
435 5261c201 2018-04-01 stsp }
436 5261c201 2018-04-01 stsp ret->ref.symref.ref = strdup(ref->ref.symref.ref);
437 5261c201 2018-04-01 stsp if (ret->ref.symref.ref == NULL) {
438 5261c201 2018-04-01 stsp free(ret->ref.symref.name);
439 5261c201 2018-04-01 stsp free(ret);
440 5261c201 2018-04-01 stsp return NULL;
441 5261c201 2018-04-01 stsp }
442 5261c201 2018-04-01 stsp } else {
443 5261c201 2018-04-01 stsp ref->ref.ref.name = strdup(ref->ref.ref.name);
444 5261c201 2018-04-01 stsp if (ref->ref.ref.name == NULL) {
445 5261c201 2018-04-01 stsp free(ret);
446 5261c201 2018-04-01 stsp return NULL;
447 5261c201 2018-04-01 stsp }
448 5261c201 2018-04-01 stsp memcpy(ret->ref.ref.sha1, ref->ref.ref.sha1,
449 5261c201 2018-04-01 stsp SHA1_DIGEST_LENGTH);
450 5261c201 2018-04-01 stsp }
451 5261c201 2018-04-01 stsp
452 5261c201 2018-04-01 stsp return ret;
453 5261c201 2018-04-01 stsp }
454 5261c201 2018-04-01 stsp
455 5261c201 2018-04-01 stsp static const struct got_error *
456 5261c201 2018-04-01 stsp resolve_symbolic_ref(struct got_reference **resolved,
457 5261c201 2018-04-01 stsp struct got_repository *repo, struct got_reference *ref)
458 5261c201 2018-04-01 stsp {
459 5261c201 2018-04-01 stsp struct got_reference *nextref;
460 5261c201 2018-04-01 stsp const struct got_error *err;
461 5261c201 2018-04-01 stsp
462 5261c201 2018-04-01 stsp err = got_ref_open(&nextref, repo, ref->ref.symref.ref);
463 5261c201 2018-04-01 stsp if (err)
464 5261c201 2018-04-01 stsp return err;
465 5261c201 2018-04-01 stsp
466 5261c201 2018-04-01 stsp if (nextref->flags & GOT_REF_IS_SYMBOLIC)
467 5261c201 2018-04-01 stsp err = resolve_symbolic_ref(resolved, repo, nextref);
468 5261c201 2018-04-01 stsp else
469 5261c201 2018-04-01 stsp *resolved = got_ref_dup(nextref);
470 5261c201 2018-04-01 stsp
471 5261c201 2018-04-01 stsp got_ref_close(nextref);
472 5261c201 2018-04-01 stsp return err;
473 5261c201 2018-04-01 stsp }
474 5261c201 2018-04-01 stsp
475 5261c201 2018-04-01 stsp const struct got_error *
476 5261c201 2018-04-01 stsp got_ref_resolve(struct got_object_id **id, struct got_repository *repo,
477 5261c201 2018-04-01 stsp struct got_reference *ref)
478 5261c201 2018-04-01 stsp {
479 5261c201 2018-04-01 stsp const struct got_error *err;
480 5261c201 2018-04-01 stsp
481 5261c201 2018-04-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
482 5261c201 2018-04-01 stsp struct got_reference *resolved = NULL;
483 5261c201 2018-04-01 stsp err = resolve_symbolic_ref(&resolved, repo, ref);
484 5261c201 2018-04-01 stsp if (err == NULL)
485 5261c201 2018-04-01 stsp err = got_ref_resolve(id, repo, resolved);
486 5261c201 2018-04-01 stsp free(resolved);
487 5261c201 2018-04-01 stsp return err;
488 5261c201 2018-04-01 stsp }
489 5261c201 2018-04-01 stsp
490 5261c201 2018-04-01 stsp *id = calloc(1, sizeof(**id));
491 5261c201 2018-04-01 stsp if (*id == NULL)
492 5261c201 2018-04-01 stsp return got_error_from_errno();
493 5261c201 2018-04-01 stsp memcpy((*id)->sha1, ref->ref.ref.sha1, SHA1_DIGEST_LENGTH);
494 5261c201 2018-04-01 stsp return NULL;
495 5261c201 2018-04-01 stsp }
496 5261c201 2018-04-01 stsp
497 5261c201 2018-04-01 stsp char *
498 5261c201 2018-04-01 stsp got_ref_to_str(struct got_reference *ref)
499 5261c201 2018-04-01 stsp {
500 5261c201 2018-04-01 stsp char *str;
501 271d2a38 2018-12-25 stsp
502 271d2a38 2018-12-25 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
503 271d2a38 2018-12-25 stsp return strdup(ref->ref.symref.ref);
504 271d2a38 2018-12-25 stsp
505 271d2a38 2018-12-25 stsp str = malloc(SHA1_DIGEST_STRING_LENGTH);
506 271d2a38 2018-12-25 stsp if (str == NULL)
507 271d2a38 2018-12-25 stsp return NULL;
508 271d2a38 2018-12-25 stsp
509 271d2a38 2018-12-25 stsp if (got_sha1_digest_to_str(ref->ref.ref.sha1, str,
510 271d2a38 2018-12-25 stsp SHA1_DIGEST_STRING_LENGTH) == NULL) {
511 271d2a38 2018-12-25 stsp free(str);
512 271d2a38 2018-12-25 stsp return NULL;
513 5261c201 2018-04-01 stsp }
514 5261c201 2018-04-01 stsp
515 5261c201 2018-04-01 stsp return str;
516 5261c201 2018-04-01 stsp }
517 0bd18d37 2019-02-01 stsp
518 0bd18d37 2019-02-01 stsp const char *
519 0bd18d37 2019-02-01 stsp got_ref_get_name(struct got_reference *ref)
520 0bd18d37 2019-02-01 stsp {
521 0bd18d37 2019-02-01 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC)
522 0bd18d37 2019-02-01 stsp return ref->ref.symref.name;
523 0bd18d37 2019-02-01 stsp
524 0bd18d37 2019-02-01 stsp return ref->ref.ref.name;
525 199a4027 2019-02-02 stsp }
526 199a4027 2019-02-02 stsp
527 199a4027 2019-02-02 stsp static const struct got_error *
528 29b5c214 2019-02-04 stsp insert_ref(struct got_reflist_head *refs, struct got_reference *ref,
529 199a4027 2019-02-02 stsp struct got_repository *repo)
530 199a4027 2019-02-02 stsp {
531 199a4027 2019-02-02 stsp const struct got_error *err;
532 199a4027 2019-02-02 stsp struct got_object_id *id;
533 7a3c76f5 2019-02-05 stsp struct got_reflist_entry *new, *re, *prev;
534 e397b6db 2019-02-04 stsp int cmp;
535 7a3c76f5 2019-02-05 stsp
536 7a3c76f5 2019-02-05 stsp err = got_ref_resolve(&id, repo, ref);
537 7a3c76f5 2019-02-05 stsp if (err)
538 7a3c76f5 2019-02-05 stsp return err;
539 29b5c214 2019-02-04 stsp
540 7a3c76f5 2019-02-05 stsp new = malloc(sizeof(*re));
541 7a3c76f5 2019-02-05 stsp if (new == NULL) {
542 7a3c76f5 2019-02-05 stsp free(id);
543 7a3c76f5 2019-02-05 stsp return got_error_from_errno();
544 7a3c76f5 2019-02-05 stsp }
545 7a3c76f5 2019-02-05 stsp new->ref = ref;
546 7a3c76f5 2019-02-05 stsp new->id = id;
547 7a3c76f5 2019-02-05 stsp
548 29b5c214 2019-02-04 stsp /*
549 29b5c214 2019-02-04 stsp * We must de-duplicate entries on insert because packed-refs may
550 29b5c214 2019-02-04 stsp * contain redundant entries. On-disk refs take precedence.
551 29b5c214 2019-02-04 stsp * This code assumes that on-disk revs are read before packed-refs.
552 e397b6db 2019-02-04 stsp * We're iterating the list anyway, so insert elements sorted by name.
553 29b5c214 2019-02-04 stsp */
554 7a3c76f5 2019-02-05 stsp re = SIMPLEQ_FIRST(refs);
555 7a3c76f5 2019-02-05 stsp while (re) {
556 7a3c76f5 2019-02-05 stsp cmp = got_path_cmp(got_ref_get_name(re->ref),
557 7a3c76f5 2019-02-05 stsp got_ref_get_name(ref));
558 e397b6db 2019-02-04 stsp if (cmp == 0) {
559 7a3c76f5 2019-02-05 stsp free(ref); /* duplicate */
560 7a3c76f5 2019-02-05 stsp return NULL;
561 7a3c76f5 2019-02-05 stsp } else if (cmp > 0) {
562 7a3c76f5 2019-02-05 stsp if (prev)
563 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_AFTER(refs, prev, new, entry);
564 7a3c76f5 2019-02-05 stsp else
565 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_HEAD(refs, new, entry);
566 7a3c76f5 2019-02-05 stsp return NULL;
567 7a3c76f5 2019-02-05 stsp } else {
568 e397b6db 2019-02-04 stsp prev = re;
569 7a3c76f5 2019-02-05 stsp re = SIMPLEQ_NEXT(re, entry);
570 7a3c76f5 2019-02-05 stsp }
571 29b5c214 2019-02-04 stsp }
572 199a4027 2019-02-02 stsp
573 7a3c76f5 2019-02-05 stsp SIMPLEQ_INSERT_TAIL(refs, new, entry);
574 199a4027 2019-02-02 stsp return NULL;
575 0bd18d37 2019-02-01 stsp }
576 199a4027 2019-02-02 stsp
577 a04f49d2 2019-02-04 stsp static const struct got_error *
578 29b5c214 2019-02-04 stsp gather_on_disk_refs(struct got_reflist_head *refs, const char *path_refs,
579 a04f49d2 2019-02-04 stsp const char *subdir, struct got_repository *repo)
580 a04f49d2 2019-02-04 stsp {
581 a04f49d2 2019-02-04 stsp const struct got_error *err = NULL;
582 a04f49d2 2019-02-04 stsp DIR *d = NULL;
583 a04f49d2 2019-02-04 stsp char *path_subdir;
584 a04f49d2 2019-02-04 stsp
585 a04f49d2 2019-02-04 stsp if (asprintf(&path_subdir, "%s/%s", path_refs, subdir) == -1)
586 a04f49d2 2019-02-04 stsp return got_error_from_errno();
587 a04f49d2 2019-02-04 stsp
588 a04f49d2 2019-02-04 stsp d = opendir(path_subdir);
589 a04f49d2 2019-02-04 stsp if (d == NULL)
590 a04f49d2 2019-02-04 stsp goto done;
591 a04f49d2 2019-02-04 stsp
592 a04f49d2 2019-02-04 stsp while (1) {
593 a04f49d2 2019-02-04 stsp struct dirent *dent;
594 a04f49d2 2019-02-04 stsp struct got_reference *ref;
595 a04f49d2 2019-02-04 stsp char *child;
596 a04f49d2 2019-02-04 stsp
597 a04f49d2 2019-02-04 stsp dent = readdir(d);
598 a04f49d2 2019-02-04 stsp if (dent == NULL)
599 a04f49d2 2019-02-04 stsp break;
600 a04f49d2 2019-02-04 stsp
601 a04f49d2 2019-02-04 stsp if (strcmp(dent->d_name, ".") == 0 ||
602 a04f49d2 2019-02-04 stsp strcmp(dent->d_name, "..") == 0)
603 a04f49d2 2019-02-04 stsp continue;
604 a04f49d2 2019-02-04 stsp
605 a04f49d2 2019-02-04 stsp switch (dent->d_type) {
606 a04f49d2 2019-02-04 stsp case DT_REG:
607 a04f49d2 2019-02-04 stsp err = open_ref(&ref, path_refs, subdir, dent->d_name);
608 1e37702e 2019-02-04 stsp if (err)
609 a04f49d2 2019-02-04 stsp goto done;
610 a04f49d2 2019-02-04 stsp if (ref) {
611 29b5c214 2019-02-04 stsp err = insert_ref(refs, ref, repo);
612 a04f49d2 2019-02-04 stsp if (err)
613 a04f49d2 2019-02-04 stsp goto done;
614 a04f49d2 2019-02-04 stsp }
615 a04f49d2 2019-02-04 stsp break;
616 a04f49d2 2019-02-04 stsp case DT_DIR:
617 a04f49d2 2019-02-04 stsp if (asprintf(&child, "%s%s%s", subdir,
618 a04f49d2 2019-02-04 stsp subdir[0] == '\0' ? "" : "/", dent->d_name) == -1) {
619 a04f49d2 2019-02-04 stsp err = got_error_from_errno();
620 a04f49d2 2019-02-04 stsp break;
621 a04f49d2 2019-02-04 stsp }
622 29b5c214 2019-02-04 stsp err = gather_on_disk_refs(refs, path_refs, child, repo);
623 a04f49d2 2019-02-04 stsp free(child);
624 a04f49d2 2019-02-04 stsp break;
625 a04f49d2 2019-02-04 stsp default:
626 a04f49d2 2019-02-04 stsp break;
627 a04f49d2 2019-02-04 stsp }
628 a04f49d2 2019-02-04 stsp }
629 a04f49d2 2019-02-04 stsp done:
630 a04f49d2 2019-02-04 stsp if (d)
631 a04f49d2 2019-02-04 stsp closedir(d);
632 a04f49d2 2019-02-04 stsp free(path_subdir);
633 a04f49d2 2019-02-04 stsp return err;
634 a04f49d2 2019-02-04 stsp }
635 a04f49d2 2019-02-04 stsp
636 199a4027 2019-02-02 stsp const struct got_error *
637 199a4027 2019-02-02 stsp got_ref_list(struct got_reflist_head *refs, struct got_repository *repo)
638 199a4027 2019-02-02 stsp {
639 199a4027 2019-02-02 stsp const struct got_error *err;
640 a04f49d2 2019-02-04 stsp char *packed_refs_path, *path_refs = NULL;
641 29b5c214 2019-02-04 stsp FILE *f = NULL;
642 199a4027 2019-02-02 stsp struct got_reference *ref;
643 199a4027 2019-02-02 stsp
644 29b5c214 2019-02-04 stsp /* HEAD ref should always exist. */
645 29b5c214 2019-02-04 stsp path_refs = get_refs_dir_path(repo, GOT_REF_HEAD);
646 29b5c214 2019-02-04 stsp if (path_refs == NULL) {
647 29b5c214 2019-02-04 stsp err = got_error_from_errno();
648 29b5c214 2019-02-04 stsp goto done;
649 29b5c214 2019-02-04 stsp }
650 29b5c214 2019-02-04 stsp err = open_ref(&ref, path_refs, "", GOT_REF_HEAD);
651 29b5c214 2019-02-04 stsp if (err)
652 29b5c214 2019-02-04 stsp goto done;
653 29b5c214 2019-02-04 stsp err = insert_ref(refs, ref, repo);
654 29b5c214 2019-02-04 stsp if (err)
655 29b5c214 2019-02-04 stsp goto done;
656 29b5c214 2019-02-04 stsp
657 29b5c214 2019-02-04 stsp /* Gather on-disk refs before parsing packed-refs. */
658 29b5c214 2019-02-04 stsp free(path_refs);
659 29b5c214 2019-02-04 stsp path_refs = get_refs_dir_path(repo, "");
660 29b5c214 2019-02-04 stsp if (path_refs == NULL) {
661 29b5c214 2019-02-04 stsp err = got_error_from_errno();
662 29b5c214 2019-02-04 stsp goto done;
663 29b5c214 2019-02-04 stsp }
664 29b5c214 2019-02-04 stsp err = gather_on_disk_refs(refs, path_refs, "", repo);
665 29b5c214 2019-02-04 stsp if (err)
666 29b5c214 2019-02-04 stsp goto done;
667 29b5c214 2019-02-04 stsp
668 29b5c214 2019-02-04 stsp /*
669 29b5c214 2019-02-04 stsp * The packed-refs file may contain redundant entries, in which
670 29b5c214 2019-02-04 stsp * case on-disk refs take precedence.
671 29b5c214 2019-02-04 stsp */
672 199a4027 2019-02-02 stsp packed_refs_path = got_repo_get_path_packed_refs(repo);
673 29b5c214 2019-02-04 stsp if (packed_refs_path == NULL) {
674 29b5c214 2019-02-04 stsp err = got_error_from_errno();
675 29b5c214 2019-02-04 stsp goto done;
676 29b5c214 2019-02-04 stsp }
677 199a4027 2019-02-02 stsp
678 199a4027 2019-02-02 stsp f = fopen(packed_refs_path, "r");
679 199a4027 2019-02-02 stsp free(packed_refs_path);
680 199a4027 2019-02-02 stsp if (f) {
681 199a4027 2019-02-02 stsp char *line;
682 199a4027 2019-02-02 stsp size_t len;
683 199a4027 2019-02-02 stsp const char delim[3] = {'\0', '\0', '\0'};
684 199a4027 2019-02-02 stsp while (1) {
685 199a4027 2019-02-02 stsp line = fparseln(f, &len, NULL, delim, 0);
686 199a4027 2019-02-02 stsp if (line == NULL)
687 199a4027 2019-02-02 stsp break;
688 199a4027 2019-02-02 stsp err = parse_packed_ref_line(&ref, NULL, line);
689 199a4027 2019-02-02 stsp if (err)
690 199a4027 2019-02-02 stsp goto done;
691 76b4ead2 2019-02-03 stsp if (ref) {
692 29b5c214 2019-02-04 stsp err = insert_ref(refs, ref, repo);
693 76b4ead2 2019-02-03 stsp if (err)
694 76b4ead2 2019-02-03 stsp goto done;
695 76b4ead2 2019-02-03 stsp }
696 199a4027 2019-02-02 stsp }
697 199a4027 2019-02-02 stsp }
698 199a4027 2019-02-02 stsp done:
699 a04f49d2 2019-02-04 stsp free(path_refs);
700 fb43ecf1 2019-02-11 stsp if (f && fclose(f) != 0 && err == NULL)
701 fb43ecf1 2019-02-11 stsp err = got_error_from_errno();
702 199a4027 2019-02-02 stsp return err;
703 199a4027 2019-02-02 stsp }
704 9e672c74 2019-03-11 stsp
705 e2e879a0 2019-03-11 stsp void
706 e2e879a0 2019-03-11 stsp got_ref_list_free(struct got_reflist_head *refs)
707 e2e879a0 2019-03-11 stsp {
708 e2e879a0 2019-03-11 stsp struct got_reflist_entry *re;
709 e2e879a0 2019-03-11 stsp
710 e2e879a0 2019-03-11 stsp while (!SIMPLEQ_EMPTY(refs)) {
711 e2e879a0 2019-03-11 stsp re = SIMPLEQ_FIRST(refs);
712 e2e879a0 2019-03-11 stsp SIMPLEQ_REMOVE_HEAD(refs, entry);
713 e2e879a0 2019-03-11 stsp got_ref_close(re->ref);
714 e2e879a0 2019-03-11 stsp free(re->id);
715 e2e879a0 2019-03-11 stsp free(re);
716 e2e879a0 2019-03-11 stsp }
717 e2e879a0 2019-03-11 stsp
718 e2e879a0 2019-03-11 stsp }
719 e2e879a0 2019-03-11 stsp
720 9e672c74 2019-03-11 stsp const struct got_error *
721 9e672c74 2019-03-11 stsp got_ref_write(struct got_reference *ref, struct got_repository *repo)
722 9e672c74 2019-03-11 stsp {
723 9e672c74 2019-03-11 stsp const struct got_error *err = NULL, *unlock_err = NULL;
724 9e672c74 2019-03-11 stsp const char *name = got_ref_get_name(ref);
725 9e672c74 2019-03-11 stsp char *path_refs = NULL, *path = NULL, *tmppath = NULL;
726 9e672c74 2019-03-11 stsp struct got_lockfile *lf = NULL;
727 9e672c74 2019-03-11 stsp FILE *f = NULL;
728 9e672c74 2019-03-11 stsp size_t n;
729 9e672c74 2019-03-11 stsp struct stat sb;
730 9e672c74 2019-03-11 stsp
731 9e672c74 2019-03-11 stsp path_refs = get_refs_dir_path(repo, name);
732 9e672c74 2019-03-11 stsp if (path_refs == NULL) {
733 9e672c74 2019-03-11 stsp err = got_error_from_errno();
734 9e672c74 2019-03-11 stsp goto done;
735 9e672c74 2019-03-11 stsp }
736 9e672c74 2019-03-11 stsp
737 9e672c74 2019-03-11 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1) {
738 9e672c74 2019-03-11 stsp err = got_error_from_errno();
739 9e672c74 2019-03-11 stsp goto done;
740 9e672c74 2019-03-11 stsp }
741 9e672c74 2019-03-11 stsp
742 9e672c74 2019-03-11 stsp err = got_opentemp_named(&tmppath, &f, path);
743 9e672c74 2019-03-11 stsp if (f == NULL) {
744 9e672c74 2019-03-11 stsp err = got_error_from_errno();
745 9e672c74 2019-03-11 stsp goto done;
746 9e672c74 2019-03-11 stsp }
747 9e672c74 2019-03-11 stsp
748 9e672c74 2019-03-11 stsp if (ref->flags & GOT_REF_IS_SYMBOLIC) {
749 9e672c74 2019-03-11 stsp n = fprintf(f, "ref: %s\n", ref->ref.symref.ref);
750 9e672c74 2019-03-11 stsp if (n != strlen(ref->ref.symref.ref) + 6) {
751 9e672c74 2019-03-11 stsp err = got_ferror(f, GOT_ERR_IO);
752 9e672c74 2019-03-11 stsp goto done;
753 9e672c74 2019-03-11 stsp }
754 9e672c74 2019-03-11 stsp } else {
755 9e672c74 2019-03-11 stsp char hex[SHA1_DIGEST_STRING_LENGTH];
756 9e672c74 2019-03-11 stsp if (got_sha1_digest_to_str(ref->ref.ref.sha1, hex,
757 9e672c74 2019-03-11 stsp sizeof(hex)) == NULL) {
758 9e672c74 2019-03-11 stsp err = got_error(GOT_ERR_BAD_REF_DATA);
759 9e672c74 2019-03-11 stsp goto done;
760 9e672c74 2019-03-11 stsp }
761 9e672c74 2019-03-11 stsp n = fprintf(f, "%s\n", hex);
762 8fa2f096 2019-03-11 stsp if (n != sizeof(hex)) {
763 9e672c74 2019-03-11 stsp err = got_ferror(f, GOT_ERR_IO);
764 9e672c74 2019-03-11 stsp goto done;
765 9e672c74 2019-03-11 stsp }
766 9e672c74 2019-03-11 stsp }
767 9e672c74 2019-03-11 stsp
768 9e672c74 2019-03-11 stsp err = got_lockfile_lock(&lf, path);
769 9e672c74 2019-03-11 stsp if (err)
770 9e672c74 2019-03-11 stsp goto done;
771 9e672c74 2019-03-11 stsp
772 9e672c74 2019-03-11 stsp /* XXX: check if old content matches our expectations? */
773 9e672c74 2019-03-11 stsp
774 0fd469ce 2019-03-11 stsp if (stat(path, &sb) != 0 && errno != ENOENT) {
775 9e672c74 2019-03-11 stsp err = got_error_from_errno();
776 9e672c74 2019-03-11 stsp goto done;
777 9e672c74 2019-03-11 stsp }
778 9e672c74 2019-03-11 stsp
779 9e672c74 2019-03-11 stsp if (rename(tmppath, path) != 0) {
780 9e672c74 2019-03-11 stsp err = got_error_from_errno();
781 9e672c74 2019-03-11 stsp goto done;
782 9e672c74 2019-03-11 stsp }
783 9e672c74 2019-03-11 stsp free(tmppath);
784 9e672c74 2019-03-11 stsp tmppath = NULL;
785 9e672c74 2019-03-11 stsp
786 9e672c74 2019-03-11 stsp if (chmod(path, sb.st_mode) != 0) {
787 9e672c74 2019-03-11 stsp err = got_error_from_errno();
788 9e672c74 2019-03-11 stsp goto done;
789 9e672c74 2019-03-11 stsp }
790 9e672c74 2019-03-11 stsp done:
791 9e672c74 2019-03-11 stsp if (lf)
792 9e672c74 2019-03-11 stsp unlock_err = got_lockfile_unlock(lf);
793 9e672c74 2019-03-11 stsp if (f) {
794 9e672c74 2019-03-11 stsp if (fclose(f) != 0 && err == NULL)
795 9e672c74 2019-03-11 stsp err = got_error_from_errno();
796 9e672c74 2019-03-11 stsp }
797 9e672c74 2019-03-11 stsp free(path_refs);
798 9e672c74 2019-03-11 stsp free(path);
799 9e672c74 2019-03-11 stsp if (tmppath) {
800 9e672c74 2019-03-11 stsp if (unlink(tmppath) != 0 && err == NULL)
801 9e672c74 2019-03-11 stsp err = got_error_from_errno();
802 9e672c74 2019-03-11 stsp free(tmppath);
803 2d2e1378 2019-03-11 stsp }
804 2d2e1378 2019-03-11 stsp return err ? err : unlock_err;
805 2d2e1378 2019-03-11 stsp }
806 2d2e1378 2019-03-11 stsp
807 2d2e1378 2019-03-11 stsp const struct got_error *
808 2d2e1378 2019-03-11 stsp got_ref_delete(struct got_reference *ref, struct got_repository *repo)
809 2d2e1378 2019-03-11 stsp {
810 2d2e1378 2019-03-11 stsp const struct got_error *err = NULL, *unlock_err = NULL;
811 2d2e1378 2019-03-11 stsp const char *name = got_ref_get_name(ref);
812 2d2e1378 2019-03-11 stsp char *path_refs = NULL, *path = NULL;
813 2d2e1378 2019-03-11 stsp struct got_lockfile *lf = NULL;
814 2d2e1378 2019-03-11 stsp
815 2d2e1378 2019-03-11 stsp /* TODO: handle packed refs ! */
816 2d2e1378 2019-03-11 stsp
817 2d2e1378 2019-03-11 stsp path_refs = get_refs_dir_path(repo, name);
818 2d2e1378 2019-03-11 stsp if (path_refs == NULL) {
819 2d2e1378 2019-03-11 stsp err = got_error_from_errno();
820 2d2e1378 2019-03-11 stsp goto done;
821 2d2e1378 2019-03-11 stsp }
822 2d2e1378 2019-03-11 stsp
823 2d2e1378 2019-03-11 stsp if (asprintf(&path, "%s/%s", path_refs, name) == -1) {
824 2d2e1378 2019-03-11 stsp err = got_error_from_errno();
825 2d2e1378 2019-03-11 stsp goto done;
826 9e672c74 2019-03-11 stsp }
827 2d2e1378 2019-03-11 stsp
828 2d2e1378 2019-03-11 stsp err = got_lockfile_lock(&lf, path);
829 2d2e1378 2019-03-11 stsp if (err)
830 2d2e1378 2019-03-11 stsp goto done;
831 2d2e1378 2019-03-11 stsp
832 2d2e1378 2019-03-11 stsp /* XXX: check if old content matches our expectations? */
833 2d2e1378 2019-03-11 stsp
834 2d2e1378 2019-03-11 stsp if (unlink(path) != 0)
835 2d2e1378 2019-03-11 stsp err = got_error_from_errno();
836 2d2e1378 2019-03-11 stsp done:
837 2d2e1378 2019-03-11 stsp if (lf)
838 2d2e1378 2019-03-11 stsp unlock_err = got_lockfile_unlock(lf);
839 2d2e1378 2019-03-11 stsp
840 2d2e1378 2019-03-11 stsp free(path_refs);
841 2d2e1378 2019-03-11 stsp free(path);
842 9e672c74 2019-03-11 stsp return err ? err : unlock_err;
843 9e672c74 2019-03-11 stsp }