1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
/*
* pty_logwtmp: Implement the logwtmp function if not present.
*
* Copyright 1995, 2001 by the Massachusetts Institute of Technology.
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby
* granted, provided that the above copyright notice appear in all
* copies and that both that copyright notice and this permission
* notice appear in supporting documentation, and that the name of
* M.I.T. not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior
* permission. Furthermore if you modify this software you must label
* your software as modified software and not distribute it in such a
* fashion that it might be confused with the original M.I.T. software.
* M.I.T. makes no representations about the suitability
* of this software for any purpose. It is provided "as is" without
* express or implied warranty.
*
*/
#include <com_err.h>
#include "libpty.h"
#include "pty-int.h"
#if defined(HAVE_SETUTXENT) || defined(HAVE_SETUTENT)
#ifdef HAVE_SETUTXENT
#define PTY_STRUCT_UTMPX struct utmpx
#else
#define PTY_STRUCT_UTMPX struct utmp
#endif
long
pty_logwtmp(const char *tty, const char *user, const char *host)
{
PTY_STRUCT_UTMPX utx;
int loggingin;
size_t len;
const char *cp;
char utmp_id[5];
#ifdef HAVE_LOGWTMP
logwtmp(tty,user,host);
return 0;
#else
loggingin = (user[0] == '\0');
memset(&utx, 0, sizeof(utx));
strncpy(utx.ut_line, tty, sizeof(utx.ut_line));
strncpy(utx.ut_user, user, sizeof(utx.ut_user));
#if (defined(HAVE_SETUTXENT) && defined(HAVE_STRUCT_UTMPX_UT_HOST)) \
|| (!defined(HAVE_SETUTXENT) && defined(HAVE_STRUCT_UTMP_UT_HOST))
strncpy(utx.ut_host, host, sizeof(utx.ut_host));
utx.ut_host[sizeof(utx.ut_host) - 1] = '\0';
#endif
utx.ut_pid = (loggingin ? getpid() : 0);
utx.ut_type = (loggingin ? USER_PROCESS : DEAD_PROCESS);
len = strlen(tty);
if (len >= 2)
cp = tty + len - 2;
else
cp = tty;
sprintf(utmp_id, "kr%s", cp);
strncpy(utx.ut_id, utmp_id, sizeof(utx.ut_id));
#ifdef HAVE_SETUTXENT
return ptyint_update_wtmpx(&utx);
#else
return ptyint_update_wtmp(&utx);
#endif
#endif /* !HAVE_LOGWTMP */
}
#else /* !(defined(HAVE_SETUTXENT) || defined(HAVE_SETUTENT)) */
long
pty_logwtmp(const char *tty, const char *user, const char *host)
{
struct utmp ut;
#ifdef HAVE_LOGWTMP
logwtmp(tty,user,host);
return 0;
#else
memset(&ut, 0, sizeof(ut));
#ifdef HAVE_STRUCT_UTMP_UT_HOST
strncpy(ut.ut_host, host, sizeof(ut.ut_host));
ut.ut_host[sizeof(ut.ut_host) - 1] = '\0';
#endif
strncpy(ut.ut_line, tty, sizeof(ut.ut_line));
strncpy(ut.ut_name, user, sizeof(ut.ut_name));
return ptyint_update_wtmp(&ut);
#endif /* !HAVE_LOGWTMP */
}
#endif /* !(defined(HAVE_SETUTXENT) || defined(HAVE_SETUTENT)) */
#if 0
long pty_logwtmp (tty, user, host )
char *user, *tty, *host;
{
#ifdef HAVE_LOGWTMP
logwtmp(tty,user,host);
return 0;
#else
struct utmp ut;
char *tmpx;
char utmp_id[5];
/* Will be empty for logout */
int loggingin = user[0];
#ifndef NO_UT_HOST
strncpy(ut.ut_host, host, sizeof(ut.ut_host));
#endif
strncpy(ut.ut_line, tty, sizeof(ut.ut_line));
ut.ut_time = time(0);
#ifndef NO_UT_PID
ut.ut_pid = getpid();
strncpy(ut.ut_user, user, sizeof(ut.ut_user));
tmpx = tty + strlen(tty) - 2;
sprintf(utmp_id, "kr%s", tmpx);
strncpy(ut.ut_id, utmp_id, sizeof(ut.ut_id));
ut.ut_pid = (loggingin ? getpid() : 0);
ut.ut_type = (loggingin ? USER_PROCESS : DEAD_PROCESS);
#else
strncpy(ut.ut_name, user, sizeof(ut.ut_name));
#endif
return ptyint_update_wtmp(&ut, host, user);
#endif /*HAVE_LOGWTMP*/
}
#endif
|