csum_partial_copy.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 1994, 1995 Waldorf Electronics GmbH
  7. * Copyright (C) 1998, 1999 Ralf Baechle
  8. */
  9. #include <linux/kernel.h>
  10. #include <linux/types.h>
  11. #include <asm/byteorder.h>
  12. #include <asm/string.h>
  13. #include <asm/uaccess.h>
  14. #include <net/checksum.h>
  15. /*
  16. * copy while checksumming, otherwise like csum_partial
  17. */
  18. unsigned int csum_partial_copy_nocheck(const unsigned char *src, unsigned char *dst,
  19. int len, unsigned int sum)
  20. {
  21. /*
  22. * It's 2:30 am and I don't feel like doing it real ...
  23. * This is lots slower than the real thing (tm)
  24. */
  25. sum = csum_partial(src, len, sum);
  26. memcpy(dst, src, len);
  27. return sum;
  28. }
  29. /*
  30. * Copy from userspace and compute checksum. If we catch an exception
  31. * then zero the rest of the buffer.
  32. */
  33. unsigned int csum_partial_copy_from_user (const unsigned char *src, unsigned char *dst,
  34. int len, unsigned int sum, int *err_ptr)
  35. {
  36. int missing;
  37. might_sleep();
  38. missing = copy_from_user(dst, src, len);
  39. if (missing) {
  40. memset(dst + len - missing, 0, missing);
  41. *err_ptr = -EFAULT;
  42. }
  43. return csum_partial(dst, len, sum);
  44. }