seteuid.c 906 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  3. *
  4. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  5. */
  6. #include <unistd.h>
  7. #include <stdio.h>
  8. #include <errno.h>
  9. #include <pwd.h>
  10. #include <sys/types.h>
  11. #include <sys/syscall.h>
  12. #if !defined __UCLIBC_LINUX_SPECIFIC__
  13. #undef __NR_setresuid
  14. #undef __NR_setresuid32
  15. #endif
  16. #if (defined __NR_setresuid || defined __NR_setresuid32) && defined __USE_GNU
  17. #endif
  18. int seteuid(uid_t uid)
  19. {
  20. int result;
  21. if (uid == (uid_t) ~0)
  22. {
  23. __set_errno (EINVAL);
  24. return -1;
  25. }
  26. #if (defined __NR_setresuid || defined __NR_setresuid32) && defined __USE_GNU
  27. result = setresuid(-1, uid, -1);
  28. if (result == -1 && errno == ENOSYS)
  29. /* Will also set the saved user ID if euid != uid,
  30. * making it impossible to switch back...*/
  31. #endif
  32. result = setreuid(-1, uid);
  33. return result;
  34. }
  35. libc_hidden_def(seteuid)