truncate64.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * truncate64 syscall. Copes with 64 bit and 32 bit machines
  3. * and on 32 bit machines this sends things into the kernel as
  4. * two 32-bit arguments (high and low 32 bits of length) that
  5. * are ordered based on endianess. It turns out endian.h has
  6. * just the macro we need to order things, __LONG_LONG_PAIR.
  7. *
  8. * Copyright (C) 2002 Erik Andersen <andersen@codepoet.org>
  9. *
  10. * This file is subject to the terms and conditions of the GNU
  11. * Lesser General Public License. See the file COPYING.LIB in
  12. * the main directory of this archive for more details.
  13. */
  14. #define truncate __truncate
  15. #include <features.h>
  16. #include <unistd.h>
  17. #include <errno.h>
  18. #include <endian.h>
  19. #include <stdint.h>
  20. #include <sys/types.h>
  21. #include <sys/syscall.h>
  22. #if defined __UCLIBC_HAS_LFS__
  23. #if defined __NR_truncate64
  24. #if __WORDSIZE == 64
  25. /* For a 64 bit machine, life is simple... */
  26. _syscall2(int, truncate64, const char *, path, __off64_t, length);
  27. #elif __WORDSIZE == 32
  28. #ifndef INLINE_SYSCALL
  29. #define INLINE_SYSCALL(name, nr, args...) __syscall_truncate64 (args)
  30. #define __NR___syscall_truncate64 __NR_truncate64
  31. #if defined(__powerpc__) || defined(__mips__)
  32. static inline _syscall4(int, __syscall_truncate64, const char *, path,
  33. uint32_t, pad, unsigned long, high_length, unsigned long, low_length);
  34. #else
  35. static inline _syscall3(int, __syscall_truncate64, const char *, path,
  36. unsigned long, high_length, unsigned long, low_length);
  37. #endif
  38. #endif
  39. /* The exported truncate64 function. */
  40. int truncate64 (const char * path, __off64_t length)
  41. {
  42. uint32_t low = length & 0xffffffff;
  43. uint32_t high = length >> 32;
  44. #if defined(__powerpc__) || defined(__mips__)
  45. return INLINE_SYSCALL(truncate64, 4, path, 0,
  46. __LONG_LONG_PAIR (high, low));
  47. #else
  48. return INLINE_SYSCALL(truncate64, 3, path,
  49. __LONG_LONG_PAIR (high, low));
  50. #endif
  51. }
  52. #else /* __WORDSIZE */
  53. #error Your machine is not 64 bit or 32 bit, I am dazed and confused.
  54. #endif /* __WORDSIZE */
  55. #else /* __NR_truncate64 */
  56. int truncate64 (const char * path, __off64_t length)
  57. {
  58. __off_t x = (__off_t) length;
  59. if (x == length) {
  60. return truncate(path, x);
  61. }
  62. __set_errno((x < 0) ? EINVAL : EFBIG);
  63. return -1;
  64. }
  65. #endif /* __NR_truncate64 */
  66. #endif /* __UCLIBC_HAS_LFS__ */