1 diff -urN linux-2.6.21.1.old/include/linux/netfilter_ipv4/ipt_ipp2p.h linux-2.6.21.1.dev/include/linux/netfilter_ipv4/ipt_ipp2p.h
2 --- linux-2.6.21.1.old/include/linux/netfilter_ipv4/ipt_ipp2p.h 1970-01-01 01:00:00.000000000 +0100
3 +++ linux-2.6.21.1.dev/include/linux/netfilter_ipv4/ipt_ipp2p.h 2007-05-26 20:21:54.586864296 +0200
7 +#define IPP2P_VERSION "0.8.1_rc1"
14 +#endif //__IPT_IPP2P_H
16 +#define SHORT_HAND_IPP2P 1 /* --ipp2p switch*/
17 +//#define SHORT_HAND_DATA 4 /* --ipp2p-data switch*/
18 +#define SHORT_HAND_NONE 5 /* no short hand*/
20 +#define IPP2P_EDK (1 << 1)
21 +#define IPP2P_DATA_KAZAA (1 << 2)
22 +#define IPP2P_DATA_EDK (1 << 3)
23 +#define IPP2P_DATA_DC (1 << 4)
24 +#define IPP2P_DC (1 << 5)
25 +#define IPP2P_DATA_GNU (1 << 6)
26 +#define IPP2P_GNU (1 << 7)
27 +#define IPP2P_KAZAA (1 << 8)
28 +#define IPP2P_BIT (1 << 9)
29 +#define IPP2P_APPLE (1 << 10)
30 +#define IPP2P_SOUL (1 << 11)
31 +#define IPP2P_WINMX (1 << 12)
32 +#define IPP2P_ARES (1 << 13)
33 +#define IPP2P_MUTE (1 << 14)
34 +#define IPP2P_WASTE (1 << 15)
35 +#define IPP2P_XDCC (1 << 16)
36 diff -urN linux-2.6.21.1.old/net/ipv4/netfilter/ipt_ipp2p.c linux-2.6.21.1.dev/net/ipv4/netfilter/ipt_ipp2p.c
37 --- linux-2.6.21.1.old/net/ipv4/netfilter/ipt_ipp2p.c 1970-01-01 01:00:00.000000000 +0100
38 +++ linux-2.6.21.1.dev/net/ipv4/netfilter/ipt_ipp2p.c 2007-05-26 20:21:54.587864144 +0200
40 +#if defined(MODVERSIONS)
41 +#include <linux/modversions.h>
43 +#include <linux/module.h>
44 +#include <linux/netfilter_ipv4/ip_tables.h>
45 +#include <linux/version.h>
46 +#include <linux/netfilter_ipv4/ipt_ipp2p.h>
50 +#define get_u8(X,O) (*(__u8 *)(X + O))
51 +#define get_u16(X,O) (*(__u16 *)(X + O))
52 +#define get_u32(X,O) (*(__u32 *)(X + O))
54 +MODULE_AUTHOR("Eicke Friedrich/Klaus Degner <ipp2p@ipp2p.org>");
55 +MODULE_DESCRIPTION("An extension to iptables to identify P2P traffic.");
56 +MODULE_LICENSE("GPL");
59 +/*Search for UDP eDonkey/eMule/Kad commands*/
61 +udp_search_edk (unsigned char *haystack, int packet_len)
63 + unsigned char *t = haystack;
71 + /* client -> server status request */
73 + if (packet_len == 14) return ((IPP2P_EDK * 100) + 50);
75 + /* server -> client status request */
76 + case 0x97: if (packet_len == 42) return ((IPP2P_EDK * 100) + 51);
78 + /* server description request */
79 + /* e3 2a ff f0 .. | size == 6 */
80 + case 0xa2: if ( (packet_len == 14) && ( get_u16(t,2) == __constant_htons(0xfff0) ) ) return ((IPP2P_EDK * 100) + 52);
82 + /* server description response */
83 + /* e3 a3 ff f0 .. | size > 40 && size < 200 */
84 + //case 0xa3: return ((IPP2P_EDK * 100) + 53);
86 + case 0x9a: if (packet_len==26) return ((IPP2P_EDK * 100) + 54);
89 + case 0x92: if (packet_len==18) return ((IPP2P_EDK * 100) + 55);
98 + /* e4 20 .. | size == 43 */
99 + case 0x20: if ((packet_len == 43) && (t[2] != 0x00) && (t[34] != 0x00)) return ((IPP2P_EDK * 100) + 60);
101 + /* e4 00 .. 00 | size == 35 ? */
102 + case 0x00: if ((packet_len == 35) && (t[26] == 0x00)) return ((IPP2P_EDK * 100) + 61);
104 + /* e4 10 .. 00 | size == 35 ? */
105 + case 0x10: if ((packet_len == 35) && (t[26] == 0x00)) return ((IPP2P_EDK * 100) + 62);
107 + /* e4 18 .. 00 | size == 35 ? */
108 + case 0x18: if ((packet_len == 35) && (t[26] == 0x00)) return ((IPP2P_EDK * 100) + 63);
110 + /* e4 52 .. | size = 44 */
111 + case 0x52: if (packet_len == 44 ) return ((IPP2P_EDK * 100) + 64);
113 + /* e4 58 .. | size == 6 */
114 + case 0x58: if (packet_len == 14 ) return ((IPP2P_EDK * 100) + 65);
116 + /* e4 59 .. | size == 2 */
117 + case 0x59: if (packet_len == 10 )return ((IPP2P_EDK * 100) + 66);
119 + /* e4 28 .. | packet_len == 52,77,102,127... */
120 + case 0x28: if (((packet_len-52) % 25) == 0) return ((IPP2P_EDK * 100) + 67);
122 + /* e4 50 xx xx | size == 4 */
123 + case 0x50: if (packet_len == 12) return ((IPP2P_EDK * 100) + 68);
125 + /* e4 40 xx xx | size == 48 */
126 + case 0x40: if (packet_len == 56) return ((IPP2P_EDK * 100) + 69);
131 + } /* end of switch (t[0]) */
136 +/*Search for UDP Gnutella commands*/
138 +udp_search_gnu (unsigned char *haystack, int packet_len)
140 + unsigned char *t = haystack;
143 + if (memcmp(t, "GND", 3) == 0) return ((IPP2P_GNU * 100) + 51);
144 + if (memcmp(t, "GNUTELLA ", 9) == 0) return ((IPP2P_GNU * 100) + 52);
149 +/*Search for UDP KaZaA commands*/
151 +udp_search_kazaa (unsigned char *haystack, int packet_len)
153 + unsigned char *t = haystack;
155 + if (t[packet_len-1] == 0x00){
156 + t += (packet_len - 6);
157 + if (memcmp(t, "KaZaA", 5) == 0) return (IPP2P_KAZAA * 100 +50);
161 +}/*udp_search_kazaa*/
163 +/*Search for UDP DirectConnect commands*/
165 +udp_search_directconnect (unsigned char *haystack, int packet_len)
167 + unsigned char *t = haystack;
168 + if ((*(t + 8) == 0x24) && (*(t + packet_len - 1) == 0x7c)) {
170 + if (memcmp(t, "SR ", 3) == 0) return ((IPP2P_DC * 100) + 60);
171 + if (memcmp(t, "Ping ", 5) == 0) return ((IPP2P_DC * 100) + 61);
174 +}/*udp_search_directconnect*/
178 +/*Search for UDP BitTorrent commands*/
180 +udp_search_bit (unsigned char *haystack, int packet_len)
185 + /* ^ 00 00 04 17 27 10 19 80 */
186 + if ((ntohl(get_u32(haystack, 8)) == 0x00000417) && (ntohl(get_u32(haystack, 12)) == 0x27101980))
187 + return (IPP2P_BIT * 100 + 50);
190 + if (get_u32(haystack, 16) == __constant_htonl(0x00000400) && get_u32(haystack, 36) == __constant_htonl(0x00000104))
191 + return (IPP2P_BIT * 100 + 51);
192 + if (get_u32(haystack, 16) == __constant_htonl(0x00000400))
193 + return (IPP2P_BIT * 100 + 61);
196 + if (get_u32(haystack, 16) == __constant_htonl(0x00000404) && get_u32(haystack, 36) == __constant_htonl(0x00000104))
197 + return (IPP2P_BIT * 100 + 52);
198 + if (get_u32(haystack, 16) == __constant_htonl(0x00000404))
199 + return (IPP2P_BIT * 100 + 62);
202 + if (get_u32(haystack, 16) == __constant_htonl(0x00000406) && get_u32(haystack, 36) == __constant_htonl(0x00000104))
203 + return (IPP2P_BIT * 100 + 53);
204 + if (get_u32(haystack, 16) == __constant_htonl(0x00000406))
205 + return (IPP2P_BIT * 100 + 63);
208 + if (get_u32(haystack, 8) == __constant_htonl(0x00000405))
209 + return (IPP2P_BIT * 100 + 54);
212 + if ((get_u32(haystack, 8) == __constant_htonl(0x00000401)))
213 + return (IPP2P_BIT * 100 + 55);
216 + if (get_u32(haystack,8) == __constant_htonl(0x00000827) &&
217 + get_u32(haystack,12) == __constant_htonl(0x37502950))
218 + return (IPP2P_BIT * 100 + 80);
221 + /* this packet does not have a constant size */
222 + if (packet_len >= 40 && get_u32(haystack, 16) == __constant_htonl(0x00000402) && get_u32(haystack, 36) == __constant_htonl(0x00000104))
223 + return (IPP2P_BIT * 100 + 56);
227 + /* some extra-bitcomet rules:
228 + * "d1:" [a|r] "d2:id20:"
230 + if (packet_len > 30 && get_u8(haystack, 8) == 'd' && get_u8(haystack, 9) == '1' && get_u8(haystack, 10) == ':' )
232 + if (get_u8(haystack, 11) == 'a' || get_u8(haystack, 11) == 'r')
234 + if (memcmp(haystack+12,"d2:id20:",8)==0)
235 + return (IPP2P_BIT * 100 + 57);
240 + /* bitlord rules */
241 + /* packetlen must be bigger than 40 */
242 + /* first 4 bytes are zero */
243 + if (packet_len > 40 && get_u32(haystack, 8) == 0x00000000)
245 + /* first rule: 00 00 00 00 01 00 00 xx xx xx xx 00 00 00 00*/
246 + if (get_u32(haystack, 12) == 0x00000000 &&
247 + get_u32(haystack, 16) == 0x00010000 &&
248 + get_u32(haystack, 24) == 0x00000000 )
249 + return (IPP2P_BIT * 100 + 71);
251 + /* 00 01 00 00 0d 00 00 xx xx xx xx 00 00 00 00*/
252 + if (get_u32(haystack, 12) == 0x00000001 &&
253 + get_u32(haystack, 16) == 0x000d0000 &&
254 + get_u32(haystack, 24) == 0x00000000 )
255 + return (IPP2P_BIT * 100 + 71);
266 +/*Search for Ares commands*/
267 +//#define IPP2P_DEBUG_ARES
269 +search_ares (const unsigned char *payload, const u16 plen)
270 +//int search_ares (unsigned char *haystack, int packet_len, int head_len)
272 +// const unsigned char *t = haystack + head_len;
274 + /* all ares packets start with */
275 + if (payload[1] == 0 && (plen - payload[0]) == 3)
277 + switch (payload[2])
281 + if ( plen == 6 && payload[5] == 0x05 ) return ((IPP2P_ARES * 100) + 1);
284 + /* ares search, min 3 chars --> 14 bytes
285 + * lets define a search can be up to 30 chars --> max 34 bytes
287 + if ( plen >= 14 && plen <= 34 ) return ((IPP2P_ARES * 100) + 1);
289 +#ifdef IPP2P_DEBUG_ARES
291 + printk(KERN_DEBUG "Unknown Ares command %x recognized, len: %u \n", (unsigned int) payload[2],plen);
292 +#endif /* IPP2P_DEBUG_ARES */
297 + /* found connect packet: 03 00 5a 04 03 05 */
298 + /* new version ares 1.8: 03 00 5a xx xx 05 */
299 + if ((plen) == 6){ /* possible connect command*/
300 + if ((payload[0] == 0x03) && (payload[1] == 0x00) && (payload[2] == 0x5a) && (payload[5] == 0x05))
301 + return ((IPP2P_ARES * 100) + 1);
303 + if ((plen) == 60){ /* possible download command*/
304 + if ((payload[59] == 0x0a) && (payload[58] == 0x0a)){
305 + if (memcmp(t, "PUSH SHA1:", 10) == 0) /* found download command */
306 + return ((IPP2P_ARES * 100) + 2);
314 +/*Search for SoulSeek commands*/
316 +search_soul (const unsigned char *payload, const u16 plen)
318 +//#define IPP2P_DEBUG_SOUL
319 + /* match: xx xx xx xx | xx = sizeof(payload) - 4 */
320 + if (get_u32(payload, 0) == (plen - 4)){
321 + const __u32 m=get_u32(payload, 4);
322 + /* match 00 yy yy 00, yy can be everything */
323 + if ( get_u8(payload, 4) == 0x00 && get_u8(payload, 7) == 0x00 )
325 +#ifdef IPP2P_DEBUG_SOUL
326 + printk(KERN_DEBUG "0: Soulseek command 0x%x recognized\n",get_u32(payload, 4));
327 +#endif /* IPP2P_DEBUG_SOUL */
328 + return ((IPP2P_SOUL * 100) + 1);
331 + /* next match: 01 yy 00 00 | yy can be everything */
332 + if ( get_u8(payload, 4) == 0x01 && get_u16(payload, 6) == 0x0000 )
334 +#ifdef IPP2P_DEBUG_SOUL
335 + printk(KERN_DEBUG "1: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
336 +#endif /* IPP2P_DEBUG_SOUL */
337 + return ((IPP2P_SOUL * 100) + 2);
340 + /* other soulseek commandos are: 1-5,7,9,13-18,22,23,26,28,35-37,40-46,50,51,60,62-69,91,92,1001 */
341 + /* try to do this in an intelligent way */
342 + /* get all small commandos */
357 +#ifdef IPP2P_DEBUG_SOUL
358 + printk(KERN_DEBUG "2: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
359 +#endif /* IPP2P_DEBUG_SOUL */
360 + return ((IPP2P_SOUL * 100) + 3);
363 + if (m > 0 && m < 6 )
365 +#ifdef IPP2P_DEBUG_SOUL
366 + printk(KERN_DEBUG "3: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
367 +#endif /* IPP2P_DEBUG_SOUL */
368 + return ((IPP2P_SOUL * 100) + 4);
370 + if (m > 12 && m < 19 )
372 +#ifdef IPP2P_DEBUG_SOUL
373 + printk(KERN_DEBUG "4: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
374 +#endif /* IPP2P_DEBUG_SOUL */
375 + return ((IPP2P_SOUL * 100) + 5);
378 + if (m > 34 && m < 38 )
380 +#ifdef IPP2P_DEBUG_SOUL
381 + printk(KERN_DEBUG "5: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
382 +#endif /* IPP2P_DEBUG_SOUL */
383 + return ((IPP2P_SOUL * 100) + 6);
386 + if (m > 39 && m < 47 )
388 +#ifdef IPP2P_DEBUG_SOUL
389 + printk(KERN_DEBUG "6: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
390 +#endif /* IPP2P_DEBUG_SOUL */
391 + return ((IPP2P_SOUL * 100) + 7);
394 + if (m > 61 && m < 70 )
396 +#ifdef IPP2P_DEBUG_SOUL
397 + printk(KERN_DEBUG "7: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
398 +#endif /* IPP2P_DEBUG_SOUL */
399 + return ((IPP2P_SOUL * 100) + 8);
402 +#ifdef IPP2P_DEBUG_SOUL
403 + printk(KERN_DEBUG "unknown SOULSEEK command: 0x%x, first 16 bit: 0x%x, first 8 bit: 0x%x ,soulseek ???\n",get_u32(payload, 4),get_u16(payload, 4) >> 16,get_u8(payload, 4) >> 24);
404 +#endif /* IPP2P_DEBUG_SOUL */
407 + /* match 14 00 00 00 01 yy 00 00 00 STRING(YY) 01 00 00 00 00 46|50 00 00 00 00 */
408 + /* without size at the beginning !!! */
409 + if ( get_u32(payload, 0) == 0x14 && get_u8(payload, 4) == 0x01 )
411 + __u32 y=get_u32(payload, 5);
412 + /* we need 19 chars + string */
413 + if ( (y + 19) <= (plen) )
415 + const unsigned char *w=payload+9+y;
416 + if (get_u32(w, 0) == 0x01 && ( get_u16(w, 4) == 0x4600 || get_u16(w, 4) == 0x5000) && get_u32(w, 6) == 0x00);
417 +#ifdef IPP2P_DEBUG_SOUL
418 + printk(KERN_DEBUG "Soulssek special client command recognized\n");
419 +#endif /* IPP2P_DEBUG_SOUL */
420 + return ((IPP2P_SOUL * 100) + 9);
427 +/*Search for WinMX commands*/
429 +search_winmx (const unsigned char *payload, const u16 plen)
431 +//#define IPP2P_DEBUG_WINMX
432 + if (((plen) == 4) && (memcmp(payload, "SEND", 4) == 0)) return ((IPP2P_WINMX * 100) + 1);
433 + if (((plen) == 3) && (memcmp(payload, "GET", 3) == 0)) return ((IPP2P_WINMX * 100) + 2);
434 + //if (packet_len < (head_len + 10)) return 0;
435 + if (plen < 10) return 0;
437 + if ((memcmp(payload, "SEND", 4) == 0) || (memcmp(payload, "GET", 3) == 0)){
439 + const u16 end=plen-2;
443 + if (payload[c]== 0x20 && payload[c+1] == 0x22)
447 + if (count>=2) return ((IPP2P_WINMX * 100) + 3);
453 + if ( plen == 149 && payload[0] == '8' )
455 +#ifdef IPP2P_DEBUG_WINMX
456 + printk(KERN_INFO "maybe WinMX\n");
458 + if (get_u32(payload,17) == 0 && get_u32(payload,21) == 0 && get_u32(payload,25) == 0 &&
459 +// get_u32(payload,33) == __constant_htonl(0x71182b1a) && get_u32(payload,37) == __constant_htonl(0x05050000) &&
460 +// get_u32(payload,133) == __constant_htonl(0x31097edf) && get_u32(payload,145) == __constant_htonl(0xdcb8f792))
461 + get_u16(payload,39) == 0 && get_u16(payload,135) == __constant_htons(0x7edf) && get_u16(payload,147) == __constant_htons(0xf792))
464 +#ifdef IPP2P_DEBUG_WINMX
465 + printk(KERN_INFO "got WinMX\n");
467 + return ((IPP2P_WINMX * 100) + 4);
474 +/*Search for appleJuice commands*/
476 +search_apple (const unsigned char *payload, const u16 plen)
478 + if ( (plen > 7) && (payload[6] == 0x0d) && (payload[7] == 0x0a) && (memcmp(payload, "ajprot", 6) == 0)) return (IPP2P_APPLE * 100);
484 +/*Search for BitTorrent commands*/
486 +search_bittorrent (const unsigned char *payload, const u16 plen)
490 + /* test for match 0x13+"BitTorrent protocol" */
491 + if (payload[0] == 0x13)
493 + if (memcmp(payload+1, "BitTorrent protocol", 19) == 0) return (IPP2P_BIT * 100);
496 + /* get tracker commandos, all starts with GET /
497 + * then it can follow: scrape| announce
498 + * and then ?hash_info=
500 + if (memcmp(payload,"GET /",5) == 0)
502 + /* message scrape */
503 + if ( memcmp(payload+5,"scrape?info_hash=",17)==0 ) return (IPP2P_BIT * 100 + 1);
504 + /* message announce */
505 + if ( memcmp(payload+5,"announce?info_hash=",19)==0 ) return (IPP2P_BIT * 100 + 2);
510 + /* bitcomet encryptes the first packet, so we have to detect another
511 + * one later in the flow */
512 + /* first try failed, too many missdetections */
513 + //if ( size == 5 && get_u32(t,0) == __constant_htonl(1) && t[4] < 3) return (IPP2P_BIT * 100 + 3);
515 + /* second try: block request packets */
516 + if ( plen == 17 && get_u32(payload,0) == __constant_htonl(0x0d) && payload[4] == 0x06 && get_u32(payload,13) == __constant_htonl(0x4000) ) return (IPP2P_BIT * 100 + 3);
524 +/*check for Kazaa get command*/
526 +search_kazaa (const unsigned char *payload, const u16 plen)
529 + if ((payload[plen-2] == 0x0d) && (payload[plen-1] == 0x0a) && memcmp(payload, "GET /.hash=", 11) == 0)
530 + return (IPP2P_DATA_KAZAA * 100);
536 +/*check for gnutella get command*/
538 +search_gnu (const unsigned char *payload, const u16 plen)
540 + if ((payload[plen-2] == 0x0d) && (payload[plen-1] == 0x0a))
542 + if (memcmp(payload, "GET /get/", 9) == 0) return ((IPP2P_DATA_GNU * 100) + 1);
543 + if (memcmp(payload, "GET /uri-res/", 13) == 0) return ((IPP2P_DATA_GNU * 100) + 2);
549 +/*check for gnutella get commands and other typical data*/
551 +search_all_gnu (const unsigned char *payload, const u16 plen)
554 + if ((payload[plen-2] == 0x0d) && (payload[plen-1] == 0x0a))
557 + if (memcmp(payload, "GNUTELLA CONNECT/", 17) == 0) return ((IPP2P_GNU * 100) + 1);
558 + if (memcmp(payload, "GNUTELLA/", 9) == 0) return ((IPP2P_GNU * 100) + 2);
561 + if ((memcmp(payload, "GET /get/", 9) == 0) || (memcmp(payload, "GET /uri-res/", 13) == 0))
564 + const u16 end=plen-22;
566 + if ( payload[c] == 0x0a && payload[c+1] == 0x0d && ((memcmp(&payload[c+2], "X-Gnutella-", 11) == 0) || (memcmp(&payload[c+2], "X-Queue:", 8) == 0)))
567 + return ((IPP2P_GNU * 100) + 3);
576 +/*check for KaZaA download commands and other typical data*/
578 +search_all_kazaa (const unsigned char *payload, const u16 plen)
580 + if ((payload[plen-2] == 0x0d) && (payload[plen-1] == 0x0a))
583 + if (memcmp(payload, "GIVE ", 5) == 0) return ((IPP2P_KAZAA * 100) + 1);
585 + if (memcmp(payload, "GET /", 5) == 0) {
587 + const u16 end=plen-22;
589 + if ( payload[c] == 0x0a && payload[c+1] == 0x0d && ((memcmp(&payload[c+2], "X-Kazaa-Username: ", 18) == 0) || (memcmp(&payload[c+2], "User-Agent: PeerEnabler/", 24) == 0)))
590 + return ((IPP2P_KAZAA * 100) + 2);
598 +/*fast check for edonkey file segment transfer command*/
600 +search_edk (const unsigned char *payload, const u16 plen)
602 + if (payload[0] != 0xe3)
605 + if (payload[5] == 0x47)
606 + return (IPP2P_DATA_EDK * 100);
614 +/*intensive but slower search for some edonkey packets including size-check*/
616 +search_all_edk (const unsigned char *payload, const u16 plen)
618 + if (payload[0] != 0xe3)
622 + const u16 cmd = get_u16(payload, 1);
623 + if (cmd == (plen - 5)) {
624 + switch (payload[5]) {
625 + case 0x01: return ((IPP2P_EDK * 100) + 1); /*Client: hello or Server:hello*/
626 + case 0x4c: return ((IPP2P_EDK * 100) + 9); /*Client: Hello-Answer*/
634 +/*fast check for Direct Connect send command*/
636 +search_dc (const unsigned char *payload, const u16 plen)
639 + if (payload[0] != 0x24 )
642 + if (memcmp(&payload[1], "Send|", 5) == 0)
643 + return (IPP2P_DATA_DC * 100);
651 +/*intensive but slower check for all direct connect packets*/
653 +search_all_dc (const unsigned char *payload, const u16 plen)
655 +// unsigned char *t = haystack;
657 + if (payload[0] == 0x24 && payload[plen-1] == 0x7c)
659 + const unsigned char *t=&payload[1];
660 + /* Client-Hub-Protocol */
661 + if (memcmp(t, "Lock ", 5) == 0) return ((IPP2P_DC * 100) + 1);
662 + /* Client-Client-Protocol, some are already recognized by client-hub (like lock) */
663 + if (memcmp(t, "MyNick ", 7) == 0) return ((IPP2P_DC * 100) + 38);
670 +search_mute (const unsigned char *payload, const u16 plen)
672 + if ( plen == 209 || plen == 345 || plen == 473 || plen == 609 || plen == 1121 )
674 + //printk(KERN_DEBUG "size hit: %u",size);
675 + if (memcmp(payload,"PublicKey: ",11) == 0 )
677 + return ((IPP2P_MUTE * 100) + 0);
679 +/* if (memcmp(t+size-14,"\x0aEndPublicKey\x0a",14) == 0)
681 + printk(KERN_DEBUG "end pubic key hit: %u",size);
690 +/* check for xdcc */
692 +search_xdcc (const unsigned char *payload, const u16 plen)
694 + /* search in small packets only */
695 + if (plen > 20 && plen < 200 && payload[plen-1] == 0x0a && payload[plen-2] == 0x0d && memcmp(payload,"PRIVMSG ",8) == 0)
699 + const u16 end=plen - 13;
701 + /* is seems to be a irc private massage, chedck for xdcc command */
704 + if (payload[x] == ':')
706 + if ( memcmp(&payload[x+1],"xdcc send #",11) == 0 )
707 + return ((IPP2P_XDCC * 100) + 0);
715 +/* search for waste */
716 +int search_waste(const unsigned char *payload, const u16 plen)
718 + if ( plen >= 8 && memcmp(payload,"GET.sha1:",9) == 0)
719 + return ((IPP2P_WASTE * 100) + 0);
727 + __u8 short_hand; /*for fucntions included in short hands*/
729 + int (*function_name) (const unsigned char *, const u16);
731 + {IPP2P_EDK,SHORT_HAND_IPP2P,20, &search_all_edk},
732 +// {IPP2P_DATA_KAZAA,SHORT_HAND_DATA,200, &search_kazaa},
733 +// {IPP2P_DATA_EDK,SHORT_HAND_DATA,60, &search_edk},
734 +// {IPP2P_DATA_DC,SHORT_HAND_DATA,26, &search_dc},
735 + {IPP2P_DC,SHORT_HAND_IPP2P,5, search_all_dc},
736 +// {IPP2P_DATA_GNU,SHORT_HAND_DATA,40, &search_gnu},
737 + {IPP2P_GNU,SHORT_HAND_IPP2P,5, &search_all_gnu},
738 + {IPP2P_KAZAA,SHORT_HAND_IPP2P,5, &search_all_kazaa},
739 + {IPP2P_BIT,SHORT_HAND_IPP2P,20, &search_bittorrent},
740 + {IPP2P_APPLE,SHORT_HAND_IPP2P,5, &search_apple},
741 + {IPP2P_SOUL,SHORT_HAND_IPP2P,5, &search_soul},
742 + {IPP2P_WINMX,SHORT_HAND_IPP2P,2, &search_winmx},
743 + {IPP2P_ARES,SHORT_HAND_IPP2P,5, &search_ares},
744 + {IPP2P_MUTE,SHORT_HAND_NONE,200, &search_mute},
745 + {IPP2P_WASTE,SHORT_HAND_NONE,5, &search_waste},
746 + {IPP2P_XDCC,SHORT_HAND_NONE,5, &search_xdcc},
753 + __u8 short_hand; /*for fucntions included in short hands*/
755 + int (*function_name) (unsigned char *, int);
757 + {IPP2P_KAZAA,SHORT_HAND_IPP2P,14, &udp_search_kazaa},
758 + {IPP2P_BIT,SHORT_HAND_IPP2P,23, &udp_search_bit},
759 + {IPP2P_GNU,SHORT_HAND_IPP2P,11, &udp_search_gnu},
760 + {IPP2P_EDK,SHORT_HAND_IPP2P,9, &udp_search_edk},
761 + {IPP2P_DC,SHORT_HAND_IPP2P,12, &udp_search_directconnect},
767 +match(const struct sk_buff *skb,
768 + const struct net_device *in,
769 + const struct net_device *out,
770 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18)
771 + const struct xt_match *match,
773 + const void *matchinfo,
775 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18)
776 + unsigned int protoff,
777 +#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
783 + const struct ipt_p2p_info *info = matchinfo;
784 + unsigned char *haystack;
785 + struct iphdr *ip = skb->nh.iph;
786 + int p2p_result = 0, i = 0;
788 + int hlen = ntohs(ip->tot_len)-(ip->ihl*4); /*hlen = packet-data length*/
790 + /*must not be a fragment*/
792 + if (info->debug) printk("IPP2P.match: offset found %i \n",offset);
796 + /*make sure that skb is linear*/
797 + if(skb_is_nonlinear(skb)){
798 + if (info->debug) printk("IPP2P.match: nonlinear skb found\n");
803 + haystack=(char *)ip+(ip->ihl*4); /*haystack = packet data*/
805 + switch (ip->protocol){
806 + case IPPROTO_TCP: /*what to do with a TCP packet*/
808 + struct tcphdr *tcph = (void *) ip + ip->ihl * 4;
810 + if (tcph->fin) return 0; /*if FIN bit is set bail out*/
811 + if (tcph->syn) return 0; /*if SYN bit is set bail out*/
812 + if (tcph->rst) return 0; /*if RST bit is set bail out*/
814 + haystack += tcph->doff * 4; /*get TCP-Header-Size*/
815 + hlen -= tcph->doff * 4;
816 + while (matchlist[i].command) {
817 + if ((((info->cmd & matchlist[i].command) == matchlist[i].command) ||
818 + ((info->cmd & matchlist[i].short_hand) == matchlist[i].short_hand)) &&
819 + (hlen > matchlist[i].packet_len)) {
820 + p2p_result = matchlist[i].function_name(haystack, hlen);
823 + if (info->debug) printk("IPP2P.debug:TCP-match: %i from: %u.%u.%u.%u:%i to: %u.%u.%u.%u:%i Length: %i\n",
824 + p2p_result, NIPQUAD(ip->saddr),ntohs(tcph->source), NIPQUAD(ip->daddr),ntohs(tcph->dest),hlen);
833 + case IPPROTO_UDP: /*what to do with an UDP packet*/
835 + struct udphdr *udph = (void *) ip + ip->ihl * 4;
837 + while (udp_list[i].command){
838 + if ((((info->cmd & udp_list[i].command) == udp_list[i].command) ||
839 + ((info->cmd & udp_list[i].short_hand) == udp_list[i].short_hand)) &&
840 + (hlen > udp_list[i].packet_len)) {
841 + p2p_result = udp_list[i].function_name(haystack, hlen);
843 + if (info->debug) printk("IPP2P.debug:UDP-match: %i from: %u.%u.%u.%u:%i to: %u.%u.%u.%u:%i Length: %i\n",
844 + p2p_result, NIPQUAD(ip->saddr),ntohs(udph->source), NIPQUAD(ip->daddr),ntohs(udph->dest),hlen);
860 +checkentry(const char *tablename,
861 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18)
863 + const struct xt_match *match,
865 + const struct ipt_ip *ip,
868 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
869 + unsigned int matchsize,
871 + unsigned int hook_mask)
873 + /* Must specify -p tcp */
874 +/* if (ip->proto != IPPROTO_TCP || (ip->invflags & IPT_INV_PROTO)) {
875 + * printk("ipp2p: Only works on TCP packets, use -p tcp\n");
884 +static struct ipt_match ipp2p_match = {
885 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
893 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
897 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18)
898 + .matchsize = sizeof(struct ipt_p2p_info),
900 + .checkentry = &checkentry,
906 +static int __init init(void)
908 + printk(KERN_INFO "IPP2P v%s loading\n", IPP2P_VERSION);
909 + return xt_register_match(&ipp2p_match);
912 +static void __exit fini(void)
914 + xt_unregister_match(&ipp2p_match);
915 + printk(KERN_INFO "IPP2P v%s unloaded\n", IPP2P_VERSION);
922 diff -urN linux-2.6.21.1.old/net/ipv4/netfilter/Kconfig linux-2.6.21.1.dev/net/ipv4/netfilter/Kconfig
923 --- linux-2.6.21.1.old/net/ipv4/netfilter/Kconfig 2007-05-26 20:17:47.626407992 +0200
924 +++ linux-2.6.21.1.dev/net/ipv4/netfilter/Kconfig 2007-05-26 20:21:54.587864144 +0200
927 Say Y to get lots of debugging output.
929 +config IP_NF_MATCH_IPP2P
931 + depends on IP_NF_IPTABLES
933 + Module for matching traffic of various Peer-to-Peer applications
935 config IP_NF_MATCH_TOS
936 tristate "TOS match support"
937 depends on IP_NF_IPTABLES
938 diff -urN linux-2.6.21.1.old/net/ipv4/netfilter/Makefile linux-2.6.21.1.dev/net/ipv4/netfilter/Makefile
939 --- linux-2.6.21.1.old/net/ipv4/netfilter/Makefile 2007-05-26 20:17:47.638406168 +0200
940 +++ linux-2.6.21.1.dev/net/ipv4/netfilter/Makefile 2007-05-26 20:21:54.588863992 +0200
942 obj-$(CONFIG_IP_NF_MATCH_AH) += ipt_ah.o
943 obj-$(CONFIG_IP_NF_MATCH_TTL) += ipt_ttl.o
944 obj-$(CONFIG_IP_NF_MATCH_ADDRTYPE) += ipt_addrtype.o
946 +obj-$(CONFIG_IP_NF_MATCH_IPP2P) += ipt_ipp2p.o
947 obj-$(CONFIG_IP_NF_MATCH_LAYER7) += ipt_layer7.o