netlink.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. /*
  2. * netlink-private/netlink.h Local Netlink Interface
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation version 2.1
  7. * of the License.
  8. *
  9. * Copyright (c) 2003-2013 Thomas Graf <tgraf@suug.ch>
  10. */
  11. #ifndef NETLINK_LOCAL_H_
  12. #define NETLINK_LOCAL_H_
  13. #include <stdio.h>
  14. #include <errno.h>
  15. #include <stdlib.h>
  16. #include <string.h>
  17. #include <unistd.h>
  18. #include <fcntl.h>
  19. #include <math.h>
  20. #include <time.h>
  21. #include <stdarg.h>
  22. #include <ctype.h>
  23. #include <sys/types.h>
  24. #include <sys/stat.h>
  25. #include <sys/socket.h>
  26. #include <inttypes.h>
  27. #include <assert.h>
  28. #include <limits.h>
  29. #include <search.h>
  30. #include <arpa/inet.h>
  31. #include <netdb.h>
  32. #include <defs.h>
  33. #ifndef SOL_NETLINK
  34. #define SOL_NETLINK 270
  35. #endif
  36. #include <linux/types.h>
  37. /* local header copies */
  38. #include <linux/if.h>
  39. #include <linux/if_arp.h>
  40. #include <linux/if_ether.h>
  41. #include <linux/ethtool.h>
  42. #include <linux/pkt_sched.h>
  43. #include <linux/pkt_cls.h>
  44. #include <linux/gen_stats.h>
  45. #include <linux/ip_mp_alg.h>
  46. #include <linux/atm.h>
  47. #include <linux/ip.h>
  48. #include <linux/ipv6.h>
  49. #include <linux/snmp.h>
  50. #ifndef DISABLE_PTHREADS
  51. #include <pthread.h>
  52. #endif
  53. #include <netlink/netlink.h>
  54. #include <netlink/handlers.h>
  55. #include <netlink/cache.h>
  56. #include <netlink/route/tc.h>
  57. #include <netlink-private/object-api.h>
  58. #include <netlink-private/cache-api.h>
  59. #include <netlink-private/types.h>
  60. #define NSEC_PER_SEC 1000000000L
  61. struct trans_tbl {
  62. int i;
  63. const char *a;
  64. };
  65. #define __ADD(id, name) { .i = id, .a = #name },
  66. struct trans_list {
  67. int i;
  68. char *a;
  69. struct nl_list_head list;
  70. };
  71. #ifdef NL_DEBUG
  72. #define NL_DBG(LVL,FMT,ARG...) \
  73. do { \
  74. if (LVL <= nl_debug) \
  75. fprintf(stderr, \
  76. "DBG<" #LVL ">%20s:%-4u %s: " FMT, \
  77. __FILE__, __LINE__, \
  78. __PRETTY_FUNCTION__, ##ARG); \
  79. } while (0)
  80. #else /* NL_DEBUG */
  81. #define NL_DBG(LVL,FMT,ARG...) do { } while(0)
  82. #endif /* NL_DEBUG */
  83. #define BUG() \
  84. do { \
  85. fprintf(stderr, "BUG at file position %s:%d:%s\n", \
  86. __FILE__, __LINE__, __PRETTY_FUNCTION__); \
  87. assert(0); \
  88. } while (0)
  89. #define BUG_ON(condition) \
  90. do { \
  91. if (condition) \
  92. BUG(); \
  93. } while (0)
  94. #define APPBUG(msg) \
  95. do { \
  96. fprintf(stderr, "APPLICATION BUG: %s:%d:%s: %s\n", \
  97. __FILE__, __LINE__, __PRETTY_FUNCTION__, msg); \
  98. assert(0); \
  99. } while(0)
  100. extern int __nl_read_num_str_file(const char *path,
  101. int (*cb)(long, const char *));
  102. extern int __trans_list_add(int, const char *, struct nl_list_head *);
  103. extern void __trans_list_clear(struct nl_list_head *);
  104. extern char *__type2str(int, char *, size_t, const struct trans_tbl *, size_t);
  105. extern int __str2type(const char *, const struct trans_tbl *, size_t);
  106. extern char *__list_type2str(int, char *, size_t, struct nl_list_head *);
  107. extern int __list_str2type(const char *, struct nl_list_head *);
  108. extern char *__flags2str(int, char *, size_t, const struct trans_tbl *, size_t);
  109. extern int __str2flags(const char *, const struct trans_tbl *, size_t);
  110. extern void dump_from_ops(struct nl_object *, struct nl_dump_params *);
  111. static inline int nl_cb_call(struct nl_cb *cb, int type, struct nl_msg *msg)
  112. {
  113. int ret;
  114. cb->cb_active = type;
  115. ret = cb->cb_set[type](msg, cb->cb_args[type]);
  116. cb->cb_active = __NL_CB_TYPE_MAX;
  117. return ret;
  118. }
  119. #define ARRAY_SIZE(X) (sizeof(X) / sizeof((X)[0]))
  120. /* This is also defined in stddef.h */
  121. #ifndef offsetof
  122. #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
  123. #endif
  124. #define __init __attribute__ ((constructor))
  125. #define __exit __attribute__ ((destructor))
  126. #undef __deprecated
  127. #define __deprecated __attribute__ ((deprecated))
  128. #define min(x,y) ({ \
  129. typeof(x) _x = (x); \
  130. typeof(y) _y = (y); \
  131. (void) (&_x == &_y); \
  132. _x < _y ? _x : _y; })
  133. #define max(x,y) ({ \
  134. typeof(x) _x = (x); \
  135. typeof(y) _y = (y); \
  136. (void) (&_x == &_y); \
  137. _x > _y ? _x : _y; })
  138. #define min_t(type,x,y) \
  139. ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
  140. #define max_t(type,x,y) \
  141. ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
  142. extern int nl_cache_parse(struct nl_cache_ops *, struct sockaddr_nl *,
  143. struct nlmsghdr *, struct nl_parser_param *);
  144. static inline void rtnl_copy_ratespec(struct rtnl_ratespec *dst,
  145. struct tc_ratespec *src)
  146. {
  147. dst->rs_cell_log = src->cell_log;
  148. dst->rs_overhead = src->overhead;
  149. dst->rs_cell_align = src->cell_align;
  150. dst->rs_mpu = src->mpu;
  151. dst->rs_rate = src->rate;
  152. }
  153. static inline void rtnl_rcopy_ratespec(struct tc_ratespec *dst,
  154. struct rtnl_ratespec *src)
  155. {
  156. dst->cell_log = src->rs_cell_log;
  157. dst->overhead = src->rs_overhead;
  158. dst->cell_align = src->rs_cell_align;
  159. dst->mpu = src->rs_mpu;
  160. dst->rate = src->rs_rate;
  161. }
  162. static inline char *nl_cache_name(struct nl_cache *cache)
  163. {
  164. return cache->c_ops ? cache->c_ops->co_name : "unknown";
  165. }
  166. #define GENL_FAMILY(id, name) \
  167. { \
  168. { id, NL_ACT_UNSPEC, name }, \
  169. END_OF_MSGTYPES_LIST, \
  170. }
  171. static inline int wait_for_ack(struct nl_sock *sk)
  172. {
  173. if (sk->s_flags & NL_NO_AUTO_ACK)
  174. return 0;
  175. else
  176. return nl_wait_for_ack(sk);
  177. }
  178. static inline int build_sysconf_path(char **strp, const char *filename)
  179. {
  180. char *sysconfdir;
  181. sysconfdir = getenv("NLSYSCONFDIR");
  182. if (!sysconfdir)
  183. sysconfdir = SYSCONFDIR;
  184. return asprintf(strp, "%s/%s", sysconfdir, filename);
  185. }
  186. #ifndef DISABLE_PTHREADS
  187. #define NL_LOCK(NAME) pthread_mutex_t (NAME) = PTHREAD_MUTEX_INITIALIZER
  188. #define NL_RW_LOCK(NAME) pthread_rwlock_t (NAME) = PTHREAD_RWLOCK_INITIALIZER
  189. static inline void nl_lock(pthread_mutex_t *lock)
  190. {
  191. pthread_mutex_lock(lock);
  192. }
  193. static inline void nl_unlock(pthread_mutex_t *lock)
  194. {
  195. pthread_mutex_unlock(lock);
  196. }
  197. static inline void nl_read_lock(pthread_rwlock_t *lock)
  198. {
  199. pthread_rwlock_rdlock(lock);
  200. }
  201. static inline void nl_read_unlock(pthread_rwlock_t *lock)
  202. {
  203. pthread_rwlock_unlock(lock);
  204. }
  205. static inline void nl_write_lock(pthread_rwlock_t *lock)
  206. {
  207. pthread_rwlock_wrlock(lock);
  208. }
  209. static inline void nl_write_unlock(pthread_rwlock_t *lock)
  210. {
  211. pthread_rwlock_unlock(lock);
  212. }
  213. #else
  214. #define NL_LOCK(NAME) int __unused_lock_ ##NAME __attribute__((unused))
  215. #define NL_RW_LOCK(NAME) int __unused_lock_ ##NAME __attribute__((unused))
  216. #define nl_lock(LOCK) do { } while(0)
  217. #define nl_unlock(LOCK) do { } while(0)
  218. #define nl_read_lock(LOCK) do { } while(0)
  219. #define nl_read_unlock(LOCK) do { } while(0)
  220. #define nl_write_lock(LOCK) do { } while(0)
  221. #define nl_write_unlock(LOCK) do { } while(0)
  222. #endif
  223. #endif