ftruncate64.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * ftruncate64 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 ftruncate __ftruncate
  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_ftruncate64
  24. #if __WORDSIZE == 64
  25. /* For a 64 bit machine, life is simple... */
  26. _syscall2(int, ftruncate64, int, fd, __off64_t, length);
  27. #elif __WORDSIZE == 32
  28. #ifndef INLINE_SYSCALL
  29. #define INLINE_SYSCALL(name, nr, args...) __syscall_ftruncate64 (args)
  30. #define __NR___syscall_ftruncate64 __NR_ftruncate64
  31. #if defined(__powerpc__) || defined(__mips__)
  32. static inline _syscall4(int, __syscall_ftruncate64, int, fd, uint32_t, pad,
  33. unsigned long, high_length, unsigned long, low_length);
  34. #else
  35. static inline _syscall3(int, __syscall_ftruncate64, int, fd,
  36. unsigned long, high_length, unsigned long, low_length);
  37. #endif
  38. #endif
  39. /* The exported ftruncate64 function. */
  40. int ftruncate64 (int fd, __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(ftruncate64,
  46. 4, fd, 0, __LONG_LONG_PAIR (high, low));
  47. #else
  48. return INLINE_SYSCALL(ftruncate64, 3, fd,
  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_ftruncate64 */
  56. int ftruncate64 (int fd, __off64_t length)
  57. {
  58. __off_t x = (__off_t) length;
  59. if (x == length) {
  60. return ftruncate(fd, x);
  61. }
  62. __set_errno((x < 0) ? EINVAL : EFBIG);
  63. return -1;
  64. }
  65. #endif /* __NR_ftruncate64 */
  66. #endif /* __UCLIBC_HAS_LFS__ */