* [PATCH] NET : secure sequence number functions can use nsec resolution instead of usec
@ 2007-03-28 15:43 Eric Dumazet
2007-03-28 16:31 ` James Morris
2007-03-28 16:41 ` Andi Kleen
0 siblings, 2 replies; 4+ messages in thread
From: Eric Dumazet @ 2007-03-28 15:43 UTC (permalink / raw)
To: David Miller; +Cc: Andi Kleen, netdev, Andrew Morton
Hello David
We could use the nanosec resolution for various functions defined in drivers/char/random.c
(secure_tcpv6_sequence_number(), secure_tcp_sequence_number(), secure_dccp_sequence_number())
I am not sure if it's a netdev related patch or core kernel, so I have CC Andrew.
Thank you
[PATCH] NET : random functions can use nsec resolution instead of usec
In order to get more randomness for secure_tcpv6_sequence_number(), secure_tcp_sequence_number(), secure_dccp_sequence_number() functions, we can use the high resolution time services, providing nanosec resolution.
I've also done two kmalloc()/kzalloc() conversions.
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
--- linux-2.6.21-rc5/drivers/char/random.c
+++ linux-2.6.21-rc5-ed/drivers/char/random.c
@@ -881,15 +881,15 @@ EXPORT_SYMBOL(get_random_bytes);
*/
static void init_std_data(struct entropy_store *r)
{
- struct timeval tv;
+ ktime_t now;
unsigned long flags;
spin_lock_irqsave(&r->lock, flags);
r->entropy_count = 0;
spin_unlock_irqrestore(&r->lock, flags);
- do_gettimeofday(&tv);
- add_entropy_words(r, (__u32 *)&tv, sizeof(tv)/4);
+ now = ktime_get_real();
+ add_entropy_words(r, (__u32 *)&now, sizeof(now)/4);
add_entropy_words(r, (__u32 *)utsname(),
sizeof(*(utsname()))/4);
}
@@ -911,14 +911,12 @@ void rand_initialize_irq(int irq)
return;
/*
- * If kmalloc returns null, we just won't use that entropy
+ * If kzalloc returns null, we just won't use that entropy
* source.
*/
- state = kmalloc(sizeof(struct timer_rand_state), GFP_KERNEL);
- if (state) {
- memset(state, 0, sizeof(struct timer_rand_state));
+ state = kzalloc(sizeof(struct timer_rand_state), GFP_KERNEL);
+ if (state)
irq_timer_state[irq] = state;
- }
}
#ifdef CONFIG_BLOCK
@@ -927,14 +925,12 @@ void rand_initialize_disk(struct gendisk
struct timer_rand_state *state;
/*
- * If kmalloc returns null, we just won't use that entropy
+ * If kzalloc returns null, we just won't use that entropy
* source.
*/
- state = kmalloc(sizeof(struct timer_rand_state), GFP_KERNEL);
- if (state) {
- memset(state, 0, sizeof(struct timer_rand_state));
+ state = kzalloc(sizeof(struct timer_rand_state), GFP_KERNEL);
+ if (state)
disk->random = state;
- }
}
#endif
@@ -1469,7 +1465,6 @@ late_initcall(seqgen_init);
__u32 secure_tcpv6_sequence_number(__be32 *saddr, __be32 *daddr,
__be16 sport, __be16 dport)
{
- struct timeval tv;
__u32 seq;
__u32 hash[12];
struct keydata *keyptr = get_keyptr();
@@ -1485,8 +1480,7 @@ __u32 secure_tcpv6_sequence_number(__be3
seq = twothirdsMD4Transform((const __u32 *)daddr, hash) & HASH_MASK;
seq += keyptr->count;
- do_gettimeofday(&tv);
- seq += tv.tv_usec + tv.tv_sec * 1000000;
+ seq += ktime_get_real().tv64;
return seq;
}
@@ -1521,7 +1515,6 @@ __u32 secure_ip_id(__be32 daddr)
__u32 secure_tcp_sequence_number(__be32 saddr, __be32 daddr,
__be16 sport, __be16 dport)
{
- struct timeval tv;
__u32 seq;
__u32 hash[4];
struct keydata *keyptr = get_keyptr();
@@ -1543,12 +1536,11 @@ __u32 secure_tcp_sequence_number(__be32
* As close as possible to RFC 793, which
* suggests using a 250 kHz clock.
* Further reading shows this assumes 2 Mb/s networks.
- * For 10 Mb/s Ethernet, a 1 MHz clock is appropriate.
+ * For 10 Gb/s Ethernet, a 1 GHz clock is appropriate.
* That's funny, Linux has one built in! Use it!
* (Networks are faster now - should this be increased?)
*/
- do_gettimeofday(&tv);
- seq += tv.tv_usec + tv.tv_sec * 1000000;
+ seq += ktime_get_real().tv64;
#if 0
printk("init_seq(%lx, %lx, %d, %d) = %d\n",
saddr, daddr, sport, dport, seq);
@@ -1598,7 +1590,6 @@ u32 secure_ipv6_port_ephemeral(const __b
u64 secure_dccp_sequence_number(__be32 saddr, __be32 daddr,
__be16 sport, __be16 dport)
{
- struct timeval tv;
u64 seq;
__u32 hash[4];
struct keydata *keyptr = get_keyptr();
@@ -1611,8 +1602,7 @@ u64 secure_dccp_sequence_number(__be32 s
seq = half_md4_transform(hash, keyptr->secret);
seq |= ((u64)keyptr->count) << (32 - HASH_BITS);
- do_gettimeofday(&tv);
- seq += tv.tv_usec + tv.tv_sec * 1000000;
+ seq += ktime_get_real().tv64;
seq &= (1ull << 48) - 1;
#if 0
printk("dccp init_seq(%lx, %lx, %d, %d) = %d\n",
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] NET : secure sequence number functions can use nsec resolution instead of usec
2007-03-28 15:43 [PATCH] NET : secure sequence number functions can use nsec resolution instead of usec Eric Dumazet
@ 2007-03-28 16:31 ` James Morris
2007-03-28 21:22 ` David Miller
2007-03-28 16:41 ` Andi Kleen
1 sibling, 1 reply; 4+ messages in thread
From: James Morris @ 2007-03-28 16:31 UTC (permalink / raw)
To: Eric Dumazet; +Cc: David Miller, Andi Kleen, netdev, Andrew Morton
On Wed, 28 Mar 2007, Eric Dumazet wrote:
> Hello David
>
> We could use the nanosec resolution for various functions defined in drivers/char/random.c
> (secure_tcpv6_sequence_number(), secure_tcp_sequence_number(), secure_dccp_sequence_number())
>
> I am not sure if it's a netdev related patch or core kernel, so I have CC Andrew.
>
> Thank you
>
> [PATCH] NET : random functions can use nsec resolution instead of usec
>
> In order to get more randomness for secure_tcpv6_sequence_number(), secure_tcp_sequence_number(), secure_dccp_sequence_number() functions, we can use the high resolution time services, providing nanosec resolution.
>
> I've also done two kmalloc()/kzalloc() conversions.
>
> Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
Looks good to me.
Acked-by: James Morris <jmorris@namei.org>
- James
--
James Morris
<jmorris@namei.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] NET : secure sequence number functions can use nsec resolution instead of usec
2007-03-28 15:43 [PATCH] NET : secure sequence number functions can use nsec resolution instead of usec Eric Dumazet
2007-03-28 16:31 ` James Morris
@ 2007-03-28 16:41 ` Andi Kleen
1 sibling, 0 replies; 4+ messages in thread
From: Andi Kleen @ 2007-03-28 16:41 UTC (permalink / raw)
To: Eric Dumazet; +Cc: David Miller, Andi Kleen, netdev, Andrew Morton
On Wed, Mar 28, 2007 at 05:43:22PM +0200, Eric Dumazet wrote:
> Hello David
>
> We could use the nanosec resolution for various functions defined in drivers/char/random.c
> (secure_tcpv6_sequence_number(), secure_tcp_sequence_number(), secure_dccp_sequence_number())
>
> I am not sure if it's a netdev related patch or core kernel, so I have CC Andrew.
>
> Thank you
>
> [PATCH] NET : random functions can use nsec resolution instead of usec
>
> In order to get more randomness for secure_tcpv6_sequence_number(), secure_tcp_sequence_number(), secure_dccp_sequence_number() functions, we can use the high resolution time services, providing nanosec resolution.
It's also a little faster because it avoids one division.
You didn't mention the initial seed change.
There you could have removed the useless utsname initialization too.
>
> I've also done two kmalloc()/kzalloc() conversions.
Normally that should be separate patches
-Andi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] NET : secure sequence number functions can use nsec resolution instead of usec
2007-03-28 16:31 ` James Morris
@ 2007-03-28 21:22 ` David Miller
0 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2007-03-28 21:22 UTC (permalink / raw)
To: jmorris; +Cc: dada1, andi, netdev, akpm
From: James Morris <jmorris@namei.org>
Date: Wed, 28 Mar 2007 12:31:56 -0400 (EDT)
> On Wed, 28 Mar 2007, Eric Dumazet wrote:
>
> > Hello David
> >
> > We could use the nanosec resolution for various functions defined in drivers/char/random.c
> > (secure_tcpv6_sequence_number(), secure_tcp_sequence_number(), secure_dccp_sequence_number())
> >
> > I am not sure if it's a netdev related patch or core kernel, so I have CC Andrew.
> >
> > Thank you
> >
> > [PATCH] NET : random functions can use nsec resolution instead of usec
> >
> > In order to get more randomness for secure_tcpv6_sequence_number(), secure_tcp_sequence_number(), secure_dccp_sequence_number() functions, we can use the high resolution time services, providing nanosec resolution.
> >
> > I've also done two kmalloc()/kzalloc() conversions.
> >
> > Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
>
> Looks good to me.
>
> Acked-by: James Morris <jmorris@namei.org>
To me too, patch applied, thanks everyone.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-03-28 21:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-28 15:43 [PATCH] NET : secure sequence number functions can use nsec resolution instead of usec Eric Dumazet
2007-03-28 16:31 ` James Morris
2007-03-28 21:22 ` David Miller
2007-03-28 16:41 ` Andi Kleen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).