* Question with secure_ipv4_port_ephemeral() implementation @ 2012-04-20 12:30 Tetsuo Handa 2012-04-22 3:29 ` Ben Hutchings 0 siblings, 1 reply; 5+ messages in thread From: Tetsuo Handa @ 2012-04-20 12:30 UTC (permalink / raw) To: netdev Commit 6e5714ea "net: Compute protocol sequence numbers and fragment IDs using MD5." removed periodic get_random_bytes() calls. After that commit, static u32 net_secret[MD5_MESSAGE_BYTES / 4] ____cacheline_aligned; is filled with random bytes for only once upon boot and is never updated again. Then, shouldn't net_secret be marked as __read_mostly? Just from curiosity... what was the reason for changing secure_ipv4_port_ephemeral() generate same return value for same arguments? Was periodically changing return value for same arguments unfriendly with NAT or something? ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Question with secure_ipv4_port_ephemeral() implementation 2012-04-20 12:30 Question with secure_ipv4_port_ephemeral() implementation Tetsuo Handa @ 2012-04-22 3:29 ` Ben Hutchings 2012-04-22 5:20 ` Tetsuo Handa 0 siblings, 1 reply; 5+ messages in thread From: Ben Hutchings @ 2012-04-22 3:29 UTC (permalink / raw) To: Tetsuo Handa; +Cc: netdev On Fri, 2012-04-20 at 21:30 +0900, Tetsuo Handa wrote: > Commit 6e5714ea "net: Compute protocol sequence numbers and fragment IDs using > MD5." removed periodic get_random_bytes() calls. After that commit, > > static u32 net_secret[MD5_MESSAGE_BYTES / 4] ____cacheline_aligned; > > is filled with random bytes for only once upon boot and is never updated again. > Then, shouldn't net_secret be marked as __read_mostly? > > Just from curiosity... what was the reason for changing > secure_ipv4_port_ephemeral() generate same return value for same arguments? > Was periodically changing return value for same arguments unfriendly with NAT > or something? The commit message says: > Furthermore, only having 24-bits of the sequence number be truly > unpredictable is a very serious limitation. So the periodic > regeneration and 8-bit counter have been removed. We compute and > use a full 32-bit sequence number. As I understand it, that 8-bit counter was used for all connections, so in order to spoof the source of a TCP connection it was only necessary to guess 24 bits of the ISN. On a sufficiently fast network, it would now be feasible to carry out a brute force attack that ACKs all possible ISNs before the handshake times-out. That's not yet feasible if the attacker has to guess all 32 bits of the ISN. The original reason for periodically regenerating the secret was that the hash function was quite weak and the secret could presumably be found in a reasonably short time. So, without regeneration, the hash also has to be stronger. Ben. -- Ben Hutchings, Staff Engineer, Solarflare Not speaking for my employer; that's the marketing department's job. They asked us to note that Solarflare product names are trademarked. ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Question with secure_ipv4_port_ephemeral() implementation 2012-04-22 3:29 ` Ben Hutchings @ 2012-04-22 5:20 ` Tetsuo Handa 2012-04-22 14:21 ` Ben Hutchings 0 siblings, 1 reply; 5+ messages in thread From: Tetsuo Handa @ 2012-04-22 5:20 UTC (permalink / raw) To: bhutchings; +Cc: netdev Ben Hutchings wrote: > As I understand it, that 8-bit counter was used for all connections, so > in order to spoof the source of a TCP connection it was only necessary > to guess 24 bits of the ISN. On a sufficiently fast network, it would > now be feasible to carry out a brute force attack that ACKs all possible > ISNs before the handshake times-out. That's not yet feasible if the > attacker has to guess all 32 bits of the ISN. So, the purpose was to make the initial sequence number more random. OK. > The original reason for periodically regenerating the secret was that > the hash function was quite weak and the secret could presumably be > found in a reasonably short time. So, without regeneration, the hash > also has to be stronger. My concern is the purpose of making the automatic local port number selection algorithm less random. That commit removed uptime factor from factors that determine starting point of available local port scanning (due to removal of periodic get_random_bytes() calls). 368 static inline u32 inet_sk_port_offset(const struct sock *sk) 369 { 370 const struct inet_sock *inet = inet_sk(sk); 371 return secure_ipv4_port_ephemeral(inet->inet_rcv_saddr, 372 inet->inet_daddr, 373 inet->inet_dport); 374 } secure_ipv4_port_ephemeral() no longer depends on uptime. 565 int inet_hash_connect(struct inet_timewait_death_row *death_row, 566 struct sock *sk) 567 { 568 return __inet_hash_connect(death_row, sk, inet_sk_port_offset(sk), 569 __inet_check_established, __inet_hash_nolisten); 570 } inet_sk_port_offset() no longer depends on uptime. It returns same port offset for same addresses. 454 int __inet_hash_connect(struct inet_timewait_death_row *death_row, 455 struct sock *sk, u32 port_offset, 456 int (*check_established)(struct inet_timewait_death_row *, 457 struct sock *, __u16, struct inet_timewait_sock **), 458 int (*hash)(struct sock *sk, struct inet_timewait_sock *twp)) 459 { 460 struct inet_hashinfo *hinfo = death_row->hashinfo; 461 const unsigned short snum = inet_sk(sk)->inet_num; 462 struct inet_bind_hashbucket *head; 463 struct inet_bind_bucket *tb; 464 int ret; 465 struct net *net = sock_net(sk); 466 int twrefcnt = 1; 467 468 if (!snum) { 469 int i, remaining, low, high, port; 470 static u32 hint; 471 u32 offset = hint + port_offset; port_offset no longer depends on uptime. 472 struct hlist_node *node; 473 struct inet_timewait_sock *tw = NULL; 474 475 inet_get_local_port_range(&low, &high); 476 remaining = (high - low) + 1; 477 478 local_bh_disable(); 479 for (i = 1; i <= remaining; i++) { 480 port = low + (i + offset) % remaining; That commit changed to scan available local port independent with uptime. 481 if (inet_is_reserved_local_port(port)) 482 continue; I worried we unexpectedly made the automatic local port number selection algorithm less random. If we expectedly made this algorithm less random, I wanted to know whether there was a reason we should not depend on uptime factor. ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Question with secure_ipv4_port_ephemeral() implementation 2012-04-22 5:20 ` Tetsuo Handa @ 2012-04-22 14:21 ` Ben Hutchings 2012-04-22 14:38 ` Tetsuo Handa 0 siblings, 1 reply; 5+ messages in thread From: Ben Hutchings @ 2012-04-22 14:21 UTC (permalink / raw) To: Tetsuo Handa; +Cc: netdev On Sun, 2012-04-22 at 14:20 +0900, Tetsuo Handa wrote: > Ben Hutchings wrote: > > As I understand it, that 8-bit counter was used for all connections, so > > in order to spoof the source of a TCP connection it was only necessary > > to guess 24 bits of the ISN. On a sufficiently fast network, it would > > now be feasible to carry out a brute force attack that ACKs all possible > > ISNs before the handshake times-out. That's not yet feasible if the > > attacker has to guess all 32 bits of the ISN. > > So, the purpose was to make the initial sequence number more random. OK. > > > The original reason for periodically regenerating the secret was that > > the hash function was quite weak and the secret could presumably be > > found in a reasonably short time. So, without regeneration, the hash > > also has to be stronger. > > My concern is the purpose of making the automatic local port number selection > algorithm less random. That commit removed uptime factor from factors that > determine starting point of available local port scanning (due to removal of > periodic get_random_bytes() calls). > > 368 static inline u32 inet_sk_port_offset(const struct sock *sk) > 369 { > 370 const struct inet_sock *inet = inet_sk(sk); > 371 return secure_ipv4_port_ephemeral(inet->inet_rcv_saddr, > 372 inet->inet_daddr, > 373 inet->inet_dport); > 374 } > > secure_ipv4_port_ephemeral() no longer depends on uptime. > > 565 int inet_hash_connect(struct inet_timewait_death_row *death_row, > 566 struct sock *sk) > 567 { > 568 return __inet_hash_connect(death_row, sk, inet_sk_port_offset(sk), > 569 __inet_check_established, __inet_hash_nolisten); > 570 } > > inet_sk_port_offset() no longer depends on uptime. > It returns same port offset for same addresses. [...] All this randomisation is concerned with preventing spoofing attacks by attackers that can't see any packets routed to the spoofed address. If they can see the return packets then this is all in vain, which is why we generally want cryptography at the transport or application level. But if they can't then the port offset remains secret - right? (Port randomisation is not very useful on it own due to the small number space, but see <http://en.wikipedia.org/wiki/DNS_cache_poisoning#Prevention_and_mitigation>.) Ben. -- Ben Hutchings, Staff Engineer, Solarflare Not speaking for my employer; that's the marketing department's job. They asked us to note that Solarflare product names are trademarked. ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Question with secure_ipv4_port_ephemeral() implementation 2012-04-22 14:21 ` Ben Hutchings @ 2012-04-22 14:38 ` Tetsuo Handa 0 siblings, 0 replies; 5+ messages in thread From: Tetsuo Handa @ 2012-04-22 14:38 UTC (permalink / raw) To: bhutchings; +Cc: netdev Ben Hutchings wrote: > All this randomisation is concerned with preventing spoofing attacks by > attackers that can't see any packets routed to the spoofed address. If > they can see the return packets then this is all in vain, which is why > we generally want cryptography at the transport or application level. > But if they can't then the port offset remains secret - right? > > (Port randomisation is not very useful on it own due to the small number > space, but see > <http://en.wikipedia.org/wiki/DNS_cache_poisoning#Prevention_and_mitigation>.) Thank you. So, this change (which looked to me a regression) is not a regression. ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-04-22 14:38 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-04-20 12:30 Question with secure_ipv4_port_ephemeral() implementation Tetsuo Handa 2012-04-22 3:29 ` Ben Hutchings 2012-04-22 5:20 ` Tetsuo Handa 2012-04-22 14:21 ` Ben Hutchings 2012-04-22 14:38 ` Tetsuo Handa
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox