blob: 5835b40b0cb1e707323aaa0d4c837a7ab21d99d0 [file] [log] [blame]
Daniel Barkalow95fc7512005-06-06 16:31:29 -04001#include "cache.h"
Junio C Hamano85023572006-12-19 14:34:12 -08002#include "refs.h"
Junio C Hamanocf0adba2006-11-19 13:22:44 -08003#include "object.h"
4#include "tag.h"
Johannes Schindelin7155b722007-09-28 16:28:54 +01005#include "dir.h"
Daniel Barkalow95fc7512005-06-06 16:31:29 -04006
Junio C Hamanof4204ab2006-11-21 23:36:35 -08007/* ISSYMREF=01 and ISPACKED=02 are public interfaces */
8#define REF_KNOWS_PEELED 04
Junio C Hamanoe01de1c2010-03-15 22:12:55 -07009#define REF_BROKEN 010
Junio C Hamanof4204ab2006-11-21 23:36:35 -080010
Julian Phillipse9c4c112011-09-29 23:11:42 +010011struct ref_entry {
Junio C Hamanof4204ab2006-11-21 23:36:35 -080012 unsigned char flag; /* ISSYMREF? ISPACKED? */
Linus Torvaldse1e22e32006-09-11 16:37:32 -070013 unsigned char sha1[20];
Junio C Hamanof4204ab2006-11-21 23:36:35 -080014 unsigned char peeled[20];
Linus Torvaldse1e22e32006-09-11 16:37:32 -070015 char name[FLEX_ARRAY];
16};
17
Julian Phillipse9c4c112011-09-29 23:11:42 +010018struct ref_array {
19 int nr, alloc;
20 struct ref_entry **refs;
21};
22
Junio C Hamanof4204ab2006-11-21 23:36:35 -080023static const char *parse_ref_line(char *line, unsigned char *sha1)
Linus Torvaldse1e22e32006-09-11 16:37:32 -070024{
25 /*
26 * 42: the answer to everything.
27 *
28 * In this case, it happens to be the answer to
29 * 40 (length of sha1 hex representation)
30 * +1 (space in between hex and name)
31 * +1 (newline at the end of the line)
32 */
33 int len = strlen(line) - 42;
34
35 if (len <= 0)
36 return NULL;
37 if (get_sha1_hex(line, sha1) < 0)
38 return NULL;
39 if (!isspace(line[40]))
40 return NULL;
41 line += 41;
Junio C Hamanof4204ab2006-11-21 23:36:35 -080042 if (isspace(*line))
43 return NULL;
Linus Torvaldse1e22e32006-09-11 16:37:32 -070044 if (line[len] != '\n')
45 return NULL;
46 line[len] = 0;
Junio C Hamanocf0adba2006-11-19 13:22:44 -080047
Linus Torvaldse1e22e32006-09-11 16:37:32 -070048 return line;
49}
50
Julian Phillipse9c4c112011-09-29 23:11:42 +010051static void add_ref(const char *name, const unsigned char *sha1,
52 int flag, struct ref_array *refs,
53 struct ref_entry **new_entry)
Linus Torvaldse1e22e32006-09-11 16:37:32 -070054{
55 int len;
Julian Phillipse9c4c112011-09-29 23:11:42 +010056 struct ref_entry *entry;
Linus Torvaldse1e22e32006-09-11 16:37:32 -070057
58 /* Allocate it and add it in.. */
59 len = strlen(name) + 1;
Julian Phillipse9c4c112011-09-29 23:11:42 +010060 entry = xmalloc(sizeof(struct ref_entry) + len);
Linus Torvaldse1e22e32006-09-11 16:37:32 -070061 hashcpy(entry->sha1, sha1);
Junio C Hamanof4204ab2006-11-21 23:36:35 -080062 hashclr(entry->peeled);
Linus Torvaldse1e22e32006-09-11 16:37:32 -070063 memcpy(entry->name, name, len);
Junio C Hamano8da19772006-09-20 22:02:01 -070064 entry->flag = flag;
Junio C Hamanof4204ab2006-11-21 23:36:35 -080065 if (new_entry)
66 *new_entry = entry;
Julian Phillipse9c4c112011-09-29 23:11:42 +010067 ALLOC_GROW(refs->refs, refs->nr + 1, refs->alloc);
68 refs->refs[refs->nr++] = entry;
Julian Phillipsc774aab2007-04-17 02:42:50 +010069}
70
Julian Phillipse9c4c112011-09-29 23:11:42 +010071static int ref_entry_cmp(const void *a, const void *b)
Julian Phillipsc774aab2007-04-17 02:42:50 +010072{
Julian Phillipse9c4c112011-09-29 23:11:42 +010073 struct ref_entry *one = *(struct ref_entry **)a;
74 struct ref_entry *two = *(struct ref_entry **)b;
75 return strcmp(one->name, two->name);
76}
Julian Phillipsc774aab2007-04-17 02:42:50 +010077
Julian Phillipse9c4c112011-09-29 23:11:42 +010078static void sort_ref_array(struct ref_array *array)
79{
80 int i = 0, j = 1;
Julian Phillipsc774aab2007-04-17 02:42:50 +010081
Julian Phillipse9c4c112011-09-29 23:11:42 +010082 /* Nothing to sort unless there are at least two entries */
83 if (array->nr < 2)
84 return;
Julian Phillipsc774aab2007-04-17 02:42:50 +010085
Julian Phillipse9c4c112011-09-29 23:11:42 +010086 qsort(array->refs, array->nr, sizeof(*array->refs), ref_entry_cmp);
Julian Phillipsc774aab2007-04-17 02:42:50 +010087
Julian Phillipse9c4c112011-09-29 23:11:42 +010088 /* Remove any duplicates from the ref_array */
89 for (; j < array->nr; j++) {
90 struct ref_entry *a = array->refs[i];
91 struct ref_entry *b = array->refs[j];
92 if (!strcmp(a->name, b->name)) {
93 if (hashcmp(a->sha1, b->sha1))
94 die("Duplicated ref, and SHA1s don't match: %s",
95 a->name);
96 warning("Duplicated ref: %s", a->name);
97 continue;
98 }
99 i++;
100 array->refs[i] = array->refs[j];
101 }
102 array->nr = i + 1;
103}
Julian Phillipsc774aab2007-04-17 02:42:50 +0100104
Julian Phillipse9c4c112011-09-29 23:11:42 +0100105static struct ref_entry *search_ref_array(struct ref_array *array, const char *name)
106{
107 struct ref_entry *e, **r;
108 int len;
Julian Phillipsc774aab2007-04-17 02:42:50 +0100109
Julian Phillipse9c4c112011-09-29 23:11:42 +0100110 if (name == NULL)
111 return NULL;
Julian Phillipsc774aab2007-04-17 02:42:50 +0100112
Julian Phillipse9c4c112011-09-29 23:11:42 +0100113 len = strlen(name) + 1;
114 e = xmalloc(sizeof(struct ref_entry) + len);
115 memcpy(e->name, name, len);
Julian Phillipsc774aab2007-04-17 02:42:50 +0100116
Julian Phillipse9c4c112011-09-29 23:11:42 +0100117 r = bsearch(&e, array->refs, array->nr, sizeof(*array->refs), ref_entry_cmp);
Julian Phillipsc774aab2007-04-17 02:42:50 +0100118
Julian Phillipse9c4c112011-09-29 23:11:42 +0100119 free(e);
Julian Phillipsc774aab2007-04-17 02:42:50 +0100120
Julian Phillipse9c4c112011-09-29 23:11:42 +0100121 if (r == NULL)
122 return NULL;
Julian Phillipsc774aab2007-04-17 02:42:50 +0100123
Julian Phillipse9c4c112011-09-29 23:11:42 +0100124 return *r;
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700125}
126
Junio C Hamano5e290ff2006-09-30 12:37:37 -0700127/*
128 * Future: need to be in "struct repository"
129 * when doing a full libification.
130 */
Junio C Hamano4175e9e2007-06-13 01:42:05 -0700131static struct cached_refs {
Junio C Hamano5e290ff2006-09-30 12:37:37 -0700132 char did_loose;
133 char did_packed;
Julian Phillipse9c4c112011-09-29 23:11:42 +0100134 struct ref_array loose;
135 struct ref_array packed;
Heiko Voigt0bad6112010-07-07 15:39:11 +0200136} cached_refs, submodule_refs;
Julian Phillipse9c4c112011-09-29 23:11:42 +0100137static struct ref_entry *current_ref;
Junio C Hamano5e290ff2006-09-30 12:37:37 -0700138
Julian Phillipse9c4c112011-09-29 23:11:42 +0100139static struct ref_array extra_refs;
Daniel Barkalowe142a3c2008-04-27 13:39:24 -0400140
Julian Phillipse9c4c112011-09-29 23:11:42 +0100141static void free_ref_array(struct ref_array *array)
Junio C Hamano5e290ff2006-09-30 12:37:37 -0700142{
Julian Phillipse9c4c112011-09-29 23:11:42 +0100143 int i;
144 for (i = 0; i < array->nr; i++)
145 free(array->refs[i]);
146 free(array->refs);
147 array->nr = array->alloc = 0;
148 array->refs = NULL;
Junio C Hamano5e290ff2006-09-30 12:37:37 -0700149}
150
151static void invalidate_cached_refs(void)
152{
153 struct cached_refs *ca = &cached_refs;
154
Julian Phillipse9c4c112011-09-29 23:11:42 +0100155 if (ca->did_loose)
156 free_ref_array(&ca->loose);
157 if (ca->did_packed)
158 free_ref_array(&ca->packed);
Junio C Hamano5e290ff2006-09-30 12:37:37 -0700159 ca->did_loose = ca->did_packed = 0;
160}
161
Junio C Hamanof4204ab2006-11-21 23:36:35 -0800162static void read_packed_refs(FILE *f, struct cached_refs *cached_refs)
163{
Julian Phillipse9c4c112011-09-29 23:11:42 +0100164 struct ref_entry *last = NULL;
Junio C Hamanof4204ab2006-11-21 23:36:35 -0800165 char refline[PATH_MAX];
166 int flag = REF_ISPACKED;
167
168 while (fgets(refline, sizeof(refline), f)) {
169 unsigned char sha1[20];
170 const char *name;
171 static const char header[] = "# pack-refs with:";
172
173 if (!strncmp(refline, header, sizeof(header)-1)) {
174 const char *traits = refline + sizeof(header) - 1;
175 if (strstr(traits, " peeled "))
176 flag |= REF_KNOWS_PEELED;
177 /* perhaps other traits later as well */
178 continue;
179 }
180
181 name = parse_ref_line(refline, sha1);
182 if (name) {
Julian Phillipse9c4c112011-09-29 23:11:42 +0100183 add_ref(name, sha1, flag, &cached_refs->packed, &last);
Junio C Hamanof4204ab2006-11-21 23:36:35 -0800184 continue;
185 }
186 if (last &&
187 refline[0] == '^' &&
188 strlen(refline) == 42 &&
189 refline[41] == '\n' &&
190 !get_sha1_hex(refline + 1, sha1))
191 hashcpy(last->peeled, sha1);
192 }
Julian Phillipse9c4c112011-09-29 23:11:42 +0100193 sort_ref_array(&cached_refs->packed);
Junio C Hamanof4204ab2006-11-21 23:36:35 -0800194}
195
Daniel Barkalowe142a3c2008-04-27 13:39:24 -0400196void add_extra_ref(const char *name, const unsigned char *sha1, int flag)
197{
Julian Phillipse9c4c112011-09-29 23:11:42 +0100198 add_ref(name, sha1, flag, &extra_refs, NULL);
Daniel Barkalowe142a3c2008-04-27 13:39:24 -0400199}
200
201void clear_extra_refs(void)
202{
Julian Phillipse9c4c112011-09-29 23:11:42 +0100203 free_ref_array(&extra_refs);
Daniel Barkalowe142a3c2008-04-27 13:39:24 -0400204}
205
Julian Phillipse9c4c112011-09-29 23:11:42 +0100206static struct ref_array *get_packed_refs(const char *submodule)
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700207{
Heiko Voigt0bad6112010-07-07 15:39:11 +0200208 const char *packed_refs_file;
209 struct cached_refs *refs;
210
211 if (submodule) {
212 packed_refs_file = git_path_submodule(submodule, "packed-refs");
213 refs = &submodule_refs;
Julian Phillipse9c4c112011-09-29 23:11:42 +0100214 free_ref_array(&refs->packed);
Heiko Voigt0bad6112010-07-07 15:39:11 +0200215 } else {
216 packed_refs_file = git_path("packed-refs");
217 refs = &cached_refs;
218 }
219
220 if (!refs->did_packed || submodule) {
221 FILE *f = fopen(packed_refs_file, "r");
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700222 if (f) {
Heiko Voigt0bad6112010-07-07 15:39:11 +0200223 read_packed_refs(f, refs);
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700224 fclose(f);
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700225 }
Heiko Voigt0bad6112010-07-07 15:39:11 +0200226 refs->did_packed = 1;
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700227 }
Julian Phillipse9c4c112011-09-29 23:11:42 +0100228 return &refs->packed;
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700229}
230
Julian Phillipse9c4c112011-09-29 23:11:42 +0100231static void get_ref_dir(const char *submodule, const char *base,
232 struct ref_array *array)
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700233{
Heiko Voigt0bad6112010-07-07 15:39:11 +0200234 DIR *dir;
235 const char *path;
236
237 if (submodule)
238 path = git_path_submodule(submodule, "%s", base);
239 else
240 path = git_path("%s", base);
241
242
243 dir = opendir(path);
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700244
245 if (dir) {
246 struct dirent *de;
247 int baselen = strlen(base);
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700248 char *ref = xmalloc(baselen + 257);
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700249
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700250 memcpy(ref, base, baselen);
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700251 if (baselen && base[baselen-1] != '/')
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700252 ref[baselen++] = '/';
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700253
254 while ((de = readdir(dir)) != NULL) {
255 unsigned char sha1[20];
256 struct stat st;
Junio C Hamano8da19772006-09-20 22:02:01 -0700257 int flag;
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700258 int namelen;
Heiko Voigt0bad6112010-07-07 15:39:11 +0200259 const char *refdir;
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700260
261 if (de->d_name[0] == '.')
262 continue;
263 namelen = strlen(de->d_name);
264 if (namelen > 255)
265 continue;
266 if (has_extension(de->d_name, ".lock"))
267 continue;
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700268 memcpy(ref + baselen, de->d_name, namelen+1);
Heiko Voigt0bad6112010-07-07 15:39:11 +0200269 refdir = submodule
270 ? git_path_submodule(submodule, "%s", ref)
271 : git_path("%s", ref);
272 if (stat(refdir, &st) < 0)
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700273 continue;
274 if (S_ISDIR(st.st_mode)) {
Julian Phillipse9c4c112011-09-29 23:11:42 +0100275 get_ref_dir(submodule, ref, array);
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700276 continue;
277 }
Heiko Voigt0bad6112010-07-07 15:39:11 +0200278 if (submodule) {
Junio C Hamanof8948e22009-02-08 23:27:10 -0800279 hashclr(sha1);
Heiko Voigt0bad6112010-07-07 15:39:11 +0200280 flag = 0;
281 if (resolve_gitlink_ref(submodule, ref, sha1) < 0) {
282 hashclr(sha1);
283 flag |= REF_BROKEN;
284 }
285 } else
286 if (!resolve_ref(ref, sha1, 1, &flag)) {
287 hashclr(sha1);
288 flag |= REF_BROKEN;
289 }
Julian Phillipse9c4c112011-09-29 23:11:42 +0100290 add_ref(ref, sha1, flag, array, NULL);
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700291 }
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700292 free(ref);
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700293 closedir(dir);
294 }
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700295}
296
Junio C Hamanof8948e22009-02-08 23:27:10 -0800297struct warn_if_dangling_data {
Jay Soffian3cf61342009-11-10 00:03:32 -0500298 FILE *fp;
Junio C Hamanof8948e22009-02-08 23:27:10 -0800299 const char *refname;
300 const char *msg_fmt;
301};
302
303static int warn_if_dangling_symref(const char *refname, const unsigned char *sha1,
304 int flags, void *cb_data)
305{
306 struct warn_if_dangling_data *d = cb_data;
307 const char *resolves_to;
308 unsigned char junk[20];
309
310 if (!(flags & REF_ISSYMREF))
311 return 0;
312
313 resolves_to = resolve_ref(refname, junk, 0, NULL);
314 if (!resolves_to || strcmp(resolves_to, d->refname))
315 return 0;
316
Jay Soffian3cf61342009-11-10 00:03:32 -0500317 fprintf(d->fp, d->msg_fmt, refname);
Junio C Hamanof8948e22009-02-08 23:27:10 -0800318 return 0;
319}
320
Jay Soffian3cf61342009-11-10 00:03:32 -0500321void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
Junio C Hamanof8948e22009-02-08 23:27:10 -0800322{
Gary V. Vaughan66dbfd52010-05-14 09:31:33 +0000323 struct warn_if_dangling_data data;
324
325 data.fp = fp;
326 data.refname = refname;
327 data.msg_fmt = msg_fmt;
Junio C Hamanof8948e22009-02-08 23:27:10 -0800328 for_each_rawref(warn_if_dangling_symref, &data);
329}
330
Julian Phillipse9c4c112011-09-29 23:11:42 +0100331static struct ref_array *get_loose_refs(const char *submodule)
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700332{
Heiko Voigt0bad6112010-07-07 15:39:11 +0200333 if (submodule) {
Julian Phillipse9c4c112011-09-29 23:11:42 +0100334 free_ref_array(&submodule_refs.loose);
335 get_ref_dir(submodule, "refs", &submodule_refs.loose);
336 sort_ref_array(&submodule_refs.loose);
337 return &submodule_refs.loose;
Heiko Voigt0bad6112010-07-07 15:39:11 +0200338 }
339
Junio C Hamano5e290ff2006-09-30 12:37:37 -0700340 if (!cached_refs.did_loose) {
Julian Phillipse9c4c112011-09-29 23:11:42 +0100341 get_ref_dir(NULL, "refs", &cached_refs.loose);
342 sort_ref_array(&cached_refs.loose);
Junio C Hamano5e290ff2006-09-30 12:37:37 -0700343 cached_refs.did_loose = 1;
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700344 }
Julian Phillipse9c4c112011-09-29 23:11:42 +0100345 return &cached_refs.loose;
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700346}
347
Linus Torvaldsca8db142005-09-25 09:59:37 -0700348/* We allow "recursive" symbolic refs. Only within reason, though */
349#define MAXDEPTH 5
Linus Torvalds0ebde322007-04-09 21:14:26 -0700350#define MAXREFLEN (1024)
351
352static int resolve_gitlink_packed_ref(char *name, int pathlen, const char *refname, unsigned char *result)
353{
354 FILE *f;
355 struct cached_refs refs;
Julian Phillipse9c4c112011-09-29 23:11:42 +0100356 struct ref_entry *ref;
357 int retval = -1;
Linus Torvalds0ebde322007-04-09 21:14:26 -0700358
359 strcpy(name + pathlen, "packed-refs");
360 f = fopen(name, "r");
361 if (!f)
362 return -1;
363 read_packed_refs(f, &refs);
364 fclose(f);
Julian Phillipse9c4c112011-09-29 23:11:42 +0100365 ref = search_ref_array(&refs.packed, refname);
366 if (ref != NULL) {
367 memcpy(result, ref->sha1, 20);
368 retval = 0;
Linus Torvalds0ebde322007-04-09 21:14:26 -0700369 }
Julian Phillipse9c4c112011-09-29 23:11:42 +0100370 free_ref_array(&refs.packed);
Linus Torvalds0ebde322007-04-09 21:14:26 -0700371 return retval;
372}
373
374static int resolve_gitlink_ref_recursive(char *name, int pathlen, const char *refname, unsigned char *result, int recursion)
375{
376 int fd, len = strlen(refname);
377 char buffer[128], *p;
378
379 if (recursion > MAXDEPTH || len > MAXREFLEN)
380 return -1;
381 memcpy(name + pathlen, refname, len+1);
382 fd = open(name, O_RDONLY);
383 if (fd < 0)
384 return resolve_gitlink_packed_ref(name, pathlen, refname, result);
385
386 len = read(fd, buffer, sizeof(buffer)-1);
387 close(fd);
388 if (len < 0)
389 return -1;
390 while (len && isspace(buffer[len-1]))
391 len--;
392 buffer[len] = 0;
393
394 /* Was it a detached head or an old-fashioned symlink? */
395 if (!get_sha1_hex(buffer, result))
396 return 0;
397
398 /* Symref? */
399 if (strncmp(buffer, "ref:", 4))
400 return -1;
401 p = buffer + 4;
402 while (isspace(*p))
403 p++;
404
405 return resolve_gitlink_ref_recursive(name, pathlen, p, result, recursion+1);
406}
407
408int resolve_gitlink_ref(const char *path, const char *refname, unsigned char *result)
409{
410 int len = strlen(path), retval;
411 char *gitdir;
Lars Hjemli842abf02008-02-20 23:13:14 +0100412 const char *tmp;
Linus Torvalds0ebde322007-04-09 21:14:26 -0700413
414 while (len && path[len-1] == '/')
415 len--;
416 if (!len)
417 return -1;
418 gitdir = xmalloc(len + MAXREFLEN + 8);
419 memcpy(gitdir, path, len);
Lars Hjemli842abf02008-02-20 23:13:14 +0100420 memcpy(gitdir + len, "/.git", 6);
421 len += 5;
Linus Torvalds0ebde322007-04-09 21:14:26 -0700422
Lars Hjemli842abf02008-02-20 23:13:14 +0100423 tmp = read_gitfile_gently(gitdir);
424 if (tmp) {
425 free(gitdir);
426 len = strlen(tmp);
427 gitdir = xmalloc(len + MAXREFLEN + 3);
428 memcpy(gitdir, tmp, len);
429 }
430 gitdir[len] = '/';
431 gitdir[++len] = '\0';
432 retval = resolve_gitlink_ref_recursive(gitdir, len, refname, result, 0);
Linus Torvalds0ebde322007-04-09 21:14:26 -0700433 free(gitdir);
434 return retval;
435}
Linus Torvaldsca8db142005-09-25 09:59:37 -0700436
Christian Couder4886b892008-09-09 07:10:56 +0200437/*
438 * If the "reading" argument is set, this function finds out what _object_
439 * the ref points at by "reading" the ref. The ref, if it is not symbolic,
440 * has to exist, and if it is symbolic, it has to point at an existing ref,
441 * because the "read" goes through the symref to the ref it points at.
442 *
443 * The access that is not "reading" may often be "writing", but does not
444 * have to; it can be merely checking _where it leads to_. If it is a
445 * prelude to "writing" to the ref, a write to a symref that points at
446 * yet-to-be-born ref will create the real ref pointed by the symref.
447 * reading=0 allows the caller to check where such a symref leads to.
448 */
Junio C Hamano8da19772006-09-20 22:02:01 -0700449const char *resolve_ref(const char *ref, unsigned char *sha1, int reading, int *flag)
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700450{
Heikki Orsila0104ca02008-04-27 21:21:58 +0300451 int depth = MAXDEPTH;
452 ssize_t len;
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700453 char buffer[256];
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700454 static char ref_buffer[256];
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700455
Junio C Hamano8da19772006-09-20 22:02:01 -0700456 if (flag)
457 *flag = 0;
458
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700459 for (;;) {
Alex Riesen958a4782008-10-27 11:11:40 +0100460 char path[PATH_MAX];
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700461 struct stat st;
462 char *buf;
463 int fd;
464
465 if (--depth < 0)
466 return NULL;
467
Alex Riesen958a4782008-10-27 11:11:40 +0100468 git_snpath(path, sizeof(path), "%s", ref);
Christian Couder4886b892008-09-09 07:10:56 +0200469 /* Special case: non-existing file. */
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700470 if (lstat(path, &st) < 0) {
Julian Phillipse9c4c112011-09-29 23:11:42 +0100471 struct ref_array *packed = get_packed_refs(NULL);
472 struct ref_entry *r = search_ref_array(packed, ref);
473 if (r != NULL) {
474 hashcpy(sha1, r->sha1);
475 if (flag)
476 *flag |= REF_ISPACKED;
477 return ref;
Linus Torvalds434cd0c2006-09-14 10:14:47 -0700478 }
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700479 if (reading || errno != ENOENT)
480 return NULL;
Shawn Pearcee7024962006-08-23 02:49:00 -0400481 hashclr(sha1);
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700482 return ref;
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700483 }
484
485 /* Follow "normalized" - ie "refs/.." symlinks by hand */
486 if (S_ISLNK(st.st_mode)) {
487 len = readlink(path, buffer, sizeof(buffer)-1);
488 if (len >= 5 && !memcmp("refs/", buffer, 5)) {
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700489 buffer[len] = 0;
490 strcpy(ref_buffer, buffer);
491 ref = ref_buffer;
Junio C Hamano8da19772006-09-20 22:02:01 -0700492 if (flag)
493 *flag |= REF_ISSYMREF;
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700494 continue;
495 }
496 }
497
Dennis Stosberg7a216322006-10-02 19:23:53 +0200498 /* Is it a directory? */
499 if (S_ISDIR(st.st_mode)) {
500 errno = EISDIR;
501 return NULL;
502 }
503
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700504 /*
505 * Anything else, just open it and try to use it as
506 * a ref
507 */
508 fd = open(path, O_RDONLY);
509 if (fd < 0)
510 return NULL;
Andy Whitcroft93d26e42007-01-08 15:58:08 +0000511 len = read_in_full(fd, buffer, sizeof(buffer)-1);
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700512 close(fd);
513
514 /*
515 * Is it a symbolic ref?
516 */
517 if (len < 4 || memcmp("ref:", buffer, 4))
518 break;
519 buf = buffer + 4;
520 len -= 4;
521 while (len && isspace(*buf))
522 buf++, len--;
523 while (len && isspace(buf[len-1]))
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700524 len--;
525 buf[len] = 0;
526 memcpy(ref_buffer, buf, len + 1);
527 ref = ref_buffer;
Junio C Hamano8da19772006-09-20 22:02:01 -0700528 if (flag)
529 *flag |= REF_ISSYMREF;
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700530 }
531 if (len < 40 || get_sha1_hex(buffer, sha1))
532 return NULL;
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700533 return ref;
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700534}
535
Ilari Liusvaarad08bae72010-01-20 11:48:25 +0200536/* The argument to filter_refs */
537struct ref_filter {
538 const char *pattern;
539 each_ref_fn *fn;
540 void *cb_data;
541};
542
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700543int read_ref(const char *ref, unsigned char *sha1)
Linus Torvalds8a65ff72005-07-02 20:23:36 -0700544{
Junio C Hamano8da19772006-09-20 22:02:01 -0700545 if (resolve_ref(ref, sha1, 1, NULL))
Junio C Hamanoa876ed82005-09-30 14:08:25 -0700546 return 0;
547 return -1;
Linus Torvalds8a65ff72005-07-02 20:23:36 -0700548}
549
Junio C Hamanof8948e22009-02-08 23:27:10 -0800550#define DO_FOR_EACH_INCLUDE_BROKEN 01
Junio C Hamanoef06b912006-11-18 22:13:33 -0800551static int do_one_ref(const char *base, each_ref_fn fn, int trim,
Julian Phillipse9c4c112011-09-29 23:11:42 +0100552 int flags, void *cb_data, struct ref_entry *entry)
Junio C Hamanoef06b912006-11-18 22:13:33 -0800553{
554 if (strncmp(base, entry->name, trim))
555 return 0;
Junio C Hamanoe01de1c2010-03-15 22:12:55 -0700556
Junio C Hamanof8948e22009-02-08 23:27:10 -0800557 if (!(flags & DO_FOR_EACH_INCLUDE_BROKEN)) {
Junio C Hamanoe01de1c2010-03-15 22:12:55 -0700558 if (entry->flag & REF_BROKEN)
559 return 0; /* ignore dangling symref */
Junio C Hamanof8948e22009-02-08 23:27:10 -0800560 if (!has_sha1_file(entry->sha1)) {
561 error("%s does not point to a valid object!", entry->name);
562 return 0;
563 }
Junio C Hamanoef06b912006-11-18 22:13:33 -0800564 }
Shawn O. Pearce0ae91be2008-02-24 03:07:22 -0500565 current_ref = entry;
Junio C Hamanoef06b912006-11-18 22:13:33 -0800566 return fn(entry->name + trim, entry->sha1, entry->flag, cb_data);
567}
568
Ilari Liusvaarad08bae72010-01-20 11:48:25 +0200569static int filter_refs(const char *ref, const unsigned char *sha, int flags,
570 void *data)
571{
572 struct ref_filter *filter = (struct ref_filter *)data;
573 if (fnmatch(filter->pattern, ref, 0))
574 return 0;
575 return filter->fn(ref, sha, flags, filter->cb_data);
576}
577
Junio C Hamanocf0adba2006-11-19 13:22:44 -0800578int peel_ref(const char *ref, unsigned char *sha1)
579{
580 int flag;
581 unsigned char base[20];
582 struct object *o;
583
Shawn O. Pearce0ae91be2008-02-24 03:07:22 -0500584 if (current_ref && (current_ref->name == ref
585 || !strcmp(current_ref->name, ref))) {
586 if (current_ref->flag & REF_KNOWS_PEELED) {
587 hashcpy(sha1, current_ref->peeled);
588 return 0;
589 }
590 hashcpy(base, current_ref->sha1);
591 goto fallback;
592 }
593
Junio C Hamanocf0adba2006-11-19 13:22:44 -0800594 if (!resolve_ref(ref, base, 1, &flag))
595 return -1;
596
597 if ((flag & REF_ISPACKED)) {
Julian Phillipse9c4c112011-09-29 23:11:42 +0100598 struct ref_array *array = get_packed_refs(NULL);
599 struct ref_entry *r = search_ref_array(array, ref);
Junio C Hamanocf0adba2006-11-19 13:22:44 -0800600
Julian Phillipse9c4c112011-09-29 23:11:42 +0100601 if (r != NULL && r->flag & REF_KNOWS_PEELED) {
602 hashcpy(sha1, r->peeled);
603 return 0;
Junio C Hamanocf0adba2006-11-19 13:22:44 -0800604 }
Junio C Hamanocf0adba2006-11-19 13:22:44 -0800605 }
606
Shawn O. Pearce0ae91be2008-02-24 03:07:22 -0500607fallback:
Junio C Hamanocf0adba2006-11-19 13:22:44 -0800608 o = parse_object(base);
Shawn O. Pearce8c87dc72008-02-24 03:07:19 -0500609 if (o && o->type == OBJ_TAG) {
Junio C Hamanocf0adba2006-11-19 13:22:44 -0800610 o = deref_tag(o, ref, 0);
611 if (o) {
612 hashcpy(sha1, o->sha1);
613 return 0;
614 }
615 }
616 return -1;
617}
618
Heiko Voigt0bad6112010-07-07 15:39:11 +0200619static int do_for_each_ref(const char *submodule, const char *base, each_ref_fn fn,
620 int trim, int flags, void *cb_data)
Linus Torvalds8a65ff72005-07-02 20:23:36 -0700621{
Julian Phillipse9c4c112011-09-29 23:11:42 +0100622 int retval = 0, i, p = 0, l = 0;
623 struct ref_array *packed = get_packed_refs(submodule);
624 struct ref_array *loose = get_loose_refs(submodule);
Linus Torvalds8a65ff72005-07-02 20:23:36 -0700625
Julian Phillipse9c4c112011-09-29 23:11:42 +0100626 struct ref_array *extra = &extra_refs;
Daniel Barkalowe142a3c2008-04-27 13:39:24 -0400627
Julian Phillipse9c4c112011-09-29 23:11:42 +0100628 for (i = 0; i < extra->nr; i++)
629 retval = do_one_ref(base, fn, trim, flags, cb_data, extra->refs[i]);
Daniel Barkalowe142a3c2008-04-27 13:39:24 -0400630
Julian Phillipse9c4c112011-09-29 23:11:42 +0100631 while (p < packed->nr && l < loose->nr) {
632 struct ref_entry *entry;
633 int cmp = strcmp(packed->refs[p]->name, loose->refs[l]->name);
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700634 if (!cmp) {
Julian Phillipse9c4c112011-09-29 23:11:42 +0100635 p++;
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700636 continue;
Linus Torvalds6cada6a2005-07-04 15:28:19 -0700637 }
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700638 if (cmp > 0) {
Julian Phillipse9c4c112011-09-29 23:11:42 +0100639 entry = loose->refs[l++];
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700640 } else {
Julian Phillipse9c4c112011-09-29 23:11:42 +0100641 entry = packed->refs[p++];
Linus Torvalds8a65ff72005-07-02 20:23:36 -0700642 }
Junio C Hamanof8948e22009-02-08 23:27:10 -0800643 retval = do_one_ref(base, fn, trim, flags, cb_data, entry);
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700644 if (retval)
Shawn O. Pearce0ae91be2008-02-24 03:07:22 -0500645 goto end_each;
Linus Torvalds8a65ff72005-07-02 20:23:36 -0700646 }
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700647
Julian Phillipse9c4c112011-09-29 23:11:42 +0100648 if (l < loose->nr) {
649 p = l;
650 packed = loose;
651 }
652
653 for (; p < packed->nr; p++) {
654 retval = do_one_ref(base, fn, trim, flags, cb_data, packed->refs[p]);
Junio C Hamanoef06b912006-11-18 22:13:33 -0800655 if (retval)
Shawn O. Pearce0ae91be2008-02-24 03:07:22 -0500656 goto end_each;
Linus Torvaldse1e22e32006-09-11 16:37:32 -0700657 }
Shawn O. Pearce0ae91be2008-02-24 03:07:22 -0500658
659end_each:
660 current_ref = NULL;
661 return retval;
Linus Torvalds8a65ff72005-07-02 20:23:36 -0700662}
663
Heiko Voigt0bad6112010-07-07 15:39:11 +0200664
665static int do_head_ref(const char *submodule, each_ref_fn fn, void *cb_data)
Linus Torvalds723c31f2005-07-05 11:31:32 -0700666{
667 unsigned char sha1[20];
Junio C Hamano8da19772006-09-20 22:02:01 -0700668 int flag;
669
Heiko Voigt0bad6112010-07-07 15:39:11 +0200670 if (submodule) {
671 if (resolve_gitlink_ref(submodule, "HEAD", sha1) == 0)
672 return fn("HEAD", sha1, 0, cb_data);
673
674 return 0;
675 }
676
Junio C Hamano8da19772006-09-20 22:02:01 -0700677 if (resolve_ref("HEAD", sha1, 1, &flag))
678 return fn("HEAD", sha1, flag, cb_data);
Heiko Voigt0bad6112010-07-07 15:39:11 +0200679
Linus Torvalds2f34ba32005-07-05 15:45:00 -0700680 return 0;
Linus Torvalds723c31f2005-07-05 11:31:32 -0700681}
682
Heiko Voigt0bad6112010-07-07 15:39:11 +0200683int head_ref(each_ref_fn fn, void *cb_data)
684{
685 return do_head_ref(NULL, fn, cb_data);
686}
687
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +0200688int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
689{
690 return do_head_ref(submodule, fn, cb_data);
691}
692
Junio C Hamanocb5d7092006-09-20 21:47:42 -0700693int for_each_ref(each_ref_fn fn, void *cb_data)
Linus Torvalds8a65ff72005-07-02 20:23:36 -0700694{
Heiko Voigt0bad6112010-07-07 15:39:11 +0200695 return do_for_each_ref(NULL, "refs/", fn, 0, 0, cb_data);
Seana62be772006-05-13 21:43:00 -0400696}
697
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +0200698int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
699{
700 return do_for_each_ref(submodule, "refs/", fn, 0, 0, cb_data);
Seana62be772006-05-13 21:43:00 -0400701}
702
Christian Couder2a8177b2009-03-30 05:07:15 +0200703int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
704{
Heiko Voigt0bad6112010-07-07 15:39:11 +0200705 return do_for_each_ref(NULL, prefix, fn, strlen(prefix), 0, cb_data);
Christian Couder2a8177b2009-03-30 05:07:15 +0200706}
707
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +0200708int for_each_ref_in_submodule(const char *submodule, const char *prefix,
709 each_ref_fn fn, void *cb_data)
710{
711 return do_for_each_ref(submodule, prefix, fn, strlen(prefix), 0, cb_data);
Christian Couder2a8177b2009-03-30 05:07:15 +0200712}
713
Junio C Hamanocb5d7092006-09-20 21:47:42 -0700714int for_each_tag_ref(each_ref_fn fn, void *cb_data)
Seana62be772006-05-13 21:43:00 -0400715{
Christian Couder2a8177b2009-03-30 05:07:15 +0200716 return for_each_ref_in("refs/tags/", fn, cb_data);
Seana62be772006-05-13 21:43:00 -0400717}
718
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +0200719int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
720{
721 return for_each_ref_in_submodule(submodule, "refs/tags/", fn, cb_data);
722}
723
Junio C Hamanocb5d7092006-09-20 21:47:42 -0700724int for_each_branch_ref(each_ref_fn fn, void *cb_data)
Seana62be772006-05-13 21:43:00 -0400725{
Christian Couder2a8177b2009-03-30 05:07:15 +0200726 return for_each_ref_in("refs/heads/", fn, cb_data);
Seana62be772006-05-13 21:43:00 -0400727}
728
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +0200729int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
730{
731 return for_each_ref_in_submodule(submodule, "refs/heads/", fn, cb_data);
732}
733
Junio C Hamanocb5d7092006-09-20 21:47:42 -0700734int for_each_remote_ref(each_ref_fn fn, void *cb_data)
Seana62be772006-05-13 21:43:00 -0400735{
Christian Couder2a8177b2009-03-30 05:07:15 +0200736 return for_each_ref_in("refs/remotes/", fn, cb_data);
Junio C Hamanof8948e22009-02-08 23:27:10 -0800737}
738
Heiko Voigt9ef6aeb2010-07-07 15:39:12 +0200739int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
740{
741 return for_each_ref_in_submodule(submodule, "refs/remotes/", fn, cb_data);
742}
743
Christian Couder29268702009-01-23 10:06:38 +0100744int for_each_replace_ref(each_ref_fn fn, void *cb_data)
745{
Heiko Voigt0bad6112010-07-07 15:39:11 +0200746 return do_for_each_ref(NULL, "refs/replace/", fn, 13, 0, cb_data);
Christian Couder29268702009-01-23 10:06:38 +0100747}
748
Ilari Liusvaarab09fe972010-01-20 11:48:26 +0200749int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
750 const char *prefix, void *cb_data)
Ilari Liusvaarad08bae72010-01-20 11:48:25 +0200751{
752 struct strbuf real_pattern = STRBUF_INIT;
753 struct ref_filter filter;
Ilari Liusvaarad08bae72010-01-20 11:48:25 +0200754 int ret;
755
Ilari Liusvaarab09fe972010-01-20 11:48:26 +0200756 if (!prefix && prefixcmp(pattern, "refs/"))
Ilari Liusvaarad08bae72010-01-20 11:48:25 +0200757 strbuf_addstr(&real_pattern, "refs/");
Ilari Liusvaarab09fe972010-01-20 11:48:26 +0200758 else if (prefix)
759 strbuf_addstr(&real_pattern, prefix);
Ilari Liusvaarad08bae72010-01-20 11:48:25 +0200760 strbuf_addstr(&real_pattern, pattern);
761
Thomas Rast894a9d32010-03-12 18:04:26 +0100762 if (!has_glob_specials(pattern)) {
Junio C Hamano9517e6b2010-02-03 21:23:18 -0800763 /* Append implied '/' '*' if not present. */
Ilari Liusvaarad08bae72010-01-20 11:48:25 +0200764 if (real_pattern.buf[real_pattern.len - 1] != '/')
765 strbuf_addch(&real_pattern, '/');
766 /* No need to check for '*', there is none. */
767 strbuf_addch(&real_pattern, '*');
768 }
769
770 filter.pattern = real_pattern.buf;
771 filter.fn = fn;
772 filter.cb_data = cb_data;
773 ret = for_each_ref(filter_refs, &filter);
774
775 strbuf_release(&real_pattern);
776 return ret;
777}
778
Ilari Liusvaarab09fe972010-01-20 11:48:26 +0200779int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
780{
781 return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
782}
783
Junio C Hamanof8948e22009-02-08 23:27:10 -0800784int for_each_rawref(each_ref_fn fn, void *cb_data)
785{
Heiko Voigt0bad6112010-07-07 15:39:11 +0200786 return do_for_each_ref(NULL, "refs/", fn, 0,
Junio C Hamanof8948e22009-02-08 23:27:10 -0800787 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
Linus Torvalds8a65ff72005-07-02 20:23:36 -0700788}
789
Junio C Hamano03feddd2005-10-13 18:57:39 -0700790/*
791 * Make sure "ref" is something reasonable to have under ".git/refs/";
792 * We do not like it if:
793 *
794 * - any path component of it begins with ".", or
795 * - it has double dots "..", or
796 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
797 * - it ends with a "/".
Shawn O. Pearce3e262b92009-03-24 16:31:01 -0700798 * - it ends with ".lock"
Robin Rosenberga4c2e692009-05-08 07:32:37 +0200799 * - it contains a "\" (backslash)
Junio C Hamano03feddd2005-10-13 18:57:39 -0700800 */
801
802static inline int bad_ref_char(int ch)
803{
Daniel Barkalow8558fd92007-05-25 01:20:56 -0400804 if (((unsigned) ch) <= ' ' ||
Robin Rosenberga4c2e692009-05-08 07:32:37 +0200805 ch == '~' || ch == '^' || ch == ':' || ch == '\\')
Daniel Barkalow8558fd92007-05-25 01:20:56 -0400806 return 1;
807 /* 2.13 Pattern Matching Notation */
808 if (ch == '?' || ch == '[') /* Unsupported */
809 return 1;
810 if (ch == '*') /* Supported at the end */
811 return 2;
812 return 0;
Junio C Hamano03feddd2005-10-13 18:57:39 -0700813}
814
Daniel Barkalow95fc7512005-06-06 16:31:29 -0400815int check_ref_format(const char *ref)
816{
Junio C Hamanocbdffe42009-03-21 13:27:31 -0700817 int ch, level, bad_type, last;
Daniel Barkalowabd2bde2009-03-07 01:11:39 -0500818 int ret = CHECK_REF_FORMAT_OK;
Junio C Hamano03feddd2005-10-13 18:57:39 -0700819 const char *cp = ref;
820
821 level = 0;
822 while (1) {
823 while ((ch = *cp++) == '/')
824 ; /* tolerate duplicated slashes */
825 if (!ch)
Junio C Hamano5f7b2022008-01-01 22:33:20 -0800826 /* should not end with slashes */
827 return CHECK_REF_FORMAT_ERROR;
Junio C Hamano03feddd2005-10-13 18:57:39 -0700828
829 /* we are at the beginning of the path component */
Daniel Barkalow8558fd92007-05-25 01:20:56 -0400830 if (ch == '.')
Junio C Hamano5f7b2022008-01-01 22:33:20 -0800831 return CHECK_REF_FORMAT_ERROR;
Daniel Barkalow8558fd92007-05-25 01:20:56 -0400832 bad_type = bad_ref_char(ch);
833 if (bad_type) {
Daniel Barkalowabd2bde2009-03-07 01:11:39 -0500834 if (bad_type == 2 && (!*cp || *cp == '/') &&
835 ret == CHECK_REF_FORMAT_OK)
836 ret = CHECK_REF_FORMAT_WILDCARD;
837 else
838 return CHECK_REF_FORMAT_ERROR;
Daniel Barkalow8558fd92007-05-25 01:20:56 -0400839 }
Junio C Hamano03feddd2005-10-13 18:57:39 -0700840
Junio C Hamanocbdffe42009-03-21 13:27:31 -0700841 last = ch;
Junio C Hamano03feddd2005-10-13 18:57:39 -0700842 /* scan the rest of the path component */
843 while ((ch = *cp++) != 0) {
Daniel Barkalow8558fd92007-05-25 01:20:56 -0400844 bad_type = bad_ref_char(ch);
Junio C Hamanocbdffe42009-03-21 13:27:31 -0700845 if (bad_type)
Daniel Barkalow08fbdb32009-03-07 01:11:36 -0500846 return CHECK_REF_FORMAT_ERROR;
Junio C Hamano03feddd2005-10-13 18:57:39 -0700847 if (ch == '/')
848 break;
Junio C Hamanocbdffe42009-03-21 13:27:31 -0700849 if (last == '.' && ch == '.')
Junio C Hamano5f7b2022008-01-01 22:33:20 -0800850 return CHECK_REF_FORMAT_ERROR;
Junio C Hamanocbdffe42009-03-21 13:27:31 -0700851 if (last == '@' && ch == '{')
852 return CHECK_REF_FORMAT_ERROR;
853 last = ch;
Junio C Hamano03feddd2005-10-13 18:57:39 -0700854 }
855 level++;
856 if (!ch) {
Junio C Hamanocbdffe42009-03-21 13:27:31 -0700857 if (ref <= cp - 2 && cp[-2] == '.')
858 return CHECK_REF_FORMAT_ERROR;
Junio C Hamano03feddd2005-10-13 18:57:39 -0700859 if (level < 2)
Junio C Hamano5f7b2022008-01-01 22:33:20 -0800860 return CHECK_REF_FORMAT_ONELEVEL;
Shawn O. Pearce3e262b92009-03-24 16:31:01 -0700861 if (has_extension(ref, ".lock"))
862 return CHECK_REF_FORMAT_ERROR;
Daniel Barkalowabd2bde2009-03-07 01:11:39 -0500863 return ret;
Junio C Hamano03feddd2005-10-13 18:57:39 -0700864 }
865 }
Daniel Barkalow95fc7512005-06-06 16:31:29 -0400866}
867
Felipe Contreras4577e482009-05-14 00:22:04 +0300868const char *prettify_refname(const char *name)
Daniel Barkalowa9c37a72009-03-08 21:06:05 -0400869{
Daniel Barkalowa9c37a72009-03-08 21:06:05 -0400870 return name + (
871 !prefixcmp(name, "refs/heads/") ? 11 :
872 !prefixcmp(name, "refs/tags/") ? 10 :
873 !prefixcmp(name, "refs/remotes/") ? 13 :
874 0);
875}
876
Steffen Prohaska79803322007-11-11 15:01:46 +0100877const char *ref_rev_parse_rules[] = {
878 "%.*s",
879 "refs/%.*s",
880 "refs/tags/%.*s",
881 "refs/heads/%.*s",
882 "refs/remotes/%.*s",
883 "refs/remotes/%.*s/HEAD",
884 NULL
885};
886
Steffen Prohaska605b4972007-11-11 15:01:48 +0100887const char *ref_fetch_rules[] = {
888 "%.*s",
889 "refs/%.*s",
890 "refs/heads/%.*s",
891 NULL
892};
893
Steffen Prohaska79803322007-11-11 15:01:46 +0100894int refname_match(const char *abbrev_name, const char *full_name, const char **rules)
895{
896 const char **p;
897 const int abbrev_name_len = strlen(abbrev_name);
898
899 for (p = rules; *p; p++) {
900 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
901 return 1;
902 }
903 }
904
905 return 0;
906}
907
Junio C Hamanoe5f38ec2006-06-06 14:04:17 -0700908static struct ref_lock *verify_lock(struct ref_lock *lock,
Shawn Pearce4bd18c42006-05-17 05:55:02 -0400909 const unsigned char *old_sha1, int mustexist)
Daniel Barkalow95fc7512005-06-06 16:31:29 -0400910{
Junio C Hamano8da19772006-09-20 22:02:01 -0700911 if (!resolve_ref(lock->ref_name, lock->old_sha1, mustexist, NULL)) {
Linus Torvalds434cd0c2006-09-14 10:14:47 -0700912 error("Can't verify ref %s", lock->ref_name);
Shawn Pearce4bd18c42006-05-17 05:55:02 -0400913 unlock_ref(lock);
914 return NULL;
915 }
David Rientjesa89fccd2006-08-17 11:54:57 -0700916 if (hashcmp(lock->old_sha1, old_sha1)) {
Linus Torvalds434cd0c2006-09-14 10:14:47 -0700917 error("Ref %s is at %s but expected %s", lock->ref_name,
Shawn Pearce4bd18c42006-05-17 05:55:02 -0400918 sha1_to_hex(lock->old_sha1), sha1_to_hex(old_sha1));
919 unlock_ref(lock);
920 return NULL;
921 }
922 return lock;
923}
924
Johannes Schindelin7155b722007-09-28 16:28:54 +0100925static int remove_empty_directories(const char *file)
Junio C Hamanobc7127e2006-09-30 02:25:30 -0700926{
927 /* we want to create a file but there is a directory there;
928 * if that is an empty directory (or a directory that contains
929 * only empty directories), remove them.
930 */
Johannes Schindelin7155b722007-09-28 16:28:54 +0100931 struct strbuf path;
932 int result;
Junio C Hamanobc7127e2006-09-30 02:25:30 -0700933
Johannes Schindelin7155b722007-09-28 16:28:54 +0100934 strbuf_init(&path, 20);
935 strbuf_addstr(&path, file);
936
Junio C Hamanoa0f4afb2009-06-30 15:33:45 -0700937 result = remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);
Johannes Schindelin7155b722007-09-28 16:28:54 +0100938
939 strbuf_release(&path);
940
941 return result;
Junio C Hamanobc7127e2006-09-30 02:25:30 -0700942}
943
Lars Hjemlic976d412006-11-28 15:47:40 +0100944static int is_refname_available(const char *ref, const char *oldref,
Julian Phillipse9c4c112011-09-29 23:11:42 +0100945 struct ref_array *array, int quiet)
Lars Hjemlic976d412006-11-28 15:47:40 +0100946{
Julian Phillipse9c4c112011-09-29 23:11:42 +0100947 int i, namlen = strlen(ref); /* e.g. 'foo/bar' */
948 for (i = 0; i < array->nr; i++ ) {
949 struct ref_entry *entry = array->refs[i];
950 /* entry->name could be 'foo' or 'foo/bar/baz' */
951 if (!oldref || strcmp(oldref, entry->name)) {
952 int len = strlen(entry->name);
Lars Hjemlic976d412006-11-28 15:47:40 +0100953 int cmplen = (namlen < len) ? namlen : len;
Julian Phillipse9c4c112011-09-29 23:11:42 +0100954 const char *lead = (namlen < len) ? entry->name : ref;
955 if (!strncmp(ref, entry->name, cmplen) &&
Lars Hjemlic976d412006-11-28 15:47:40 +0100956 lead[cmplen] == '/') {
957 if (!quiet)
958 error("'%s' exists; cannot create '%s'",
Julian Phillipse9c4c112011-09-29 23:11:42 +0100959 entry->name, ref);
Lars Hjemlic976d412006-11-28 15:47:40 +0100960 return 0;
961 }
962 }
Lars Hjemlic976d412006-11-28 15:47:40 +0100963 }
964 return 1;
965}
966
Sven Verdoolaege68db31c2007-05-09 12:33:20 +0200967static struct ref_lock *lock_ref_sha1_basic(const char *ref, const unsigned char *old_sha1, int flags, int *type_p)
Shawn Pearce4bd18c42006-05-17 05:55:02 -0400968{
Linus Torvalds434cd0c2006-09-14 10:14:47 -0700969 char *ref_file;
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700970 const char *orig_ref = ref;
Shawn Pearce4bd18c42006-05-17 05:55:02 -0400971 struct ref_lock *lock;
Junio C Hamano5cc3cef2006-09-30 14:14:31 -0700972 int last_errno = 0;
Junio C Hamanoacd3b9e2008-10-17 15:44:39 -0700973 int type, lflags;
Junio C Hamano4431fcc2006-09-27 01:09:18 -0700974 int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
Clemens Buchacher5bdd8d42008-11-05 21:55:53 +0100975 int missing = 0;
Shawn Pearce4bd18c42006-05-17 05:55:02 -0400976
977 lock = xcalloc(1, sizeof(struct ref_lock));
978 lock->lock_fd = -1;
979
Sven Verdoolaege68db31c2007-05-09 12:33:20 +0200980 ref = resolve_ref(ref, lock->old_sha1, mustexist, &type);
Junio C Hamanobc7127e2006-09-30 02:25:30 -0700981 if (!ref && errno == EISDIR) {
982 /* we are trying to lock foo but we used to
983 * have foo/bar which now does not exist;
984 * it is normal for the empty directory 'foo'
985 * to remain.
986 */
987 ref_file = git_path("%s", orig_ref);
Junio C Hamano5cc3cef2006-09-30 14:14:31 -0700988 if (remove_empty_directories(ref_file)) {
989 last_errno = errno;
990 error("there are still refs under '%s'", orig_ref);
991 goto error_return;
992 }
Sven Verdoolaege68db31c2007-05-09 12:33:20 +0200993 ref = resolve_ref(orig_ref, lock->old_sha1, mustexist, &type);
Junio C Hamanobc7127e2006-09-30 02:25:30 -0700994 }
Sven Verdoolaege68db31c2007-05-09 12:33:20 +0200995 if (type_p)
996 *type_p = type;
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700997 if (!ref) {
Junio C Hamano5cc3cef2006-09-30 14:14:31 -0700998 last_errno = errno;
Shawn Pearce818f4772006-07-28 23:44:51 -0400999 error("unable to resolve reference %s: %s",
Linus Torvaldsed378ec2006-09-11 20:17:35 -07001000 orig_ref, strerror(errno));
Junio C Hamano5cc3cef2006-09-30 14:14:31 -07001001 goto error_return;
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001002 }
Clemens Buchacher5bdd8d42008-11-05 21:55:53 +01001003 missing = is_null_sha1(lock->old_sha1);
Lars Hjemlic976d412006-11-28 15:47:40 +01001004 /* When the ref did not exist and we are creating it,
1005 * make sure there is no existing ref that is packed
1006 * whose name begins with our refname, nor a ref whose
1007 * name is a proper prefix of our refname.
1008 */
Clemens Buchacher5bdd8d42008-11-05 21:55:53 +01001009 if (missing &&
Heiko Voigt0bad6112010-07-07 15:39:11 +02001010 !is_refname_available(ref, NULL, get_packed_refs(NULL), 0)) {
Jeff Kingf475e082009-05-25 06:37:15 -04001011 last_errno = ENOTDIR;
Lars Hjemlic976d412006-11-28 15:47:40 +01001012 goto error_return;
Jeff Kingf475e082009-05-25 06:37:15 -04001013 }
Junio C Hamano22a38442006-09-30 14:19:25 -07001014
Junio C Hamanoc33d5172006-06-06 13:54:14 -07001015 lock->lk = xcalloc(1, sizeof(struct lock_file));
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001016
Junio C Hamanoacd3b9e2008-10-17 15:44:39 -07001017 lflags = LOCK_DIE_ON_ERROR;
1018 if (flags & REF_NODEREF) {
Sven Verdoolaege68db31c2007-05-09 12:33:20 +02001019 ref = orig_ref;
Junio C Hamanoacd3b9e2008-10-17 15:44:39 -07001020 lflags |= LOCK_NODEREF;
1021 }
Linus Torvalds434cd0c2006-09-14 10:14:47 -07001022 lock->ref_name = xstrdup(ref);
Nicolas Pitre16557072007-01-26 17:26:06 -05001023 lock->orig_ref_name = xstrdup(orig_ref);
Petr Baudis7c1a2782006-09-23 01:08:45 +02001024 ref_file = git_path("%s", ref);
Clemens Buchacher5bdd8d42008-11-05 21:55:53 +01001025 if (missing)
Sven Verdoolaege68db31c2007-05-09 12:33:20 +02001026 lock->force_write = 1;
1027 if ((flags & REF_NODEREF) && (type & REF_ISSYMREF))
1028 lock->force_write = 1;
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001029
Junio C Hamano5cc3cef2006-09-30 14:14:31 -07001030 if (safe_create_leading_directories(ref_file)) {
1031 last_errno = errno;
1032 error("unable to create directory for %s", ref_file);
1033 goto error_return;
1034 }
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001035
Junio C Hamanoacd3b9e2008-10-17 15:44:39 -07001036 lock->lock_fd = hold_lock_file_for_update(lock->lk, ref_file, lflags);
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001037 return old_sha1 ? verify_lock(lock, old_sha1, mustexist) : lock;
Junio C Hamano5cc3cef2006-09-30 14:14:31 -07001038
1039 error_return:
1040 unlock_ref(lock);
1041 errno = last_errno;
1042 return NULL;
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001043}
1044
Junio C Hamano4431fcc2006-09-27 01:09:18 -07001045struct ref_lock *lock_ref_sha1(const char *ref, const unsigned char *old_sha1)
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001046{
Petr Baudis53cce842006-09-19 22:58:23 +02001047 char refpath[PATH_MAX];
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001048 if (check_ref_format(ref))
1049 return NULL;
Petr Baudis53cce842006-09-19 22:58:23 +02001050 strcpy(refpath, mkpath("refs/%s", ref));
Sven Verdoolaege68db31c2007-05-09 12:33:20 +02001051 return lock_ref_sha1_basic(refpath, old_sha1, 0, NULL);
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001052}
1053
Sven Verdoolaege68db31c2007-05-09 12:33:20 +02001054struct ref_lock *lock_any_ref_for_update(const char *ref, const unsigned char *old_sha1, int flags)
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001055{
Junio C Hamano5f7b2022008-01-01 22:33:20 -08001056 switch (check_ref_format(ref)) {
Junio C Hamano5f7b2022008-01-01 22:33:20 -08001057 default:
Junio C Hamano257f3022008-01-02 11:14:40 -08001058 return NULL;
1059 case 0:
1060 case CHECK_REF_FORMAT_ONELEVEL:
Junio C Hamano5f7b2022008-01-01 22:33:20 -08001061 return lock_ref_sha1_basic(ref, old_sha1, flags, NULL);
1062 }
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001063}
1064
Junio C Hamano26a063a2006-10-01 11:41:00 -07001065static struct lock_file packlock;
1066
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001067static int repack_without_ref(const char *refname)
1068{
Julian Phillipse9c4c112011-09-29 23:11:42 +01001069 struct ref_array *packed;
1070 struct ref_entry *ref;
1071 int fd, i;
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001072
Julian Phillipse9c4c112011-09-29 23:11:42 +01001073 packed = get_packed_refs(NULL);
1074 ref = search_ref_array(packed, refname);
1075 if (ref == NULL)
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001076 return 0;
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001077 fd = hold_lock_file_for_update(&packlock, git_path("packed-refs"), 0);
Miklos Vajna1b018fd2009-09-27 01:15:09 +02001078 if (fd < 0) {
1079 unable_to_lock_error(git_path("packed-refs"), errno);
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001080 return error("cannot delete '%s' from packed refs", refname);
Miklos Vajna1b018fd2009-09-27 01:15:09 +02001081 }
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001082
Julian Phillipse9c4c112011-09-29 23:11:42 +01001083 for (i = 0; i < packed->nr; i++) {
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001084 char line[PATH_MAX + 100];
1085 int len;
1086
Julian Phillipse9c4c112011-09-29 23:11:42 +01001087 ref = packed->refs[i];
1088
1089 if (!strcmp(refname, ref->name))
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001090 continue;
1091 len = snprintf(line, sizeof(line), "%s %s\n",
Julian Phillipse9c4c112011-09-29 23:11:42 +01001092 sha1_to_hex(ref->sha1), ref->name);
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001093 /* this should not happen but just being defensive */
1094 if (len > sizeof(line))
Julian Phillipse9c4c112011-09-29 23:11:42 +01001095 die("too long a refname '%s'", ref->name);
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001096 write_or_die(fd, line, len);
1097 }
1098 return commit_lock_file(&packlock);
1099}
1100
Miklos Vajnaeca35a22008-10-26 03:33:56 +01001101int delete_ref(const char *refname, const unsigned char *sha1, int delopt)
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001102{
1103 struct ref_lock *lock;
Miklos Vajnaeca35a22008-10-26 03:33:56 +01001104 int err, i = 0, ret = 0, flag = 0;
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001105
Sven Verdoolaege68db31c2007-05-09 12:33:20 +02001106 lock = lock_ref_sha1_basic(refname, sha1, 0, &flag);
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001107 if (!lock)
1108 return 1;
Miklos Vajna045a4762008-11-01 00:25:44 +01001109 if (!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001110 /* loose */
Miklos Vajnaeca35a22008-10-26 03:33:56 +01001111 const char *path;
1112
1113 if (!(delopt & REF_NODEREF)) {
1114 i = strlen(lock->lk->filename) - 5; /* .lock */
1115 lock->lk->filename[i] = 0;
1116 path = lock->lk->filename;
1117 } else {
Daniel Lowe9db56f72008-11-10 16:07:52 -05001118 path = git_path("%s", refname);
Miklos Vajnaeca35a22008-10-26 03:33:56 +01001119 }
Alex Riesen691f1a22009-04-29 23:22:56 +02001120 err = unlink_or_warn(path);
1121 if (err && errno != ENOENT)
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001122 ret = 1;
Alex Riesen691f1a22009-04-29 23:22:56 +02001123
Miklos Vajnaeca35a22008-10-26 03:33:56 +01001124 if (!(delopt & REF_NODEREF))
1125 lock->lk->filename[i] = '.';
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001126 }
1127 /* removing the loose one could have resurrected an earlier
1128 * packed one. Also, if it was not loose we need to repack
1129 * without it.
1130 */
1131 ret |= repack_without_ref(refname);
1132
Alex Riesen691f1a22009-04-29 23:22:56 +02001133 unlink_or_warn(git_path("logs/%s", lock->ref_name));
Junio C Hamanoc0277d12006-09-30 15:02:00 -07001134 invalidate_cached_refs();
1135 unlock_ref(lock);
1136 return ret;
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001137}
1138
Pierre Habouzit765c2252010-07-07 09:47:20 +02001139/*
1140 * People using contrib's git-new-workdir have .git/logs/refs ->
1141 * /some/other/path/.git/logs/refs, and that may live on another device.
1142 *
1143 * IOW, to avoid cross device rename errors, the temporary renamed log must
1144 * live into logs/refs.
1145 */
1146#define TMP_RENAMED_LOG "logs/refs/.tmp-renamed-log"
1147
Lars Hjemli678d0f42006-11-30 03:16:56 +01001148int rename_ref(const char *oldref, const char *newref, const char *logmsg)
Lars Hjemlic976d412006-11-28 15:47:40 +01001149{
1150 static const char renamed_ref[] = "RENAMED-REF";
1151 unsigned char sha1[20], orig_sha1[20];
1152 int flag = 0, logmoved = 0;
1153 struct ref_lock *lock;
Lars Hjemlic976d412006-11-28 15:47:40 +01001154 struct stat loginfo;
Lars Hjemli16c2bfb2006-11-29 21:44:56 +01001155 int log = !lstat(git_path("logs/%s", oldref), &loginfo);
Miklos Vajnaeca35a22008-10-26 03:33:56 +01001156 const char *symref = NULL;
Lars Hjemlic976d412006-11-28 15:47:40 +01001157
Miklos Vajna450d4c02008-10-26 03:33:57 +01001158 if (log && S_ISLNK(loginfo.st_mode))
Lars Hjemlic976d412006-11-28 15:47:40 +01001159 return error("reflog for %s is a symlink", oldref);
1160
Miklos Vajnaeca35a22008-10-26 03:33:56 +01001161 symref = resolve_ref(oldref, orig_sha1, 1, &flag);
1162 if (flag & REF_ISSYMREF)
Miklos Vajnafa581862008-10-29 01:05:27 +01001163 return error("refname %s is a symbolic ref, renaming it is not supported",
1164 oldref);
Miklos Vajnaeca35a22008-10-26 03:33:56 +01001165 if (!symref)
Lars Hjemlic976d412006-11-28 15:47:40 +01001166 return error("refname %s not found", oldref);
1167
Heiko Voigt0bad6112010-07-07 15:39:11 +02001168 if (!is_refname_available(newref, oldref, get_packed_refs(NULL), 0))
Lars Hjemlic976d412006-11-28 15:47:40 +01001169 return 1;
1170
Heiko Voigt0bad6112010-07-07 15:39:11 +02001171 if (!is_refname_available(newref, oldref, get_loose_refs(NULL), 0))
Lars Hjemlic976d412006-11-28 15:47:40 +01001172 return 1;
1173
Sven Verdoolaege68db31c2007-05-09 12:33:20 +02001174 lock = lock_ref_sha1_basic(renamed_ref, NULL, 0, NULL);
Lars Hjemlic976d412006-11-28 15:47:40 +01001175 if (!lock)
1176 return error("unable to lock %s", renamed_ref);
1177 lock->force_write = 1;
Lars Hjemli678d0f42006-11-30 03:16:56 +01001178 if (write_ref_sha1(lock, orig_sha1, logmsg))
Lars Hjemlic976d412006-11-28 15:47:40 +01001179 return error("unable to save current sha1 in %s", renamed_ref);
1180
Pierre Habouzit765c2252010-07-07 09:47:20 +02001181 if (log && rename(git_path("logs/%s", oldref), git_path(TMP_RENAMED_LOG)))
1182 return error("unable to move logfile logs/%s to "TMP_RENAMED_LOG": %s",
Lars Hjemlic976d412006-11-28 15:47:40 +01001183 oldref, strerror(errno));
1184
Miklos Vajnaeca35a22008-10-26 03:33:56 +01001185 if (delete_ref(oldref, orig_sha1, REF_NODEREF)) {
Lars Hjemlic976d412006-11-28 15:47:40 +01001186 error("unable to delete old %s", oldref);
1187 goto rollback;
1188 }
1189
Miklos Vajnaeca35a22008-10-26 03:33:56 +01001190 if (resolve_ref(newref, sha1, 1, &flag) && delete_ref(newref, sha1, REF_NODEREF)) {
Lars Hjemlic976d412006-11-28 15:47:40 +01001191 if (errno==EISDIR) {
1192 if (remove_empty_directories(git_path("%s", newref))) {
1193 error("Directory not empty: %s", newref);
1194 goto rollback;
1195 }
1196 } else {
1197 error("unable to delete existing %s", newref);
1198 goto rollback;
1199 }
1200 }
1201
1202 if (log && safe_create_leading_directories(git_path("logs/%s", newref))) {
1203 error("unable to create directory for %s", newref);
1204 goto rollback;
1205 }
1206
1207 retry:
Pierre Habouzit765c2252010-07-07 09:47:20 +02001208 if (log && rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", newref))) {
Jason Riedyd9e74d52007-01-15 17:30:59 -08001209 if (errno==EISDIR || errno==ENOTDIR) {
1210 /*
1211 * rename(a, b) when b is an existing
1212 * directory ought to result in ISDIR, but
1213 * Solaris 5.8 gives ENOTDIR. Sheesh.
1214 */
Lars Hjemlic976d412006-11-28 15:47:40 +01001215 if (remove_empty_directories(git_path("logs/%s", newref))) {
1216 error("Directory not empty: logs/%s", newref);
1217 goto rollback;
1218 }
1219 goto retry;
1220 } else {
Pierre Habouzit765c2252010-07-07 09:47:20 +02001221 error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s: %s",
Lars Hjemlic976d412006-11-28 15:47:40 +01001222 newref, strerror(errno));
1223 goto rollback;
1224 }
1225 }
1226 logmoved = log;
1227
Sven Verdoolaege68db31c2007-05-09 12:33:20 +02001228 lock = lock_ref_sha1_basic(newref, NULL, 0, NULL);
Lars Hjemlic976d412006-11-28 15:47:40 +01001229 if (!lock) {
1230 error("unable to lock %s for update", newref);
1231 goto rollback;
1232 }
Lars Hjemlic976d412006-11-28 15:47:40 +01001233 lock->force_write = 1;
1234 hashcpy(lock->old_sha1, orig_sha1);
Lars Hjemli678d0f42006-11-30 03:16:56 +01001235 if (write_ref_sha1(lock, orig_sha1, logmsg)) {
Lars Hjemlic976d412006-11-28 15:47:40 +01001236 error("unable to write current sha1 into %s", newref);
1237 goto rollback;
1238 }
1239
1240 return 0;
1241
1242 rollback:
Sven Verdoolaege68db31c2007-05-09 12:33:20 +02001243 lock = lock_ref_sha1_basic(oldref, NULL, 0, NULL);
Lars Hjemlic976d412006-11-28 15:47:40 +01001244 if (!lock) {
1245 error("unable to lock %s for rollback", oldref);
1246 goto rollbacklog;
1247 }
1248
1249 lock->force_write = 1;
1250 flag = log_all_ref_updates;
1251 log_all_ref_updates = 0;
1252 if (write_ref_sha1(lock, orig_sha1, NULL))
1253 error("unable to write current sha1 into %s", oldref);
1254 log_all_ref_updates = flag;
1255
1256 rollbacklog:
1257 if (logmoved && rename(git_path("logs/%s", newref), git_path("logs/%s", oldref)))
1258 error("unable to restore logfile %s from %s: %s",
1259 oldref, newref, strerror(errno));
1260 if (!logmoved && log &&
Pierre Habouzit765c2252010-07-07 09:47:20 +02001261 rename(git_path(TMP_RENAMED_LOG), git_path("logs/%s", oldref)))
1262 error("unable to restore logfile %s from "TMP_RENAMED_LOG": %s",
Lars Hjemlic976d412006-11-28 15:47:40 +01001263 oldref, strerror(errno));
1264
1265 return 1;
1266}
1267
Brandon Casey435fc852008-02-22 12:57:30 -06001268int close_ref(struct ref_lock *lock)
Brandon Caseyb5313942008-01-16 13:14:30 -06001269{
1270 if (close_lock_file(lock->lk))
1271 return -1;
1272 lock->lock_fd = -1;
1273 return 0;
1274}
1275
Brandon Casey435fc852008-02-22 12:57:30 -06001276int commit_ref(struct ref_lock *lock)
Brandon Caseyb5313942008-01-16 13:14:30 -06001277{
1278 if (commit_lock_file(lock->lk))
1279 return -1;
1280 lock->lock_fd = -1;
1281 return 0;
1282}
1283
Junio C Hamanoe5f38ec2006-06-06 14:04:17 -07001284void unlock_ref(struct ref_lock *lock)
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001285{
Brandon Casey4ed7cd32008-01-16 13:12:46 -06001286 /* Do not free lock->lk -- atexit() still looks at them */
1287 if (lock->lk)
1288 rollback_lock_file(lock->lk);
Linus Torvalds434cd0c2006-09-14 10:14:47 -07001289 free(lock->ref_name);
Nicolas Pitre16557072007-01-26 17:26:06 -05001290 free(lock->orig_ref_name);
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001291 free(lock);
1292}
1293
Junio C Hamano0ec29a42007-07-28 17:17:17 -07001294/*
1295 * copy the reflog message msg to buf, which has been allocated sufficiently
1296 * large, while cleaning up the whitespaces. Especially, convert LF to space,
1297 * because reflog file is one line per entry.
1298 */
1299static int copy_msg(char *buf, const char *msg)
1300{
1301 char *cp = buf;
1302 char c;
1303 int wasspace = 1;
1304
1305 *cp++ = '\t';
1306 while ((c = *msg++)) {
1307 if (wasspace && isspace(c))
1308 continue;
1309 wasspace = isspace(c);
1310 if (wasspace)
1311 c = ' ';
1312 *cp++ = c;
1313 }
1314 while (buf < cp && isspace(cp[-1]))
1315 cp--;
1316 *cp++ = '\n';
1317 return cp - buf;
1318}
1319
Thomas Rast157aaea2010-06-10 14:54:03 +02001320int log_ref_setup(const char *ref_name, char *logfile, int bufsize)
Erick Mattos859c3012010-05-21 21:28:36 -03001321{
1322 int logfd, oflags = O_APPEND | O_WRONLY;
Erick Mattos859c3012010-05-21 21:28:36 -03001323
Thomas Rast157aaea2010-06-10 14:54:03 +02001324 git_snpath(logfile, bufsize, "logs/%s", ref_name);
Erick Mattos859c3012010-05-21 21:28:36 -03001325 if (log_all_ref_updates &&
1326 (!prefixcmp(ref_name, "refs/heads/") ||
1327 !prefixcmp(ref_name, "refs/remotes/") ||
1328 !prefixcmp(ref_name, "refs/notes/") ||
1329 !strcmp(ref_name, "HEAD"))) {
Thomas Rast157aaea2010-06-10 14:54:03 +02001330 if (safe_create_leading_directories(logfile) < 0)
Erick Mattos859c3012010-05-21 21:28:36 -03001331 return error("unable to create directory for %s",
Thomas Rast157aaea2010-06-10 14:54:03 +02001332 logfile);
Erick Mattos859c3012010-05-21 21:28:36 -03001333 oflags |= O_CREAT;
1334 }
1335
Thomas Rast157aaea2010-06-10 14:54:03 +02001336 logfd = open(logfile, oflags, 0666);
Erick Mattos859c3012010-05-21 21:28:36 -03001337 if (logfd < 0) {
1338 if (!(oflags & O_CREAT) && errno == ENOENT)
1339 return 0;
1340
1341 if ((oflags & O_CREAT) && errno == EISDIR) {
Thomas Rast157aaea2010-06-10 14:54:03 +02001342 if (remove_empty_directories(logfile)) {
Erick Mattos859c3012010-05-21 21:28:36 -03001343 return error("There are still logs under '%s'",
Thomas Rast157aaea2010-06-10 14:54:03 +02001344 logfile);
Erick Mattos859c3012010-05-21 21:28:36 -03001345 }
Thomas Rast157aaea2010-06-10 14:54:03 +02001346 logfd = open(logfile, oflags, 0666);
Erick Mattos859c3012010-05-21 21:28:36 -03001347 }
1348
1349 if (logfd < 0)
1350 return error("Unable to append to %s: %s",
Thomas Rast157aaea2010-06-10 14:54:03 +02001351 logfile, strerror(errno));
Erick Mattos859c3012010-05-21 21:28:36 -03001352 }
1353
Thomas Rast157aaea2010-06-10 14:54:03 +02001354 adjust_shared_perm(logfile);
Erick Mattos859c3012010-05-21 21:28:36 -03001355 close(logfd);
1356 return 0;
1357}
1358
Nicolas Pitre9a13f0b2007-01-26 17:26:05 -05001359static int log_ref_write(const char *ref_name, const unsigned char *old_sha1,
1360 const unsigned char *new_sha1, const char *msg)
Shawn Pearce6de08ae2006-05-17 05:55:40 -04001361{
Erick Mattos859c3012010-05-21 21:28:36 -03001362 int logfd, result, written, oflags = O_APPEND | O_WRONLY;
Shawn Pearce6de08ae2006-05-17 05:55:40 -04001363 unsigned maxlen, len;
Junio C Hamano8ac65932007-01-26 02:26:04 -08001364 int msglen;
Thomas Rast157aaea2010-06-10 14:54:03 +02001365 char log_file[PATH_MAX];
Alex Riesen958a4782008-10-27 11:11:40 +01001366 char *logrec;
Alp Tokerff4c8482006-07-09 10:36:24 +01001367 const char *committer;
Shawn Pearce6de08ae2006-05-17 05:55:40 -04001368
Junio C Hamano510c5a82007-01-07 01:35:34 -08001369 if (log_all_ref_updates < 0)
Junio C Hamano7d1864c2007-01-07 02:00:28 -08001370 log_all_ref_updates = !is_bare_repository();
Junio C Hamano510c5a82007-01-07 01:35:34 -08001371
Thomas Rast157aaea2010-06-10 14:54:03 +02001372 result = log_ref_setup(ref_name, log_file, sizeof(log_file));
Erick Mattos859c3012010-05-21 21:28:36 -03001373 if (result)
1374 return result;
Nicolas Pitre9a13f0b2007-01-26 17:26:05 -05001375
Erick Mattos859c3012010-05-21 21:28:36 -03001376 logfd = open(log_file, oflags);
1377 if (logfd < 0)
1378 return 0;
Junio C Hamano0ec29a42007-07-28 17:17:17 -07001379 msglen = msg ? strlen(msg) : 0;
Junio C Hamano774751a2007-12-08 17:32:08 -08001380 committer = git_committer_info(0);
Junio C Hamano8ac65932007-01-26 02:26:04 -08001381 maxlen = strlen(committer) + msglen + 100;
1382 logrec = xmalloc(maxlen);
1383 len = sprintf(logrec, "%s %s %s\n",
Nicolas Pitre9a13f0b2007-01-26 17:26:05 -05001384 sha1_to_hex(old_sha1),
1385 sha1_to_hex(new_sha1),
Junio C Hamano8ac65932007-01-26 02:26:04 -08001386 committer);
1387 if (msglen)
Junio C Hamano0ec29a42007-07-28 17:17:17 -07001388 len += copy_msg(logrec + len - 1, msg) - 1;
Andy Whitcroft93822c22007-01-08 15:58:23 +00001389 written = len <= maxlen ? write_in_full(logfd, logrec, len) : -1;
Shawn Pearce6de08ae2006-05-17 05:55:40 -04001390 free(logrec);
Jim Meyering91c8d592007-06-24 21:20:41 +02001391 if (close(logfd) != 0 || written != len)
Nicolas Pitre9a13f0b2007-01-26 17:26:05 -05001392 return error("Unable to append to %s", log_file);
Shawn Pearce6de08ae2006-05-17 05:55:40 -04001393 return 0;
1394}
1395
Linus Torvaldsc3b0dec2008-01-15 15:50:17 -08001396static int is_branch(const char *refname)
1397{
1398 return !strcmp(refname, "HEAD") || !prefixcmp(refname, "refs/heads/");
1399}
1400
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001401int write_ref_sha1(struct ref_lock *lock,
1402 const unsigned char *sha1, const char *logmsg)
1403{
1404 static char term = '\n';
Linus Torvaldsc3b0dec2008-01-15 15:50:17 -08001405 struct object *o;
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001406
1407 if (!lock)
1408 return -1;
David Rientjesa89fccd2006-08-17 11:54:57 -07001409 if (!lock->force_write && !hashcmp(lock->old_sha1, sha1)) {
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001410 unlock_ref(lock);
1411 return 0;
1412 }
Linus Torvaldsc3b0dec2008-01-15 15:50:17 -08001413 o = parse_object(sha1);
1414 if (!o) {
1415 error("Trying to write ref %s with nonexistant object %s",
1416 lock->ref_name, sha1_to_hex(sha1));
1417 unlock_ref(lock);
1418 return -1;
1419 }
1420 if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) {
1421 error("Trying to write non-commit object %s to branch %s",
1422 sha1_to_hex(sha1), lock->ref_name);
1423 unlock_ref(lock);
1424 return -1;
1425 }
Andy Whitcroft93822c22007-01-08 15:58:23 +00001426 if (write_in_full(lock->lock_fd, sha1_to_hex(sha1), 40) != 40 ||
1427 write_in_full(lock->lock_fd, &term, 1) != 1
Brandon Caseyb5313942008-01-16 13:14:30 -06001428 || close_ref(lock) < 0) {
Junio C Hamanoc33d5172006-06-06 13:54:14 -07001429 error("Couldn't write %s", lock->lk->filename);
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001430 unlock_ref(lock);
1431 return -1;
1432 }
Junio C Hamano5e290ff2006-09-30 12:37:37 -07001433 invalidate_cached_refs();
Nicolas Pitrebd104db2007-01-26 17:26:07 -05001434 if (log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) < 0 ||
1435 (strcmp(lock->ref_name, lock->orig_ref_name) &&
1436 log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) < 0)) {
Shawn Pearce6de08ae2006-05-17 05:55:40 -04001437 unlock_ref(lock);
1438 return -1;
1439 }
Nicolas Pitre605fac82007-03-21 17:11:44 -04001440 if (strcmp(lock->orig_ref_name, "HEAD") != 0) {
1441 /*
1442 * Special hack: If a branch is updated directly and HEAD
1443 * points to it (may happen on the remote side of a push
1444 * for example) then logically the HEAD reflog should be
1445 * updated too.
1446 * A generic solution implies reverse symref information,
1447 * but finding all symrefs pointing to the given branch
1448 * would be rather costly for this rare event (the direct
1449 * update of a branch) to be worth it. So let's cheat and
1450 * check with HEAD only which should cover 99% of all usage
1451 * scenarios (even 100% of the default ones).
1452 */
1453 unsigned char head_sha1[20];
1454 int head_flag;
1455 const char *head_ref;
1456 head_ref = resolve_ref("HEAD", head_sha1, 1, &head_flag);
1457 if (head_ref && (head_flag & REF_ISSYMREF) &&
1458 !strcmp(head_ref, lock->ref_name))
1459 log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);
1460 }
Brandon Caseyb5313942008-01-16 13:14:30 -06001461 if (commit_ref(lock)) {
Linus Torvalds434cd0c2006-09-14 10:14:47 -07001462 error("Couldn't set %s", lock->ref_name);
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001463 unlock_ref(lock);
1464 return -1;
1465 }
Shawn Pearce4bd18c42006-05-17 05:55:02 -04001466 unlock_ref(lock);
1467 return 0;
Daniel Barkalow95fc7512005-06-06 16:31:29 -04001468}
Shawn Pearced556fae2006-05-17 05:56:09 -04001469
Nicolas Pitre8b5157e2007-01-26 17:26:10 -05001470int create_symref(const char *ref_target, const char *refs_heads_master,
1471 const char *logmsg)
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001472{
1473 const char *lockpath;
1474 char ref[1000];
1475 int fd, len, written;
Alex Riesena4f34cb2008-10-27 11:22:09 +01001476 char *git_HEAD = git_pathdup("%s", ref_target);
Nicolas Pitre8b5157e2007-01-26 17:26:10 -05001477 unsigned char old_sha1[20], new_sha1[20];
1478
1479 if (logmsg && read_ref(ref_target, old_sha1))
1480 hashclr(old_sha1);
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001481
Junio C Hamanod48744d2007-02-07 23:41:43 -08001482 if (safe_create_leading_directories(git_HEAD) < 0)
1483 return error("unable to create directory for %s", git_HEAD);
1484
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001485#ifndef NO_SYMLINK_HEAD
1486 if (prefer_symlink_refs) {
1487 unlink(git_HEAD);
1488 if (!symlink(refs_heads_master, git_HEAD))
Nicolas Pitre8b5157e2007-01-26 17:26:10 -05001489 goto done;
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001490 fprintf(stderr, "no symlink - falling back to symbolic ref\n");
1491 }
1492#endif
1493
1494 len = snprintf(ref, sizeof(ref), "ref: %s\n", refs_heads_master);
1495 if (sizeof(ref) <= len) {
1496 error("refname too long: %s", refs_heads_master);
Junio C Hamano47fc52e2007-01-26 17:49:00 -08001497 goto error_free_return;
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001498 }
1499 lockpath = mkpath("%s.lock", git_HEAD);
1500 fd = open(lockpath, O_CREAT | O_EXCL | O_WRONLY, 0666);
1501 if (fd < 0) {
1502 error("Unable to open %s for writing", lockpath);
Junio C Hamano47fc52e2007-01-26 17:49:00 -08001503 goto error_free_return;
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001504 }
1505 written = write_in_full(fd, ref, len);
Jim Meyering91c8d592007-06-24 21:20:41 +02001506 if (close(fd) != 0 || written != len) {
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001507 error("Unable to write to %s", lockpath);
Junio C Hamano47fc52e2007-01-26 17:49:00 -08001508 goto error_unlink_return;
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001509 }
1510 if (rename(lockpath, git_HEAD) < 0) {
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001511 error("Unable to create %s", git_HEAD);
Junio C Hamano47fc52e2007-01-26 17:49:00 -08001512 goto error_unlink_return;
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001513 }
1514 if (adjust_shared_perm(git_HEAD)) {
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001515 error("Unable to fix permissions on %s", lockpath);
Junio C Hamano47fc52e2007-01-26 17:49:00 -08001516 error_unlink_return:
Alex Riesen691f1a22009-04-29 23:22:56 +02001517 unlink_or_warn(lockpath);
Junio C Hamano47fc52e2007-01-26 17:49:00 -08001518 error_free_return:
1519 free(git_HEAD);
1520 return -1;
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001521 }
Nicolas Pitre8b5157e2007-01-26 17:26:10 -05001522
Ramsay Jonesee96d112007-03-03 18:28:46 +00001523#ifndef NO_SYMLINK_HEAD
Nicolas Pitre8b5157e2007-01-26 17:26:10 -05001524 done:
Ramsay Jonesee96d112007-03-03 18:28:46 +00001525#endif
Nicolas Pitre8b5157e2007-01-26 17:26:10 -05001526 if (logmsg && !read_ref(refs_heads_master, new_sha1))
1527 log_ref_write(ref_target, old_sha1, new_sha1, logmsg);
1528
Junio C Hamano47fc52e2007-01-26 17:49:00 -08001529 free(git_HEAD);
Nicolas Pitre41b625b2007-01-26 17:26:09 -05001530 return 0;
1531}
1532
Junio C Hamano16d7cc92007-01-19 01:19:05 -08001533static char *ref_msg(const char *line, const char *endp)
1534{
1535 const char *ep;
Junio C Hamano16d7cc92007-01-19 01:19:05 -08001536 line += 82;
Pierre Habouzit182af832007-09-16 00:32:36 +02001537 ep = memchr(line, '\n', endp - line);
1538 if (!ep)
1539 ep = endp;
1540 return xmemdupz(line, ep - line);
Junio C Hamano16d7cc92007-01-19 01:19:05 -08001541}
1542
1543int read_ref_at(const char *ref, unsigned long at_time, int cnt, unsigned char *sha1, char **msg, unsigned long *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
Shawn Pearced556fae2006-05-17 05:56:09 -04001544{
Shawn Pearcee5229042006-05-19 03:28:19 -04001545 const char *logfile, *logdata, *logend, *rec, *lastgt, *lastrec;
Shawn Pearced556fae2006-05-17 05:56:09 -04001546 char *tz_c;
Junio C Hamanoe29cb532006-12-18 22:07:45 -08001547 int logfd, tz, reccnt = 0;
Shawn Pearced556fae2006-05-17 05:56:09 -04001548 struct stat st;
1549 unsigned long date;
Shawn Pearcee5229042006-05-19 03:28:19 -04001550 unsigned char logged_sha1[20];
Junio C Hamanocb48cb52007-01-19 00:39:32 -08001551 void *log_mapped;
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -05001552 size_t mapsz;
Shawn Pearced556fae2006-05-17 05:56:09 -04001553
1554 logfile = git_path("logs/%s", ref);
1555 logfd = open(logfile, O_RDONLY, 0);
1556 if (logfd < 0)
Thomas Rastd824cbb2009-06-27 17:58:46 +02001557 die_errno("Unable to read log '%s'", logfile);
Shawn Pearced556fae2006-05-17 05:56:09 -04001558 fstat(logfd, &st);
1559 if (!st.st_size)
1560 die("Log %s is empty.", logfile);
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -05001561 mapsz = xsize_t(st.st_size);
1562 log_mapped = xmmap(NULL, mapsz, PROT_READ, MAP_PRIVATE, logfd, 0);
Junio C Hamanocb48cb52007-01-19 00:39:32 -08001563 logdata = log_mapped;
Shawn Pearced556fae2006-05-17 05:56:09 -04001564 close(logfd);
1565
Shawn Pearcee5229042006-05-19 03:28:19 -04001566 lastrec = NULL;
Shawn Pearced556fae2006-05-17 05:56:09 -04001567 rec = logend = logdata + st.st_size;
1568 while (logdata < rec) {
Junio C Hamanoe29cb532006-12-18 22:07:45 -08001569 reccnt++;
Shawn Pearced556fae2006-05-17 05:56:09 -04001570 if (logdata < rec && *(rec-1) == '\n')
1571 rec--;
Shawn Pearcee5229042006-05-19 03:28:19 -04001572 lastgt = NULL;
1573 while (logdata < rec && *(rec-1) != '\n') {
Shawn Pearced556fae2006-05-17 05:56:09 -04001574 rec--;
Shawn Pearcee5229042006-05-19 03:28:19 -04001575 if (*rec == '>')
1576 lastgt = rec;
1577 }
1578 if (!lastgt)
Shawn Pearced556fae2006-05-17 05:56:09 -04001579 die("Log %s is corrupt.", logfile);
Shawn Pearcee5229042006-05-19 03:28:19 -04001580 date = strtoul(lastgt + 1, &tz_c, 10);
Junio C Hamanoab2a1a32006-10-05 23:16:15 -07001581 if (date <= at_time || cnt == 0) {
Junio C Hamano76a44c52007-01-19 01:20:23 -08001582 tz = strtoul(tz_c, NULL, 10);
Junio C Hamano16d7cc92007-01-19 01:19:05 -08001583 if (msg)
1584 *msg = ref_msg(rec, logend);
1585 if (cutoff_time)
1586 *cutoff_time = date;
1587 if (cutoff_tz)
1588 *cutoff_tz = tz;
1589 if (cutoff_cnt)
Junio C Hamano76a44c52007-01-19 01:20:23 -08001590 *cutoff_cnt = reccnt - 1;
Shawn Pearcee5229042006-05-19 03:28:19 -04001591 if (lastrec) {
1592 if (get_sha1_hex(lastrec, logged_sha1))
1593 die("Log %s is corrupt.", logfile);
1594 if (get_sha1_hex(rec + 41, sha1))
1595 die("Log %s is corrupt.", logfile);
David Rientjesa89fccd2006-08-17 11:54:57 -07001596 if (hashcmp(logged_sha1, sha1)) {
Miklos Vajnaedbc25c2009-03-24 02:09:17 +01001597 warning("Log %s has gap after %s.",
Junio C Hamano73013af2007-07-13 23:14:52 -07001598 logfile, show_date(date, tz, DATE_RFC2822));
Shawn Pearcee5229042006-05-19 03:28:19 -04001599 }
Junio C Hamanoe5f38ec2006-06-06 14:04:17 -07001600 }
1601 else if (date == at_time) {
Shawn Pearcee5229042006-05-19 03:28:19 -04001602 if (get_sha1_hex(rec + 41, sha1))
1603 die("Log %s is corrupt.", logfile);
Junio C Hamanoe5f38ec2006-06-06 14:04:17 -07001604 }
1605 else {
Shawn Pearcee5229042006-05-19 03:28:19 -04001606 if (get_sha1_hex(rec + 41, logged_sha1))
1607 die("Log %s is corrupt.", logfile);
David Rientjesa89fccd2006-08-17 11:54:57 -07001608 if (hashcmp(logged_sha1, sha1)) {
Miklos Vajnaedbc25c2009-03-24 02:09:17 +01001609 warning("Log %s unexpectedly ended on %s.",
Junio C Hamano73013af2007-07-13 23:14:52 -07001610 logfile, show_date(date, tz, DATE_RFC2822));
Shawn Pearcee5229042006-05-19 03:28:19 -04001611 }
1612 }
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -05001613 munmap(log_mapped, mapsz);
Shawn Pearced556fae2006-05-17 05:56:09 -04001614 return 0;
1615 }
Shawn Pearcee5229042006-05-19 03:28:19 -04001616 lastrec = rec;
Junio C Hamanoab2a1a32006-10-05 23:16:15 -07001617 if (cnt > 0)
1618 cnt--;
Shawn Pearced556fae2006-05-17 05:56:09 -04001619 }
1620
Shawn Pearcee5229042006-05-19 03:28:19 -04001621 rec = logdata;
1622 while (rec < logend && *rec != '>' && *rec != '\n')
1623 rec++;
1624 if (rec == logend || *rec == '\n')
Shawn Pearced556fae2006-05-17 05:56:09 -04001625 die("Log %s is corrupt.", logfile);
Shawn Pearcee5229042006-05-19 03:28:19 -04001626 date = strtoul(rec + 1, &tz_c, 10);
Shawn Pearced556fae2006-05-17 05:56:09 -04001627 tz = strtoul(tz_c, NULL, 10);
1628 if (get_sha1_hex(logdata, sha1))
1629 die("Log %s is corrupt.", logfile);
Jeff Kingd1a44892008-07-08 00:38:54 -04001630 if (is_null_sha1(sha1)) {
1631 if (get_sha1_hex(logdata + 41, sha1))
1632 die("Log %s is corrupt.", logfile);
1633 }
Junio C Hamano16d7cc92007-01-19 01:19:05 -08001634 if (msg)
1635 *msg = ref_msg(logdata, logend);
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -05001636 munmap(log_mapped, mapsz);
Junio C Hamano16d7cc92007-01-19 01:19:05 -08001637
1638 if (cutoff_time)
1639 *cutoff_time = date;
1640 if (cutoff_tz)
1641 *cutoff_tz = tz;
1642 if (cutoff_cnt)
1643 *cutoff_cnt = reccnt;
1644 return 1;
Shawn Pearced556fae2006-05-17 05:56:09 -04001645}
Junio C Hamano2ff81662006-12-18 01:18:16 -08001646
Junio C Hamano101d15e2009-01-19 22:18:29 -08001647int for_each_recent_reflog_ent(const char *ref, each_reflog_ent_fn fn, long ofs, void *cb_data)
Junio C Hamano2ff81662006-12-18 01:18:16 -08001648{
1649 const char *logfile;
1650 FILE *logfp;
René Scharfe8ca78802010-03-13 18:37:50 +01001651 struct strbuf sb = STRBUF_INIT;
Junio C Hamano2266bf22007-01-18 23:25:54 -08001652 int ret = 0;
Junio C Hamano2ff81662006-12-18 01:18:16 -08001653
1654 logfile = git_path("logs/%s", ref);
1655 logfp = fopen(logfile, "r");
1656 if (!logfp)
Johannes Schindelin883d60f2007-01-08 01:59:54 +01001657 return -1;
Junio C Hamano101d15e2009-01-19 22:18:29 -08001658
1659 if (ofs) {
1660 struct stat statbuf;
1661 if (fstat(fileno(logfp), &statbuf) ||
1662 statbuf.st_size < ofs ||
1663 fseek(logfp, -ofs, SEEK_END) ||
René Scharfe8ca78802010-03-13 18:37:50 +01001664 strbuf_getwholeline(&sb, logfp, '\n')) {
Brandon Casey9d33f7c2009-07-16 16:25:18 -05001665 fclose(logfp);
René Scharfe8ca78802010-03-13 18:37:50 +01001666 strbuf_release(&sb);
Junio C Hamano101d15e2009-01-19 22:18:29 -08001667 return -1;
Brandon Casey9d33f7c2009-07-16 16:25:18 -05001668 }
Junio C Hamano101d15e2009-01-19 22:18:29 -08001669 }
1670
René Scharfe8ca78802010-03-13 18:37:50 +01001671 while (!strbuf_getwholeline(&sb, logfp, '\n')) {
Junio C Hamano2ff81662006-12-18 01:18:16 -08001672 unsigned char osha1[20], nsha1[20];
Johannes Schindelin883d60f2007-01-08 01:59:54 +01001673 char *email_end, *message;
1674 unsigned long timestamp;
René Scharfe8ca78802010-03-13 18:37:50 +01001675 int tz;
Junio C Hamano2ff81662006-12-18 01:18:16 -08001676
1677 /* old SP new SP name <email> SP time TAB msg LF */
René Scharfe8ca78802010-03-13 18:37:50 +01001678 if (sb.len < 83 || sb.buf[sb.len - 1] != '\n' ||
1679 get_sha1_hex(sb.buf, osha1) || sb.buf[40] != ' ' ||
1680 get_sha1_hex(sb.buf + 41, nsha1) || sb.buf[81] != ' ' ||
1681 !(email_end = strchr(sb.buf + 82, '>')) ||
Johannes Schindelin883d60f2007-01-08 01:59:54 +01001682 email_end[1] != ' ' ||
1683 !(timestamp = strtoul(email_end + 2, &message, 10)) ||
1684 !message || message[0] != ' ' ||
1685 (message[1] != '+' && message[1] != '-') ||
1686 !isdigit(message[2]) || !isdigit(message[3]) ||
Johannes Schindelinb4dd4852007-02-09 00:59:47 +01001687 !isdigit(message[4]) || !isdigit(message[5]))
Junio C Hamano2ff81662006-12-18 01:18:16 -08001688 continue; /* corrupt? */
Johannes Schindelin883d60f2007-01-08 01:59:54 +01001689 email_end[1] = '\0';
1690 tz = strtol(message + 1, NULL, 10);
Johannes Schindelinb4dd4852007-02-09 00:59:47 +01001691 if (message[6] != '\t')
1692 message += 6;
1693 else
1694 message += 7;
René Scharfe8ca78802010-03-13 18:37:50 +01001695 ret = fn(osha1, nsha1, sb.buf + 82, timestamp, tz, message,
1696 cb_data);
Johannes Schindelin883d60f2007-01-08 01:59:54 +01001697 if (ret)
Junio C Hamano2266bf22007-01-18 23:25:54 -08001698 break;
Junio C Hamano2ff81662006-12-18 01:18:16 -08001699 }
1700 fclose(logfp);
René Scharfe8ca78802010-03-13 18:37:50 +01001701 strbuf_release(&sb);
Junio C Hamano2266bf22007-01-18 23:25:54 -08001702 return ret;
Junio C Hamano2ff81662006-12-18 01:18:16 -08001703}
Junio C Hamanoe29cb532006-12-18 22:07:45 -08001704
Junio C Hamano101d15e2009-01-19 22:18:29 -08001705int for_each_reflog_ent(const char *ref, each_reflog_ent_fn fn, void *cb_data)
1706{
1707 return for_each_recent_reflog_ent(ref, fn, 0, cb_data);
1708}
1709
Nicolas Pitreeb8381c2007-02-03 13:25:43 -05001710static int do_for_each_reflog(const char *base, each_ref_fn fn, void *cb_data)
1711{
1712 DIR *dir = opendir(git_path("logs/%s", base));
Junio C Hamanofcee5a12007-02-07 09:18:57 -08001713 int retval = 0;
Nicolas Pitreeb8381c2007-02-03 13:25:43 -05001714
1715 if (dir) {
1716 struct dirent *de;
1717 int baselen = strlen(base);
1718 char *log = xmalloc(baselen + 257);
1719
1720 memcpy(log, base, baselen);
1721 if (baselen && base[baselen-1] != '/')
1722 log[baselen++] = '/';
1723
1724 while ((de = readdir(dir)) != NULL) {
1725 struct stat st;
1726 int namelen;
1727
1728 if (de->d_name[0] == '.')
1729 continue;
1730 namelen = strlen(de->d_name);
1731 if (namelen > 255)
1732 continue;
1733 if (has_extension(de->d_name, ".lock"))
1734 continue;
1735 memcpy(log + baselen, de->d_name, namelen+1);
1736 if (stat(git_path("logs/%s", log), &st) < 0)
1737 continue;
1738 if (S_ISDIR(st.st_mode)) {
1739 retval = do_for_each_reflog(log, fn, cb_data);
1740 } else {
1741 unsigned char sha1[20];
1742 if (!resolve_ref(log, sha1, 0, NULL))
1743 retval = error("bad ref for %s", log);
1744 else
1745 retval = fn(log, sha1, 0, cb_data);
1746 }
1747 if (retval)
1748 break;
1749 }
1750 free(log);
1751 closedir(dir);
1752 }
Junio C Hamanoacb39f62007-02-12 23:21:34 -08001753 else if (*base)
Junio C Hamanofcee5a12007-02-07 09:18:57 -08001754 return errno;
Nicolas Pitreeb8381c2007-02-03 13:25:43 -05001755 return retval;
1756}
1757
1758int for_each_reflog(each_ref_fn fn, void *cb_data)
1759{
1760 return do_for_each_reflog("", fn, cb_data);
1761}
Carlos Rica3d9f0372007-09-05 03:38:24 +02001762
1763int update_ref(const char *action, const char *refname,
1764 const unsigned char *sha1, const unsigned char *oldval,
1765 int flags, enum action_on_err onerr)
1766{
1767 static struct ref_lock *lock;
1768 lock = lock_any_ref_for_update(refname, oldval, flags);
1769 if (!lock) {
1770 const char *str = "Cannot lock the ref '%s'.";
1771 switch (onerr) {
1772 case MSG_ON_ERR: error(str, refname); break;
1773 case DIE_ON_ERR: die(str, refname); break;
1774 case QUIET_ON_ERR: break;
1775 }
1776 return 1;
1777 }
1778 if (write_ref_sha1(lock, sha1, action) < 0) {
1779 const char *str = "Cannot update the ref '%s'.";
1780 switch (onerr) {
1781 case MSG_ON_ERR: error(str, refname); break;
1782 case DIE_ON_ERR: die(str, refname); break;
1783 case QUIET_ON_ERR: break;
1784 }
1785 return 1;
1786 }
1787 return 0;
1788}
Jeff Kingcda69f42007-11-18 02:13:10 -05001789
Jeff King5483f792009-02-25 03:32:10 -05001790struct ref *find_ref_by_name(const struct ref *list, const char *name)
Jeff Kingcda69f42007-11-18 02:13:10 -05001791{
1792 for ( ; list; list = list->next)
1793 if (!strcmp(list->name, name))
Jeff King5483f792009-02-25 03:32:10 -05001794 return (struct ref *)list;
Jeff Kingcda69f42007-11-18 02:13:10 -05001795 return NULL;
1796}
Jeff King7c2b3022009-04-07 03:14:20 -04001797
1798/*
1799 * generate a format suitable for scanf from a ref_rev_parse_rules
1800 * rule, that is replace the "%.*s" spec with a "%s" spec
1801 */
1802static void gen_scanf_fmt(char *scanf_fmt, const char *rule)
1803{
1804 char *spec;
1805
1806 spec = strstr(rule, "%.*s");
1807 if (!spec || strstr(spec + 4, "%.*s"))
1808 die("invalid rule in ref_rev_parse_rules: %s", rule);
1809
1810 /* copy all until spec */
1811 strncpy(scanf_fmt, rule, spec - rule);
1812 scanf_fmt[spec - rule] = '\0';
1813 /* copy new spec */
1814 strcat(scanf_fmt, "%s");
1815 /* copy remaining rule */
1816 strcat(scanf_fmt, spec + 4);
1817
1818 return;
1819}
1820
Bert Wesarg6e7b3302009-04-13 12:25:46 +02001821char *shorten_unambiguous_ref(const char *ref, int strict)
Jeff King7c2b3022009-04-07 03:14:20 -04001822{
1823 int i;
1824 static char **scanf_fmts;
1825 static int nr_rules;
1826 char *short_name;
1827
1828 /* pre generate scanf formats from ref_rev_parse_rules[] */
1829 if (!nr_rules) {
1830 size_t total_len = 0;
1831
1832 /* the rule list is NULL terminated, count them first */
1833 for (; ref_rev_parse_rules[nr_rules]; nr_rules++)
1834 /* no +1 because strlen("%s") < strlen("%.*s") */
1835 total_len += strlen(ref_rev_parse_rules[nr_rules]);
1836
1837 scanf_fmts = xmalloc(nr_rules * sizeof(char *) + total_len);
1838
1839 total_len = 0;
1840 for (i = 0; i < nr_rules; i++) {
1841 scanf_fmts[i] = (char *)&scanf_fmts[nr_rules]
1842 + total_len;
1843 gen_scanf_fmt(scanf_fmts[i], ref_rev_parse_rules[i]);
1844 total_len += strlen(ref_rev_parse_rules[i]);
1845 }
1846 }
1847
1848 /* bail out if there are no rules */
1849 if (!nr_rules)
1850 return xstrdup(ref);
1851
1852 /* buffer for scanf result, at most ref must fit */
1853 short_name = xstrdup(ref);
1854
1855 /* skip first rule, it will always match */
1856 for (i = nr_rules - 1; i > 0 ; --i) {
1857 int j;
Bert Wesarg6e7b3302009-04-13 12:25:46 +02001858 int rules_to_fail = i;
Jeff King7c2b3022009-04-07 03:14:20 -04001859 int short_name_len;
1860
1861 if (1 != sscanf(ref, scanf_fmts[i], short_name))
1862 continue;
1863
1864 short_name_len = strlen(short_name);
1865
1866 /*
Bert Wesarg6e7b3302009-04-13 12:25:46 +02001867 * in strict mode, all (except the matched one) rules
1868 * must fail to resolve to a valid non-ambiguous ref
1869 */
1870 if (strict)
1871 rules_to_fail = nr_rules;
1872
1873 /*
Jeff King7c2b3022009-04-07 03:14:20 -04001874 * check if the short name resolves to a valid ref,
1875 * but use only rules prior to the matched one
1876 */
Bert Wesarg6e7b3302009-04-13 12:25:46 +02001877 for (j = 0; j < rules_to_fail; j++) {
Jeff King7c2b3022009-04-07 03:14:20 -04001878 const char *rule = ref_rev_parse_rules[j];
1879 unsigned char short_objectname[20];
1880 char refname[PATH_MAX];
1881
Bert Wesarg6e7b3302009-04-13 12:25:46 +02001882 /* skip matched rule */
1883 if (i == j)
1884 continue;
1885
Jeff King7c2b3022009-04-07 03:14:20 -04001886 /*
1887 * the short name is ambiguous, if it resolves
1888 * (with this previous rule) to a valid ref
1889 * read_ref() returns 0 on success
1890 */
1891 mksnpath(refname, sizeof(refname),
1892 rule, short_name_len, short_name);
1893 if (!read_ref(refname, short_objectname))
1894 break;
1895 }
1896
1897 /*
1898 * short name is non-ambiguous if all previous rules
1899 * haven't resolved to a valid ref
1900 */
Bert Wesarg6e7b3302009-04-13 12:25:46 +02001901 if (j == rules_to_fail)
Jeff King7c2b3022009-04-07 03:14:20 -04001902 return short_name;
1903 }
1904
1905 free(short_name);
1906 return xstrdup(ref);
1907}