getpwnam.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 **result)
  38. {
  39. int ret;
  40. int passwd_fd;
  41. *result = NULL;
  42. if (name == NULL) {
  43. return EINVAL;
  44. }
  45. if ((passwd_fd = open(_PATH_PASSWD, O_RDONLY)) < 0) {
  46. return ENOENT;
  47. }
  48. while ((ret=__getpwent_r(password, buff, buflen, passwd_fd)) == 0) {
  49. if (!strcmp(password->pw_name, name)) {
  50. *result=password;
  51. close(passwd_fd);
  52. *result = password;
  53. return 0;
  54. }
  55. }
  56. close(passwd_fd);
  57. return ret;
  58. }
  59. struct passwd *getpwnam(const char *name)
  60. {
  61. int ret;
  62. static char line_buff[PWD_BUFFER_SIZE];
  63. static struct passwd pwd;
  64. struct passwd *result;
  65. LOCK;
  66. if ((ret=getpwnam_r(name, &pwd, line_buff, sizeof(line_buff), &result)) == 0) {
  67. UNLOCK;
  68. return &pwd;
  69. }
  70. __set_errno(ret);
  71. UNLOCK;
  72. return NULL;
  73. }