Merge branch 'vendor/GCC47'
[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. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * @(#)logwtmp.c        8.1 (Berkeley) 6/4/93
30  * $FreeBSD: src/lib/libutil/logwtmp.c,v 1.14 2000/01/15 03:26:54 shin Exp $
31  */
32
33 #include <sys/param.h>
34 #include <sys/file.h>
35 #include <sys/socket.h>
36 #include <sys/stat.h>
37
38 #include <netdb.h>
39 #include <stdio.h>
40 #include <string.h>
41 #include <time.h>
42 #include <unistd.h>
43 #include <utmp.h>
44 #include <libutil.h>
45
46 /* wrapper for KAME-special getnameinfo() */
47 #ifndef NI_WITHSCOPEID
48 #define NI_WITHSCOPEID  0
49 #endif
50
51
52 void
53 logwtmp(const char *line, const char *name, const char *host)
54 {
55         struct utmp ut;
56         struct stat buf;
57         char   fullhost[MAXHOSTNAMELEN];
58         int fd;
59         
60         strncpy(fullhost, host, sizeof(fullhost) - 1);  
61         fullhost[sizeof(fullhost) - 1] = '\0';
62         trimdomain(fullhost, UT_HOSTSIZE);
63         host = fullhost;
64
65         if (strlen(host) > UT_HOSTSIZE) {
66                 int error;
67                 struct addrinfo hints, *res;
68
69                 bzero(&hints, sizeof(struct addrinfo));
70                 hints.ai_family = AF_UNSPEC;
71                 hints.ai_flags = AI_CANONNAME;
72                 error = getaddrinfo(host, NULL, &hints, &res);
73                 if (error != 0 || res->ai_addr == NULL)
74                         host = "invalid hostname";
75                 else {
76                         error = getnameinfo(res->ai_addr, res->ai_addrlen,
77                                           fullhost, strlen(fullhost), NULL, 0,
78                                           NI_NUMERICHOST|NI_WITHSCOPEID);
79                         if (error != 0) {
80                           fprintf(stderr, "%d", error);
81                                 host = "invalid hostname";
82                         }
83                 }
84         }
85
86         if ((fd = open(_PATH_WTMP, O_WRONLY|O_APPEND, 0)) < 0)
87                 return;
88         if (fstat(fd, &buf) == 0) {
89                 (void) strncpy(ut.ut_line, line, sizeof(ut.ut_line));
90                 (void) strncpy(ut.ut_name, name, sizeof(ut.ut_name));
91                 (void) strncpy(ut.ut_host, host, sizeof(ut.ut_host));
92                 (void) time(&ut.ut_time);
93                 if (write(fd, (char *)&ut, sizeof(struct utmp)) !=
94                     sizeof(struct utmp))
95                         (void) ftruncate(fd, buf.st_size);
96         }
97         (void) close(fd);
98 }