Imported Upstream version 1.1.11
[platform/upstream/cdrkit.git] / librols / getdomainname.c
1 /*
2  * This file has been modified for the cdrkit suite.
3  *
4  * The behaviour and appearence of the program code below can differ to a major
5  * extent from the version distributed by the original author(s).
6  *
7  * For details, see Changelog file distributed with the cdrkit package. If you
8  * received this file from another source then ask the distributing person for
9  * a log of modifications.
10  *
11  */
12
13 /* @(#)getdomainname.c  1.16 03/06/15 Copyright 1995-2003 J. Schilling */
14 /*
15  *      Copyright (c) 1995-2003 J. Schilling
16  */
17 /*
18  * This program is free software; you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License version 2
20  * as published by the Free Software Foundation.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License along with
28  * this program; see the file COPYING.  If not, write to the Free Software
29  * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30  */
31
32 #include <mconfig.h>
33 #include <standard.h>
34 #include <stdxlib.h>
35 #ifdef  HAVE_SYS_SYSTEMINFO_H
36 #include <sys/systeminfo.h>
37 #endif
38 #include <libport.h>
39
40 #ifndef HAVE_GETDOMAINNAME
41 EXPORT  int     getdomainname   __PR((char *name, int namelen));
42 #endif
43
44
45 /*#undef        HAVE_GETDOMAINNAME*/
46 /*#undef        SI_SRPC_DOMAIN*/
47
48 #if     !defined(HAVE_GETDOMAINNAME) && defined(SI_SRPC_DOMAIN)
49 #define FUNC_GETDOMAINNAME
50
51 EXPORT int
52 getdomainname(name, namelen)
53         char    *name;
54         int     namelen;
55 {
56         if (sysinfo(SI_SRPC_DOMAIN, name, namelen) < 0)
57                 return (-1);
58         return (0);
59 }
60 #endif
61
62 #if     !defined(HAVE_GETDOMAINNAME) && !defined(FUNC_GETDOMAINNAME)
63 #define FUNC_GETDOMAINNAME
64
65 #include <stdio.h>
66 #include <strdefs.h>
67 #include <schily.h>
68
69 EXPORT int
70 getdomainname(name, namelen)
71         char    *name;
72         int     namelen;
73 {
74         FILE    *f;
75         char    name1[1024];
76         char    *p;
77         char    *p2;
78
79         name[0] = '\0';
80
81         f = fileopen("/etc/resolv.conf", "r");
82
83         if (f == NULL)
84                 return (-1);
85
86         while (rols_fgetline(f, name1, sizeof (name1)) >= 0) {
87                 if ((p = strchr(name1, '#')) != NULL)
88                         *p = '\0';
89
90                 /*
91                  * Skip leading whitespace.
92                  */
93                 p = name1;
94                 while (*p != '\0' && (*p == ' ' || *p == '\t'))
95                         p++;
96
97                 if (strncmp(p, "domain", 6) == 0) {
98                         p += 6;
99                         while (*p != '\0' && (*p == ' ' || *p == '\t'))
100                                 p++;
101                         if ((p2 = strchr(p, ' ')) != NULL)
102                                 *p2 = '\0';
103                         if ((p2 = strchr(p, '\t')) != NULL)
104                                 *p2 = '\0';
105
106                         strncpy(name, p, namelen);
107
108                         fclose(f);
109                         return (0);
110                 }
111         }
112         fclose(f);
113         return (0);
114 }
115 #endif