2 +++ b/include/linux/netfilter_ipv4/ipt_ipp2p.h
6 +#define IPP2P_VERSION "0.8.1_rc1"
13 +#endif //__IPT_IPP2P_H
15 +#define SHORT_HAND_IPP2P 1 /* --ipp2p switch*/
16 +//#define SHORT_HAND_DATA 4 /* --ipp2p-data switch*/
17 +#define SHORT_HAND_NONE 5 /* no short hand*/
19 +#define IPP2P_EDK (1 << 1)
20 +#define IPP2P_DATA_KAZAA (1 << 2)
21 +#define IPP2P_DATA_EDK (1 << 3)
22 +#define IPP2P_DATA_DC (1 << 4)
23 +#define IPP2P_DC (1 << 5)
24 +#define IPP2P_DATA_GNU (1 << 6)
25 +#define IPP2P_GNU (1 << 7)
26 +#define IPP2P_KAZAA (1 << 8)
27 +#define IPP2P_BIT (1 << 9)
28 +#define IPP2P_APPLE (1 << 10)
29 +#define IPP2P_SOUL (1 << 11)
30 +#define IPP2P_WINMX (1 << 12)
31 +#define IPP2P_ARES (1 << 13)
32 +#define IPP2P_MUTE (1 << 14)
33 +#define IPP2P_WASTE (1 << 15)
34 +#define IPP2P_XDCC (1 << 16)
36 +++ b/net/ipv4/netfilter/ipt_ipp2p.c
38 +#if defined(MODVERSIONS)
39 +#include <linux/modversions.h>
41 +#include <linux/module.h>
42 +#include <linux/netfilter_ipv4/ip_tables.h>
43 +#include <linux/version.h>
44 +#include <linux/netfilter_ipv4/ipt_ipp2p.h>
48 +#define get_u8(X,O) (*(__u8 *)(X + O))
49 +#define get_u16(X,O) (*(__u16 *)(X + O))
50 +#define get_u32(X,O) (*(__u32 *)(X + O))
52 +MODULE_AUTHOR("Eicke Friedrich/Klaus Degner <ipp2p@ipp2p.org>");
53 +MODULE_DESCRIPTION("An extension to iptables to identify P2P traffic.");
54 +MODULE_LICENSE("GPL");
57 +/*Search for UDP eDonkey/eMule/Kad commands*/
59 +udp_search_edk (unsigned char *haystack, int packet_len)
61 + unsigned char *t = haystack;
69 + /* client -> server status request */
71 + if (packet_len == 14) return ((IPP2P_EDK * 100) + 50);
73 + /* server -> client status request */
74 + case 0x97: if (packet_len == 42) return ((IPP2P_EDK * 100) + 51);
76 + /* server description request */
77 + /* e3 2a ff f0 .. | size == 6 */
78 + case 0xa2: if ( (packet_len == 14) && ( get_u16(t,2) == __constant_htons(0xfff0) ) ) return ((IPP2P_EDK * 100) + 52);
80 + /* server description response */
81 + /* e3 a3 ff f0 .. | size > 40 && size < 200 */
82 + //case 0xa3: return ((IPP2P_EDK * 100) + 53);
84 + case 0x9a: if (packet_len==26) return ((IPP2P_EDK * 100) + 54);
87 + case 0x92: if (packet_len==18) return ((IPP2P_EDK * 100) + 55);
96 + /* e4 20 .. | size == 43 */
97 + case 0x20: if ((packet_len == 43) && (t[2] != 0x00) && (t[34] != 0x00)) return ((IPP2P_EDK * 100) + 60);
99 + /* e4 00 .. 00 | size == 35 ? */
100 + case 0x00: if ((packet_len == 35) && (t[26] == 0x00)) return ((IPP2P_EDK * 100) + 61);
102 + /* e4 10 .. 00 | size == 35 ? */
103 + case 0x10: if ((packet_len == 35) && (t[26] == 0x00)) return ((IPP2P_EDK * 100) + 62);
105 + /* e4 18 .. 00 | size == 35 ? */
106 + case 0x18: if ((packet_len == 35) && (t[26] == 0x00)) return ((IPP2P_EDK * 100) + 63);
108 + /* e4 52 .. | size = 44 */
109 + case 0x52: if (packet_len == 44 ) return ((IPP2P_EDK * 100) + 64);
111 + /* e4 58 .. | size == 6 */
112 + case 0x58: if (packet_len == 14 ) return ((IPP2P_EDK * 100) + 65);
114 + /* e4 59 .. | size == 2 */
115 + case 0x59: if (packet_len == 10 )return ((IPP2P_EDK * 100) + 66);
117 + /* e4 28 .. | packet_len == 52,77,102,127... */
118 + case 0x28: if (((packet_len-52) % 25) == 0) return ((IPP2P_EDK * 100) + 67);
120 + /* e4 50 xx xx | size == 4 */
121 + case 0x50: if (packet_len == 12) return ((IPP2P_EDK * 100) + 68);
123 + /* e4 40 xx xx | size == 48 */
124 + case 0x40: if (packet_len == 56) return ((IPP2P_EDK * 100) + 69);
129 + } /* end of switch (t[0]) */
134 +/*Search for UDP Gnutella commands*/
136 +udp_search_gnu (unsigned char *haystack, int packet_len)
138 + unsigned char *t = haystack;
141 + if (memcmp(t, "GND", 3) == 0) return ((IPP2P_GNU * 100) + 51);
142 + if (memcmp(t, "GNUTELLA ", 9) == 0) return ((IPP2P_GNU * 100) + 52);
147 +/*Search for UDP KaZaA commands*/
149 +udp_search_kazaa (unsigned char *haystack, int packet_len)
151 + unsigned char *t = haystack;
153 + if (t[packet_len-1] == 0x00){
154 + t += (packet_len - 6);
155 + if (memcmp(t, "KaZaA", 5) == 0) return (IPP2P_KAZAA * 100 +50);
159 +}/*udp_search_kazaa*/
161 +/*Search for UDP DirectConnect commands*/
163 +udp_search_directconnect (unsigned char *haystack, int packet_len)
165 + unsigned char *t = haystack;
166 + if ((*(t + 8) == 0x24) && (*(t + packet_len - 1) == 0x7c)) {
168 + if (memcmp(t, "SR ", 3) == 0) return ((IPP2P_DC * 100) + 60);
169 + if (memcmp(t, "Ping ", 5) == 0) return ((IPP2P_DC * 100) + 61);
172 +}/*udp_search_directconnect*/
176 +/*Search for UDP BitTorrent commands*/
178 +udp_search_bit (unsigned char *haystack, int packet_len)
183 + /* ^ 00 00 04 17 27 10 19 80 */
184 + if ((ntohl(get_u32(haystack, 8)) == 0x00000417) && (ntohl(get_u32(haystack, 12)) == 0x27101980))
185 + return (IPP2P_BIT * 100 + 50);
188 + if (get_u32(haystack, 16) == __constant_htonl(0x00000400) && get_u32(haystack, 36) == __constant_htonl(0x00000104))
189 + return (IPP2P_BIT * 100 + 51);
190 + if (get_u32(haystack, 16) == __constant_htonl(0x00000400))
191 + return (IPP2P_BIT * 100 + 61);
194 + if (get_u32(haystack, 16) == __constant_htonl(0x00000404) && get_u32(haystack, 36) == __constant_htonl(0x00000104))
195 + return (IPP2P_BIT * 100 + 52);
196 + if (get_u32(haystack, 16) == __constant_htonl(0x00000404))
197 + return (IPP2P_BIT * 100 + 62);
200 + if (get_u32(haystack, 16) == __constant_htonl(0x00000406) && get_u32(haystack, 36) == __constant_htonl(0x00000104))
201 + return (IPP2P_BIT * 100 + 53);
202 + if (get_u32(haystack, 16) == __constant_htonl(0x00000406))
203 + return (IPP2P_BIT * 100 + 63);
206 + if (get_u32(haystack, 8) == __constant_htonl(0x00000405))
207 + return (IPP2P_BIT * 100 + 54);
210 + if ((get_u32(haystack, 8) == __constant_htonl(0x00000401)))
211 + return (IPP2P_BIT * 100 + 55);
214 + if (get_u32(haystack,8) == __constant_htonl(0x00000827) &&
215 + get_u32(haystack,12) == __constant_htonl(0x37502950))
216 + return (IPP2P_BIT * 100 + 80);
219 + /* this packet does not have a constant size */
220 + if (packet_len >= 40 && get_u32(haystack, 16) == __constant_htonl(0x00000402) && get_u32(haystack, 36) == __constant_htonl(0x00000104))
221 + return (IPP2P_BIT * 100 + 56);
225 + /* some extra-bitcomet rules:
226 + * "d1:" [a|r] "d2:id20:"
228 + if (packet_len > 30 && get_u8(haystack, 8) == 'd' && get_u8(haystack, 9) == '1' && get_u8(haystack, 10) == ':' )
230 + if (get_u8(haystack, 11) == 'a' || get_u8(haystack, 11) == 'r')
232 + if (memcmp(haystack+12,"d2:id20:",8)==0)
233 + return (IPP2P_BIT * 100 + 57);
238 + /* bitlord rules */
239 + /* packetlen must be bigger than 40 */
240 + /* first 4 bytes are zero */
241 + if (packet_len > 40 && get_u32(haystack, 8) == 0x00000000)
243 + /* first rule: 00 00 00 00 01 00 00 xx xx xx xx 00 00 00 00*/
244 + if (get_u32(haystack, 12) == 0x00000000 &&
245 + get_u32(haystack, 16) == 0x00010000 &&
246 + get_u32(haystack, 24) == 0x00000000 )
247 + return (IPP2P_BIT * 100 + 71);
249 + /* 00 01 00 00 0d 00 00 xx xx xx xx 00 00 00 00*/
250 + if (get_u32(haystack, 12) == 0x00000001 &&
251 + get_u32(haystack, 16) == 0x000d0000 &&
252 + get_u32(haystack, 24) == 0x00000000 )
253 + return (IPP2P_BIT * 100 + 71);
264 +/*Search for Ares commands*/
265 +//#define IPP2P_DEBUG_ARES
267 +search_ares (const unsigned char *payload, const u16 plen)
268 +//int search_ares (unsigned char *haystack, int packet_len, int head_len)
270 +// const unsigned char *t = haystack + head_len;
272 + /* all ares packets start with */
273 + if (payload[1] == 0 && (plen - payload[0]) == 3)
275 + switch (payload[2])
279 + if ( plen == 6 && payload[5] == 0x05 ) return ((IPP2P_ARES * 100) + 1);
282 + /* ares search, min 3 chars --> 14 bytes
283 + * lets define a search can be up to 30 chars --> max 34 bytes
285 + if ( plen >= 14 && plen <= 34 ) return ((IPP2P_ARES * 100) + 1);
287 +#ifdef IPP2P_DEBUG_ARES
289 + printk(KERN_DEBUG "Unknown Ares command %x recognized, len: %u \n", (unsigned int) payload[2],plen);
290 +#endif /* IPP2P_DEBUG_ARES */
295 + /* found connect packet: 03 00 5a 04 03 05 */
296 + /* new version ares 1.8: 03 00 5a xx xx 05 */
297 + if ((plen) == 6){ /* possible connect command*/
298 + if ((payload[0] == 0x03) && (payload[1] == 0x00) && (payload[2] == 0x5a) && (payload[5] == 0x05))
299 + return ((IPP2P_ARES * 100) + 1);
301 + if ((plen) == 60){ /* possible download command*/
302 + if ((payload[59] == 0x0a) && (payload[58] == 0x0a)){
303 + if (memcmp(t, "PUSH SHA1:", 10) == 0) /* found download command */
304 + return ((IPP2P_ARES * 100) + 2);
312 +/*Search for SoulSeek commands*/
314 +search_soul (const unsigned char *payload, const u16 plen)
316 +//#define IPP2P_DEBUG_SOUL
317 + /* match: xx xx xx xx | xx = sizeof(payload) - 4 */
318 + if (get_u32(payload, 0) == (plen - 4)){
319 + const __u32 m=get_u32(payload, 4);
320 + /* match 00 yy yy 00, yy can be everything */
321 + if ( get_u8(payload, 4) == 0x00 && get_u8(payload, 7) == 0x00 )
323 +#ifdef IPP2P_DEBUG_SOUL
324 + printk(KERN_DEBUG "0: Soulseek command 0x%x recognized\n",get_u32(payload, 4));
325 +#endif /* IPP2P_DEBUG_SOUL */
326 + return ((IPP2P_SOUL * 100) + 1);
329 + /* next match: 01 yy 00 00 | yy can be everything */
330 + if ( get_u8(payload, 4) == 0x01 && get_u16(payload, 6) == 0x0000 )
332 +#ifdef IPP2P_DEBUG_SOUL
333 + printk(KERN_DEBUG "1: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
334 +#endif /* IPP2P_DEBUG_SOUL */
335 + return ((IPP2P_SOUL * 100) + 2);
338 + /* 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 */
339 + /* try to do this in an intelligent way */
340 + /* get all small commandos */
355 +#ifdef IPP2P_DEBUG_SOUL
356 + printk(KERN_DEBUG "2: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
357 +#endif /* IPP2P_DEBUG_SOUL */
358 + return ((IPP2P_SOUL * 100) + 3);
361 + if (m > 0 && m < 6 )
363 +#ifdef IPP2P_DEBUG_SOUL
364 + printk(KERN_DEBUG "3: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
365 +#endif /* IPP2P_DEBUG_SOUL */
366 + return ((IPP2P_SOUL * 100) + 4);
368 + if (m > 12 && m < 19 )
370 +#ifdef IPP2P_DEBUG_SOUL
371 + printk(KERN_DEBUG "4: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
372 +#endif /* IPP2P_DEBUG_SOUL */
373 + return ((IPP2P_SOUL * 100) + 5);
376 + if (m > 34 && m < 38 )
378 +#ifdef IPP2P_DEBUG_SOUL
379 + printk(KERN_DEBUG "5: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
380 +#endif /* IPP2P_DEBUG_SOUL */
381 + return ((IPP2P_SOUL * 100) + 6);
384 + if (m > 39 && m < 47 )
386 +#ifdef IPP2P_DEBUG_SOUL
387 + printk(KERN_DEBUG "6: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
388 +#endif /* IPP2P_DEBUG_SOUL */
389 + return ((IPP2P_SOUL * 100) + 7);
392 + if (m > 61 && m < 70 )
394 +#ifdef IPP2P_DEBUG_SOUL
395 + printk(KERN_DEBUG "7: Soulseek command 0x%x recognized\n",get_u16(payload, 4));
396 +#endif /* IPP2P_DEBUG_SOUL */
397 + return ((IPP2P_SOUL * 100) + 8);
400 +#ifdef IPP2P_DEBUG_SOUL
401 + 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);
402 +#endif /* IPP2P_DEBUG_SOUL */
405 + /* match 14 00 00 00 01 yy 00 00 00 STRING(YY) 01 00 00 00 00 46|50 00 00 00 00 */
406 + /* without size at the beginning !!! */
407 + if ( get_u32(payload, 0) == 0x14 && get_u8(payload, 4) == 0x01 )
409 + __u32 y=get_u32(payload, 5);
410 + /* we need 19 chars + string */
411 + if ( (y + 19) <= (plen) )
413 + const unsigned char *w=payload+9+y;
414 + if (get_u32(w, 0) == 0x01 && ( get_u16(w, 4) == 0x4600 || get_u16(w, 4) == 0x5000) && get_u32(w, 6) == 0x00);
415 +#ifdef IPP2P_DEBUG_SOUL
416 + printk(KERN_DEBUG "Soulssek special client command recognized\n");
417 +#endif /* IPP2P_DEBUG_SOUL */
418 + return ((IPP2P_SOUL * 100) + 9);
425 +/*Search for WinMX commands*/
427 +search_winmx (const unsigned char *payload, const u16 plen)
429 +//#define IPP2P_DEBUG_WINMX
430 + if (((plen) == 4) && (memcmp(payload, "SEND", 4) == 0)) return ((IPP2P_WINMX * 100) + 1);
431 + if (((plen) == 3) && (memcmp(payload, "GET", 3) == 0)) return ((IPP2P_WINMX * 100) + 2);
432 + //if (packet_len < (head_len + 10)) return 0;
433 + if (plen < 10) return 0;
435 + if ((memcmp(payload, "SEND", 4) == 0) || (memcmp(payload, "GET", 3) == 0)){
437 + const u16 end=plen-2;
441 + if (payload[c]== 0x20 && payload[c+1] == 0x22)
445 + if (count>=2) return ((IPP2P_WINMX * 100) + 3);
451 + if ( plen == 149 && payload[0] == '8' )
453 +#ifdef IPP2P_DEBUG_WINMX
454 + printk(KERN_INFO "maybe WinMX\n");
456 + if (get_u32(payload,17) == 0 && get_u32(payload,21) == 0 && get_u32(payload,25) == 0 &&
457 +// get_u32(payload,33) == __constant_htonl(0x71182b1a) && get_u32(payload,37) == __constant_htonl(0x05050000) &&
458 +// get_u32(payload,133) == __constant_htonl(0x31097edf) && get_u32(payload,145) == __constant_htonl(0xdcb8f792))
459 + get_u16(payload,39) == 0 && get_u16(payload,135) == __constant_htons(0x7edf) && get_u16(payload,147) == __constant_htons(0xf792))
462 +#ifdef IPP2P_DEBUG_WINMX
463 + printk(KERN_INFO "got WinMX\n");
465 + return ((IPP2P_WINMX * 100) + 4);
472 +/*Search for appleJuice commands*/
474 +search_apple (const unsigned char *payload, const u16 plen)
476 + if ( (plen > 7) && (payload[6] == 0x0d) && (payload[7] == 0x0a) && (memcmp(payload, "ajprot", 6) == 0)) return (IPP2P_APPLE * 100);
482 +/*Search for BitTorrent commands*/
484 +search_bittorrent (const unsigned char *payload, const u16 plen)
488 + /* test for match 0x13+"BitTorrent protocol" */
489 + if (payload[0] == 0x13)
491 + if (memcmp(payload+1, "BitTorrent protocol", 19) == 0) return (IPP2P_BIT * 100);
494 + /* get tracker commandos, all starts with GET /
495 + * then it can follow: scrape| announce
496 + * and then ?hash_info=
498 + if (memcmp(payload,"GET /",5) == 0)
500 + /* message scrape */
501 + if ( memcmp(payload+5,"scrape?info_hash=",17)==0 ) return (IPP2P_BIT * 100 + 1);
502 + /* message announce */
503 + if ( memcmp(payload+5,"announce?info_hash=",19)==0 ) return (IPP2P_BIT * 100 + 2);
508 + /* bitcomet encryptes the first packet, so we have to detect another
509 + * one later in the flow */
510 + /* first try failed, too many missdetections */
511 + //if ( size == 5 && get_u32(t,0) == __constant_htonl(1) && t[4] < 3) return (IPP2P_BIT * 100 + 3);
513 + /* second try: block request packets */
514 + 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);
522 +/*check for Kazaa get command*/
524 +search_kazaa (const unsigned char *payload, const u16 plen)
527 + if ((payload[plen-2] == 0x0d) && (payload[plen-1] == 0x0a) && memcmp(payload, "GET /.hash=", 11) == 0)
528 + return (IPP2P_DATA_KAZAA * 100);
534 +/*check for gnutella get command*/
536 +search_gnu (const unsigned char *payload, const u16 plen)
538 + if ((payload[plen-2] == 0x0d) && (payload[plen-1] == 0x0a))
540 + if (memcmp(payload, "GET /get/", 9) == 0) return ((IPP2P_DATA_GNU * 100) + 1);
541 + if (memcmp(payload, "GET /uri-res/", 13) == 0) return ((IPP2P_DATA_GNU * 100) + 2);
547 +/*check for gnutella get commands and other typical data*/
549 +search_all_gnu (const unsigned char *payload, const u16 plen)
552 + if ((payload[plen-2] == 0x0d) && (payload[plen-1] == 0x0a))
555 + if (memcmp(payload, "GNUTELLA CONNECT/", 17) == 0) return ((IPP2P_GNU * 100) + 1);
556 + if (memcmp(payload, "GNUTELLA/", 9) == 0) return ((IPP2P_GNU * 100) + 2);
559 + if ((memcmp(payload, "GET /get/", 9) == 0) || (memcmp(payload, "GET /uri-res/", 13) == 0))
562 + const u16 end=plen-22;
564 + if ( payload[c] == 0x0a && payload[c+1] == 0x0d && ((memcmp(&payload[c+2], "X-Gnutella-", 11) == 0) || (memcmp(&payload[c+2], "X-Queue:", 8) == 0)))
565 + return ((IPP2P_GNU * 100) + 3);
574 +/*check for KaZaA download commands and other typical data*/
576 +search_all_kazaa (const unsigned char *payload, const u16 plen)
578 + if ((payload[plen-2] == 0x0d) && (payload[plen-1] == 0x0a))
581 + if (memcmp(payload, "GIVE ", 5) == 0) return ((IPP2P_KAZAA * 100) + 1);
583 + if (memcmp(payload, "GET /", 5) == 0) {
585 + const u16 end=plen-22;
587 + 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)))
588 + return ((IPP2P_KAZAA * 100) + 2);
596 +/*fast check for edonkey file segment transfer command*/
598 +search_edk (const unsigned char *payload, const u16 plen)
600 + if (payload[0] != 0xe3)
603 + if (payload[5] == 0x47)
604 + return (IPP2P_DATA_EDK * 100);
612 +/*intensive but slower search for some edonkey packets including size-check*/
614 +search_all_edk (const unsigned char *payload, const u16 plen)
616 + if (payload[0] != 0xe3)
620 + const u16 cmd = get_u16(payload, 1);
621 + if (cmd == (plen - 5)) {
622 + switch (payload[5]) {
623 + case 0x01: return ((IPP2P_EDK * 100) + 1); /*Client: hello or Server:hello*/
624 + case 0x4c: return ((IPP2P_EDK * 100) + 9); /*Client: Hello-Answer*/
632 +/*fast check for Direct Connect send command*/
634 +search_dc (const unsigned char *payload, const u16 plen)
637 + if (payload[0] != 0x24 )
640 + if (memcmp(&payload[1], "Send|", 5) == 0)
641 + return (IPP2P_DATA_DC * 100);
649 +/*intensive but slower check for all direct connect packets*/
651 +search_all_dc (const unsigned char *payload, const u16 plen)
653 +// unsigned char *t = haystack;
655 + if (payload[0] == 0x24 && payload[plen-1] == 0x7c)
657 + const unsigned char *t=&payload[1];
658 + /* Client-Hub-Protocol */
659 + if (memcmp(t, "Lock ", 5) == 0) return ((IPP2P_DC * 100) + 1);
660 + /* Client-Client-Protocol, some are already recognized by client-hub (like lock) */
661 + if (memcmp(t, "MyNick ", 7) == 0) return ((IPP2P_DC * 100) + 38);
668 +search_mute (const unsigned char *payload, const u16 plen)
670 + if ( plen == 209 || plen == 345 || plen == 473 || plen == 609 || plen == 1121 )
672 + //printk(KERN_DEBUG "size hit: %u",size);
673 + if (memcmp(payload,"PublicKey: ",11) == 0 )
675 + return ((IPP2P_MUTE * 100) + 0);
677 +/* if (memcmp(t+size-14,"\x0aEndPublicKey\x0a",14) == 0)
679 + printk(KERN_DEBUG "end pubic key hit: %u",size);
688 +/* check for xdcc */
690 +search_xdcc (const unsigned char *payload, const u16 plen)
692 + /* search in small packets only */
693 + if (plen > 20 && plen < 200 && payload[plen-1] == 0x0a && payload[plen-2] == 0x0d && memcmp(payload,"PRIVMSG ",8) == 0)
697 + const u16 end=plen - 13;
699 + /* is seems to be a irc private massage, chedck for xdcc command */
702 + if (payload[x] == ':')
704 + if ( memcmp(&payload[x+1],"xdcc send #",11) == 0 )
705 + return ((IPP2P_XDCC * 100) + 0);
713 +/* search for waste */
714 +int search_waste(const unsigned char *payload, const u16 plen)
716 + if ( plen >= 8 && memcmp(payload,"GET.sha1:",9) == 0)
717 + return ((IPP2P_WASTE * 100) + 0);
725 + __u8 short_hand; /*for fucntions included in short hands*/
727 + int (*function_name) (const unsigned char *, const u16);
729 + {IPP2P_EDK,SHORT_HAND_IPP2P,20, &search_all_edk},
730 +// {IPP2P_DATA_KAZAA,SHORT_HAND_DATA,200, &search_kazaa},
731 +// {IPP2P_DATA_EDK,SHORT_HAND_DATA,60, &search_edk},
732 +// {IPP2P_DATA_DC,SHORT_HAND_DATA,26, &search_dc},
733 + {IPP2P_DC,SHORT_HAND_IPP2P,5, search_all_dc},
734 +// {IPP2P_DATA_GNU,SHORT_HAND_DATA,40, &search_gnu},
735 + {IPP2P_GNU,SHORT_HAND_IPP2P,5, &search_all_gnu},
736 + {IPP2P_KAZAA,SHORT_HAND_IPP2P,5, &search_all_kazaa},
737 + {IPP2P_BIT,SHORT_HAND_IPP2P,20, &search_bittorrent},
738 + {IPP2P_APPLE,SHORT_HAND_IPP2P,5, &search_apple},
739 + {IPP2P_SOUL,SHORT_HAND_IPP2P,5, &search_soul},
740 + {IPP2P_WINMX,SHORT_HAND_IPP2P,2, &search_winmx},
741 + {IPP2P_ARES,SHORT_HAND_IPP2P,5, &search_ares},
742 + {IPP2P_MUTE,SHORT_HAND_NONE,200, &search_mute},
743 + {IPP2P_WASTE,SHORT_HAND_NONE,5, &search_waste},
744 + {IPP2P_XDCC,SHORT_HAND_NONE,5, &search_xdcc},
751 + __u8 short_hand; /*for fucntions included in short hands*/
753 + int (*function_name) (unsigned char *, int);
755 + {IPP2P_KAZAA,SHORT_HAND_IPP2P,14, &udp_search_kazaa},
756 + {IPP2P_BIT,SHORT_HAND_IPP2P,23, &udp_search_bit},
757 + {IPP2P_GNU,SHORT_HAND_IPP2P,11, &udp_search_gnu},
758 + {IPP2P_EDK,SHORT_HAND_IPP2P,9, &udp_search_edk},
759 + {IPP2P_DC,SHORT_HAND_IPP2P,12, &udp_search_directconnect},
765 +match(const struct sk_buff *skb,
766 + const struct net_device *in,
767 + const struct net_device *out,
768 + const struct xt_match *match,
769 + const void *matchinfo,
771 + unsigned int protoff,
774 + const struct ipt_p2p_info *info = matchinfo;
775 + unsigned char *haystack;
776 + struct iphdr *ip = ip_hdr(skb);
777 + int p2p_result = 0, i = 0;
779 + int hlen = ntohs(ip->tot_len)-(ip->ihl*4); /*hlen = packet-data length*/
781 + /*must not be a fragment*/
783 + if (info->debug) printk("IPP2P.match: offset found %i \n",offset);
787 + /*make sure that skb is linear*/
788 + if(skb_is_nonlinear(skb)){
789 + if (info->debug) printk("IPP2P.match: nonlinear skb found\n");
794 + haystack=(char *)ip+(ip->ihl*4); /*haystack = packet data*/
796 + switch (ip->protocol){
797 + case IPPROTO_TCP: /*what to do with a TCP packet*/
799 + struct tcphdr *tcph = (void *) ip + ip->ihl * 4;
801 + if (tcph->fin) return 0; /*if FIN bit is set bail out*/
802 + if (tcph->syn) return 0; /*if SYN bit is set bail out*/
803 + if (tcph->rst) return 0; /*if RST bit is set bail out*/
805 + haystack += tcph->doff * 4; /*get TCP-Header-Size*/
806 + hlen -= tcph->doff * 4;
807 + while (matchlist[i].command) {
808 + if ((((info->cmd & matchlist[i].command) == matchlist[i].command) ||
809 + ((info->cmd & matchlist[i].short_hand) == matchlist[i].short_hand)) &&
810 + (hlen > matchlist[i].packet_len)) {
811 + p2p_result = matchlist[i].function_name(haystack, hlen);
814 + if (info->debug) printk("IPP2P.debug:TCP-match: %i from: %u.%u.%u.%u:%i to: %u.%u.%u.%u:%i Length: %i\n",
815 + p2p_result, NIPQUAD(ip->saddr),ntohs(tcph->source), NIPQUAD(ip->daddr),ntohs(tcph->dest),hlen);
824 + case IPPROTO_UDP: /*what to do with an UDP packet*/
826 + struct udphdr *udph = (void *) ip + ip->ihl * 4;
828 + while (udp_list[i].command){
829 + if ((((info->cmd & udp_list[i].command) == udp_list[i].command) ||
830 + ((info->cmd & udp_list[i].short_hand) == udp_list[i].short_hand)) &&
831 + (hlen > udp_list[i].packet_len)) {
832 + p2p_result = udp_list[i].function_name(haystack, hlen);
834 + if (info->debug) printk("IPP2P.debug:UDP-match: %i from: %u.%u.%u.%u:%i to: %u.%u.%u.%u:%i Length: %i\n",
835 + p2p_result, NIPQUAD(ip->saddr),ntohs(udph->source), NIPQUAD(ip->daddr),ntohs(udph->dest),hlen);
851 +checkentry(const char *tablename,
853 + const struct xt_match *match,
855 + unsigned int hook_mask)
857 + /* Must specify -p tcp */
858 +/* if (ip->proto != IPPROTO_TCP || (ip->invflags & IPT_INV_PROTO)) {
859 + * printk("ipp2p: Only works on TCP packets, use -p tcp\n");
868 +static struct ipt_match ipp2p_match = {
872 + .matchsize = sizeof(struct ipt_p2p_info),
873 + .checkentry = &checkentry,
878 +static int __init init(void)
880 + printk(KERN_INFO "IPP2P v%s loading\n", IPP2P_VERSION);
881 + return xt_register_match(&ipp2p_match);
884 +static void __exit fini(void)
886 + xt_unregister_match(&ipp2p_match);
887 + printk(KERN_INFO "IPP2P v%s unloaded\n", IPP2P_VERSION);
894 --- a/net/ipv4/netfilter/Kconfig
895 +++ b/net/ipv4/netfilter/Kconfig
898 To compile it as a module, choose M here. If unsure, say N.
900 +config IP_NF_MATCH_IPP2P
902 + depends on IP_NF_IPTABLES
904 + Module for matching traffic of various Peer-to-Peer applications
906 config IP_NF_MATCH_TOS
907 tristate "TOS match support"
908 depends on IP_NF_IPTABLES
909 --- a/net/ipv4/netfilter/Makefile
910 +++ b/net/ipv4/netfilter/Makefile
912 obj-$(CONFIG_IP_NF_MATCH_TTL) += ipt_ttl.o
913 obj-$(CONFIG_IP_NF_MATCH_ADDRTYPE) += ipt_addrtype.o
915 +obj-$(CONFIG_IP_NF_MATCH_IPP2P) += ipt_ipp2p.o
918 obj-$(CONFIG_IP_NF_TARGET_REJECT) += ipt_REJECT.o
919 obj-$(CONFIG_IP_NF_TARGET_TOS) += ipt_TOS.o