Liping Zhang
2fa46c1301
netfilter: nft_limit: fix divided by zero panic
...
After I input the following nftables rule, a panic happened on my system:
# nft add rule filter OUTPUT limit rate 0xf00000000 bytes/second
divide error: 0000 [#1 ] SMP
[ ... ]
RIP: 0010:[<ffffffffa059035e>] [<ffffffffa059035e>]
nft_limit_pkt_bytes_eval+0x2e/0xa0 [nft_limit]
Call Trace:
[<ffffffffa05721bb>] nft_do_chain+0xfb/0x4e0 [nf_tables]
[<ffffffffa044f236>] ? nf_nat_setup_info+0x96/0x480 [nf_nat]
[<ffffffff81753767>] ? ipt_do_table+0x327/0x610
[<ffffffffa044f677>] ? __nf_nat_alloc_null_binding+0x57/0x80 [nf_nat]
[<ffffffffa058b21f>] nft_ipv4_output+0xaf/0xd0 [nf_tables_ipv4]
[<ffffffff816f4aa2>] nf_iterate+0x62/0x80
[<ffffffff816f4b33>] nf_hook_slow+0x73/0xd0
[<ffffffff81703d0d>] __ip_local_out+0xcd/0xe0
[<ffffffff81701d90>] ? ip_forward_options+0x1b0/0x1b0
[<ffffffff81703d3c>] ip_local_out+0x1c/0x40
This is because divisor is 64-bit, but we treat it as a 32-bit integer,
then 0xf00000000 becomes zero, i.e. divisor becomes 0.
Signed-off-by: Liping Zhang <liping.zhang@spreadtrum.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
2016-10-04 08:59:03 +02:00
..
2016-03-28 17:57:45 +02:00
2016-08-12 00:43:52 +02:00
2016-09-30 20:15:26 +02:00
2016-08-22 11:42:22 +02:00
2016-09-25 23:16:42 +02:00
2015-03-18 10:51:35 +01:00
2015-02-22 15:59:54 -05:00
2016-09-25 23:34:19 +02:00
2016-08-30 11:43:08 +02:00
2016-08-09 10:38:46 +02:00
2016-07-11 11:47:50 +02:00
2016-09-07 10:38:00 +02:00
2016-07-11 12:32:45 +02:00
2016-09-24 21:29:53 +02:00
2016-09-24 21:29:53 +02:00
2016-07-21 02:31:53 +02:00
2014-11-05 14:10:33 -05:00
2016-07-22 17:05:10 +02:00
2016-09-12 19:59:39 +02:00
2016-08-30 11:43:09 +02:00
2016-08-12 00:41:08 +02:00
2016-08-13 13:27:13 +02:00
2016-09-07 10:36:52 +02:00
2016-08-13 13:27:13 +02:00
2016-08-13 13:27:13 +02:00
2016-08-13 13:27:13 +02:00
2016-08-12 00:41:08 +02:00
2016-08-13 13:27:13 +02:00
2016-07-21 02:31:53 +02:00
2016-09-25 14:54:01 +02:00
2016-09-07 13:53:43 +02:00
2016-09-25 14:54:08 +02:00
2016-07-21 02:31:53 +02:00
2015-12-14 12:48:58 +01:00
2013-12-20 14:58:29 +01:00
2016-03-01 17:36:47 -05:00
2016-09-25 14:38:48 +02:00
2016-09-25 23:16:45 +02:00
2016-10-04 08:41:06 +02:00
2016-09-23 06:46:57 -04:00
2014-01-06 14:17:17 +01:00
2014-06-30 11:38:03 +02:00
2015-08-17 21:33:06 -07:00
2014-06-30 11:38:03 +02:00
2015-08-17 21:33:06 -07:00
2015-08-17 21:33:06 -07:00
2015-08-17 21:33:06 -07:00
2015-10-27 06:54:56 +01:00
2014-10-14 02:18:24 +02:00
2016-09-25 14:38:48 +02:00
2014-08-08 16:47:23 +02:00
2015-09-05 21:57:42 -07:00
2016-09-23 09:29:02 +02:00
2016-09-25 23:16:43 +02:00
2016-09-12 19:54:45 +02:00
2016-09-12 19:54:45 +02:00
2016-09-25 23:34:19 +02:00
2016-08-25 13:11:00 +02:00
2016-09-24 21:29:53 +02:00
2016-08-25 13:11:30 +02:00
2016-09-24 21:29:53 +02:00
2016-09-25 14:38:48 +02:00
2016-02-23 00:09:14 -05:00
2016-09-23 09:29:02 +02:00
2016-09-23 09:29:02 +02:00
2016-09-23 09:29:02 +02:00
2016-07-23 12:25:00 +02:00
2016-04-23 20:13:24 -04:00
2016-09-25 14:54:04 +02:00
2016-01-03 21:04:23 +01:00
2016-09-12 18:49:50 +02:00
2016-09-23 09:29:02 +02:00
2016-01-04 17:48:38 +01:00
2016-09-13 10:49:23 +02:00
2016-09-23 09:29:02 +02:00
2016-10-04 08:59:03 +02:00
2016-09-25 23:16:43 +02:00
2016-09-23 09:30:48 +02:00
2016-03-02 20:05:27 +01:00
2016-09-25 23:34:19 +02:00
2015-04-13 17:17:29 +02:00
2016-09-22 16:33:05 +02:00
2016-09-23 09:30:26 +02:00
2016-09-23 09:29:50 +02:00
2016-09-07 11:02:06 +02:00
2016-09-25 23:16:42 +02:00
2015-04-13 17:17:28 +02:00
2016-08-25 12:55:34 +02:00
2016-08-25 12:55:34 +02:00
2016-08-26 17:30:20 +02:00
2016-09-06 12:45:26 -07:00
2016-07-18 21:35:23 +02:00
2015-09-18 21:58:25 +02:00
2014-03-13 14:13:19 +01:00
2014-08-02 15:03:58 -07:00
2015-12-14 20:34:55 +01:00
2014-08-23 12:21:21 -07:00
2014-09-10 12:40:10 -07:00
2016-07-22 17:05:10 +02:00
2016-09-23 09:30:36 +02:00
2013-12-06 12:37:57 -05:00
2016-08-12 00:43:13 +02:00
2015-12-14 12:48:58 +01:00
2014-11-13 12:14:42 +01:00
2016-09-30 20:15:27 +02:00
2016-09-24 21:29:53 +02:00
2014-08-23 12:21:21 -07:00
2016-04-29 14:28:48 +02:00
2014-02-19 11:41:25 +01:00
2015-09-24 09:34:41 +09:00
2014-01-09 21:36:39 +01:00
2014-08-05 18:46:26 -07:00
2015-09-18 21:58:25 +02:00
2015-05-14 13:00:27 +02:00
2016-08-18 00:38:23 +02:00
2016-06-24 11:03:23 +02:00
2013-12-07 23:20:45 +01:00
2016-02-29 13:59:43 +01:00
2016-06-23 13:58:55 +02:00
2016-08-12 00:42:14 +02:00
2016-09-23 09:30:36 +02:00
2016-09-23 09:30:36 +02:00
2014-11-27 13:08:42 +01:00
2014-06-07 11:44:39 -07:00
2016-09-22 03:13:26 -04:00
2015-06-14 10:40:18 +02:00
2016-04-04 22:11:20 -04:00
2014-01-14 15:15:25 -08:00
2015-02-22 15:59:54 -05:00
2016-09-24 21:13:21 +02:00
2015-08-17 21:33:06 -07:00
2016-07-03 10:55:07 +02:00
2016-09-12 19:54:43 +02:00
2016-08-18 00:51:13 +02:00
2016-06-23 13:26:49 +02:00