getpwnam.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * getpwnam.c - This file is part of the libc-8086/pwd package for ELKS,
  3. * Copyright (C) 1995, 1996 Nat Friedman <ndf@linux.mit.edu>.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Library General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Library General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Library General Public
  16. * License along with this library; if not, write to the Free
  17. * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. *
  19. */
  20. #include <features.h>
  21. #include <unistd.h>
  22. #include <string.h>
  23. #include <errno.h>
  24. #include <fcntl.h>
  25. #include <paths.h>
  26. #include "config.h"
  27. #ifdef __UCLIBC_HAS_THREADS__
  28. #include <pthread.h>
  29. static pthread_mutex_t mylock = PTHREAD_MUTEX_INITIALIZER;
  30. # define LOCK pthread_mutex_lock(&mylock)
  31. # define UNLOCK pthread_mutex_unlock(&mylock);
  32. #else
  33. # define LOCK
  34. # define UNLOCK
  35. #endif
  36. int getpwnam_r (const char *name, struct passwd *password,
  37. char *buff, size_t buflen, struct passwd **crap)
  38. {
  39. int passwd_fd;
  40. if (name == NULL) {
  41. __set_errno(EINVAL);
  42. return -1;
  43. }
  44. if ((passwd_fd = open(_PATH_PASSWD, O_RDONLY)) < 0)
  45. return -1;
  46. while (__getpwent_r(password, buff, buflen, passwd_fd) != -1)
  47. if (!strcmp(password->pw_name, name)) {
  48. close(passwd_fd);
  49. return 0;
  50. }
  51. close(passwd_fd);
  52. return -1;
  53. }
  54. struct passwd *getpwnam(const char *name)
  55. {
  56. static char line_buff[PWD_BUFFER_SIZE];
  57. static struct passwd pwd;
  58. LOCK;
  59. if (getpwnam_r(name, &pwd, line_buff, sizeof(line_buff), NULL) != -1) {
  60. UNLOCK;
  61. return &pwd;
  62. }
  63. UNLOCK;
  64. return NULL;
  65. }