cache.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*
  2. * netlink/cache.h Caching Module
  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-2012 Thomas Graf <tgraf@suug.ch>
  10. */
  11. #ifndef NETLINK_CACHE_H_
  12. #define NETLINK_CACHE_H_
  13. #include <netlink/netlink.h>
  14. #include <netlink/msg.h>
  15. #include <netlink/utils.h>
  16. #include <netlink/object.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. enum {
  21. NL_ACT_UNSPEC,
  22. NL_ACT_NEW,
  23. NL_ACT_DEL,
  24. NL_ACT_GET,
  25. NL_ACT_SET,
  26. NL_ACT_CHANGE,
  27. __NL_ACT_MAX,
  28. };
  29. #define NL_ACT_MAX (__NL_ACT_MAX - 1)
  30. struct nl_cache;
  31. typedef void (*change_func_t)(struct nl_cache *, struct nl_object *, int, void *);
  32. /**
  33. * @ingroup cache
  34. * Explicitely iterate over all address families when updating the cache
  35. */
  36. #define NL_CACHE_AF_ITER 0x0001
  37. /* Access Functions */
  38. extern int nl_cache_nitems(struct nl_cache *);
  39. extern int nl_cache_nitems_filter(struct nl_cache *,
  40. struct nl_object *);
  41. extern struct nl_cache_ops * nl_cache_get_ops(struct nl_cache *);
  42. extern struct nl_object * nl_cache_get_first(struct nl_cache *);
  43. extern struct nl_object * nl_cache_get_last(struct nl_cache *);
  44. extern struct nl_object * nl_cache_get_next(struct nl_object *);
  45. extern struct nl_object * nl_cache_get_prev(struct nl_object *);
  46. extern struct nl_cache * nl_cache_alloc(struct nl_cache_ops *);
  47. extern int nl_cache_alloc_and_fill(struct nl_cache_ops *,
  48. struct nl_sock *,
  49. struct nl_cache **);
  50. extern int nl_cache_alloc_name(const char *,
  51. struct nl_cache **);
  52. extern struct nl_cache * nl_cache_subset(struct nl_cache *,
  53. struct nl_object *);
  54. extern struct nl_cache * nl_cache_clone(struct nl_cache *);
  55. extern void nl_cache_clear(struct nl_cache *);
  56. extern void nl_cache_get(struct nl_cache *);
  57. extern void nl_cache_free(struct nl_cache *);
  58. extern void nl_cache_put(struct nl_cache *cache);
  59. /* Cache modification */
  60. extern int nl_cache_add(struct nl_cache *,
  61. struct nl_object *);
  62. extern int nl_cache_parse_and_add(struct nl_cache *,
  63. struct nl_msg *);
  64. extern int nl_cache_move(struct nl_cache *,
  65. struct nl_object *);
  66. extern void nl_cache_remove(struct nl_object *);
  67. extern int nl_cache_refill(struct nl_sock *,
  68. struct nl_cache *);
  69. extern int nl_cache_pickup(struct nl_sock *,
  70. struct nl_cache *);
  71. extern int nl_cache_pickup_checkdup(struct nl_sock *,
  72. struct nl_cache *);
  73. extern int nl_cache_resync(struct nl_sock *,
  74. struct nl_cache *,
  75. change_func_t,
  76. void *);
  77. extern int nl_cache_include(struct nl_cache *,
  78. struct nl_object *,
  79. change_func_t,
  80. void *);
  81. extern void nl_cache_set_arg1(struct nl_cache *, int);
  82. extern void nl_cache_set_arg2(struct nl_cache *, int);
  83. extern void nl_cache_set_flags(struct nl_cache *, unsigned int);
  84. /* General */
  85. extern int nl_cache_is_empty(struct nl_cache *);
  86. extern struct nl_object * nl_cache_search(struct nl_cache *,
  87. struct nl_object *);
  88. extern struct nl_object *nl_cache_find(struct nl_cache *,
  89. struct nl_object *);
  90. extern void nl_cache_mark_all(struct nl_cache *);
  91. /* Dumping */
  92. extern void nl_cache_dump(struct nl_cache *,
  93. struct nl_dump_params *);
  94. extern void nl_cache_dump_filter(struct nl_cache *,
  95. struct nl_dump_params *,
  96. struct nl_object *);
  97. /* Iterators */
  98. extern void nl_cache_foreach(struct nl_cache *,
  99. void (*cb)(struct nl_object *,
  100. void *),
  101. void *arg);
  102. extern void nl_cache_foreach_filter(struct nl_cache *,
  103. struct nl_object *,
  104. void (*cb)(struct
  105. nl_object *,
  106. void *),
  107. void *arg);
  108. /* --- cache management --- */
  109. /* Cache type management */
  110. extern struct nl_cache_ops * nl_cache_ops_lookup(const char *);
  111. extern struct nl_cache_ops * nl_cache_ops_lookup_safe(const char *);
  112. extern struct nl_cache_ops * nl_cache_ops_associate(int, int);
  113. extern struct nl_cache_ops * nl_cache_ops_associate_safe(int, int);
  114. extern struct nl_msgtype * nl_msgtype_lookup(struct nl_cache_ops *, int);
  115. extern void nl_cache_ops_foreach(void (*cb)(struct nl_cache_ops *, void *), void *);
  116. extern int nl_cache_mngt_register(struct nl_cache_ops *);
  117. extern int nl_cache_mngt_unregister(struct nl_cache_ops *);
  118. /* Global cache provisioning/requiring */
  119. extern void nl_cache_mngt_provide(struct nl_cache *);
  120. extern void nl_cache_mngt_unprovide(struct nl_cache *);
  121. extern struct nl_cache * nl_cache_mngt_require(const char *);
  122. extern struct nl_cache * nl_cache_mngt_require_safe(const char *);
  123. extern struct nl_cache * __nl_cache_mngt_require(const char *);
  124. struct nl_cache_mngr;
  125. #define NL_AUTO_PROVIDE 1
  126. #define NL_ALLOCATED_SOCK 2 /* For internal use only, do not use */
  127. extern int nl_cache_mngr_alloc(struct nl_sock *,
  128. int, int,
  129. struct nl_cache_mngr **);
  130. extern int nl_cache_mngr_add(struct nl_cache_mngr *,
  131. const char *,
  132. change_func_t,
  133. void *,
  134. struct nl_cache **);
  135. extern int nl_cache_mngr_add_cache(struct nl_cache_mngr *mngr,
  136. struct nl_cache *cache,
  137. change_func_t cb, void *data);
  138. extern int nl_cache_mngr_get_fd(struct nl_cache_mngr *);
  139. extern int nl_cache_mngr_poll(struct nl_cache_mngr *,
  140. int);
  141. extern int nl_cache_mngr_data_ready(struct nl_cache_mngr *);
  142. extern void nl_cache_mngr_info(struct nl_cache_mngr *,
  143. struct nl_dump_params *);
  144. extern void nl_cache_mngr_free(struct nl_cache_mngr *);
  145. extern void nl_cache_ops_get(struct nl_cache_ops *);
  146. extern void nl_cache_ops_put(struct nl_cache_ops *);
  147. extern void nl_cache_ops_set_flags(struct nl_cache_ops *,
  148. unsigned int);
  149. #ifdef __cplusplus
  150. }
  151. #endif
  152. #endif