]> jfr.im git - irc/quakenet/newserv.git/blob - proxyscan/proxyscan.h
PROXYSCAN: Add DIRECT_IRC scan type.
[irc/quakenet/newserv.git] / proxyscan / proxyscan.h
1
2 #ifndef __PROXYSCAN_H
3 #define __PROXYSCAN_H
4
5 #include "../nick/nick.h"
6 #include "../lib/splitline.h"
7 #include <time.h>
8 #include <stdint.h>
9
10 #define MAGICSTRING "NOTICE AUTH :*** Looking up your hostname\r\n"
11 #define MAGICSTRINGLENGTH 42
12
13 #define MAGICIRCSTRING ".quakenet.org 451 * :Register first.\r\n"
14 #define MAGICIRCSTRINGLENGTH 38
15
16 #define PSCAN_MAXSCANS 50
17 #define PSCAN_READBUFSIZE (MAGICSTRINGLENGTH * 2)
18
19 #define SSTATE_CONNECTING 0
20 #define SSTATE_SENTREQUEST 1
21 #define SSTATE_GOTRESPONSE 2
22
23 #define STYPE_SOCKS4 0
24 #define STYPE_SOCKS5 1
25 #define STYPE_HTTP 2
26 #define STYPE_WINGATE 3
27 #define STYPE_CISCO 4
28 #define STYPE_DIRECT 5 /* not sure what this is so I'm leaving it alone */
29 #define STYPE_DIRECT_IRC 6
30
31 #define SOUTCOME_INPROGRESS 0
32 #define SOUTCOME_OPEN 1
33 #define SOUTCOME_CLOSED 2
34
35 #define SCLASS_NORMAL 0
36 #define SCLASS_CHECK 1
37 #define SCLASS_PASS2 2
38 #define SCLASS_PASS3 3
39 #define SCLASS_PASS4 4
40
41 typedef struct scantype {
42 int type;
43 int port;
44 int hits;
45 } scantype;
46
47 typedef struct extrascan {
48 unsigned short port;
49 unsigned char type;
50 struct extrascan *next;
51 struct extrascan *nextbynode;
52 } extrascan;
53
54 typedef struct pendingscan {
55 patricia_node_t *node;
56 unsigned short port;
57 unsigned char type;
58 unsigned char class;
59 time_t when;
60 struct pendingscan *next;
61 } pendingscan;
62
63 typedef struct foundproxy {
64 short type;
65 unsigned short port;
66 struct foundproxy *next;
67 } foundproxy;
68
69 typedef struct cachehost {
70 time_t lastscan;
71 foundproxy *proxies;
72 int glineid;
73 unsigned char marker;
74 #if defined(PROXYSCAN_MAIL)
75 sstring *lasthostmask; /* Not saved to disk */
76 time_t lastconnect; /* Not saved to disk */
77 #endif
78 struct cachehost *next;
79 } cachehost;
80
81 typedef struct scan {
82 int fd;
83 patricia_node_t *node;
84 short type;
85 unsigned short port;
86 unsigned short state;
87 unsigned short outcome;
88 unsigned short class;
89 struct scan *next;
90 void *sch;
91 char readbuf[PSCAN_READBUFSIZE];
92 int bytesread;
93 int totalbytesread;
94 } scan;
95
96 #if defined(PROXYSCAN_MAIL)
97 extern unsigned int ps_mailip;
98 extern unsigned int ps_mailport;
99 extern sstring *ps_mailname;
100 extern int psm_mailerfd;
101 #endif
102
103 extern int activescans;
104 extern int maxscans;
105 extern int numscans;
106 extern scantype thescans[];
107 extern int brokendb;
108 extern int ps_cache_ext;
109 extern int ps_scan_ext;
110 extern int ps_extscan_ext;
111 extern int ps_ready;
112 extern int rescaninterval;
113
114 extern unsigned int normalqueuedscans;
115 extern unsigned int prioqueuedscans;
116
117 extern unsigned int ps_start_ts;
118
119 extern unsigned long countpendingscan;
120
121 extern unsigned long scanspermin;
122
123 /* proxyscancache.c */
124 cachehost *addcleanhost(time_t timestamp);
125 cachehost *findcachehost(patricia_node_t *node);
126 void delcachehost(cachehost *);
127 void dumpcachehosts();
128 void loadcachehosts();
129 unsigned int cleancount();
130 unsigned int dirtycount();
131 void cachehostinit(time_t ri);
132 void scanall(int type, int port);
133
134 /* proxyscanalloc.c */
135 scan *getscan();
136 void freescan(scan *sp);
137 cachehost *getcachehost();
138 void freecachehost(cachehost *chp);
139 foundproxy *getfoundproxy();
140 void freefoundproxy(foundproxy *fpp);
141 pendingscan *getpendingscan();
142 void freependingscan(pendingscan *psp);
143 void sfreeall();
144 extrascan *getextrascan();
145 void freeextrascan(extrascan *esp);
146
147 /* proxyscanlisten.c */
148 int openlistensocket(int portnum);
149 void handlelistensocket(int fd, short events);
150
151 /* proxyscanconnect.c */
152 int createconnectsocket(long ip, int socknum);
153
154 /* proxyscandb.c */
155 void loggline(cachehost *chp, patricia_node_t *node);
156 void proxyscandbclose();
157 int proxyscandbinit();
158 int proxyscandolistopen(void *sender, int cargc, char **cargv);
159 void proxyscanspewip(nick *mynick, nick *usernick, unsigned long a, unsigned long b, unsigned long c, unsigned long d);
160 void proxyscanshowkill(nick *mynick, nick *usernick, unsigned long a);
161 const char *scantostr(int type);
162
163 #if defined(PROXYSCAN_MAIL)
164 /* proxyscanmail.c */
165 void ps_makereportmail(scanhost *shp);
166 #endif
167
168 /* proxyscanqueue.c */
169 void queuescan(patricia_node_t *node, short scantype, unsigned short port, char class, time_t when);
170 void startqueuedscans();
171
172 /* proxyscan.c */
173 void startscan(patricia_node_t *node, int type, int port, int class);
174
175 /* proxyscanext.c */
176 unsigned int extrascancount();
177 void loadextrascans();
178 extrascan *findextrascan(patricia_node_t *node);
179 void delextrascan(extrascan *esp);
180 extrascan *addextrascan(unsigned short port, unsigned char type);
181
182 #endif