changeset 333:d5d8f9a6e649

Add cksum.
author Rob Landley <rob@landley.net>
date Sat, 27 Dec 2008 05:37:47 -0600
parents d3f85181d882
children 83c461db9df7
files toys/cksum.c
diffstat 1 files changed, 71 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/toys/cksum.c	Sat Dec 27 05:37:47 2008 -0600
@@ -0,0 +1,71 @@
+/* vi: set sw=4 ts=4:
+ *
+ * cksum.c - produce crc32 checksum value for each input
+ *
+ * Copyright 2008 Rob Landley <rob@landley.net>
+ *
+ * See http://www.opengroup.org/onlinepubs/009695399/utilities/cksum.html
+
+USE_CKSUM(NEWTOY(cksum, NULL, TOYFLAG_BIN))
+
+config CKSUM
+	bool "cksum"
+	default y
+	help
+	  usage: cksum [file...]
+	  For each file, output crc32 checksum value, length and name of file.
+	  If no files listed, copy from stdin.  Filename "-" is a synonym for stdin.
+*/
+
+#include "toys.h"
+
+DEFINE_GLOBALS(
+	unsigned crc_table[256];
+)
+
+#define TT this.cksum
+
+static unsigned cksum(unsigned crc, unsigned char c)
+{
+	return (crc<<8)^TT.crc_table[(crc>>24)^c];
+}
+
+static void do_cksum(int fd, char *name)
+{
+	unsigned crc = 0;
+	uint64_t llen = 0, llen2;
+
+	// CRC the data
+
+	for (;;) {
+		int len, i;
+
+		len = read(fd, toybuf, sizeof(toybuf));
+		if (len<0) {
+			perror_msg("%s",name);
+			toys.exitval = EXIT_FAILURE;
+		}
+		if (len<1) break;
+
+		llen += len;
+		for (i=0; i<len; i++) crc=cksum(crc, toybuf[i]);
+	}
+
+	// CRC the length
+
+	llen2 = llen;
+	while (llen) {
+		crc = cksum(crc, llen);
+		llen >>= 8;
+	}
+
+	printf("%u %"PRIu64, ~crc, llen2);
+	if (strcmp("-", name)) printf(" %s", name);
+	xputc('\n');
+}
+
+void cksum_main(void)
+{
+	crc_init(TT.crc_table);
+	loopfiles(toys.optargs, do_cksum);
+}