fdchecksum32.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*====================================================================*
  2. *
  3. * uint32_t fdchecksum32 (int fd, size_t extent, uint32_t checksum);
  4. *
  5. * memory.h
  6. *
  7. * return the 32-bit checksum of a file region starting from the
  8. * current file position; extent is specified in bytes but will be
  9. * rounded to a multiple of four bytes;
  10. *
  11. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  12. * Copyright (c) 2001-2006 by Charles Maier Associates;
  13. * Licensed under the Internet Software Consortium License;
  14. *
  15. *--------------------------------------------------------------------*/
  16. #ifndef FDCHECKSUM32_SOURCE
  17. #define FDCHECKSUM32_SOURCE
  18. #include <stdio.h>
  19. #include <unistd.h>
  20. #include <errno.h>
  21. #include "../tools/memory.h"
  22. #define FDCHECKSUM32_BUFFERED
  23. uint32_t fdchecksum32 (int fd, register size_t extent, register uint32_t checksum)
  24. {
  25. #ifdef FDCHECKSUM32_BUFFERED
  26. uint32_t buf [256];
  27. size_t read_amt;
  28. while (extent >= sizeof (checksum))
  29. {
  30. read_amt = extent;
  31. if (read_amt > sizeof (buf))
  32. {
  33. read_amt = sizeof (buf);
  34. }
  35. if (read (fd, buf, read_amt) != (ssize_t) read_amt)
  36. {
  37. return (- 1);
  38. }
  39. extent -= read_amt;
  40. while (read_amt >= sizeof (checksum))
  41. {
  42. checksum ^= buf [(read_amt >> 2) - 1];
  43. read_amt -= sizeof (checksum);
  44. }
  45. }
  46. return (~ checksum);
  47. #else
  48. uint32_t memory;
  49. while (extent >= sizeof (memory))
  50. {
  51. if (read (fd, & memory, sizeof (memory)) != sizeof (memory))
  52. {
  53. return (- 1);
  54. }
  55. extent -= sizeof (memory);
  56. checksum ^= memory;
  57. }
  58. return (~ checksum);
  59. #endif
  60. }
  61. #endif