]> git.pld-linux.org Git - packages/proftpd.git/blame_incremental - proftpd-wtmp.patch
- separated anonftp config into subpackage
[packages/proftpd.git] / proftpd-wtmp.patch
... / ...
CommitLineData
1--- proftpd-1.3.0/src/log.c 2005-11-14 18:33:06.000000000 +0200
2+++ proftpd-1.3.0.utmp/src/log.c 2006-04-29 14:17:55.023163252 +0300
3@@ -54,31 +54,13 @@
4
5 int log_wtmp(char *line, const char *name, const char *host,
6 pr_netaddr_t *ip) {
7- struct stat buf;
8 struct utmp ut;
9 int res = 0;
10- static int fd = -1;
11+ static int washere = 0;
12
13-#if ((defined(SVR4) || defined(__SVR4)) || \
14- (defined(__NetBSD__) && defined(HAVE_UTMPX_H))) && \
15- !(defined(LINUX) || defined(__hpux) || defined (_AIX))
16- /* This "auxilliary" utmp doesn't exist under linux. */
17-#ifdef __sparcv9
18- struct futmpx utx;
19- time_t t;
20-#else
21- struct utmpx utx;
22-#endif
23- static int fdx = -1;
24-
25-#if !defined(WTMPX_FILE) && defined(_PATH_WTMPX)
26-# define WTMPX_FILE _PATH_WTMPX
27-#endif
28-
29- if (fdx < 0 &&
30- (fdx = open(WTMPX_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
31- pr_log_pri(PR_LOG_WARNING, "wtmpx %s: %s", WTMPX_FILE, strerror(errno));
32- return -1;
33+ if (!washere) {
34+ utmpname(_PATH_WTMP);
35+ washere = 1;
36 }
37
38 /* Unfortunately, utmp string fields are terminated by '\0' if they are
39@@ -87,52 +69,7 @@
40 * Insane if you ask me. Unless there's massive uproar, I prefer to err on
41 * the side of caution and always null-terminate our strings.
42 */
43- if (fstat(fdx, &buf) == 0) {
44- memset(&utx, 0, sizeof(utx));
45-
46- sstrncpy(utx.ut_user, name, sizeof(utx.ut_user));
47- sstrncpy(utx.ut_id, "ftp", sizeof(utx.ut_user));
48- sstrncpy(utx.ut_line, line, sizeof(utx.ut_line));
49- sstrncpy(utx.ut_host, host, sizeof(utx.ut_host));
50- utx.ut_pid = getpid();
51-#if defined(__NetBSD__) && defined(HAVE_UTMPX_H)
52- memcpy(&utx.ut_ss, pr_netaddr_get_inaddr(ip), sizeof(utx.ut_ss));
53- gettimeofday(&utx.ut_tv, NULL);
54-#else /* SVR4 */
55- utx.ut_syslen = strlen(utx.ut_host)+1;
56-# ifdef __sparcv9
57- time(&t);
58- utx.ut_tv.tv_sec = (time32_t)t;
59-# else
60- time(&utx.ut_tv.tv_sec);
61-# endif
62-#endif /* SVR4 */
63-
64- if (*name)
65- utx.ut_type = USER_PROCESS;
66- else
67- utx.ut_type = DEAD_PROCESS;
68-#ifdef HAVE_UT_UT_EXIT
69- utx.ut_exit.e_termination = 0;
70- utx.ut_exit.e_exit = 0;
71-#endif /* HAVE_UT_UT_EXIT */
72- if (write(fdx, (char *)&utx, sizeof(utx)) != sizeof(utx))
73- ftruncate(fdx, buf.st_size);
74-
75- } else {
76- pr_log_debug(DEBUG0, "%s fstat(): %s", WTMPX_FILE, strerror(errno));
77- res = -1;
78- }
79-
80-#else /* Non-SVR4 systems */
81-
82- if (fd < 0 &&
83- (fd = open(WTMP_FILE, O_WRONLY|O_APPEND, 0)) < 0) {
84- pr_log_pri(PR_LOG_WARNING, "wtmp %s: %s", WTMP_FILE, strerror(errno));
85- return -1;
86- }
87
88- if (fstat(fd, &buf) == 0) {
89 memset(&ut, 0, sizeof(ut));
90 #ifdef HAVE_UTMAXTYPE
91 # ifdef LINUX
92@@ -169,15 +106,12 @@
93 #endif /* HAVE_UT_UT_HOST */
94
95 time(&ut.ut_time);
96- if (write(fd, (char *)&ut, sizeof(ut)) != sizeof(ut))
97- ftruncate(fd, buf.st_size);
98-
99- } else {
100- pr_log_debug(DEBUG0, "%s fstat(): %s",WTMP_FILE,strerror(errno));
101- res = -1;
102- }
103-#endif /* SVR4 */
104
105+ setutent();
106+ while ((getutent())) ;
107+ pututline(&ut);
108+ if (!washere)
109+ endutent();
110 return res;
111 }
112
This page took 0.024697 seconds and 4 git commands to generate.