aaf50a92d1d9f7f98b510d720069fd871a1ca32c
[gnulib.git] / lib / xgetdomainname.c
1 /* xgetdomainname.c -- Return the NIS domain name, without size limitations.
2    Copyright (C) 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program 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
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Based on xgethostname.c, written by Jim Meyering.  */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 /* Specification.  */
25 #include "xgetdomainname.h"
26
27 /* Get getdomainname.  */
28 #include "getdomainname.h"
29
30 /* Get errno.  */
31 #include <errno.h>
32
33 #include "xalloc.h"
34
35 #ifndef INITIAL_DOMAINNAME_LENGTH
36 # define INITIAL_DOMAINNAME_LENGTH 34
37 #endif
38
39 /* Return the NIS domain name of the machine, in malloc'd storage.
40    WARNING! The NIS domain name is unrelated to the fully qualified host name
41             of the machine.  It is also unrelated to email addresses.
42    WARNING! The NIS domain name is usually the empty string when not using NIS.
43    If malloc fails, exit.
44    Upon any other failure, set errno and return NULL.  */
45 char *
46 xgetdomainname (void)
47 {
48   char *domainname;
49   size_t size;
50
51   size = INITIAL_DOMAINNAME_LENGTH;
52   domainname = xmalloc (size);
53   while (1)
54     {
55       int k = size - 1;
56       int err;
57
58       errno = 0;
59       domainname[k] = '\0';
60       err = getdomainname (domainname, size);
61       if (err >= 0 && domainname[k] == '\0')
62         break;
63       else if (err < 0 && errno != EINVAL)
64         {
65           int saved_errno = errno;
66           free (domainname);
67           errno = saved_errno;
68           return NULL;
69         }
70       size *= 2;
71       domainname = xrealloc (domainname, size);
72     }
73
74   return domainname;
75 }