4 * Copyright (C) 2005 Linus Torvalds
6 * Simple file write infrastructure for writing SHA1-summed
7 * files. Useful when you write a file that you want to be
8 * able to verify hasn't been messed with afterwards.
12 #include "csum-file.h"
14 static void flush(struct sha1file *f, const void *buf, unsigned int count)
16 if (0 <= f->check_fd && count) {
17 unsigned char check_buffer[8192];
18 ssize_t ret = read_in_full(f->check_fd, check_buffer, count);
21 die_errno("%s: sha1 file read error", f->name);
23 die("%s: sha1 file truncated", f->name);
24 if (memcmp(buf, check_buffer, count))
25 die("sha1 file '%s' validation error", f->name);
29 int ret = xwrite(f->fd, buf, count);
32 display_throughput(f->tp, f->total);
33 buf = (char *) buf + ret;
40 die("sha1 file '%s' write error. Out of diskspace", f->name);
41 die_errno("sha1 file '%s' write error", f->name);
45 void sha1flush(struct sha1file *f)
47 unsigned offset = f->offset;
50 git_SHA1_Update(&f->ctx, f->buffer, offset);
51 flush(f, f->buffer, offset);
56 int sha1close(struct sha1file *f, unsigned char *result, unsigned int flags)
61 git_SHA1_Final(f->buffer, &f->ctx);
63 hashcpy(result, f->buffer);
64 if (flags & (CSUM_CLOSE | CSUM_FSYNC)) {
65 /* write checksum and close fd */
66 flush(f, f->buffer, 20);
67 if (flags & CSUM_FSYNC)
68 fsync_or_die(f->fd, f->name);
70 die_errno("%s: sha1 file error on close", f->name);
74 if (0 <= f->check_fd) {
76 int cnt = read_in_full(f->check_fd, &discard, 1);
78 die_errno("%s: error when reading the tail of sha1 file",
81 die("%s: sha1 file has trailing garbage", f->name);
82 if (close(f->check_fd))
83 die_errno("%s: sha1 file error on close", f->name);
89 void sha1write(struct sha1file *f, const void *buf, unsigned int count)
92 unsigned offset = f->offset;
93 unsigned left = sizeof(f->buffer) - offset;
94 unsigned nr = count > left ? left : count;
98 f->crc32 = crc32(f->crc32, buf, nr);
100 if (nr == sizeof(f->buffer)) {
101 /* process full buffer directly without copy */
104 memcpy(f->buffer + offset, buf, nr);
110 buf = (char *) buf + nr;
113 git_SHA1_Update(&f->ctx, data, offset);
114 flush(f, data, offset);
121 struct sha1file *sha1fd(int fd, const char *name)
123 return sha1fd_throughput(fd, name, NULL);
126 struct sha1file *sha1fd_check(const char *name)
131 sink = open("/dev/null", O_WRONLY);
134 check = open(name, O_RDONLY);
136 int saved_errno = errno;
141 f = sha1fd(sink, name);
146 struct sha1file *sha1fd_throughput(int fd, const char *name, struct progress *tp)
148 struct sha1file *f = xmalloc(sizeof(*f));
156 git_SHA1_Init(&f->ctx);
160 void sha1file_checkpoint(struct sha1file *f, struct sha1file_checkpoint *checkpoint)
163 checkpoint->offset = f->total;
164 checkpoint->ctx = f->ctx;
167 int sha1file_truncate(struct sha1file *f, struct sha1file_checkpoint *checkpoint)
169 off_t offset = checkpoint->offset;
171 if (ftruncate(f->fd, offset) ||
172 lseek(f->fd, offset, SEEK_SET) != offset)
175 f->ctx = checkpoint->ctx;
176 f->offset = 0; /* sha1flush() was called in checkpoint */
180 void crc32_begin(struct sha1file *f)
182 f->crc32 = crc32(0, NULL, 0);
186 uint32_t crc32_end(struct sha1file *f)