* lib/getlogin_r.c, lib/getlogin_r.h, m4/getlogin_r.m4,
[gnulib.git] / lib / getlogin_r.c
1 /* Provide a working getlogin_r for systems which lack it.
2
3    Copyright (C) 2005 Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2, or (at your option)
8    any later version.
9
10    This program 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
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software Foundation,
17    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 /* written by Paul Eggert and Derek Price */
20
21 #include <config.h>
22
23 #include "getlogin_r.h"
24
25 #include <errno.h>
26 #include <string.h>
27
28 #if HAVE_UNISTD_H
29 # include <unistd.h>
30 #endif
31
32 #if !HAVE_DECL_GETLOGIN
33 char *getlogin (void);
34 #endif
35
36 /* See getlogin_r.h for documentation.  */
37 int
38 getlogin_r (char *name, size_t size)
39 {
40   char *n;
41   int save_errno = errno;
42
43   errno = 0;
44   n = getlogin ();
45   if (n)
46     {
47       size_t nlen = strlen (n);
48       if (nlen < size)
49         {
50           memcpy (name, n, nlen + 1);
51           return 0;
52         }
53       errno = ERANGE;
54     }
55
56   if (errno) return errno;
57   errno = save_errno;
58   return -1;
59 }