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 sha1flush(struct sha1file *f, unsigned int count)
16 void *buf = f->buffer;
19 int ret = xwrite(f->fd, buf, count);
22 display_throughput(f->tp, f->total);
23 buf = (char *) buf + ret;
30 die("sha1 file '%s' write error. Out of diskspace", f->name);
31 die("sha1 file '%s' write error (%s)", f->name, strerror(errno));
35 int sha1close(struct sha1file *f, unsigned char *result, int final)
38 unsigned offset = f->offset;
40 SHA1_Update(&f->ctx, f->buffer, offset);
45 /* write checksum and close fd */
46 SHA1_Final(f->buffer, &f->ctx);
48 hashcpy(result, f->buffer);
51 die("%s: sha1 file error on close (%s)",
52 f->name, strerror(errno));
60 int sha1write(struct sha1file *f, void *buf, unsigned int count)
63 f->crc32 = crc32(f->crc32, buf, count);
65 unsigned offset = f->offset;
66 unsigned left = sizeof(f->buffer) - offset;
67 unsigned nr = count > left ? left : count;
69 memcpy(f->buffer + offset, buf, nr);
72 buf = (char *) buf + nr;
75 SHA1_Update(&f->ctx, f->buffer, offset);
84 struct sha1file *sha1fd(int fd, const char *name)
86 return sha1fd_throughput(fd, name, NULL);
89 struct sha1file *sha1fd_throughput(int fd, const char *name, struct progress *tp)
91 struct sha1file *f = xmalloc(sizeof(*f));
102 void crc32_begin(struct sha1file *f)
104 f->crc32 = crc32(0, Z_NULL, 0);
108 uint32_t crc32_end(struct sha1file *f)