1 /* Kernel module to check if the source address has been seen recently. */
2 /* Copyright 2002-2003, Stephen Frost, 2.5.x port by laforge@netfilter.org */
3 /* Author: Stephen Frost <sfrost@snowman.net> */
4 /* Project Page: http://snowman.net/projects/ipt_recent/ */
5 /* This software is distributed under the terms of the GPL, Version 2 */
6 /* This copyright does not cover user programs that use kernel services
7 * by normal system calls. */
9 #include <linux/module.h>
10 #include <linux/skbuff.h>
11 #include <linux/proc_fs.h>
12 #include <linux/spinlock.h>
13 #include <linux/interrupt.h>
14 #include <asm/uaccess.h>
15 #include <linux/ctype.h>
17 #include <linux/vmalloc.h>
18 #include <linux/moduleparam.h>
20 #include <linux/netfilter_ipv4/ip_tables.h>
21 #include <linux/netfilter_ipv4/ipt_recent.h>
26 /* Defaults, these can be overridden on the module command-line. */
27 static unsigned int ip_list_tot = 100;
28 static unsigned int ip_pkt_list_tot = 20;
29 static unsigned int ip_list_hash_size = 0;
30 static unsigned int ip_list_perms = 0644;
35 static char version[] =
36 KERN_INFO RECENT_NAME " " RECENT_VER ": Stephen Frost <sfrost@snowman.net>. http://snowman.net/projects/ipt_recent/\n";
38 MODULE_AUTHOR("Stephen Frost <sfrost@snowman.net>");
39 MODULE_DESCRIPTION("IP tables recently seen matching module " RECENT_VER);
40 MODULE_LICENSE("GPL");
41 module_param(ip_list_tot, uint, 0400);
42 module_param(ip_pkt_list_tot, uint, 0400);
43 module_param(ip_list_hash_size, uint, 0400);
44 module_param(ip_list_perms, uint, 0400);
46 module_param(debug, bool, 0600);
47 MODULE_PARM_DESC(debug,"enable debugging output");
49 MODULE_PARM_DESC(ip_list_tot,"number of IPs to remember per list");
50 MODULE_PARM_DESC(ip_pkt_list_tot,"number of packets per IP to remember");
51 MODULE_PARM_DESC(ip_list_hash_size,"size of hash table used to look up IPs");
52 MODULE_PARM_DESC(ip_list_perms,"permissions on /proc/net/ipt_recent/* files");
54 /* Structure of our list of recently seen addresses. */
55 struct recent_ip_list {
58 unsigned long last_seen;
59 unsigned long *last_pkts;
65 struct time_info_list {
70 /* Structure of our linked list of tables of recent lists. */
71 struct recent_ip_tables {
72 char name[IPT_RECENT_NAME_LEN];
75 struct recent_ip_list *table;
76 struct recent_ip_tables *next;
79 struct time_info_list *time_info;
81 struct proc_dir_entry *status_proc;
82 #endif /* CONFIG_PROC_FS */
85 /* Our current list of addresses we have recently seen.
86 * Only added to on a --set, and only updated on --set || --update
88 static struct recent_ip_tables *r_tables = NULL;
90 /* We protect r_list with this spinlock so two processors are not modifying
91 * the list at the same time.
93 static DEFINE_SPINLOCK(recent_lock);
96 /* Our /proc/net/ipt_recent entry */
97 static struct proc_dir_entry *proc_net_ipt_recent = NULL;
100 /* Function declaration for later. */
102 match(const struct sk_buff *skb,
103 const struct net_device *in,
104 const struct net_device *out,
105 const void *matchinfo,
107 unsigned int protoff,
110 /* Function to hash a given address into the hash table of table_size size */
111 static int hash_func(unsigned int addr, int table_size)
114 unsigned int value = addr;
115 do { result ^= value; } while((value >>= HASH_LOG));
118 if(debug) printk(KERN_INFO RECENT_NAME ": %d = hash_func(%u,%d)\n",
119 result & (table_size - 1),
124 return(result & (table_size - 1));
127 #ifdef CONFIG_PROC_FS
128 /* This is the function which produces the output for our /proc output
129 * interface which lists each IP address, the last seen time and the
130 * other recent times the address was seen.
133 static int ip_recent_get_info(char *buffer, char **start, off_t offset, int length, int *eof, void *data)
135 int len = 0, count, last_len = 0, pkt_count;
138 struct recent_ip_tables *curr_table;
140 curr_table = (struct recent_ip_tables*) data;
142 spin_lock_bh(&curr_table->list_lock);
143 for(count = 0; count < ip_list_tot; count++) {
144 if(!curr_table->table[count].addr) continue;
146 len += sprintf(buffer+len,"src=%u.%u.%u.%u ",NIPQUAD(curr_table->table[count].addr));
147 len += sprintf(buffer+len,"ttl: %u ",curr_table->table[count].ttl);
148 len += sprintf(buffer+len,"last_seen: %lu ",curr_table->table[count].last_seen);
149 len += sprintf(buffer+len,"oldest_pkt: %u ",curr_table->table[count].oldest_pkt);
150 len += sprintf(buffer+len,"last_pkts: %lu",curr_table->table[count].last_pkts[0]);
151 for(pkt_count = 1; pkt_count < ip_pkt_list_tot; pkt_count++) {
152 if(!curr_table->table[count].last_pkts[pkt_count]) break;
153 len += sprintf(buffer+len,", %lu",curr_table->table[count].last_pkts[pkt_count]);
155 len += sprintf(buffer+len,"\n");
157 if(pos < offset) { len = 0; begin = pos; }
158 if(pos > offset + length) { len = last_len; break; }
161 *start = buffer + (offset - begin);
162 len -= (offset - begin);
163 if(len > length) len = length;
165 spin_unlock_bh(&curr_table->list_lock);
169 /* ip_recent_ctrl provides an interface for users to modify the table
170 * directly. This allows adding entries, removing entries, and
171 * flushing the entire table.
172 * This is done by opening up the appropriate table for writing and
174 * xx.xx.xx.xx -- Add entry to table with current time
175 * +xx.xx.xx.xx -- Add entry to table with current time
176 * -xx.xx.xx.xx -- Remove entry from table
177 * clear -- Flush table, remove all entries
180 static int ip_recent_ctrl(struct file *file, const char __user *input, unsigned long size, void *data)
182 static const u_int32_t max[4] = { 0xffffffff, 0xffffff, 0xffff, 0xff };
190 uint8_t *pp = res.bytes;
194 int len, check_set = 0, count;
197 struct ipt_recent_info *info;
198 struct recent_ip_tables *curr_table;
200 curr_table = (struct recent_ip_tables*) data;
202 if(size > 20) len = 20; else len = size;
204 if(copy_from_user(buffer,input,len)) return -EFAULT;
206 if(len < 20) buffer[len] = '\0';
209 if(debug) printk(KERN_INFO RECENT_NAME ": ip_recent_ctrl len: %d, input: `%.20s'\n",len,buffer);
213 while(isspace(*cp)) { cp++; used++; if(used >= len-5) return used; }
215 /* Check if we are asked to flush the entire table */
216 if(!memcmp(cp,"clear",5)) {
218 spin_lock_bh(&curr_table->list_lock);
219 curr_table->time_pos = 0;
220 for(count = 0; count < ip_list_hash_size; count++) {
221 curr_table->hash_table[count] = -1;
223 for(count = 0; count < ip_list_tot; count++) {
224 curr_table->table[count].last_seen = 0;
225 curr_table->table[count].addr = 0;
226 curr_table->table[count].ttl = 0;
227 memset(curr_table->table[count].last_pkts,0,ip_pkt_list_tot*sizeof(unsigned long));
228 curr_table->table[count].oldest_pkt = 0;
229 curr_table->table[count].time_pos = 0;
230 curr_table->time_info[count].position = count;
231 curr_table->time_info[count].time = 0;
233 spin_unlock_bh(&curr_table->list_lock);
237 check_set = IPT_RECENT_SET;
239 case '+': check_set = IPT_RECENT_SET; cp++; used++; break;
240 case '-': check_set = IPT_RECENT_REMOVE; cp++; used++; break;
241 default: if(!isdigit(*cp)) return (used+1); break;
245 if(debug) printk(KERN_INFO RECENT_NAME ": ip_recent_ctrl cp: `%c', check_set: %d\n",*cp,check_set);
247 /* Get addr (effectively inet_aton()) */
248 /* Shamelessly stolen from libc, a function in the kernel for doing
249 * this would, of course, be greatly preferred, but our options appear
250 * to be rather limited, so we will just do it ourselves here.
256 if(!isdigit(c)) return used;
257 val = 0; base = 10; digit = 0;
260 if(c == 'x' || c == 'X') base = 16, c = *++cp;
261 else { base = 8; digit = 1; }
264 if(isascii(c) && isdigit(c)) {
265 if(base == 8 && (c == '8' || c == '0')) return used;
266 val = (val * base) + (c - '0');
269 } else if(base == 16 && isascii(c) && isxdigit(c)) {
270 val = (val << 4) | (c + 10 - (islower(c) ? 'a' : 'A'));
276 if(pp > res.bytes + 2 || val > 0xff) return used;
282 if(c != '\0' && (!isascii(c) || !isspace(c))) return used;
283 if(c == '\n') used++;
284 if(!digit) return used;
286 if(val > max[pp - res.bytes]) return used;
287 addr = res.word | htonl(val);
289 if(!addr && check_set == IPT_RECENT_SET) return used;
292 if(debug) printk(KERN_INFO RECENT_NAME ": ip_recent_ctrl c: %c, addr: %u used: %d\n",c,addr,used);
295 /* Set up and just call match */
296 info = kmalloc(sizeof(struct ipt_recent_info),GFP_KERNEL);
297 if(!info) { return -ENOMEM; }
300 info->check_set = check_set;
302 info->side = IPT_RECENT_SOURCE;
303 strncpy(info->name,curr_table->name,IPT_RECENT_NAME_LEN);
304 info->name[IPT_RECENT_NAME_LEN-1] = '\0';
306 skb = kmalloc(sizeof(struct sk_buff),GFP_KERNEL);
311 skb->nh.iph = kmalloc(sizeof(struct iphdr),GFP_KERNEL);
317 skb->nh.iph->saddr = addr;
318 skb->nh.iph->daddr = 0;
319 /* Clear ttl since we have no way of knowing it */
320 skb->nh.iph->ttl = 0;
321 match(skb,NULL,NULL,info,0,0,NULL);
330 if(debug) printk(KERN_INFO RECENT_NAME ": Leaving ip_recent_ctrl addr: %u used: %d\n",addr,used);
335 #endif /* CONFIG_PROC_FS */
337 /* 'match' is our primary function, called by the kernel whenever a rule is
338 * hit with our module as an option to it.
339 * What this function does depends on what was specifically asked of it by
341 * --set -- Add or update last seen time of the source address of the packet
342 * -- matchinfo->check_set == IPT_RECENT_SET
343 * --rcheck -- Just check if the source address is in the list
344 * -- matchinfo->check_set == IPT_RECENT_CHECK
345 * --update -- If the source address is in the list, update last_seen
346 * -- matchinfo->check_set == IPT_RECENT_UPDATE
347 * --remove -- If the source address is in the list, remove it
348 * -- matchinfo->check_set == IPT_RECENT_REMOVE
349 * --seconds -- Option to --rcheck/--update, only match if last_seen within seconds
350 * -- matchinfo->seconds
351 * --hitcount -- Option to --rcheck/--update, only match if seen hitcount times
352 * -- matchinfo->hit_count
353 * --seconds and --hitcount can be combined
356 match(const struct sk_buff *skb,
357 const struct net_device *in,
358 const struct net_device *out,
359 const void *matchinfo,
361 unsigned int protoff,
364 int pkt_count, hits_found, ans;
366 const struct ipt_recent_info *info = matchinfo;
367 u_int32_t addr = 0, time_temp;
368 u_int8_t ttl = skb->nh.iph->ttl;
370 int orig_hash_result, hash_result, temp, location = 0, time_loc, end_collision_chain = -1;
371 struct time_info_list *time_info;
372 struct recent_ip_tables *curr_table;
373 struct recent_ip_tables *last_table;
374 struct recent_ip_list *r_list;
377 if(debug) printk(KERN_INFO RECENT_NAME ": match() called\n");
380 /* Default is false ^ info->invert */
384 if(debug) printk(KERN_INFO RECENT_NAME ": match(): name = '%s'\n",info->name);
387 /* if out != NULL then routing has been done and TTL changed.
388 * We change it back here internally for match what came in before routing. */
391 /* Find the right table */
392 spin_lock_bh(&recent_lock);
393 curr_table = r_tables;
394 while( (last_table = curr_table) && strncmp(info->name,curr_table->name,IPT_RECENT_NAME_LEN) && (curr_table = curr_table->next) );
397 if(debug) printk(KERN_INFO RECENT_NAME ": match(): table found('%s')\n",info->name);
400 spin_unlock_bh(&recent_lock);
402 /* Table with this name not found, match impossible */
403 if(!curr_table) { return ans; }
405 /* Make sure no one is changing the list while we work with it */
406 spin_lock_bh(&curr_table->list_lock);
408 r_list = curr_table->table;
409 if(info->side == IPT_RECENT_DEST) addr = skb->nh.iph->daddr; else addr = skb->nh.iph->saddr;
413 if(debug) printk(KERN_INFO RECENT_NAME ": match() address (%u) invalid, leaving.\n",addr);
415 spin_unlock_bh(&curr_table->list_lock);
420 if(debug) printk(KERN_INFO RECENT_NAME ": match(): checking table, addr: %u, ttl: %u, orig_ttl: %u\n",addr,ttl,skb->nh.iph->ttl);
423 /* Get jiffies now in case they changed while we were waiting for a lock */
425 hash_table = curr_table->hash_table;
426 time_info = curr_table->time_info;
428 orig_hash_result = hash_result = hash_func(addr,ip_list_hash_size);
429 /* Hash entry at this result used */
430 /* Check for TTL match if requested. If TTL is zero then a match would never
431 * happen, so match regardless of existing TTL in that case. Zero means the
432 * entry was added via the /proc interface anyway, so we will just use the
433 * first TTL we get for that IP address. */
434 if(info->check_set & IPT_RECENT_TTL) {
435 while(hash_table[hash_result] != -1 && !(r_list[hash_table[hash_result]].addr == addr &&
436 (!r_list[hash_table[hash_result]].ttl || r_list[hash_table[hash_result]].ttl == ttl))) {
437 /* Collision in hash table */
438 hash_result = (hash_result + 1) % ip_list_hash_size;
441 while(hash_table[hash_result] != -1 && r_list[hash_table[hash_result]].addr != addr) {
442 /* Collision in hash table */
443 hash_result = (hash_result + 1) % ip_list_hash_size;
447 if(hash_table[hash_result] == -1 && !(info->check_set & IPT_RECENT_SET)) {
448 /* IP not in list and not asked to SET */
449 spin_unlock_bh(&curr_table->list_lock);
453 /* Check if we need to handle the collision, do not need to on REMOVE */
454 if(orig_hash_result != hash_result && !(info->check_set & IPT_RECENT_REMOVE)) {
456 if(debug) printk(KERN_INFO RECENT_NAME ": match(): Collision in hash table. (or: %d,hr: %d,oa: %u,ha: %u)\n",
459 r_list[hash_table[orig_hash_result]].addr,
463 /* We had a collision.
464 * orig_hash_result is where we started, hash_result is where we ended up.
465 * So, swap them because we are likely to see the same guy again sooner */
468 printk(KERN_INFO RECENT_NAME ": match(): Collision; hash_table[orig_hash_result] = %d\n",hash_table[orig_hash_result]);
469 printk(KERN_INFO RECENT_NAME ": match(): Collision; r_list[hash_table[orig_hash_result]].hash_entry = %d\n",
470 r_list[hash_table[orig_hash_result]].hash_entry);
474 r_list[hash_table[orig_hash_result]].hash_entry = hash_result;
477 temp = hash_table[orig_hash_result];
479 if(debug) printk(KERN_INFO RECENT_NAME ": match(): Collision; hash_table[hash_result] = %d\n",hash_table[hash_result]);
481 hash_table[orig_hash_result] = hash_table[hash_result];
482 hash_table[hash_result] = temp;
484 hash_result = orig_hash_result;
485 orig_hash_result = temp;
486 time_info[r_list[hash_table[orig_hash_result]].time_pos].position = hash_table[orig_hash_result];
487 if(hash_table[hash_result] != -1) {
488 r_list[hash_table[hash_result]].hash_entry = hash_result;
489 time_info[r_list[hash_table[hash_result]].time_pos].position = hash_table[hash_result];
493 if(debug) printk(KERN_INFO RECENT_NAME ": match(): Collision handled.\n");
497 if(hash_table[hash_result] == -1) {
499 if(debug) printk(KERN_INFO RECENT_NAME ": match(): New table entry. (hr: %d,ha: %u)\n",
503 /* New item found and IPT_RECENT_SET, so we need to add it */
504 location = time_info[curr_table->time_pos].position;
505 hash_table[r_list[location].hash_entry] = -1;
506 hash_table[hash_result] = location;
507 memset(r_list[location].last_pkts,0,ip_pkt_list_tot*sizeof(unsigned long));
508 r_list[location].time_pos = curr_table->time_pos;
509 r_list[location].addr = addr;
510 r_list[location].ttl = ttl;
511 r_list[location].last_seen = now;
512 r_list[location].oldest_pkt = 1;
513 r_list[location].last_pkts[0] = now;
514 r_list[location].hash_entry = hash_result;
515 time_info[curr_table->time_pos].time = r_list[location].last_seen;
516 curr_table->time_pos = (curr_table->time_pos + 1) % ip_list_tot;
521 if(debug) printk(KERN_INFO RECENT_NAME ": match(): Existing table entry. (hr: %d,ha: %u)\n",
526 /* Existing item found */
527 location = hash_table[hash_result];
528 /* We have a match on address, now to make sure it meets all requirements for a
530 if(info->check_set & IPT_RECENT_CHECK || info->check_set & IPT_RECENT_UPDATE) {
531 if(!info->seconds && !info->hit_count) ans = !info->invert; else ans = info->invert;
532 if(info->seconds && !info->hit_count) {
533 if(time_before_eq(now,r_list[location].last_seen+info->seconds*HZ)) ans = !info->invert; else ans = info->invert;
535 if(info->seconds && info->hit_count) {
536 for(pkt_count = 0, hits_found = 0; pkt_count < ip_pkt_list_tot; pkt_count++) {
537 if(r_list[location].last_pkts[pkt_count] == 0) break;
538 if(time_before_eq(now,r_list[location].last_pkts[pkt_count]+info->seconds*HZ)) hits_found++;
540 if(hits_found >= info->hit_count) ans = !info->invert; else ans = info->invert;
542 if(info->hit_count && !info->seconds) {
543 for(pkt_count = 0, hits_found = 0; pkt_count < ip_pkt_list_tot; pkt_count++) {
544 if(r_list[location].last_pkts[pkt_count] == 0) break;
547 if(hits_found >= info->hit_count) ans = !info->invert; else ans = info->invert;
553 printk(KERN_INFO RECENT_NAME ": match(): match addr: %u\n",addr);
555 printk(KERN_INFO RECENT_NAME ": match(): no match addr: %u\n",addr);
559 /* If and only if we have been asked to SET, or to UPDATE (on match) do we add the
560 * current timestamp to the last_seen. */
561 if((info->check_set & IPT_RECENT_SET && (ans = !info->invert)) || (info->check_set & IPT_RECENT_UPDATE && ans)) {
563 if(debug) printk(KERN_INFO RECENT_NAME ": match(): SET or UPDATE; updating time info.\n");
565 /* Have to update our time info */
566 time_loc = r_list[location].time_pos;
567 time_info[time_loc].time = now;
568 time_info[time_loc].position = location;
569 while((time_info[(time_loc+1) % ip_list_tot].time < time_info[time_loc].time) && ((time_loc+1) % ip_list_tot) != curr_table->time_pos) {
570 time_temp = time_info[time_loc].time;
571 time_info[time_loc].time = time_info[(time_loc+1)%ip_list_tot].time;
572 time_info[(time_loc+1)%ip_list_tot].time = time_temp;
573 time_temp = time_info[time_loc].position;
574 time_info[time_loc].position = time_info[(time_loc+1)%ip_list_tot].position;
575 time_info[(time_loc+1)%ip_list_tot].position = time_temp;
576 r_list[time_info[time_loc].position].time_pos = time_loc;
577 r_list[time_info[(time_loc+1)%ip_list_tot].position].time_pos = (time_loc+1)%ip_list_tot;
578 time_loc = (time_loc+1) % ip_list_tot;
580 r_list[location].time_pos = time_loc;
581 r_list[location].ttl = ttl;
582 r_list[location].last_pkts[r_list[location].oldest_pkt] = now;
583 r_list[location].oldest_pkt = ++r_list[location].oldest_pkt % ip_pkt_list_tot;
584 r_list[location].last_seen = now;
586 /* If we have been asked to remove the entry from the list, just set it to 0 */
587 if(info->check_set & IPT_RECENT_REMOVE) {
589 if(debug) printk(KERN_INFO RECENT_NAME ": match(): REMOVE; clearing entry (or: %d, hr: %d).\n",orig_hash_result,hash_result);
591 /* Check if this is part of a collision chain */
592 while(hash_table[(orig_hash_result+1) % ip_list_hash_size] != -1) {
594 if(hash_func(r_list[hash_table[orig_hash_result]].addr,ip_list_hash_size) == hash_result) {
595 /* Found collision chain, how deep does this rabbit hole go? */
597 if(debug) printk(KERN_INFO RECENT_NAME ": match(): REMOVE; found collision chain.\n");
599 end_collision_chain = orig_hash_result;
602 if(end_collision_chain != -1) {
604 if(debug) printk(KERN_INFO RECENT_NAME ": match(): REMOVE; part of collision chain, moving to end.\n");
606 /* Part of a collision chain, swap it with the end of the chain
607 * before removing. */
608 r_list[hash_table[end_collision_chain]].hash_entry = hash_result;
609 temp = hash_table[end_collision_chain];
610 hash_table[end_collision_chain] = hash_table[hash_result];
611 hash_table[hash_result] = temp;
612 time_info[r_list[hash_table[hash_result]].time_pos].position = hash_table[hash_result];
613 hash_result = end_collision_chain;
614 r_list[hash_table[hash_result]].hash_entry = hash_result;
615 time_info[r_list[hash_table[hash_result]].time_pos].position = hash_table[hash_result];
617 location = hash_table[hash_result];
618 hash_table[r_list[location].hash_entry] = -1;
619 time_loc = r_list[location].time_pos;
620 time_info[time_loc].time = 0;
621 time_info[time_loc].position = location;
622 while((time_info[(time_loc+1) % ip_list_tot].time < time_info[time_loc].time) && ((time_loc+1) % ip_list_tot) != curr_table->time_pos) {
623 time_temp = time_info[time_loc].time;
624 time_info[time_loc].time = time_info[(time_loc+1)%ip_list_tot].time;
625 time_info[(time_loc+1)%ip_list_tot].time = time_temp;
626 time_temp = time_info[time_loc].position;
627 time_info[time_loc].position = time_info[(time_loc+1)%ip_list_tot].position;
628 time_info[(time_loc+1)%ip_list_tot].position = time_temp;
629 r_list[time_info[time_loc].position].time_pos = time_loc;
630 r_list[time_info[(time_loc+1)%ip_list_tot].position].time_pos = (time_loc+1)%ip_list_tot;
631 time_loc = (time_loc+1) % ip_list_tot;
633 r_list[location].time_pos = time_loc;
634 r_list[location].last_seen = 0;
635 r_list[location].addr = 0;
636 r_list[location].ttl = 0;
637 memset(r_list[location].last_pkts,0,ip_pkt_list_tot*sizeof(unsigned long));
638 r_list[location].oldest_pkt = 0;
641 spin_unlock_bh(&curr_table->list_lock);
645 spin_unlock_bh(&curr_table->list_lock);
647 if(debug) printk(KERN_INFO RECENT_NAME ": match() left.\n");
652 /* This function is to verify that the rule given during the userspace iptables
653 * command is correct.
654 * If the command is valid then we check if the table name referred to by the
655 * rule exists, if not it is created.
658 checkentry(const char *tablename,
661 unsigned int matchsize,
662 unsigned int hook_mask)
666 const struct ipt_recent_info *info = matchinfo;
667 struct recent_ip_tables *curr_table, *find_table, *last_table;
670 if(debug) printk(KERN_INFO RECENT_NAME ": checkentry() entered.\n");
673 if (matchsize != IPT_ALIGN(sizeof(struct ipt_recent_info))) return 0;
675 /* seconds and hit_count only valid for CHECK/UPDATE */
676 if(info->check_set & IPT_RECENT_SET) { flag++; if(info->seconds || info->hit_count) return 0; }
677 if(info->check_set & IPT_RECENT_REMOVE) { flag++; if(info->seconds || info->hit_count) return 0; }
678 if(info->check_set & IPT_RECENT_CHECK) flag++;
679 if(info->check_set & IPT_RECENT_UPDATE) flag++;
681 /* One and only one of these should ever be set */
682 if(flag != 1) return 0;
684 /* Name must be set to something */
685 if(!info->name || !info->name[0]) return 0;
687 /* Things look good, create a list for this if it does not exist */
688 /* Lock the linked list while we play with it */
689 spin_lock_bh(&recent_lock);
691 /* Look for an entry with this name already created */
692 /* Finds the end of the list and the entry before the end if current name does not exist */
693 find_table = r_tables;
694 while( (last_table = find_table) && strncmp(info->name,find_table->name,IPT_RECENT_NAME_LEN) && (find_table = find_table->next) );
696 /* If a table already exists just increment the count on that table and return */
699 if(debug) printk(KERN_INFO RECENT_NAME ": checkentry: table found (%s), incrementing count.\n",info->name);
702 spin_unlock_bh(&recent_lock);
706 spin_unlock_bh(&recent_lock);
708 /* Table with this name not found */
709 /* Allocate memory for new linked list item */
713 printk(KERN_INFO RECENT_NAME ": checkentry: no table found (%s)\n",info->name);
714 printk(KERN_INFO RECENT_NAME ": checkentry: Allocationg %d for link-list entry.\n",sizeof(struct recent_ip_tables));
718 curr_table = vmalloc(sizeof(struct recent_ip_tables));
719 if(curr_table == NULL) return 0;
721 spin_lock_init(&curr_table->list_lock);
722 curr_table->next = NULL;
723 curr_table->count = 1;
724 curr_table->time_pos = 0;
725 strncpy(curr_table->name,info->name,IPT_RECENT_NAME_LEN);
726 curr_table->name[IPT_RECENT_NAME_LEN-1] = '\0';
728 /* Allocate memory for this table and the list of packets in each entry. */
730 if(debug) printk(KERN_INFO RECENT_NAME ": checkentry: Allocating %d for table (%s).\n",
731 sizeof(struct recent_ip_list)*ip_list_tot,
735 curr_table->table = vmalloc(sizeof(struct recent_ip_list)*ip_list_tot);
736 if(curr_table->table == NULL) { vfree(curr_table); return 0; }
737 memset(curr_table->table,0,sizeof(struct recent_ip_list)*ip_list_tot);
739 if(debug) printk(KERN_INFO RECENT_NAME ": checkentry: Allocating %d for pkt_list.\n",
740 sizeof(unsigned long)*ip_pkt_list_tot*ip_list_tot);
743 hold = vmalloc(sizeof(unsigned long)*ip_pkt_list_tot*ip_list_tot);
745 if(debug) printk(KERN_INFO RECENT_NAME ": checkentry: After pkt_list allocation.\n");
748 printk(KERN_INFO RECENT_NAME ": checkentry: unable to allocate for pkt_list.\n");
749 vfree(curr_table->table);
753 for(c = 0; c < ip_list_tot; c++) {
754 curr_table->table[c].last_pkts = hold + c*ip_pkt_list_tot;
757 /* Allocate memory for the hash table */
759 if(debug) printk(KERN_INFO RECENT_NAME ": checkentry: Allocating %d for hash_table.\n",
760 sizeof(int)*ip_list_hash_size);
763 curr_table->hash_table = vmalloc(sizeof(int)*ip_list_hash_size);
764 if(!curr_table->hash_table) {
765 printk(KERN_INFO RECENT_NAME ": checkentry: unable to allocate for hash_table.\n");
767 vfree(curr_table->table);
772 for(c = 0; c < ip_list_hash_size; c++) {
773 curr_table->hash_table[c] = -1;
776 /* Allocate memory for the time info */
778 if(debug) printk(KERN_INFO RECENT_NAME ": checkentry: Allocating %d for time_info.\n",
779 sizeof(struct time_info_list)*ip_list_tot);
782 curr_table->time_info = vmalloc(sizeof(struct time_info_list)*ip_list_tot);
783 if(!curr_table->time_info) {
784 printk(KERN_INFO RECENT_NAME ": checkentry: unable to allocate for time_info.\n");
785 vfree(curr_table->hash_table);
787 vfree(curr_table->table);
791 for(c = 0; c < ip_list_tot; c++) {
792 curr_table->time_info[c].position = c;
793 curr_table->time_info[c].time = 0;
796 /* Put the new table in place */
797 spin_lock_bh(&recent_lock);
798 find_table = r_tables;
799 while( (last_table = find_table) && strncmp(info->name,find_table->name,IPT_RECENT_NAME_LEN) && (find_table = find_table->next) );
801 /* If a table already exists just increment the count on that table and return */
804 spin_unlock_bh(&recent_lock);
806 if(debug) printk(KERN_INFO RECENT_NAME ": checkentry: table found (%s), created by other process.\n",info->name);
808 vfree(curr_table->time_info);
809 vfree(curr_table->hash_table);
811 vfree(curr_table->table);
815 if(!last_table) r_tables = curr_table; else last_table->next = curr_table;
817 spin_unlock_bh(&recent_lock);
819 #ifdef CONFIG_PROC_FS
820 /* Create our proc 'status' entry. */
821 curr_table->status_proc = create_proc_entry(curr_table->name, ip_list_perms, proc_net_ipt_recent);
822 if (!curr_table->status_proc) {
823 printk(KERN_INFO RECENT_NAME ": checkentry: unable to allocate for /proc entry.\n");
824 /* Destroy the created table */
825 spin_lock_bh(&recent_lock);
827 curr_table = r_tables;
830 if(debug) printk(KERN_INFO RECENT_NAME ": checkentry() create_proc failed, no tables.\n");
832 spin_unlock_bh(&recent_lock);
835 while( strncmp(info->name,curr_table->name,IPT_RECENT_NAME_LEN) && (last_table = curr_table) && (curr_table = curr_table->next) );
838 if(debug) printk(KERN_INFO RECENT_NAME ": checkentry() create_proc failed, table already destroyed.\n");
840 spin_unlock_bh(&recent_lock);
843 if(last_table) last_table->next = curr_table->next; else r_tables = curr_table->next;
844 spin_unlock_bh(&recent_lock);
845 vfree(curr_table->time_info);
846 vfree(curr_table->hash_table);
848 vfree(curr_table->table);
853 curr_table->status_proc->owner = THIS_MODULE;
854 curr_table->status_proc->data = curr_table;
856 curr_table->status_proc->read_proc = ip_recent_get_info;
857 curr_table->status_proc->write_proc = ip_recent_ctrl;
858 #endif /* CONFIG_PROC_FS */
861 if(debug) printk(KERN_INFO RECENT_NAME ": checkentry() left.\n");
867 /* This function is called in the event that a rule matching this module is
869 * When this happens we need to check if there are no other rules matching
870 * the table given. If that is the case then we remove the table and clean
874 destroy(void *matchinfo, unsigned int matchsize)
876 const struct ipt_recent_info *info = matchinfo;
877 struct recent_ip_tables *curr_table, *last_table;
880 if(debug) printk(KERN_INFO RECENT_NAME ": destroy() entered.\n");
883 if(matchsize != IPT_ALIGN(sizeof(struct ipt_recent_info))) return;
885 /* Lock the linked list while we play with it */
886 spin_lock_bh(&recent_lock);
888 /* Look for an entry with this name already created */
889 /* Finds the end of the list and the entry before the end if current name does not exist */
891 curr_table = r_tables;
894 if(debug) printk(KERN_INFO RECENT_NAME ": destroy() No tables found, leaving.\n");
896 spin_unlock_bh(&recent_lock);
899 while( strncmp(info->name,curr_table->name,IPT_RECENT_NAME_LEN) && (last_table = curr_table) && (curr_table = curr_table->next) );
901 /* If a table does not exist then do nothing and return */
904 if(debug) printk(KERN_INFO RECENT_NAME ": destroy() table not found, leaving.\n");
906 spin_unlock_bh(&recent_lock);
912 /* If count is still non-zero then there are still rules referenceing it so we do nothing */
913 if(curr_table->count) {
915 if(debug) printk(KERN_INFO RECENT_NAME ": destroy() table found, non-zero count, leaving.\n");
917 spin_unlock_bh(&recent_lock);
922 if(debug) printk(KERN_INFO RECENT_NAME ": destroy() table found, zero count, removing.\n");
925 /* Count must be zero so we remove this table from the list */
926 if(last_table) last_table->next = curr_table->next; else r_tables = curr_table->next;
928 spin_unlock_bh(&recent_lock);
930 /* lock to make sure any late-runners still using this after we removed it from
931 * the list finish up then remove everything */
932 spin_lock_bh(&curr_table->list_lock);
933 spin_unlock_bh(&curr_table->list_lock);
935 #ifdef CONFIG_PROC_FS
936 if(curr_table->status_proc) remove_proc_entry(curr_table->name,proc_net_ipt_recent);
937 #endif /* CONFIG_PROC_FS */
938 vfree(curr_table->table[0].last_pkts);
939 vfree(curr_table->table);
940 vfree(curr_table->hash_table);
941 vfree(curr_table->time_info);
945 if(debug) printk(KERN_INFO RECENT_NAME ": destroy() left.\n");
951 /* This is the structure we pass to ipt_register to register our
952 * module with iptables.
954 static struct ipt_match recent_match = {
957 .checkentry = &checkentry,
962 /* Kernel module initialization. */
963 static int __init init(void)
968 #ifdef CONFIG_PROC_FS
969 proc_net_ipt_recent = proc_mkdir("ipt_recent",proc_net);
970 if(!proc_net_ipt_recent) return -ENOMEM;
973 if(ip_list_hash_size && ip_list_hash_size <= ip_list_tot) {
974 printk(KERN_WARNING RECENT_NAME ": ip_list_hash_size too small, resetting to default.\n");
975 ip_list_hash_size = 0;
978 if(!ip_list_hash_size) {
979 ip_list_hash_size = ip_list_tot*3;
981 while(ip_list_hash_size > count) count = count*2;
982 ip_list_hash_size = count;
986 if(debug) printk(KERN_INFO RECENT_NAME ": ip_list_hash_size: %d\n",ip_list_hash_size);
989 err = ipt_register_match(&recent_match);
991 remove_proc_entry("ipt_recent", proc_net);
995 /* Kernel module destruction. */
996 static void __exit fini(void)
998 ipt_unregister_match(&recent_match);
1000 remove_proc_entry("ipt_recent",proc_net);
1003 /* Register our module with the kernel. */