inetpeer.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * INETPEER - A storage for permanent information about peers
  3. *
  4. * Authors: Andrey V. Savochkin <saw@msu.ru>
  5. */
  6. #ifndef _NET_INETPEER_H
  7. #define _NET_INETPEER_H
  8. #include <linux/types.h>
  9. #include <linux/init.h>
  10. #include <linux/jiffies.h>
  11. #include <linux/spinlock.h>
  12. #include <asm/atomic.h>
  13. struct inet_peer {
  14. /* group together avl_left,avl_right,v4daddr to speedup lookups */
  15. struct inet_peer *avl_left, *avl_right;
  16. __be32 v4daddr; /* peer's address */
  17. __u32 avl_height;
  18. struct list_head unused;
  19. __u32 dtime; /* the time of last use of not
  20. * referenced entries */
  21. atomic_t refcnt;
  22. /*
  23. * Once inet_peer is queued for deletion (refcnt == -1), following fields
  24. * are not available: rid, ip_id_count, tcp_ts, tcp_ts_stamp
  25. * We can share memory with rcu_head to keep inet_peer small
  26. * (less then 64 bytes)
  27. */
  28. union {
  29. struct {
  30. atomic_t rid; /* Frag reception counter */
  31. atomic_t ip_id_count; /* IP ID for the next packet */
  32. __u32 tcp_ts;
  33. __u32 tcp_ts_stamp;
  34. };
  35. struct rcu_head rcu;
  36. };
  37. };
  38. void inet_initpeers(void) __init;
  39. /* can be called with or without local BH being disabled */
  40. struct inet_peer *inet_getpeer(__be32 daddr, int create);
  41. /* can be called from BH context or outside */
  42. extern void inet_putpeer(struct inet_peer *p);
  43. /*
  44. * temporary check to make sure we dont access rid, ip_id_count, tcp_ts,
  45. * tcp_ts_stamp if no refcount is taken on inet_peer
  46. */
  47. static inline void inet_peer_refcheck(const struct inet_peer *p)
  48. {
  49. WARN_ON_ONCE(atomic_read(&p->refcnt) <= 0);
  50. }
  51. /* can be called with or without local BH being disabled */
  52. static inline __u16 inet_getid(struct inet_peer *p, int more)
  53. {
  54. more++;
  55. inet_peer_refcheck(p);
  56. return atomic_add_return(more, &p->ip_id_count) - more;
  57. }
  58. #endif /* _NET_INETPEER_H */