home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / posix / cuserid.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-04  |  1.8 KB  |  64 lines

  1. /* Copyright (C) 1991, 1994 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3.  
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8.  
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with the GNU C Library; see the file COPYING.LIB.  If
  16. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  17. Cambridge, MA 02139, USA.  */
  18.  
  19. #include <ansidecl.h>
  20. #include <stdio.h>
  21. #include <string.h>
  22. #include <unistd.h>
  23. #include <pwd.h>
  24.  
  25. /* Return the username of the caller.
  26.    If S is not NULL, it points to a buffer of at least L_cuserid bytes
  27.    into which the name is copied; otherwise, a static buffer is used.  */
  28. char *
  29. DEFUN(cuserid, (s), char *s)
  30. {
  31.   static char name[L_cuserid];
  32.   char user_name [L_cuserid];
  33.   char *login_name = getlogin ();
  34.   uid_t user_uid;
  35.   /* We need that for POSIX. */
  36.   struct passwd *pwent = getpwuid(geteuid());
  37.   
  38.   /* We should not do anything. */
  39.   if (pwent == NULL)
  40.   {
  41.     if (s != NULL)
  42.       s[0] = '\0';
  43.     return NULL;
  44.   }
  45.  
  46.   /* We get effective user name and ID. */
  47.   strcpy (user_name, pwent->pw_name);
  48.   user_uid = pwent->pw_uid;
  49.  
  50.   /* It is tricky here. We don't want to use getlogin () if
  51.    * user_uid != getpwnam(login_name)->pw_uid.
  52.    */
  53.   if (login_name == NULL || (pwent = getpwnam(login_name)) == NULL
  54.     || user_uid != pwent->pw_uid)
  55.   {
  56.     login_name = user_name;
  57.   }
  58.  
  59.   if (s == NULL)
  60.     s = name;
  61.  
  62.   return strcpy(s, login_name);
  63. }
  64.