libiptc: Comment out two unused static functions.
[collectd.git] / src / owniptc / libiptc.c
1 /**
2  * This file was imported from the iptables sources.
3  * Copyright (C) 1999-2008 Netfilter Core Team
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  */
18
19 /* Library which manipulates firewall rules.  Version $Revision: 7138 $ */
20
21 /* Architecture of firewall rules is as follows:
22  *
23  * Chains go INPUT, FORWARD, OUTPUT then user chains.
24  * Each user chain starts with an ERROR node.
25  * Every chain ends with an unconditional jump: a RETURN for user chains,
26  * and a POLICY for built-ins.
27  */
28
29 /* (C) 1999 Paul ``Rusty'' Russell - Placed under the GNU GPL (See
30  * COPYING for details). 
31  * (C) 2000-2004 by the Netfilter Core Team <coreteam@netfilter.org>
32  *
33  * 2003-Jun-20: Harald Welte <laforge@netfilter.org>:
34  *      - Reimplementation of chain cache to use offsets instead of entries
35  * 2003-Jun-23: Harald Welte <laforge@netfilter.org>:
36  *      - performance optimization, sponsored by Astaro AG (http://www.astaro.com/)
37  *        don't rebuild the chain cache after every operation, instead fix it
38  *        up after a ruleset change.  
39  * 2004-Aug-18: Harald Welte <laforge@netfilter.org>:
40  *      - futher performance work: total reimplementation of libiptc.
41  *      - libiptc now has a real internal (linked-list) represntation of the
42  *        ruleset and a parser/compiler from/to this internal representation
43  *      - again sponsored by Astaro AG (http://www.astaro.com/)
44  */
45 #include <sys/types.h>
46 #include <sys/socket.h>
47 #include "xtables.h"
48
49 #include "linux_list.h"
50
51 //#define IPTC_DEBUG2 1
52
53 #ifdef IPTC_DEBUG2
54 #include <fcntl.h>
55 #define DEBUGP(x, args...)      fprintf(stderr, "%s: " x, __FUNCTION__, ## args)
56 #define DEBUGP_C(x, args...)    fprintf(stderr, x, ## args)
57 #else
58 #define DEBUGP(x, args...)
59 #define DEBUGP_C(x, args...)
60 #endif
61
62 #ifdef DEBUG
63 #define debug(x, args...)       fprintf(stderr, x, ## args)
64 #else
65 #define debug(x, args...)
66 #endif
67
68 static int sockfd = -1;
69 static int sockfd_use = 0;
70 static void *iptc_fn = NULL;
71
72 static const char *hooknames[] = {
73         [HOOK_PRE_ROUTING]      = "PREROUTING",
74         [HOOK_LOCAL_IN]         = "INPUT",
75         [HOOK_FORWARD]          = "FORWARD",
76         [HOOK_LOCAL_OUT]        = "OUTPUT",
77         [HOOK_POST_ROUTING]     = "POSTROUTING",
78 #ifdef HOOK_DROPPING
79         [HOOK_DROPPING]         = "DROPPING"
80 #endif
81 };
82
83 /* Convenience structures */
84 struct ipt_error_target
85 {
86         STRUCT_ENTRY_TARGET t;
87         char error[TABLE_MAXNAMELEN];
88 };
89
90 struct chain_head;
91 struct rule_head;
92
93 struct counter_map
94 {
95         enum {
96                 COUNTER_MAP_NOMAP,
97                 COUNTER_MAP_NORMAL_MAP,
98                 COUNTER_MAP_ZEROED,
99                 COUNTER_MAP_SET
100         } maptype;
101         unsigned int mappos;
102 };
103
104 enum iptcc_rule_type {
105         IPTCC_R_STANDARD,               /* standard target (ACCEPT, ...) */
106         IPTCC_R_MODULE,                 /* extension module (SNAT, ...) */
107         IPTCC_R_FALLTHROUGH,            /* fallthrough rule */
108         IPTCC_R_JUMP,                   /* jump to other chain */
109 };
110
111 struct rule_head
112 {
113         struct list_head list;
114         struct chain_head *chain;
115         struct counter_map counter_map;
116
117         unsigned int index;             /* index (needed for counter_map) */
118         unsigned int offset;            /* offset in rule blob */
119
120         enum iptcc_rule_type type;
121         struct chain_head *jump;        /* jump target, if IPTCC_R_JUMP */
122
123         unsigned int size;              /* size of entry data */
124         STRUCT_ENTRY entry[0];
125 };
126
127 struct chain_head
128 {
129         struct list_head list;
130         char name[TABLE_MAXNAMELEN];
131         unsigned int hooknum;           /* hook number+1 if builtin */
132         unsigned int references;        /* how many jumps reference us */
133         int verdict;                    /* verdict if builtin */
134
135         STRUCT_COUNTERS counters;       /* per-chain counters */
136         struct counter_map counter_map;
137
138         unsigned int num_rules;         /* number of rules in list */
139         struct list_head rules;         /* list of rules */
140
141         unsigned int index;             /* index (needed for jump resolval) */
142         unsigned int head_offset;       /* offset in rule blob */
143         unsigned int foot_index;        /* index (needed for counter_map) */
144         unsigned int foot_offset;       /* offset in rule blob */
145 };
146
147 STRUCT_TC_HANDLE
148 {
149         int changed;                     /* Have changes been made? */
150
151         struct list_head chains;
152         
153         struct chain_head *chain_iterator_cur;
154         struct rule_head *rule_iterator_cur;
155
156         unsigned int num_chains;         /* number of user defined chains */
157
158         struct chain_head **chain_index;   /* array for fast chain list access*/
159         unsigned int        chain_index_sz;/* size of chain index array */
160
161         STRUCT_GETINFO info;
162         STRUCT_GET_ENTRIES *entries;
163 };
164
165 /* allocate a new chain head for the cache */
166 static struct chain_head *iptcc_alloc_chain_head(const char *name, int hooknum)
167 {
168         struct chain_head *c = malloc(sizeof(*c));
169         if (!c)
170                 return NULL;
171         memset(c, 0, sizeof(*c));
172
173         strncpy(c->name, name, TABLE_MAXNAMELEN);
174         c->hooknum = hooknum;
175         INIT_LIST_HEAD(&c->rules);
176
177         return c;
178 }
179
180 /* allocate and initialize a new rule for the cache */
181 static struct rule_head *iptcc_alloc_rule(struct chain_head *c, unsigned int size)
182 {
183         struct rule_head *r = malloc(sizeof(*r)+size);
184         if (!r)
185                 return NULL;
186         memset(r, 0, sizeof(*r));
187
188         r->chain = c;
189         r->size = size;
190
191         return r;
192 }
193
194 /* notify us that the ruleset has been modified by the user */
195 static inline void
196 set_changed(TC_HANDLE_T h)
197 {
198         h->changed = 1;
199 }
200
201 #ifdef IPTC_DEBUG
202 static void do_check(TC_HANDLE_T h, unsigned int line);
203 #define CHECK(h) do { if (!getenv("IPTC_NO_CHECK")) do_check((h), __LINE__); } while(0)
204 #else
205 #define CHECK(h)
206 #endif
207
208
209 /**********************************************************************
210  * iptc blob utility functions (iptcb_*)
211  **********************************************************************/
212
213 static inline int
214 iptcb_get_number(const STRUCT_ENTRY *i,
215            const STRUCT_ENTRY *seek,
216            unsigned int *pos)
217 {
218         if (i == seek)
219                 return 1;
220         (*pos)++;
221         return 0;
222 }
223
224 static inline int
225 iptcb_get_entry_n(STRUCT_ENTRY *i,
226             unsigned int number,
227             unsigned int *pos,
228             STRUCT_ENTRY **pe)
229 {
230         if (*pos == number) {
231                 *pe = i;
232                 return 1;
233         }
234         (*pos)++;
235         return 0;
236 }
237
238 static inline STRUCT_ENTRY *
239 iptcb_get_entry(TC_HANDLE_T h, unsigned int offset)
240 {
241         return (STRUCT_ENTRY *)((char *)h->entries->entrytable + offset);
242 }
243
244 static unsigned int
245 iptcb_entry2index(const TC_HANDLE_T h, const STRUCT_ENTRY *seek)
246 {
247         unsigned int pos = 0;
248
249         if (ENTRY_ITERATE(h->entries->entrytable, h->entries->size,
250                           iptcb_get_number, seek, &pos) == 0) {
251                 fprintf(stderr, "ERROR: offset %u not an entry!\n",
252                         (unsigned int)((char *)seek - (char *)h->entries->entrytable));
253                 abort();
254         }
255         return pos;
256 }
257
258 static inline STRUCT_ENTRY *
259 iptcb_offset2entry(TC_HANDLE_T h, unsigned int offset)
260 {
261         return (STRUCT_ENTRY *) ((void *)h->entries->entrytable+offset);
262 }
263
264
265 static inline unsigned long
266 iptcb_entry2offset(const TC_HANDLE_T h, const STRUCT_ENTRY *e)
267 {
268         return (void *)e - (void *)h->entries->entrytable;
269 }
270
271 static inline unsigned int
272 iptcb_offset2index(const TC_HANDLE_T h, unsigned int offset)
273 {
274         return iptcb_entry2index(h, iptcb_offset2entry(h, offset));
275 }
276
277 /* Returns 0 if not hook entry, else hooknumber + 1 */
278 static inline unsigned int
279 iptcb_ent_is_hook_entry(STRUCT_ENTRY *e, TC_HANDLE_T h)
280 {
281         unsigned int i;
282
283         for (i = 0; i < NUMHOOKS; i++) {
284                 if ((h->info.valid_hooks & (1 << i))
285                     && iptcb_get_entry(h, h->info.hook_entry[i]) == e)
286                         return i+1;
287         }
288         return 0;
289 }
290
291
292 /**********************************************************************
293  * Chain index (cache utility) functions
294  **********************************************************************
295  * The chain index is an array with pointers into the chain list, with
296  * CHAIN_INDEX_BUCKET_LEN spacing.  This facilitates the ability to
297  * speedup chain list searching, by find a more optimal starting
298  * points when searching the linked list.
299  *
300  * The starting point can be found fast by using a binary search of
301  * the chain index. Thus, reducing the previous search complexity of
302  * O(n) to O(log(n/k) + k) where k is CHAIN_INDEX_BUCKET_LEN.
303  *
304  * A nice property of the chain index, is that the "bucket" list
305  * length is max CHAIN_INDEX_BUCKET_LEN (when just build, inserts will
306  * change this). Oppose to hashing, where the "bucket" list length can
307  * vary a lot.
308  */
309 #ifndef CHAIN_INDEX_BUCKET_LEN
310 #define CHAIN_INDEX_BUCKET_LEN 40
311 #endif
312
313 /* Another nice property of the chain index is that inserting/creating
314  * chains in chain list don't change the correctness of the chain
315  * index, it only causes longer lists in the buckets.
316  *
317  * To mitigate the performance penalty of longer bucket lists and the
318  * penalty of rebuilding, the chain index is rebuild only when
319  * CHAIN_INDEX_INSERT_MAX chains has been added.
320  */
321 #ifndef CHAIN_INDEX_INSERT_MAX
322 #define CHAIN_INDEX_INSERT_MAX 355
323 #endif
324
325 static inline unsigned int iptcc_is_builtin(struct chain_head *c);
326
327
328 /* Use binary search in the chain index array, to find a chain_head
329  * pointer closest to the place of the searched name element.
330  *
331  * Notes that, binary search (obviously) requires that the chain list
332  * is sorted by name.
333  */
334 static struct list_head *
335 iptcc_bsearch_chain_index(const char *name, unsigned int *idx, TC_HANDLE_T handle)
336 {
337         unsigned int pos, end;
338         int res;
339
340         struct list_head *list_pos;
341         list_pos=&handle->chains;
342
343         /* Check for empty array, e.g. no user defined chains */
344         if (handle->chain_index_sz == 0) {
345                 debug("WARNING: handle->chain_index_sz == 0\n");
346                 return list_pos;
347         }
348
349         /* Init */
350         end = handle->chain_index_sz;
351         pos = end / 2;
352
353         debug("bsearch Find chain:%s (pos:%d end:%d)\n", name, pos, end);
354
355         /* Loop */
356  loop:
357         if (!handle->chain_index[pos]) {
358                 fprintf(stderr, "ERROR: NULL pointer chain_index[%d]\n", pos);
359                 return &handle->chains; /* Be safe, return orig start pos */
360         }
361
362         res = strcmp(name, handle->chain_index[pos]->name);
363         list_pos = &handle->chain_index[pos]->list;
364         *idx = pos;
365
366         debug("bsearch Index[%d] name:%s res:%d ",
367               pos, handle->chain_index[pos]->name, res);
368
369         if (res == 0) { /* Found element, by direct hit */
370                 debug("[found] Direct hit pos:%d end:%d\n", pos, end);
371                 return list_pos;
372         } else if (res < 0) { /* Too far, jump back */
373                 end = pos;
374                 pos = pos / 2;
375
376                 /* Exit case: First element of array */
377                 if (end == 0) {
378                         debug("[found] Reached first array elem (end%d)\n",end);
379                         return list_pos;
380                 }
381                 debug("jump back to pos:%d (end:%d)\n", pos, end);
382                 goto loop;
383         } else if (res > 0 ){ /* Not far enough, jump forward */
384
385                 /* Exit case: Last element of array */
386                 if (pos == handle->chain_index_sz-1) {
387                         debug("[found] Last array elem (end:%d)\n", end);
388                         return list_pos;
389                 }
390
391                 /* Exit case: Next index less, thus elem in this list section */
392                 res = strcmp(name, handle->chain_index[pos+1]->name);
393                 if (res < 0) {
394                         debug("[found] closest list (end:%d)\n", end);
395                         return list_pos;
396                 }
397
398                 pos = (pos+end)/2;
399                 debug("jump forward to pos:%d (end:%d)\n", pos, end);
400                 goto loop;
401         }
402
403         return list_pos;
404 }
405
406 #ifdef DEBUG
407 /* Trivial linear search of chain index. Function used for verifying
408    the output of bsearch function */
409 static struct list_head *
410 iptcc_linearly_search_chain_index(const char *name, TC_HANDLE_T handle)
411 {
412         unsigned int i=0;
413         int res=0;
414
415         struct list_head *list_pos;
416         list_pos = &handle->chains;
417
418         if (handle->chain_index_sz)
419                 list_pos = &handle->chain_index[0]->list;
420
421         /* Linearly walk of chain index array */
422
423         for (i=0; i < handle->chain_index_sz; i++) {
424                 if (handle->chain_index[i]) {
425                         res = strcmp(handle->chain_index[i]->name, name);
426                         if (res > 0)
427                                 break; // One step too far
428                         list_pos = &handle->chain_index[i]->list;
429                         if (res == 0)
430                                 break; // Direct hit
431                 }
432         }
433
434         return list_pos;
435 }
436 #endif
437
438 static int iptcc_chain_index_alloc(TC_HANDLE_T h)
439 {
440         unsigned int list_length = CHAIN_INDEX_BUCKET_LEN;
441         unsigned int array_elems;
442         unsigned int array_mem;
443
444         /* Allocate memory for the chain index array */
445         array_elems = (h->num_chains / list_length) +
446                       (h->num_chains % list_length ? 1 : 0);
447         array_mem   = sizeof(h->chain_index) * array_elems;
448
449         debug("Alloc Chain index, elems:%d mem:%d bytes\n",
450               array_elems, array_mem);
451
452         h->chain_index = malloc(array_mem);
453         if (!h->chain_index) {
454                 h->chain_index_sz = 0;
455                 return -ENOMEM;
456         }
457         memset(h->chain_index, 0, array_mem);
458         h->chain_index_sz = array_elems;
459
460         return 1;
461 }
462
463 static void iptcc_chain_index_free(TC_HANDLE_T h)
464 {
465         h->chain_index_sz = 0;
466         free(h->chain_index);
467 }
468
469
470 #ifdef DEBUG
471 static void iptcc_chain_index_dump(TC_HANDLE_T h)
472 {
473         unsigned int i = 0;
474
475         /* Dump: contents of chain index array */
476         for (i=0; i < h->chain_index_sz; i++) {
477                 if (h->chain_index[i]) {
478                         fprintf(stderr, "Chain index[%d].name: %s\n",
479                                 i, h->chain_index[i]->name);
480                 }
481         }
482 }
483 #endif
484
485 /* Build the chain index */
486 static int iptcc_chain_index_build(TC_HANDLE_T h)
487 {
488         unsigned int list_length = CHAIN_INDEX_BUCKET_LEN;
489         unsigned int chains = 0;
490         unsigned int cindex = 0;
491         struct chain_head *c;
492
493         /* Build up the chain index array here */
494         debug("Building chain index\n");
495
496         debug("Number of user defined chains:%d bucket_sz:%d array_sz:%d\n",
497                 h->num_chains, list_length, h->chain_index_sz);
498
499         if (h->chain_index_sz == 0)
500                 return 0;
501
502         list_for_each_entry(c, &h->chains, list) {
503
504                 /* Issue: The index array needs to start after the
505                  * builtin chains, as they are not sorted */
506                 if (!iptcc_is_builtin(c)) {
507                         cindex=chains / list_length;
508
509                         /* Safe guard, break out on array limit, this
510                          * is useful if chains are added and array is
511                          * rebuild, without realloc of memory. */
512                         if (cindex >= h->chain_index_sz)
513                                 break;
514
515                         if ((chains % list_length)== 0) {
516                                 debug("\nIndex[%d] Chains:", cindex);
517                                 h->chain_index[cindex] = c;
518                         }
519                         chains++;
520                 }
521                 debug("%s, ", c->name);
522         }
523         debug("\n");
524
525         return 1;
526 }
527
528 static int iptcc_chain_index_rebuild(TC_HANDLE_T h)
529 {
530         debug("REBUILD chain index array\n");
531         iptcc_chain_index_free(h);
532         if ((iptcc_chain_index_alloc(h)) < 0)
533                 return -ENOMEM;
534         iptcc_chain_index_build(h);
535         return 1;
536 }
537
538 /* Delete chain (pointer) from index array.  Removing an element from
539  * the chain list only affects the chain index array, if the chain
540  * index points-to/uses that list pointer.
541  *
542  * There are different strategies, the simple and safe is to rebuild
543  * the chain index every time.  The more advanced is to update the
544  * array index to point to the next element, but that requires some
545  * house keeping and boundry checks.  The advanced is implemented, as
546  * the simple approach behaves badly when all chains are deleted
547  * because list_for_each processing will always hit the first chain
548  * index, thus causing a rebuild for every chain.
549  */
550 static int iptcc_chain_index_delete_chain(struct chain_head *c, TC_HANDLE_T h)
551 {
552         struct list_head *index_ptr, *index_ptr2, *next;
553         struct chain_head *c2;
554         unsigned int idx, idx2;
555
556         index_ptr = iptcc_bsearch_chain_index(c->name, &idx, h);
557
558         debug("Del chain[%s] c->list:%p index_ptr:%p\n",
559               c->name, &c->list, index_ptr);
560
561         /* Save the next pointer */
562         next = c->list.next;
563         list_del(&c->list);
564
565         if (index_ptr == &c->list) { /* Chain used as index ptr */
566
567                 /* See if its possible to avoid a rebuild, by shifting
568                  * to next pointer.  Its possible if the next pointer
569                  * is located in the same index bucket.
570                  */
571                 c2         = list_entry(next, struct chain_head, list);
572                 index_ptr2 = iptcc_bsearch_chain_index(c2->name, &idx2, h);
573                 if (idx != idx2) {
574                         /* Rebuild needed */
575                         return iptcc_chain_index_rebuild(h);
576                 } else {
577                         /* Avoiding rebuild */
578                         debug("Update cindex[%d] with next ptr name:[%s]\n",
579                               idx, c2->name);
580                         h->chain_index[idx]=c2;
581                         return 0;
582                 }
583         }
584         return 0;
585 }
586
587
588 /**********************************************************************
589  * iptc cache utility functions (iptcc_*)
590  **********************************************************************/
591
592 /* Is the given chain builtin (1) or user-defined (0) */
593 static inline unsigned int iptcc_is_builtin(struct chain_head *c)
594 {
595         return (c->hooknum ? 1 : 0);
596 }
597
598 /* Get a specific rule within a chain */
599 static struct rule_head *iptcc_get_rule_num(struct chain_head *c,
600                                             unsigned int rulenum)
601 {
602         struct rule_head *r;
603         unsigned int num = 0;
604
605         list_for_each_entry(r, &c->rules, list) {
606                 num++;
607                 if (num == rulenum)
608                         return r;
609         }
610         return NULL;
611 }
612
613 /* Get a specific rule within a chain backwards */
614 static struct rule_head *iptcc_get_rule_num_reverse(struct chain_head *c,
615                                             unsigned int rulenum)
616 {
617         struct rule_head *r;
618         unsigned int num = 0;
619
620         list_for_each_entry_reverse(r, &c->rules, list) {
621                 num++;
622                 if (num == rulenum)
623                         return r;
624         }
625         return NULL;
626 }
627
628 /* Returns chain head if found, otherwise NULL. */
629 static struct chain_head *
630 iptcc_find_chain_by_offset(TC_HANDLE_T handle, unsigned int offset)
631 {
632         struct list_head *pos;
633
634         if (list_empty(&handle->chains))
635                 return NULL;
636
637         list_for_each(pos, &handle->chains) {
638                 struct chain_head *c = list_entry(pos, struct chain_head, list);
639                 if (offset >= c->head_offset && offset <= c->foot_offset)
640                         return c;
641         }
642
643         return NULL;
644 }
645
646 /* Returns chain head if found, otherwise NULL. */
647 static struct chain_head *
648 iptcc_find_label(const char *name, TC_HANDLE_T handle)
649 {
650         struct list_head *pos;
651         struct list_head *list_start_pos;
652         unsigned int i=0;
653         int res;
654
655         if (list_empty(&handle->chains))
656                 return NULL;
657
658         /* First look at builtin chains */
659         list_for_each(pos, &handle->chains) {
660                 struct chain_head *c = list_entry(pos, struct chain_head, list);
661                 if (!iptcc_is_builtin(c))
662                         break;
663                 if (!strcmp(c->name, name))
664                         return c;
665         }
666
667         /* Find a smart place to start the search via chain index */
668         //list_start_pos = iptcc_linearly_search_chain_index(name, handle);
669         list_start_pos = iptcc_bsearch_chain_index(name, &i, handle);
670
671         /* Handel if bsearch bails out early */
672         if (list_start_pos == &handle->chains) {
673                 list_start_pos = pos;
674         }
675 #ifdef DEBUG
676         else {
677                 /* Verify result of bsearch against linearly index search */
678                 struct list_head *test_pos;
679                 struct chain_head *test_c, *tmp_c;
680                 test_pos = iptcc_linearly_search_chain_index(name, handle);
681                 if (list_start_pos != test_pos) {
682                         debug("BUG in chain_index search\n");
683                         test_c=list_entry(test_pos,      struct chain_head,list);
684                         tmp_c =list_entry(list_start_pos,struct chain_head,list);
685                         debug("Verify search found:\n");
686                         debug(" Chain:%s\n", test_c->name);
687                         debug("BSearch found:\n");
688                         debug(" Chain:%s\n", tmp_c->name);
689                         exit(42);
690                 }
691         }
692 #endif
693
694         /* Initial/special case, no user defined chains */
695         if (handle->num_chains == 0)
696                 return NULL;
697
698         /* Start searching through the chain list */
699         list_for_each(pos, list_start_pos->prev) {
700                 struct chain_head *c = list_entry(pos, struct chain_head, list);
701                 res = strcmp(c->name, name);
702                 debug("List search name:%s == %s res:%d\n", name, c->name, res);
703                 if (res==0)
704                         return c;
705
706                 /* We can stop earlier as we know list is sorted */
707                 if (res>0 && !iptcc_is_builtin(c)) { /* Walked too far*/
708                         debug(" Not in list, walked too far, sorted list\n");
709                         return NULL;
710                 }
711
712                 /* Stop on wrap around, if list head is reached */
713                 if (pos == &handle->chains) {
714                         debug("Stop, list head reached\n");
715                         return NULL;
716                 }
717         }
718
719         debug("List search NOT found name:%s\n", name);
720         return NULL;
721 }
722
723 /* called when rule is to be removed from cache */
724 static void iptcc_delete_rule(struct rule_head *r)
725 {
726         DEBUGP("deleting rule %p (offset %u)\n", r, r->offset);
727         /* clean up reference count of called chain */
728         if (r->type == IPTCC_R_JUMP
729             && r->jump)
730                 r->jump->references--;
731
732         list_del(&r->list);
733         free(r);
734 }
735
736
737 /**********************************************************************
738  * RULESET PARSER (blob -> cache)
739  **********************************************************************/
740
741 /* Delete policy rule of previous chain, since cache doesn't contain
742  * chain policy rules.
743  * WARNING: This function has ugly design and relies on a lot of context, only
744  * to be called from specific places within the parser */
745 static int __iptcc_p_del_policy(TC_HANDLE_T h, unsigned int num)
746 {
747         if (h->chain_iterator_cur) {
748                 /* policy rule is last rule */
749                 struct rule_head *pr = (struct rule_head *)
750                         h->chain_iterator_cur->rules.prev;
751
752                 /* save verdict */
753                 h->chain_iterator_cur->verdict = 
754                         *(int *)GET_TARGET(pr->entry)->data;
755
756                 /* save counter and counter_map information */
757                 h->chain_iterator_cur->counter_map.maptype = 
758                                                 COUNTER_MAP_NORMAL_MAP;
759                 h->chain_iterator_cur->counter_map.mappos = num-1;
760                 memcpy(&h->chain_iterator_cur->counters, &pr->entry->counters, 
761                         sizeof(h->chain_iterator_cur->counters));
762
763                 /* foot_offset points to verdict rule */
764                 h->chain_iterator_cur->foot_index = num;
765                 h->chain_iterator_cur->foot_offset = pr->offset;
766
767                 /* delete rule from cache */
768                 iptcc_delete_rule(pr);
769                 h->chain_iterator_cur->num_rules--;
770
771                 return 1;
772         }
773         return 0;
774 }
775
776 /* alphabetically insert a chain into the list */
777 static inline void iptc_insert_chain(TC_HANDLE_T h, struct chain_head *c)
778 {
779         struct chain_head *tmp;
780         struct list_head  *list_start_pos;
781         unsigned int i=1;
782
783         /* Find a smart place to start the insert search */
784         list_start_pos = iptcc_bsearch_chain_index(c->name, &i, h);
785
786         /* Handle the case, where chain.name is smaller than index[0] */
787         if (i==0 && strcmp(c->name, h->chain_index[0]->name) <= 0) {
788                 h->chain_index[0] = c; /* Update chain index head */
789                 list_start_pos = h->chains.next;
790                 debug("Update chain_index[0] with %s\n", c->name);
791         }
792
793         /* Handel if bsearch bails out early */
794         if (list_start_pos == &h->chains) {
795                 list_start_pos = h->chains.next;
796         }
797
798         /* sort only user defined chains */
799         if (!c->hooknum) {
800                 list_for_each_entry(tmp, list_start_pos->prev, list) {
801                         if (!tmp->hooknum && strcmp(c->name, tmp->name) <= 0) {
802                                 list_add(&c->list, tmp->list.prev);
803                                 return;
804                         }
805
806                         /* Stop if list head is reached */
807                         if (&tmp->list == &h->chains) {
808                                 debug("Insert, list head reached add to tail\n");
809                                 break;
810                         }
811                 }
812         }
813
814         /* survived till end of list: add at tail */
815         list_add_tail(&c->list, &h->chains);
816 }
817
818 /* Another ugly helper function split out of cache_add_entry to make it less
819  * spaghetti code */
820 static void __iptcc_p_add_chain(TC_HANDLE_T h, struct chain_head *c,
821                                 unsigned int offset, unsigned int *num)
822 {
823         struct list_head  *tail = h->chains.prev;
824         struct chain_head *ctail;
825
826         __iptcc_p_del_policy(h, *num);
827
828         c->head_offset = offset;
829         c->index = *num;
830
831         /* Chains from kernel are already sorted, as they are inserted
832          * sorted. But there exists an issue when shifting to 1.4.0
833          * from an older version, as old versions allow last created
834          * chain to be unsorted.
835          */
836         if (iptcc_is_builtin(c)) /* Only user defined chains are sorted*/
837                 list_add_tail(&c->list, &h->chains);
838         else {
839                 ctail = list_entry(tail, struct chain_head, list);
840                 if (strcmp(c->name, ctail->name) > 0)
841                         list_add_tail(&c->list, &h->chains);/* Already sorted*/
842                 else
843                         iptc_insert_chain(h, c);/* Was not sorted */
844         }
845
846         h->chain_iterator_cur = c;
847 }
848
849 /* main parser function: add an entry from the blob to the cache */
850 static int cache_add_entry(STRUCT_ENTRY *e, 
851                            TC_HANDLE_T h, 
852                            STRUCT_ENTRY **prev,
853                            unsigned int *num)
854 {
855         unsigned int builtin;
856         unsigned int offset = (char *)e - (char *)h->entries->entrytable;
857
858         DEBUGP("entering...");
859
860         /* Last entry ("policy rule"). End it.*/
861         if (iptcb_entry2offset(h,e) + e->next_offset == h->entries->size) {
862                 /* This is the ERROR node at the end of the chain */
863                 DEBUGP_C("%u:%u: end of table:\n", *num, offset);
864
865                 __iptcc_p_del_policy(h, *num);
866
867                 h->chain_iterator_cur = NULL;
868                 goto out_inc;
869         }
870
871         /* We know this is the start of a new chain if it's an ERROR
872          * target, or a hook entry point */
873
874         if (strcmp(GET_TARGET(e)->u.user.name, ERROR_TARGET) == 0) {
875                 struct chain_head *c = 
876                         iptcc_alloc_chain_head((const char *)GET_TARGET(e)->data, 0);
877                 DEBUGP_C("%u:%u:new userdefined chain %s: %p\n", *num, offset, 
878                         (char *)c->name, c);
879                 if (!c) {
880                         errno = -ENOMEM;
881                         return -1;
882                 }
883                 h->num_chains++; /* New user defined chain */
884
885                 __iptcc_p_add_chain(h, c, offset, num);
886
887         } else if ((builtin = iptcb_ent_is_hook_entry(e, h)) != 0) {
888                 struct chain_head *c =
889                         iptcc_alloc_chain_head((char *)hooknames[builtin-1], 
890                                                 builtin);
891                 DEBUGP_C("%u:%u new builtin chain: %p (rules=%p)\n", 
892                         *num, offset, c, &c->rules);
893                 if (!c) {
894                         errno = -ENOMEM;
895                         return -1;
896                 }
897
898                 c->hooknum = builtin;
899
900                 __iptcc_p_add_chain(h, c, offset, num);
901
902                 /* FIXME: this is ugly. */
903                 goto new_rule;
904         } else {
905                 /* has to be normal rule */
906                 struct rule_head *r;
907 new_rule:
908
909                 if (!(r = iptcc_alloc_rule(h->chain_iterator_cur, 
910                                            e->next_offset))) {
911                         errno = ENOMEM;
912                         return -1;
913                 }
914                 DEBUGP_C("%u:%u normal rule: %p: ", *num, offset, r);
915
916                 r->index = *num;
917                 r->offset = offset;
918                 memcpy(r->entry, e, e->next_offset);
919                 r->counter_map.maptype = COUNTER_MAP_NORMAL_MAP;
920                 r->counter_map.mappos = r->index;
921
922                 /* handling of jumps, etc. */
923                 if (!strcmp(GET_TARGET(e)->u.user.name, STANDARD_TARGET)) {
924                         STRUCT_STANDARD_TARGET *t;
925
926                         t = (STRUCT_STANDARD_TARGET *)GET_TARGET(e);
927                         if (t->target.u.target_size
928                             != ALIGN(sizeof(STRUCT_STANDARD_TARGET))) {
929                                 errno = EINVAL;
930                                 return -1;
931                         }
932
933                         if (t->verdict < 0) {
934                                 DEBUGP_C("standard, verdict=%d\n", t->verdict);
935                                 r->type = IPTCC_R_STANDARD;
936                         } else if (t->verdict == r->offset+e->next_offset) {
937                                 DEBUGP_C("fallthrough\n");
938                                 r->type = IPTCC_R_FALLTHROUGH;
939                         } else {
940                                 DEBUGP_C("jump, target=%u\n", t->verdict);
941                                 r->type = IPTCC_R_JUMP;
942                                 /* Jump target fixup has to be deferred
943                                  * until second pass, since we migh not
944                                  * yet have parsed the target */
945                         }
946                 } else {
947                         DEBUGP_C("module, target=%s\n", GET_TARGET(e)->u.user.name);
948                         r->type = IPTCC_R_MODULE;
949                 }
950
951                 list_add_tail(&r->list, &h->chain_iterator_cur->rules);
952                 h->chain_iterator_cur->num_rules++;
953         }
954 out_inc:
955         (*num)++;
956         return 0;
957 }
958
959
960 /* parse an iptables blob into it's pieces */
961 static int parse_table(TC_HANDLE_T h)
962 {
963         STRUCT_ENTRY *prev;
964         unsigned int num = 0;
965         struct chain_head *c;
966
967         /* First pass: over ruleset blob */
968         ENTRY_ITERATE(h->entries->entrytable, h->entries->size,
969                         cache_add_entry, h, &prev, &num);
970
971         /* Build the chain index, used for chain list search speedup */
972         if ((iptcc_chain_index_alloc(h)) < 0)
973                 return -ENOMEM;
974         iptcc_chain_index_build(h);
975
976         /* Second pass: fixup parsed data from first pass */
977         list_for_each_entry(c, &h->chains, list) {
978                 struct rule_head *r;
979                 list_for_each_entry(r, &c->rules, list) {
980                         struct chain_head *lc;
981                         STRUCT_STANDARD_TARGET *t;
982
983                         if (r->type != IPTCC_R_JUMP)
984                                 continue;
985
986                         t = (STRUCT_STANDARD_TARGET *)GET_TARGET(r->entry);
987                         lc = iptcc_find_chain_by_offset(h, t->verdict);
988                         if (!lc)
989                                 return -1;
990                         r->jump = lc;
991                         lc->references++;
992                 }
993         }
994
995         /* FIXME: sort chains */
996
997         return 1;
998 }
999
1000
1001 /**********************************************************************
1002  * RULESET COMPILATION (cache -> blob)
1003  **********************************************************************/
1004
1005 /* Convenience structures */
1006 struct iptcb_chain_start{
1007         STRUCT_ENTRY e;
1008         struct ipt_error_target name;
1009 };
1010 #define IPTCB_CHAIN_START_SIZE  (sizeof(STRUCT_ENTRY) +                 \
1011                                  ALIGN(sizeof(struct ipt_error_target)))
1012
1013 struct iptcb_chain_foot {
1014         STRUCT_ENTRY e;
1015         STRUCT_STANDARD_TARGET target;
1016 };
1017 #define IPTCB_CHAIN_FOOT_SIZE   (sizeof(STRUCT_ENTRY) +                 \
1018                                  ALIGN(sizeof(STRUCT_STANDARD_TARGET)))
1019
1020 struct iptcb_chain_error {
1021         STRUCT_ENTRY entry;
1022         struct ipt_error_target target;
1023 };
1024 #define IPTCB_CHAIN_ERROR_SIZE  (sizeof(STRUCT_ENTRY) +                 \
1025                                  ALIGN(sizeof(struct ipt_error_target)))
1026
1027
1028
1029 /* compile rule from cache into blob */
1030 static inline int iptcc_compile_rule (TC_HANDLE_T h, STRUCT_REPLACE *repl, struct rule_head *r)
1031 {
1032         /* handle jumps */
1033         if (r->type == IPTCC_R_JUMP) {
1034                 STRUCT_STANDARD_TARGET *t;
1035                 t = (STRUCT_STANDARD_TARGET *)GET_TARGET(r->entry);
1036                 /* memset for memcmp convenience on delete/replace */
1037                 memset(t->target.u.user.name, 0, FUNCTION_MAXNAMELEN);
1038                 strcpy(t->target.u.user.name, STANDARD_TARGET);
1039                 /* Jumps can only happen to builtin chains, so we
1040                  * can safely assume that they always have a header */
1041                 t->verdict = r->jump->head_offset + IPTCB_CHAIN_START_SIZE;
1042         } else if (r->type == IPTCC_R_FALLTHROUGH) {
1043                 STRUCT_STANDARD_TARGET *t;
1044                 t = (STRUCT_STANDARD_TARGET *)GET_TARGET(r->entry);
1045                 t->verdict = r->offset + r->size;
1046         }
1047         
1048         /* copy entry from cache to blob */
1049         memcpy((char *)repl->entries+r->offset, r->entry, r->size);
1050
1051         return 1;
1052 }
1053
1054 /* compile chain from cache into blob */
1055 static int iptcc_compile_chain(TC_HANDLE_T h, STRUCT_REPLACE *repl, struct chain_head *c)
1056 {
1057         int ret;
1058         struct rule_head *r;
1059         struct iptcb_chain_start *head;
1060         struct iptcb_chain_foot *foot;
1061
1062         /* only user-defined chains have heaer */
1063         if (!iptcc_is_builtin(c)) {
1064                 /* put chain header in place */
1065                 head = (void *)repl->entries + c->head_offset;
1066                 head->e.target_offset = sizeof(STRUCT_ENTRY);
1067                 head->e.next_offset = IPTCB_CHAIN_START_SIZE;
1068                 strcpy(head->name.t.u.user.name, ERROR_TARGET);
1069                 head->name.t.u.target_size = 
1070                                 ALIGN(sizeof(struct ipt_error_target));
1071                 strcpy(head->name.error, c->name);
1072         } else {
1073                 repl->hook_entry[c->hooknum-1] = c->head_offset;        
1074                 repl->underflow[c->hooknum-1] = c->foot_offset;
1075         }
1076
1077         /* iterate over rules */
1078         list_for_each_entry(r, &c->rules, list) {
1079                 ret = iptcc_compile_rule(h, repl, r);
1080                 if (ret < 0)
1081                         return ret;
1082         }
1083
1084         /* put chain footer in place */
1085         foot = (void *)repl->entries + c->foot_offset;
1086         foot->e.target_offset = sizeof(STRUCT_ENTRY);
1087         foot->e.next_offset = IPTCB_CHAIN_FOOT_SIZE;
1088         strcpy(foot->target.target.u.user.name, STANDARD_TARGET);
1089         foot->target.target.u.target_size =
1090                                 ALIGN(sizeof(STRUCT_STANDARD_TARGET));
1091         /* builtin targets have verdict, others return */
1092         if (iptcc_is_builtin(c))
1093                 foot->target.verdict = c->verdict;
1094         else
1095                 foot->target.verdict = RETURN;
1096         /* set policy-counters */
1097         memcpy(&foot->e.counters, &c->counters, sizeof(STRUCT_COUNTERS));
1098
1099         return 0;
1100 }
1101
1102 /* calculate offset and number for every rule in the cache */
1103 static int iptcc_compile_chain_offsets(TC_HANDLE_T h, struct chain_head *c,
1104                                        unsigned int *offset, unsigned int *num)
1105 {
1106         struct rule_head *r;
1107
1108         c->head_offset = *offset;
1109         DEBUGP("%s: chain_head %u, offset=%u\n", c->name, *num, *offset);
1110
1111         if (!iptcc_is_builtin(c))  {
1112                 /* Chain has header */
1113                 *offset += sizeof(STRUCT_ENTRY) 
1114                              + ALIGN(sizeof(struct ipt_error_target));
1115                 (*num)++;
1116         }
1117
1118         list_for_each_entry(r, &c->rules, list) {
1119                 DEBUGP("rule %u, offset=%u, index=%u\n", *num, *offset, *num);
1120                 r->offset = *offset;
1121                 r->index = *num;
1122                 *offset += r->size;
1123                 (*num)++;
1124         }
1125
1126         DEBUGP("%s; chain_foot %u, offset=%u, index=%u\n", c->name, *num, 
1127                 *offset, *num);
1128         c->foot_offset = *offset;
1129         c->foot_index = *num;
1130         *offset += sizeof(STRUCT_ENTRY)
1131                    + ALIGN(sizeof(STRUCT_STANDARD_TARGET));
1132         (*num)++;
1133
1134         return 1;
1135 }
1136
1137 /* put the pieces back together again */
1138 static int iptcc_compile_table_prep(TC_HANDLE_T h, unsigned int *size)
1139 {
1140         struct chain_head *c;
1141         unsigned int offset = 0, num = 0;
1142         int ret = 0;
1143
1144         /* First pass: calculate offset for every rule */
1145         list_for_each_entry(c, &h->chains, list) {
1146                 ret = iptcc_compile_chain_offsets(h, c, &offset, &num);
1147                 if (ret < 0)
1148                         return ret;
1149         }
1150
1151         /* Append one error rule at end of chain */
1152         num++;
1153         offset += sizeof(STRUCT_ENTRY)
1154                   + ALIGN(sizeof(struct ipt_error_target));
1155
1156         /* ruleset size is now in offset */
1157         *size = offset;
1158         return num;
1159 }
1160
1161 static int iptcc_compile_table(TC_HANDLE_T h, STRUCT_REPLACE *repl)
1162 {
1163         struct chain_head *c;
1164         struct iptcb_chain_error *error;
1165
1166         /* Second pass: copy from cache to offsets, fill in jumps */
1167         list_for_each_entry(c, &h->chains, list) {
1168                 int ret = iptcc_compile_chain(h, repl, c);
1169                 if (ret < 0)
1170                         return ret;
1171         }
1172
1173         /* Append error rule at end of chain */
1174         error = (void *)repl->entries + repl->size - IPTCB_CHAIN_ERROR_SIZE;
1175         error->entry.target_offset = sizeof(STRUCT_ENTRY);
1176         error->entry.next_offset = IPTCB_CHAIN_ERROR_SIZE;
1177         error->target.t.u.user.target_size = 
1178                 ALIGN(sizeof(struct ipt_error_target));
1179         strcpy((char *)&error->target.t.u.user.name, ERROR_TARGET);
1180         strcpy((char *)&error->target.error, "ERROR");
1181
1182         return 1;
1183 }
1184
1185 /**********************************************************************
1186  * EXTERNAL API (operates on cache only)
1187  **********************************************************************/
1188
1189 /* Allocate handle of given size */
1190 static TC_HANDLE_T
1191 alloc_handle(const char *tablename, unsigned int size, unsigned int num_rules)
1192 {
1193         size_t len;
1194         TC_HANDLE_T h;
1195
1196         len = sizeof(STRUCT_TC_HANDLE) + size;
1197
1198         h = malloc(sizeof(STRUCT_TC_HANDLE));
1199         if (!h) {
1200                 errno = ENOMEM;
1201                 return NULL;
1202         }
1203         memset(h, 0, sizeof(*h));
1204         INIT_LIST_HEAD(&h->chains);
1205         strcpy(h->info.name, tablename);
1206
1207         h->entries = malloc(sizeof(STRUCT_GET_ENTRIES) + size);
1208         if (!h->entries)
1209                 goto out_free_handle;
1210
1211         strcpy(h->entries->name, tablename);
1212         h->entries->size = size;
1213
1214         return h;
1215
1216 out_free_handle:
1217         free(h);
1218
1219         return NULL;
1220 }
1221
1222
1223 TC_HANDLE_T
1224 TC_INIT(const char *tablename)
1225 {
1226         TC_HANDLE_T h;
1227         STRUCT_GETINFO info;
1228         unsigned int tmp;
1229         socklen_t s;
1230
1231         iptc_fn = TC_INIT;
1232
1233         if (strlen(tablename) >= TABLE_MAXNAMELEN) {
1234                 errno = EINVAL;
1235                 return NULL;
1236         }
1237         
1238         if (sockfd_use == 0) {
1239                 sockfd = socket(TC_AF, SOCK_RAW, IPPROTO_RAW);
1240                 if (sockfd < 0)
1241                         return NULL;
1242         }
1243         sockfd_use++;
1244 retry:
1245         s = sizeof(info);
1246
1247         strcpy(info.name, tablename);
1248         if (getsockopt(sockfd, TC_IPPROTO, SO_GET_INFO, &info, &s) < 0) {
1249                 if (--sockfd_use == 0) {
1250                         close(sockfd);
1251                         sockfd = -1;
1252                 }
1253                 return NULL;
1254         }
1255
1256         DEBUGP("valid_hooks=0x%08x, num_entries=%u, size=%u\n",
1257                 info.valid_hooks, info.num_entries, info.size);
1258
1259         if ((h = alloc_handle(info.name, info.size, info.num_entries))
1260             == NULL) {
1261                 if (--sockfd_use == 0) {
1262                         close(sockfd);
1263                         sockfd = -1;
1264                 }
1265                 return NULL;
1266         }
1267
1268         /* Initialize current state */
1269         h->info = info;
1270
1271         h->entries->size = h->info.size;
1272
1273         tmp = sizeof(STRUCT_GET_ENTRIES) + h->info.size;
1274
1275         if (getsockopt(sockfd, TC_IPPROTO, SO_GET_ENTRIES, h->entries,
1276                        &tmp) < 0)
1277                 goto error;
1278
1279 #ifdef IPTC_DEBUG2
1280         {
1281                 int fd = open("/tmp/libiptc-so_get_entries.blob", 
1282                                 O_CREAT|O_WRONLY);
1283                 if (fd >= 0) {
1284                         write(fd, h->entries, tmp);
1285                         close(fd);
1286                 }
1287         }
1288 #endif
1289
1290         if (parse_table(h) < 0)
1291                 goto error;
1292
1293         CHECK(h);
1294         return h;
1295 error:
1296         TC_FREE(&h);
1297         /* A different process changed the ruleset size, retry */
1298         if (errno == EAGAIN)
1299                 goto retry;
1300         return NULL;
1301 }
1302
1303 void
1304 TC_FREE(TC_HANDLE_T *h)
1305 {
1306         struct chain_head *c, *tmp;
1307
1308         iptc_fn = TC_FREE;
1309         if (--sockfd_use == 0) {
1310                 close(sockfd);
1311                 sockfd = -1;
1312         }
1313
1314         list_for_each_entry_safe(c, tmp, &(*h)->chains, list) {
1315                 struct rule_head *r, *rtmp;
1316
1317                 list_for_each_entry_safe(r, rtmp, &c->rules, list) {
1318                         free(r);
1319                 }
1320
1321                 free(c);
1322         }
1323
1324         iptcc_chain_index_free(*h);
1325
1326         free((*h)->entries);
1327         free(*h);
1328
1329         *h = NULL;
1330 }
1331
1332 static inline int
1333 print_match(const STRUCT_ENTRY_MATCH *m)
1334 {
1335         printf("Match name: `%s'\n", m->u.user.name);
1336         return 0;
1337 }
1338
1339 static int dump_entry(STRUCT_ENTRY *e, const TC_HANDLE_T handle);
1340  
1341 void
1342 TC_DUMP_ENTRIES(const TC_HANDLE_T handle)
1343 {
1344         iptc_fn = TC_DUMP_ENTRIES;
1345         CHECK(handle);
1346
1347         printf("libiptc v%s. %u bytes.\n",
1348                XTABLES_VERSION, handle->entries->size);
1349         printf("Table `%s'\n", handle->info.name);
1350         printf("Hooks: pre/in/fwd/out/post = %u/%u/%u/%u/%u\n",
1351                handle->info.hook_entry[HOOK_PRE_ROUTING],
1352                handle->info.hook_entry[HOOK_LOCAL_IN],
1353                handle->info.hook_entry[HOOK_FORWARD],
1354                handle->info.hook_entry[HOOK_LOCAL_OUT],
1355                handle->info.hook_entry[HOOK_POST_ROUTING]);
1356         printf("Underflows: pre/in/fwd/out/post = %u/%u/%u/%u/%u\n",
1357                handle->info.underflow[HOOK_PRE_ROUTING],
1358                handle->info.underflow[HOOK_LOCAL_IN],
1359                handle->info.underflow[HOOK_FORWARD],
1360                handle->info.underflow[HOOK_LOCAL_OUT],
1361                handle->info.underflow[HOOK_POST_ROUTING]);
1362
1363         ENTRY_ITERATE(handle->entries->entrytable, handle->entries->size,
1364                       dump_entry, handle);
1365 }
1366
1367 /* Does this chain exist? */
1368 int TC_IS_CHAIN(const char *chain, const TC_HANDLE_T handle)
1369 {
1370         iptc_fn = TC_IS_CHAIN;
1371         return iptcc_find_label(chain, handle) != NULL;
1372 }
1373
1374 static void iptcc_chain_iterator_advance(TC_HANDLE_T handle)
1375 {
1376         struct chain_head *c = handle->chain_iterator_cur;
1377
1378         if (c->list.next == &handle->chains)
1379                 handle->chain_iterator_cur = NULL;
1380         else
1381                 handle->chain_iterator_cur = 
1382                         list_entry(c->list.next, struct chain_head, list);
1383 }
1384
1385 /* Iterator functions to run through the chains. */
1386 const char *
1387 TC_FIRST_CHAIN(TC_HANDLE_T *handle)
1388 {
1389         struct chain_head *c = list_entry((*handle)->chains.next,
1390                                           struct chain_head, list);
1391
1392         iptc_fn = TC_FIRST_CHAIN;
1393
1394
1395         if (list_empty(&(*handle)->chains)) {
1396                 DEBUGP(": no chains\n");
1397                 return NULL;
1398         }
1399
1400         (*handle)->chain_iterator_cur = c;
1401         iptcc_chain_iterator_advance(*handle);
1402
1403         DEBUGP(": returning `%s'\n", c->name);
1404         return c->name;
1405 }
1406
1407 /* Iterator functions to run through the chains.  Returns NULL at end. */
1408 const char *
1409 TC_NEXT_CHAIN(TC_HANDLE_T *handle)
1410 {
1411         struct chain_head *c = (*handle)->chain_iterator_cur;
1412
1413         iptc_fn = TC_NEXT_CHAIN;
1414
1415         if (!c) {
1416                 DEBUGP(": no more chains\n");
1417                 return NULL;
1418         }
1419
1420         iptcc_chain_iterator_advance(*handle);
1421         
1422         DEBUGP(": returning `%s'\n", c->name);
1423         return c->name;
1424 }
1425
1426 /* Get first rule in the given chain: NULL for empty chain. */
1427 const STRUCT_ENTRY *
1428 TC_FIRST_RULE(const char *chain, TC_HANDLE_T *handle)
1429 {
1430         struct chain_head *c;
1431         struct rule_head *r;
1432
1433         iptc_fn = TC_FIRST_RULE;
1434
1435         DEBUGP("first rule(%s): ", chain);
1436
1437         c = iptcc_find_label(chain, *handle);
1438         if (!c) {
1439                 errno = ENOENT;
1440                 return NULL;
1441         }
1442
1443         /* Empty chain: single return/policy rule */
1444         if (list_empty(&c->rules)) {
1445                 DEBUGP_C("no rules, returning NULL\n");
1446                 return NULL;
1447         }
1448
1449         r = list_entry(c->rules.next, struct rule_head, list);
1450         (*handle)->rule_iterator_cur = r;
1451         DEBUGP_C("%p\n", r);
1452
1453         return r->entry;
1454 }
1455
1456 /* Returns NULL when rules run out. */
1457 const STRUCT_ENTRY *
1458 TC_NEXT_RULE(const STRUCT_ENTRY *prev, TC_HANDLE_T *handle)
1459 {
1460         struct rule_head *r;
1461
1462         iptc_fn = TC_NEXT_RULE;
1463         DEBUGP("rule_iterator_cur=%p...", (*handle)->rule_iterator_cur);
1464
1465         if (!(*handle)->rule_iterator_cur) {
1466                 DEBUGP_C("returning NULL\n");
1467                 return NULL;
1468         }
1469         
1470         r = list_entry((*handle)->rule_iterator_cur->list.next, 
1471                         struct rule_head, list);
1472
1473         iptc_fn = TC_NEXT_RULE;
1474
1475         DEBUGP_C("next=%p, head=%p...", &r->list, 
1476                 &(*handle)->rule_iterator_cur->chain->rules);
1477
1478         if (&r->list == &(*handle)->rule_iterator_cur->chain->rules) {
1479                 (*handle)->rule_iterator_cur = NULL;
1480                 DEBUGP_C("finished, returning NULL\n");
1481                 return NULL;
1482         }
1483
1484         (*handle)->rule_iterator_cur = r;
1485
1486         /* NOTE: prev is without any influence ! */
1487         DEBUGP_C("returning rule %p\n", r);
1488         return r->entry;
1489 }
1490
1491 /* How many rules in this chain? */
1492 #if 0
1493 static unsigned int
1494 TC_NUM_RULES(const char *chain, TC_HANDLE_T *handle)
1495 {
1496         struct chain_head *c;
1497         iptc_fn = TC_NUM_RULES;
1498         CHECK(*handle);
1499
1500         c = iptcc_find_label(chain, *handle);
1501         if (!c) {
1502                 errno = ENOENT;
1503                 return (unsigned int)-1;
1504         }
1505         
1506         return c->num_rules;
1507 }
1508 #endif
1509
1510 #if 0
1511 static const STRUCT_ENTRY *
1512 TC_GET_RULE(const char *chain, unsigned int n, TC_HANDLE_T *handle)
1513 {
1514         struct chain_head *c;
1515         struct rule_head *r;
1516         
1517         iptc_fn = TC_GET_RULE;
1518
1519         CHECK(*handle);
1520
1521         c = iptcc_find_label(chain, *handle);
1522         if (!c) {
1523                 errno = ENOENT;
1524                 return NULL;
1525         }
1526
1527         r = iptcc_get_rule_num(c, n);
1528         if (!r)
1529                 return NULL;
1530         return r->entry;
1531 }
1532 #endif
1533
1534 /* Returns a pointer to the target name of this position. */
1535 static const char *standard_target_map(int verdict)
1536 {
1537         switch (verdict) {
1538                 case RETURN:
1539                         return LABEL_RETURN;
1540                         break;
1541                 case -NF_ACCEPT-1:
1542                         return LABEL_ACCEPT;
1543                         break;
1544                 case -NF_DROP-1:
1545                         return LABEL_DROP;
1546                         break;
1547                 case -NF_QUEUE-1:
1548                         return LABEL_QUEUE;
1549                         break;
1550                 default:
1551                         fprintf(stderr, "ERROR: %d not a valid target)\n",
1552                                 verdict);
1553                         abort();
1554                         break;
1555         }
1556         /* not reached */
1557         return NULL;
1558 }
1559
1560 /* Returns a pointer to the target name of this position. */
1561 const char *TC_GET_TARGET(const STRUCT_ENTRY *ce,
1562                           TC_HANDLE_T *handle)
1563 {
1564         STRUCT_ENTRY *e = (STRUCT_ENTRY *)ce;
1565         struct rule_head *r = container_of(e, struct rule_head, entry[0]);
1566
1567         iptc_fn = TC_GET_TARGET;
1568
1569         switch(r->type) {
1570                 int spos;
1571                 case IPTCC_R_FALLTHROUGH:
1572                         return "";
1573                         break;
1574                 case IPTCC_R_JUMP:
1575                         DEBUGP("r=%p, jump=%p, name=`%s'\n", r, r->jump, r->jump->name);
1576                         return r->jump->name;
1577                         break;
1578                 case IPTCC_R_STANDARD:
1579                         spos = *(int *)GET_TARGET(e)->data;
1580                         DEBUGP("r=%p, spos=%d'\n", r, spos);
1581                         return standard_target_map(spos);
1582                         break;
1583                 case IPTCC_R_MODULE:
1584                         return GET_TARGET(e)->u.user.name;
1585                         break;
1586         }
1587         return NULL;
1588 }
1589 /* Is this a built-in chain?  Actually returns hook + 1. */
1590 int
1591 TC_BUILTIN(const char *chain, const TC_HANDLE_T handle)
1592 {
1593         struct chain_head *c;
1594         
1595         iptc_fn = TC_BUILTIN;
1596
1597         c = iptcc_find_label(chain, handle);
1598         if (!c) {
1599                 errno = ENOENT;
1600                 return 0;
1601         }
1602
1603         return iptcc_is_builtin(c);
1604 }
1605
1606 /* Get the policy of a given built-in chain */
1607 const char *
1608 TC_GET_POLICY(const char *chain,
1609               STRUCT_COUNTERS *counters,
1610               TC_HANDLE_T *handle)
1611 {
1612         struct chain_head *c;
1613
1614         iptc_fn = TC_GET_POLICY;
1615
1616         DEBUGP("called for chain %s\n", chain);
1617
1618         c = iptcc_find_label(chain, *handle);
1619         if (!c) {
1620                 errno = ENOENT;
1621                 return NULL;
1622         }
1623
1624         if (!iptcc_is_builtin(c))
1625                 return NULL;
1626
1627         *counters = c->counters;
1628
1629         return standard_target_map(c->verdict);
1630 }
1631
1632 static int
1633 iptcc_standard_map(struct rule_head *r, int verdict)
1634 {
1635         STRUCT_ENTRY *e = r->entry;
1636         STRUCT_STANDARD_TARGET *t;
1637
1638         t = (STRUCT_STANDARD_TARGET *)GET_TARGET(e);
1639
1640         if (t->target.u.target_size
1641             != ALIGN(sizeof(STRUCT_STANDARD_TARGET))) {
1642                 errno = EINVAL;
1643                 return 0;
1644         }
1645         /* memset for memcmp convenience on delete/replace */
1646         memset(t->target.u.user.name, 0, FUNCTION_MAXNAMELEN);
1647         strcpy(t->target.u.user.name, STANDARD_TARGET);
1648         t->verdict = verdict;
1649
1650         r->type = IPTCC_R_STANDARD;
1651
1652         return 1;
1653 }
1654
1655 static int
1656 iptcc_map_target(const TC_HANDLE_T handle,
1657            struct rule_head *r)
1658 {
1659         STRUCT_ENTRY *e = r->entry;
1660         STRUCT_ENTRY_TARGET *t = GET_TARGET(e);
1661
1662         /* Maybe it's empty (=> fall through) */
1663         if (strcmp(t->u.user.name, "") == 0) {
1664                 r->type = IPTCC_R_FALLTHROUGH;
1665                 return 1;
1666         }
1667         /* Maybe it's a standard target name... */
1668         else if (strcmp(t->u.user.name, LABEL_ACCEPT) == 0)
1669                 return iptcc_standard_map(r, -NF_ACCEPT - 1);
1670         else if (strcmp(t->u.user.name, LABEL_DROP) == 0)
1671                 return iptcc_standard_map(r, -NF_DROP - 1);
1672         else if (strcmp(t->u.user.name, LABEL_QUEUE) == 0)
1673                 return iptcc_standard_map(r, -NF_QUEUE - 1);
1674         else if (strcmp(t->u.user.name, LABEL_RETURN) == 0)
1675                 return iptcc_standard_map(r, RETURN);
1676         else if (TC_BUILTIN(t->u.user.name, handle)) {
1677                 /* Can't jump to builtins. */
1678                 errno = EINVAL;
1679                 return 0;
1680         } else {
1681                 /* Maybe it's an existing chain name. */
1682                 struct chain_head *c;
1683                 DEBUGP("trying to find chain `%s': ", t->u.user.name);
1684
1685                 c = iptcc_find_label(t->u.user.name, handle);
1686                 if (c) {
1687                         DEBUGP_C("found!\n");
1688                         r->type = IPTCC_R_JUMP;
1689                         r->jump = c;
1690                         c->references++;
1691                         return 1;
1692                 }
1693                 DEBUGP_C("not found :(\n");
1694         }
1695
1696         /* Must be a module?  If not, kernel will reject... */
1697         /* memset to all 0 for your memcmp convenience: don't clear version */
1698         memset(t->u.user.name + strlen(t->u.user.name),
1699                0,
1700                FUNCTION_MAXNAMELEN - 1 - strlen(t->u.user.name));
1701         r->type = IPTCC_R_MODULE;
1702         set_changed(handle);
1703         return 1;
1704 }
1705
1706 /* Insert the entry `fw' in chain `chain' into position `rulenum'. */
1707 int
1708 TC_INSERT_ENTRY(const IPT_CHAINLABEL chain,
1709                 const STRUCT_ENTRY *e,
1710                 unsigned int rulenum,
1711                 TC_HANDLE_T *handle)
1712 {
1713         struct chain_head *c;
1714         struct rule_head *r;
1715         struct list_head *prev;
1716
1717         iptc_fn = TC_INSERT_ENTRY;
1718
1719         if (!(c = iptcc_find_label(chain, *handle))) {
1720                 errno = ENOENT;
1721                 return 0;
1722         }
1723
1724         /* first rulenum index = 0
1725            first c->num_rules index = 1 */
1726         if (rulenum > c->num_rules) {
1727                 errno = E2BIG;
1728                 return 0;
1729         }
1730
1731         /* If we are inserting at the end just take advantage of the
1732            double linked list, insert will happen before the entry
1733            prev points to. */
1734         if (rulenum == c->num_rules) {
1735                 prev = &c->rules;
1736         } else if (rulenum + 1 <= c->num_rules/2) {
1737                 r = iptcc_get_rule_num(c, rulenum + 1);
1738                 prev = &r->list;
1739         } else {
1740                 r = iptcc_get_rule_num_reverse(c, c->num_rules - rulenum);
1741                 prev = &r->list;
1742         }
1743
1744         if (!(r = iptcc_alloc_rule(c, e->next_offset))) {
1745                 errno = ENOMEM;
1746                 return 0;
1747         }
1748
1749         memcpy(r->entry, e, e->next_offset);
1750         r->counter_map.maptype = COUNTER_MAP_SET;
1751
1752         if (!iptcc_map_target(*handle, r)) {
1753                 free(r);
1754                 return 0;
1755         }
1756
1757         list_add_tail(&r->list, prev);
1758         c->num_rules++;
1759
1760         set_changed(*handle);
1761
1762         return 1;
1763 }
1764
1765 /* Atomically replace rule `rulenum' in `chain' with `fw'. */
1766 int
1767 TC_REPLACE_ENTRY(const IPT_CHAINLABEL chain,
1768                  const STRUCT_ENTRY *e,
1769                  unsigned int rulenum,
1770                  TC_HANDLE_T *handle)
1771 {
1772         struct chain_head *c;
1773         struct rule_head *r, *old;
1774
1775         iptc_fn = TC_REPLACE_ENTRY;
1776
1777         if (!(c = iptcc_find_label(chain, *handle))) {
1778                 errno = ENOENT;
1779                 return 0;
1780         }
1781
1782         if (rulenum >= c->num_rules) {
1783                 errno = E2BIG;
1784                 return 0;
1785         }
1786
1787         /* Take advantage of the double linked list if possible. */
1788         if (rulenum + 1 <= c->num_rules/2) {
1789                 old = iptcc_get_rule_num(c, rulenum + 1);
1790         } else {
1791                 old = iptcc_get_rule_num_reverse(c, c->num_rules - rulenum);
1792         }
1793
1794         if (!(r = iptcc_alloc_rule(c, e->next_offset))) {
1795                 errno = ENOMEM;
1796                 return 0;
1797         }
1798
1799         memcpy(r->entry, e, e->next_offset);
1800         r->counter_map.maptype = COUNTER_MAP_SET;
1801
1802         if (!iptcc_map_target(*handle, r)) {
1803                 free(r);
1804                 return 0;
1805         }
1806
1807         list_add(&r->list, &old->list);
1808         iptcc_delete_rule(old);
1809
1810         set_changed(*handle);
1811
1812         return 1;
1813 }
1814
1815 /* Append entry `fw' to chain `chain'.  Equivalent to insert with
1816    rulenum = length of chain. */
1817 int
1818 TC_APPEND_ENTRY(const IPT_CHAINLABEL chain,
1819                 const STRUCT_ENTRY *e,
1820                 TC_HANDLE_T *handle)
1821 {
1822         struct chain_head *c;
1823         struct rule_head *r;
1824
1825         iptc_fn = TC_APPEND_ENTRY;
1826         if (!(c = iptcc_find_label(chain, *handle))) {
1827                 DEBUGP("unable to find chain `%s'\n", chain);
1828                 errno = ENOENT;
1829                 return 0;
1830         }
1831
1832         if (!(r = iptcc_alloc_rule(c, e->next_offset))) {
1833                 DEBUGP("unable to allocate rule for chain `%s'\n", chain);
1834                 errno = ENOMEM;
1835                 return 0;
1836         }
1837
1838         memcpy(r->entry, e, e->next_offset);
1839         r->counter_map.maptype = COUNTER_MAP_SET;
1840
1841         if (!iptcc_map_target(*handle, r)) {
1842                 DEBUGP("unable to map target of rule for chain `%s'\n", chain);
1843                 free(r);
1844                 return 0;
1845         }
1846
1847         list_add_tail(&r->list, &c->rules);
1848         c->num_rules++;
1849
1850         set_changed(*handle);
1851
1852         return 1;
1853 }
1854
1855 static inline int
1856 match_different(const STRUCT_ENTRY_MATCH *a,
1857                 const unsigned char *a_elems,
1858                 const unsigned char *b_elems,
1859                 unsigned char **maskptr)
1860 {
1861         const STRUCT_ENTRY_MATCH *b;
1862         unsigned int i;
1863
1864         /* Offset of b is the same as a. */
1865         b = (void *)b_elems + ((unsigned char *)a - a_elems);
1866
1867         if (a->u.match_size != b->u.match_size)
1868                 return 1;
1869
1870         if (strcmp(a->u.user.name, b->u.user.name) != 0)
1871                 return 1;
1872
1873         *maskptr += ALIGN(sizeof(*a));
1874
1875         for (i = 0; i < a->u.match_size - ALIGN(sizeof(*a)); i++)
1876                 if (((a->data[i] ^ b->data[i]) & (*maskptr)[i]) != 0)
1877                         return 1;
1878         *maskptr += i;
1879         return 0;
1880 }
1881
1882 static inline int
1883 target_same(struct rule_head *a, struct rule_head *b,const unsigned char *mask)
1884 {
1885         unsigned int i;
1886         STRUCT_ENTRY_TARGET *ta, *tb;
1887
1888         if (a->type != b->type)
1889                 return 0;
1890
1891         ta = GET_TARGET(a->entry);
1892         tb = GET_TARGET(b->entry);
1893
1894         switch (a->type) {
1895         case IPTCC_R_FALLTHROUGH:
1896                 return 1;
1897         case IPTCC_R_JUMP:
1898                 return a->jump == b->jump;
1899         case IPTCC_R_STANDARD:
1900                 return ((STRUCT_STANDARD_TARGET *)ta)->verdict
1901                         == ((STRUCT_STANDARD_TARGET *)tb)->verdict;
1902         case IPTCC_R_MODULE:
1903                 if (ta->u.target_size != tb->u.target_size)
1904                         return 0;
1905                 if (strcmp(ta->u.user.name, tb->u.user.name) != 0)
1906                         return 0;
1907
1908                 for (i = 0; i < ta->u.target_size - sizeof(*ta); i++)
1909                         if (((ta->data[i] ^ tb->data[i]) & mask[i]) != 0)
1910                                 return 0;
1911                 return 1;
1912         default:
1913                 fprintf(stderr, "ERROR: bad type %i\n", a->type);
1914                 abort();
1915         }
1916 }
1917
1918 static unsigned char *
1919 is_same(const STRUCT_ENTRY *a,
1920         const STRUCT_ENTRY *b,
1921         unsigned char *matchmask);
1922
1923 /* Delete the first rule in `chain' which matches `fw'. */
1924 int
1925 TC_DELETE_ENTRY(const IPT_CHAINLABEL chain,
1926                 const STRUCT_ENTRY *origfw,
1927                 unsigned char *matchmask,
1928                 TC_HANDLE_T *handle)
1929 {
1930         struct chain_head *c;
1931         struct rule_head *r, *i;
1932
1933         iptc_fn = TC_DELETE_ENTRY;
1934         if (!(c = iptcc_find_label(chain, *handle))) {
1935                 errno = ENOENT;
1936                 return 0;
1937         }
1938
1939         /* Create a rule_head from origfw. */
1940         r = iptcc_alloc_rule(c, origfw->next_offset);
1941         if (!r) {
1942                 errno = ENOMEM;
1943                 return 0;
1944         }
1945
1946         memcpy(r->entry, origfw, origfw->next_offset);
1947         r->counter_map.maptype = COUNTER_MAP_NOMAP;
1948         if (!iptcc_map_target(*handle, r)) {
1949                 DEBUGP("unable to map target of rule for chain `%s'\n", chain);
1950                 free(r);
1951                 return 0;
1952         } else {
1953                 /* iptcc_map_target increment target chain references
1954                  * since this is a fake rule only used for matching
1955                  * the chain references count is decremented again. 
1956                  */
1957                 if (r->type == IPTCC_R_JUMP
1958                     && r->jump)
1959                         r->jump->references--;
1960         }
1961
1962         list_for_each_entry(i, &c->rules, list) {
1963                 unsigned char *mask;
1964
1965                 mask = is_same(r->entry, i->entry, matchmask);
1966                 if (!mask)
1967                         continue;
1968
1969                 if (!target_same(r, i, mask))
1970                         continue;
1971
1972                 /* If we are about to delete the rule that is the
1973                  * current iterator, move rule iterator back.  next
1974                  * pointer will then point to real next node */
1975                 if (i == (*handle)->rule_iterator_cur) {
1976                         (*handle)->rule_iterator_cur = 
1977                                 list_entry((*handle)->rule_iterator_cur->list.prev,
1978                                            struct rule_head, list);
1979                 }
1980
1981                 c->num_rules--;
1982                 iptcc_delete_rule(i);
1983
1984                 set_changed(*handle);
1985                 free(r);
1986                 return 1;
1987         }
1988
1989         free(r);
1990         errno = ENOENT;
1991         return 0;
1992 }
1993
1994
1995 /* Delete the rule in position `rulenum' in `chain'. */
1996 int
1997 TC_DELETE_NUM_ENTRY(const IPT_CHAINLABEL chain,
1998                     unsigned int rulenum,
1999                     TC_HANDLE_T *handle)
2000 {
2001         struct chain_head *c;
2002         struct rule_head *r;
2003
2004         iptc_fn = TC_DELETE_NUM_ENTRY;
2005
2006         if (!(c = iptcc_find_label(chain, *handle))) {
2007                 errno = ENOENT;
2008                 return 0;
2009         }
2010
2011         if (rulenum >= c->num_rules) {
2012                 errno = E2BIG;
2013                 return 0;
2014         }
2015
2016         /* Take advantage of the double linked list if possible. */
2017         if (rulenum + 1 <= c->num_rules/2) {
2018                 r = iptcc_get_rule_num(c, rulenum + 1);
2019         } else {
2020                 r = iptcc_get_rule_num_reverse(c, c->num_rules - rulenum);
2021         }
2022
2023         /* If we are about to delete the rule that is the current
2024          * iterator, move rule iterator back.  next pointer will then
2025          * point to real next node */
2026         if (r == (*handle)->rule_iterator_cur) {
2027                 (*handle)->rule_iterator_cur = 
2028                         list_entry((*handle)->rule_iterator_cur->list.prev,
2029                                    struct rule_head, list);
2030         }
2031
2032         c->num_rules--;
2033         iptcc_delete_rule(r);
2034
2035         set_changed(*handle);
2036
2037         return 1;
2038 }
2039
2040 /* Check the packet `fw' on chain `chain'.  Returns the verdict, or
2041    NULL and sets errno. */
2042 const char *
2043 TC_CHECK_PACKET(const IPT_CHAINLABEL chain,
2044                 STRUCT_ENTRY *entry,
2045                 TC_HANDLE_T *handle)
2046 {
2047         iptc_fn = TC_CHECK_PACKET;
2048         errno = ENOSYS;
2049         return NULL;
2050 }
2051
2052 /* Flushes the entries in the given chain (ie. empties chain). */
2053 int
2054 TC_FLUSH_ENTRIES(const IPT_CHAINLABEL chain, TC_HANDLE_T *handle)
2055 {
2056         struct chain_head *c;
2057         struct rule_head *r, *tmp;
2058
2059         iptc_fn = TC_FLUSH_ENTRIES;
2060         if (!(c = iptcc_find_label(chain, *handle))) {
2061                 errno = ENOENT;
2062                 return 0;
2063         }
2064
2065         list_for_each_entry_safe(r, tmp, &c->rules, list) {
2066                 iptcc_delete_rule(r);
2067         }
2068
2069         c->num_rules = 0;
2070
2071         set_changed(*handle);
2072
2073         return 1;
2074 }
2075
2076 /* Zeroes the counters in a chain. */
2077 int
2078 TC_ZERO_ENTRIES(const IPT_CHAINLABEL chain, TC_HANDLE_T *handle)
2079 {
2080         struct chain_head *c;
2081         struct rule_head *r;
2082
2083         iptc_fn = TC_ZERO_ENTRIES;
2084         if (!(c = iptcc_find_label(chain, *handle))) {
2085                 errno = ENOENT;
2086                 return 0;
2087         }
2088
2089         if (c->counter_map.maptype == COUNTER_MAP_NORMAL_MAP)
2090                 c->counter_map.maptype = COUNTER_MAP_ZEROED;
2091
2092         list_for_each_entry(r, &c->rules, list) {
2093                 if (r->counter_map.maptype == COUNTER_MAP_NORMAL_MAP)
2094                         r->counter_map.maptype = COUNTER_MAP_ZEROED;
2095         }
2096
2097         set_changed(*handle);
2098
2099         return 1;
2100 }
2101
2102 STRUCT_COUNTERS *
2103 TC_READ_COUNTER(const IPT_CHAINLABEL chain,
2104                 unsigned int rulenum,
2105                 TC_HANDLE_T *handle)
2106 {
2107         struct chain_head *c;
2108         struct rule_head *r;
2109
2110         iptc_fn = TC_READ_COUNTER;
2111         CHECK(*handle);
2112
2113         if (!(c = iptcc_find_label(chain, *handle))) {
2114                 errno = ENOENT;
2115                 return NULL;
2116         }
2117
2118         if (!(r = iptcc_get_rule_num(c, rulenum))) {
2119                 errno = E2BIG;
2120                 return NULL;
2121         }
2122
2123         return &r->entry[0].counters;
2124 }
2125
2126 int
2127 TC_ZERO_COUNTER(const IPT_CHAINLABEL chain,
2128                 unsigned int rulenum,
2129                 TC_HANDLE_T *handle)
2130 {
2131         struct chain_head *c;
2132         struct rule_head *r;
2133         
2134         iptc_fn = TC_ZERO_COUNTER;
2135         CHECK(*handle);
2136
2137         if (!(c = iptcc_find_label(chain, *handle))) {
2138                 errno = ENOENT;
2139                 return 0;
2140         }
2141
2142         if (!(r = iptcc_get_rule_num(c, rulenum))) {
2143                 errno = E2BIG;
2144                 return 0;
2145         }
2146
2147         if (r->counter_map.maptype == COUNTER_MAP_NORMAL_MAP)
2148                 r->counter_map.maptype = COUNTER_MAP_ZEROED;
2149
2150         set_changed(*handle);
2151
2152         return 1;
2153 }
2154
2155 int 
2156 TC_SET_COUNTER(const IPT_CHAINLABEL chain,
2157                unsigned int rulenum,
2158                STRUCT_COUNTERS *counters,
2159                TC_HANDLE_T *handle)
2160 {
2161         struct chain_head *c;
2162         struct rule_head *r;
2163         STRUCT_ENTRY *e;
2164
2165         iptc_fn = TC_SET_COUNTER;
2166         CHECK(*handle);
2167
2168         if (!(c = iptcc_find_label(chain, *handle))) {
2169                 errno = ENOENT;
2170                 return 0;
2171         }
2172
2173         if (!(r = iptcc_get_rule_num(c, rulenum))) {
2174                 errno = E2BIG;
2175                 return 0;
2176         }
2177
2178         e = r->entry;
2179         r->counter_map.maptype = COUNTER_MAP_SET;
2180
2181         memcpy(&e->counters, counters, sizeof(STRUCT_COUNTERS));
2182
2183         set_changed(*handle);
2184
2185         return 1;
2186 }
2187
2188 /* Creates a new chain. */
2189 /* To create a chain, create two rules: error node and unconditional
2190  * return. */
2191 int
2192 TC_CREATE_CHAIN(const IPT_CHAINLABEL chain, TC_HANDLE_T *handle)
2193 {
2194         static struct chain_head *c;
2195         int capacity;
2196         int exceeded;
2197
2198         iptc_fn = TC_CREATE_CHAIN;
2199
2200         /* find_label doesn't cover built-in targets: DROP, ACCEPT,
2201            QUEUE, RETURN. */
2202         if (iptcc_find_label(chain, *handle)
2203             || strcmp(chain, LABEL_DROP) == 0
2204             || strcmp(chain, LABEL_ACCEPT) == 0
2205             || strcmp(chain, LABEL_QUEUE) == 0
2206             || strcmp(chain, LABEL_RETURN) == 0) {
2207                 DEBUGP("Chain `%s' already exists\n", chain);
2208                 errno = EEXIST;
2209                 return 0;
2210         }
2211
2212         if (strlen(chain)+1 > sizeof(IPT_CHAINLABEL)) {
2213                 DEBUGP("Chain name `%s' too long\n", chain);
2214                 errno = EINVAL;
2215                 return 0;
2216         }
2217
2218         c = iptcc_alloc_chain_head(chain, 0);
2219         if (!c) {
2220                 DEBUGP("Cannot allocate memory for chain `%s'\n", chain);
2221                 errno = ENOMEM;
2222                 return 0;
2223
2224         }
2225         (*handle)->num_chains++; /* New user defined chain */
2226
2227         DEBUGP("Creating chain `%s'\n", chain);
2228         iptc_insert_chain(*handle, c); /* Insert sorted */
2229
2230         /* Inserting chains don't change the correctness of the chain
2231          * index (except if its smaller than index[0], but that
2232          * handled by iptc_insert_chain).  It only causes longer lists
2233          * in the buckets. Thus, only rebuild chain index when the
2234          * capacity is exceed with CHAIN_INDEX_INSERT_MAX chains.
2235          */
2236         capacity = (*handle)->chain_index_sz * CHAIN_INDEX_BUCKET_LEN;
2237         exceeded = ((((*handle)->num_chains)-capacity));
2238         if (exceeded > CHAIN_INDEX_INSERT_MAX) {
2239                 debug("Capacity(%d) exceeded(%d) rebuild (chains:%d)\n",
2240                       capacity, exceeded, (*handle)->num_chains);
2241                 iptcc_chain_index_rebuild(*handle);
2242         }
2243
2244         set_changed(*handle);
2245
2246         return 1;
2247 }
2248
2249 /* Get the number of references to this chain. */
2250 int
2251 TC_GET_REFERENCES(unsigned int *ref, const IPT_CHAINLABEL chain,
2252                   TC_HANDLE_T *handle)
2253 {
2254         struct chain_head *c;
2255
2256         iptc_fn = TC_GET_REFERENCES;
2257         if (!(c = iptcc_find_label(chain, *handle))) {
2258                 errno = ENOENT;
2259                 return 0;
2260         }
2261
2262         *ref = c->references;
2263
2264         return 1;
2265 }
2266
2267 /* Deletes a chain. */
2268 int
2269 TC_DELETE_CHAIN(const IPT_CHAINLABEL chain, TC_HANDLE_T *handle)
2270 {
2271         unsigned int references;
2272         struct chain_head *c;
2273
2274         iptc_fn = TC_DELETE_CHAIN;
2275
2276         if (!(c = iptcc_find_label(chain, *handle))) {
2277                 DEBUGP("cannot find chain `%s'\n", chain);
2278                 errno = ENOENT;
2279                 return 0;
2280         }
2281
2282         if (TC_BUILTIN(chain, *handle)) {
2283                 DEBUGP("cannot remove builtin chain `%s'\n", chain);
2284                 errno = EINVAL;
2285                 return 0;
2286         }
2287
2288         if (!TC_GET_REFERENCES(&references, chain, handle)) {
2289                 DEBUGP("cannot get references on chain `%s'\n", chain);
2290                 return 0;
2291         }
2292
2293         if (references > 0) {
2294                 DEBUGP("chain `%s' still has references\n", chain);
2295                 errno = EMLINK;
2296                 return 0;
2297         }
2298
2299         if (c->num_rules) {
2300                 DEBUGP("chain `%s' is not empty\n", chain);
2301                 errno = ENOTEMPTY;
2302                 return 0;
2303         }
2304
2305         /* If we are about to delete the chain that is the current
2306          * iterator, move chain iterator forward. */
2307         if (c == (*handle)->chain_iterator_cur)
2308                 iptcc_chain_iterator_advance(*handle);
2309
2310         (*handle)->num_chains--; /* One user defined chain deleted */
2311
2312         //list_del(&c->list); /* Done in iptcc_chain_index_delete_chain() */
2313         iptcc_chain_index_delete_chain(c, *handle);
2314         free(c);
2315
2316         DEBUGP("chain `%s' deleted\n", chain);
2317
2318         set_changed(*handle);
2319
2320         return 1;
2321 }
2322
2323 /* Renames a chain. */
2324 int TC_RENAME_CHAIN(const IPT_CHAINLABEL oldname,
2325                     const IPT_CHAINLABEL newname,
2326                     TC_HANDLE_T *handle)
2327 {
2328         struct chain_head *c;
2329         iptc_fn = TC_RENAME_CHAIN;
2330
2331         /* find_label doesn't cover built-in targets: DROP, ACCEPT,
2332            QUEUE, RETURN. */
2333         if (iptcc_find_label(newname, *handle)
2334             || strcmp(newname, LABEL_DROP) == 0
2335             || strcmp(newname, LABEL_ACCEPT) == 0
2336             || strcmp(newname, LABEL_QUEUE) == 0
2337             || strcmp(newname, LABEL_RETURN) == 0) {
2338                 errno = EEXIST;
2339                 return 0;
2340         }
2341
2342         if (!(c = iptcc_find_label(oldname, *handle))
2343             || TC_BUILTIN(oldname, *handle)) {
2344                 errno = ENOENT;
2345                 return 0;
2346         }
2347
2348         if (strlen(newname)+1 > sizeof(IPT_CHAINLABEL)) {
2349                 errno = EINVAL;
2350                 return 0;
2351         }
2352
2353         strncpy(c->name, newname, sizeof(IPT_CHAINLABEL));
2354         
2355         set_changed(*handle);
2356
2357         return 1;
2358 }
2359
2360 /* Sets the policy on a built-in chain. */
2361 int
2362 TC_SET_POLICY(const IPT_CHAINLABEL chain,
2363               const IPT_CHAINLABEL policy,
2364               STRUCT_COUNTERS *counters,
2365               TC_HANDLE_T *handle)
2366 {
2367         struct chain_head *c;
2368
2369         iptc_fn = TC_SET_POLICY;
2370
2371         if (!(c = iptcc_find_label(chain, *handle))) {
2372                 DEBUGP("cannot find chain `%s'\n", chain);
2373                 errno = ENOENT;
2374                 return 0;
2375         }
2376
2377         if (!iptcc_is_builtin(c)) {
2378                 DEBUGP("cannot set policy of userdefinedchain `%s'\n", chain);
2379                 errno = ENOENT;
2380                 return 0;
2381         }
2382
2383         if (strcmp(policy, LABEL_ACCEPT) == 0)
2384                 c->verdict = -NF_ACCEPT - 1;
2385         else if (strcmp(policy, LABEL_DROP) == 0)
2386                 c->verdict = -NF_DROP - 1;
2387         else {
2388                 errno = EINVAL;
2389                 return 0;
2390         }
2391
2392         if (counters) {
2393                 /* set byte and packet counters */
2394                 memcpy(&c->counters, counters, sizeof(STRUCT_COUNTERS));
2395                 c->counter_map.maptype = COUNTER_MAP_SET;
2396         } else {
2397                 c->counter_map.maptype = COUNTER_MAP_NOMAP;
2398         }
2399
2400         set_changed(*handle);
2401
2402         return 1;
2403 }
2404
2405 /* Without this, on gcc 2.7.2.3, we get:
2406    libiptc.c: In function `TC_COMMIT':
2407    libiptc.c:833: fixed or forbidden register was spilled.
2408    This may be due to a compiler bug or to impossible asm
2409    statements or clauses.
2410 */
2411 static void
2412 subtract_counters(STRUCT_COUNTERS *answer,
2413                   const STRUCT_COUNTERS *a,
2414                   const STRUCT_COUNTERS *b)
2415 {
2416         answer->pcnt = a->pcnt - b->pcnt;
2417         answer->bcnt = a->bcnt - b->bcnt;
2418 }
2419
2420
2421 static void counters_nomap(STRUCT_COUNTERS_INFO *newcounters, unsigned int idx)
2422 {
2423         newcounters->counters[idx] = ((STRUCT_COUNTERS) { 0, 0});
2424         DEBUGP_C("NOMAP => zero\n");
2425 }
2426
2427 static void counters_normal_map(STRUCT_COUNTERS_INFO *newcounters,
2428                                 STRUCT_REPLACE *repl, unsigned int idx,
2429                                 unsigned int mappos)
2430 {
2431         /* Original read: X.
2432          * Atomic read on replacement: X + Y.
2433          * Currently in kernel: Z.
2434          * Want in kernel: X + Y + Z.
2435          * => Add in X + Y
2436          * => Add in replacement read.
2437          */
2438         newcounters->counters[idx] = repl->counters[mappos];
2439         DEBUGP_C("NORMAL_MAP => mappos %u \n", mappos);
2440 }
2441
2442 static void counters_map_zeroed(STRUCT_COUNTERS_INFO *newcounters,
2443                                 STRUCT_REPLACE *repl, unsigned int idx,
2444                                 unsigned int mappos, STRUCT_COUNTERS *counters)
2445 {
2446         /* Original read: X.
2447          * Atomic read on replacement: X + Y.
2448          * Currently in kernel: Z.
2449          * Want in kernel: Y + Z.
2450          * => Add in Y.
2451          * => Add in (replacement read - original read).
2452          */
2453         subtract_counters(&newcounters->counters[idx],
2454                           &repl->counters[mappos],
2455                           counters);
2456         DEBUGP_C("ZEROED => mappos %u\n", mappos);
2457 }
2458
2459 static void counters_map_set(STRUCT_COUNTERS_INFO *newcounters,
2460                              unsigned int idx, STRUCT_COUNTERS *counters)
2461 {
2462         /* Want to set counter (iptables-restore) */
2463
2464         memcpy(&newcounters->counters[idx], counters,
2465                 sizeof(STRUCT_COUNTERS));
2466
2467         DEBUGP_C("SET\n");
2468 }
2469
2470
2471 int
2472 TC_COMMIT(TC_HANDLE_T *handle)
2473 {
2474         /* Replace, then map back the counters. */
2475         STRUCT_REPLACE *repl;
2476         STRUCT_COUNTERS_INFO *newcounters;
2477         struct chain_head *c;
2478         int ret;
2479         size_t counterlen;
2480         int new_number;
2481         unsigned int new_size;
2482
2483         iptc_fn = TC_COMMIT;
2484         CHECK(*handle);
2485
2486         /* Don't commit if nothing changed. */
2487         if (!(*handle)->changed)
2488                 goto finished;
2489
2490         new_number = iptcc_compile_table_prep(*handle, &new_size);
2491         if (new_number < 0) {
2492                 errno = ENOMEM;
2493                 goto out_zero;
2494         }
2495
2496         repl = malloc(sizeof(*repl) + new_size);
2497         if (!repl) {
2498                 errno = ENOMEM;
2499                 goto out_zero;
2500         }
2501         memset(repl, 0, sizeof(*repl) + new_size);
2502
2503 #if 0
2504         TC_DUMP_ENTRIES(*handle);
2505 #endif
2506
2507         counterlen = sizeof(STRUCT_COUNTERS_INFO)
2508                         + sizeof(STRUCT_COUNTERS) * new_number;
2509
2510         /* These are the old counters we will get from kernel */
2511         repl->counters = malloc(sizeof(STRUCT_COUNTERS)
2512                                 * (*handle)->info.num_entries);
2513         if (!repl->counters) {
2514                 errno = ENOMEM;
2515                 goto out_free_repl;
2516         }
2517         /* These are the counters we're going to put back, later. */
2518         newcounters = malloc(counterlen);
2519         if (!newcounters) {
2520                 errno = ENOMEM;
2521                 goto out_free_repl_counters;
2522         }
2523         memset(newcounters, 0, counterlen);
2524
2525         strcpy(repl->name, (*handle)->info.name);
2526         repl->num_entries = new_number;
2527         repl->size = new_size;
2528
2529         repl->num_counters = (*handle)->info.num_entries;
2530         repl->valid_hooks = (*handle)->info.valid_hooks;
2531
2532         DEBUGP("num_entries=%u, size=%u, num_counters=%u\n",
2533                 repl->num_entries, repl->size, repl->num_counters);
2534
2535         ret = iptcc_compile_table(*handle, repl);
2536         if (ret < 0) {
2537                 errno = ret;
2538                 goto out_free_newcounters;
2539         }
2540
2541
2542 #ifdef IPTC_DEBUG2
2543         {
2544                 int fd = open("/tmp/libiptc-so_set_replace.blob", 
2545                                 O_CREAT|O_WRONLY);
2546                 if (fd >= 0) {
2547                         write(fd, repl, sizeof(*repl) + repl->size);
2548                         close(fd);
2549                 }
2550         }
2551 #endif
2552
2553         ret = setsockopt(sockfd, TC_IPPROTO, SO_SET_REPLACE, repl,
2554                          sizeof(*repl) + repl->size);
2555         if (ret < 0)
2556                 goto out_free_newcounters;
2557
2558         /* Put counters back. */
2559         strcpy(newcounters->name, (*handle)->info.name);
2560         newcounters->num_counters = new_number;
2561
2562         list_for_each_entry(c, &(*handle)->chains, list) {
2563                 struct rule_head *r;
2564
2565                 /* Builtin chains have their own counters */
2566                 if (iptcc_is_builtin(c)) {
2567                         DEBUGP("counter for chain-index %u: ", c->foot_index);
2568                         switch(c->counter_map.maptype) {
2569                         case COUNTER_MAP_NOMAP:
2570                                 counters_nomap(newcounters, c->foot_index);
2571                                 break;
2572                         case COUNTER_MAP_NORMAL_MAP:
2573                                 counters_normal_map(newcounters, repl,
2574                                                     c->foot_index, 
2575                                                     c->counter_map.mappos);
2576                                 break;
2577                         case COUNTER_MAP_ZEROED:
2578                                 counters_map_zeroed(newcounters, repl,
2579                                                     c->foot_index, 
2580                                                     c->counter_map.mappos,
2581                                                     &c->counters);
2582                                 break;
2583                         case COUNTER_MAP_SET:
2584                                 counters_map_set(newcounters, c->foot_index,
2585                                                  &c->counters);
2586                                 break;
2587                         }
2588                 }
2589
2590                 list_for_each_entry(r, &c->rules, list) {
2591                         DEBUGP("counter for index %u: ", r->index);
2592                         switch (r->counter_map.maptype) {
2593                         case COUNTER_MAP_NOMAP:
2594                                 counters_nomap(newcounters, r->index);
2595                                 break;
2596
2597                         case COUNTER_MAP_NORMAL_MAP:
2598                                 counters_normal_map(newcounters, repl,
2599                                                     r->index, 
2600                                                     r->counter_map.mappos);
2601                                 break;
2602
2603                         case COUNTER_MAP_ZEROED:
2604                                 counters_map_zeroed(newcounters, repl,
2605                                                     r->index,
2606                                                     r->counter_map.mappos,
2607                                                     &r->entry->counters);
2608                                 break;
2609
2610                         case COUNTER_MAP_SET:
2611                                 counters_map_set(newcounters, r->index,
2612                                                  &r->entry->counters);
2613                                 break;
2614                         }
2615                 }
2616         }
2617
2618 #ifdef IPTC_DEBUG2
2619         {
2620                 int fd = open("/tmp/libiptc-so_set_add_counters.blob", 
2621                                 O_CREAT|O_WRONLY);
2622                 if (fd >= 0) {
2623                         write(fd, newcounters, counterlen);
2624                         close(fd);
2625                 }
2626         }
2627 #endif
2628
2629         ret = setsockopt(sockfd, TC_IPPROTO, SO_SET_ADD_COUNTERS,
2630                          newcounters, counterlen);
2631         if (ret < 0)
2632                 goto out_free_newcounters;
2633
2634         free(repl->counters);
2635         free(repl);
2636         free(newcounters);
2637
2638 finished:
2639         TC_FREE(handle);
2640         return 1;
2641
2642 out_free_newcounters:
2643         free(newcounters);
2644 out_free_repl_counters:
2645         free(repl->counters);
2646 out_free_repl:
2647         free(repl);
2648 out_zero:
2649         return 0;
2650 }
2651
2652 /* Get raw socket. */
2653 int
2654 TC_GET_RAW_SOCKET(void)
2655 {
2656         return sockfd;
2657 }
2658
2659 /* Translates errno numbers into more human-readable form than strerror. */
2660 const char *
2661 TC_STRERROR(int err)
2662 {
2663         unsigned int i;
2664         struct table_struct {
2665                 void *fn;
2666                 int err;
2667                 const char *message;
2668         } table [] =
2669           { { TC_INIT, EPERM, "Permission denied (you must be root)" },
2670             { TC_INIT, EINVAL, "Module is wrong version" },
2671             { TC_INIT, ENOENT, 
2672                     "Table does not exist (do you need to insmod?)" },
2673             { TC_DELETE_CHAIN, ENOTEMPTY, "Chain is not empty" },
2674             { TC_DELETE_CHAIN, EINVAL, "Can't delete built-in chain" },
2675             { TC_DELETE_CHAIN, EMLINK,
2676               "Can't delete chain with references left" },
2677             { TC_CREATE_CHAIN, EEXIST, "Chain already exists" },
2678             { TC_INSERT_ENTRY, E2BIG, "Index of insertion too big" },
2679             { TC_REPLACE_ENTRY, E2BIG, "Index of replacement too big" },
2680             { TC_DELETE_NUM_ENTRY, E2BIG, "Index of deletion too big" },
2681             { TC_READ_COUNTER, E2BIG, "Index of counter too big" },
2682             { TC_ZERO_COUNTER, E2BIG, "Index of counter too big" },
2683             { TC_INSERT_ENTRY, ELOOP, "Loop found in table" },
2684             { TC_INSERT_ENTRY, EINVAL, "Target problem" },
2685             /* EINVAL for CHECK probably means bad interface. */
2686             { TC_CHECK_PACKET, EINVAL,
2687               "Bad arguments (does that interface exist?)" },
2688             { TC_CHECK_PACKET, ENOSYS,
2689               "Checking will most likely never get implemented" },
2690             /* ENOENT for DELETE probably means no matching rule */
2691             { TC_DELETE_ENTRY, ENOENT,
2692               "Bad rule (does a matching rule exist in that chain?)" },
2693             { TC_SET_POLICY, ENOENT,
2694               "Bad built-in chain name" },
2695             { TC_SET_POLICY, EINVAL,
2696               "Bad policy name" },
2697
2698             { NULL, 0, "Incompatible with this kernel" },
2699             { NULL, ENOPROTOOPT, "iptables who? (do you need to insmod?)" },
2700             { NULL, ENOSYS, "Will be implemented real soon.  I promise ;)" },
2701             { NULL, ENOMEM, "Memory allocation problem" },
2702             { NULL, ENOENT, "No chain/target/match by that name" },
2703           };
2704
2705         for (i = 0; i < sizeof(table)/sizeof(struct table_struct); i++) {
2706                 if ((!table[i].fn || table[i].fn == iptc_fn)
2707                     && table[i].err == err)
2708                         return table[i].message;
2709         }
2710
2711         return strerror(err);
2712 }