2 * Copyright (c) 2001 Brian Somers <brian@Awfulhak.org>
3 * Based on original work by Atsushi Murai <amurai@FreeBSD.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
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.
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
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
32 #include <sys/param.h>
38 static int isDISP(const char *);
41 * Trim the current domain name from fullhost, but only if the result
42 * is less than or equal to hostsize in length.
44 * This function understands $DISPLAY type fullhosts.
48 * trimdomain("abcde.my.domain", 5) -> "abcde"
49 * trimdomain("abcde.my.domain", 4) -> "abcde.my.domain"
50 * trimdomain("abcde.my.domain:0.0", 9) -> "abcde:0.0"
51 * trimdomain("abcde.my.domain:0.0", 8) -> "abcde.my.domain:0.0"
54 trimdomain(char *fullhost
, int hostsize
)
58 static char domain
[MAXHOSTNAMELEN
];
63 /* XXX: Should we assume that our domain is this persistent ? */
65 if (gethostname(domain
, sizeof(domain
) - 1) == 0 &&
66 (s
= strchr(domain
, '.')) != NULL
)
67 memmove(domain
, s
+ 1, strlen(s
+ 1) + 1);
70 dlen
= strlen(domain
);
73 if (domain
[0] == '\0')
77 end
= s
+ hostsize
+ 1;
78 if ((s
= memchr(s
, '.', (size_t)(end
- s
))) != NULL
) {
79 if (strncasecmp(s
+ 1, domain
, dlen
) == 0) {
80 if (s
[dlen
+ 1] == '\0') {
81 /* Found -- lose the domain. */
83 } else if (s
[dlen
+ 1] == ':' &&
84 isDISP(s
+ dlen
+ 2) &&
85 (len
= strlen(s
+ dlen
+ 1)) < (size_t)(end
- s
)) {
86 /* Found -- shuffle the DISPLAY back. */
87 memmove(s
, s
+ dlen
+ 1, len
+ 1);
94 * Is the given string NN or NN.NN where ``NN'' is an all-numeric string ?
97 isDISP(const char *disp
)
102 w
= strspn(disp
, "0123456789");
107 else if (disp
[w
] == '.') {
109 w
= strspn(disp
, "0123456789");
110 if (w
> 0 && disp
[w
] == '\0')