afsconfig-and-rcsid-all-around-20010705
[openafs.git] / src / login / util_logwtmp.c
1 /*
2  * Copyright (c) 1988 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that the above copyright notice and this paragraph are
7  * duplicated in all such forms and that any documentation,
8  * advertising materials, and other materials related to such
9  * distribution and use acknowledge that the software was developed
10  * by the University of California, Berkeley.  The name of the
11  * University may not be used to endorse or promote products derived
12  * from this software without specific prior written permission.
13  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16  */
17
18 #include <afs/param.h>
19 #include <afsconfig.h>
20
21 RCSID("$Header$");
22
23 #include <sys/types.h>
24 #include <sys/time.h>
25 #include <sys/stat.h>
26 #include <sys/file.h>
27 #include <fcntl.h>
28 #include <unistd.h>
29 #include <time.h>
30 #include <string.h>
31 #include <utmp.h>
32
33 #ifdef AFS_HPUX_ENV
34 #define WTMPFILE        "/etc/wtmp"
35 #else
36 #define WTMPFILE        "/usr/adm/wtmp"
37 #endif
38
39
40 void
41 logwtmp(line, name, host)
42         char *line, *name, *host;
43 {
44         struct utmp ut;
45         struct stat buf;
46         int fd;
47
48         if ((fd = open(WTMPFILE, O_WRONLY|O_APPEND, 0)) < 0)
49                 return;
50         if (!fstat(fd, &buf)) {
51                 (void)strncpy(ut.ut_line, line, sizeof(ut.ut_line));
52                 (void)strncpy(ut.ut_name, name, sizeof(ut.ut_name));
53 #if     !defined(AIX) && !defined(AFS_SUN5_ENV)
54                 (void)strncpy(ut.ut_host, host, sizeof(ut.ut_host));
55 #endif
56                 (void)time(&ut.ut_time);
57                 if (write(fd, (char *)&ut, sizeof(struct utmp)) !=
58                     sizeof(struct utmp))
59                         (void)ftruncate(fd, buf.st_size);
60         }
61         (void)close(fd);
62 }