clean up pack index handling a bit
[git.git] / refs.c
blob1549f2ae06c28570ddc9ff9aa6cb361567067e7b
1 #include "refs.h"
2 #include "cache.h"
4 #include <errno.h>
6 struct ref_list {
7 struct ref_list *next;
8 unsigned char flag; /* ISSYMREF? ISPACKED? */
9 unsigned char sha1[20];
10 char name[FLEX_ARRAY];
13 static const char *parse_ref_line(char *line, unsigned char *sha1)
16 * 42: the answer to everything.
18 * In this case, it happens to be the answer to
19 * 40 (length of sha1 hex representation)
20 * +1 (space in between hex and name)
21 * +1 (newline at the end of the line)
23 int len = strlen(line) - 42;
25 if (len <= 0)
26 return NULL;
27 if (get_sha1_hex(line, sha1) < 0)
28 return NULL;
29 if (!isspace(line[40]))
30 return NULL;
31 line += 41;
32 if (isspace(*line))
33 return NULL;
34 if (line[len] != '\n')
35 return NULL;
36 line[len] = 0;
37 return line;
40 static struct ref_list *add_ref(const char *name, const unsigned char *sha1,
41 int flag, struct ref_list *list)
43 int len;
44 struct ref_list **p = &list, *entry;
46 /* Find the place to insert the ref into.. */
47 while ((entry = *p) != NULL) {
48 int cmp = strcmp(entry->name, name);
49 if (cmp > 0)
50 break;
52 /* Same as existing entry? */
53 if (!cmp)
54 return list;
55 p = &entry->next;
58 /* Allocate it and add it in.. */
59 len = strlen(name) + 1;
60 entry = xmalloc(sizeof(struct ref_list) + len);
61 hashcpy(entry->sha1, sha1);
62 memcpy(entry->name, name, len);
63 entry->flag = flag;
64 entry->next = *p;
65 *p = entry;
66 return list;
70 * Future: need to be in "struct repository"
71 * when doing a full libification.
73 struct cached_refs {
74 char did_loose;
75 char did_packed;
76 struct ref_list *loose;
77 struct ref_list *packed;
78 } cached_refs;
80 static void free_ref_list(struct ref_list *list)
82 struct ref_list *next;
83 for ( ; list; list = next) {
84 next = list->next;
85 free(list);
89 static void invalidate_cached_refs(void)
91 struct cached_refs *ca = &cached_refs;
93 if (ca->did_loose && ca->loose)
94 free_ref_list(ca->loose);
95 if (ca->did_packed && ca->packed)
96 free_ref_list(ca->packed);
97 ca->loose = ca->packed = NULL;
98 ca->did_loose = ca->did_packed = 0;
101 static struct ref_list *get_packed_refs(void)
103 if (!cached_refs.did_packed) {
104 struct ref_list *refs = NULL;
105 FILE *f = fopen(git_path("packed-refs"), "r");
106 if (f) {
107 struct ref_list *list = NULL;
108 char refline[PATH_MAX];
109 while (fgets(refline, sizeof(refline), f)) {
110 unsigned char sha1[20];
111 const char *name = parse_ref_line(refline, sha1);
112 if (!name)
113 continue;
114 list = add_ref(name, sha1, REF_ISPACKED, list);
116 fclose(f);
117 refs = list;
119 cached_refs.packed = refs;
120 cached_refs.did_packed = 1;
122 return cached_refs.packed;
125 static struct ref_list *get_ref_dir(const char *base, struct ref_list *list)
127 DIR *dir = opendir(git_path("%s", base));
129 if (dir) {
130 struct dirent *de;
131 int baselen = strlen(base);
132 char *ref = xmalloc(baselen + 257);
134 memcpy(ref, base, baselen);
135 if (baselen && base[baselen-1] != '/')
136 ref[baselen++] = '/';
138 while ((de = readdir(dir)) != NULL) {
139 unsigned char sha1[20];
140 struct stat st;
141 int flag;
142 int namelen;
144 if (de->d_name[0] == '.')
145 continue;
146 namelen = strlen(de->d_name);
147 if (namelen > 255)
148 continue;
149 if (has_extension(de->d_name, ".lock"))
150 continue;
151 memcpy(ref + baselen, de->d_name, namelen+1);
152 if (stat(git_path("%s", ref), &st) < 0)
153 continue;
154 if (S_ISDIR(st.st_mode)) {
155 list = get_ref_dir(ref, list);
156 continue;
158 if (!resolve_ref(ref, sha1, 1, &flag)) {
159 error("%s points nowhere!", ref);
160 continue;
162 list = add_ref(ref, sha1, flag, list);
164 free(ref);
165 closedir(dir);
167 return list;
170 static struct ref_list *get_loose_refs(void)
172 if (!cached_refs.did_loose) {
173 cached_refs.loose = get_ref_dir("refs", NULL);
174 cached_refs.did_loose = 1;
176 return cached_refs.loose;
179 /* We allow "recursive" symbolic refs. Only within reason, though */
180 #define MAXDEPTH 5
182 const char *resolve_ref(const char *ref, unsigned char *sha1, int reading, int *flag)
184 int depth = MAXDEPTH, len;
185 char buffer[256];
186 static char ref_buffer[256];
188 if (flag)
189 *flag = 0;
191 for (;;) {
192 const char *path = git_path("%s", ref);
193 struct stat st;
194 char *buf;
195 int fd;
197 if (--depth < 0)
198 return NULL;
200 /* Special case: non-existing file.
201 * Not having the refs/heads/new-branch is OK
202 * if we are writing into it, so is .git/HEAD
203 * that points at refs/heads/master still to be
204 * born. It is NOT OK if we are resolving for
205 * reading.
207 if (lstat(path, &st) < 0) {
208 struct ref_list *list = get_packed_refs();
209 while (list) {
210 if (!strcmp(ref, list->name)) {
211 hashcpy(sha1, list->sha1);
212 if (flag)
213 *flag |= REF_ISPACKED;
214 return ref;
216 list = list->next;
218 if (reading || errno != ENOENT)
219 return NULL;
220 hashclr(sha1);
221 return ref;
224 /* Follow "normalized" - ie "refs/.." symlinks by hand */
225 if (S_ISLNK(st.st_mode)) {
226 len = readlink(path, buffer, sizeof(buffer)-1);
227 if (len >= 5 && !memcmp("refs/", buffer, 5)) {
228 buffer[len] = 0;
229 strcpy(ref_buffer, buffer);
230 ref = ref_buffer;
231 if (flag)
232 *flag |= REF_ISSYMREF;
233 continue;
237 /* Is it a directory? */
238 if (S_ISDIR(st.st_mode)) {
239 errno = EISDIR;
240 return NULL;
244 * Anything else, just open it and try to use it as
245 * a ref
247 fd = open(path, O_RDONLY);
248 if (fd < 0)
249 return NULL;
250 len = read(fd, buffer, sizeof(buffer)-1);
251 close(fd);
254 * Is it a symbolic ref?
256 if (len < 4 || memcmp("ref:", buffer, 4))
257 break;
258 buf = buffer + 4;
259 len -= 4;
260 while (len && isspace(*buf))
261 buf++, len--;
262 while (len && isspace(buf[len-1]))
263 len--;
264 buf[len] = 0;
265 memcpy(ref_buffer, buf, len + 1);
266 ref = ref_buffer;
267 if (flag)
268 *flag |= REF_ISSYMREF;
270 if (len < 40 || get_sha1_hex(buffer, sha1))
271 return NULL;
272 return ref;
275 int create_symref(const char *ref_target, const char *refs_heads_master)
277 const char *lockpath;
278 char ref[1000];
279 int fd, len, written;
280 const char *git_HEAD = git_path("%s", ref_target);
282 #ifndef NO_SYMLINK_HEAD
283 if (prefer_symlink_refs) {
284 unlink(git_HEAD);
285 if (!symlink(refs_heads_master, git_HEAD))
286 return 0;
287 fprintf(stderr, "no symlink - falling back to symbolic ref\n");
289 #endif
291 len = snprintf(ref, sizeof(ref), "ref: %s\n", refs_heads_master);
292 if (sizeof(ref) <= len) {
293 error("refname too long: %s", refs_heads_master);
294 return -1;
296 lockpath = mkpath("%s.lock", git_HEAD);
297 fd = open(lockpath, O_CREAT | O_EXCL | O_WRONLY, 0666);
298 written = write(fd, ref, len);
299 close(fd);
300 if (written != len) {
301 unlink(lockpath);
302 error("Unable to write to %s", lockpath);
303 return -2;
305 if (rename(lockpath, git_HEAD) < 0) {
306 unlink(lockpath);
307 error("Unable to create %s", git_HEAD);
308 return -3;
310 if (adjust_shared_perm(git_HEAD)) {
311 unlink(lockpath);
312 error("Unable to fix permissions on %s", lockpath);
313 return -4;
315 return 0;
318 int read_ref(const char *ref, unsigned char *sha1)
320 if (resolve_ref(ref, sha1, 1, NULL))
321 return 0;
322 return -1;
325 static int do_one_ref(const char *base, each_ref_fn fn, int trim,
326 void *cb_data, struct ref_list *entry)
328 if (strncmp(base, entry->name, trim))
329 return 0;
330 if (is_null_sha1(entry->sha1))
331 return 0;
332 if (!has_sha1_file(entry->sha1)) {
333 error("%s does not point to a valid object!", entry->name);
334 return 0;
336 return fn(entry->name + trim, entry->sha1, entry->flag, cb_data);
339 static int do_for_each_ref(const char *base, each_ref_fn fn, int trim,
340 void *cb_data)
342 int retval;
343 struct ref_list *packed = get_packed_refs();
344 struct ref_list *loose = get_loose_refs();
346 while (packed && loose) {
347 struct ref_list *entry;
348 int cmp = strcmp(packed->name, loose->name);
349 if (!cmp) {
350 packed = packed->next;
351 continue;
353 if (cmp > 0) {
354 entry = loose;
355 loose = loose->next;
356 } else {
357 entry = packed;
358 packed = packed->next;
360 retval = do_one_ref(base, fn, trim, cb_data, entry);
361 if (retval)
362 return retval;
365 for (packed = packed ? packed : loose; packed; packed = packed->next) {
366 retval = do_one_ref(base, fn, trim, cb_data, packed);
367 if (retval)
368 return retval;
370 return 0;
373 int head_ref(each_ref_fn fn, void *cb_data)
375 unsigned char sha1[20];
376 int flag;
378 if (resolve_ref("HEAD", sha1, 1, &flag))
379 return fn("HEAD", sha1, flag, cb_data);
380 return 0;
383 int for_each_ref(each_ref_fn fn, void *cb_data)
385 return do_for_each_ref("refs/", fn, 0, cb_data);
388 int for_each_tag_ref(each_ref_fn fn, void *cb_data)
390 return do_for_each_ref("refs/tags/", fn, 10, cb_data);
393 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
395 return do_for_each_ref("refs/heads/", fn, 11, cb_data);
398 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
400 return do_for_each_ref("refs/remotes/", fn, 13, cb_data);
403 /* NEEDSWORK: This is only used by ssh-upload and it should go; the
404 * caller should do resolve_ref or read_ref like everybody else. Or
405 * maybe everybody else should use get_ref_sha1() instead of doing
406 * read_ref().
408 int get_ref_sha1(const char *ref, unsigned char *sha1)
410 if (check_ref_format(ref))
411 return -1;
412 return read_ref(mkpath("refs/%s", ref), sha1);
416 * Make sure "ref" is something reasonable to have under ".git/refs/";
417 * We do not like it if:
419 * - any path component of it begins with ".", or
420 * - it has double dots "..", or
421 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or
422 * - it ends with a "/".
425 static inline int bad_ref_char(int ch)
427 return (((unsigned) ch) <= ' ' ||
428 ch == '~' || ch == '^' || ch == ':' ||
429 /* 2.13 Pattern Matching Notation */
430 ch == '?' || ch == '*' || ch == '[');
433 int check_ref_format(const char *ref)
435 int ch, level;
436 const char *cp = ref;
438 level = 0;
439 while (1) {
440 while ((ch = *cp++) == '/')
441 ; /* tolerate duplicated slashes */
442 if (!ch)
443 return -1; /* should not end with slashes */
445 /* we are at the beginning of the path component */
446 if (ch == '.' || bad_ref_char(ch))
447 return -1;
449 /* scan the rest of the path component */
450 while ((ch = *cp++) != 0) {
451 if (bad_ref_char(ch))
452 return -1;
453 if (ch == '/')
454 break;
455 if (ch == '.' && *cp == '.')
456 return -1;
458 level++;
459 if (!ch) {
460 if (level < 2)
461 return -1; /* at least of form "heads/blah" */
462 return 0;
467 static struct ref_lock *verify_lock(struct ref_lock *lock,
468 const unsigned char *old_sha1, int mustexist)
470 if (!resolve_ref(lock->ref_name, lock->old_sha1, mustexist, NULL)) {
471 error("Can't verify ref %s", lock->ref_name);
472 unlock_ref(lock);
473 return NULL;
475 if (hashcmp(lock->old_sha1, old_sha1)) {
476 error("Ref %s is at %s but expected %s", lock->ref_name,
477 sha1_to_hex(lock->old_sha1), sha1_to_hex(old_sha1));
478 unlock_ref(lock);
479 return NULL;
481 return lock;
484 static int remove_empty_dir_recursive(char *path, int len)
486 DIR *dir = opendir(path);
487 struct dirent *e;
488 int ret = 0;
490 if (!dir)
491 return -1;
492 if (path[len-1] != '/')
493 path[len++] = '/';
494 while ((e = readdir(dir)) != NULL) {
495 struct stat st;
496 int namlen;
497 if ((e->d_name[0] == '.') &&
498 ((e->d_name[1] == 0) ||
499 ((e->d_name[1] == '.') && e->d_name[2] == 0)))
500 continue; /* "." and ".." */
502 namlen = strlen(e->d_name);
503 if ((len + namlen < PATH_MAX) &&
504 strcpy(path + len, e->d_name) &&
505 !lstat(path, &st) &&
506 S_ISDIR(st.st_mode) &&
507 !remove_empty_dir_recursive(path, len + namlen))
508 continue; /* happy */
510 /* path too long, stat fails, or non-directory still exists */
511 ret = -1;
512 break;
514 closedir(dir);
515 if (!ret) {
516 path[len] = 0;
517 ret = rmdir(path);
519 return ret;
522 static int remove_empty_directories(char *file)
524 /* we want to create a file but there is a directory there;
525 * if that is an empty directory (or a directory that contains
526 * only empty directories), remove them.
528 char path[PATH_MAX];
529 int len = strlen(file);
531 if (len >= PATH_MAX) /* path too long ;-) */
532 return -1;
533 strcpy(path, file);
534 return remove_empty_dir_recursive(path, len);
537 static struct ref_lock *lock_ref_sha1_basic(const char *ref, const unsigned char *old_sha1, int *flag)
539 char *ref_file;
540 const char *orig_ref = ref;
541 struct ref_lock *lock;
542 struct stat st;
543 int last_errno = 0;
544 int mustexist = (old_sha1 && !is_null_sha1(old_sha1));
546 lock = xcalloc(1, sizeof(struct ref_lock));
547 lock->lock_fd = -1;
549 ref = resolve_ref(ref, lock->old_sha1, mustexist, flag);
550 if (!ref && errno == EISDIR) {
551 /* we are trying to lock foo but we used to
552 * have foo/bar which now does not exist;
553 * it is normal for the empty directory 'foo'
554 * to remain.
556 ref_file = git_path("%s", orig_ref);
557 if (remove_empty_directories(ref_file)) {
558 last_errno = errno;
559 error("there are still refs under '%s'", orig_ref);
560 goto error_return;
562 ref = resolve_ref(orig_ref, lock->old_sha1, mustexist, flag);
564 if (!ref) {
565 last_errno = errno;
566 error("unable to resolve reference %s: %s",
567 orig_ref, strerror(errno));
568 goto error_return;
570 if (is_null_sha1(lock->old_sha1)) {
571 /* The ref did not exist and we are creating it.
572 * Make sure there is no existing ref that is packed
573 * whose name begins with our refname, nor a ref whose
574 * name is a proper prefix of our refname.
576 int namlen = strlen(ref); /* e.g. 'foo/bar' */
577 struct ref_list *list = get_packed_refs();
578 while (list) {
579 /* list->name could be 'foo' or 'foo/bar/baz' */
580 int len = strlen(list->name);
581 int cmplen = (namlen < len) ? namlen : len;
582 const char *lead = (namlen < len) ? list->name : ref;
584 if (!strncmp(ref, list->name, cmplen) &&
585 lead[cmplen] == '/') {
586 error("'%s' exists; cannot create '%s'",
587 list->name, ref);
588 goto error_return;
590 list = list->next;
594 lock->lk = xcalloc(1, sizeof(struct lock_file));
596 lock->ref_name = xstrdup(ref);
597 lock->log_file = xstrdup(git_path("logs/%s", ref));
598 ref_file = git_path("%s", ref);
599 lock->force_write = lstat(ref_file, &st) && errno == ENOENT;
601 if (safe_create_leading_directories(ref_file)) {
602 last_errno = errno;
603 error("unable to create directory for %s", ref_file);
604 goto error_return;
606 lock->lock_fd = hold_lock_file_for_update(lock->lk, ref_file, 1);
608 return old_sha1 ? verify_lock(lock, old_sha1, mustexist) : lock;
610 error_return:
611 unlock_ref(lock);
612 errno = last_errno;
613 return NULL;
616 struct ref_lock *lock_ref_sha1(const char *ref, const unsigned char *old_sha1)
618 char refpath[PATH_MAX];
619 if (check_ref_format(ref))
620 return NULL;
621 strcpy(refpath, mkpath("refs/%s", ref));
622 return lock_ref_sha1_basic(refpath, old_sha1, NULL);
625 struct ref_lock *lock_any_ref_for_update(const char *ref, const unsigned char *old_sha1)
627 return lock_ref_sha1_basic(ref, old_sha1, NULL);
630 static struct lock_file packlock;
632 static int repack_without_ref(const char *refname)
634 struct ref_list *list, *packed_ref_list;
635 int fd;
636 int found = 0;
638 packed_ref_list = get_packed_refs();
639 for (list = packed_ref_list; list; list = list->next) {
640 if (!strcmp(refname, list->name)) {
641 found = 1;
642 break;
645 if (!found)
646 return 0;
647 fd = hold_lock_file_for_update(&packlock, git_path("packed-refs"), 0);
648 if (fd < 0)
649 return error("cannot delete '%s' from packed refs", refname);
651 for (list = packed_ref_list; list; list = list->next) {
652 char line[PATH_MAX + 100];
653 int len;
655 if (!strcmp(refname, list->name))
656 continue;
657 len = snprintf(line, sizeof(line), "%s %s\n",
658 sha1_to_hex(list->sha1), list->name);
659 /* this should not happen but just being defensive */
660 if (len > sizeof(line))
661 die("too long a refname '%s'", list->name);
662 write_or_die(fd, line, len);
664 return commit_lock_file(&packlock);
667 int delete_ref(const char *refname, unsigned char *sha1)
669 struct ref_lock *lock;
670 int err, i, ret = 0, flag = 0;
672 lock = lock_ref_sha1_basic(refname, sha1, &flag);
673 if (!lock)
674 return 1;
675 if (!(flag & REF_ISPACKED)) {
676 /* loose */
677 i = strlen(lock->lk->filename) - 5; /* .lock */
678 lock->lk->filename[i] = 0;
679 err = unlink(lock->lk->filename);
680 if (err) {
681 ret = 1;
682 error("unlink(%s) failed: %s",
683 lock->lk->filename, strerror(errno));
685 lock->lk->filename[i] = '.';
687 /* removing the loose one could have resurrected an earlier
688 * packed one. Also, if it was not loose we need to repack
689 * without it.
691 ret |= repack_without_ref(refname);
693 err = unlink(lock->log_file);
694 if (err && errno != ENOENT)
695 fprintf(stderr, "warning: unlink(%s) failed: %s",
696 lock->log_file, strerror(errno));
697 invalidate_cached_refs();
698 unlock_ref(lock);
699 return ret;
702 void unlock_ref(struct ref_lock *lock)
704 if (lock->lock_fd >= 0) {
705 close(lock->lock_fd);
706 /* Do not free lock->lk -- atexit() still looks at them */
707 if (lock->lk)
708 rollback_lock_file(lock->lk);
710 free(lock->ref_name);
711 free(lock->log_file);
712 free(lock);
715 static int log_ref_write(struct ref_lock *lock,
716 const unsigned char *sha1, const char *msg)
718 int logfd, written, oflags = O_APPEND | O_WRONLY;
719 unsigned maxlen, len;
720 char *logrec;
721 const char *committer;
723 if (log_all_ref_updates &&
724 !strncmp(lock->ref_name, "refs/heads/", 11)) {
725 if (safe_create_leading_directories(lock->log_file) < 0)
726 return error("unable to create directory for %s",
727 lock->log_file);
728 oflags |= O_CREAT;
731 logfd = open(lock->log_file, oflags, 0666);
732 if (logfd < 0) {
733 if (!(oflags & O_CREAT) && errno == ENOENT)
734 return 0;
736 if ((oflags & O_CREAT) && errno == EISDIR) {
737 if (remove_empty_directories(lock->log_file)) {
738 return error("There are still logs under '%s'",
739 lock->log_file);
741 logfd = open(lock->log_file, oflags, 0666);
744 if (logfd < 0)
745 return error("Unable to append to %s: %s",
746 lock->log_file, strerror(errno));
749 committer = git_committer_info(1);
750 if (msg) {
751 maxlen = strlen(committer) + strlen(msg) + 2*40 + 5;
752 logrec = xmalloc(maxlen);
753 len = snprintf(logrec, maxlen, "%s %s %s\t%s\n",
754 sha1_to_hex(lock->old_sha1),
755 sha1_to_hex(sha1),
756 committer,
757 msg);
759 else {
760 maxlen = strlen(committer) + 2*40 + 4;
761 logrec = xmalloc(maxlen);
762 len = snprintf(logrec, maxlen, "%s %s %s\n",
763 sha1_to_hex(lock->old_sha1),
764 sha1_to_hex(sha1),
765 committer);
767 written = len <= maxlen ? write(logfd, logrec, len) : -1;
768 free(logrec);
769 close(logfd);
770 if (written != len)
771 return error("Unable to append to %s", lock->log_file);
772 return 0;
775 int write_ref_sha1(struct ref_lock *lock,
776 const unsigned char *sha1, const char *logmsg)
778 static char term = '\n';
780 if (!lock)
781 return -1;
782 if (!lock->force_write && !hashcmp(lock->old_sha1, sha1)) {
783 unlock_ref(lock);
784 return 0;
786 if (write(lock->lock_fd, sha1_to_hex(sha1), 40) != 40 ||
787 write(lock->lock_fd, &term, 1) != 1
788 || close(lock->lock_fd) < 0) {
789 error("Couldn't write %s", lock->lk->filename);
790 unlock_ref(lock);
791 return -1;
793 invalidate_cached_refs();
794 if (log_ref_write(lock, sha1, logmsg) < 0) {
795 unlock_ref(lock);
796 return -1;
798 if (commit_lock_file(lock->lk)) {
799 error("Couldn't set %s", lock->ref_name);
800 unlock_ref(lock);
801 return -1;
803 lock->lock_fd = -1;
804 unlock_ref(lock);
805 return 0;
808 int read_ref_at(const char *ref, unsigned long at_time, int cnt, unsigned char *sha1)
810 const char *logfile, *logdata, *logend, *rec, *lastgt, *lastrec;
811 char *tz_c;
812 int logfd, tz;
813 struct stat st;
814 unsigned long date;
815 unsigned char logged_sha1[20];
817 logfile = git_path("logs/%s", ref);
818 logfd = open(logfile, O_RDONLY, 0);
819 if (logfd < 0)
820 die("Unable to read log %s: %s", logfile, strerror(errno));
821 fstat(logfd, &st);
822 if (!st.st_size)
823 die("Log %s is empty.", logfile);
824 logdata = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, logfd, 0);
825 close(logfd);
827 lastrec = NULL;
828 rec = logend = logdata + st.st_size;
829 while (logdata < rec) {
830 if (logdata < rec && *(rec-1) == '\n')
831 rec--;
832 lastgt = NULL;
833 while (logdata < rec && *(rec-1) != '\n') {
834 rec--;
835 if (*rec == '>')
836 lastgt = rec;
838 if (!lastgt)
839 die("Log %s is corrupt.", logfile);
840 date = strtoul(lastgt + 1, &tz_c, 10);
841 if (date <= at_time || cnt == 0) {
842 if (lastrec) {
843 if (get_sha1_hex(lastrec, logged_sha1))
844 die("Log %s is corrupt.", logfile);
845 if (get_sha1_hex(rec + 41, sha1))
846 die("Log %s is corrupt.", logfile);
847 if (hashcmp(logged_sha1, sha1)) {
848 tz = strtoul(tz_c, NULL, 10);
849 fprintf(stderr,
850 "warning: Log %s has gap after %s.\n",
851 logfile, show_rfc2822_date(date, tz));
854 else if (date == at_time) {
855 if (get_sha1_hex(rec + 41, sha1))
856 die("Log %s is corrupt.", logfile);
858 else {
859 if (get_sha1_hex(rec + 41, logged_sha1))
860 die("Log %s is corrupt.", logfile);
861 if (hashcmp(logged_sha1, sha1)) {
862 tz = strtoul(tz_c, NULL, 10);
863 fprintf(stderr,
864 "warning: Log %s unexpectedly ended on %s.\n",
865 logfile, show_rfc2822_date(date, tz));
868 munmap((void*)logdata, st.st_size);
869 return 0;
871 lastrec = rec;
872 if (cnt > 0)
873 cnt--;
876 rec = logdata;
877 while (rec < logend && *rec != '>' && *rec != '\n')
878 rec++;
879 if (rec == logend || *rec == '\n')
880 die("Log %s is corrupt.", logfile);
881 date = strtoul(rec + 1, &tz_c, 10);
882 tz = strtoul(tz_c, NULL, 10);
883 if (get_sha1_hex(logdata, sha1))
884 die("Log %s is corrupt.", logfile);
885 munmap((void*)logdata, st.st_size);
886 fprintf(stderr, "warning: Log %s only goes back to %s.\n",
887 logfile, show_rfc2822_date(date, tz));
888 return 0;