setfsgid.c 769 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * setfsgid() for uClibc
  4. *
  5. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  6. *
  7. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  8. */
  9. #include <sys/syscall.h>
  10. #include <sys/fsuid.h>
  11. #include <bits/wordsize.h>
  12. #if (__WORDSIZE == 32 && defined(__NR_setfsgid32)) || __WORDSIZE == 64
  13. # ifdef __NR_setfsgid32
  14. # undef __NR_setfsgid
  15. # define __NR_setfsgid __NR_setfsgid32
  16. # endif
  17. _syscall1(int, setfsgid, gid_t, gid);
  18. #else
  19. # define __NR___syscall_setfsgid __NR_setfsgid
  20. static __inline__ _syscall1(int, __syscall_setfsgid, __kernel_gid_t, gid);
  21. int setfsgid(gid_t gid)
  22. {
  23. if (gid != (gid_t) ((__kernel_gid_t) gid)) {
  24. __set_errno(EINVAL);
  25. return -1;
  26. }
  27. return (__syscall_setfsgid(gid));
  28. }
  29. #endif