Initial import from FreeBSD RELENG_4:
[dragonfly.git] / lib / libutil / logwtmp.c
1 /*-
2  * Copyright (c) 1988, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #if defined(LIBC_SCCS) && !defined(lint)
35 #if 0
36 static char sccsid[] = "@(#)logwtmp.c   8.1 (Berkeley) 6/4/93";
37 #else
38 static const char rcsid[] =
39   "$FreeBSD: src/lib/libutil/logwtmp.c,v 1.14 2000/01/15 03:26:54 shin Exp $";
40 #endif
41 #endif /* LIBC_SCCS and not lint */
42
43 #include <sys/param.h>
44 #include <sys/socket.h>
45 #include <sys/types.h>
46 #include <sys/file.h>
47 #include <sys/stat.h>
48 #include <netinet/in.h>
49 #include <arpa/inet.h>
50
51 #include <libutil.h>
52 #include <netdb.h>
53 #include <string.h>
54 #include <time.h>
55 #include <unistd.h>
56 #include <utmp.h>
57
58 /* wrapper for KAME-special getnameinfo() */
59 #ifndef NI_WITHSCOPEID
60 #define NI_WITHSCOPEID  0
61 #endif
62
63 void
64 trimdomain(char *fullhost, int hostsize)
65 {
66     static char domain[MAXHOSTNAMELEN];
67     static int first = 1;
68     static size_t dlen;
69     char *s, *end;
70     int spn, ok;
71
72     if (first) {
73         first = 0;
74         if (gethostname(domain, sizeof(domain) - 1) == 0 &&
75             (s = strchr(domain, '.')))
76             memmove(domain, s + 1, strlen(s + 1) + 1);
77         else
78             domain[0] = '\0';
79         dlen = strlen(domain);
80     }
81
82     if (domain[0] != '\0') {
83         s = fullhost;
84         end = s + hostsize + 1;
85         for (; (s = memchr(s, '.', end - s)) != NULL; s++)
86             if (!strncasecmp(s + 1, domain, dlen)) {
87                 if (s[dlen + 1] == '\0') {
88                     *s = '\0';    /* Found - lose the domain */
89                     break;
90                 } else if (s[dlen + 1] == ':') {        /* $DISPLAY ? */
91                     ok = dlen + 2;
92                     spn = strspn(s + ok, "0123456789");
93                     if (spn > 0 && ok + spn - dlen <= end - s) {
94                         ok += spn;
95                         if (s[ok] == '\0') {
96                             /* host.domain:nn */
97                             memmove(s, s + dlen + 1, ok - dlen);
98                             break;
99                         } else if (s[ok] == '.') {
100                             ok++;
101                             spn = strspn(s + ok, "0123456789");
102                             if (spn > 0 && s[ok + spn] == '\0' &&
103                                 ok + spn - dlen <= end - s) {
104                                 /* host.domain:nn.nn */
105                                 memmove(s, s + dlen + 1, ok + spn - dlen);
106                                 break;
107                             }
108                         }
109                     }
110                 }
111             }
112     }
113 }
114
115 #include <stdio.h>
116
117 void
118 logwtmp(line, name, host)
119         const char *line;
120         const char *name;
121         const char *host;
122 {
123         struct utmp ut;
124         struct stat buf;
125         char   fullhost[MAXHOSTNAMELEN];
126         int fd;
127         
128         strncpy(fullhost, host, sizeof(fullhost) - 1);  
129         fullhost[sizeof(fullhost) - 1] = '\0';
130         trimdomain(fullhost, UT_HOSTSIZE);
131         host = fullhost;
132
133         if (strlen(host) > UT_HOSTSIZE) {
134                 int error;
135                 struct addrinfo hints, *res;
136
137                 bzero(&hints, sizeof(struct addrinfo));
138                 hints.ai_family = AF_UNSPEC;
139                 hints.ai_flags = AI_CANONNAME;
140                 error = getaddrinfo(host, NULL, &hints, &res);
141                 if (error != 0 || res->ai_addr == NULL)
142                         host = "invalid hostname";
143                 else {
144                         error = getnameinfo(res->ai_addr, res->ai_addrlen,
145                                           fullhost, strlen(fullhost), NULL, 0,
146                                           NI_NUMERICHOST|NI_WITHSCOPEID);
147                         if (error != 0) {
148                           fprintf(stderr, "%d", error);
149                                 host = "invalid hostname";
150                         }
151                 }
152         }
153
154         if ((fd = open(_PATH_WTMP, O_WRONLY|O_APPEND, 0)) < 0)
155                 return;
156         if (fstat(fd, &buf) == 0) {
157                 (void) strncpy(ut.ut_line, line, sizeof(ut.ut_line));
158                 (void) strncpy(ut.ut_name, name, sizeof(ut.ut_name));
159                 (void) strncpy(ut.ut_host, host, sizeof(ut.ut_host));
160                 (void) time(&ut.ut_time);
161                 if (write(fd, (char *)&ut, sizeof(struct utmp)) !=
162                     sizeof(struct utmp))
163                         (void) ftruncate(fd, buf.st_size);
164         }
165         (void) close(fd);
166 }