Merge branch 'vendor/GCC47'
[dragonfly.git] / lib / libutil / trimdomain.c
1 /*-
2  * Copyright (c) 2001 Brian Somers <brian@Awfulhak.org>
3  *   Based on original work by Atsushi Murai <amurai@FreeBSD.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD: head/lib/libutil/trimdomain.c 150955 2005-10-05 04:42:20Z brooks $
28  */
29
30 #include <sys/param.h>
31
32 #include <libutil.h>
33 #include <string.h>
34 #include <unistd.h>
35
36 static int      isDISP(const char *);
37
38 /*-
39  * Trim the current domain name from fullhost, but only if the result
40  * is less than or equal to hostsize in length.
41  *
42  * This function understands $DISPLAY type fullhosts.
43  *
44  * For example:
45  *
46  *     trimdomain("abcde.my.domain", 5)       ->   "abcde"
47  *     trimdomain("abcde.my.domain", 4)       ->   "abcde.my.domain"
48  *     trimdomain("abcde.my.domain:0.0", 9)   ->   "abcde:0.0"
49  *     trimdomain("abcde.my.domain:0.0", 8)   ->   "abcde.my.domain:0.0"
50  */
51 void
52 trimdomain(char *fullhost, int hostsize)
53 {
54         static size_t dlen;
55         static int first = 1;
56         static char domain[MAXHOSTNAMELEN];
57         char *end, *s;
58         size_t len;
59
60         if (first) {
61                 /* XXX: Should we assume that our domain is this persistent ? */
62                 first = 0;
63                 if (gethostname(domain, sizeof(domain) - 1) == 0 &&
64                     (s = strchr(domain, '.')) != NULL)
65                         memmove(domain, s + 1, strlen(s + 1) + 1);
66                 else
67                         domain[0] = '\0';
68                 dlen = strlen(domain);
69         }
70
71         if (domain[0] == '\0')
72                 return;
73
74         s = fullhost;
75         end = s + hostsize + 1;
76         if ((s = memchr(s, '.', (size_t)(end - s))) != NULL) {
77                 if (strncasecmp(s + 1, domain, dlen) == 0) {
78                         if (s[dlen + 1] == '\0') {
79                                 /* Found -- lose the domain. */
80                                 *s = '\0';
81                         } else if (s[dlen + 1] == ':' &&
82                             isDISP(s + dlen + 2) &&
83                             (len = strlen(s + dlen + 1)) < (size_t)(end - s)) {
84                                 /* Found -- shuffle the DISPLAY back. */
85                                 memmove(s, s + dlen + 1, len + 1);
86                         }
87                 }
88         }
89 }
90
91 /*
92  * Is the given string NN or NN.NN where ``NN'' is an all-numeric string ?
93  */
94 static int
95 isDISP(const char *disp)
96 {
97         size_t w;
98         int res;
99
100         w = strspn(disp, "0123456789");
101         res = 0;
102         if (w > 0) {
103                 if (disp[w] == '\0')
104                         res = 1;        /* NN */
105                 else if (disp[w] == '.') {
106                         disp += w + 1;
107                         w = strspn(disp, "0123456789");
108                         if (w > 0 && disp[w] == '\0')
109                                 res = 1;        /* NN.NN */
110                 }
111         }
112         return (res);
113 }