|
| 1 | +#include "pack-mtimes.h" |
| 2 | +#include "object-store.h" |
| 3 | +#include "packfile.h" |
| 4 | + |
| 5 | +static char *pack_mtimes_filename(struct packed_git *p) |
| 6 | +{ |
| 7 | + size_t len; |
| 8 | + if (!strip_suffix(p->pack_name, ".pack", &len)) |
| 9 | + BUG("pack_name does not end in .pack"); |
| 10 | + /* NEEDSWORK: this could reuse code from pack-revindex.c. */ |
| 11 | + return xstrfmt("%.*s.mtimes", (int)len, p->pack_name); |
| 12 | +} |
| 13 | + |
| 14 | +#define MTIMES_HEADER_SIZE (12) |
| 15 | +#define MTIMES_MIN_SIZE (MTIMES_HEADER_SIZE + (2 * the_hash_algo->rawsz)) |
| 16 | + |
| 17 | +struct mtimes_header { |
| 18 | + uint32_t signature; |
| 19 | + uint32_t version; |
| 20 | + uint32_t hash_id; |
| 21 | +}; |
| 22 | + |
| 23 | +static int load_pack_mtimes_file(char *mtimes_file, |
| 24 | + uint32_t num_objects, |
| 25 | + const uint32_t **data_p, size_t *len_p) |
| 26 | +{ |
| 27 | + int fd, ret = 0; |
| 28 | + struct stat st; |
| 29 | + void *data = NULL; |
| 30 | + size_t mtimes_size; |
| 31 | + struct mtimes_header header; |
| 32 | + uint32_t *hdr; |
| 33 | + |
| 34 | + fd = git_open(mtimes_file); |
| 35 | + |
| 36 | + if (fd < 0) { |
| 37 | + ret = -1; |
| 38 | + goto cleanup; |
| 39 | + } |
| 40 | + if (fstat(fd, &st)) { |
| 41 | + ret = error_errno(_("failed to read %s"), mtimes_file); |
| 42 | + goto cleanup; |
| 43 | + } |
| 44 | + |
| 45 | + mtimes_size = xsize_t(st.st_size); |
| 46 | + |
| 47 | + if (mtimes_size < MTIMES_MIN_SIZE) { |
| 48 | + ret = error(_("mtimes file %s is too small"), mtimes_file); |
| 49 | + goto cleanup; |
| 50 | + } |
| 51 | + |
| 52 | + if (mtimes_size - MTIMES_MIN_SIZE != st_mult(sizeof(uint32_t), num_objects)) { |
| 53 | + ret = error(_("mtimes file %s is corrupt"), mtimes_file); |
| 54 | + goto cleanup; |
| 55 | + } |
| 56 | + |
| 57 | + data = hdr = xmmap(NULL, mtimes_size, PROT_READ, MAP_PRIVATE, fd, 0); |
| 58 | + |
| 59 | + header.signature = ntohl(hdr[0]); |
| 60 | + header.version = ntohl(hdr[1]); |
| 61 | + header.hash_id = ntohl(hdr[2]); |
| 62 | + |
| 63 | + if (header.signature != MTIMES_SIGNATURE) { |
| 64 | + ret = error(_("mtimes file %s has unknown signature"), mtimes_file); |
| 65 | + goto cleanup; |
| 66 | + } |
| 67 | + |
| 68 | + if (header.version != 1) { |
| 69 | + ret = error(_("mtimes file %s has unsupported version %"PRIu32), |
| 70 | + mtimes_file, header.version); |
| 71 | + goto cleanup; |
| 72 | + } |
| 73 | + |
| 74 | + if (!(header.hash_id == 1 || header.hash_id == 2)) { |
| 75 | + ret = error(_("mtimes file %s has unsupported hash id %"PRIu32), |
| 76 | + mtimes_file, header.hash_id); |
| 77 | + goto cleanup; |
| 78 | + } |
| 79 | + |
| 80 | +cleanup: |
| 81 | + if (ret) { |
| 82 | + if (data) |
| 83 | + munmap(data, mtimes_size); |
| 84 | + } else { |
| 85 | + *len_p = mtimes_size; |
| 86 | + *data_p = (const uint32_t *)data; |
| 87 | + } |
| 88 | + |
| 89 | + close(fd); |
| 90 | + return ret; |
| 91 | +} |
| 92 | + |
| 93 | +int load_pack_mtimes(struct packed_git *p) |
| 94 | +{ |
| 95 | + char *mtimes_name = NULL; |
| 96 | + int ret = 0; |
| 97 | + |
| 98 | + if (!p->is_cruft) |
| 99 | + return ret; /* not a cruft pack */ |
| 100 | + if (p->mtimes_map) |
| 101 | + return ret; /* already loaded */ |
| 102 | + |
| 103 | + ret = open_pack_index(p); |
| 104 | + if (ret < 0) |
| 105 | + goto cleanup; |
| 106 | + |
| 107 | + mtimes_name = pack_mtimes_filename(p); |
| 108 | + ret = load_pack_mtimes_file(mtimes_name, |
| 109 | + p->num_objects, |
| 110 | + &p->mtimes_map, |
| 111 | + &p->mtimes_size); |
| 112 | +cleanup: |
| 113 | + free(mtimes_name); |
| 114 | + return ret; |
| 115 | +} |
| 116 | + |
| 117 | +uint32_t nth_packed_mtime(struct packed_git *p, uint32_t pos) |
| 118 | +{ |
| 119 | + if (!p->mtimes_map) |
| 120 | + BUG("pack .mtimes file not loaded for %s", p->pack_name); |
| 121 | + if (p->num_objects <= pos) |
| 122 | + BUG("pack .mtimes out-of-bounds (%"PRIu32" vs %"PRIu32")", |
| 123 | + pos, p->num_objects); |
| 124 | + |
| 125 | + return get_be32(p->mtimes_map + pos + 3); |
| 126 | +} |
0 commit comments