Change copyright notice from GPLv2+ to GPLv3+.
[gnulib.git] / lib / xgethostname.c
1 /* xgethostname.c -- return current hostname with unlimited length
2
3    Copyright (C) 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006 Free
4    Software Foundation, Inc.
5
6    This program is free software: you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 /* written by Jim Meyering */
20
21 #include <config.h>
22
23 /* Specification.  */
24 #include "xgethostname.h"
25
26 #include <stdlib.h>
27 #include <errno.h>
28 #include <unistd.h>
29
30 #include "xalloc.h"
31
32 #ifndef ENAMETOOLONG
33 # define ENAMETOOLONG 0
34 #endif
35
36 #ifndef INITIAL_HOSTNAME_LENGTH
37 # define INITIAL_HOSTNAME_LENGTH 34
38 #endif
39
40 /* Return the current hostname in malloc'd storage.
41    If malloc fails, exit.
42    Upon any other failure, return NULL and set errno.  */
43 char *
44 xgethostname (void)
45 {
46   char *hostname = NULL;
47   size_t size = INITIAL_HOSTNAME_LENGTH;
48
49   while (1)
50     {
51       /* Use SIZE_1 here rather than SIZE to work around the bug in
52          SunOS 5.5's gethostname whereby it NUL-terminates HOSTNAME
53          even when the name is as long as the supplied buffer.  */
54       size_t size_1;
55
56       hostname = x2realloc (hostname, &size);
57       size_1 = size - 1;
58       hostname[size_1 - 1] = '\0';
59       errno = 0;
60
61       if (gethostname (hostname, size_1) == 0)
62         {
63           if (! hostname[size_1 - 1])
64             break;
65         }
66       else if (errno != 0 && errno != ENAMETOOLONG && errno != EINVAL
67                /* OSX/Darwin does this when the buffer is not large enough */
68                && errno != ENOMEM)
69         {
70           int saved_errno = errno;
71           free (hostname);
72           errno = saved_errno;
73           return NULL;
74         }
75     }
76
77   return hostname;
78 }