]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - lib/libutil/logwtmp.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.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  * 4. 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
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 #if defined(LIBC_SCCS) && !defined(lint)
34 #if 0
35 static char sccsid[] = "@(#)logwtmp.c   8.1 (Berkeley) 6/4/93";
36 #endif
37 #endif /* LIBC_SCCS and not lint */
38
39 #include <sys/param.h>
40 #include <sys/file.h>
41 #include <sys/socket.h>
42 #include <sys/stat.h>
43
44 #include <libutil.h>
45 #include <netdb.h>
46 #include <stdio.h>
47 #include <string.h>
48 #include <time.h>
49 #include <timeconv.h>
50 #include <unistd.h>
51 #include <utmp.h>
52
53
54 void
55 logwtmp(const char *line, const char *name, const char *host)
56 {
57         struct utmp ut;
58         struct stat buf;
59         char   fullhost[MAXHOSTNAMELEN];
60         int fd;
61         
62         strncpy(fullhost, host, sizeof(fullhost) - 1);  
63         fullhost[sizeof(fullhost) - 1] = '\0';
64         trimdomain(fullhost, UT_HOSTSIZE);
65         host = fullhost;
66
67         if (strlen(host) > UT_HOSTSIZE) {
68                 int error;
69                 struct addrinfo hints, *res;
70
71                 bzero(&hints, sizeof(struct addrinfo));
72                 hints.ai_family = AF_UNSPEC;
73                 hints.ai_flags = AI_CANONNAME;
74                 error = getaddrinfo(host, NULL, &hints, &res);
75                 if (error != 0 || res->ai_addr == NULL)
76                         host = "invalid hostname";
77                 else {
78                         error = getnameinfo(res->ai_addr, res->ai_addrlen,
79                                           fullhost, strlen(fullhost), NULL, 0,
80                                           NI_NUMERICHOST);
81                         if (error != 0) {
82                           fprintf(stderr, "%d", error);
83                                 host = "invalid hostname";
84                         }
85                 }
86         }
87
88         if ((fd = open(_PATH_WTMP, O_WRONLY|O_APPEND, 0)) < 0)
89                 return;
90         if (fstat(fd, &buf) == 0) {
91                 (void) strncpy(ut.ut_line, line, sizeof(ut.ut_line));
92                 (void) strncpy(ut.ut_name, name, sizeof(ut.ut_name));
93                 (void) strncpy(ut.ut_host, host, sizeof(ut.ut_host));
94                 ut.ut_time = _time_to_time32(time(NULL));
95                 if (write(fd, (char *)&ut, sizeof(struct utmp)) !=
96                     sizeof(struct utmp))
97                         (void) ftruncate(fd, buf.st_size);
98         }
99         (void) close(fd);
100 }