lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 07 Sep 2010 23:07:37 +0200
From:	Eric Dumazet <eric.dumazet@...il.com>
To:	Jarek Poplawski <jarkao2@...il.com>
Cc:	David Miller <davem@...emloft.net>, netdev <netdev@...r.kernel.org>
Subject: [PATCH net-next-2.6] net: introduce rcu_dereference_rtnl

Le mardi 07 septembre 2010 à 22:49 +0200, Jarek Poplawski a écrit :
> Eric Dumazet wrote, On 09/07/2010 10:11 PM:
> 
> > We use rcu_dereference_check(p, rcu_read_lock_held() ||
> > lockdep_rtnl_is_held()) several times in network stack.
> > 
> > More usages to come too, so its time to create a helper.
> > 
> > Signed-off-by: Eric Dumazet <eric.dumazet@...il.com>
> > ---
> > include/linux/rtnetlink.h |   12 ++++++++++++
> > 
> > diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h
> > index 58d4449..5ba48bb 100644
> > --- a/include/linux/rtnetlink.h
> > +++ b/include/linux/rtnetlink.h
> > @@ -745,10 +745,22 @@ extern void rtnl_lock(void);
> >  extern void rtnl_unlock(void);
> >  extern int rtnl_trylock(void);
> >  extern int rtnl_is_locked(void);
> > +
> >  #ifdef CONFIG_PROVE_LOCKING
> >  extern int lockdep_rtnl_is_held(void);
> >  #endif /* #ifdef CONFIG_PROVE_LOCKING */
> >  
> > +/**
> > + * rcu_dereference_read_lock_or_rtnl - rcu_dereference with debug checking
> > + * @p: The pointer to read, prior to dereferencing
> > + *
> > + * Do an rcu_dereference(p), but check caller either holds rcu_read_lock()
> > + * or RTNL
> > + */
> > +#define rcu_dereference_read_lock_or_rtnl(p)
> 
> 
> My proposal is to shorten the name, and since rcu_read_lock
> part seems obvious, maybe rcu_dereference_rtnl() only?

Yes, name is absolutely awful, I am very bad at this kind of games :)

Thanks !

[PATCH net-next-2.6] net: introduce rcu_dereference_rtnl

We use rcu_dereference_check(p, rcu_read_lock_held() ||
lockdep_rtnl_is_held()) several times in network stack.

More usages to come too, so its time to create a helper.

Signed-off-by: Eric Dumazet <eric.dumazet@...il.com>
---
 include/linux/rtnetlink.h |   11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h
index 58d4449..057a08f 100644
--- a/include/linux/rtnetlink.h
+++ b/include/linux/rtnetlink.h
@@ -749,6 +749,17 @@ extern int rtnl_is_locked(void);
 extern int lockdep_rtnl_is_held(void);
 #endif /* #ifdef CONFIG_PROVE_LOCKING */
 
+/**
+ * rcu_dereference_rtnl - rcu_dereference with debug checking
+ * @p: The pointer to read, prior to dereferencing
+ *
+ * Do an rcu_dereference(p), but check caller either holds rcu_read_lock()
+ * or RTNL
+ */
+#define rcu_dereference_rtnl(p)					\
+	rcu_dereference_check(p, rcu_read_lock_held() ||	\
+				 lockdep_rtnl_is_held());
+
 extern void rtnetlink_init(void);
 extern void __rtnl_unlock(void);
 


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ