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