diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-02 15:47:12 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-02 15:47:12 -0400 |
| commit | bacd3add087770333bdce65cd3dd25e3b2cd67ac (patch) | |
| tree | b9a5512a7abbf661020af87ee843e4ad711546ed | |
| parent | 29e350944fdc2dfca102500790d8ad6d6ff4f69d (diff) | |
| parent | 9a1875e60e61b563737d8d1fc3876b279710fe93 (diff) | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6:
[NET]: Fully fix the memory leaks in sys_accept().
[NETFILTER]: iptables 32bit compat layer
[NETFILTER]: {ip,nf}_conntrack_netlink: fix expectation notifier unregistration
[NETFILTER]: fix ifdef for connmark support in nf_conntrack_netlink
[NETFILTER]: x_tables: unify IPv4/IPv6 multiport match
[NETFILTER]: x_tables: unify IPv4/IPv6 esp match
[NET]: Fix dentry leak in sys_accept().
[IPSEC]: Kill unused decap state structure
[IPSEC]: Kill unused decap state argument
[NET]: com90xx kmalloc fix
[TG3]: Update driver version and reldate.
[TG3]: Revert "Speed up SRAM access"
41 files changed, 1739 insertions, 774 deletions
diff --git a/drivers/net/arcnet/com90xx.c b/drivers/net/arcnet/com90xx.c index 43150b2bd13f..0d45553ff75c 100644 --- a/drivers/net/arcnet/com90xx.c +++ b/drivers/net/arcnet/com90xx.c | |||
| @@ -125,11 +125,11 @@ static void __init com90xx_probe(void) | |||
| 125 | if (!io && !irq && !shmem && !*device && com90xx_skip_probe) | 125 | if (!io && !irq && !shmem && !*device && com90xx_skip_probe) |
| 126 | return; | 126 | return; |
| 127 | 127 | ||
| 128 | shmems = kzalloc(((0x10000-0xa0000) / 0x800) * sizeof(unsigned long), | 128 | shmems = kzalloc(((0x100000-0xa0000) / 0x800) * sizeof(unsigned long), |
| 129 | GFP_KERNEL); | 129 | GFP_KERNEL); |
| 130 | if (!shmems) | 130 | if (!shmems) |
| 131 | return; | 131 | return; |
| 132 | iomem = kzalloc(((0x10000-0xa0000) / 0x800) * sizeof(void __iomem *), | 132 | iomem = kzalloc(((0x100000-0xa0000) / 0x800) * sizeof(void __iomem *), |
| 133 | GFP_KERNEL); | 133 | GFP_KERNEL); |
| 134 | if (!iomem) { | 134 | if (!iomem) { |
| 135 | kfree(shmems); | 135 | kfree(shmems); |
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 964c09644832..770e6b6cec60 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
| @@ -69,8 +69,8 @@ | |||
| 69 | 69 | ||
| 70 | #define DRV_MODULE_NAME "tg3" | 70 | #define DRV_MODULE_NAME "tg3" |
| 71 | #define PFX DRV_MODULE_NAME ": " | 71 | #define PFX DRV_MODULE_NAME ": " |
| 72 | #define DRV_MODULE_VERSION "3.55" | 72 | #define DRV_MODULE_VERSION "3.56" |
| 73 | #define DRV_MODULE_RELDATE "Mar 27, 2006" | 73 | #define DRV_MODULE_RELDATE "Apr 1, 2006" |
| 74 | 74 | ||
| 75 | #define TG3_DEF_MAC_MODE 0 | 75 | #define TG3_DEF_MAC_MODE 0 |
| 76 | #define TG3_DEF_RX_MODE 0 | 76 | #define TG3_DEF_RX_MODE 0 |
| @@ -497,40 +497,33 @@ static void tg3_write_mem(struct tg3 *tp, u32 off, u32 val) | |||
| 497 | unsigned long flags; | 497 | unsigned long flags; |
| 498 | 498 | ||
| 499 | spin_lock_irqsave(&tp->indirect_lock, flags); | 499 | spin_lock_irqsave(&tp->indirect_lock, flags); |
| 500 | if (tp->write32 != tg3_write_indirect_reg32) { | 500 | pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off); |
| 501 | tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off); | 501 | pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val); |
| 502 | tw32_f(TG3PCI_MEM_WIN_DATA, val); | ||
| 503 | 502 | ||
| 504 | /* Always leave this as zero. */ | 503 | /* Always leave this as zero. */ |
| 505 | tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0); | 504 | pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0); |
| 506 | } else { | ||
| 507 | pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off); | ||
| 508 | pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val); | ||
| 509 | |||
| 510 | /* Always leave this as zero. */ | ||
| 511 | pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0); | ||
| 512 | } | ||
| 513 | spin_unlock_irqrestore(&tp->indirect_lock, flags); | 505 | spin_unlock_irqrestore(&tp->indirect_lock, flags); |
| 514 | } | 506 | } |
| 515 | 507 | ||
| 508 | static void tg3_write_mem_fast(struct tg3 *tp, u32 off, u32 val) | ||
| 509 | { | ||
| 510 | /* If no workaround is needed, write to mem space directly */ | ||
| 511 | if (tp->write32 != tg3_write_indirect_reg32) | ||
| 512 | tw32(NIC_SRAM_WIN_BASE + off, val); | ||
| 513 | else | ||
| 514 | tg3_write_mem(tp, off, val); | ||
| 515 | } | ||
| 516 | |||
| 516 | static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val) | 517 | static void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val) |
| 517 | { | 518 | { |
| 518 | unsigned long flags; | 519 | unsigned long flags; |
| 519 | 520 | ||
| 520 | spin_lock_irqsave(&tp->indirect_lock, flags); | 521 | spin_lock_irqsave(&tp->indirect_lock, flags); |
| 521 | if (tp->write32 != tg3_write_indirect_reg32) { | 522 | pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off); |
| 522 | tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, off); | 523 | pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val); |
| 523 | *val = tr32(TG3PCI_MEM_WIN_DATA); | ||
| 524 | 524 | ||
| 525 | /* Always leave this as zero. */ | 525 | /* Always leave this as zero. */ |
| 526 | tw32_f(TG3PCI_MEM_WIN_BASE_ADDR, 0); | 526 | pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0); |
| 527 | } else { | ||
| 528 | pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, off); | ||
| 529 | pci_read_config_dword(tp->pdev, TG3PCI_MEM_WIN_DATA, val); | ||
| 530 | |||
| 531 | /* Always leave this as zero. */ | ||
| 532 | pci_write_config_dword(tp->pdev, TG3PCI_MEM_WIN_BASE_ADDR, 0); | ||
| 533 | } | ||
| 534 | spin_unlock_irqrestore(&tp->indirect_lock, flags); | 527 | spin_unlock_irqrestore(&tp->indirect_lock, flags); |
| 535 | } | 528 | } |
| 536 | 529 | ||
| @@ -1374,12 +1367,12 @@ static int tg3_set_power_state(struct tg3 *tp, pci_power_t state) | |||
| 1374 | } | 1367 | } |
| 1375 | } | 1368 | } |
| 1376 | 1369 | ||
| 1377 | tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN); | ||
| 1378 | |||
| 1379 | /* Finally, set the new power state. */ | 1370 | /* Finally, set the new power state. */ |
| 1380 | pci_write_config_word(tp->pdev, pm + PCI_PM_CTRL, power_control); | 1371 | pci_write_config_word(tp->pdev, pm + PCI_PM_CTRL, power_control); |
| 1381 | udelay(100); /* Delay after power state change */ | 1372 | udelay(100); /* Delay after power state change */ |
| 1382 | 1373 | ||
| 1374 | tg3_write_sig_post_reset(tp, RESET_KIND_SHUTDOWN); | ||
| 1375 | |||
| 1383 | return 0; | 1376 | return 0; |
| 1384 | } | 1377 | } |
| 1385 | 1378 | ||
| @@ -6547,11 +6540,11 @@ static void tg3_timer(unsigned long __opaque) | |||
| 6547 | if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) { | 6540 | if (tp->tg3_flags & TG3_FLAG_ENABLE_ASF) { |
| 6548 | u32 val; | 6541 | u32 val; |
| 6549 | 6542 | ||
| 6550 | tg3_write_mem(tp, NIC_SRAM_FW_CMD_MBOX, | 6543 | tg3_write_mem_fast(tp, NIC_SRAM_FW_CMD_MBOX, |
| 6551 | FWCMD_NICDRV_ALIVE2); | 6544 | FWCMD_NICDRV_ALIVE2); |
| 6552 | tg3_write_mem(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4); | 6545 | tg3_write_mem_fast(tp, NIC_SRAM_FW_CMD_LEN_MBOX, 4); |
| 6553 | /* 5 seconds timeout */ | 6546 | /* 5 seconds timeout */ |
| 6554 | tg3_write_mem(tp, NIC_SRAM_FW_CMD_DATA_MBOX, 5); | 6547 | tg3_write_mem_fast(tp, NIC_SRAM_FW_CMD_DATA_MBOX, 5); |
| 6555 | val = tr32(GRC_RX_CPU_EVENT); | 6548 | val = tr32(GRC_RX_CPU_EVENT); |
| 6556 | val |= (1 << 14); | 6549 | val |= (1 << 14); |
| 6557 | tw32(GRC_RX_CPU_EVENT, val); | 6550 | tw32(GRC_RX_CPU_EVENT, val); |
diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h index 1350e47b0234..f6bdef82a322 100644 --- a/include/linux/netfilter/x_tables.h +++ b/include/linux/netfilter/x_tables.h | |||
| @@ -142,6 +142,12 @@ struct xt_counters_info | |||
| 142 | #define ASSERT_WRITE_LOCK(x) | 142 | #define ASSERT_WRITE_LOCK(x) |
| 143 | #include <linux/netfilter_ipv4/listhelp.h> | 143 | #include <linux/netfilter_ipv4/listhelp.h> |
| 144 | 144 | ||
| 145 | #ifdef CONFIG_COMPAT | ||
| 146 | #define COMPAT_TO_USER 1 | ||
| 147 | #define COMPAT_FROM_USER -1 | ||
| 148 | #define COMPAT_CALC_SIZE 0 | ||
| 149 | #endif | ||
| 150 | |||
| 145 | struct xt_match | 151 | struct xt_match |
| 146 | { | 152 | { |
| 147 | struct list_head list; | 153 | struct list_head list; |
| @@ -175,6 +181,9 @@ struct xt_match | |||
| 175 | void (*destroy)(const struct xt_match *match, void *matchinfo, | 181 | void (*destroy)(const struct xt_match *match, void *matchinfo, |
| 176 | unsigned int matchinfosize); | 182 | unsigned int matchinfosize); |
| 177 | 183 | ||
| 184 | /* Called when userspace align differs from kernel space one */ | ||
| 185 | int (*compat)(void *match, void **dstptr, int *size, int convert); | ||
| 186 | |||
| 178 | /* Set this to THIS_MODULE if you are a module, otherwise NULL */ | 187 | /* Set this to THIS_MODULE if you are a module, otherwise NULL */ |
| 179 | struct module *me; | 188 | struct module *me; |
| 180 | 189 | ||
| @@ -220,6 +229,9 @@ struct xt_target | |||
| 220 | void (*destroy)(const struct xt_target *target, void *targinfo, | 229 | void (*destroy)(const struct xt_target *target, void *targinfo, |
| 221 | unsigned int targinfosize); | 230 | unsigned int targinfosize); |
| 222 | 231 | ||
| 232 | /* Called when userspace align differs from kernel space one */ | ||
| 233 | int (*compat)(void *target, void **dstptr, int *size, int convert); | ||
| 234 | |||
| 223 | /* Set this to THIS_MODULE if you are a module, otherwise NULL */ | 235 | /* Set this to THIS_MODULE if you are a module, otherwise NULL */ |
| 224 | struct module *me; | 236 | struct module *me; |
| 225 | 237 | ||
| @@ -314,6 +326,61 @@ extern void xt_proto_fini(int af); | |||
| 314 | extern struct xt_table_info *xt_alloc_table_info(unsigned int size); | 326 | extern struct xt_table_info *xt_alloc_table_info(unsigned int size); |
| 315 | extern void xt_free_table_info(struct xt_table_info *info); | 327 | extern void xt_free_table_info(struct xt_table_info *info); |
| 316 | 328 | ||
| 329 | #ifdef CONFIG_COMPAT | ||
| 330 | #include <net/compat.h> | ||
| 331 | |||
| 332 | struct compat_xt_entry_match | ||
| 333 | { | ||
| 334 | union { | ||
| 335 | struct { | ||
| 336 | u_int16_t match_size; | ||
| 337 | char name[XT_FUNCTION_MAXNAMELEN - 1]; | ||
| 338 | u_int8_t revision; | ||
| 339 | } user; | ||
| 340 | u_int16_t match_size; | ||
| 341 | } u; | ||
| 342 | unsigned char data[0]; | ||
| 343 | }; | ||
| 344 | |||
| 345 | struct compat_xt_entry_target | ||
| 346 | { | ||
| 347 | union { | ||
| 348 | struct { | ||
| 349 | u_int16_t target_size; | ||
| 350 | char name[XT_FUNCTION_MAXNAMELEN - 1]; | ||
| 351 | u_int8_t revision; | ||
| 352 | } user; | ||
| 353 | u_int16_t target_size; | ||
| 354 | } u; | ||
| 355 | unsigned char data[0]; | ||
| 356 | }; | ||
| 357 | |||
| 358 | /* FIXME: this works only on 32 bit tasks | ||
| 359 | * need to change whole approach in order to calculate align as function of | ||
| 360 | * current task alignment */ | ||
| 361 | |||
| 362 | struct compat_xt_counters | ||
| 363 | { | ||
| 364 | u_int32_t cnt[4]; | ||
| 365 | }; | ||
| 366 | |||
| 367 | struct compat_xt_counters_info | ||
| 368 | { | ||
| 369 | char name[XT_TABLE_MAXNAMELEN]; | ||
| 370 | compat_uint_t num_counters; | ||
| 371 | struct compat_xt_counters counters[0]; | ||
| 372 | }; | ||
| 373 | |||
| 374 | #define COMPAT_XT_ALIGN(s) (((s) + (__alignof__(struct compat_xt_counters)-1)) \ | ||
| 375 | & ~(__alignof__(struct compat_xt_counters)-1)) | ||
| 376 | |||
| 377 | extern void xt_compat_lock(int af); | ||
| 378 | extern void xt_compat_unlock(int af); | ||
| 379 | extern int xt_compat_match(void *match, void **dstptr, int *size, int convert); | ||
| 380 | extern int xt_compat_target(void *target, void **dstptr, int *size, | ||
| 381 | int convert); | ||
| 382 | |||
| 383 | #endif /* CONFIG_COMPAT */ | ||
| 317 | #endif /* __KERNEL__ */ | 384 | #endif /* __KERNEL__ */ |
| 318 | 385 | ||
| 319 | #endif /* _X_TABLES_H */ | 386 | #endif /* _X_TABLES_H */ |
diff --git a/include/linux/netfilter/xt_esp.h b/include/linux/netfilter/xt_esp.h new file mode 100644 index 000000000000..9380fb1c27da --- /dev/null +++ b/include/linux/netfilter/xt_esp.h | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | #ifndef _XT_ESP_H | ||
| 2 | #define _XT_ESP_H | ||
| 3 | |||
| 4 | struct xt_esp | ||
| 5 | { | ||
| 6 | u_int32_t spis[2]; /* Security Parameter Index */ | ||
| 7 | u_int8_t invflags; /* Inverse flags */ | ||
| 8 | }; | ||
| 9 | |||
| 10 | /* Values for "invflags" field in struct xt_esp. */ | ||
| 11 | #define XT_ESP_INV_SPI 0x01 /* Invert the sense of spi. */ | ||
| 12 | #define XT_ESP_INV_MASK 0x01 /* All possible flags. */ | ||
| 13 | |||
| 14 | #endif /*_XT_ESP_H*/ | ||
diff --git a/include/linux/netfilter/xt_multiport.h b/include/linux/netfilter/xt_multiport.h new file mode 100644 index 000000000000..d49ee4183710 --- /dev/null +++ b/include/linux/netfilter/xt_multiport.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | #ifndef _XT_MULTIPORT_H | ||
| 2 | #define _XT_MULTIPORT_H | ||
| 3 | |||
| 4 | enum xt_multiport_flags | ||
| 5 | { | ||
| 6 | XT_MULTIPORT_SOURCE, | ||
| 7 | XT_MULTIPORT_DESTINATION, | ||
| 8 | XT_MULTIPORT_EITHER | ||
| 9 | }; | ||
| 10 | |||
| 11 | #define XT_MULTI_PORTS 15 | ||
| 12 | |||
| 13 | /* Must fit inside union xt_matchinfo: 16 bytes */ | ||
| 14 | struct xt_multiport | ||
| 15 | { | ||
| 16 | u_int8_t flags; /* Type of comparison */ | ||
| 17 | u_int8_t count; /* Number of ports */ | ||
| 18 | u_int16_t ports[XT_MULTI_PORTS]; /* Ports */ | ||
| 19 | }; | ||
| 20 | |||
| 21 | struct xt_multiport_v1 | ||
| 22 | { | ||
| 23 | u_int8_t flags; /* Type of comparison */ | ||
| 24 | u_int8_t count; /* Number of ports */ | ||
| 25 | u_int16_t ports[XT_MULTI_PORTS]; /* Ports */ | ||
| 26 | u_int8_t pflags[XT_MULTI_PORTS]; /* Port flags */ | ||
| 27 | u_int8_t invert; /* Invert flag */ | ||
| 28 | }; | ||
| 29 | |||
| 30 | #endif /*_XT_MULTIPORT_H*/ | ||
diff --git a/include/linux/netfilter_ipv4/ip_tables.h b/include/linux/netfilter_ipv4/ip_tables.h index d5b8c0d6a12b..c0dac16e1902 100644 --- a/include/linux/netfilter_ipv4/ip_tables.h +++ b/include/linux/netfilter_ipv4/ip_tables.h | |||
| @@ -316,5 +316,23 @@ extern unsigned int ipt_do_table(struct sk_buff **pskb, | |||
| 316 | void *userdata); | 316 | void *userdata); |
| 317 | 317 | ||
| 318 | #define IPT_ALIGN(s) XT_ALIGN(s) | 318 | #define IPT_ALIGN(s) XT_ALIGN(s) |
| 319 | |||
| 320 | #ifdef CONFIG_COMPAT | ||
| 321 | #include <net/compat.h> | ||
| 322 | |||
| 323 | struct compat_ipt_entry | ||
| 324 | { | ||
| 325 | struct ipt_ip ip; | ||
| 326 | compat_uint_t nfcache; | ||
| 327 | u_int16_t target_offset; | ||
| 328 | u_int16_t next_offset; | ||
| 329 | compat_uint_t comefrom; | ||
| 330 | struct compat_xt_counters counters; | ||
| 331 | unsigned char elems[0]; | ||
| 332 | }; | ||
| 333 | |||
| 334 | #define COMPAT_IPT_ALIGN(s) COMPAT_XT_ALIGN(s) | ||
| 335 | |||
| 336 | #endif /* CONFIG_COMPAT */ | ||
| 319 | #endif /*__KERNEL__*/ | 337 | #endif /*__KERNEL__*/ |
| 320 | #endif /* _IPTABLES_H */ | 338 | #endif /* _IPTABLES_H */ |
diff --git a/include/linux/netfilter_ipv4/ipt_esp.h b/include/linux/netfilter_ipv4/ipt_esp.h index c782a83e53e0..78296e7eeff9 100644 --- a/include/linux/netfilter_ipv4/ipt_esp.h +++ b/include/linux/netfilter_ipv4/ipt_esp.h | |||
| @@ -1,16 +1,10 @@ | |||
| 1 | #ifndef _IPT_ESP_H | 1 | #ifndef _IPT_ESP_H |
| 2 | #define _IPT_ESP_H | 2 | #define _IPT_ESP_H |
| 3 | 3 | ||
| 4 | struct ipt_esp | 4 | #include <linux/netfilter/xt_esp.h> |
| 5 | { | ||
| 6 | u_int32_t spis[2]; /* Security Parameter Index */ | ||
| 7 | u_int8_t invflags; /* Inverse flags */ | ||
| 8 | }; | ||
| 9 | 5 | ||
| 10 | 6 | #define ipt_esp xt_esp | |
| 11 | 7 | #define IPT_ESP_INV_SPI XT_ESP_INV_SPI | |
| 12 | /* Values for "invflags" field in struct ipt_esp. */ | 8 | #define IPT_ESP_INV_MASK XT_ESP_INV_MASK |
| 13 | #define IPT_ESP_INV_SPI 0x01 /* Invert the sense of spi. */ | ||
| 14 | #define IPT_ESP_INV_MASK 0x01 /* All possible flags. */ | ||
| 15 | 9 | ||
| 16 | #endif /*_IPT_ESP_H*/ | 10 | #endif /*_IPT_ESP_H*/ |
diff --git a/include/linux/netfilter_ipv4/ipt_multiport.h b/include/linux/netfilter_ipv4/ipt_multiport.h index e6b6fff811df..55fe85eca88c 100644 --- a/include/linux/netfilter_ipv4/ipt_multiport.h +++ b/include/linux/netfilter_ipv4/ipt_multiport.h | |||
| @@ -1,30 +1,15 @@ | |||
| 1 | #ifndef _IPT_MULTIPORT_H | 1 | #ifndef _IPT_MULTIPORT_H |
| 2 | #define _IPT_MULTIPORT_H | 2 | #define _IPT_MULTIPORT_H |
| 3 | #include <linux/netfilter_ipv4/ip_tables.h> | ||
| 4 | 3 | ||
| 5 | enum ipt_multiport_flags | 4 | #include <linux/netfilter/xt_multiport.h> |
| 6 | { | ||
| 7 | IPT_MULTIPORT_SOURCE, | ||
| 8 | IPT_MULTIPORT_DESTINATION, | ||
| 9 | IPT_MULTIPORT_EITHER | ||
| 10 | }; | ||
| 11 | 5 | ||
| 12 | #define IPT_MULTI_PORTS 15 | 6 | #define IPT_MULTIPORT_SOURCE XT_MULTIPORT_SOURCE |
| 7 | #define IPT_MULTIPORT_DESTINATION XT_MULTIPORT_DESTINATION | ||
| 8 | #define IPT_MULTIPORT_EITHER XT_MULTIPORT_EITHER | ||
| 13 | 9 | ||
| 14 | /* Must fit inside union ipt_matchinfo: 16 bytes */ | 10 | #define IPT_MULTI_PORTS XT_MULTI_PORTS |
| 15 | struct ipt_multiport | 11 | |
| 16 | { | 12 | #define ipt_multiport xt_multiport |
| 17 | u_int8_t flags; /* Type of comparison */ | 13 | #define ipt_multiport_v1 xt_multiport_v1 |
| 18 | u_int8_t count; /* Number of ports */ | ||
| 19 | u_int16_t ports[IPT_MULTI_PORTS]; /* Ports */ | ||
| 20 | }; | ||
| 21 | 14 | ||
| 22 | struct ipt_multiport_v1 | ||
| 23 | { | ||
| 24 | u_int8_t flags; /* Type of comparison */ | ||
| 25 | u_int8_t count; /* Number of ports */ | ||
| 26 | u_int16_t ports[IPT_MULTI_PORTS]; /* Ports */ | ||
| 27 | u_int8_t pflags[IPT_MULTI_PORTS]; /* Port flags */ | ||
| 28 | u_int8_t invert; /* Invert flag */ | ||
| 29 | }; | ||
| 30 | #endif /*_IPT_MULTIPORT_H*/ | 15 | #endif /*_IPT_MULTIPORT_H*/ |
diff --git a/include/linux/netfilter_ipv6/ip6t_esp.h b/include/linux/netfilter_ipv6/ip6t_esp.h index a91b6abc8079..f62eaf53c16c 100644 --- a/include/linux/netfilter_ipv6/ip6t_esp.h +++ b/include/linux/netfilter_ipv6/ip6t_esp.h | |||
| @@ -1,14 +1,10 @@ | |||
| 1 | #ifndef _IP6T_ESP_H | 1 | #ifndef _IP6T_ESP_H |
| 2 | #define _IP6T_ESP_H | 2 | #define _IP6T_ESP_H |
| 3 | 3 | ||
| 4 | struct ip6t_esp | 4 | #include <linux/netfilter/xt_esp.h> |
| 5 | { | ||
| 6 | u_int32_t spis[2]; /* Security Parameter Index */ | ||
| 7 | u_int8_t invflags; /* Inverse flags */ | ||
| 8 | }; | ||
| 9 | 5 | ||
| 10 | /* Values for "invflags" field in struct ip6t_esp. */ | 6 | #define ip6t_esp xt_esp |
| 11 | #define IP6T_ESP_INV_SPI 0x01 /* Invert the sense of spi. */ | 7 | #define IP6T_ESP_INV_SPI XT_ESP_INV_SPI |
| 12 | #define IP6T_ESP_INV_MASK 0x01 /* All possible flags. */ | 8 | #define IP6T_ESP_INV_MASK XT_ESP_INV_MASK |
| 13 | 9 | ||
| 14 | #endif /*_IP6T_ESP_H*/ | 10 | #endif /*_IP6T_ESP_H*/ |
diff --git a/include/linux/netfilter_ipv6/ip6t_multiport.h b/include/linux/netfilter_ipv6/ip6t_multiport.h index efe4954a8681..042c92661cee 100644 --- a/include/linux/netfilter_ipv6/ip6t_multiport.h +++ b/include/linux/netfilter_ipv6/ip6t_multiport.h | |||
| @@ -1,21 +1,14 @@ | |||
| 1 | #ifndef _IP6T_MULTIPORT_H | 1 | #ifndef _IP6T_MULTIPORT_H |
| 2 | #define _IP6T_MULTIPORT_H | 2 | #define _IP6T_MULTIPORT_H |
| 3 | #include <linux/netfilter_ipv6/ip6_tables.h> | ||
| 4 | 3 | ||
| 5 | enum ip6t_multiport_flags | 4 | #include <linux/netfilter/xt_multiport.h> |
| 6 | { | ||
| 7 | IP6T_MULTIPORT_SOURCE, | ||
| 8 | IP6T_MULTIPORT_DESTINATION, | ||
| 9 | IP6T_MULTIPORT_EITHER | ||
| 10 | }; | ||
| 11 | 5 | ||
| 12 | #define IP6T_MULTI_PORTS 15 | 6 | #define IP6T_MULTIPORT_SOURCE XT_MULTIPORT_SOURCE |
| 7 | #define IP6T_MULTIPORT_DESTINATION XT_MULTIPORT_DESTINATION | ||
| 8 | #define IP6T_MULTIPORT_EITHER XT_MULTIPORT_EITHER | ||
| 13 | 9 | ||
| 14 | /* Must fit inside union ip6t_matchinfo: 16 bytes */ | 10 | #define IP6T_MULTI_PORTS XT_MULTI_PORTS |
| 15 | struct ip6t_multiport | 11 | |
| 16 | { | 12 | #define ip6t_multiport xt_multiport |
| 17 | u_int8_t flags; /* Type of comparison */ | 13 | |
| 18 | u_int8_t count; /* Number of ports */ | 14 | #endif /*_IP6T_MULTIPORT_H*/ |
| 19 | u_int16_t ports[IP6T_MULTI_PORTS]; /* Ports */ | ||
| 20 | }; | ||
| 21 | #endif /*_IPT_MULTIPORT_H*/ | ||
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index e100291e43f4..0d5529c382e8 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h | |||
| @@ -242,7 +242,6 @@ extern int xfrm_state_unregister_afinfo(struct xfrm_state_afinfo *afinfo); | |||
| 242 | 242 | ||
| 243 | extern void xfrm_state_delete_tunnel(struct xfrm_state *x); | 243 | extern void xfrm_state_delete_tunnel(struct xfrm_state *x); |
| 244 | 244 | ||
| 245 | struct xfrm_decap_state; | ||
| 246 | struct xfrm_type | 245 | struct xfrm_type |
| 247 | { | 246 | { |
| 248 | char *description; | 247 | char *description; |
| @@ -251,7 +250,7 @@ struct xfrm_type | |||
| 251 | 250 | ||
| 252 | int (*init_state)(struct xfrm_state *x); | 251 | int (*init_state)(struct xfrm_state *x); |
| 253 | void (*destructor)(struct xfrm_state *); | 252 | void (*destructor)(struct xfrm_state *); |
| 254 | int (*input)(struct xfrm_state *, struct xfrm_decap_state *, struct sk_buff *skb); | 253 | int (*input)(struct xfrm_state *, struct sk_buff *skb); |
| 255 | int (*output)(struct xfrm_state *, struct sk_buff *pskb); | 254 | int (*output)(struct xfrm_state *, struct sk_buff *pskb); |
| 256 | /* Estimate maximal size of result of transformation of a dgram */ | 255 | /* Estimate maximal size of result of transformation of a dgram */ |
| 257 | u32 (*get_max_size)(struct xfrm_state *, int size); | 256 | u32 (*get_max_size)(struct xfrm_state *, int size); |
| @@ -606,25 +605,11 @@ static inline void xfrm_dst_destroy(struct xfrm_dst *xdst) | |||
| 606 | 605 | ||
| 607 | extern void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev); | 606 | extern void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev); |
| 608 | 607 | ||
| 609 | /* Decapsulation state, used by the input to store data during | ||
| 610 | * decapsulation procedure, to be used later (during the policy | ||
| 611 | * check | ||
| 612 | */ | ||
| 613 | struct xfrm_decap_state { | ||
| 614 | char decap_data[20]; | ||
| 615 | __u16 decap_type; | ||
| 616 | }; | ||
| 617 | |||
| 618 | struct sec_decap_state { | ||
| 619 | struct xfrm_state *xvec; | ||
| 620 | struct xfrm_decap_state decap; | ||
| 621 | }; | ||
| 622 | |||
| 623 | struct sec_path | 608 | struct sec_path |
| 624 | { | 609 | { |
| 625 | atomic_t refcnt; | 610 | atomic_t refcnt; |
| 626 | int len; | 611 | int len; |
| 627 | struct sec_decap_state x[XFRM_MAX_DEPTH]; | 612 | struct xfrm_state *xvec[XFRM_MAX_DEPTH]; |
| 628 | }; | 613 | }; |
| 629 | 614 | ||
| 630 | static inline struct sec_path * | 615 | static inline struct sec_path * |
diff --git a/net/compat.c b/net/compat.c index 8fd37cd7b501..d5d69fa15d07 100644 --- a/net/compat.c +++ b/net/compat.c | |||
| @@ -476,8 +476,7 @@ asmlinkage long compat_sys_setsockopt(int fd, int level, int optname, | |||
| 476 | int err; | 476 | int err; |
| 477 | struct socket *sock; | 477 | struct socket *sock; |
| 478 | 478 | ||
| 479 | /* SO_SET_REPLACE seems to be the same in all levels */ | 479 | if (level == SOL_IPV6 && optname == IPT_SO_SET_REPLACE) |
| 480 | if (optname == IPT_SO_SET_REPLACE) | ||
| 481 | return do_netfilter_replace(fd, level, optname, | 480 | return do_netfilter_replace(fd, level, optname, |
| 482 | optval, optlen); | 481 | optval, optlen); |
| 483 | 482 | ||
diff --git a/net/ipv4/ah4.c b/net/ipv4/ah4.c index e16d8b42b953..e2e4771fa4c6 100644 --- a/net/ipv4/ah4.c +++ b/net/ipv4/ah4.c | |||
| @@ -116,7 +116,7 @@ error: | |||
| 116 | return err; | 116 | return err; |
| 117 | } | 117 | } |
| 118 | 118 | ||
| 119 | static int ah_input(struct xfrm_state *x, struct xfrm_decap_state *decap, struct sk_buff *skb) | 119 | static int ah_input(struct xfrm_state *x, struct sk_buff *skb) |
| 120 | { | 120 | { |
| 121 | int ah_hlen; | 121 | int ah_hlen; |
| 122 | struct iphdr *iph; | 122 | struct iphdr *iph; |
diff --git a/net/ipv4/esp4.c b/net/ipv4/esp4.c index bf88c620a954..9d1881c07a32 100644 --- a/net/ipv4/esp4.c +++ b/net/ipv4/esp4.c | |||
| @@ -133,7 +133,7 @@ error: | |||
| 133 | * expensive, so we only support truncated data, which is the recommended | 133 | * expensive, so we only support truncated data, which is the recommended |
| 134 | * and common case. | 134 | * and common case. |
| 135 | */ | 135 | */ |
| 136 | static int esp_input(struct xfrm_state *x, struct xfrm_decap_state *decap, struct sk_buff *skb) | 136 | static int esp_input(struct xfrm_state *x, struct sk_buff *skb) |
| 137 | { | 137 | { |
| 138 | struct iphdr *iph; | 138 | struct iphdr *iph; |
| 139 | struct ip_esp_hdr *esph; | 139 | struct ip_esp_hdr *esph; |
| @@ -208,9 +208,6 @@ static int esp_input(struct xfrm_state *x, struct xfrm_decap_state *decap, struc | |||
| 208 | struct xfrm_encap_tmpl *encap = x->encap; | 208 | struct xfrm_encap_tmpl *encap = x->encap; |
| 209 | struct udphdr *uh; | 209 | struct udphdr *uh; |
| 210 | 210 | ||
| 211 | if (encap->encap_type != decap->decap_type) | ||
| 212 | goto out; | ||
| 213 | |||
| 214 | uh = (struct udphdr *)(iph + 1); | 211 | uh = (struct udphdr *)(iph + 1); |
| 215 | encap_len = (void*)esph - (void*)uh; | 212 | encap_len = (void*)esph - (void*)uh; |
| 216 | 213 | ||
diff --git a/net/ipv4/ipcomp.c b/net/ipv4/ipcomp.c index c95020f7c81e..0a1d86a0f632 100644 --- a/net/ipv4/ipcomp.c +++ b/net/ipv4/ipcomp.c | |||
| @@ -81,8 +81,7 @@ out: | |||
| 81 | return err; | 81 | return err; |
| 82 | } | 82 | } |
| 83 | 83 | ||
| 84 | static int ipcomp_input(struct xfrm_state *x, | 84 | static int ipcomp_input(struct xfrm_state *x, struct sk_buff *skb) |
| 85 | struct xfrm_decap_state *decap, struct sk_buff *skb) | ||
| 86 | { | 85 | { |
| 87 | u8 nexthdr; | 86 | u8 nexthdr; |
| 88 | int err = 0; | 87 | int err = 0; |
diff --git a/net/ipv4/netfilter/Kconfig b/net/ipv4/netfilter/Kconfig index 882b842c25d4..77855ccd6b43 100644 --- a/net/ipv4/netfilter/Kconfig +++ b/net/ipv4/netfilter/Kconfig | |||
| @@ -221,16 +221,6 @@ config IP_NF_MATCH_IPRANGE | |||
| 221 | 221 | ||
| 222 | To compile it as a module, choose M here. If unsure, say N. | 222 | To compile it as a module, choose M here. If unsure, say N. |
| 223 | 223 | ||
| 224 | config IP_NF_MATCH_MULTIPORT | ||
| 225 | tristate "Multiple port match support" | ||
| 226 | depends on IP_NF_IPTABLES | ||
| 227 | help | ||
| 228 | Multiport matching allows you to match TCP or UDP packets based on | ||
| 229 | a series of source or destination ports: normally a rule can only | ||
| 230 | match a single range of ports. | ||
| 231 | |||
| 232 | To compile it as a module, choose M here. If unsure, say N. | ||
| 233 | |||
| 234 | config IP_NF_MATCH_TOS | 224 | config IP_NF_MATCH_TOS |
| 235 | tristate "TOS match support" | 225 | tristate "TOS match support" |
| 236 | depends on IP_NF_IPTABLES | 226 | depends on IP_NF_IPTABLES |
| @@ -272,12 +262,12 @@ config IP_NF_MATCH_DSCP | |||
| 272 | 262 | ||
| 273 | To compile it as a module, choose M here. If unsure, say N. | 263 | To compile it as a module, choose M here. If unsure, say N. |
| 274 | 264 | ||
| 275 | config IP_NF_MATCH_AH_ESP | 265 | config IP_NF_MATCH_AH |
| 276 | tristate "AH/ESP match support" | 266 | tristate "AH match support" |
| 277 | depends on IP_NF_IPTABLES | 267 | depends on IP_NF_IPTABLES |
| 278 | help | 268 | help |
| 279 | These two match extensions (`ah' and `esp') allow you to match a | 269 | This match extension allows you to match a range of SPIs |
| 280 | range of SPIs inside AH or ESP headers of IPSec packets. | 270 | inside AH header of IPSec packets. |
| 281 | 271 | ||
| 282 | To compile it as a module, choose M here. If unsure, say N. | 272 | To compile it as a module, choose M here. If unsure, say N. |
| 283 | 273 | ||
diff --git a/net/ipv4/netfilter/Makefile b/net/ipv4/netfilter/Makefile index f2cd9a6c5b91..461cb1eb5de7 100644 --- a/net/ipv4/netfilter/Makefile +++ b/net/ipv4/netfilter/Makefile | |||
| @@ -53,13 +53,12 @@ obj-$(CONFIG_IP_NF_RAW) += iptable_raw.o | |||
| 53 | # matches | 53 | # matches |
| 54 | obj-$(CONFIG_IP_NF_MATCH_HASHLIMIT) += ipt_hashlimit.o | 54 | obj-$(CONFIG_IP_NF_MATCH_HASHLIMIT) += ipt_hashlimit.o |
| 55 | obj-$(CONFIG_IP_NF_MATCH_IPRANGE) += ipt_iprange.o | 55 | obj-$(CONFIG_IP_NF_MATCH_IPRANGE) += ipt_iprange.o |
| 56 | obj-$(CONFIG_IP_NF_MATCH_MULTIPORT) += ipt_multiport.o | ||
| 57 | obj-$(CONFIG_IP_NF_MATCH_OWNER) += ipt_owner.o | 56 | obj-$(CONFIG_IP_NF_MATCH_OWNER) += ipt_owner.o |
| 58 | obj-$(CONFIG_IP_NF_MATCH_TOS) += ipt_tos.o | 57 | obj-$(CONFIG_IP_NF_MATCH_TOS) += ipt_tos.o |
| 59 | obj-$(CONFIG_IP_NF_MATCH_RECENT) += ipt_recent.o | 58 | obj-$(CONFIG_IP_NF_MATCH_RECENT) += ipt_recent.o |
| 60 | obj-$(CONFIG_IP_NF_MATCH_ECN) += ipt_ecn.o | 59 | obj-$(CONFIG_IP_NF_MATCH_ECN) += ipt_ecn.o |
| 61 | obj-$(CONFIG_IP_NF_MATCH_DSCP) += ipt_dscp.o | 60 | obj-$(CONFIG_IP_NF_MATCH_DSCP) += ipt_dscp.o |
| 62 | obj-$(CONFIG_IP_NF_MATCH_AH_ESP) += ipt_ah.o ipt_esp.o | 61 | obj-$(CONFIG_IP_NF_MATCH_AH) += ipt_ah.o |
| 63 | obj-$(CONFIG_IP_NF_MATCH_TTL) += ipt_ttl.o | 62 | obj-$(CONFIG_IP_NF_MATCH_TTL) += ipt_ttl.o |
| 64 | obj-$(CONFIG_IP_NF_MATCH_ADDRTYPE) += ipt_addrtype.o | 63 | obj-$(CONFIG_IP_NF_MATCH_ADDRTYPE) += ipt_addrtype.o |
| 65 | 64 | ||
diff --git a/net/ipv4/netfilter/ip_conntrack_netlink.c b/net/ipv4/netfilter/ip_conntrack_netlink.c index 9b6e19bae90f..01bd7cab9367 100644 --- a/net/ipv4/netfilter/ip_conntrack_netlink.c +++ b/net/ipv4/netfilter/ip_conntrack_netlink.c | |||
| @@ -1658,7 +1658,7 @@ static void __exit ctnetlink_exit(void) | |||
| 1658 | printk("ctnetlink: unregistering from nfnetlink.\n"); | 1658 | printk("ctnetlink: unregistering from nfnetlink.\n"); |
| 1659 | 1659 | ||
| 1660 | #ifdef CONFIG_IP_NF_CONNTRACK_EVENTS | 1660 | #ifdef CONFIG_IP_NF_CONNTRACK_EVENTS |
| 1661 | ip_conntrack_unregister_notifier(&ctnl_notifier_exp); | 1661 | ip_conntrack_expect_unregister_notifier(&ctnl_notifier_exp); |
| 1662 | ip_conntrack_unregister_notifier(&ctnl_notifier); | 1662 | ip_conntrack_unregister_notifier(&ctnl_notifier); |
| 1663 | #endif | 1663 | #endif |
| 1664 | 1664 | ||
diff --git a/net/ipv4/netfilter/ip_tables.c b/net/ipv4/netfilter/ip_tables.c index 460fd905fad0..d5b8cdd361ce 100644 --- a/net/ipv4/netfilter/ip_tables.c +++ b/net/ipv4/netfilter/ip_tables.c | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | #include <linux/module.h> | 24 | #include <linux/module.h> |
| 25 | #include <linux/icmp.h> | 25 | #include <linux/icmp.h> |
| 26 | #include <net/ip.h> | 26 | #include <net/ip.h> |
| 27 | #include <net/compat.h> | ||
| 27 | #include <asm/uaccess.h> | 28 | #include <asm/uaccess.h> |
| 28 | #include <linux/mutex.h> | 29 | #include <linux/mutex.h> |
| 29 | #include <linux/proc_fs.h> | 30 | #include <linux/proc_fs.h> |
| @@ -799,17 +800,11 @@ get_counters(const struct xt_table_info *t, | |||
| 799 | } | 800 | } |
| 800 | } | 801 | } |
| 801 | 802 | ||
| 802 | static int | 803 | static inline struct xt_counters * alloc_counters(struct ipt_table *table) |
| 803 | copy_entries_to_user(unsigned int total_size, | ||
| 804 | struct ipt_table *table, | ||
| 805 | void __user *userptr) | ||
| 806 | { | 804 | { |
| 807 | unsigned int off, num, countersize; | 805 | unsigned int countersize; |
| 808 | struct ipt_entry *e; | ||
| 809 | struct xt_counters *counters; | 806 | struct xt_counters *counters; |
| 810 | struct xt_table_info *private = table->private; | 807 | struct xt_table_info *private = table->private; |
| 811 | int ret = 0; | ||
| 812 | void *loc_cpu_entry; | ||
| 813 | 808 | ||
| 814 | /* We need atomic snapshot of counters: rest doesn't change | 809 | /* We need atomic snapshot of counters: rest doesn't change |
| 815 | (other than comefrom, which userspace doesn't care | 810 | (other than comefrom, which userspace doesn't care |
| @@ -818,13 +813,32 @@ copy_entries_to_user(unsigned int total_size, | |||
| 818 | counters = vmalloc_node(countersize, numa_node_id()); | 813 | counters = vmalloc_node(countersize, numa_node_id()); |
| 819 | 814 | ||
| 820 | if (counters == NULL) | 815 | if (counters == NULL) |
| 821 | return -ENOMEM; | 816 | return ERR_PTR(-ENOMEM); |
| 822 | 817 | ||
| 823 | /* First, sum counters... */ | 818 | /* First, sum counters... */ |
| 824 | write_lock_bh(&table->lock); | 819 | write_lock_bh(&table->lock); |
| 825 | get_counters(private, counters); | 820 | get_counters(private, counters); |
| 826 | write_unlock_bh(&table->lock); | 821 | write_unlock_bh(&table->lock); |
| 827 | 822 | ||
| 823 | return counters; | ||
| 824 | } | ||
| 825 | |||
| 826 | static int | ||
| 827 | copy_entries_to_user(unsigned int total_size, | ||
| 828 | struct ipt_table *table, | ||
| 829 | void __user *userptr) | ||
| 830 | { | ||
| 831 | unsigned int off, num; | ||
| 832 | struct ipt_entry *e; | ||
| 833 | struct xt_counters *counters; | ||
| 834 | struct xt_table_info *private = table->private; | ||
| 835 | int ret = 0; | ||
| 836 | void *loc_cpu_entry; | ||
| 837 | |||
| 838 | counters = alloc_counters(table); | ||
| 839 | if (IS_ERR(counters)) | ||
| 840 | return PTR_ERR(counters); | ||
| 841 | |||
| 828 | /* choose the copy that is on our node/cpu, ... | 842 | /* choose the copy that is on our node/cpu, ... |
| 829 | * This choice is lazy (because current thread is | 843 | * This choice is lazy (because current thread is |
| 830 | * allowed to migrate to another cpu) | 844 | * allowed to migrate to another cpu) |
| @@ -884,25 +898,278 @@ copy_entries_to_user(unsigned int total_size, | |||
| 884 | return ret; | 898 | return ret; |
| 885 | } | 899 | } |
| 886 | 900 | ||
| 901 | #ifdef CONFIG_COMPAT | ||
| 902 | struct compat_delta { | ||
| 903 | struct compat_delta *next; | ||
| 904 | u_int16_t offset; | ||
| 905 | short delta; | ||
| 906 | }; | ||
| 907 | |||
| 908 | static struct compat_delta *compat_offsets = NULL; | ||
| 909 | |||
| 910 | static int compat_add_offset(u_int16_t offset, short delta) | ||
| 911 | { | ||
| 912 | struct compat_delta *tmp; | ||
| 913 | |||
| 914 | tmp = kmalloc(sizeof(struct compat_delta), GFP_KERNEL); | ||
| 915 | if (!tmp) | ||
| 916 | return -ENOMEM; | ||
| 917 | tmp->offset = offset; | ||
| 918 | tmp->delta = delta; | ||
| 919 | if (compat_offsets) { | ||
| 920 | tmp->next = compat_offsets->next; | ||
| 921 | compat_offsets->next = tmp; | ||
| 922 | } else { | ||
| 923 | compat_offsets = tmp; | ||
| 924 | tmp->next = NULL; | ||
| 925 | } | ||
| 926 | return 0; | ||
| 927 | } | ||
| 928 | |||
| 929 | static void compat_flush_offsets(void) | ||
| 930 | { | ||
| 931 | struct compat_delta *tmp, *next; | ||
| 932 | |||
| 933 | if (compat_offsets) { | ||
| 934 | for(tmp = compat_offsets; tmp; tmp = next) { | ||
| 935 | next = tmp->next; | ||
| 936 | kfree(tmp); | ||
| 937 | } | ||
| 938 | compat_offsets = NULL; | ||
| 939 | } | ||
| 940 | } | ||
| 941 | |||
| 942 | static short compat_calc_jump(u_int16_t offset) | ||
| 943 | { | ||
| 944 | struct compat_delta *tmp; | ||
| 945 | short delta; | ||
| 946 | |||
| 947 | for(tmp = compat_offsets, delta = 0; tmp; tmp = tmp->next) | ||
| 948 | if (tmp->offset < offset) | ||
| 949 | delta += tmp->delta; | ||
| 950 | return delta; | ||
| 951 | } | ||
| 952 | |||
| 953 | struct compat_ipt_standard_target | ||
| 954 | { | ||
| 955 | struct compat_xt_entry_target target; | ||
| 956 | compat_int_t verdict; | ||
| 957 | }; | ||
| 958 | |||
| 959 | #define IPT_ST_OFFSET (sizeof(struct ipt_standard_target) - \ | ||
| 960 | sizeof(struct compat_ipt_standard_target)) | ||
| 961 | |||
| 962 | struct compat_ipt_standard | ||
| 963 | { | ||
| 964 | struct compat_ipt_entry entry; | ||
| 965 | struct compat_ipt_standard_target target; | ||
| 966 | }; | ||
| 967 | |||
| 968 | static int compat_ipt_standard_fn(void *target, | ||
| 969 | void **dstptr, int *size, int convert) | ||
| 970 | { | ||
| 971 | struct compat_ipt_standard_target compat_st, *pcompat_st; | ||
| 972 | struct ipt_standard_target st, *pst; | ||
| 973 | int ret; | ||
| 974 | |||
| 975 | ret = 0; | ||
| 976 | switch (convert) { | ||
| 977 | case COMPAT_TO_USER: | ||
| 978 | pst = (struct ipt_standard_target *)target; | ||
| 979 | memcpy(&compat_st.target, &pst->target, | ||
| 980 | sizeof(struct ipt_entry_target)); | ||
| 981 | compat_st.verdict = pst->verdict; | ||
| 982 | if (compat_st.verdict > 0) | ||
| 983 | compat_st.verdict -= | ||
| 984 | compat_calc_jump(compat_st.verdict); | ||
| 985 | compat_st.target.u.user.target_size = | ||
| 986 | sizeof(struct compat_ipt_standard_target); | ||
| 987 | if (__copy_to_user(*dstptr, &compat_st, | ||
| 988 | sizeof(struct compat_ipt_standard_target))) | ||
| 989 | ret = -EFAULT; | ||
| 990 | *size -= IPT_ST_OFFSET; | ||
| 991 | *dstptr += sizeof(struct compat_ipt_standard_target); | ||
| 992 | break; | ||
| 993 | case COMPAT_FROM_USER: | ||
| 994 | pcompat_st = | ||
| 995 | (struct compat_ipt_standard_target *)target; | ||
| 996 | memcpy(&st.target, &pcompat_st->target, | ||
| 997 | sizeof(struct ipt_entry_target)); | ||
| 998 | st.verdict = pcompat_st->verdict; | ||
| 999 | if (st.verdict > 0) | ||
| 1000 | st.verdict += compat_calc_jump(st.verdict); | ||
| 1001 | st.target.u.user.target_size = | ||
| 1002 | sizeof(struct ipt_standard_target); | ||
| 1003 | memcpy(*dstptr, &st, | ||
| 1004 | sizeof(struct ipt_standard_target)); | ||
| 1005 | *size += IPT_ST_OFFSET; | ||
| 1006 | *dstptr += sizeof(struct ipt_standard_target); | ||
| 1007 | break; | ||
| 1008 | case COMPAT_CALC_SIZE: | ||
| 1009 | *size += IPT_ST_OFFSET; | ||
| 1010 | break; | ||
| 1011 | default: | ||
| 1012 | ret = -ENOPROTOOPT; | ||
| 1013 | break; | ||
| 1014 | } | ||
| 1015 | return ret; | ||
| 1016 | } | ||
| 1017 | |||
| 1018 | static inline int | ||
| 1019 | compat_calc_match(struct ipt_entry_match *m, int * size) | ||
| 1020 | { | ||
| 1021 | if (m->u.kernel.match->compat) | ||
| 1022 | m->u.kernel.match->compat(m, NULL, size, COMPAT_CALC_SIZE); | ||
| 1023 | else | ||
| 1024 | xt_compat_match(m, NULL, size, COMPAT_CALC_SIZE); | ||
| 1025 | return 0; | ||
| 1026 | } | ||
| 1027 | |||
| 1028 | static int compat_calc_entry(struct ipt_entry *e, struct xt_table_info *info, | ||
| 1029 | void *base, struct xt_table_info *newinfo) | ||
| 1030 | { | ||
| 1031 | struct ipt_entry_target *t; | ||
| 1032 | u_int16_t entry_offset; | ||
| 1033 | int off, i, ret; | ||
| 1034 | |||
| 1035 | off = 0; | ||
| 1036 | entry_offset = (void *)e - base; | ||
| 1037 | IPT_MATCH_ITERATE(e, compat_calc_match, &off); | ||
| 1038 | t = ipt_get_target(e); | ||
| 1039 | if (t->u.kernel.target->compat) | ||
| 1040 | t->u.kernel.target->compat(t, NULL, &off, COMPAT_CALC_SIZE); | ||
| 1041 | else | ||
| 1042 | xt_compat_target(t, NULL, &off, COMPAT_CALC_SIZE); | ||
| 1043 | newinfo->size -= off; | ||
| 1044 | ret = compat_add_offset(entry_offset, off); | ||
| 1045 | if (ret) | ||
| 1046 | return ret; | ||
| 1047 | |||
| 1048 | for (i = 0; i< NF_IP_NUMHOOKS; i++) { | ||
| 1049 | if (info->hook_entry[i] && (e < (struct ipt_entry *) | ||
| 1050 | (base + info->hook_entry[i]))) | ||
| 1051 | newinfo->hook_entry[i] -= off; | ||
| 1052 | if (info->underflow[i] && (e < (struct ipt_entry *) | ||
| 1053 | (base + info->underflow[i]))) | ||
| 1054 | newinfo->underflow[i] -= off; | ||
| 1055 | } | ||
| 1056 | return 0; | ||
| 1057 | } | ||
| 1058 | |||
| 1059 | static int compat_table_info(struct xt_table_info *info, | ||
| 1060 | struct xt_table_info *newinfo) | ||
| 1061 | { | ||
| 1062 | void *loc_cpu_entry; | ||
| 1063 | int i; | ||
| 1064 | |||
| 1065 | if (!newinfo || !info) | ||
| 1066 | return -EINVAL; | ||
| 1067 | |||
| 1068 | memset(newinfo, 0, sizeof(struct xt_table_info)); | ||
| 1069 | newinfo->size = info->size; | ||
| 1070 | newinfo->number = info->number; | ||
| 1071 | for (i = 0; i < NF_IP_NUMHOOKS; i++) { | ||
| 1072 | newinfo->hook_entry[i] = info->hook_entry[i]; | ||
| 1073 | newinfo->underflow[i] = info->underflow[i]; | ||
| 1074 | } | ||
| 1075 | loc_cpu_entry = info->entries[raw_smp_processor_id()]; | ||
| 1076 | return IPT_ENTRY_ITERATE(loc_cpu_entry, info->size, | ||
| 1077 | compat_calc_entry, info, loc_cpu_entry, newinfo); | ||
| 1078 | } | ||
| 1079 | #endif | ||
| 1080 | |||
| 1081 | static int get_info(void __user *user, int *len, int compat) | ||
| 1082 | { | ||
| 1083 | char name[IPT_TABLE_MAXNAMELEN]; | ||
| 1084 | struct ipt_table *t; | ||
| 1085 | int ret; | ||
| 1086 | |||
| 1087 | if (*len != sizeof(struct ipt_getinfo)) { | ||
| 1088 | duprintf("length %u != %u\n", *len, | ||
| 1089 | (unsigned int)sizeof(struct ipt_getinfo)); | ||
| 1090 | return -EINVAL; | ||
| 1091 | } | ||
| 1092 | |||
| 1093 | if (copy_from_user(name, user, sizeof(name)) != 0) | ||
| 1094 | return -EFAULT; | ||
| 1095 | |||
| 1096 | name[IPT_TABLE_MAXNAMELEN-1] = '\0'; | ||
| 1097 | #ifdef CONFIG_COMPAT | ||
| 1098 | if (compat) | ||
| 1099 | xt_compat_lock(AF_INET); | ||
| 1100 | #endif | ||
| 1101 | t = try_then_request_module(xt_find_table_lock(AF_INET, name), | ||
| 1102 | "iptable_%s", name); | ||
| 1103 | if (t && !IS_ERR(t)) { | ||
| 1104 | struct ipt_getinfo info; | ||
| 1105 | struct xt_table_info *private = t->private; | ||
| 1106 | |||
| 1107 | #ifdef CONFIG_COMPAT | ||
| 1108 | if (compat) { | ||
| 1109 | struct xt_table_info tmp; | ||
| 1110 | ret = compat_table_info(private, &tmp); | ||
| 1111 | compat_flush_offsets(); | ||
| 1112 | private = &tmp; | ||
| 1113 | } | ||
| 1114 | #endif | ||
| 1115 | info.valid_hooks = t->valid_hooks; | ||
| 1116 | memcpy(info.hook_entry, private->hook_entry, | ||
| 1117 | sizeof(info.hook_entry)); | ||
| 1118 | memcpy(info.underflow, private->underflow, | ||
| 1119 | sizeof(info.underflow)); | ||
| 1120 | info.num_entries = private->number; | ||
| 1121 | info.size = private->size; | ||
| 1122 | strcpy(info.name, name); | ||
| 1123 | |||
| 1124 | if (copy_to_user(user, &info, *len) != 0) | ||
| 1125 | ret = -EFAULT; | ||
| 1126 | else | ||
| 1127 | ret = 0; | ||
| 1128 | |||
| 1129 | xt_table_unlock(t); | ||
| 1130 | module_put(t->me); | ||
| 1131 | } else | ||
| 1132 | ret = t ? PTR_ERR(t) : -ENOENT; | ||
| 1133 | #ifdef CONFIG_COMPAT | ||
| 1134 | if (compat) | ||
| 1135 | xt_compat_unlock(AF_INET); | ||
| 1136 | #endif | ||
| 1137 | return ret; | ||
| 1138 | } | ||
| 1139 | |||
| 887 | static int | 1140 | static int |
| 888 | get_entries(const struct ipt_get_entries *entries, | 1141 | get_entries(struct ipt_get_entries __user *uptr, int *len) |
| 889 | struct ipt_get_entries __user *uptr) | ||
| 890 | { | 1142 | { |
| 891 | int ret; | 1143 | int ret; |
| 1144 | struct ipt_get_entries get; | ||
| 892 | struct ipt_table *t; | 1145 | struct ipt_table *t; |
| 893 | 1146 | ||
| 894 | t = xt_find_table_lock(AF_INET, entries->name); | 1147 | if (*len < sizeof(get)) { |
| 1148 | duprintf("get_entries: %u < %d\n", *len, | ||
| 1149 | (unsigned int)sizeof(get)); | ||
| 1150 | return -EINVAL; | ||
| 1151 | } | ||
| 1152 | if (copy_from_user(&get, uptr, sizeof(get)) != 0) | ||
| 1153 | return -EFAULT; | ||
| 1154 | if (*len != sizeof(struct ipt_get_entries) + get.size) { | ||
| 1155 | duprintf("get_entries: %u != %u\n", *len, | ||
| 1156 | (unsigned int)(sizeof(struct ipt_get_entries) + | ||
| 1157 | get.size)); | ||
| 1158 | return -EINVAL; | ||
| 1159 | } | ||
| 1160 | |||
| 1161 | t = xt_find_table_lock(AF_INET, get.name); | ||
| 895 | if (t && !IS_ERR(t)) { | 1162 | if (t && !IS_ERR(t)) { |
| 896 | struct xt_table_info *private = t->private; | 1163 | struct xt_table_info *private = t->private; |
| 897 | duprintf("t->private->number = %u\n", | 1164 | duprintf("t->private->number = %u\n", |
| 898 | private->number); | 1165 | private->number); |
| 899 | if (entries->size == private->size) | 1166 | if (get.size == private->size) |
| 900 | ret = copy_entries_to_user(private->size, | 1167 | ret = copy_entries_to_user(private->size, |
| 901 | t, uptr->entrytable); | 1168 | t, uptr->entrytable); |
| 902 | else { | 1169 | else { |
| 903 | duprintf("get_entries: I've got %u not %u!\n", | 1170 | duprintf("get_entries: I've got %u not %u!\n", |
| 904 | private->size, | 1171 | private->size, |
| 905 | entries->size); | 1172 | get.size); |
| 906 | ret = -EINVAL; | 1173 | ret = -EINVAL; |
| 907 | } | 1174 | } |
| 908 | module_put(t->me); | 1175 | module_put(t->me); |
| @@ -914,79 +1181,47 @@ get_entries(const struct ipt_get_entries *entries, | |||
| 914 | } | 1181 | } |
| 915 | 1182 | ||
| 916 | static int | 1183 | static int |
| 917 | do_replace(void __user *user, unsigned int len) | 1184 | __do_replace(const char *name, unsigned int valid_hooks, |
| 1185 | struct xt_table_info *newinfo, unsigned int num_counters, | ||
| 1186 | void __user *counters_ptr) | ||
| 918 | { | 1187 | { |
| 919 | int ret; | 1188 | int ret; |
| 920 | struct ipt_replace tmp; | ||
| 921 | struct ipt_table *t; | 1189 | struct ipt_table *t; |
| 922 | struct xt_table_info *newinfo, *oldinfo; | 1190 | struct xt_table_info *oldinfo; |
| 923 | struct xt_counters *counters; | 1191 | struct xt_counters *counters; |
| 924 | void *loc_cpu_entry, *loc_cpu_old_entry; | 1192 | void *loc_cpu_old_entry; |
| 925 | 1193 | ||
| 926 | if (copy_from_user(&tmp, user, sizeof(tmp)) != 0) | 1194 | ret = 0; |
| 927 | return -EFAULT; | 1195 | counters = vmalloc(num_counters * sizeof(struct xt_counters)); |
| 928 | |||
| 929 | /* Hack: Causes ipchains to give correct error msg --RR */ | ||
| 930 | if (len != sizeof(tmp) + tmp.size) | ||
| 931 | return -ENOPROTOOPT; | ||
| 932 | |||
| 933 | /* overflow check */ | ||
| 934 | if (tmp.size >= (INT_MAX - sizeof(struct xt_table_info)) / NR_CPUS - | ||
| 935 | SMP_CACHE_BYTES) | ||
| 936 | return -ENOMEM; | ||
| 937 | if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters)) | ||
| 938 | return -ENOMEM; | ||
| 939 | |||
| 940 | newinfo = xt_alloc_table_info(tmp.size); | ||
| 941 | if (!newinfo) | ||
| 942 | return -ENOMEM; | ||
| 943 | |||
| 944 | /* choose the copy that is our node/cpu */ | ||
| 945 | loc_cpu_entry = newinfo->entries[raw_smp_processor_id()]; | ||
| 946 | if (copy_from_user(loc_cpu_entry, user + sizeof(tmp), | ||
| 947 | tmp.size) != 0) { | ||
| 948 | ret = -EFAULT; | ||
| 949 | goto free_newinfo; | ||
| 950 | } | ||
| 951 | |||
| 952 | counters = vmalloc(tmp.num_counters * sizeof(struct xt_counters)); | ||
| 953 | if (!counters) { | 1196 | if (!counters) { |
| 954 | ret = -ENOMEM; | 1197 | ret = -ENOMEM; |
| 955 | goto free_newinfo; | 1198 | goto out; |
| 956 | } | 1199 | } |
| 957 | 1200 | ||
| 958 | ret = translate_table(tmp.name, tmp.valid_hooks, | 1201 | t = try_then_request_module(xt_find_table_lock(AF_INET, name), |
| 959 | newinfo, loc_cpu_entry, tmp.size, tmp.num_entries, | 1202 | "iptable_%s", name); |
| 960 | tmp.hook_entry, tmp.underflow); | ||
| 961 | if (ret != 0) | ||
| 962 | goto free_newinfo_counters; | ||
| 963 | |||
| 964 | duprintf("ip_tables: Translated table\n"); | ||
| 965 | |||
| 966 | t = try_then_request_module(xt_find_table_lock(AF_INET, tmp.name), | ||
| 967 | "iptable_%s", tmp.name); | ||
| 968 | if (!t || IS_ERR(t)) { | 1203 | if (!t || IS_ERR(t)) { |
| 969 | ret = t ? PTR_ERR(t) : -ENOENT; | 1204 | ret = t ? PTR_ERR(t) : -ENOENT; |
| 970 | goto free_newinfo_counters_untrans; | 1205 | goto free_newinfo_counters_untrans; |
| 971 | } | 1206 | } |
| 972 | 1207 | ||
| 973 | /* You lied! */ | 1208 | /* You lied! */ |
| 974 | if (tmp.valid_hooks != t->valid_hooks) { | 1209 | if (valid_hooks != t->valid_hooks) { |
| 975 | duprintf("Valid hook crap: %08X vs %08X\n", | 1210 | duprintf("Valid hook crap: %08X vs %08X\n", |
| 976 | tmp.valid_hooks, t->valid_hooks); | 1211 | valid_hooks, t->valid_hooks); |
| 977 | ret = -EINVAL; | 1212 | ret = -EINVAL; |
| 978 | goto put_module; | 1213 | goto put_module; |
| 979 | } | 1214 | } |
| 980 | 1215 | ||
| 981 | oldinfo = xt_replace_table(t, tmp.num_counters, newinfo, &ret); | 1216 | oldinfo = xt_replace_table(t, num_counters, newinfo, &ret); |
| 982 | if (!oldinfo) | 1217 | if (!oldinfo) |
| 983 | goto put_module; | 1218 | goto put_module; |
| 984 | 1219 | ||
| 985 | /* Update module usage count based on number of rules */ | 1220 | /* Update module usage count based on number of rules */ |
| 986 | duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n", | 1221 | duprintf("do_replace: oldnum=%u, initnum=%u, newnum=%u\n", |
| 987 | oldinfo->number, oldinfo->initial_entries, newinfo->number); | 1222 | oldinfo->number, oldinfo->initial_entries, newinfo->number); |
| 988 | if ((oldinfo->number > oldinfo->initial_entries) || | 1223 | if ((oldinfo->number > oldinfo->initial_entries) || |
| 989 | (newinfo->number <= oldinfo->initial_entries)) | 1224 | (newinfo->number <= oldinfo->initial_entries)) |
| 990 | module_put(t->me); | 1225 | module_put(t->me); |
| 991 | if ((oldinfo->number > oldinfo->initial_entries) && | 1226 | if ((oldinfo->number > oldinfo->initial_entries) && |
| 992 | (newinfo->number <= oldinfo->initial_entries)) | 1227 | (newinfo->number <= oldinfo->initial_entries)) |
| @@ -998,8 +1233,8 @@ do_replace(void __user *user, unsigned int len) | |||
| 998 | loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()]; | 1233 | loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()]; |
| 999 | IPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,NULL); | 1234 | IPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry,NULL); |
| 1000 | xt_free_table_info(oldinfo); | 1235 | xt_free_table_info(oldinfo); |
| 1001 | if (copy_to_user(tmp.counters, counters, | 1236 | if (copy_to_user(counters_ptr, counters, |
| 1002 | sizeof(struct xt_counters) * tmp.num_counters) != 0) | 1237 | sizeof(struct xt_counters) * num_counters) != 0) |
| 1003 | ret = -EFAULT; | 1238 | ret = -EFAULT; |
| 1004 | vfree(counters); | 1239 | vfree(counters); |
| 1005 | xt_table_unlock(t); | 1240 | xt_table_unlock(t); |
| @@ -1009,9 +1244,62 @@ do_replace(void __user *user, unsigned int len) | |||
| 1009 | module_put(t->me); | 1244 | module_put(t->me); |
| 1010 | xt_table_unlock(t); | 1245 | xt_table_unlock(t); |
| 1011 | free_newinfo_counters_untrans: | 1246 | free_newinfo_counters_untrans: |
| 1012 | IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry,NULL); | ||
| 1013 | free_newinfo_counters: | ||
| 1014 | vfree(counters); | 1247 | vfree(counters); |
| 1248 | out: | ||
| 1249 | return ret; | ||
| 1250 | } | ||
| 1251 | |||
| 1252 | static int | ||
| 1253 | do_replace(void __user *user, unsigned int len) | ||
| 1254 | { | ||
| 1255 | int ret; | ||
| 1256 | struct ipt_replace tmp; | ||
| 1257 | struct xt_table_info *newinfo; | ||
| 1258 | void *loc_cpu_entry; | ||
| 1259 | |||
| 1260 | if (copy_from_user(&tmp, user, sizeof(tmp)) != 0) | ||
| 1261 | return -EFAULT; | ||
| 1262 | |||
| 1263 | /* Hack: Causes ipchains to give correct error msg --RR */ | ||
| 1264 | if (len != sizeof(tmp) + tmp.size) | ||
| 1265 | return -ENOPROTOOPT; | ||
| 1266 | |||
| 1267 | /* overflow check */ | ||
| 1268 | if (tmp.size >= (INT_MAX - sizeof(struct xt_table_info)) / NR_CPUS - | ||
| 1269 | SMP_CACHE_BYTES) | ||
| 1270 | return -ENOMEM; | ||
| 1271 | if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters)) | ||
| 1272 | return -ENOMEM; | ||
| 1273 | |||
| 1274 | newinfo = xt_alloc_table_info(tmp.size); | ||
| 1275 | if (!newinfo) | ||
| 1276 | return -ENOMEM; | ||
| 1277 | |||
| 1278 | /* choose the copy that is our node/cpu */ | ||
| 1279 | loc_cpu_entry = newinfo->entries[raw_smp_processor_id()]; | ||
| 1280 | if (copy_from_user(loc_cpu_entry, user + sizeof(tmp), | ||
| 1281 | tmp.size) != 0) { | ||
| 1282 | ret = -EFAULT; | ||
| 1283 | goto free_newinfo; | ||
| 1284 | } | ||
| 1285 | |||
| 1286 | ret = translate_table(tmp.name, tmp.valid_hooks, | ||
| 1287 | newinfo, loc_cpu_entry, tmp.size, tmp.num_entries, | ||
| 1288 | tmp.hook_entry, tmp.underflow); | ||
| 1289 | if (ret != 0) | ||
| 1290 | goto free_newinfo; | ||
| 1291 | |||
| 1292 | duprintf("ip_tables: Translated table\n"); | ||
| 1293 | |||
| 1294 | ret = __do_replace(tmp.name, tmp.valid_hooks, | ||
| 1295 | newinfo, tmp.num_counters, | ||
| 1296 | tmp.counters); | ||
| 1297 | if (ret) | ||
| 1298 | goto free_newinfo_untrans; | ||
| 1299 | return 0; | ||
| 1300 | |||
| 1301 | free_newinfo_untrans: | ||
| 1302 | IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry,NULL); | ||
| 1015 | free_newinfo: | 1303 | free_newinfo: |
| 1016 | xt_free_table_info(newinfo); | 1304 | xt_free_table_info(newinfo); |
| 1017 | return ret; | 1305 | return ret; |
| @@ -1040,31 +1328,59 @@ add_counter_to_entry(struct ipt_entry *e, | |||
| 1040 | } | 1328 | } |
| 1041 | 1329 | ||
| 1042 | static int | 1330 | static int |
| 1043 | do_add_counters(void __user *user, unsigned int len) | 1331 | do_add_counters(void __user *user, unsigned int len, int compat) |
| 1044 | { | 1332 | { |
| 1045 | unsigned int i; | 1333 | unsigned int i; |
| 1046 | struct xt_counters_info tmp, *paddc; | 1334 | struct xt_counters_info tmp; |
| 1335 | struct xt_counters *paddc; | ||
| 1336 | unsigned int num_counters; | ||
| 1337 | char *name; | ||
| 1338 | int size; | ||
| 1339 | void *ptmp; | ||
| 1047 | struct ipt_table *t; | 1340 | struct ipt_table *t; |
| 1048 | struct xt_table_info *private; | 1341 | struct xt_table_info *private; |
| 1049 | int ret = 0; | 1342 | int ret = 0; |
| 1050 | void *loc_cpu_entry; | 1343 | void *loc_cpu_entry; |
| 1344 | #ifdef CONFIG_COMPAT | ||
| 1345 | struct compat_xt_counters_info compat_tmp; | ||
| 1051 | 1346 | ||
| 1052 | if (copy_from_user(&tmp, user, sizeof(tmp)) != 0) | 1347 | if (compat) { |
| 1348 | ptmp = &compat_tmp; | ||
| 1349 | size = sizeof(struct compat_xt_counters_info); | ||
| 1350 | } else | ||
| 1351 | #endif | ||
| 1352 | { | ||
| 1353 | ptmp = &tmp; | ||
| 1354 | size = sizeof(struct xt_counters_info); | ||
| 1355 | } | ||
| 1356 | |||
| 1357 | if (copy_from_user(ptmp, user, size) != 0) | ||
| 1053 | return -EFAULT; | 1358 | return -EFAULT; |
| 1054 | 1359 | ||
| 1055 | if (len != sizeof(tmp) + tmp.num_counters*sizeof(struct xt_counters)) | 1360 | #ifdef CONFIG_COMPAT |
| 1361 | if (compat) { | ||
| 1362 | num_counters = compat_tmp.num_counters; | ||
| 1363 | name = compat_tmp.name; | ||
| 1364 | } else | ||
| 1365 | #endif | ||
| 1366 | { | ||
| 1367 | num_counters = tmp.num_counters; | ||
| 1368 | name = tmp.name; | ||
| 1369 | } | ||
| 1370 | |||
| 1371 | if (len != size + num_counters * sizeof(struct xt_counters)) | ||
| 1056 | return -EINVAL; | 1372 | return -EINVAL; |
| 1057 | 1373 | ||
| 1058 | paddc = vmalloc_node(len, numa_node_id()); | 1374 | paddc = vmalloc_node(len - size, numa_node_id()); |
| 1059 | if (!paddc) | 1375 | if (!paddc) |
| 1060 | return -ENOMEM; | 1376 | return -ENOMEM; |
| 1061 | 1377 | ||
| 1062 | if (copy_from_user(paddc, user, len) != 0) { | 1378 | if (copy_from_user(paddc, user + size, len - size) != 0) { |
| 1063 | ret = -EFAULT; | 1379 | ret = -EFAULT; |
| 1064 | goto free; | 1380 | goto free; |
| 1065 | } | 1381 | } |
| 1066 | 1382 | ||
| 1067 | t = xt_find_table_lock(AF_INET, tmp.name); | 1383 | t = xt_find_table_lock(AF_INET, name); |
| 1068 | if (!t || IS_ERR(t)) { | 1384 | if (!t || IS_ERR(t)) { |
| 1069 | ret = t ? PTR_ERR(t) : -ENOENT; | 1385 | ret = t ? PTR_ERR(t) : -ENOENT; |
| 1070 | goto free; | 1386 | goto free; |
| @@ -1072,7 +1388,7 @@ do_add_counters(void __user *user, unsigned int len) | |||
| 1072 | 1388 | ||
| 1073 | write_lock_bh(&t->lock); | 1389 | write_lock_bh(&t->lock); |
| 1074 | private = t->private; | 1390 | private = t->private; |
| 1075 | if (private->number != paddc->num_counters) { | 1391 | if (private->number != num_counters) { |
| 1076 | ret = -EINVAL; | 1392 | ret = -EINVAL; |
| 1077 | goto unlock_up_free; | 1393 | goto unlock_up_free; |
| 1078 | } | 1394 | } |
| @@ -1083,7 +1399,7 @@ do_add_counters(void __user *user, unsigned int len) | |||
| 1083 | IPT_ENTRY_ITERATE(loc_cpu_entry, | 1399 | IPT_ENTRY_ITERATE(loc_cpu_entry, |
| 1084 | private->size, | 1400 | private->size, |
| 1085 | add_counter_to_entry, | 1401 | add_counter_to_entry, |
| 1086 | paddc->counters, | 1402 | paddc, |
| 1087 | &i); | 1403 | &i); |
| 1088 | unlock_up_free: | 1404 | unlock_up_free: |
| 1089 | write_unlock_bh(&t->lock); | 1405 | write_unlock_bh(&t->lock); |
| @@ -1095,8 +1411,438 @@ do_add_counters(void __user *user, unsigned int len) | |||
| 1095 | return ret; | 1411 | return ret; |
| 1096 | } | 1412 | } |
| 1097 | 1413 | ||
| 1414 | #ifdef CONFIG_COMPAT | ||
| 1415 | struct compat_ipt_replace { | ||
| 1416 | char name[IPT_TABLE_MAXNAMELEN]; | ||
| 1417 | u32 valid_hooks; | ||
| 1418 | u32 num_entries; | ||
| 1419 | u32 size; | ||
| 1420 | u32 hook_entry[NF_IP_NUMHOOKS]; | ||
| 1421 | u32 underflow[NF_IP_NUMHOOKS]; | ||
| 1422 | u32 num_counters; | ||
| 1423 | compat_uptr_t counters; /* struct ipt_counters * */ | ||
| 1424 | struct compat_ipt_entry entries[0]; | ||
| 1425 | }; | ||
| 1426 | |||
| 1427 | static inline int compat_copy_match_to_user(struct ipt_entry_match *m, | ||
| 1428 | void __user **dstptr, compat_uint_t *size) | ||
| 1429 | { | ||
| 1430 | if (m->u.kernel.match->compat) | ||
| 1431 | return m->u.kernel.match->compat(m, dstptr, size, | ||
| 1432 | COMPAT_TO_USER); | ||
| 1433 | else | ||
| 1434 | return xt_compat_match(m, dstptr, size, COMPAT_TO_USER); | ||
| 1435 | } | ||
| 1436 | |||
| 1437 | static int compat_copy_entry_to_user(struct ipt_entry *e, | ||
| 1438 | void __user **dstptr, compat_uint_t *size) | ||
| 1439 | { | ||
| 1440 | struct ipt_entry_target __user *t; | ||
| 1441 | struct compat_ipt_entry __user *ce; | ||
| 1442 | u_int16_t target_offset, next_offset; | ||
| 1443 | compat_uint_t origsize; | ||
| 1444 | int ret; | ||
| 1445 | |||
| 1446 | ret = -EFAULT; | ||
| 1447 | origsize = *size; | ||
| 1448 | ce = (struct compat_ipt_entry __user *)*dstptr; | ||
| 1449 | if (__copy_to_user(ce, e, sizeof(struct ipt_entry))) | ||
| 1450 | goto out; | ||
| 1451 | |||
| 1452 | *dstptr += sizeof(struct compat_ipt_entry); | ||
| 1453 | ret = IPT_MATCH_ITERATE(e, compat_copy_match_to_user, dstptr, size); | ||
| 1454 | target_offset = e->target_offset - (origsize - *size); | ||
| 1455 | if (ret) | ||
| 1456 | goto out; | ||
| 1457 | t = ipt_get_target(e); | ||
| 1458 | if (t->u.kernel.target->compat) | ||
| 1459 | ret = t->u.kernel.target->compat(t, dstptr, size, | ||
| 1460 | COMPAT_TO_USER); | ||
| 1461 | else | ||
| 1462 | ret = xt_compat_target(t, dstptr, size, COMPAT_TO_USER); | ||
| 1463 | if (ret) | ||
| 1464 | goto out; | ||
| 1465 | ret = -EFAULT; | ||
| 1466 | next_offset = e->next_offset - (origsize - *size); | ||
| 1467 | if (__put_user(target_offset, &ce->target_offset)) | ||
| 1468 | goto out; | ||
| 1469 | if (__put_user(next_offset, &ce->next_offset)) | ||
| 1470 | goto out; | ||
| 1471 | return 0; | ||
| 1472 | out: | ||
| 1473 | return ret; | ||
| 1474 | } | ||
| 1475 | |||
| 1476 | static inline int | ||
| 1477 | compat_check_calc_match(struct ipt_entry_match *m, | ||
| 1478 | const char *name, | ||
| 1479 | const struct ipt_ip *ip, | ||
| 1480 | unsigned int hookmask, | ||
| 1481 | int *size, int *i) | ||
| 1482 | { | ||
| 1483 | struct ipt_match *match; | ||
| 1484 | |||
| 1485 | match = try_then_request_module(xt_find_match(AF_INET, m->u.user.name, | ||
| 1486 | m->u.user.revision), | ||
| 1487 | "ipt_%s", m->u.user.name); | ||
| 1488 | if (IS_ERR(match) || !match) { | ||
| 1489 | duprintf("compat_check_calc_match: `%s' not found\n", | ||
| 1490 | m->u.user.name); | ||
| 1491 | return match ? PTR_ERR(match) : -ENOENT; | ||
| 1492 | } | ||
| 1493 | m->u.kernel.match = match; | ||
| 1494 | |||
| 1495 | if (m->u.kernel.match->compat) | ||
| 1496 | m->u.kernel.match->compat(m, NULL, size, COMPAT_CALC_SIZE); | ||
| 1497 | else | ||
| 1498 | xt_compat_match(m, NULL, size, COMPAT_CALC_SIZE); | ||
| 1499 | |||
| 1500 | (*i)++; | ||
| 1501 | return 0; | ||
| 1502 | } | ||
| 1503 | |||
| 1504 | static inline int | ||
| 1505 | check_compat_entry_size_and_hooks(struct ipt_entry *e, | ||
| 1506 | struct xt_table_info *newinfo, | ||
| 1507 | unsigned int *size, | ||
| 1508 | unsigned char *base, | ||
| 1509 | unsigned char *limit, | ||
| 1510 | unsigned int *hook_entries, | ||
| 1511 | unsigned int *underflows, | ||
| 1512 | unsigned int *i, | ||
| 1513 | const char *name) | ||
| 1514 | { | ||
| 1515 | struct ipt_entry_target *t; | ||
| 1516 | struct ipt_target *target; | ||
| 1517 | u_int16_t entry_offset; | ||
| 1518 | int ret, off, h, j; | ||
| 1519 | |||
| 1520 | duprintf("check_compat_entry_size_and_hooks %p\n", e); | ||
| 1521 | if ((unsigned long)e % __alignof__(struct compat_ipt_entry) != 0 | ||
| 1522 | || (unsigned char *)e + sizeof(struct compat_ipt_entry) >= limit) { | ||
| 1523 | duprintf("Bad offset %p, limit = %p\n", e, limit); | ||
| 1524 | return -EINVAL; | ||
| 1525 | } | ||
| 1526 | |||
| 1527 | if (e->next_offset < sizeof(struct compat_ipt_entry) + | ||
| 1528 | sizeof(struct compat_xt_entry_target)) { | ||
| 1529 | duprintf("checking: element %p size %u\n", | ||
| 1530 | e, e->next_offset); | ||
| 1531 | return -EINVAL; | ||
| 1532 | } | ||
| 1533 | |||
| 1534 | if (!ip_checkentry(&e->ip)) { | ||
| 1535 | duprintf("ip_tables: ip check failed %p %s.\n", e, name); | ||
| 1536 | return -EINVAL; | ||
| 1537 | } | ||
| 1538 | |||
| 1539 | off = 0; | ||
| 1540 | entry_offset = (void *)e - (void *)base; | ||
| 1541 | j = 0; | ||
| 1542 | ret = IPT_MATCH_ITERATE(e, compat_check_calc_match, name, &e->ip, | ||
| 1543 | e->comefrom, &off, &j); | ||
| 1544 | if (ret != 0) | ||
| 1545 | goto out; | ||
| 1546 | |||
| 1547 | t = ipt_get_target(e); | ||
| 1548 | target = try_then_request_module(xt_find_target(AF_INET, | ||
| 1549 | t->u.user.name, | ||
| 1550 | t->u.user.revision), | ||
| 1551 | "ipt_%s", t->u.user.name); | ||
| 1552 | if (IS_ERR(target) || !target) { | ||
| 1553 | duprintf("check_entry: `%s' not found\n", t->u.user.name); | ||
| 1554 | ret = target ? PTR_ERR(target) : -ENOENT; | ||
| 1555 | goto out; | ||
| 1556 | } | ||
| 1557 | t->u.kernel.target = target; | ||
| 1558 | |||
| 1559 | if (t->u.kernel.target->compat) | ||
| 1560 | t->u.kernel.target->compat(t, NULL, &off, COMPAT_CALC_SIZE); | ||
| 1561 | else | ||
| 1562 | xt_compat_target(t, NULL, &off, COMPAT_CALC_SIZE); | ||
| 1563 | *size += off; | ||
| 1564 | ret = compat_add_offset(entry_offset, off); | ||
| 1565 | if (ret) | ||
| 1566 | goto out; | ||
| 1567 | |||
| 1568 | /* Check hooks & underflows */ | ||
| 1569 | for (h = 0; h < NF_IP_NUMHOOKS; h++) { | ||
| 1570 | if ((unsigned char *)e - base == hook_entries[h]) | ||
| 1571 | newinfo->hook_entry[h] = hook_entries[h]; | ||
| 1572 | if ((unsigned char *)e - base == underflows[h]) | ||
| 1573 | newinfo->underflow[h] = underflows[h]; | ||
| 1574 | } | ||
| 1575 | |||
| 1576 | /* Clear counters and comefrom */ | ||
| 1577 | e->counters = ((struct ipt_counters) { 0, 0 }); | ||
| 1578 | e->comefrom = 0; | ||
| 1579 | |||
| 1580 | (*i)++; | ||
| 1581 | return 0; | ||
| 1582 | out: | ||
| 1583 | IPT_MATCH_ITERATE(e, cleanup_match, &j); | ||
| 1584 | return ret; | ||
| 1585 | } | ||
| 1586 | |||
| 1587 | static inline int compat_copy_match_from_user(struct ipt_entry_match *m, | ||
| 1588 | void **dstptr, compat_uint_t *size, const char *name, | ||
| 1589 | const struct ipt_ip *ip, unsigned int hookmask) | ||
| 1590 | { | ||
| 1591 | struct ipt_entry_match *dm; | ||
| 1592 | struct ipt_match *match; | ||
| 1593 | int ret; | ||
| 1594 | |||
| 1595 | dm = (struct ipt_entry_match *)*dstptr; | ||
| 1596 | match = m->u.kernel.match; | ||
| 1597 | if (match->compat) | ||
| 1598 | match->compat(m, dstptr, size, COMPAT_FROM_USER); | ||
| 1599 | else | ||
| 1600 | xt_compat_match(m, dstptr, size, COMPAT_FROM_USER); | ||
| 1601 | |||
| 1602 | ret = xt_check_match(match, AF_INET, dm->u.match_size - sizeof(*dm), | ||
| 1603 | name, hookmask, ip->proto, | ||
| 1604 | ip->invflags & IPT_INV_PROTO); | ||
| 1605 | if (ret) | ||
| 1606 | return ret; | ||
| 1607 | |||
| 1608 | if (m->u.kernel.match->checkentry | ||
| 1609 | && !m->u.kernel.match->checkentry(name, ip, match, dm->data, | ||
| 1610 | dm->u.match_size - sizeof(*dm), | ||
| 1611 | hookmask)) { | ||
| 1612 | duprintf("ip_tables: check failed for `%s'.\n", | ||
| 1613 | m->u.kernel.match->name); | ||
| 1614 | return -EINVAL; | ||
| 1615 | } | ||
| 1616 | return 0; | ||
| 1617 | } | ||
| 1618 | |||
| 1619 | static int compat_copy_entry_from_user(struct ipt_entry *e, void **dstptr, | ||
| 1620 | unsigned int *size, const char *name, | ||
| 1621 | struct xt_table_info *newinfo, unsigned char *base) | ||
| 1622 | { | ||
| 1623 | struct ipt_entry_target *t; | ||
| 1624 | struct ipt_target *target; | ||
| 1625 | struct ipt_entry *de; | ||
| 1626 | unsigned int origsize; | ||
| 1627 | int ret, h; | ||
| 1628 | |||
| 1629 | ret = 0; | ||
| 1630 | origsize = *size; | ||
| 1631 | de = (struct ipt_entry *)*dstptr; | ||
| 1632 | memcpy(de, e, sizeof(struct ipt_entry)); | ||
| 1633 | |||
| 1634 | *dstptr += sizeof(struct compat_ipt_entry); | ||
| 1635 | ret = IPT_MATCH_ITERATE(e, compat_copy_match_from_user, dstptr, size, | ||
| 1636 | name, &de->ip, de->comefrom); | ||
| 1637 | if (ret) | ||
| 1638 | goto out; | ||
| 1639 | de->target_offset = e->target_offset - (origsize - *size); | ||
| 1640 | t = ipt_get_target(e); | ||
| 1641 | target = t->u.kernel.target; | ||
| 1642 | if (target->compat) | ||
| 1643 | target->compat(t, dstptr, size, COMPAT_FROM_USER); | ||
| 1644 | else | ||
| 1645 | xt_compat_target(t, dstptr, size, COMPAT_FROM_USER); | ||
| 1646 | |||
| 1647 | de->next_offset = e->next_offset - (origsize - *size); | ||
| 1648 | for (h = 0; h < NF_IP_NUMHOOKS; h++) { | ||
| 1649 | if ((unsigned char *)de - base < newinfo->hook_entry[h]) | ||
| 1650 | newinfo->hook_entry[h] -= origsize - *size; | ||
| 1651 | if ((unsigned char *)de - base < newinfo->underflow[h]) | ||
| 1652 | newinfo->underflow[h] -= origsize - *size; | ||
| 1653 | } | ||
| 1654 | |||
| 1655 | t = ipt_get_target(de); | ||
| 1656 | target = t->u.kernel.target; | ||
| 1657 | ret = xt_check_target(target, AF_INET, t->u.target_size - sizeof(*t), | ||
| 1658 | name, e->comefrom, e->ip.proto, | ||
| 1659 | e->ip.invflags & IPT_INV_PROTO); | ||
| 1660 | if (ret) | ||
| 1661 | goto out; | ||
| 1662 | |||
| 1663 | ret = -EINVAL; | ||
| 1664 | if (t->u.kernel.target == &ipt_standard_target) { | ||
| 1665 | if (!standard_check(t, *size)) | ||
| 1666 | goto out; | ||
| 1667 | } else if (t->u.kernel.target->checkentry | ||
| 1668 | && !t->u.kernel.target->checkentry(name, de, target, | ||
| 1669 | t->data, t->u.target_size - sizeof(*t), | ||
| 1670 | de->comefrom)) { | ||
| 1671 | duprintf("ip_tables: compat: check failed for `%s'.\n", | ||
| 1672 | t->u.kernel.target->name); | ||
| 1673 | goto out; | ||
| 1674 | } | ||
| 1675 | ret = 0; | ||
| 1676 | out: | ||
| 1677 | return ret; | ||
| 1678 | } | ||
| 1679 | |||
| 1098 | static int | 1680 | static int |
| 1099 | do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len) | 1681 | translate_compat_table(const char *name, |
| 1682 | unsigned int valid_hooks, | ||
| 1683 | struct xt_table_info **pinfo, | ||
| 1684 | void **pentry0, | ||
| 1685 | unsigned int total_size, | ||
| 1686 | unsigned int number, | ||
| 1687 | unsigned int *hook_entries, | ||
| 1688 | unsigned int *underflows) | ||
| 1689 | { | ||
| 1690 | unsigned int i; | ||
| 1691 | struct xt_table_info *newinfo, *info; | ||
| 1692 | void *pos, *entry0, *entry1; | ||
| 1693 | unsigned int size; | ||
| 1694 | int ret; | ||
| 1695 | |||
| 1696 | info = *pinfo; | ||
| 1697 | entry0 = *pentry0; | ||
| 1698 | size = total_size; | ||
| 1699 | info->number = number; | ||
| 1700 | |||
| 1701 | /* Init all hooks to impossible value. */ | ||
| 1702 | for (i = 0; i < NF_IP_NUMHOOKS; i++) { | ||
| 1703 | info->hook_entry[i] = 0xFFFFFFFF; | ||
| 1704 | info->underflow[i] = 0xFFFFFFFF; | ||
| 1705 | } | ||
| 1706 | |||
| 1707 | duprintf("translate_compat_table: size %u\n", info->size); | ||
| 1708 | i = 0; | ||
| 1709 | xt_compat_lock(AF_INET); | ||
| 1710 | /* Walk through entries, checking offsets. */ | ||
| 1711 | ret = IPT_ENTRY_ITERATE(entry0, total_size, | ||
| 1712 | check_compat_entry_size_and_hooks, | ||
| 1713 | info, &size, entry0, | ||
| 1714 | entry0 + total_size, | ||
| 1715 | hook_entries, underflows, &i, name); | ||
| 1716 | if (ret != 0) | ||
| 1717 | goto out_unlock; | ||
| 1718 | |||
| 1719 | ret = -EINVAL; | ||
| 1720 | if (i != number) { | ||
| 1721 | duprintf("translate_compat_table: %u not %u entries\n", | ||
| 1722 | i, number); | ||
| 1723 | goto out_unlock; | ||
| 1724 | } | ||
| 1725 | |||
| 1726 | /* Check hooks all assigned */ | ||
| 1727 | for (i = 0; i < NF_IP_NUMHOOKS; i++) { | ||
| 1728 | /* Only hooks which are valid */ | ||
| 1729 | if (!(valid_hooks & (1 << i))) | ||
| 1730 | continue; | ||
| 1731 | if (info->hook_entry[i] == 0xFFFFFFFF) { | ||
| 1732 | duprintf("Invalid hook entry %u %u\n", | ||
| 1733 | i, hook_entries[i]); | ||
| 1734 | goto out_unlock; | ||
| 1735 | } | ||
| 1736 | if (info->underflow[i] == 0xFFFFFFFF) { | ||
| 1737 | duprintf("Invalid underflow %u %u\n", | ||
| 1738 | i, underflows[i]); | ||
| 1739 | goto out_unlock; | ||
| 1740 | } | ||
| 1741 | } | ||
| 1742 | |||
| 1743 | ret = -ENOMEM; | ||
| 1744 | newinfo = xt_alloc_table_info(size); | ||
| 1745 | if (!newinfo) | ||
| 1746 | goto out_unlock; | ||
| 1747 | |||
| 1748 | newinfo->number = number; | ||
| 1749 | for (i = 0; i < NF_IP_NUMHOOKS; i++) { | ||
| 1750 | newinfo->hook_entry[i] = info->hook_entry[i]; | ||
| 1751 | newinfo->underflow[i] = info->underflow[i]; | ||
| 1752 | } | ||
| 1753 | entry1 = newinfo->entries[raw_smp_processor_id()]; | ||
| 1754 | pos = entry1; | ||
| 1755 | size = total_size; | ||
| 1756 | ret = IPT_ENTRY_ITERATE(entry0, total_size, | ||
| 1757 | compat_copy_entry_from_user, &pos, &size, | ||
| 1758 | name, newinfo, entry1); | ||
| 1759 | compat_flush_offsets(); | ||
| 1760 | xt_compat_unlock(AF_INET); | ||
| 1761 | if (ret) | ||
| 1762 | goto free_newinfo; | ||
| 1763 | |||
| 1764 | ret = -ELOOP; | ||
| 1765 | if (!mark_source_chains(newinfo, valid_hooks, entry1)) | ||
| 1766 | goto free_newinfo; | ||
| 1767 | |||
| 1768 | /* And one copy for every other CPU */ | ||
| 1769 | for_each_cpu(i) | ||
| 1770 | if (newinfo->entries[i] && newinfo->entries[i] != entry1) | ||
| 1771 | memcpy(newinfo->entries[i], entry1, newinfo->size); | ||
| 1772 | |||
| 1773 | *pinfo = newinfo; | ||
| 1774 | *pentry0 = entry1; | ||
| 1775 | xt_free_table_info(info); | ||
| 1776 | return 0; | ||
| 1777 | |||
| 1778 | free_newinfo: | ||
| 1779 | xt_free_table_info(newinfo); | ||
| 1780 | out: | ||
| 1781 | return ret; | ||
| 1782 | out_unlock: | ||
| 1783 | xt_compat_unlock(AF_INET); | ||
| 1784 | goto out; | ||
| 1785 | } | ||
| 1786 | |||
| 1787 | static int | ||
| 1788 | compat_do_replace(void __user *user, unsigned int len) | ||
| 1789 | { | ||
| 1790 | int ret; | ||
| 1791 | struct compat_ipt_replace tmp; | ||
| 1792 | struct xt_table_info *newinfo; | ||
| 1793 | void *loc_cpu_entry; | ||
| 1794 | |||
| 1795 | if (copy_from_user(&tmp, user, sizeof(tmp)) != 0) | ||
| 1796 | return -EFAULT; | ||
| 1797 | |||
| 1798 | /* Hack: Causes ipchains to give correct error msg --RR */ | ||
| 1799 | if (len != sizeof(tmp) + tmp.size) | ||
| 1800 | return -ENOPROTOOPT; | ||
| 1801 | |||
| 1802 | /* overflow check */ | ||
| 1803 | if (tmp.size >= (INT_MAX - sizeof(struct xt_table_info)) / NR_CPUS - | ||
| 1804 | SMP_CACHE_BYTES) | ||
| 1805 | return -ENOMEM; | ||
| 1806 | if (tmp.num_counters >= INT_MAX / sizeof(struct xt_counters)) | ||
| 1807 | return -ENOMEM; | ||
| 1808 | |||
| 1809 | newinfo = xt_alloc_table_info(tmp.size); | ||
| 1810 | if (!newinfo) | ||
| 1811 | return -ENOMEM; | ||
| 1812 | |||
| 1813 | /* choose the copy that is our node/cpu */ | ||
| 1814 | loc_cpu_entry = newinfo->entries[raw_smp_processor_id()]; | ||
| 1815 | if (copy_from_user(loc_cpu_entry, user + sizeof(tmp), | ||
| 1816 | tmp.size) != 0) { | ||
| 1817 | ret = -EFAULT; | ||
| 1818 | goto free_newinfo; | ||
| 1819 | } | ||
| 1820 | |||
| 1821 | ret = translate_compat_table(tmp.name, tmp.valid_hooks, | ||
| 1822 | &newinfo, &loc_cpu_entry, tmp.size, | ||
| 1823 | tmp.num_entries, tmp.hook_entry, tmp.underflow); | ||
| 1824 | if (ret != 0) | ||
| 1825 | goto free_newinfo; | ||
| 1826 | |||
| 1827 | duprintf("compat_do_replace: Translated table\n"); | ||
| 1828 | |||
| 1829 | ret = __do_replace(tmp.name, tmp.valid_hooks, | ||
| 1830 | newinfo, tmp.num_counters, | ||
| 1831 | compat_ptr(tmp.counters)); | ||
| 1832 | if (ret) | ||
| 1833 | goto free_newinfo_untrans; | ||
| 1834 | return 0; | ||
| 1835 | |||
| 1836 | free_newinfo_untrans: | ||
| 1837 | IPT_ENTRY_ITERATE(loc_cpu_entry, newinfo->size, cleanup_entry,NULL); | ||
| 1838 | free_newinfo: | ||
| 1839 | xt_free_table_info(newinfo); | ||
| 1840 | return ret; | ||
| 1841 | } | ||
| 1842 | |||
| 1843 | static int | ||
| 1844 | compat_do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, | ||
| 1845 | unsigned int len) | ||
| 1100 | { | 1846 | { |
| 1101 | int ret; | 1847 | int ret; |
| 1102 | 1848 | ||
| @@ -1105,11 +1851,11 @@ do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len) | |||
| 1105 | 1851 | ||
| 1106 | switch (cmd) { | 1852 | switch (cmd) { |
| 1107 | case IPT_SO_SET_REPLACE: | 1853 | case IPT_SO_SET_REPLACE: |
| 1108 | ret = do_replace(user, len); | 1854 | ret = compat_do_replace(user, len); |
| 1109 | break; | 1855 | break; |
| 1110 | 1856 | ||
| 1111 | case IPT_SO_SET_ADD_COUNTERS: | 1857 | case IPT_SO_SET_ADD_COUNTERS: |
| 1112 | ret = do_add_counters(user, len); | 1858 | ret = do_add_counters(user, len, 1); |
| 1113 | break; | 1859 | break; |
| 1114 | 1860 | ||
| 1115 | default: | 1861 | default: |
| @@ -1120,75 +1866,196 @@ do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len) | |||
| 1120 | return ret; | 1866 | return ret; |
| 1121 | } | 1867 | } |
| 1122 | 1868 | ||
| 1869 | struct compat_ipt_get_entries | ||
| 1870 | { | ||
| 1871 | char name[IPT_TABLE_MAXNAMELEN]; | ||
| 1872 | compat_uint_t size; | ||
| 1873 | struct compat_ipt_entry entrytable[0]; | ||
| 1874 | }; | ||
| 1875 | |||
| 1876 | static int compat_copy_entries_to_user(unsigned int total_size, | ||
| 1877 | struct ipt_table *table, void __user *userptr) | ||
| 1878 | { | ||
| 1879 | unsigned int off, num; | ||
| 1880 | struct compat_ipt_entry e; | ||
| 1881 | struct xt_counters *counters; | ||
| 1882 | struct xt_table_info *private = table->private; | ||
| 1883 | void __user *pos; | ||
| 1884 | unsigned int size; | ||
| 1885 | int ret = 0; | ||
| 1886 | void *loc_cpu_entry; | ||
| 1887 | |||
| 1888 | counters = alloc_counters(table); | ||
| 1889 | if (IS_ERR(counters)) | ||
| 1890 | return PTR_ERR(counters); | ||
| 1891 | |||
| 1892 | /* choose the copy that is on our node/cpu, ... | ||
| 1893 | * This choice is lazy (because current thread is | ||
| 1894 | * allowed to migrate to another cpu) | ||
| 1895 | */ | ||
| 1896 | loc_cpu_entry = private->entries[raw_smp_processor_id()]; | ||
| 1897 | pos = userptr; | ||
| 1898 | size = total_size; | ||
| 1899 | ret = IPT_ENTRY_ITERATE(loc_cpu_entry, total_size, | ||
| 1900 | compat_copy_entry_to_user, &pos, &size); | ||
| 1901 | if (ret) | ||
| 1902 | goto free_counters; | ||
| 1903 | |||
| 1904 | /* ... then go back and fix counters and names */ | ||
| 1905 | for (off = 0, num = 0; off < size; off += e.next_offset, num++) { | ||
| 1906 | unsigned int i; | ||
| 1907 | struct ipt_entry_match m; | ||
| 1908 | struct ipt_entry_target t; | ||
| 1909 | |||
| 1910 | ret = -EFAULT; | ||
| 1911 | if (copy_from_user(&e, userptr + off, | ||
| 1912 | sizeof(struct compat_ipt_entry))) | ||
| 1913 | goto free_counters; | ||
| 1914 | if (copy_to_user(userptr + off + | ||
| 1915 | offsetof(struct compat_ipt_entry, counters), | ||
| 1916 | &counters[num], sizeof(counters[num]))) | ||
| 1917 | goto free_counters; | ||
| 1918 | |||
| 1919 | for (i = sizeof(struct compat_ipt_entry); | ||
| 1920 | i < e.target_offset; i += m.u.match_size) { | ||
| 1921 | if (copy_from_user(&m, userptr + off + i, | ||
| 1922 | sizeof(struct ipt_entry_match))) | ||
| 1923 | goto free_counters; | ||
| 1924 | if (copy_to_user(userptr + off + i + | ||
| 1925 | offsetof(struct ipt_entry_match, u.user.name), | ||
| 1926 | m.u.kernel.match->name, | ||
| 1927 | strlen(m.u.kernel.match->name) + 1)) | ||
| 1928 | goto free_counters; | ||
| 1929 | } | ||
| 1930 | |||
| 1931 | if (copy_from_user(&t, userptr + off + e.target_offset, | ||
| 1932 | sizeof(struct ipt_entry_target))) | ||
| 1933 | goto free_counters; | ||
| 1934 | if (copy_to_user(userptr + off + e.target_offset + | ||
| 1935 | offsetof(struct ipt_entry_target, u.user.name), | ||
| 1936 | t.u.kernel.target->name, | ||
| 1937 | strlen(t.u.kernel.target->name) + 1)) | ||
| 1938 | goto free_counters; | ||
| 1939 | } | ||
| 1940 | ret = 0; | ||
| 1941 | free_counters: | ||
| 1942 | vfree(counters); | ||
| 1943 | return ret; | ||
| 1944 | } | ||
| 1945 | |||
| 1123 | static int | 1946 | static int |
| 1124 | do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len) | 1947 | compat_get_entries(struct compat_ipt_get_entries __user *uptr, int *len) |
| 1125 | { | 1948 | { |
| 1126 | int ret; | 1949 | int ret; |
| 1950 | struct compat_ipt_get_entries get; | ||
| 1951 | struct ipt_table *t; | ||
| 1127 | 1952 | ||
| 1128 | if (!capable(CAP_NET_ADMIN)) | ||
| 1129 | return -EPERM; | ||
| 1130 | 1953 | ||
| 1131 | switch (cmd) { | 1954 | if (*len < sizeof(get)) { |
| 1132 | case IPT_SO_GET_INFO: { | 1955 | duprintf("compat_get_entries: %u < %u\n", |
| 1133 | char name[IPT_TABLE_MAXNAMELEN]; | 1956 | *len, (unsigned int)sizeof(get)); |
| 1134 | struct ipt_table *t; | 1957 | return -EINVAL; |
| 1958 | } | ||
| 1959 | |||
| 1960 | if (copy_from_user(&get, uptr, sizeof(get)) != 0) | ||
| 1961 | return -EFAULT; | ||
| 1962 | |||
| 1963 | if (*len != sizeof(struct compat_ipt_get_entries) + get.size) { | ||
| 1964 | duprintf("compat_get_entries: %u != %u\n", *len, | ||
| 1965 | (unsigned int)(sizeof(struct compat_ipt_get_entries) + | ||
| 1966 | get.size)); | ||
| 1967 | return -EINVAL; | ||
| 1968 | } | ||
| 1135 | 1969 | ||
| 1136 | if (*len != sizeof(struct ipt_getinfo)) { | 1970 | xt_compat_lock(AF_INET); |
| 1137 | duprintf("length %u != %u\n", *len, | 1971 | t = xt_find_table_lock(AF_INET, get.name); |
| 1138 | sizeof(struct ipt_getinfo)); | 1972 | if (t && !IS_ERR(t)) { |
| 1973 | struct xt_table_info *private = t->private; | ||
| 1974 | struct xt_table_info info; | ||
| 1975 | duprintf("t->private->number = %u\n", | ||
| 1976 | private->number); | ||
| 1977 | ret = compat_table_info(private, &info); | ||
| 1978 | if (!ret && get.size == info.size) { | ||
| 1979 | ret = compat_copy_entries_to_user(private->size, | ||
| 1980 | t, uptr->entrytable); | ||
| 1981 | } else if (!ret) { | ||
| 1982 | duprintf("compat_get_entries: I've got %u not %u!\n", | ||
| 1983 | private->size, | ||
| 1984 | get.size); | ||
| 1139 | ret = -EINVAL; | 1985 | ret = -EINVAL; |
| 1140 | break; | ||
| 1141 | } | 1986 | } |
| 1987 | compat_flush_offsets(); | ||
| 1988 | module_put(t->me); | ||
| 1989 | xt_table_unlock(t); | ||
| 1990 | } else | ||
| 1991 | ret = t ? PTR_ERR(t) : -ENOENT; | ||
| 1142 | 1992 | ||
| 1143 | if (copy_from_user(name, user, sizeof(name)) != 0) { | 1993 | xt_compat_unlock(AF_INET); |
| 1144 | ret = -EFAULT; | 1994 | return ret; |
| 1145 | break; | 1995 | } |
| 1146 | } | 1996 | |
| 1147 | name[IPT_TABLE_MAXNAMELEN-1] = '\0'; | 1997 | static int |
| 1148 | 1998 | compat_do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len) | |
| 1149 | t = try_then_request_module(xt_find_table_lock(AF_INET, name), | 1999 | { |
| 1150 | "iptable_%s", name); | 2000 | int ret; |
| 1151 | if (t && !IS_ERR(t)) { | 2001 | |
| 1152 | struct ipt_getinfo info; | 2002 | switch (cmd) { |
| 1153 | struct xt_table_info *private = t->private; | 2003 | case IPT_SO_GET_INFO: |
| 1154 | 2004 | ret = get_info(user, len, 1); | |
| 1155 | info.valid_hooks = t->valid_hooks; | 2005 | break; |
| 1156 | memcpy(info.hook_entry, private->hook_entry, | 2006 | case IPT_SO_GET_ENTRIES: |
| 1157 | sizeof(info.hook_entry)); | 2007 | ret = compat_get_entries(user, len); |
| 1158 | memcpy(info.underflow, private->underflow, | 2008 | break; |
| 1159 | sizeof(info.underflow)); | 2009 | default: |
| 1160 | info.num_entries = private->number; | 2010 | duprintf("compat_do_ipt_get_ctl: unknown request %i\n", cmd); |
| 1161 | info.size = private->size; | 2011 | ret = -EINVAL; |
| 1162 | memcpy(info.name, name, sizeof(info.name)); | ||
| 1163 | |||
| 1164 | if (copy_to_user(user, &info, *len) != 0) | ||
| 1165 | ret = -EFAULT; | ||
| 1166 | else | ||
| 1167 | ret = 0; | ||
| 1168 | xt_table_unlock(t); | ||
| 1169 | module_put(t->me); | ||
| 1170 | } else | ||
| 1171 | ret = t ? PTR_ERR(t) : -ENOENT; | ||
| 1172 | } | 2012 | } |
| 1173 | break; | 2013 | return ret; |
| 2014 | } | ||
| 2015 | #endif | ||
| 1174 | 2016 | ||
| 1175 | case IPT_SO_GET_ENTRIES: { | 2017 | static int |
| 1176 | struct ipt_get_entries get; | 2018 | do_ipt_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len) |
| 2019 | { | ||
| 2020 | int ret; | ||
| 1177 | 2021 | ||
| 1178 | if (*len < sizeof(get)) { | 2022 | if (!capable(CAP_NET_ADMIN)) |
| 1179 | duprintf("get_entries: %u < %u\n", *len, sizeof(get)); | 2023 | return -EPERM; |
| 1180 | ret = -EINVAL; | 2024 | |
| 1181 | } else if (copy_from_user(&get, user, sizeof(get)) != 0) { | 2025 | switch (cmd) { |
| 1182 | ret = -EFAULT; | 2026 | case IPT_SO_SET_REPLACE: |
| 1183 | } else if (*len != sizeof(struct ipt_get_entries) + get.size) { | 2027 | ret = do_replace(user, len); |
| 1184 | duprintf("get_entries: %u != %u\n", *len, | ||
| 1185 | sizeof(struct ipt_get_entries) + get.size); | ||
| 1186 | ret = -EINVAL; | ||
| 1187 | } else | ||
| 1188 | ret = get_entries(&get, user); | ||
| 1189 | break; | 2028 | break; |
| 2029 | |||
| 2030 | case IPT_SO_SET_ADD_COUNTERS: | ||
| 2031 | ret = do_add_counters(user, len, 0); | ||
| 2032 | break; | ||
| 2033 | |||
| 2034 | default: | ||
| 2035 | duprintf("do_ipt_set_ctl: unknown request %i\n", cmd); | ||
| 2036 | ret = -EINVAL; | ||
| 1190 | } | 2037 | } |
| 1191 | 2038 | ||
| 2039 | return ret; | ||
| 2040 | } | ||
| 2041 | |||
| 2042 | static int | ||
| 2043 | do_ipt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len) | ||
| 2044 | { | ||
| 2045 | int ret; | ||
| 2046 | |||
| 2047 | if (!capable(CAP_NET_ADMIN)) | ||
| 2048 | return -EPERM; | ||
| 2049 | |||
| 2050 | switch (cmd) { | ||
| 2051 | case IPT_SO_GET_INFO: | ||
| 2052 | ret = get_info(user, len, 0); | ||
| 2053 | break; | ||
| 2054 | |||
| 2055 | case IPT_SO_GET_ENTRIES: | ||
| 2056 | ret = get_entries(user, len); | ||
| 2057 | break; | ||
| 2058 | |||
| 1192 | case IPT_SO_GET_REVISION_MATCH: | 2059 | case IPT_SO_GET_REVISION_MATCH: |
| 1193 | case IPT_SO_GET_REVISION_TARGET: { | 2060 | case IPT_SO_GET_REVISION_TARGET: { |
| 1194 | struct ipt_get_revision rev; | 2061 | struct ipt_get_revision rev; |
| @@ -1336,6 +2203,9 @@ static struct ipt_target ipt_standard_target = { | |||
| 1336 | .name = IPT_STANDARD_TARGET, | 2203 | .name = IPT_STANDARD_TARGET, |
| 1337 | .targetsize = sizeof(int), | 2204 | .targetsize = sizeof(int), |
| 1338 | .family = AF_INET, | 2205 | .family = AF_INET, |
| 2206 | #ifdef CONFIG_COMPAT | ||
| 2207 | .compat = &compat_ipt_standard_fn, | ||
| 2208 | #endif | ||
| 1339 | }; | 2209 | }; |
| 1340 | 2210 | ||
| 1341 | static struct ipt_target ipt_error_target = { | 2211 | static struct ipt_target ipt_error_target = { |
| @@ -1350,9 +2220,15 @@ static struct nf_sockopt_ops ipt_sockopts = { | |||
| 1350 | .set_optmin = IPT_BASE_CTL, | 2220 | .set_optmin = IPT_BASE_CTL, |
| 1351 | .set_optmax = IPT_SO_SET_MAX+1, | 2221 | .set_optmax = IPT_SO_SET_MAX+1, |
| 1352 | .set = do_ipt_set_ctl, | 2222 | .set = do_ipt_set_ctl, |
| 2223 | #ifdef CONFIG_COMPAT | ||
| 2224 | .compat_set = compat_do_ipt_set_ctl, | ||
| 2225 | #endif | ||
| 1353 | .get_optmin = IPT_BASE_CTL, | 2226 | .get_optmin = IPT_BASE_CTL, |
| 1354 | .get_optmax = IPT_SO_GET_MAX+1, | 2227 | .get_optmax = IPT_SO_GET_MAX+1, |
| 1355 | .get = do_ipt_get_ctl, | 2228 | .get = do_ipt_get_ctl, |
| 2229 | #ifdef CONFIG_COMPAT | ||
| 2230 | .compat_get = compat_do_ipt_get_ctl, | ||
| 2231 | #endif | ||
| 1356 | }; | 2232 | }; |
| 1357 | 2233 | ||
| 1358 | static struct ipt_match icmp_matchstruct = { | 2234 | static struct ipt_match icmp_matchstruct = { |
diff --git a/net/ipv4/netfilter/ipt_multiport.c b/net/ipv4/netfilter/ipt_multiport.c deleted file mode 100644 index ac95d8390bcc..000000000000 --- a/net/ipv4/netfilter/ipt_multiport.c +++ /dev/null | |||
| @@ -1,195 +0,0 @@ | |||
| 1 | /* Kernel module to match one of a list of TCP/UDP ports: ports are in | ||
| 2 | the same place so we can treat them as equal. */ | ||
| 3 | |||
| 4 | /* (C) 1999-2001 Paul `Rusty' Russell | ||
| 5 | * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #include <linux/module.h> | ||
| 13 | #include <linux/types.h> | ||
| 14 | #include <linux/udp.h> | ||
| 15 | #include <linux/skbuff.h> | ||
| 16 | |||
| 17 | #include <linux/netfilter_ipv4/ipt_multiport.h> | ||
| 18 | #include <linux/netfilter_ipv4/ip_tables.h> | ||
| 19 | |||
| 20 | MODULE_LICENSE("GPL"); | ||
| 21 | MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>"); | ||
| 22 | MODULE_DESCRIPTION("iptables multiple port match module"); | ||
| 23 | |||
| 24 | #if 0 | ||
| 25 | #define duprintf(format, args...) printk(format , ## args) | ||
| 26 | #else | ||
| 27 | #define duprintf(format, args...) | ||
| 28 | #endif | ||
| 29 | |||
| 30 | /* Returns 1 if the port is matched by the test, 0 otherwise. */ | ||
| 31 | static inline int | ||
| 32 | ports_match(const u_int16_t *portlist, enum ipt_multiport_flags flags, | ||
| 33 | u_int8_t count, u_int16_t src, u_int16_t dst) | ||
| 34 | { | ||
| 35 | unsigned int i; | ||
| 36 | for (i=0; i<count; i++) { | ||
| 37 | if (flags != IPT_MULTIPORT_DESTINATION | ||
| 38 | && portlist[i] == src) | ||
| 39 | return 1; | ||
| 40 | |||
| 41 | if (flags != IPT_MULTIPORT_SOURCE | ||
| 42 | && portlist[i] == dst) | ||
| 43 | return 1; | ||
| 44 | } | ||
| 45 | |||
| 46 | return 0; | ||
| 47 | } | ||
| 48 | |||
| 49 | /* Returns 1 if the port is matched by the test, 0 otherwise. */ | ||
| 50 | static inline int | ||
| 51 | ports_match_v1(const struct ipt_multiport_v1 *minfo, | ||
| 52 | u_int16_t src, u_int16_t dst) | ||
| 53 | { | ||
| 54 | unsigned int i; | ||
| 55 | u_int16_t s, e; | ||
| 56 | |||
| 57 | for (i=0; i < minfo->count; i++) { | ||
| 58 | s = minfo->ports[i]; | ||
| 59 | |||
| 60 | if (minfo->pflags[i]) { | ||
| 61 | /* range port matching */ | ||
| 62 | e = minfo->ports[++i]; | ||
| 63 | duprintf("src or dst matches with %d-%d?\n", s, e); | ||
| 64 | |||
| 65 | if (minfo->flags == IPT_MULTIPORT_SOURCE | ||
| 66 | && src >= s && src <= e) | ||
| 67 | return 1 ^ minfo->invert; | ||
| 68 | if (minfo->flags == IPT_MULTIPORT_DESTINATION | ||
| 69 | && dst >= s && dst <= e) | ||
| 70 | return 1 ^ minfo->invert; | ||
| 71 | if (minfo->flags == IPT_MULTIPORT_EITHER | ||
| 72 | && ((dst >= s && dst <= e) | ||
| 73 | || (src >= s && src <= e))) | ||
| 74 | return 1 ^ minfo->invert; | ||
| 75 | } else { | ||
| 76 | /* exact port matching */ | ||
| 77 | duprintf("src or dst matches with %d?\n", s); | ||
| 78 | |||
| 79 | if (minfo->flags == IPT_MULTIPORT_SOURCE | ||
| 80 | && src == s) | ||
| 81 | return 1 ^ minfo->invert; | ||
| 82 | if (minfo->flags == IPT_MULTIPORT_DESTINATION | ||
| 83 | && dst == s) | ||
| 84 | return 1 ^ minfo->invert; | ||
| 85 | if (minfo->flags == IPT_MULTIPORT_EITHER | ||
| 86 | && (src == s || dst == s)) | ||
| 87 | return 1 ^ minfo->invert; | ||
| 88 | } | ||
| 89 | } | ||
| 90 | |||
| 91 | return minfo->invert; | ||
| 92 | } | ||
| 93 | |||
| 94 | static int | ||
| 95 | match(const struct sk_buff *skb, | ||
| 96 | const struct net_device *in, | ||
| 97 | const struct net_device *out, | ||
| 98 | const struct xt_match *match, | ||
| 99 | const void *matchinfo, | ||
| 100 | int offset, | ||
| 101 | unsigned int protoff, | ||
| 102 | int *hotdrop) | ||
| 103 | { | ||
| 104 | u16 _ports[2], *pptr; | ||
| 105 | const struct ipt_multiport *multiinfo = matchinfo; | ||
| 106 | |||
| 107 | if (offset) | ||
| 108 | return 0; | ||
| 109 | |||
| 110 | pptr = skb_header_pointer(skb, protoff, | ||
| 111 | sizeof(_ports), _ports); | ||
| 112 | if (pptr == NULL) { | ||
| 113 | /* We've been asked to examine this packet, and we | ||
| 114 | * can't. Hence, no choice but to drop. | ||
| 115 | */ | ||
| 116 | duprintf("ipt_multiport:" | ||
| 117 | " Dropping evil offset=0 tinygram.\n"); | ||
| 118 | *hotdrop = 1; | ||
| 119 | return 0; | ||
| 120 | } | ||
| 121 | |||
| 122 | return ports_match(multiinfo->ports, | ||
| 123 | multiinfo->flags, multiinfo->count, | ||
| 124 | ntohs(pptr[0]), ntohs(pptr[1])); | ||
| 125 | } | ||
| 126 | |||
| 127 | static int | ||
| 128 | match_v1(const struct sk_buff *skb, | ||
| 129 | const struct net_device *in, | ||
| 130 | const struct net_device *out, | ||
| 131 | const struct xt_match *match, | ||
| 132 | const void *matchinfo, | ||
| 133 | int offset, | ||
| 134 | unsigned int protoff, | ||
| 135 | int *hotdrop) | ||
| 136 | { | ||
| 137 | u16 _ports[2], *pptr; | ||
| 138 | const struct ipt_multiport_v1 *multiinfo = matchinfo; | ||
| 139 | |||
| 140 | if (offset) | ||
| 141 | return 0; | ||
| 142 | |||
| 143 | pptr = skb_header_pointer(skb, protoff, | ||
| 144 | sizeof(_ports), _ports); | ||
| 145 | if (pptr == NULL) { | ||
| 146 | /* We've been asked to examine this packet, and we | ||
| 147 | * can't. Hence, no choice but to drop. | ||
| 148 | */ | ||
| 149 | duprintf("ipt_multiport:" | ||
| 150 | " Dropping evil offset=0 tinygram.\n"); | ||
| 151 | *hotdrop = 1; | ||
| 152 | return 0; | ||
| 153 | } | ||
| 154 | |||
| 155 | return ports_match_v1(multiinfo, ntohs(pptr[0]), ntohs(pptr[1])); | ||
| 156 | } | ||
| 157 | |||
| 158 | static struct ipt_match multiport_match = { | ||
| 159 | .name = "multiport", | ||
| 160 | .revision = 0, | ||
| 161 | .match = match, | ||
| 162 | .matchsize = sizeof(struct ipt_multiport), | ||
| 163 | .me = THIS_MODULE, | ||
| 164 | }; | ||
| 165 | |||
| 166 | static struct ipt_match multiport_match_v1 = { | ||
| 167 | .name = "multiport", | ||
| 168 | .revision = 1, | ||
| 169 | .match = match_v1, | ||
| 170 | .matchsize = sizeof(struct ipt_multiport_v1), | ||
| 171 | .me = THIS_MODULE, | ||
| 172 | }; | ||
| 173 | |||
| 174 | static int __init ipt_multiport_init(void) | ||
| 175 | { | ||
| 176 | int err; | ||
| 177 | |||
| 178 | err = ipt_register_match(&multiport_match); | ||
| 179 | if (!err) { | ||
| 180 | err = ipt_register_match(&multiport_match_v1); | ||
| 181 | if (err) | ||
| 182 | ipt_unregister_match(&multiport_match); | ||
| 183 | } | ||
| 184 | |||
| 185 | return err; | ||
| 186 | } | ||
| 187 | |||
| 188 | static void __exit ipt_multiport_fini(void) | ||
| 189 | { | ||
| 190 | ipt_unregister_match(&multiport_match); | ||
| 191 | ipt_unregister_match(&multiport_match_v1); | ||
| 192 | } | ||
| 193 | |||
| 194 | module_init(ipt_multiport_init); | ||
| 195 | module_exit(ipt_multiport_fini); | ||
diff --git a/net/ipv4/xfrm4_input.c b/net/ipv4/xfrm4_input.c index 850d919591d1..e1b8f4b90d80 100644 --- a/net/ipv4/xfrm4_input.c +++ b/net/ipv4/xfrm4_input.c | |||
| @@ -68,7 +68,7 @@ int xfrm4_rcv_encap(struct sk_buff *skb, __u16 encap_type) | |||
| 68 | { | 68 | { |
| 69 | int err; | 69 | int err; |
| 70 | u32 spi, seq; | 70 | u32 spi, seq; |
| 71 | struct sec_decap_state xfrm_vec[XFRM_MAX_DEPTH]; | 71 | struct xfrm_state *xfrm_vec[XFRM_MAX_DEPTH]; |
| 72 | struct xfrm_state *x; | 72 | struct xfrm_state *x; |
| 73 | int xfrm_nr = 0; | 73 | int xfrm_nr = 0; |
| 74 | int decaps = 0; | 74 | int decaps = 0; |
| @@ -90,14 +90,16 @@ int xfrm4_rcv_encap(struct sk_buff *skb, __u16 encap_type) | |||
| 90 | if (unlikely(x->km.state != XFRM_STATE_VALID)) | 90 | if (unlikely(x->km.state != XFRM_STATE_VALID)) |
| 91 | goto drop_unlock; | 91 | goto drop_unlock; |
| 92 | 92 | ||
| 93 | if (x->encap->encap_type != encap_type) | ||
| 94 | goto drop_unlock; | ||
| 95 | |||
| 93 | if (x->props.replay_window && xfrm_replay_check(x, seq)) | 96 | if (x->props.replay_window && xfrm_replay_check(x, seq)) |
| 94 | goto drop_unlock; | 97 | goto drop_unlock; |
| 95 | 98 | ||
| 96 | if (xfrm_state_check_expire(x)) | 99 | if (xfrm_state_check_expire(x)) |
| 97 | goto drop_unlock; | 100 | goto drop_unlock; |
| 98 | 101 | ||
| 99 | xfrm_vec[xfrm_nr].decap.decap_type = encap_type; | 102 | if (x->type->input(x, skb)) |
| 100 | if (x->type->input(x, &(xfrm_vec[xfrm_nr].decap), skb)) | ||
| 101 | goto drop_unlock; | 103 | goto drop_unlock; |
| 102 | 104 | ||
| 103 | /* only the first xfrm gets the encap type */ | 105 | /* only the first xfrm gets the encap type */ |
| @@ -111,7 +113,7 @@ int xfrm4_rcv_encap(struct sk_buff *skb, __u16 encap_type) | |||
| 111 | 113 | ||
| 112 | spin_unlock(&x->lock); | 114 | spin_unlock(&x->lock); |
| 113 | 115 | ||
| 114 | xfrm_vec[xfrm_nr++].xvec = x; | 116 | xfrm_vec[xfrm_nr++] = x; |
| 115 | 117 | ||
| 116 | iph = skb->nh.iph; | 118 | iph = skb->nh.iph; |
| 117 | 119 | ||
| @@ -153,7 +155,8 @@ int xfrm4_rcv_encap(struct sk_buff *skb, __u16 encap_type) | |||
| 153 | if (xfrm_nr + skb->sp->len > XFRM_MAX_DEPTH) | 155 | if (xfrm_nr + skb->sp->len > XFRM_MAX_DEPTH) |
| 154 | goto drop; | 156 | goto drop; |
| 155 | 157 | ||
| 156 | memcpy(skb->sp->x+skb->sp->len, xfrm_vec, xfrm_nr*sizeof(struct sec_decap_state)); | 158 | memcpy(skb->sp->xvec + skb->sp->len, xfrm_vec, |
| 159 | xfrm_nr * sizeof(xfrm_vec[0])); | ||
| 157 | skb->sp->len += xfrm_nr; | 160 | skb->sp->len += xfrm_nr; |
| 158 | 161 | ||
| 159 | nf_reset(skb); | 162 | nf_reset(skb); |
| @@ -184,7 +187,7 @@ drop_unlock: | |||
| 184 | xfrm_state_put(x); | 187 | xfrm_state_put(x); |
| 185 | drop: | 188 | drop: |
| 186 | while (--xfrm_nr >= 0) | 189 | while (--xfrm_nr >= 0) |
| 187 | xfrm_state_put(xfrm_vec[xfrm_nr].xvec); | 190 | xfrm_state_put(xfrm_vec[xfrm_nr]); |
| 188 | 191 | ||
| 189 | kfree_skb(skb); | 192 | kfree_skb(skb); |
| 190 | return 0; | 193 | return 0; |
diff --git a/net/ipv4/xfrm4_tunnel.c b/net/ipv4/xfrm4_tunnel.c index 2d670935c2b5..f8ceaa127c83 100644 --- a/net/ipv4/xfrm4_tunnel.c +++ b/net/ipv4/xfrm4_tunnel.c | |||
| @@ -21,7 +21,7 @@ static int ipip_output(struct xfrm_state *x, struct sk_buff *skb) | |||
| 21 | return 0; | 21 | return 0; |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | static int ipip_xfrm_rcv(struct xfrm_state *x, struct xfrm_decap_state *decap, struct sk_buff *skb) | 24 | static int ipip_xfrm_rcv(struct xfrm_state *x, struct sk_buff *skb) |
| 25 | { | 25 | { |
| 26 | return 0; | 26 | return 0; |
| 27 | } | 27 | } |
diff --git a/net/ipv6/ah6.c b/net/ipv6/ah6.c index cf58251df4b3..6778173a3dda 100644 --- a/net/ipv6/ah6.c +++ b/net/ipv6/ah6.c | |||
| @@ -229,7 +229,7 @@ error: | |||
| 229 | return err; | 229 | return err; |
| 230 | } | 230 | } |
| 231 | 231 | ||
| 232 | static int ah6_input(struct xfrm_state *x, struct xfrm_decap_state *decap, struct sk_buff *skb) | 232 | static int ah6_input(struct xfrm_state *x, struct sk_buff *skb) |
| 233 | { | 233 | { |
| 234 | /* | 234 | /* |
| 235 | * Before process AH | 235 | * Before process AH |
diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c index 3dcaac7a0972..22f046079037 100644 --- a/net/ipv6/esp6.c +++ b/net/ipv6/esp6.c | |||
| @@ -130,7 +130,7 @@ error: | |||
| 130 | return err; | 130 | return err; |
| 131 | } | 131 | } |
| 132 | 132 | ||
| 133 | static int esp6_input(struct xfrm_state *x, struct xfrm_decap_state *decap, struct sk_buff *skb) | 133 | static int esp6_input(struct xfrm_state *x, struct sk_buff *skb) |
| 134 | { | 134 | { |
| 135 | struct ipv6hdr *iph; | 135 | struct ipv6hdr *iph; |
| 136 | struct ipv6_esp_hdr *esph; | 136 | struct ipv6_esp_hdr *esph; |
diff --git a/net/ipv6/ipcomp6.c b/net/ipv6/ipcomp6.c index d4cfec3f414e..00f3fadfcca7 100644 --- a/net/ipv6/ipcomp6.c +++ b/net/ipv6/ipcomp6.c | |||
| @@ -63,7 +63,7 @@ static void **ipcomp6_scratches; | |||
| 63 | static int ipcomp6_scratch_users; | 63 | static int ipcomp6_scratch_users; |
| 64 | static LIST_HEAD(ipcomp6_tfms_list); | 64 | static LIST_HEAD(ipcomp6_tfms_list); |
| 65 | 65 | ||
| 66 | static int ipcomp6_input(struct xfrm_state *x, struct xfrm_decap_state *decap, struct sk_buff *skb) | 66 | static int ipcomp6_input(struct xfrm_state *x, struct sk_buff *skb) |
| 67 | { | 67 | { |
| 68 | int err = 0; | 68 | int err = 0; |
| 69 | u8 nexthdr = 0; | 69 | u8 nexthdr = 0; |
diff --git a/net/ipv6/netfilter/Kconfig b/net/ipv6/netfilter/Kconfig index 98f78759f1ab..4bc4e5b33794 100644 --- a/net/ipv6/netfilter/Kconfig +++ b/net/ipv6/netfilter/Kconfig | |||
| @@ -87,16 +87,6 @@ config IP6_NF_MATCH_HL | |||
| 87 | 87 | ||
| 88 | To compile it as a module, choose M here. If unsure, say N. | 88 | To compile it as a module, choose M here. If unsure, say N. |
| 89 | 89 | ||
| 90 | config IP6_NF_MATCH_MULTIPORT | ||
| 91 | tristate "Multiple port match support" | ||
| 92 | depends on IP6_NF_IPTABLES | ||
| 93 | help | ||
| 94 | Multiport matching allows you to match TCP or UDP packets based on | ||
| 95 | a series of source or destination ports: normally a rule can only | ||
| 96 | match a single range of ports. | ||
| 97 | |||
| 98 | To compile it as a module, choose M here. If unsure, say N. | ||
| 99 | |||
| 100 | config IP6_NF_MATCH_OWNER | 90 | config IP6_NF_MATCH_OWNER |
| 101 | tristate "Owner match support" | 91 | tristate "Owner match support" |
| 102 | depends on IP6_NF_IPTABLES | 92 | depends on IP6_NF_IPTABLES |
| @@ -115,11 +105,11 @@ config IP6_NF_MATCH_IPV6HEADER | |||
| 115 | 105 | ||
| 116 | To compile it as a module, choose M here. If unsure, say N. | 106 | To compile it as a module, choose M here. If unsure, say N. |
| 117 | 107 | ||
| 118 | config IP6_NF_MATCH_AHESP | 108 | config IP6_NF_MATCH_AH |
| 119 | tristate "AH/ESP match support" | 109 | tristate "AH match support" |
| 120 | depends on IP6_NF_IPTABLES | 110 | depends on IP6_NF_IPTABLES |
| 121 | help | 111 | help |
| 122 | This module allows one to match AH and ESP packets. | 112 | This module allows one to match AH packets. |
| 123 | 113 | ||
| 124 | To compile it as a module, choose M here. If unsure, say N. | 114 | To compile it as a module, choose M here. If unsure, say N. |
| 125 | 115 | ||
diff --git a/net/ipv6/netfilter/Makefile b/net/ipv6/netfilter/Makefile index 8436a1a1731f..eeeb57d4c9c5 100644 --- a/net/ipv6/netfilter/Makefile +++ b/net/ipv6/netfilter/Makefile | |||
| @@ -8,9 +8,8 @@ obj-$(CONFIG_IP6_NF_MATCH_RT) += ip6t_rt.o | |||
| 8 | obj-$(CONFIG_IP6_NF_MATCH_OPTS) += ip6t_hbh.o ip6t_dst.o | 8 | obj-$(CONFIG_IP6_NF_MATCH_OPTS) += ip6t_hbh.o ip6t_dst.o |
| 9 | obj-$(CONFIG_IP6_NF_MATCH_IPV6HEADER) += ip6t_ipv6header.o | 9 | obj-$(CONFIG_IP6_NF_MATCH_IPV6HEADER) += ip6t_ipv6header.o |
| 10 | obj-$(CONFIG_IP6_NF_MATCH_FRAG) += ip6t_frag.o | 10 | obj-$(CONFIG_IP6_NF_MATCH_FRAG) += ip6t_frag.o |
| 11 | obj-$(CONFIG_IP6_NF_MATCH_AHESP) += ip6t_esp.o ip6t_ah.o | 11 | obj-$(CONFIG_IP6_NF_MATCH_AH) += ip6t_ah.o |
| 12 | obj-$(CONFIG_IP6_NF_MATCH_EUI64) += ip6t_eui64.o | 12 | obj-$(CONFIG_IP6_NF_MATCH_EUI64) += ip6t_eui64.o |
| 13 | obj-$(CONFIG_IP6_NF_MATCH_MULTIPORT) += ip6t_multiport.o | ||
| 14 | obj-$(CONFIG_IP6_NF_MATCH_OWNER) += ip6t_owner.o | 13 | obj-$(CONFIG_IP6_NF_MATCH_OWNER) += ip6t_owner.o |
| 15 | obj-$(CONFIG_IP6_NF_FILTER) += ip6table_filter.o | 14 | obj-$(CONFIG_IP6_NF_FILTER) += ip6table_filter.o |
| 16 | obj-$(CONFIG_IP6_NF_MANGLE) += ip6table_mangle.o | 15 | obj-$(CONFIG_IP6_NF_MANGLE) += ip6table_mangle.o |
diff --git a/net/ipv6/netfilter/ip6t_esp.c b/net/ipv6/netfilter/ip6t_esp.c deleted file mode 100644 index 36bedad2c6f7..000000000000 --- a/net/ipv6/netfilter/ip6t_esp.c +++ /dev/null | |||
| @@ -1,115 +0,0 @@ | |||
| 1 | /* Kernel module to match ESP parameters. */ | ||
| 2 | /* (C) 2001-2002 Andras Kis-Szabo <kisza@sch.bme.hu> | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License version 2 as | ||
| 6 | * published by the Free Software Foundation. | ||
| 7 | */ | ||
| 8 | |||
| 9 | |||
| 10 | #include <linux/module.h> | ||
| 11 | #include <linux/skbuff.h> | ||
| 12 | #include <linux/ip.h> | ||
| 13 | #include <linux/ipv6.h> | ||
| 14 | #include <linux/types.h> | ||
| 15 | #include <net/checksum.h> | ||
| 16 | #include <net/ipv6.h> | ||
| 17 | |||
| 18 | #include <linux/netfilter_ipv6/ip6_tables.h> | ||
| 19 | #include <linux/netfilter_ipv6/ip6t_esp.h> | ||
| 20 | |||
| 21 | MODULE_LICENSE("GPL"); | ||
| 22 | MODULE_DESCRIPTION("IPv6 ESP match"); | ||
| 23 | MODULE_AUTHOR("Andras Kis-Szabo <kisza@sch.bme.hu>"); | ||
| 24 | |||
| 25 | #if 0 | ||
| 26 | #define DEBUGP printk | ||
| 27 | #else | ||
| 28 | #define DEBUGP(format, args...) | ||
| 29 | #endif | ||
| 30 | |||
| 31 | /* Returns 1 if the spi is matched by the range, 0 otherwise */ | ||
| 32 | static inline int | ||
| 33 | spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, int invert) | ||
| 34 | { | ||
| 35 | int r=0; | ||
| 36 | DEBUGP("esp spi_match:%c 0x%x <= 0x%x <= 0x%x",invert? '!':' ', | ||
| 37 | min,spi,max); | ||
| 38 | r=(spi >= min && spi <= max) ^ invert; | ||
| 39 | DEBUGP(" result %s\n",r? "PASS\n" : "FAILED\n"); | ||
| 40 | return r; | ||
| 41 | } | ||
| 42 | |||
| 43 | static int | ||
| 44 | match(const struct sk_buff *skb, | ||
| 45 | const struct net_device *in, | ||
| 46 | const struct net_device *out, | ||
| 47 | const struct xt_match *match, | ||
| 48 | const void *matchinfo, | ||
| 49 | int offset, | ||
| 50 | unsigned int protoff, | ||
| 51 | int *hotdrop) | ||
| 52 | { | ||
| 53 | struct ip_esp_hdr _esp, *eh; | ||
| 54 | const struct ip6t_esp *espinfo = matchinfo; | ||
| 55 | unsigned int ptr; | ||
| 56 | |||
| 57 | /* Make sure this isn't an evil packet */ | ||
| 58 | /*DEBUGP("ipv6_esp entered \n");*/ | ||
| 59 | |||
| 60 | if (ipv6_find_hdr(skb, &ptr, NEXTHDR_ESP, NULL) < 0) | ||
| 61 | return 0; | ||
| 62 | |||
| 63 | eh = skb_header_pointer(skb, ptr, sizeof(_esp), &_esp); | ||
| 64 | if (eh == NULL) { | ||
| 65 | *hotdrop = 1; | ||
| 66 | return 0; | ||
| 67 | } | ||
| 68 | |||
| 69 | DEBUGP("IPv6 ESP SPI %u %08X\n", ntohl(eh->spi), ntohl(eh->spi)); | ||
| 70 | |||
| 71 | return (eh != NULL) | ||
| 72 | && spi_match(espinfo->spis[0], espinfo->spis[1], | ||
| 73 | ntohl(eh->spi), | ||
| 74 | !!(espinfo->invflags & IP6T_ESP_INV_SPI)); | ||
| 75 | } | ||
| 76 | |||
| 77 | /* Called when user tries to insert an entry of this type. */ | ||
| 78 | static int | ||
| 79 | checkentry(const char *tablename, | ||
| 80 | const void *ip, | ||
| 81 | const struct xt_match *match, | ||
| 82 | void *matchinfo, | ||
| 83 | unsigned int matchinfosize, | ||
| 84 | unsigned int hook_mask) | ||
| 85 | { | ||
| 86 | const struct ip6t_esp *espinfo = matchinfo; | ||
| 87 | |||
| 88 | if (espinfo->invflags & ~IP6T_ESP_INV_MASK) { | ||
| 89 | DEBUGP("ip6t_esp: unknown flags %X\n", | ||
| 90 | espinfo->invflags); | ||
| 91 | return 0; | ||
| 92 | } | ||
| 93 | return 1; | ||
| 94 | } | ||
| 95 | |||
| 96 | static struct ip6t_match esp_match = { | ||
| 97 | .name = "esp", | ||
| 98 | .match = match, | ||
| 99 | .matchsize = sizeof(struct ip6t_esp), | ||
| 100 | .checkentry = checkentry, | ||
| 101 | .me = THIS_MODULE, | ||
| 102 | }; | ||
| 103 | |||
| 104 | static int __init ip6t_esp_init(void) | ||
| 105 | { | ||
| 106 | return ip6t_register_match(&esp_match); | ||
| 107 | } | ||
| 108 | |||
| 109 | static void __exit ip6t_esp_fini(void) | ||
| 110 | { | ||
| 111 | ip6t_unregister_match(&esp_match); | ||
| 112 | } | ||
| 113 | |||
| 114 | module_init(ip6t_esp_init); | ||
| 115 | module_exit(ip6t_esp_fini); | ||
diff --git a/net/ipv6/netfilter/ip6t_multiport.c b/net/ipv6/netfilter/ip6t_multiport.c deleted file mode 100644 index 10c48ba596d6..000000000000 --- a/net/ipv6/netfilter/ip6t_multiport.c +++ /dev/null | |||
| @@ -1,125 +0,0 @@ | |||
| 1 | /* Kernel module to match one of a list of TCP/UDP ports: ports are in | ||
| 2 | the same place so we can treat them as equal. */ | ||
| 3 | |||
| 4 | /* (C) 1999-2001 Paul `Rusty' Russell | ||
| 5 | * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #include <linux/module.h> | ||
| 13 | #include <linux/types.h> | ||
| 14 | #include <linux/udp.h> | ||
| 15 | #include <linux/skbuff.h> | ||
| 16 | #include <linux/in.h> | ||
| 17 | |||
| 18 | #include <linux/netfilter_ipv6/ip6t_multiport.h> | ||
| 19 | #include <linux/netfilter_ipv6/ip6_tables.h> | ||
| 20 | |||
| 21 | MODULE_LICENSE("GPL"); | ||
| 22 | MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>"); | ||
| 23 | MODULE_DESCRIPTION("ip6tables match for multiple ports"); | ||
| 24 | |||
| 25 | #if 0 | ||
| 26 | #define duprintf(format, args...) printk(format , ## args) | ||
| 27 | #else | ||
| 28 | #define duprintf(format, args...) | ||
| 29 | #endif | ||
| 30 | |||
| 31 | /* Returns 1 if the port is matched by the test, 0 otherwise. */ | ||
| 32 | static inline int | ||
| 33 | ports_match(const u_int16_t *portlist, enum ip6t_multiport_flags flags, | ||
| 34 | u_int8_t count, u_int16_t src, u_int16_t dst) | ||
| 35 | { | ||
| 36 | unsigned int i; | ||
| 37 | for (i=0; i<count; i++) { | ||
| 38 | if (flags != IP6T_MULTIPORT_DESTINATION | ||
| 39 | && portlist[i] == src) | ||
| 40 | return 1; | ||
| 41 | |||
| 42 | if (flags != IP6T_MULTIPORT_SOURCE | ||
| 43 | && portlist[i] == dst) | ||
| 44 | return 1; | ||
| 45 | } | ||
| 46 | |||
| 47 | return 0; | ||
| 48 | } | ||
| 49 | |||
| 50 | static int | ||
| 51 | match(const struct sk_buff *skb, | ||
| 52 | const struct net_device *in, | ||
| 53 | const struct net_device *out, | ||
| 54 | const struct xt_match *match, | ||
| 55 | const void *matchinfo, | ||
| 56 | int offset, | ||
| 57 | unsigned int protoff, | ||
| 58 | int *hotdrop) | ||
| 59 | { | ||
| 60 | u16 _ports[2], *pptr; | ||
| 61 | const struct ip6t_multiport *multiinfo = matchinfo; | ||
| 62 | |||
| 63 | /* Must not be a fragment. */ | ||
| 64 | if (offset) | ||
| 65 | return 0; | ||
| 66 | |||
| 67 | /* Must be big enough to read ports (both UDP and TCP have | ||
| 68 | them at the start). */ | ||
| 69 | pptr = skb_header_pointer(skb, protoff, sizeof(_ports), &_ports[0]); | ||
| 70 | if (pptr == NULL) { | ||
| 71 | /* We've been asked to examine this packet, and we | ||
| 72 | * can't. Hence, no choice but to drop. | ||
| 73 | */ | ||
| 74 | duprintf("ip6t_multiport:" | ||
| 75 | " Dropping evil offset=0 tinygram.\n"); | ||
| 76 | *hotdrop = 1; | ||
| 77 | return 0; | ||
| 78 | } | ||
| 79 | |||
| 80 | return ports_match(multiinfo->ports, | ||
| 81 | multiinfo->flags, multiinfo->count, | ||
| 82 | ntohs(pptr[0]), ntohs(pptr[1])); | ||
| 83 | } | ||
| 84 | |||
| 85 | /* Called when user tries to insert an entry of this type. */ | ||
| 86 | static int | ||
| 87 | checkentry(const char *tablename, | ||
| 88 | const void *info, | ||
| 89 | const struct xt_match *match, | ||
| 90 | void *matchinfo, | ||
| 91 | unsigned int matchsize, | ||
| 92 | unsigned int hook_mask) | ||
| 93 | { | ||
| 94 | const struct ip6t_ip6 *ip = info; | ||
| 95 | const struct ip6t_multiport *multiinfo = matchinfo; | ||
| 96 | |||
| 97 | /* Must specify proto == TCP/UDP, no unknown flags or bad count */ | ||
| 98 | return (ip->proto == IPPROTO_TCP || ip->proto == IPPROTO_UDP) | ||
| 99 | && !(ip->invflags & IP6T_INV_PROTO) | ||
| 100 | && (multiinfo->flags == IP6T_MULTIPORT_SOURCE | ||
| 101 | || multiinfo->flags == IP6T_MULTIPORT_DESTINATION | ||
| 102 | || multiinfo->flags == IP6T_MULTIPORT_EITHER) | ||
| 103 | && multiinfo->count <= IP6T_MULTI_PORTS; | ||
| 104 | } | ||
| 105 | |||
| 106 | static struct ip6t_match multiport_match = { | ||
| 107 | .name = "multiport", | ||
| 108 | .match = match, | ||
| 109 | .matchsize = sizeof(struct ip6t_multiport), | ||
| 110 | .checkentry = checkentry, | ||
| 111 | .me = THIS_MODULE, | ||
| 112 | }; | ||
| 113 | |||
| 114 | static int __init ip6t_multiport_init(void) | ||
| 115 | { | ||
| 116 | return ip6t_register_match(&multiport_match); | ||
| 117 | } | ||
| 118 | |||
| 119 | static void __exit ip6t_multiport_fini(void) | ||
| 120 | { | ||
| 121 | ip6t_unregister_match(&multiport_match); | ||
| 122 | } | ||
| 123 | |||
| 124 | module_init(ip6t_multiport_init); | ||
| 125 | module_exit(ip6t_multiport_fini); | ||
diff --git a/net/ipv6/xfrm6_input.c b/net/ipv6/xfrm6_input.c index cccf8b76f046..00cfdee18dca 100644 --- a/net/ipv6/xfrm6_input.c +++ b/net/ipv6/xfrm6_input.c | |||
| @@ -32,7 +32,7 @@ int xfrm6_rcv_spi(struct sk_buff *skb, u32 spi) | |||
| 32 | { | 32 | { |
| 33 | int err; | 33 | int err; |
| 34 | u32 seq; | 34 | u32 seq; |
| 35 | struct sec_decap_state xfrm_vec[XFRM_MAX_DEPTH]; | 35 | struct xfrm_state *xfrm_vec[XFRM_MAX_DEPTH]; |
| 36 | struct xfrm_state *x; | 36 | struct xfrm_state *x; |
| 37 | int xfrm_nr = 0; | 37 | int xfrm_nr = 0; |
| 38 | int decaps = 0; | 38 | int decaps = 0; |
| @@ -65,7 +65,7 @@ int xfrm6_rcv_spi(struct sk_buff *skb, u32 spi) | |||
| 65 | if (xfrm_state_check_expire(x)) | 65 | if (xfrm_state_check_expire(x)) |
| 66 | goto drop_unlock; | 66 | goto drop_unlock; |
| 67 | 67 | ||
| 68 | nexthdr = x->type->input(x, &(xfrm_vec[xfrm_nr].decap), skb); | 68 | nexthdr = x->type->input(x, skb); |
| 69 | if (nexthdr <= 0) | 69 | if (nexthdr <= 0) |
| 70 | goto drop_unlock; | 70 | goto drop_unlock; |
| 71 | 71 | ||
| @@ -79,7 +79,7 @@ int xfrm6_rcv_spi(struct sk_buff *skb, u32 spi) | |||
| 79 | 79 | ||
| 80 | spin_unlock(&x->lock); | 80 | spin_unlock(&x->lock); |
| 81 | 81 | ||
| 82 | xfrm_vec[xfrm_nr++].xvec = x; | 82 | xfrm_vec[xfrm_nr++] = x; |
| 83 | 83 | ||
| 84 | if (x->props.mode) { /* XXX */ | 84 | if (x->props.mode) { /* XXX */ |
| 85 | if (nexthdr != IPPROTO_IPV6) | 85 | if (nexthdr != IPPROTO_IPV6) |
| @@ -118,7 +118,8 @@ int xfrm6_rcv_spi(struct sk_buff *skb, u32 spi) | |||
| 118 | if (xfrm_nr + skb->sp->len > XFRM_MAX_DEPTH) | 118 | if (xfrm_nr + skb->sp->len > XFRM_MAX_DEPTH) |
| 119 | goto drop; | 119 | goto drop; |
| 120 | 120 | ||
| 121 | memcpy(skb->sp->x+skb->sp->len, xfrm_vec, xfrm_nr*sizeof(struct sec_decap_state)); | 121 | memcpy(skb->sp->xvec + skb->sp->len, xfrm_vec, |
| 122 | xfrm_nr * sizeof(xfrm_vec[0])); | ||
| 122 | skb->sp->len += xfrm_nr; | 123 | skb->sp->len += xfrm_nr; |
| 123 | skb->ip_summed = CHECKSUM_NONE; | 124 | skb->ip_summed = CHECKSUM_NONE; |
| 124 | 125 | ||
| @@ -149,7 +150,7 @@ drop_unlock: | |||
| 149 | xfrm_state_put(x); | 150 | xfrm_state_put(x); |
| 150 | drop: | 151 | drop: |
| 151 | while (--xfrm_nr >= 0) | 152 | while (--xfrm_nr >= 0) |
| 152 | xfrm_state_put(xfrm_vec[xfrm_nr].xvec); | 153 | xfrm_state_put(xfrm_vec[xfrm_nr]); |
| 153 | kfree_skb(skb); | 154 | kfree_skb(skb); |
| 154 | return -1; | 155 | return -1; |
| 155 | } | 156 | } |
diff --git a/net/ipv6/xfrm6_tunnel.c b/net/ipv6/xfrm6_tunnel.c index a8f6776c518d..d37768e5064f 100644 --- a/net/ipv6/xfrm6_tunnel.c +++ b/net/ipv6/xfrm6_tunnel.c | |||
| @@ -351,7 +351,7 @@ static int xfrm6_tunnel_output(struct xfrm_state *x, struct sk_buff *skb) | |||
| 351 | return 0; | 351 | return 0; |
| 352 | } | 352 | } |
| 353 | 353 | ||
| 354 | static int xfrm6_tunnel_input(struct xfrm_state *x, struct xfrm_decap_state *decap, struct sk_buff *skb) | 354 | static int xfrm6_tunnel_input(struct xfrm_state *x, struct sk_buff *skb) |
| 355 | { | 355 | { |
| 356 | return 0; | 356 | return 0; |
| 357 | } | 357 | } |
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig index 332acb37b385..e2893effdfaa 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig | |||
| @@ -231,6 +231,15 @@ config NETFILTER_XT_MATCH_DCCP | |||
| 231 | If you want to compile it as a module, say M here and read | 231 | If you want to compile it as a module, say M here and read |
| 232 | <file:Documentation/modules.txt>. If unsure, say `N'. | 232 | <file:Documentation/modules.txt>. If unsure, say `N'. |
| 233 | 233 | ||
| 234 | config NETFILTER_XT_MATCH_ESP | ||
| 235 | tristate '"ESP" match support' | ||
| 236 | depends on NETFILTER_XTABLES | ||
| 237 | help | ||
| 238 | This match extension allows you to match a range of SPIs | ||
| 239 | inside ESP header of IPSec packets. | ||
| 240 | |||
| 241 | To compile it as a module, choose M here. If unsure, say N. | ||
| 242 | |||
| 234 | config NETFILTER_XT_MATCH_HELPER | 243 | config NETFILTER_XT_MATCH_HELPER |
| 235 | tristate '"helper" match support' | 244 | tristate '"helper" match support' |
| 236 | depends on NETFILTER_XTABLES | 245 | depends on NETFILTER_XTABLES |
| @@ -289,6 +298,16 @@ config NETFILTER_XT_MATCH_POLICY | |||
| 289 | 298 | ||
| 290 | To compile it as a module, choose M here. If unsure, say N. | 299 | To compile it as a module, choose M here. If unsure, say N. |
| 291 | 300 | ||
| 301 | config NETFILTER_XT_MATCH_MULTIPORT | ||
| 302 | tristate "Multiple port match support" | ||
| 303 | depends on NETFILTER_XTABLES | ||
| 304 | help | ||
| 305 | Multiport matching allows you to match TCP or UDP packets based on | ||
| 306 | a series of source or destination ports: normally a rule can only | ||
| 307 | match a single range of ports. | ||
| 308 | |||
| 309 | To compile it as a module, choose M here. If unsure, say N. | ||
| 310 | |||
| 292 | config NETFILTER_XT_MATCH_PHYSDEV | 311 | config NETFILTER_XT_MATCH_PHYSDEV |
| 293 | tristate '"physdev" match support' | 312 | tristate '"physdev" match support' |
| 294 | depends on NETFILTER_XTABLES && BRIDGE_NETFILTER | 313 | depends on NETFILTER_XTABLES && BRIDGE_NETFILTER |
diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile index 9558727f5e79..95b7e416512d 100644 --- a/net/netfilter/Makefile +++ b/net/netfilter/Makefile | |||
| @@ -35,11 +35,13 @@ obj-$(CONFIG_NETFILTER_XT_MATCH_CONNBYTES) += xt_connbytes.o | |||
| 35 | obj-$(CONFIG_NETFILTER_XT_MATCH_CONNMARK) += xt_connmark.o | 35 | obj-$(CONFIG_NETFILTER_XT_MATCH_CONNMARK) += xt_connmark.o |
| 36 | obj-$(CONFIG_NETFILTER_XT_MATCH_CONNTRACK) += xt_conntrack.o | 36 | obj-$(CONFIG_NETFILTER_XT_MATCH_CONNTRACK) += xt_conntrack.o |
| 37 | obj-$(CONFIG_NETFILTER_XT_MATCH_DCCP) += xt_dccp.o | 37 | obj-$(CONFIG_NETFILTER_XT_MATCH_DCCP) += xt_dccp.o |
| 38 | obj-$(CONFIG_NETFILTER_XT_MATCH_ESP) += xt_esp.o | ||
| 38 | obj-$(CONFIG_NETFILTER_XT_MATCH_HELPER) += xt_helper.o | 39 | obj-$(CONFIG_NETFILTER_XT_MATCH_HELPER) += xt_helper.o |
| 39 | obj-$(CONFIG_NETFILTER_XT_MATCH_LENGTH) += xt_length.o | 40 | obj-$(CONFIG_NETFILTER_XT_MATCH_LENGTH) += xt_length.o |
| 40 | obj-$(CONFIG_NETFILTER_XT_MATCH_LIMIT) += xt_limit.o | 41 | obj-$(CONFIG_NETFILTER_XT_MATCH_LIMIT) += xt_limit.o |
| 41 | obj-$(CONFIG_NETFILTER_XT_MATCH_MAC) += xt_mac.o | 42 | obj-$(CONFIG_NETFILTER_XT_MATCH_MAC) += xt_mac.o |
| 42 | obj-$(CONFIG_NETFILTER_XT_MATCH_MARK) += xt_mark.o | 43 | obj-$(CONFIG_NETFILTER_XT_MATCH_MARK) += xt_mark.o |
| 44 | obj-$(CONFIG_NETFILTER_XT_MATCH_MULTIPORT) += xt_multiport.o | ||
| 43 | obj-$(CONFIG_NETFILTER_XT_MATCH_POLICY) += xt_policy.o | 45 | obj-$(CONFIG_NETFILTER_XT_MATCH_POLICY) += xt_policy.o |
| 44 | obj-$(CONFIG_NETFILTER_XT_MATCH_PKTTYPE) += xt_pkttype.o | 46 | obj-$(CONFIG_NETFILTER_XT_MATCH_PKTTYPE) += xt_pkttype.o |
| 45 | obj-$(CONFIG_NETFILTER_XT_MATCH_REALM) += xt_realm.o | 47 | obj-$(CONFIG_NETFILTER_XT_MATCH_REALM) += xt_realm.o |
diff --git a/net/netfilter/nf_conntrack_netlink.c b/net/netfilter/nf_conntrack_netlink.c index 0e0e9d7b34c8..bd10eb944b65 100644 --- a/net/netfilter/nf_conntrack_netlink.c +++ b/net/netfilter/nf_conntrack_netlink.c | |||
| @@ -1022,7 +1022,7 @@ ctnetlink_change_conntrack(struct nf_conn *ct, struct nfattr *cda[]) | |||
| 1022 | return err; | 1022 | return err; |
| 1023 | } | 1023 | } |
| 1024 | 1024 | ||
| 1025 | #if defined(CONFIG_IP_NF_CONNTRACK_MARK) | 1025 | #if defined(CONFIG_NF_CONNTRACK_MARK) |
| 1026 | if (cda[CTA_MARK-1]) | 1026 | if (cda[CTA_MARK-1]) |
| 1027 | ct->mark = ntohl(*(u_int32_t *)NFA_DATA(cda[CTA_MARK-1])); | 1027 | ct->mark = ntohl(*(u_int32_t *)NFA_DATA(cda[CTA_MARK-1])); |
| 1028 | #endif | 1028 | #endif |
| @@ -1062,7 +1062,7 @@ ctnetlink_create_conntrack(struct nfattr *cda[], | |||
| 1062 | return err; | 1062 | return err; |
| 1063 | } | 1063 | } |
| 1064 | 1064 | ||
| 1065 | #if defined(CONFIG_IP_NF_CONNTRACK_MARK) | 1065 | #if defined(CONFIG_NF_CONNTRACK_MARK) |
| 1066 | if (cda[CTA_MARK-1]) | 1066 | if (cda[CTA_MARK-1]) |
| 1067 | ct->mark = ntohl(*(u_int32_t *)NFA_DATA(cda[CTA_MARK-1])); | 1067 | ct->mark = ntohl(*(u_int32_t *)NFA_DATA(cda[CTA_MARK-1])); |
| 1068 | #endif | 1068 | #endif |
| @@ -1687,7 +1687,7 @@ static void __exit ctnetlink_exit(void) | |||
| 1687 | printk("ctnetlink: unregistering from nfnetlink.\n"); | 1687 | printk("ctnetlink: unregistering from nfnetlink.\n"); |
| 1688 | 1688 | ||
| 1689 | #ifdef CONFIG_NF_CONNTRACK_EVENTS | 1689 | #ifdef CONFIG_NF_CONNTRACK_EVENTS |
| 1690 | nf_conntrack_unregister_notifier(&ctnl_notifier_exp); | 1690 | nf_conntrack_expect_unregister_notifier(&ctnl_notifier_exp); |
| 1691 | nf_conntrack_unregister_notifier(&ctnl_notifier); | 1691 | nf_conntrack_unregister_notifier(&ctnl_notifier); |
| 1692 | #endif | 1692 | #endif |
| 1693 | 1693 | ||
diff --git a/net/netfilter/x_tables.c b/net/netfilter/x_tables.c index a657ab5394c3..feb8a9e066b0 100644 --- a/net/netfilter/x_tables.c +++ b/net/netfilter/x_tables.c | |||
| @@ -38,6 +38,7 @@ struct xt_af { | |||
| 38 | struct list_head match; | 38 | struct list_head match; |
| 39 | struct list_head target; | 39 | struct list_head target; |
| 40 | struct list_head tables; | 40 | struct list_head tables; |
| 41 | struct mutex compat_mutex; | ||
| 41 | }; | 42 | }; |
| 42 | 43 | ||
| 43 | static struct xt_af *xt; | 44 | static struct xt_af *xt; |
| @@ -272,6 +273,54 @@ int xt_check_match(const struct xt_match *match, unsigned short family, | |||
| 272 | } | 273 | } |
| 273 | EXPORT_SYMBOL_GPL(xt_check_match); | 274 | EXPORT_SYMBOL_GPL(xt_check_match); |
| 274 | 275 | ||
| 276 | #ifdef CONFIG_COMPAT | ||
| 277 | int xt_compat_match(void *match, void **dstptr, int *size, int convert) | ||
| 278 | { | ||
| 279 | struct xt_match *m; | ||
| 280 | struct compat_xt_entry_match *pcompat_m; | ||
| 281 | struct xt_entry_match *pm; | ||
| 282 | u_int16_t msize; | ||
| 283 | int off, ret; | ||
| 284 | |||
| 285 | ret = 0; | ||
| 286 | m = ((struct xt_entry_match *)match)->u.kernel.match; | ||
| 287 | off = XT_ALIGN(m->matchsize) - COMPAT_XT_ALIGN(m->matchsize); | ||
| 288 | switch (convert) { | ||
| 289 | case COMPAT_TO_USER: | ||
| 290 | pm = (struct xt_entry_match *)match; | ||
| 291 | msize = pm->u.user.match_size; | ||
| 292 | if (__copy_to_user(*dstptr, pm, msize)) { | ||
| 293 | ret = -EFAULT; | ||
| 294 | break; | ||
| 295 | } | ||
| 296 | msize -= off; | ||
| 297 | if (put_user(msize, (u_int16_t *)*dstptr)) | ||
| 298 | ret = -EFAULT; | ||
| 299 | *size -= off; | ||
| 300 | *dstptr += msize; | ||
| 301 | break; | ||
| 302 | case COMPAT_FROM_USER: | ||
| 303 | pcompat_m = (struct compat_xt_entry_match *)match; | ||
| 304 | pm = (struct xt_entry_match *)*dstptr; | ||
| 305 | msize = pcompat_m->u.user.match_size; | ||
| 306 | memcpy(pm, pcompat_m, msize); | ||
| 307 | msize += off; | ||
| 308 | pm->u.user.match_size = msize; | ||
| 309 | *size += off; | ||
| 310 | *dstptr += msize; | ||
| 311 | break; | ||
| 312 | case COMPAT_CALC_SIZE: | ||
| 313 | *size += off; | ||
| 314 | break; | ||
| 315 | default: | ||
| 316 | ret = -ENOPROTOOPT; | ||
| 317 | break; | ||
| 318 | } | ||
| 319 | return ret; | ||
| 320 | } | ||
| 321 | EXPORT_SYMBOL_GPL(xt_compat_match); | ||
| 322 | #endif | ||
| 323 | |||
| 275 | int xt_check_target(const struct xt_target *target, unsigned short family, | 324 | int xt_check_target(const struct xt_target *target, unsigned short family, |
| 276 | unsigned int size, const char *table, unsigned int hook_mask, | 325 | unsigned int size, const char *table, unsigned int hook_mask, |
| 277 | unsigned short proto, int inv_proto) | 326 | unsigned short proto, int inv_proto) |
| @@ -301,6 +350,54 @@ int xt_check_target(const struct xt_target *target, unsigned short family, | |||
| 301 | } | 350 | } |
| 302 | EXPORT_SYMBOL_GPL(xt_check_target); | 351 | EXPORT_SYMBOL_GPL(xt_check_target); |
| 303 | 352 | ||
| 353 | #ifdef CONFIG_COMPAT | ||
| 354 | int xt_compat_target(void *target, void **dstptr, int *size, int convert) | ||
| 355 | { | ||
| 356 | struct xt_target *t; | ||
| 357 | struct compat_xt_entry_target *pcompat; | ||
| 358 | struct xt_entry_target *pt; | ||
| 359 | u_int16_t tsize; | ||
| 360 | int off, ret; | ||
| 361 | |||
| 362 | ret = 0; | ||
| 363 | t = ((struct xt_entry_target *)target)->u.kernel.target; | ||
| 364 | off = XT_ALIGN(t->targetsize) - COMPAT_XT_ALIGN(t->targetsize); | ||
| 365 | switch (convert) { | ||
| 366 | case COMPAT_TO_USER: | ||
| 367 | pt = (struct xt_entry_target *)target; | ||
| 368 | tsize = pt->u.user.target_size; | ||
| 369 | if (__copy_to_user(*dstptr, pt, tsize)) { | ||
| 370 | ret = -EFAULT; | ||
| 371 | break; | ||
| 372 | } | ||
| 373 | tsize -= off; | ||
| 374 | if (put_user(tsize, (u_int16_t *)*dstptr)) | ||
| 375 | ret = -EFAULT; | ||
| 376 | *size -= off; | ||
| 377 | *dstptr += tsize; | ||
| 378 | break; | ||
| 379 | case COMPAT_FROM_USER: | ||
| 380 | pcompat = (struct compat_xt_entry_target *)target; | ||
| 381 | pt = (struct xt_entry_target *)*dstptr; | ||
| 382 | tsize = pcompat->u.user.target_size; | ||
| 383 | memcpy(pt, pcompat, tsize); | ||
| 384 | tsize += off; | ||
| 385 | pt->u.user.target_size = tsize; | ||
| 386 | *size += off; | ||
| 387 | *dstptr += tsize; | ||
| 388 | break; | ||
| 389 | case COMPAT_CALC_SIZE: | ||
| 390 | *size += off; | ||
| 391 | break; | ||
| 392 | default: | ||
| 393 | ret = -ENOPROTOOPT; | ||
| 394 | break; | ||
| 395 | } | ||
| 396 | return ret; | ||
| 397 | } | ||
| 398 | EXPORT_SYMBOL_GPL(xt_compat_target); | ||
| 399 | #endif | ||
| 400 | |||
| 304 | struct xt_table_info *xt_alloc_table_info(unsigned int size) | 401 | struct xt_table_info *xt_alloc_table_info(unsigned int size) |
| 305 | { | 402 | { |
| 306 | struct xt_table_info *newinfo; | 403 | struct xt_table_info *newinfo; |
| @@ -371,6 +468,19 @@ void xt_table_unlock(struct xt_table *table) | |||
| 371 | } | 468 | } |
| 372 | EXPORT_SYMBOL_GPL(xt_table_unlock); | 469 | EXPORT_SYMBOL_GPL(xt_table_unlock); |
| 373 | 470 | ||
| 471 | #ifdef CONFIG_COMPAT | ||
| 472 | void xt_compat_lock(int af) | ||
| 473 | { | ||
| 474 | mutex_lock(&xt[af].compat_mutex); | ||
| 475 | } | ||
| 476 | EXPORT_SYMBOL_GPL(xt_compat_lock); | ||
| 477 | |||
| 478 | void xt_compat_unlock(int af) | ||
| 479 | { | ||
| 480 | mutex_unlock(&xt[af].compat_mutex); | ||
| 481 | } | ||
| 482 | EXPORT_SYMBOL_GPL(xt_compat_unlock); | ||
| 483 | #endif | ||
| 374 | 484 | ||
| 375 | struct xt_table_info * | 485 | struct xt_table_info * |
| 376 | xt_replace_table(struct xt_table *table, | 486 | xt_replace_table(struct xt_table *table, |
| @@ -671,6 +781,9 @@ static int __init xt_init(void) | |||
| 671 | 781 | ||
| 672 | for (i = 0; i < NPROTO; i++) { | 782 | for (i = 0; i < NPROTO; i++) { |
| 673 | mutex_init(&xt[i].mutex); | 783 | mutex_init(&xt[i].mutex); |
| 784 | #ifdef CONFIG_COMPAT | ||
| 785 | mutex_init(&xt[i].compat_mutex); | ||
| 786 | #endif | ||
| 674 | INIT_LIST_HEAD(&xt[i].target); | 787 | INIT_LIST_HEAD(&xt[i].target); |
| 675 | INIT_LIST_HEAD(&xt[i].match); | 788 | INIT_LIST_HEAD(&xt[i].match); |
| 676 | INIT_LIST_HEAD(&xt[i].tables); | 789 | INIT_LIST_HEAD(&xt[i].tables); |
diff --git a/net/ipv4/netfilter/ipt_esp.c b/net/netfilter/xt_esp.c index 3840b417a3c5..9dad6281e0c1 100644 --- a/net/ipv4/netfilter/ipt_esp.c +++ b/net/netfilter/xt_esp.c | |||
| @@ -9,16 +9,22 @@ | |||
| 9 | 9 | ||
| 10 | #include <linux/module.h> | 10 | #include <linux/module.h> |
| 11 | #include <linux/skbuff.h> | 11 | #include <linux/skbuff.h> |
| 12 | #include <linux/in.h> | ||
| 12 | #include <linux/ip.h> | 13 | #include <linux/ip.h> |
| 13 | 14 | ||
| 14 | #include <linux/netfilter_ipv4/ipt_esp.h> | 15 | #include <linux/netfilter/xt_esp.h> |
| 16 | #include <linux/netfilter/x_tables.h> | ||
| 17 | |||
| 15 | #include <linux/netfilter_ipv4/ip_tables.h> | 18 | #include <linux/netfilter_ipv4/ip_tables.h> |
| 19 | #include <linux/netfilter_ipv6/ip6_tables.h> | ||
| 16 | 20 | ||
| 17 | MODULE_LICENSE("GPL"); | 21 | MODULE_LICENSE("GPL"); |
| 18 | MODULE_AUTHOR("Yon Uriarte <yon@astaro.de>"); | 22 | MODULE_AUTHOR("Yon Uriarte <yon@astaro.de>"); |
| 19 | MODULE_DESCRIPTION("iptables ESP SPI match module"); | 23 | MODULE_DESCRIPTION("x_tables ESP SPI match module"); |
| 24 | MODULE_ALIAS("ipt_esp"); | ||
| 25 | MODULE_ALIAS("ip6t_esp"); | ||
| 20 | 26 | ||
| 21 | #ifdef DEBUG_CONNTRACK | 27 | #if 0 |
| 22 | #define duprintf(format, args...) printk(format , ## args) | 28 | #define duprintf(format, args...) printk(format , ## args) |
| 23 | #else | 29 | #else |
| 24 | #define duprintf(format, args...) | 30 | #define duprintf(format, args...) |
| @@ -28,11 +34,11 @@ MODULE_DESCRIPTION("iptables ESP SPI match module"); | |||
| 28 | static inline int | 34 | static inline int |
| 29 | spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, int invert) | 35 | spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, int invert) |
| 30 | { | 36 | { |
| 31 | int r=0; | 37 | int r = 0; |
| 32 | duprintf("esp spi_match:%c 0x%x <= 0x%x <= 0x%x",invert? '!':' ', | 38 | duprintf("esp spi_match:%c 0x%x <= 0x%x <= 0x%x", invert ? '!' : ' ', |
| 33 | min,spi,max); | 39 | min, spi, max); |
| 34 | r=(spi >= min && spi <= max) ^ invert; | 40 | r = (spi >= min && spi <= max) ^ invert; |
| 35 | duprintf(" result %s\n",r? "PASS" : "FAILED"); | 41 | duprintf(" result %s\n", r ? "PASS" : "FAILED"); |
| 36 | return r; | 42 | return r; |
| 37 | } | 43 | } |
| 38 | 44 | ||
| @@ -47,14 +53,13 @@ match(const struct sk_buff *skb, | |||
| 47 | int *hotdrop) | 53 | int *hotdrop) |
| 48 | { | 54 | { |
| 49 | struct ip_esp_hdr _esp, *eh; | 55 | struct ip_esp_hdr _esp, *eh; |
| 50 | const struct ipt_esp *espinfo = matchinfo; | 56 | const struct xt_esp *espinfo = matchinfo; |
| 51 | 57 | ||
| 52 | /* Must not be a fragment. */ | 58 | /* Must not be a fragment. */ |
| 53 | if (offset) | 59 | if (offset) |
| 54 | return 0; | 60 | return 0; |
| 55 | 61 | ||
| 56 | eh = skb_header_pointer(skb, protoff, | 62 | eh = skb_header_pointer(skb, protoff, sizeof(_esp), &_esp); |
| 57 | sizeof(_esp), &_esp); | ||
| 58 | if (eh == NULL) { | 63 | if (eh == NULL) { |
| 59 | /* We've been asked to examine this packet, and we | 64 | /* We've been asked to examine this packet, and we |
| 60 | * can't. Hence, no choice but to drop. | 65 | * can't. Hence, no choice but to drop. |
| @@ -64,9 +69,8 @@ match(const struct sk_buff *skb, | |||
| 64 | return 0; | 69 | return 0; |
| 65 | } | 70 | } |
| 66 | 71 | ||
| 67 | return spi_match(espinfo->spis[0], espinfo->spis[1], | 72 | return spi_match(espinfo->spis[0], espinfo->spis[1], ntohl(eh->spi), |
| 68 | ntohl(eh->spi), | 73 | !!(espinfo->invflags & XT_ESP_INV_SPI)); |
| 69 | !!(espinfo->invflags & IPT_ESP_INV_SPI)); | ||
| 70 | } | 74 | } |
| 71 | 75 | ||
| 72 | /* Called when user tries to insert an entry of this type. */ | 76 | /* Called when user tries to insert an entry of this type. */ |
| @@ -78,34 +82,55 @@ checkentry(const char *tablename, | |||
| 78 | unsigned int matchinfosize, | 82 | unsigned int matchinfosize, |
| 79 | unsigned int hook_mask) | 83 | unsigned int hook_mask) |
| 80 | { | 84 | { |
| 81 | const struct ipt_esp *espinfo = matchinfo; | 85 | const struct xt_esp *espinfo = matchinfo; |
| 82 | 86 | ||
| 83 | /* Must specify no unknown invflags */ | 87 | if (espinfo->invflags & ~XT_ESP_INV_MASK) { |
| 84 | if (espinfo->invflags & ~IPT_ESP_INV_MASK) { | 88 | duprintf("xt_esp: unknown flags %X\n", espinfo->invflags); |
| 85 | duprintf("ipt_esp: unknown flags %X\n", espinfo->invflags); | ||
| 86 | return 0; | 89 | return 0; |
| 87 | } | 90 | } |
| 91 | |||
| 88 | return 1; | 92 | return 1; |
| 89 | } | 93 | } |
| 90 | 94 | ||
| 91 | static struct ipt_match esp_match = { | 95 | static struct xt_match esp_match = { |
| 92 | .name = "esp", | 96 | .name = "esp", |
| 93 | .match = match, | 97 | .family = AF_INET, |
| 94 | .matchsize = sizeof(struct ipt_esp), | ||
| 95 | .proto = IPPROTO_ESP, | 98 | .proto = IPPROTO_ESP, |
| 96 | .checkentry = checkentry, | 99 | .match = &match, |
| 100 | .matchsize = sizeof(struct xt_esp), | ||
| 101 | .checkentry = &checkentry, | ||
| 97 | .me = THIS_MODULE, | 102 | .me = THIS_MODULE, |
| 98 | }; | 103 | }; |
| 99 | 104 | ||
| 100 | static int __init ipt_esp_init(void) | 105 | static struct xt_match esp6_match = { |
| 106 | .name = "esp", | ||
| 107 | .family = AF_INET6, | ||
| 108 | .proto = IPPROTO_ESP, | ||
| 109 | .match = &match, | ||
| 110 | .matchsize = sizeof(struct xt_esp), | ||
| 111 | .checkentry = &checkentry, | ||
| 112 | .me = THIS_MODULE, | ||
| 113 | }; | ||
| 114 | |||
| 115 | static int __init xt_esp_init(void) | ||
| 101 | { | 116 | { |
| 102 | return ipt_register_match(&esp_match); | 117 | int ret; |
| 118 | ret = xt_register_match(&esp_match); | ||
| 119 | if (ret) | ||
| 120 | return ret; | ||
| 121 | |||
| 122 | ret = xt_register_match(&esp6_match); | ||
| 123 | if (ret) | ||
| 124 | xt_unregister_match(&esp_match); | ||
| 125 | |||
| 126 | return ret; | ||
| 103 | } | 127 | } |
| 104 | 128 | ||
| 105 | static void __exit ipt_esp_fini(void) | 129 | static void __exit xt_esp_cleanup(void) |
| 106 | { | 130 | { |
| 107 | ipt_unregister_match(&esp_match); | 131 | xt_unregister_match(&esp_match); |
| 132 | xt_unregister_match(&esp6_match); | ||
| 108 | } | 133 | } |
| 109 | 134 | ||
| 110 | module_init(ipt_esp_init); | 135 | module_init(xt_esp_init); |
| 111 | module_exit(ipt_esp_fini); | 136 | module_exit(xt_esp_cleanup); |
diff --git a/net/netfilter/xt_multiport.c b/net/netfilter/xt_multiport.c new file mode 100644 index 000000000000..b56cd2baaac2 --- /dev/null +++ b/net/netfilter/xt_multiport.c | |||
| @@ -0,0 +1,314 @@ | |||
| 1 | /* Kernel module to match one of a list of TCP/UDP ports: ports are in | ||
| 2 | the same place so we can treat them as equal. */ | ||
| 3 | |||
| 4 | /* (C) 1999-2001 Paul `Rusty' Russell | ||
| 5 | * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #include <linux/module.h> | ||
| 13 | #include <linux/types.h> | ||
| 14 | #include <linux/udp.h> | ||
| 15 | #include <linux/skbuff.h> | ||
| 16 | #include <linux/in.h> | ||
| 17 | |||
| 18 | #include <linux/netfilter/xt_multiport.h> | ||
| 19 | #include <linux/netfilter/x_tables.h> | ||
| 20 | #include <linux/netfilter_ipv4/ip_tables.h> | ||
| 21 | #include <linux/netfilter_ipv6/ip6_tables.h> | ||
| 22 | |||
| 23 | MODULE_LICENSE("GPL"); | ||
| 24 | MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>"); | ||
| 25 | MODULE_DESCRIPTION("x_tables multiple port match module"); | ||
| 26 | MODULE_ALIAS("ipt_multiport"); | ||
| 27 | MODULE_ALIAS("ip6t_multiport"); | ||
| 28 | |||
| 29 | #if 0 | ||
| 30 | #define duprintf(format, args...) printk(format , ## args) | ||
| 31 | #else | ||
| 32 | #define duprintf(format, args...) | ||
| 33 | #endif | ||
| 34 | |||
| 35 | /* Returns 1 if the port is matched by the test, 0 otherwise. */ | ||
| 36 | static inline int | ||
| 37 | ports_match(const u_int16_t *portlist, enum xt_multiport_flags flags, | ||
| 38 | u_int8_t count, u_int16_t src, u_int16_t dst) | ||
| 39 | { | ||
| 40 | unsigned int i; | ||
| 41 | for (i = 0; i < count; i++) { | ||
| 42 | if (flags != XT_MULTIPORT_DESTINATION && portlist[i] == src) | ||
| 43 | return 1; | ||
| 44 | |||
| 45 | if (flags != XT_MULTIPORT_SOURCE && portlist[i] == dst) | ||
| 46 | return 1; | ||
| 47 | } | ||
| 48 | |||
| 49 | return 0; | ||
| 50 | } | ||
| 51 | |||
| 52 | /* Returns 1 if the port is matched by the test, 0 otherwise. */ | ||
| 53 | static inline int | ||
| 54 | ports_match_v1(const struct xt_multiport_v1 *minfo, | ||
| 55 | u_int16_t src, u_int16_t dst) | ||
| 56 | { | ||
| 57 | unsigned int i; | ||
| 58 | u_int16_t s, e; | ||
| 59 | |||
| 60 | for (i = 0; i < minfo->count; i++) { | ||
| 61 | s = minfo->ports[i]; | ||
| 62 | |||
| 63 | if (minfo->pflags[i]) { | ||
| 64 | /* range port matching */ | ||
| 65 | e = minfo->ports[++i]; | ||
| 66 | duprintf("src or dst matches with %d-%d?\n", s, e); | ||
| 67 | |||
| 68 | if (minfo->flags == XT_MULTIPORT_SOURCE | ||
| 69 | && src >= s && src <= e) | ||
| 70 | return 1 ^ minfo->invert; | ||
| 71 | if (minfo->flags == XT_MULTIPORT_DESTINATION | ||
| 72 | && dst >= s && dst <= e) | ||
| 73 | return 1 ^ minfo->invert; | ||
| 74 | if (minfo->flags == XT_MULTIPORT_EITHER | ||
| 75 | && ((dst >= s && dst <= e) | ||
| 76 | || (src >= s && src <= e))) | ||
| 77 | return 1 ^ minfo->invert; | ||
| 78 | } else { | ||
| 79 | /* exact port matching */ | ||
| 80 | duprintf("src or dst matches with %d?\n", s); | ||
| 81 | |||
| 82 | if (minfo->flags == XT_MULTIPORT_SOURCE | ||
| 83 | && src == s) | ||
| 84 | return 1 ^ minfo->invert; | ||
| 85 | if (minfo->flags == XT_MULTIPORT_DESTINATION | ||
| 86 | && dst == s) | ||
| 87 | return 1 ^ minfo->invert; | ||
| 88 | if (minfo->flags == XT_MULTIPORT_EITHER | ||
| 89 | && (src == s || dst == s)) | ||
| 90 | return 1 ^ minfo->invert; | ||
| 91 | } | ||
| 92 | } | ||
| 93 | |||
| 94 | return minfo->invert; | ||
| 95 | } | ||
| 96 | |||
| 97 | static int | ||
| 98 | match(const struct sk_buff *skb, | ||
| 99 | const struct net_device *in, | ||
| 100 | const struct net_device *out, | ||
| 101 | const struct xt_match *match, | ||
| 102 | const void *matchinfo, | ||
| 103 | int offset, | ||
| 104 | unsigned int protoff, | ||
| 105 | int *hotdrop) | ||
| 106 | { | ||
| 107 | u16 _ports[2], *pptr; | ||
| 108 | const struct xt_multiport *multiinfo = matchinfo; | ||
| 109 | |||
| 110 | if (offset) | ||
| 111 | return 0; | ||
| 112 | |||
| 113 | pptr = skb_header_pointer(skb, protoff, sizeof(_ports), _ports); | ||
| 114 | if (pptr == NULL) { | ||
| 115 | /* We've been asked to examine this packet, and we | ||
| 116 | * can't. Hence, no choice but to drop. | ||
| 117 | */ | ||
| 118 | duprintf("xt_multiport: Dropping evil offset=0 tinygram.\n"); | ||
| 119 | *hotdrop = 1; | ||
| 120 | return 0; | ||
| 121 | } | ||
| 122 | |||
| 123 | return ports_match(multiinfo->ports, | ||
| 124 | multiinfo->flags, multiinfo->count, | ||
| 125 | ntohs(pptr[0]), ntohs(pptr[1])); | ||
| 126 | } | ||
| 127 | |||
| 128 | static int | ||
| 129 | match_v1(const struct sk_buff *skb, | ||
| 130 | const struct net_device *in, | ||
| 131 | const struct net_device *out, | ||
| 132 | const struct xt_match *match, | ||
| 133 | const void *matchinfo, | ||
| 134 | int offset, | ||
| 135 | unsigned int protoff, | ||
| 136 | int *hotdrop) | ||
| 137 | { | ||
| 138 | u16 _ports[2], *pptr; | ||
| 139 | const struct xt_multiport_v1 *multiinfo = matchinfo; | ||
| 140 | |||
| 141 | if (offset) | ||
| 142 | return 0; | ||
| 143 | |||
| 144 | pptr = skb_header_pointer(skb, protoff, sizeof(_ports), _ports); | ||
| 145 | if (pptr == NULL) { | ||
| 146 | /* We've been asked to examine this packet, and we | ||
| 147 | * can't. Hence, no choice but to drop. | ||
| 148 | */ | ||
| 149 | duprintf("xt_multiport: Dropping evil offset=0 tinygram.\n"); | ||
| 150 | *hotdrop = 1; | ||
| 151 | return 0; | ||
| 152 | } | ||
| 153 | |||
| 154 | return ports_match_v1(multiinfo, ntohs(pptr[0]), ntohs(pptr[1])); | ||
| 155 | } | ||
| 156 | |||
| 157 | static inline int | ||
| 158 | check(u_int16_t proto, | ||
| 159 | u_int8_t ip_invflags, | ||
| 160 | u_int8_t match_flags, | ||
| 161 | u_int8_t count) | ||
| 162 | { | ||
| 163 | /* Must specify proto == TCP/UDP, no unknown flags or bad count */ | ||
| 164 | return (proto == IPPROTO_TCP || proto == IPPROTO_UDP) | ||
| 165 | && !(ip_invflags & XT_INV_PROTO) | ||
| 166 | && (match_flags == XT_MULTIPORT_SOURCE | ||
| 167 | || match_flags == XT_MULTIPORT_DESTINATION | ||
| 168 | || match_flags == XT_MULTIPORT_EITHER) | ||
| 169 | && count <= XT_MULTI_PORTS; | ||
| 170 | } | ||
| 171 | |||
| 172 | /* Called when user tries to insert an entry of this type. */ | ||
| 173 | static int | ||
| 174 | checkentry(const char *tablename, | ||
| 175 | const void *info, | ||
| 176 | const struct xt_match *match, | ||
| 177 | void *matchinfo, | ||
| 178 | unsigned int matchsize, | ||
| 179 | unsigned int hook_mask) | ||
| 180 | { | ||
| 181 | const struct ipt_ip *ip = info; | ||
| 182 | const struct xt_multiport *multiinfo = matchinfo; | ||
| 183 | |||
| 184 | return check(ip->proto, ip->invflags, multiinfo->flags, | ||
| 185 | multiinfo->count); | ||
| 186 | } | ||
| 187 | |||
| 188 | static int | ||
| 189 | checkentry_v1(const char *tablename, | ||
| 190 | const void *info, | ||
| 191 | const struct xt_match *match, | ||
| 192 | void *matchinfo, | ||
| 193 | unsigned int matchsize, | ||
| 194 | unsigned int hook_mask) | ||
| 195 | { | ||
| 196 | const struct ipt_ip *ip = info; | ||
| 197 | const struct xt_multiport_v1 *multiinfo = matchinfo; | ||
| 198 | |||
| 199 | return check(ip->proto, ip->invflags, multiinfo->flags, | ||
| 200 | multiinfo->count); | ||
| 201 | } | ||
| 202 | |||
| 203 | static int | ||
| 204 | checkentry6(const char *tablename, | ||
| 205 | const void *info, | ||
| 206 | const struct xt_match *match, | ||
| 207 | void *matchinfo, | ||
| 208 | unsigned int matchsize, | ||
| 209 | unsigned int hook_mask) | ||
| 210 | { | ||
| 211 | const struct ip6t_ip6 *ip = info; | ||
| 212 | const struct xt_multiport *multiinfo = matchinfo; | ||
| 213 | |||
| 214 | return check(ip->proto, ip->invflags, multiinfo->flags, | ||
| 215 | multiinfo->count); | ||
| 216 | } | ||
| 217 | |||
| 218 | static int | ||
| 219 | checkentry6_v1(const char *tablename, | ||
| 220 | const void *info, | ||
| 221 | const struct xt_match *match, | ||
| 222 | void *matchinfo, | ||
| 223 | unsigned int matchsize, | ||
| 224 | unsigned int hook_mask) | ||
| 225 | { | ||
| 226 | const struct ip6t_ip6 *ip = info; | ||
| 227 | const struct xt_multiport_v1 *multiinfo = matchinfo; | ||
| 228 | |||
| 229 | return check(ip->proto, ip->invflags, multiinfo->flags, | ||
| 230 | multiinfo->count); | ||
| 231 | } | ||
| 232 | |||
| 233 | static struct xt_match multiport_match = { | ||
| 234 | .name = "multiport", | ||
| 235 | .revision = 0, | ||
| 236 | .matchsize = sizeof(struct xt_multiport), | ||
| 237 | .match = &match, | ||
| 238 | .checkentry = &checkentry, | ||
| 239 | .family = AF_INET, | ||
| 240 | .me = THIS_MODULE, | ||
| 241 | }; | ||
| 242 | |||
| 243 | static struct xt_match multiport_match_v1 = { | ||
| 244 | .name = "multiport", | ||
| 245 | .revision = 1, | ||
| 246 | .matchsize = sizeof(struct xt_multiport_v1), | ||
| 247 | .match = &match_v1, | ||
| 248 | .checkentry = &checkentry_v1, | ||
| 249 | .family = AF_INET, | ||
| 250 | .me = THIS_MODULE, | ||
| 251 | }; | ||
| 252 | |||
| 253 | static struct xt_match multiport6_match = { | ||
| 254 | .name = "multiport", | ||
| 255 | .revision = 0, | ||
| 256 | .matchsize = sizeof(struct xt_multiport), | ||
| 257 | .match = &match, | ||
| 258 | .checkentry = &checkentry6, | ||
| 259 | .family = AF_INET6, | ||
| 260 | .me = THIS_MODULE, | ||
| 261 | }; | ||
| 262 | |||
| 263 | static struct xt_match multiport6_match_v1 = { | ||
| 264 | .name = "multiport", | ||
| 265 | .revision = 1, | ||
| 266 | .matchsize = sizeof(struct xt_multiport_v1), | ||
| 267 | .match = &match_v1, | ||
| 268 | .checkentry = &checkentry6_v1, | ||
| 269 | .family = AF_INET6, | ||
| 270 | .me = THIS_MODULE, | ||
| 271 | }; | ||
| 272 | |||
| 273 | static int __init xt_multiport_init(void) | ||
| 274 | { | ||
| 275 | int ret; | ||
| 276 | |||
| 277 | ret = xt_register_match(&multiport_match); | ||
| 278 | if (ret) | ||
| 279 | goto out; | ||
| 280 | |||
| 281 | ret = xt_register_match(&multiport_match_v1); | ||
| 282 | if (ret) | ||
| 283 | goto out_unreg_multi_v0; | ||
| 284 | |||
| 285 | ret = xt_register_match(&multiport6_match); | ||
| 286 | if (ret) | ||
| 287 | goto out_unreg_multi_v1; | ||
| 288 | |||
| 289 | ret = xt_register_match(&multiport6_match_v1); | ||
| 290 | if (ret) | ||
| 291 | goto out_unreg_multi6_v0; | ||
| 292 | |||
| 293 | return ret; | ||
| 294 | |||
| 295 | out_unreg_multi6_v0: | ||
| 296 | xt_unregister_match(&multiport6_match); | ||
| 297 | out_unreg_multi_v1: | ||
| 298 | xt_unregister_match(&multiport_match_v1); | ||
| 299 | out_unreg_multi_v0: | ||
| 300 | xt_unregister_match(&multiport_match); | ||
| 301 | out: | ||
| 302 | return ret; | ||
| 303 | } | ||
| 304 | |||
| 305 | static void __exit xt_multiport_fini(void) | ||
| 306 | { | ||
| 307 | xt_unregister_match(&multiport_match); | ||
| 308 | xt_unregister_match(&multiport_match_v1); | ||
| 309 | xt_unregister_match(&multiport6_match); | ||
| 310 | xt_unregister_match(&multiport6_match_v1); | ||
| 311 | } | ||
| 312 | |||
| 313 | module_init(xt_multiport_init); | ||
| 314 | module_exit(xt_multiport_fini); | ||
diff --git a/net/netfilter/xt_policy.c b/net/netfilter/xt_policy.c index 1099cb005fcc..a3aa62fbda6f 100644 --- a/net/netfilter/xt_policy.c +++ b/net/netfilter/xt_policy.c | |||
| @@ -71,7 +71,7 @@ match_policy_in(const struct sk_buff *skb, const struct xt_policy_info *info, | |||
| 71 | return 0; | 71 | return 0; |
| 72 | e = &info->pol[pos]; | 72 | e = &info->pol[pos]; |
| 73 | 73 | ||
| 74 | if (match_xfrm_state(sp->x[i].xvec, e, family)) { | 74 | if (match_xfrm_state(sp->xvec[i], e, family)) { |
| 75 | if (!strict) | 75 | if (!strict) |
| 76 | return 1; | 76 | return 1; |
| 77 | } else if (strict) | 77 | } else if (strict) |
diff --git a/net/socket.c b/net/socket.c index b13042f68c02..b807f360e02c 100644 --- a/net/socket.c +++ b/net/socket.c | |||
| @@ -1418,7 +1418,8 @@ asmlinkage long sys_accept(int fd, struct sockaddr __user *upeer_sockaddr, int _ | |||
| 1418 | newfd = sock_alloc_fd(&newfile); | 1418 | newfd = sock_alloc_fd(&newfile); |
| 1419 | if (unlikely(newfd < 0)) { | 1419 | if (unlikely(newfd < 0)) { |
| 1420 | err = newfd; | 1420 | err = newfd; |
| 1421 | goto out_release; | 1421 | sock_release(newsock); |
| 1422 | goto out_put; | ||
| 1422 | } | 1423 | } |
| 1423 | 1424 | ||
| 1424 | err = sock_attach_fd(newsock, newfile); | 1425 | err = sock_attach_fd(newsock, newfile); |
| @@ -1455,10 +1456,8 @@ out_put: | |||
| 1455 | out: | 1456 | out: |
| 1456 | return err; | 1457 | return err; |
| 1457 | out_fd: | 1458 | out_fd: |
| 1458 | put_filp(newfile); | 1459 | fput(newfile); |
| 1459 | put_unused_fd(newfd); | 1460 | put_unused_fd(newfd); |
| 1460 | out_release: | ||
| 1461 | sock_release(newsock); | ||
| 1462 | goto out_put; | 1461 | goto out_put; |
| 1463 | } | 1462 | } |
| 1464 | 1463 | ||
diff --git a/net/xfrm/xfrm_input.c b/net/xfrm/xfrm_input.c index 2407a7072327..b54971059f16 100644 --- a/net/xfrm/xfrm_input.c +++ b/net/xfrm/xfrm_input.c | |||
| @@ -18,7 +18,7 @@ void __secpath_destroy(struct sec_path *sp) | |||
| 18 | { | 18 | { |
| 19 | int i; | 19 | int i; |
| 20 | for (i = 0; i < sp->len; i++) | 20 | for (i = 0; i < sp->len; i++) |
| 21 | xfrm_state_put(sp->x[i].xvec); | 21 | xfrm_state_put(sp->xvec[i]); |
| 22 | kmem_cache_free(secpath_cachep, sp); | 22 | kmem_cache_free(secpath_cachep, sp); |
| 23 | } | 23 | } |
| 24 | EXPORT_SYMBOL(__secpath_destroy); | 24 | EXPORT_SYMBOL(__secpath_destroy); |
| @@ -37,7 +37,7 @@ struct sec_path *secpath_dup(struct sec_path *src) | |||
| 37 | 37 | ||
| 38 | memcpy(sp, src, sizeof(*sp)); | 38 | memcpy(sp, src, sizeof(*sp)); |
| 39 | for (i = 0; i < sp->len; i++) | 39 | for (i = 0; i < sp->len; i++) |
| 40 | xfrm_state_hold(sp->x[i].xvec); | 40 | xfrm_state_hold(sp->xvec[i]); |
| 41 | } | 41 | } |
| 42 | atomic_set(&sp->refcnt, 1); | 42 | atomic_set(&sp->refcnt, 1); |
| 43 | return sp; | 43 | return sp; |
diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c index f5eae9febd26..c3725fe2a8fb 100644 --- a/net/xfrm/xfrm_policy.c +++ b/net/xfrm/xfrm_policy.c | |||
| @@ -943,9 +943,9 @@ xfrm_policy_ok(struct xfrm_tmpl *tmpl, struct sec_path *sp, int start, | |||
| 943 | } else | 943 | } else |
| 944 | start = -1; | 944 | start = -1; |
| 945 | for (; idx < sp->len; idx++) { | 945 | for (; idx < sp->len; idx++) { |
| 946 | if (xfrm_state_ok(tmpl, sp->x[idx].xvec, family)) | 946 | if (xfrm_state_ok(tmpl, sp->xvec[idx], family)) |
| 947 | return ++idx; | 947 | return ++idx; |
| 948 | if (sp->x[idx].xvec->props.mode) | 948 | if (sp->xvec[idx]->props.mode) |
| 949 | break; | 949 | break; |
| 950 | } | 950 | } |
| 951 | return start; | 951 | return start; |
| @@ -968,7 +968,7 @@ EXPORT_SYMBOL(xfrm_decode_session); | |||
| 968 | static inline int secpath_has_tunnel(struct sec_path *sp, int k) | 968 | static inline int secpath_has_tunnel(struct sec_path *sp, int k) |
| 969 | { | 969 | { |
| 970 | for (; k < sp->len; k++) { | 970 | for (; k < sp->len; k++) { |
| 971 | if (sp->x[k].xvec->props.mode) | 971 | if (sp->xvec[k]->props.mode) |
| 972 | return 1; | 972 | return 1; |
| 973 | } | 973 | } |
| 974 | 974 | ||
| @@ -994,8 +994,8 @@ int __xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, | |||
| 994 | int i; | 994 | int i; |
| 995 | 995 | ||
| 996 | for (i=skb->sp->len-1; i>=0; i--) { | 996 | for (i=skb->sp->len-1; i>=0; i--) { |
| 997 | struct sec_decap_state *xvec = &(skb->sp->x[i]); | 997 | struct xfrm_state *x = skb->sp->xvec[i]; |
| 998 | if (!xfrm_selector_match(&xvec->xvec->sel, &fl, family)) | 998 | if (!xfrm_selector_match(&x->sel, &fl, family)) |
| 999 | return 0; | 999 | return 0; |
| 1000 | } | 1000 | } |
| 1001 | } | 1001 | } |
