aboutsummaryrefslogtreecommitdiffstats
path: root/security/slush/files/patch-ac
blob: 9ebcb844f771297e164f479aff15afd0de67a11c (plain) (blame)
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
*** slushd.c-   Mon Oct 27 06:19:54 2003
--- slushd.c    Mon Oct 27 06:22:02 2003
***************
*** 40,46 ****
--- 40,50 ----
  #include <ctype.h>
  #include <stdlib.h>
  #include <netdb.h>
+ #include <sys/param.h>
+ #if __FreeBSD_version >= 500000
  #include <getopt.h>
+ #endif
+ #include <libutil.h>
  #include <pwd.h>
  #include <grp.h>
  #include <fcntl.h>
***************
*** 51,56 ****
--- 55,61 ----
  #include <sys/stat.h>
  #include <sys/ioctl.h>
  #include <sys/file.h>
+ 
  #ifdef HAVE_UNISTD_H
  #include <unistd.h>     /* fork, execvp, exit */
  #endif
***************
*** 654,711 ****
  void log_uwtmp(struct passwd *pw, struct in_addr *i, char *tty, int is_logout)
  {
    struct utmp ut;
-   int wtmp;
-   int lock;
    
    tty = strrchr(tty, '/');
    if (tty == NULL)
    {
        syslog(LOG_ERR, "Can't determine basename of tty");
!       exit(3);
    }
    tty++;
    
-   utmpname(_PATH_UTMP);
-   setutent();
-   memset(&ut, 0, sizeof(ut));
  
!   if (ut.ut_id[0] == 0)
!       strncpy(ut.ut_id, tty + 3, sizeof(ut.ut_id));
  
-   if (!is_logout)
-       strncpy(ut.ut_user, pw->pw_name, sizeof(ut.ut_user));
-   
    strncpy(ut.ut_line, tty, sizeof(ut.ut_line) - 1);
!   ut.ut_line[sizeof(ut.ut_line) - 1] = 0;
!   
!   ut.ut_time = time(NULL);
!   ut.ut_type = is_logout?DEAD_PROCESS:USER_PROCESS;
!   ut.ut_pid = getpid();
  
-   strncpy(ut.ut_host, hostname, sizeof(ut.ut_host) - 1);
-   ut.ut_host[sizeof(ut.ut_host) - 1] = 0;
    
!   memcpy(&ut.ut_addr, i, sizeof(ut.ut_addr));
! 
!   pututline(&ut);
!   endutent();
! 
!   lock = open(_PATH_WTMPLOCK, O_CREAT|O_WRONLY, 0660);
!   if (lock == -1)
!       ioerror("open");
!       
!   if (flock(lock, LOCK_EX) == -1)
!       ioerror("flock");
!       
!   wtmp = open(_PATH_WTMP, O_APPEND|O_WRONLY);
!   if (wtmp == -1)
!       ioerror("open");
!       
!   write(wtmp, (char *)&ut, sizeof(ut));
!   close(wtmp);
! 
!   flock(lock, LOCK_UN);
!   close(lock);
  }
  
  /* Retrieve client X509 certificate and test authentication */
--- 659,688 ----
  void log_uwtmp(struct passwd *pw, struct in_addr *i, char *tty, int is_logout)
  {
    struct utmp ut;
    
    tty = strrchr(tty, '/');
    if (tty == NULL)
    {
        syslog(LOG_ERR, "Can't determine basename of tty");
!       return;
    }
    tty++;
+ 
    
  
!   if(is_logout) {
!       logout(tty);
!       return;
!   }
  
    strncpy(ut.ut_line, tty, sizeof(ut.ut_line) - 1);
!   strncpy(ut.ut_name, pw->pw_name, sizeof(ut.ut_name)-1);
!   strncpy(ut.ut_host, inet_ntoa(*i), sizeof(ut.ut_host) - 1);
!   ut.ut_time = time(0);
!   login(&ut);
  
    
!   return;
  }
  
  /* Retrieve client X509 certificate and test authentication */