rtnetlink.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #ifndef __LINUX_RTNETLINK_H
  2. #define __LINUX_RTNETLINK_H
  3. #include <linux/mutex.h>
  4. #include <linux/netdevice.h>
  5. #include <uapi/linux/rtnetlink.h>
  6. extern int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, u32 group, int echo);
  7. extern int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid);
  8. extern void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid,
  9. u32 group, struct nlmsghdr *nlh, gfp_t flags);
  10. extern void rtnl_set_sk_err(struct net *net, u32 group, int error);
  11. extern int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics);
  12. extern int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst,
  13. u32 id, long expires, u32 error);
  14. extern void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change);
  15. /* RTNL is used as a global lock for all changes to network configuration */
  16. extern void rtnl_lock(void);
  17. extern void rtnl_unlock(void);
  18. extern int rtnl_trylock(void);
  19. extern int rtnl_is_locked(void);
  20. #ifdef CONFIG_PROVE_LOCKING
  21. extern int lockdep_rtnl_is_held(void);
  22. #endif /* #ifdef CONFIG_PROVE_LOCKING */
  23. /**
  24. * rcu_dereference_rtnl - rcu_dereference with debug checking
  25. * @p: The pointer to read, prior to dereferencing
  26. *
  27. * Do an rcu_dereference(p), but check caller either holds rcu_read_lock()
  28. * or RTNL. Note : Please prefer rtnl_dereference() or rcu_dereference()
  29. */
  30. #define rcu_dereference_rtnl(p) \
  31. rcu_dereference_check(p, lockdep_rtnl_is_held())
  32. /**
  33. * rtnl_dereference - fetch RCU pointer when updates are prevented by RTNL
  34. * @p: The pointer to read, prior to dereferencing
  35. *
  36. * Return the value of the specified RCU-protected pointer, but omit
  37. * both the smp_read_barrier_depends() and the ACCESS_ONCE(), because
  38. * caller holds RTNL.
  39. */
  40. #define rtnl_dereference(p) \
  41. rcu_dereference_protected(p, lockdep_rtnl_is_held())
  42. static inline struct netdev_queue *dev_ingress_queue(struct net_device *dev)
  43. {
  44. return rtnl_dereference(dev->ingress_queue);
  45. }
  46. extern struct netdev_queue *dev_ingress_queue_create(struct net_device *dev);
  47. extern void rtnetlink_init(void);
  48. extern void __rtnl_unlock(void);
  49. #define ASSERT_RTNL() do { \
  50. if (unlikely(!rtnl_is_locked())) { \
  51. printk(KERN_ERR "RTNL: assertion failed at %s (%d)\n", \
  52. __FILE__, __LINE__); \
  53. dump_stack(); \
  54. } \
  55. } while(0)
  56. extern int ndo_dflt_fdb_dump(struct sk_buff *skb,
  57. struct netlink_callback *cb,
  58. struct net_device *dev,
  59. int idx);
  60. extern int ndo_dflt_fdb_add(struct ndmsg *ndm,
  61. struct nlattr *tb[],
  62. struct net_device *dev,
  63. const unsigned char *addr,
  64. u16 flags);
  65. extern int ndo_dflt_fdb_del(struct ndmsg *ndm,
  66. struct nlattr *tb[],
  67. struct net_device *dev,
  68. const unsigned char *addr);
  69. extern int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
  70. struct net_device *dev, u16 mode);
  71. #endif /* __LINUX_RTNETLINK_H */