csum_partial_copy.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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/module.h>
  11. #include <linux/types.h>
  12. #include <asm/byteorder.h>
  13. #include <asm/string.h>
  14. #include <asm/uaccess.h>
  15. #include <net/checksum.h>
  16. /*
  17. * copy while checksumming, otherwise like csum_partial
  18. */
  19. __wsum csum_partial_copy_nocheck(const void *src,
  20. void *dst, int len, __wsum sum)
  21. {
  22. /*
  23. * It's 2:30 am and I don't feel like doing it real ...
  24. * This is lots slower than the real thing (tm)
  25. */
  26. sum = csum_partial(src, len, sum);
  27. memcpy(dst, src, len);
  28. return sum;
  29. }
  30. EXPORT_SYMBOL(csum_partial_copy_nocheck);
  31. /*
  32. * Copy from userspace and compute checksum. If we catch an exception
  33. * then zero the rest of the buffer.
  34. */
  35. __wsum csum_partial_copy_from_user (const void __user *src,
  36. void *dst, int len, __wsum sum, int *err_ptr)
  37. {
  38. int missing;
  39. might_sleep();
  40. missing = copy_from_user(dst, src, len);
  41. if (missing) {
  42. memset(dst + len - missing, 0, missing);
  43. *err_ptr = -EFAULT;
  44. }
  45. return csum_partial(dst, len, sum);
  46. }