]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/netpfil/ipfw/ip_fw_sockopt.c
MFC r248697:
[FreeBSD/stable/9.git] / sys / netpfil / ipfw / ip_fw_sockopt.c
1 /*-
2  * Copyright (c) 2002-2009 Luigi Rizzo, Universita` di Pisa
3  *
4  * Supported by: Valeria Paoli
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 /*
32  * Sockopt support for ipfw. The routines here implement
33  * the upper half of the ipfw code.
34  */
35
36 #include "opt_ipfw.h"
37 #include "opt_inet.h"
38 #ifndef INET
39 #error IPFIREWALL requires INET.
40 #endif /* INET */
41 #include "opt_inet6.h"
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/malloc.h>
46 #include <sys/mbuf.h>   /* struct m_tag used by nested headers */
47 #include <sys/kernel.h>
48 #include <sys/lock.h>
49 #include <sys/priv.h>
50 #include <sys/proc.h>
51 #include <sys/rwlock.h>
52 #include <sys/socket.h>
53 #include <sys/socketvar.h>
54 #include <sys/sysctl.h>
55 #include <sys/syslog.h>
56 #include <net/if.h>
57 #include <net/route.h>
58 #include <net/vnet.h>
59
60 #include <netinet/in.h>
61 #include <netinet/ip_var.h> /* hooks */
62 #include <netinet/ip_fw.h>
63
64 #include <netpfil/ipfw/ip_fw_private.h>
65
66 #ifdef MAC
67 #include <security/mac/mac_framework.h>
68 #endif
69
70 MALLOC_DEFINE(M_IPFW, "IpFw/IpAcct", "IpFw/IpAcct chain's");
71
72 /*
73  * static variables followed by global ones (none in this file)
74  */
75
76 /*
77  * Find the smallest rule >= key, id.
78  * We could use bsearch but it is so simple that we code it directly
79  */
80 int
81 ipfw_find_rule(struct ip_fw_chain *chain, uint32_t key, uint32_t id)
82 {
83         int i, lo, hi;
84         struct ip_fw *r;
85
86         for (lo = 0, hi = chain->n_rules - 1; lo < hi;) {
87                 i = (lo + hi) / 2;
88                 r = chain->map[i];
89                 if (r->rulenum < key)
90                         lo = i + 1;     /* continue from the next one */
91                 else if (r->rulenum > key)
92                         hi = i;         /* this might be good */
93                 else if (r->id < id)
94                         lo = i + 1;     /* continue from the next one */
95                 else /* r->id >= id */
96                         hi = i;         /* this might be good */
97         };
98         return hi;
99 }
100
101 /*
102  * allocate a new map, returns the chain locked. extra is the number
103  * of entries to add or delete.
104  */
105 static struct ip_fw **
106 get_map(struct ip_fw_chain *chain, int extra, int locked)
107 {
108
109         for (;;) {
110                 struct ip_fw **map;
111                 int i;
112
113                 i = chain->n_rules + extra;
114                 map = malloc(i * sizeof(struct ip_fw *), M_IPFW,
115                         locked ? M_NOWAIT : M_WAITOK);
116                 if (map == NULL) {
117                         printf("%s: cannot allocate map\n", __FUNCTION__);
118                         return NULL;
119                 }
120                 if (!locked)
121                         IPFW_UH_WLOCK(chain);
122                 if (i >= chain->n_rules + extra) /* good */
123                         return map;
124                 /* otherwise we lost the race, free and retry */
125                 if (!locked)
126                         IPFW_UH_WUNLOCK(chain);
127                 free(map, M_IPFW);
128         }
129 }
130
131 /*
132  * swap the maps. It is supposed to be called with IPFW_UH_WLOCK
133  */
134 static struct ip_fw **
135 swap_map(struct ip_fw_chain *chain, struct ip_fw **new_map, int new_len)
136 {
137         struct ip_fw **old_map;
138
139         IPFW_WLOCK(chain);
140         chain->id++;
141         chain->n_rules = new_len;
142         old_map = chain->map;
143         chain->map = new_map;
144         IPFW_WUNLOCK(chain);
145         return old_map;
146 }
147
148 /*
149  * Add a new rule to the list. Copy the rule into a malloc'ed area, then
150  * possibly create a rule number and add the rule to the list.
151  * Update the rule_number in the input struct so the caller knows it as well.
152  * XXX DO NOT USE FOR THE DEFAULT RULE.
153  * Must be called without IPFW_UH held
154  */
155 int
156 ipfw_add_rule(struct ip_fw_chain *chain, struct ip_fw *input_rule)
157 {
158         struct ip_fw *rule;
159         int i, l, insert_before;
160         struct ip_fw **map;     /* the new array of pointers */
161
162         if (chain->rules == NULL || input_rule->rulenum > IPFW_DEFAULT_RULE-1)
163                 return (EINVAL);
164
165         l = RULESIZE(input_rule);
166         rule = malloc(l, M_IPFW, M_WAITOK | M_ZERO);
167         if (rule == NULL)
168                 return (ENOSPC);
169         /* get_map returns with IPFW_UH_WLOCK if successful */
170         map = get_map(chain, 1, 0 /* not locked */);
171         if (map == NULL) {
172                 free(rule, M_IPFW);
173                 return ENOSPC;
174         }
175
176         bcopy(input_rule, rule, l);
177         /* clear fields not settable from userland */
178         rule->x_next = NULL;
179         rule->next_rule = NULL;
180         rule->pcnt = 0;
181         rule->bcnt = 0;
182         rule->timestamp = 0;
183
184         if (V_autoinc_step < 1)
185                 V_autoinc_step = 1;
186         else if (V_autoinc_step > 1000)
187                 V_autoinc_step = 1000;
188         /* find the insertion point, we will insert before */
189         insert_before = rule->rulenum ? rule->rulenum + 1 : IPFW_DEFAULT_RULE;
190         i = ipfw_find_rule(chain, insert_before, 0);
191         /* duplicate first part */
192         if (i > 0)
193                 bcopy(chain->map, map, i * sizeof(struct ip_fw *));
194         map[i] = rule;
195         /* duplicate remaining part, we always have the default rule */
196         bcopy(chain->map + i, map + i + 1,
197                 sizeof(struct ip_fw *) *(chain->n_rules - i));
198         if (rule->rulenum == 0) {
199                 /* write back the number */
200                 rule->rulenum = i > 0 ? map[i-1]->rulenum : 0;
201                 if (rule->rulenum < IPFW_DEFAULT_RULE - V_autoinc_step)
202                         rule->rulenum += V_autoinc_step;
203                 input_rule->rulenum = rule->rulenum;
204         }
205
206         rule->id = chain->id + 1;
207         map = swap_map(chain, map, chain->n_rules + 1);
208         chain->static_len += l;
209         IPFW_UH_WUNLOCK(chain);
210         if (map)
211                 free(map, M_IPFW);
212         return (0);
213 }
214
215 /*
216  * Reclaim storage associated with a list of rules.  This is
217  * typically the list created using remove_rule.
218  * A NULL pointer on input is handled correctly.
219  */
220 void
221 ipfw_reap_rules(struct ip_fw *head)
222 {
223         struct ip_fw *rule;
224
225         while ((rule = head) != NULL) {
226                 head = head->x_next;
227                 free(rule, M_IPFW);
228         }
229 }
230
231 /*
232  * Used by del_entry() to check if a rule should be kept.
233  * Returns 1 if the rule must be kept, 0 otherwise.
234  *
235  * Called with cmd = {0,1,5}.
236  * cmd == 0 matches on rule numbers, excludes rules in RESVD_SET if n == 0 ;
237  * cmd == 1 matches on set numbers only, rule numbers are ignored;
238  * cmd == 5 matches on rule and set numbers.
239  *
240  * n == 0 is a wildcard for rule numbers, there is no wildcard for sets.
241  *
242  * Rules to keep are
243  *      (default || reserved || !match_set || !match_number)
244  * where
245  *   default ::= (rule->rulenum == IPFW_DEFAULT_RULE)
246  *      // the default rule is always protected
247  *
248  *   reserved ::= (cmd == 0 && n == 0 && rule->set == RESVD_SET)
249  *      // RESVD_SET is protected only if cmd == 0 and n == 0 ("ipfw flush")
250  *
251  *   match_set ::= (cmd == 0 || rule->set == set)
252  *      // set number is ignored for cmd == 0
253  *
254  *   match_number ::= (cmd == 1 || n == 0 || n == rule->rulenum)
255  *      // number is ignored for cmd == 1 or n == 0
256  *
257  */
258 static int
259 keep_rule(struct ip_fw *rule, uint8_t cmd, uint8_t set, uint32_t n)
260 {
261         return
262                  (rule->rulenum == IPFW_DEFAULT_RULE)           ||
263                  (cmd == 0 && n == 0 && rule->set == RESVD_SET) ||
264                 !(cmd == 0 || rule->set == set)                 ||
265                 !(cmd == 1 || n == 0 || n == rule->rulenum);
266 }
267
268 /**
269  * Remove all rules with given number, or do set manipulation.
270  * Assumes chain != NULL && *chain != NULL.
271  *
272  * The argument is an uint32_t. The low 16 bit are the rule or set number;
273  * the next 8 bits are the new set; the top 8 bits indicate the command:
274  *
275  *      0       delete rules numbered "rulenum"
276  *      1       delete rules in set "rulenum"
277  *      2       move rules "rulenum" to set "new_set"
278  *      3       move rules from set "rulenum" to set "new_set"
279  *      4       swap sets "rulenum" and "new_set"
280  *      5       delete rules "rulenum" and set "new_set"
281  */
282 static int
283 del_entry(struct ip_fw_chain *chain, uint32_t arg)
284 {
285         struct ip_fw *rule;
286         uint32_t num;   /* rule number or old_set */
287         uint8_t cmd, new_set;
288         int start, end, i, ofs, n;
289         struct ip_fw **map = NULL;
290         int error = 0;
291
292         num = arg & 0xffff;
293         cmd = (arg >> 24) & 0xff;
294         new_set = (arg >> 16) & 0xff;
295
296         if (cmd > 5 || new_set > RESVD_SET)
297                 return EINVAL;
298         if (cmd == 0 || cmd == 2 || cmd == 5) {
299                 if (num >= IPFW_DEFAULT_RULE)
300                         return EINVAL;
301         } else {
302                 if (num > RESVD_SET)    /* old_set */
303                         return EINVAL;
304         }
305
306         IPFW_UH_WLOCK(chain);   /* arbitrate writers */
307         chain->reap = NULL;     /* prepare for deletions */
308
309         switch (cmd) {
310         case 0: /* delete rules "num" (num == 0 matches all) */
311         case 1: /* delete all rules in set N */
312         case 5: /* delete rules with number N and set "new_set". */
313
314                 /*
315                  * Locate first rule to delete (start), the rule after
316                  * the last one to delete (end), and count how many
317                  * rules to delete (n). Always use keep_rule() to
318                  * determine which rules to keep.
319                  */
320                 n = 0;
321                 if (cmd == 1) {
322                         /* look for a specific set including RESVD_SET.
323                          * Must scan the entire range, ignore num.
324                          */
325                         new_set = num;
326                         for (start = -1, end = i = 0; i < chain->n_rules; i++) {
327                                 if (keep_rule(chain->map[i], cmd, new_set, 0))
328                                         continue;
329                                 if (start < 0)
330                                         start = i;
331                                 end = i;
332                                 n++;
333                         }
334                         end++;  /* first non-matching */
335                 } else {
336                         /* Optimized search on rule numbers */
337                         start = ipfw_find_rule(chain, num, 0);
338                         for (end = start; end < chain->n_rules; end++) {
339                                 rule = chain->map[end];
340                                 if (num > 0 && rule->rulenum != num)
341                                         break;
342                                 if (!keep_rule(rule, cmd, new_set, num))
343                                         n++;
344                         }
345                 }
346
347                 if (n == 0) {
348                         /* A flush request (arg == 0 or cmd == 1) on empty
349                          * ruleset returns with no error. On the contrary,
350                          * if there is no match on a specific request,
351                          * we return EINVAL.
352                          */
353                         if (arg != 0 && cmd != 1)
354                                 error = EINVAL;
355                         break;
356                 }
357
358                 /* We have something to delete. Allocate the new map */
359                 map = get_map(chain, -n, 1 /* locked */);
360                 if (map == NULL) {
361                         error = EINVAL;
362                         break;
363                 }
364
365                 /* 1. bcopy the initial part of the map */
366                 if (start > 0)
367                         bcopy(chain->map, map, start * sizeof(struct ip_fw *));
368                 /* 2. copy active rules between start and end */
369                 for (i = ofs = start; i < end; i++) {
370                         rule = chain->map[i];
371                         if (keep_rule(rule, cmd, new_set, num))
372                                 map[ofs++] = rule;
373                 }
374                 /* 3. copy the final part of the map */
375                 bcopy(chain->map + end, map + ofs,
376                         (chain->n_rules - end) * sizeof(struct ip_fw *));
377                 /* 4. swap the maps (under BH_LOCK) */
378                 map = swap_map(chain, map, chain->n_rules - n);
379                 /* 5. now remove the rules deleted from the old map */
380                 if (cmd == 1)
381                         ipfw_expire_dyn_rules(chain, NULL, new_set);
382                 for (i = start; i < end; i++) {
383                         rule = map[i];
384                         if (keep_rule(rule, cmd, new_set, num))
385                                 continue;
386                         chain->static_len -= RULESIZE(rule);
387                         if (cmd != 1)
388                                 ipfw_expire_dyn_rules(chain, rule, RESVD_SET);
389                         rule->x_next = chain->reap;
390                         chain->reap = rule;
391                 }
392                 break;
393
394         /*
395          * In the next 3 cases the loop stops at (n_rules - 1)
396          * because the default rule is never eligible..
397          */
398
399         case 2: /* move rules with given RULE number to new set */
400                 for (i = 0; i < chain->n_rules - 1; i++) {
401                         rule = chain->map[i];
402                         if (rule->rulenum == num)
403                                 rule->set = new_set;
404                 }
405                 break;
406
407         case 3: /* move rules with given SET number to new set */
408                 for (i = 0; i < chain->n_rules - 1; i++) {
409                         rule = chain->map[i];
410                         if (rule->set == num)
411                                 rule->set = new_set;
412                 }
413                 break;
414
415         case 4: /* swap two sets */
416                 for (i = 0; i < chain->n_rules - 1; i++) {
417                         rule = chain->map[i];
418                         if (rule->set == num)
419                                 rule->set = new_set;
420                         else if (rule->set == new_set)
421                                 rule->set = num;
422                 }
423                 break;
424         }
425
426         rule = chain->reap;
427         chain->reap = NULL;
428         IPFW_UH_WUNLOCK(chain);
429         ipfw_reap_rules(rule);
430         if (map)
431                 free(map, M_IPFW);
432         return error;
433 }
434
435 /*
436  * Clear counters for a specific rule.
437  * Normally run under IPFW_UH_RLOCK, but these are idempotent ops
438  * so we only care that rules do not disappear.
439  */
440 static void
441 clear_counters(struct ip_fw *rule, int log_only)
442 {
443         ipfw_insn_log *l = (ipfw_insn_log *)ACTION_PTR(rule);
444
445         if (log_only == 0) {
446                 rule->bcnt = rule->pcnt = 0;
447                 rule->timestamp = 0;
448         }
449         if (l->o.opcode == O_LOG)
450                 l->log_left = l->max_log;
451 }
452
453 /**
454  * Reset some or all counters on firewall rules.
455  * The argument `arg' is an u_int32_t. The low 16 bit are the rule number,
456  * the next 8 bits are the set number, the top 8 bits are the command:
457  *      0       work with rules from all set's;
458  *      1       work with rules only from specified set.
459  * Specified rule number is zero if we want to clear all entries.
460  * log_only is 1 if we only want to reset logs, zero otherwise.
461  */
462 static int
463 zero_entry(struct ip_fw_chain *chain, u_int32_t arg, int log_only)
464 {
465         struct ip_fw *rule;
466         char *msg;
467         int i;
468
469         uint16_t rulenum = arg & 0xffff;
470         uint8_t set = (arg >> 16) & 0xff;
471         uint8_t cmd = (arg >> 24) & 0xff;
472
473         if (cmd > 1)
474                 return (EINVAL);
475         if (cmd == 1 && set > RESVD_SET)
476                 return (EINVAL);
477
478         IPFW_UH_RLOCK(chain);
479         if (rulenum == 0) {
480                 V_norule_counter = 0;
481                 for (i = 0; i < chain->n_rules; i++) {
482                         rule = chain->map[i];
483                         /* Skip rules not in our set. */
484                         if (cmd == 1 && rule->set != set)
485                                 continue;
486                         clear_counters(rule, log_only);
487                 }
488                 msg = log_only ? "All logging counts reset" :
489                     "Accounting cleared";
490         } else {
491                 int cleared = 0;
492                 for (i = 0; i < chain->n_rules; i++) {
493                         rule = chain->map[i];
494                         if (rule->rulenum == rulenum) {
495                                 if (cmd == 0 || rule->set == set)
496                                         clear_counters(rule, log_only);
497                                 cleared = 1;
498                         }
499                         if (rule->rulenum > rulenum)
500                                 break;
501                 }
502                 if (!cleared) { /* we did not find any matching rules */
503                         IPFW_UH_RUNLOCK(chain);
504                         return (EINVAL);
505                 }
506                 msg = log_only ? "logging count reset" : "cleared";
507         }
508         IPFW_UH_RUNLOCK(chain);
509
510         if (V_fw_verbose) {
511                 int lev = LOG_SECURITY | LOG_NOTICE;
512
513                 if (rulenum)
514                         log(lev, "ipfw: Entry %d %s.\n", rulenum, msg);
515                 else
516                         log(lev, "ipfw: %s.\n", msg);
517         }
518         return (0);
519 }
520
521 /*
522  * Check validity of the structure before insert.
523  * Rules are simple, so this mostly need to check rule sizes.
524  */
525 static int
526 check_ipfw_struct(struct ip_fw *rule, int size)
527 {
528         int l, cmdlen = 0;
529         int have_action=0;
530         ipfw_insn *cmd;
531
532         if (size < sizeof(*rule)) {
533                 printf("ipfw: rule too short\n");
534                 return (EINVAL);
535         }
536         /* first, check for valid size */
537         l = RULESIZE(rule);
538         if (l != size) {
539                 printf("ipfw: size mismatch (have %d want %d)\n", size, l);
540                 return (EINVAL);
541         }
542         if (rule->act_ofs >= rule->cmd_len) {
543                 printf("ipfw: bogus action offset (%u > %u)\n",
544                     rule->act_ofs, rule->cmd_len - 1);
545                 return (EINVAL);
546         }
547         /*
548          * Now go for the individual checks. Very simple ones, basically only
549          * instruction sizes.
550          */
551         for (l = rule->cmd_len, cmd = rule->cmd ;
552                         l > 0 ; l -= cmdlen, cmd += cmdlen) {
553                 cmdlen = F_LEN(cmd);
554                 if (cmdlen > l) {
555                         printf("ipfw: opcode %d size truncated\n",
556                             cmd->opcode);
557                         return EINVAL;
558                 }
559                 switch (cmd->opcode) {
560                 case O_PROBE_STATE:
561                 case O_KEEP_STATE:
562                 case O_PROTO:
563                 case O_IP_SRC_ME:
564                 case O_IP_DST_ME:
565                 case O_LAYER2:
566                 case O_IN:
567                 case O_FRAG:
568                 case O_DIVERTED:
569                 case O_IPOPT:
570                 case O_IPTOS:
571                 case O_IPPRECEDENCE:
572                 case O_IPVER:
573                 case O_SOCKARG:
574                 case O_TCPFLAGS:
575                 case O_TCPOPTS:
576                 case O_ESTAB:
577                 case O_VERREVPATH:
578                 case O_VERSRCREACH:
579                 case O_ANTISPOOF:
580                 case O_IPSEC:
581 #ifdef INET6
582                 case O_IP6_SRC_ME:
583                 case O_IP6_DST_ME:
584                 case O_EXT_HDR:
585                 case O_IP6:
586 #endif
587                 case O_IP4:
588                 case O_TAG:
589                         if (cmdlen != F_INSN_SIZE(ipfw_insn))
590                                 goto bad_size;
591                         break;
592
593                 case O_FIB:
594                         if (cmdlen != F_INSN_SIZE(ipfw_insn))
595                                 goto bad_size;
596                         if (cmd->arg1 >= rt_numfibs) {
597                                 printf("ipfw: invalid fib number %d\n",
598                                         cmd->arg1);
599                                 return EINVAL;
600                         }
601                         break;
602
603                 case O_SETFIB:
604                         if (cmdlen != F_INSN_SIZE(ipfw_insn))
605                                 goto bad_size;
606                         if ((cmd->arg1 != IP_FW_TABLEARG) &&
607                             (cmd->arg1 >= rt_numfibs)) {
608                                 printf("ipfw: invalid fib number %d\n",
609                                         cmd->arg1);
610                                 return EINVAL;
611                         }
612                         goto check_action;
613
614                 case O_UID:
615                 case O_GID:
616                 case O_JAIL:
617                 case O_IP_SRC:
618                 case O_IP_DST:
619                 case O_TCPSEQ:
620                 case O_TCPACK:
621                 case O_PROB:
622                 case O_ICMPTYPE:
623                         if (cmdlen != F_INSN_SIZE(ipfw_insn_u32))
624                                 goto bad_size;
625                         break;
626
627                 case O_LIMIT:
628                         if (cmdlen != F_INSN_SIZE(ipfw_insn_limit))
629                                 goto bad_size;
630                         break;
631
632                 case O_LOG:
633                         if (cmdlen != F_INSN_SIZE(ipfw_insn_log))
634                                 goto bad_size;
635
636                         ((ipfw_insn_log *)cmd)->log_left =
637                             ((ipfw_insn_log *)cmd)->max_log;
638
639                         break;
640
641                 case O_IP_SRC_MASK:
642                 case O_IP_DST_MASK:
643                         /* only odd command lengths */
644                         if ( !(cmdlen & 1) || cmdlen > 31)
645                                 goto bad_size;
646                         break;
647
648                 case O_IP_SRC_SET:
649                 case O_IP_DST_SET:
650                         if (cmd->arg1 == 0 || cmd->arg1 > 256) {
651                                 printf("ipfw: invalid set size %d\n",
652                                         cmd->arg1);
653                                 return EINVAL;
654                         }
655                         if (cmdlen != F_INSN_SIZE(ipfw_insn_u32) +
656                             (cmd->arg1+31)/32 )
657                                 goto bad_size;
658                         break;
659
660                 case O_IP_SRC_LOOKUP:
661                 case O_IP_DST_LOOKUP:
662                         if (cmd->arg1 >= IPFW_TABLES_MAX) {
663                                 printf("ipfw: invalid table number %d\n",
664                                     cmd->arg1);
665                                 return (EINVAL);
666                         }
667                         if (cmdlen != F_INSN_SIZE(ipfw_insn) &&
668                             cmdlen != F_INSN_SIZE(ipfw_insn_u32) + 1 &&
669                             cmdlen != F_INSN_SIZE(ipfw_insn_u32))
670                                 goto bad_size;
671                         break;
672                 case O_MACADDR2:
673                         if (cmdlen != F_INSN_SIZE(ipfw_insn_mac))
674                                 goto bad_size;
675                         break;
676
677                 case O_NOP:
678                 case O_IPID:
679                 case O_IPTTL:
680                 case O_IPLEN:
681                 case O_TCPDATALEN:
682                 case O_TCPWIN:
683                 case O_TAGGED:
684                         if (cmdlen < 1 || cmdlen > 31)
685                                 goto bad_size;
686                         break;
687
688                 case O_MAC_TYPE:
689                 case O_IP_SRCPORT:
690                 case O_IP_DSTPORT: /* XXX artificial limit, 30 port pairs */
691                         if (cmdlen < 2 || cmdlen > 31)
692                                 goto bad_size;
693                         break;
694
695                 case O_RECV:
696                 case O_XMIT:
697                 case O_VIA:
698                         if (cmdlen != F_INSN_SIZE(ipfw_insn_if))
699                                 goto bad_size;
700                         break;
701
702                 case O_ALTQ:
703                         if (cmdlen != F_INSN_SIZE(ipfw_insn_altq))
704                                 goto bad_size;
705                         break;
706
707                 case O_PIPE:
708                 case O_QUEUE:
709                         if (cmdlen != F_INSN_SIZE(ipfw_insn))
710                                 goto bad_size;
711                         goto check_action;
712
713                 case O_FORWARD_IP:
714                         if (cmdlen != F_INSN_SIZE(ipfw_insn_sa))
715                                 goto bad_size;
716                         goto check_action;
717 #ifdef INET6
718                 case O_FORWARD_IP6:
719                         if (cmdlen != F_INSN_SIZE(ipfw_insn_sa6))
720                                 goto bad_size;
721                         goto check_action;
722 #endif /* INET6 */
723
724                 case O_DIVERT:
725                 case O_TEE:
726                         if (ip_divert_ptr == NULL)
727                                 return EINVAL;
728                         else
729                                 goto check_size;
730                 case O_NETGRAPH:
731                 case O_NGTEE:
732                         if (ng_ipfw_input_p == NULL)
733                                 return EINVAL;
734                         else
735                                 goto check_size;
736                 case O_NAT:
737                         if (!IPFW_NAT_LOADED)
738                                 return EINVAL;
739                         if (cmdlen != F_INSN_SIZE(ipfw_insn_nat))
740                                 goto bad_size;          
741                         goto check_action;
742                 case O_FORWARD_MAC: /* XXX not implemented yet */
743                 case O_CHECK_STATE:
744                 case O_COUNT:
745                 case O_ACCEPT:
746                 case O_DENY:
747                 case O_REJECT:
748 #ifdef INET6
749                 case O_UNREACH6:
750 #endif
751                 case O_SKIPTO:
752                 case O_REASS:
753                 case O_CALLRETURN:
754 check_size:
755                         if (cmdlen != F_INSN_SIZE(ipfw_insn))
756                                 goto bad_size;
757 check_action:
758                         if (have_action) {
759                                 printf("ipfw: opcode %d, multiple actions"
760                                         " not allowed\n",
761                                         cmd->opcode);
762                                 return EINVAL;
763                         }
764                         have_action = 1;
765                         if (l != cmdlen) {
766                                 printf("ipfw: opcode %d, action must be"
767                                         " last opcode\n",
768                                         cmd->opcode);
769                                 return EINVAL;
770                         }
771                         break;
772 #ifdef INET6
773                 case O_IP6_SRC:
774                 case O_IP6_DST:
775                         if (cmdlen != F_INSN_SIZE(struct in6_addr) +
776                             F_INSN_SIZE(ipfw_insn))
777                                 goto bad_size;
778                         break;
779
780                 case O_FLOW6ID:
781                         if (cmdlen != F_INSN_SIZE(ipfw_insn_u32) +
782                             ((ipfw_insn_u32 *)cmd)->o.arg1)
783                                 goto bad_size;
784                         break;
785
786                 case O_IP6_SRC_MASK:
787                 case O_IP6_DST_MASK:
788                         if ( !(cmdlen & 1) || cmdlen > 127)
789                                 goto bad_size;
790                         break;
791                 case O_ICMP6TYPE:
792                         if( cmdlen != F_INSN_SIZE( ipfw_insn_icmp6 ) )
793                                 goto bad_size;
794                         break;
795 #endif
796
797                 default:
798                         switch (cmd->opcode) {
799 #ifndef INET6
800                         case O_IP6_SRC_ME:
801                         case O_IP6_DST_ME:
802                         case O_EXT_HDR:
803                         case O_IP6:
804                         case O_UNREACH6:
805                         case O_IP6_SRC:
806                         case O_IP6_DST:
807                         case O_FLOW6ID:
808                         case O_IP6_SRC_MASK:
809                         case O_IP6_DST_MASK:
810                         case O_ICMP6TYPE:
811                                 printf("ipfw: no IPv6 support in kernel\n");
812                                 return EPROTONOSUPPORT;
813 #endif
814                         default:
815                                 printf("ipfw: opcode %d, unknown opcode\n",
816                                         cmd->opcode);
817                                 return EINVAL;
818                         }
819                 }
820         }
821         if (have_action == 0) {
822                 printf("ipfw: missing action\n");
823                 return EINVAL;
824         }
825         return 0;
826
827 bad_size:
828         printf("ipfw: opcode %d size %d wrong\n",
829                 cmd->opcode, cmdlen);
830         return EINVAL;
831 }
832
833
834 /*
835  * Translation of requests for compatibility with FreeBSD 7.2/8.
836  * a static variable tells us if we have an old client from userland,
837  * and if necessary we translate requests and responses between the
838  * two formats.
839  */
840 static int is7 = 0;
841
842 struct ip_fw7 {
843         struct ip_fw7   *next;          /* linked list of rules     */
844         struct ip_fw7   *next_rule;     /* ptr to next [skipto] rule    */
845         /* 'next_rule' is used to pass up 'set_disable' status      */
846
847         uint16_t        act_ofs;        /* offset of action in 32-bit units */
848         uint16_t        cmd_len;        /* # of 32-bit words in cmd */
849         uint16_t        rulenum;        /* rule number          */
850         uint8_t         set;            /* rule set (0..31)     */
851         // #define RESVD_SET   31  /* set for default and persistent rules */
852         uint8_t         _pad;           /* padding          */
853         // uint32_t        id;             /* rule id, only in v.8 */
854         /* These fields are present in all rules.           */
855         uint64_t        pcnt;           /* Packet counter       */
856         uint64_t        bcnt;           /* Byte counter         */
857         uint32_t        timestamp;      /* tv_sec of last match     */
858
859         ipfw_insn       cmd[1];         /* storage for commands     */
860 };
861
862         int convert_rule_to_7(struct ip_fw *rule);
863 int convert_rule_to_8(struct ip_fw *rule);
864
865 #ifndef RULESIZE7
866 #define RULESIZE7(rule)  (sizeof(struct ip_fw7) + \
867         ((struct ip_fw7 *)(rule))->cmd_len * 4 - 4)
868 #endif
869
870
871 /*
872  * Copy the static and dynamic rules to the supplied buffer
873  * and return the amount of space actually used.
874  * Must be run under IPFW_UH_RLOCK
875  */
876 static size_t
877 ipfw_getrules(struct ip_fw_chain *chain, void *buf, size_t space)
878 {
879         char *bp = buf;
880         char *ep = bp + space;
881         struct ip_fw *rule, *dst;
882         int l, i;
883         time_t  boot_seconds;
884
885         boot_seconds = boottime.tv_sec;
886         for (i = 0; i < chain->n_rules; i++) {
887                 rule = chain->map[i];
888
889                 if (is7) {
890                     /* Convert rule to FreeBSd 7.2 format */
891                     l = RULESIZE7(rule);
892                     if (bp + l + sizeof(uint32_t) <= ep) {
893                         int error;
894                         bcopy(rule, bp, l + sizeof(uint32_t));
895                         error = convert_rule_to_7((struct ip_fw *) bp);
896                         if (error)
897                                 return 0; /*XXX correct? */
898                         /*
899                          * XXX HACK. Store the disable mask in the "next"
900                          * pointer in a wild attempt to keep the ABI the same.
901                          * Why do we do this on EVERY rule?
902                          */
903                         bcopy(&V_set_disable,
904                                 &(((struct ip_fw7 *)bp)->next_rule),
905                                 sizeof(V_set_disable));
906                         if (((struct ip_fw7 *)bp)->timestamp)
907                             ((struct ip_fw7 *)bp)->timestamp += boot_seconds;
908                         bp += l;
909                     }
910                     continue; /* go to next rule */
911                 }
912
913                 /* normal mode, don't touch rules */
914                 l = RULESIZE(rule);
915                 if (bp + l > ep) { /* should not happen */
916                         printf("overflow dumping static rules\n");
917                         break;
918                 }
919                 dst = (struct ip_fw *)bp;
920                 bcopy(rule, dst, l);
921                 /*
922                  * XXX HACK. Store the disable mask in the "next"
923                  * pointer in a wild attempt to keep the ABI the same.
924                  * Why do we do this on EVERY rule?
925                  */
926                 bcopy(&V_set_disable, &dst->next_rule, sizeof(V_set_disable));
927                 if (dst->timestamp)
928                         dst->timestamp += boot_seconds;
929                 bp += l;
930         }
931         ipfw_get_dynamic(chain, &bp, ep); /* protected by the dynamic lock */
932         return (bp - (char *)buf);
933 }
934
935
936 #define IP_FW3_OPLENGTH(x)      ((x)->sopt_valsize - sizeof(ip_fw3_opheader))
937 /**
938  * {set|get}sockopt parser.
939  */
940 int
941 ipfw_ctl(struct sockopt *sopt)
942 {
943 #define RULE_MAXSIZE    (256*sizeof(u_int32_t))
944         int error;
945         size_t size, len, valsize;
946         struct ip_fw *buf, *rule;
947         struct ip_fw_chain *chain;
948         u_int32_t rulenum[2];
949         uint32_t opt;
950         char xbuf[128];
951         ip_fw3_opheader *op3 = NULL;
952
953         error = priv_check(sopt->sopt_td, PRIV_NETINET_IPFW);
954         if (error)
955                 return (error);
956
957         /*
958          * Disallow modifications in really-really secure mode, but still allow
959          * the logging counters to be reset.
960          */
961         if (sopt->sopt_name == IP_FW_ADD ||
962             (sopt->sopt_dir == SOPT_SET && sopt->sopt_name != IP_FW_RESETLOG)) {
963                 error = securelevel_ge(sopt->sopt_td->td_ucred, 3);
964                 if (error)
965                         return (error);
966         }
967
968         chain = &V_layer3_chain;
969         error = 0;
970
971         /* Save original valsize before it is altered via sooptcopyin() */
972         valsize = sopt->sopt_valsize;
973         if ((opt = sopt->sopt_name) == IP_FW3) {
974                 /* 
975                  * Copy not less than sizeof(ip_fw3_opheader).
976                  * We hope any IP_FW3 command will fit into 128-byte buffer.
977                  */
978                 if ((error = sooptcopyin(sopt, xbuf, sizeof(xbuf),
979                         sizeof(ip_fw3_opheader))) != 0)
980                         return (error);
981                 op3 = (ip_fw3_opheader *)xbuf;
982                 opt = op3->opcode;
983         }
984
985         switch (opt) {
986         case IP_FW_GET:
987                 /*
988                  * pass up a copy of the current rules. Static rules
989                  * come first (the last of which has number IPFW_DEFAULT_RULE),
990                  * followed by a possibly empty list of dynamic rule.
991                  * The last dynamic rule has NULL in the "next" field.
992                  *
993                  * Note that the calculated size is used to bound the
994                  * amount of data returned to the user.  The rule set may
995                  * change between calculating the size and returning the
996                  * data in which case we'll just return what fits.
997                  */
998                 for (;;) {
999                         int len = 0, want;
1000
1001                         size = chain->static_len;
1002                         size += ipfw_dyn_len();
1003                         if (size >= sopt->sopt_valsize)
1004                                 break;
1005                         buf = malloc(size, M_TEMP, M_WAITOK);
1006                         if (buf == NULL)
1007                                 break;
1008                         IPFW_UH_RLOCK(chain);
1009                         /* check again how much space we need */
1010                         want = chain->static_len + ipfw_dyn_len();
1011                         if (size >= want)
1012                                 len = ipfw_getrules(chain, buf, size);
1013                         IPFW_UH_RUNLOCK(chain);
1014                         if (size >= want)
1015                                 error = sooptcopyout(sopt, buf, len);
1016                         free(buf, M_TEMP);
1017                         if (size >= want)
1018                                 break;
1019                 }
1020                 break;
1021
1022         case IP_FW_FLUSH:
1023                 /* locking is done within del_entry() */
1024                 error = del_entry(chain, 0); /* special case, rule=0, cmd=0 means all */
1025                 break;
1026
1027         case IP_FW_ADD:
1028                 rule = malloc(RULE_MAXSIZE, M_TEMP, M_WAITOK);
1029                 error = sooptcopyin(sopt, rule, RULE_MAXSIZE,
1030                         sizeof(struct ip_fw7) );
1031
1032                 /*
1033                  * If the size of commands equals RULESIZE7 then we assume
1034                  * a FreeBSD7.2 binary is talking to us (set is7=1).
1035                  * is7 is persistent so the next 'ipfw list' command
1036                  * will use this format.
1037                  * NOTE: If wrong version is guessed (this can happen if
1038                  *       the first ipfw command is 'ipfw [pipe] list')
1039                  *       the ipfw binary may crash or loop infinitly...
1040                  */
1041                 if (sopt->sopt_valsize == RULESIZE7(rule)) {
1042                     is7 = 1;
1043                     error = convert_rule_to_8(rule);
1044                     if (error)
1045                         return error;
1046                     if (error == 0)
1047                         error = check_ipfw_struct(rule, RULESIZE(rule));
1048                 } else {
1049                     is7 = 0;
1050                 if (error == 0)
1051                         error = check_ipfw_struct(rule, sopt->sopt_valsize);
1052                 }
1053                 if (error == 0) {
1054                         /* locking is done within ipfw_add_rule() */
1055                         error = ipfw_add_rule(chain, rule);
1056                         size = RULESIZE(rule);
1057                         if (!error && sopt->sopt_dir == SOPT_GET) {
1058                                 if (is7) {
1059                                         error = convert_rule_to_7(rule);
1060                                         size = RULESIZE7(rule);
1061                                         if (error)
1062                                                 return error;
1063                                 }
1064                                 error = sooptcopyout(sopt, rule, size);
1065                 }
1066                 }
1067                 free(rule, M_TEMP);
1068                 break;
1069
1070         case IP_FW_DEL:
1071                 /*
1072                  * IP_FW_DEL is used for deleting single rules or sets,
1073                  * and (ab)used to atomically manipulate sets. Argument size
1074                  * is used to distinguish between the two:
1075                  *    sizeof(u_int32_t)
1076                  *      delete single rule or set of rules,
1077                  *      or reassign rules (or sets) to a different set.
1078                  *    2*sizeof(u_int32_t)
1079                  *      atomic disable/enable sets.
1080                  *      first u_int32_t contains sets to be disabled,
1081                  *      second u_int32_t contains sets to be enabled.
1082                  */
1083                 error = sooptcopyin(sopt, rulenum,
1084                         2*sizeof(u_int32_t), sizeof(u_int32_t));
1085                 if (error)
1086                         break;
1087                 size = sopt->sopt_valsize;
1088                 if (size == sizeof(u_int32_t) && rulenum[0] != 0) {
1089                         /* delete or reassign, locking done in del_entry() */
1090                         error = del_entry(chain, rulenum[0]);
1091                 } else if (size == 2*sizeof(u_int32_t)) { /* set enable/disable */
1092                         IPFW_UH_WLOCK(chain);
1093                         V_set_disable =
1094                             (V_set_disable | rulenum[0]) & ~rulenum[1] &
1095                             ~(1<<RESVD_SET); /* set RESVD_SET always enabled */
1096                         IPFW_UH_WUNLOCK(chain);
1097                 } else
1098                         error = EINVAL;
1099                 break;
1100
1101         case IP_FW_ZERO:
1102         case IP_FW_RESETLOG: /* argument is an u_int_32, the rule number */
1103                 rulenum[0] = 0;
1104                 if (sopt->sopt_val != 0) {
1105                     error = sooptcopyin(sopt, rulenum,
1106                             sizeof(u_int32_t), sizeof(u_int32_t));
1107                     if (error)
1108                         break;
1109                 }
1110                 error = zero_entry(chain, rulenum[0],
1111                         sopt->sopt_name == IP_FW_RESETLOG);
1112                 break;
1113
1114         /*--- TABLE manipulations are protected by the IPFW_LOCK ---*/
1115         case IP_FW_TABLE_ADD:
1116                 {
1117                         ipfw_table_entry ent;
1118
1119                         error = sooptcopyin(sopt, &ent,
1120                             sizeof(ent), sizeof(ent));
1121                         if (error)
1122                                 break;
1123                         error = ipfw_add_table_entry(chain, ent.tbl,
1124                             &ent.addr, sizeof(ent.addr), ent.masklen, 
1125                             IPFW_TABLE_CIDR, ent.value);
1126                 }
1127                 break;
1128
1129         case IP_FW_TABLE_DEL:
1130                 {
1131                         ipfw_table_entry ent;
1132
1133                         error = sooptcopyin(sopt, &ent,
1134                             sizeof(ent), sizeof(ent));
1135                         if (error)
1136                                 break;
1137                         error = ipfw_del_table_entry(chain, ent.tbl,
1138                             &ent.addr, sizeof(ent.addr), ent.masklen, IPFW_TABLE_CIDR);
1139                 }
1140                 break;
1141
1142         case IP_FW_TABLE_XADD: /* IP_FW3 */
1143         case IP_FW_TABLE_XDEL: /* IP_FW3 */
1144                 {
1145                         ipfw_table_xentry *xent = (ipfw_table_xentry *)(op3 + 1);
1146
1147                         /* Check minimum header size */
1148                         if (IP_FW3_OPLENGTH(sopt) < offsetof(ipfw_table_xentry, k)) {
1149                                 error = EINVAL;
1150                                 break;
1151                         }
1152
1153                         /* Check if len field is valid */
1154                         if (xent->len > sizeof(ipfw_table_xentry)) {
1155                                 error = EINVAL;
1156                                 break;
1157                         }
1158                         
1159                         len = xent->len - offsetof(ipfw_table_xentry, k);
1160
1161                         error = (opt == IP_FW_TABLE_XADD) ?
1162                                 ipfw_add_table_entry(chain, xent->tbl, &xent->k, 
1163                                         len, xent->masklen, xent->type, xent->value) :
1164                                 ipfw_del_table_entry(chain, xent->tbl, &xent->k,
1165                                         len, xent->masklen, xent->type);
1166                 }
1167                 break;
1168
1169         case IP_FW_TABLE_FLUSH:
1170                 {
1171                         u_int16_t tbl;
1172
1173                         error = sooptcopyin(sopt, &tbl,
1174                             sizeof(tbl), sizeof(tbl));
1175                         if (error)
1176                                 break;
1177                         error = ipfw_flush_table(chain, tbl);
1178                 }
1179                 break;
1180
1181         case IP_FW_TABLE_GETSIZE:
1182                 {
1183                         u_int32_t tbl, cnt;
1184
1185                         if ((error = sooptcopyin(sopt, &tbl, sizeof(tbl),
1186                             sizeof(tbl))))
1187                                 break;
1188                         IPFW_RLOCK(chain);
1189                         error = ipfw_count_table(chain, tbl, &cnt);
1190                         IPFW_RUNLOCK(chain);
1191                         if (error)
1192                                 break;
1193                         error = sooptcopyout(sopt, &cnt, sizeof(cnt));
1194                 }
1195                 break;
1196
1197         case IP_FW_TABLE_LIST:
1198                 {
1199                         ipfw_table *tbl;
1200
1201                         if (sopt->sopt_valsize < sizeof(*tbl)) {
1202                                 error = EINVAL;
1203                                 break;
1204                         }
1205                         size = sopt->sopt_valsize;
1206                         tbl = malloc(size, M_TEMP, M_WAITOK);
1207                         error = sooptcopyin(sopt, tbl, size, sizeof(*tbl));
1208                         if (error) {
1209                                 free(tbl, M_TEMP);
1210                                 break;
1211                         }
1212                         tbl->size = (size - sizeof(*tbl)) /
1213                             sizeof(ipfw_table_entry);
1214                         IPFW_RLOCK(chain);
1215                         error = ipfw_dump_table(chain, tbl);
1216                         IPFW_RUNLOCK(chain);
1217                         if (error) {
1218                                 free(tbl, M_TEMP);
1219                                 break;
1220                         }
1221                         error = sooptcopyout(sopt, tbl, size);
1222                         free(tbl, M_TEMP);
1223                 }
1224                 break;
1225
1226         case IP_FW_TABLE_XGETSIZE: /* IP_FW3 */
1227                 {
1228                         uint32_t *tbl;
1229
1230                         if (IP_FW3_OPLENGTH(sopt) < sizeof(uint32_t)) {
1231                                 error = EINVAL;
1232                                 break;
1233                         }
1234
1235                         tbl = (uint32_t *)(op3 + 1);
1236
1237                         IPFW_RLOCK(chain);
1238                         error = ipfw_count_xtable(chain, *tbl, tbl);
1239                         IPFW_RUNLOCK(chain);
1240                         if (error)
1241                                 break;
1242                         error = sooptcopyout(sopt, op3, sopt->sopt_valsize);
1243                 }
1244                 break;
1245
1246         case IP_FW_TABLE_XLIST: /* IP_FW3 */
1247                 {
1248                         ipfw_xtable *tbl;
1249
1250                         if ((size = valsize) < sizeof(ipfw_xtable)) {
1251                                 error = EINVAL;
1252                                 break;
1253                         }
1254
1255                         tbl = malloc(size, M_TEMP, M_ZERO | M_WAITOK);
1256                         memcpy(tbl, op3, sizeof(ipfw_xtable));
1257
1258                         /* Get maximum number of entries we can store */
1259                         tbl->size = (size - sizeof(ipfw_xtable)) /
1260                             sizeof(ipfw_table_xentry);
1261                         IPFW_RLOCK(chain);
1262                         error = ipfw_dump_xtable(chain, tbl);
1263                         IPFW_RUNLOCK(chain);
1264                         if (error) {
1265                                 free(tbl, M_TEMP);
1266                                 break;
1267                         }
1268
1269                         /* Revert size field back to bytes */
1270                         tbl->size = tbl->size * sizeof(ipfw_table_xentry) +
1271                                 sizeof(ipfw_table);
1272                         /* 
1273                          * Since we call sooptcopyin() with small buffer, sopt_valsize is
1274                          * decreased to reflect supplied buffer size. Set it back to original value
1275                          */
1276                         sopt->sopt_valsize = valsize;
1277                         error = sooptcopyout(sopt, tbl, size);
1278                         free(tbl, M_TEMP);
1279                 }
1280                 break;
1281
1282         /*--- NAT operations are protected by the IPFW_LOCK ---*/
1283         case IP_FW_NAT_CFG:
1284                 if (IPFW_NAT_LOADED)
1285                         error = ipfw_nat_cfg_ptr(sopt);
1286                 else {
1287                         printf("IP_FW_NAT_CFG: %s\n",
1288                             "ipfw_nat not present, please load it");
1289                         error = EINVAL;
1290                 }
1291                 break;
1292
1293         case IP_FW_NAT_DEL:
1294                 if (IPFW_NAT_LOADED)
1295                         error = ipfw_nat_del_ptr(sopt);
1296                 else {
1297                         printf("IP_FW_NAT_DEL: %s\n",
1298                             "ipfw_nat not present, please load it");
1299                         error = EINVAL;
1300                 }
1301                 break;
1302
1303         case IP_FW_NAT_GET_CONFIG:
1304                 if (IPFW_NAT_LOADED)
1305                         error = ipfw_nat_get_cfg_ptr(sopt);
1306                 else {
1307                         printf("IP_FW_NAT_GET_CFG: %s\n",
1308                             "ipfw_nat not present, please load it");
1309                         error = EINVAL;
1310                 }
1311                 break;
1312
1313         case IP_FW_NAT_GET_LOG:
1314                 if (IPFW_NAT_LOADED)
1315                         error = ipfw_nat_get_log_ptr(sopt);
1316                 else {
1317                         printf("IP_FW_NAT_GET_LOG: %s\n",
1318                             "ipfw_nat not present, please load it");
1319                         error = EINVAL;
1320                 }
1321                 break;
1322
1323         default:
1324                 printf("ipfw: ipfw_ctl invalid option %d\n", sopt->sopt_name);
1325                 error = EINVAL;
1326         }
1327
1328         return (error);
1329 #undef RULE_MAXSIZE
1330 }
1331
1332
1333 #define RULE_MAXSIZE    (256*sizeof(u_int32_t))
1334
1335 /* Functions to convert rules 7.2 <==> 8.0 */
1336 int
1337 convert_rule_to_7(struct ip_fw *rule)
1338 {
1339         /* Used to modify original rule */
1340         struct ip_fw7 *rule7 = (struct ip_fw7 *)rule;
1341         /* copy of original rule, version 8 */
1342         struct ip_fw *tmp;
1343
1344         /* Used to copy commands */
1345         ipfw_insn *ccmd, *dst;
1346         int ll = 0, ccmdlen = 0;
1347
1348         tmp = malloc(RULE_MAXSIZE, M_TEMP, M_NOWAIT | M_ZERO);
1349         if (tmp == NULL) {
1350                 return 1; //XXX error
1351         }
1352         bcopy(rule, tmp, RULE_MAXSIZE);
1353
1354         /* Copy fields */
1355         rule7->_pad = tmp->_pad;
1356         rule7->set = tmp->set;
1357         rule7->rulenum = tmp->rulenum;
1358         rule7->cmd_len = tmp->cmd_len;
1359         rule7->act_ofs = tmp->act_ofs;
1360         rule7->next_rule = (struct ip_fw7 *)tmp->next_rule;
1361         rule7->next = (struct ip_fw7 *)tmp->x_next;
1362         rule7->cmd_len = tmp->cmd_len;
1363         rule7->pcnt = tmp->pcnt;
1364         rule7->bcnt = tmp->bcnt;
1365         rule7->timestamp = tmp->timestamp;
1366
1367         /* Copy commands */
1368         for (ll = tmp->cmd_len, ccmd = tmp->cmd, dst = rule7->cmd ;
1369                         ll > 0 ; ll -= ccmdlen, ccmd += ccmdlen, dst += ccmdlen) {
1370                 ccmdlen = F_LEN(ccmd);
1371
1372                 bcopy(ccmd, dst, F_LEN(ccmd)*sizeof(uint32_t));
1373
1374                 if (dst->opcode > O_NAT)
1375                         /* O_REASS doesn't exists in 7.2 version, so
1376                          * decrement opcode if it is after O_REASS
1377                          */
1378                         dst->opcode--;
1379
1380                 if (ccmdlen > ll) {
1381                         printf("ipfw: opcode %d size truncated\n",
1382                                 ccmd->opcode);
1383                         return EINVAL;
1384                 }
1385         }
1386         free(tmp, M_TEMP);
1387
1388         return 0;
1389 }
1390
1391 int
1392 convert_rule_to_8(struct ip_fw *rule)
1393 {
1394         /* Used to modify original rule */
1395         struct ip_fw7 *rule7 = (struct ip_fw7 *) rule;
1396
1397         /* Used to copy commands */
1398         ipfw_insn *ccmd, *dst;
1399         int ll = 0, ccmdlen = 0;
1400
1401         /* Copy of original rule */
1402         struct ip_fw7 *tmp = malloc(RULE_MAXSIZE, M_TEMP, M_NOWAIT | M_ZERO);
1403         if (tmp == NULL) {
1404                 return 1; //XXX error
1405         }
1406
1407         bcopy(rule7, tmp, RULE_MAXSIZE);
1408
1409         for (ll = tmp->cmd_len, ccmd = tmp->cmd, dst = rule->cmd ;
1410                         ll > 0 ; ll -= ccmdlen, ccmd += ccmdlen, dst += ccmdlen) {
1411                 ccmdlen = F_LEN(ccmd);
1412                 
1413                 bcopy(ccmd, dst, F_LEN(ccmd)*sizeof(uint32_t));
1414
1415                 if (dst->opcode > O_NAT)
1416                         /* O_REASS doesn't exists in 7.2 version, so
1417                          * increment opcode if it is after O_REASS
1418                          */
1419                         dst->opcode++;
1420
1421                 if (ccmdlen > ll) {
1422                         printf("ipfw: opcode %d size truncated\n",
1423                             ccmd->opcode);
1424                         return EINVAL;
1425                 }
1426         }
1427
1428         rule->_pad = tmp->_pad;
1429         rule->set = tmp->set;
1430         rule->rulenum = tmp->rulenum;
1431         rule->cmd_len = tmp->cmd_len;
1432         rule->act_ofs = tmp->act_ofs;
1433         rule->next_rule = (struct ip_fw *)tmp->next_rule;
1434         rule->x_next = (struct ip_fw *)tmp->next;
1435         rule->cmd_len = tmp->cmd_len;
1436         rule->id = 0; /* XXX see if is ok = 0 */
1437         rule->pcnt = tmp->pcnt;
1438         rule->bcnt = tmp->bcnt;
1439         rule->timestamp = tmp->timestamp;
1440
1441         free (tmp, M_TEMP);
1442         return 0;
1443 }
1444
1445 /* end of file */