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
|
/* XXX: this program knows quite a bit about tcpto's internals */
#include <sys/socket.h>
#include <unistd.h>
#include "buffer.h"
#include "auto_queue.h"
#include "fmt.h"
#include "ip.h"
#include "lock.h"
#include "error.h"
#include "exit.h"
#include "datetime.h"
#include "now.h"
#include "stralloc.h"
#include "open.h"
#include "logmsg.h"
#include "qmail.h"
#define WHO "qmail-tcpto"
void die(n) int n; { buffer_flush(buffer_1); _exit(n); }
void warn(s) char *s;
{
char *x;
x = error_str(errno);
buffer_puts(buffer_1,s);
buffer_puts(buffer_1,": ");
buffer_puts(buffer_1,x);
buffer_puts(buffer_1,"\n");
}
void die_chdir() { logmsg(WHO,110,FATAL,"unable to chdir"); }
void die_open() { logmsg(WHO,112,FATAL,"unable to open tcpto"); }
void die_lock() { logmsg(WHO,112,FATAL,"unable to lock tcpto"); }
void die_read() { logmsg(WHO,112,FATAL,"unable to read tcpto"); }
char tcpto_buf[BUFSIZE_LINE];
char tmp[FMT_ULONG + IPFMT];
int main(void)
{
int fdlock;
int fd;
int r;
int i;
char *record;
char ip4[4];
char ip6[16];
datetime_sec when;
datetime_sec start;
if (chdir(auto_queue) == -1) die_chdir();
if (chdir("queue/lock") == -1) die_chdir();
fdlock = open_write("tcpto");
if (fdlock == -1) die_open();
fd = open_read("tcpto");
if (fd == -1) die_open();
if (lock_ex(fdlock) == -1) die_lock();
r = read(fd,tcpto_buf,sizeof(tcpto_buf));
close(fd);
close(fdlock);
if (r == -1) die_read();
r >>= 5; /* 32 bit read */
start = now();
record = tcpto_buf;
for (i = 0; i < r; ++i) {
if (record[4] >= 1) {
when = (unsigned long) (unsigned char) record[11];
when = (when << 8) + (unsigned long) (unsigned char) record[10];
when = (when << 8) + (unsigned long) (unsigned char) record[9];
when = (when << 8) + (unsigned long) (unsigned char) record[8];
if (record[0] == AF_INET) {
byte_copy(&ip4,4,record + 16);
buffer_put(buffer_1,tmp,ip4_fmt(tmp,ip4));
} else {
byte_copy(&ip6,16,record + 16);
buffer_put(buffer_1,tmp,ip6_fmt(tmp,ip6));
}
buffer_puts(buffer_1," timed out ");
buffer_put(buffer_1,tmp,fmt_ulong(tmp,(unsigned long) (start - when)));
buffer_puts(buffer_1," seconds ago; # recent timeouts: ");
buffer_put(buffer_1,tmp,fmt_ulong(tmp,(unsigned long) (unsigned char) record[4]));
buffer_puts(buffer_1,"\n");
}
record += 32;
}
die(0);
}
|