bsd-getpeereid.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Copyright (c) 2002,2004 Damien Miller <djm@mindrot.org>
  3. *
  4. * Permission to use, copy, modify, and distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #include "includes.h"
  17. #if !defined(HAVE_GETPEEREID)
  18. #include <sys/types.h>
  19. #include <sys/socket.h>
  20. #include <unistd.h>
  21. #if defined(SO_PEERCRED)
  22. int
  23. getpeereid(int s, uid_t *euid, gid_t *gid)
  24. {
  25. struct ucred cred;
  26. socklen_t len = sizeof(cred);
  27. if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cred, &len) < 0)
  28. return (-1);
  29. *euid = cred.uid;
  30. *gid = cred.gid;
  31. return (0);
  32. }
  33. #elif defined(HAVE_GETPEERUCRED)
  34. #ifdef HAVE_UCRED_H
  35. # include <ucred.h>
  36. #endif
  37. int
  38. getpeereid(int s, uid_t *euid, gid_t *gid)
  39. {
  40. ucred_t *ucred = NULL;
  41. if (getpeerucred(s, &ucred) == -1)
  42. return (-1);
  43. if ((*euid = ucred_geteuid(ucred)) == -1)
  44. return (-1);
  45. if ((*gid = ucred_getrgid(ucred)) == -1)
  46. return (-1);
  47. ucred_free(ucred);
  48. return (0);
  49. }
  50. #else
  51. int
  52. getpeereid(int s, uid_t *euid, gid_t *gid)
  53. {
  54. *euid = geteuid();
  55. *gid = getgid();
  56. return (0);
  57. }
  58. #endif /* defined(SO_PEERCRED) */
  59. #endif /* !defined(HAVE_GETPEEREID) */