rtnetlink.h 3.0 KB

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