6 /* We allow "recursive" symbolic refs. Only within reason, though */
9 #ifndef USE_SYMLINK_HEAD
10 #define USE_SYMLINK_HEAD 1
13 int validate_symref(const char *path
)
16 char *buf
, buffer
[256];
19 if (lstat(path
, &st
) < 0)
22 /* Make sure it is a "refs/.." symlink */
23 if (S_ISLNK(st
.st_mode
)) {
24 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
25 if (len
>= 5 && !memcmp("refs/", buffer
, 5))
31 * Anything else, just open it and try to see if it is a symbolic ref.
33 fd
= open(path
, O_RDONLY
);
36 len
= read(fd
, buffer
, sizeof(buffer
)-1);
40 * Is it a symbolic ref?
42 if (len
< 4 || memcmp("ref:", buffer
, 4))
46 while (len
&& isspace(*buf
))
48 if (len
>= 5 && !memcmp("refs/", buf
, 5))
53 const char *resolve_ref(const char *path
, unsigned char *sha1
, int reading
)
55 int depth
= MAXDEPTH
, len
;
66 /* Special case: non-existing file.
67 * Not having the refs/heads/new-branch is OK
68 * if we are writing into it, so is .git/HEAD
69 * that points at refs/heads/master still to be
70 * born. It is NOT OK if we are resolving for
73 if (lstat(path
, &st
) < 0) {
74 if (reading
|| errno
!= ENOENT
)
80 /* Follow "normalized" - ie "refs/.." symlinks by hand */
81 if (S_ISLNK(st
.st_mode
)) {
82 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
83 if (len
>= 5 && !memcmp("refs/", buffer
, 5)) {
84 path
= git_path("%.*s", len
, buffer
);
90 * Anything else, just open it and try to use it as
93 fd
= open(path
, O_RDONLY
);
96 len
= read(fd
, buffer
, sizeof(buffer
)-1);
100 * Is it a symbolic ref?
102 if (len
< 4 || memcmp("ref:", buffer
, 4))
106 while (len
&& isspace(*buf
))
108 while (len
&& isspace(buf
[len
-1]))
110 path
= git_path("%.*s", len
, buf
);
112 if (len
< 40 || get_sha1_hex(buffer
, sha1
))
117 int create_symref(const char *git_HEAD
, const char *refs_heads_master
)
119 const char *lockpath
;
121 int fd
, len
, written
;
125 if (!symlink(refs_heads_master
, git_HEAD
))
127 fprintf(stderr
, "no symlink - falling back to symbolic ref\n");
130 len
= snprintf(ref
, sizeof(ref
), "ref: %s\n", refs_heads_master
);
131 if (sizeof(ref
) <= len
) {
132 error("refname too long: %s", refs_heads_master
);
135 lockpath
= mkpath("%s.lock", git_HEAD
);
136 fd
= open(lockpath
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666);
137 written
= write(fd
, ref
, len
);
139 if (written
!= len
) {
141 error("Unable to write to %s", lockpath
);
144 if (rename(lockpath
, git_HEAD
) < 0) {
146 error("Unable to create %s", git_HEAD
);
152 int read_ref(const char *filename
, unsigned char *sha1
)
154 if (resolve_ref(filename
, sha1
, 1))
159 static int do_for_each_ref(const char *base
, int (*fn
)(const char *path
, const unsigned char *sha1
))
162 DIR *dir
= opendir(git_path("%s", base
));
166 int baselen
= strlen(base
);
167 char *path
= xmalloc(baselen
+ 257);
169 if (!strncmp(base
, "./", 2)) {
173 memcpy(path
, base
, baselen
);
174 if (baselen
&& base
[baselen
-1] != '/')
175 path
[baselen
++] = '/';
177 while ((de
= readdir(dir
)) != NULL
) {
178 unsigned char sha1
[20];
182 if (de
->d_name
[0] == '.')
184 namelen
= strlen(de
->d_name
);
187 memcpy(path
+ baselen
, de
->d_name
, namelen
+1);
188 if (stat(git_path("%s", path
), &st
) < 0)
190 if (S_ISDIR(st
.st_mode
)) {
191 retval
= do_for_each_ref(path
, fn
);
196 if (read_ref(git_path("%s", path
), sha1
) < 0)
198 if (!has_sha1_file(sha1
))
200 retval
= fn(path
, sha1
);
210 int head_ref(int (*fn
)(const char *path
, const unsigned char *sha1
))
212 unsigned char sha1
[20];
213 if (!read_ref(git_path("HEAD"), sha1
))
214 return fn("HEAD", sha1
);
218 int for_each_ref(int (*fn
)(const char *path
, const unsigned char *sha1
))
220 return do_for_each_ref("refs", fn
);
223 static char *ref_file_name(const char *ref
)
225 char *base
= get_refs_directory();
226 int baselen
= strlen(base
);
227 int reflen
= strlen(ref
);
228 char *ret
= xmalloc(baselen
+ 2 + reflen
);
229 sprintf(ret
, "%s/%s", base
, ref
);
233 static char *ref_lock_file_name(const char *ref
)
235 char *base
= get_refs_directory();
236 int baselen
= strlen(base
);
237 int reflen
= strlen(ref
);
238 char *ret
= xmalloc(baselen
+ 7 + reflen
);
239 sprintf(ret
, "%s/%s.lock", base
, ref
);
243 int get_ref_sha1(const char *ref
, unsigned char *sha1
)
245 const char *filename
;
247 if (check_ref_format(ref
))
249 filename
= git_path("refs/%s", ref
);
250 return read_ref(filename
, sha1
);
253 static int lock_ref_file(const char *filename
, const char *lock_filename
,
254 const unsigned char *old_sha1
)
256 int fd
= open(lock_filename
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
257 unsigned char current_sha1
[20];
260 return error("Couldn't open lock file for %s: %s",
261 filename
, strerror(errno
));
263 retval
= read_ref(filename
, current_sha1
);
267 unlink(lock_filename
);
268 return error("Could not read the current value of %s",
271 if (memcmp(current_sha1
, old_sha1
, 20)) {
273 unlink(lock_filename
);
274 error("The current value of %s is %s",
275 filename
, sha1_to_hex(current_sha1
));
276 return error("Expected %s",
277 sha1_to_hex(old_sha1
));
282 unlink(lock_filename
);
283 return error("Unexpectedly found a value of %s for %s",
284 sha1_to_hex(current_sha1
), filename
);
290 int lock_ref_sha1(const char *ref
, const unsigned char *old_sha1
)
295 if (check_ref_format(ref
))
297 filename
= ref_file_name(ref
);
298 lock_filename
= ref_lock_file_name(ref
);
299 retval
= lock_ref_file(filename
, lock_filename
, old_sha1
);
305 static int write_ref_file(const char *filename
,
306 const char *lock_filename
, int fd
,
307 const unsigned char *sha1
)
309 char *hex
= sha1_to_hex(sha1
);
311 if (write(fd
, hex
, 40) < 40 ||
312 write(fd
, &term
, 1) < 1) {
313 error("Couldn't write %s\n", filename
);
318 rename(lock_filename
, filename
);
322 int write_ref_sha1(const char *ref
, int fd
, const unsigned char *sha1
)
329 if (check_ref_format(ref
))
331 filename
= ref_file_name(ref
);
332 lock_filename
= ref_lock_file_name(ref
);
333 retval
= write_ref_file(filename
, lock_filename
, fd
, sha1
);
340 * Make sure "ref" is something reasonable to have under ".git/refs/";
341 * We do not like it if:
343 * - any path component of it begins with ".", or
344 * - it has double dots "..", or
345 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
346 * - it ends with a "/".
349 static inline int bad_ref_char(int ch
)
351 return (((unsigned) ch
) <= ' ' ||
352 ch
== '~' || ch
== '^' || ch
== ':');
355 int check_ref_format(const char *ref
)
358 const char *cp
= ref
;
362 while ((ch
= *cp
++) == '/')
363 ; /* tolerate duplicated slashes */
365 return -1; /* should not end with slashes */
367 /* we are at the beginning of the path component */
368 if (ch
== '.' || bad_ref_char(ch
))
371 /* scan the rest of the path component */
372 while ((ch
= *cp
++) != 0) {
373 if (bad_ref_char(ch
))
377 if (ch
== '.' && *cp
== '.')
383 return -1; /* at least of form "heads/blah" */
389 int write_ref_sha1_unlocked(const char *ref
, const unsigned char *sha1
)
395 if (check_ref_format(ref
))
397 filename
= ref_file_name(ref
);
398 lock_filename
= ref_lock_file_name(ref
);
399 fd
= open(lock_filename
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
401 error("Writing %s", lock_filename
);
404 retval
= write_ref_file(filename
, lock_filename
, fd
, sha1
);