OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
gmph_private.h
Go to the documentation of this file.
1 /* $Id: gmph_private.h 493569 2012-01-28 13:26:58Z ib-builder $
2  *
3  * gmph_private.h - Private definitions for GMP Host support
4  *
5  * Dave Katz, March 2008
6  *
7  * Copyright (c) 2008, Juniper Networks, Inc.
8  * All rights reserved.
9  */
10 
11 #ifndef __GMPH_PRIVATE_H__
12 #define __GMPH_PRIVATE_H__
13 
14 /*
15  * This module defines the private data structures for GMP host support.
16  * This file should only be used by the gmp_host code.
17  */
18 
19 /*
20  * Instance entry
21  *
22  * The instance block contains global storage for GMP host support. This
23  * is primarily to ensure that the code remains reentrant (no fixed storage.)
24  * It also allows multiple instances of this code to be running, though the
25  * semantics of that are beyond the scope of this code.
26  *
27  * Note that the tree of interfaces will not be in lexicographic order
28  * by interface ID on little-endian machines.
29  */
30 typedef struct gmph_instance_ {
31  u_int32_t hinst_magic; /* Magic number for robustness */
32  task_thread hinst_thread; /* Link on global instance thread */
33  task_thread hinst_client_thread; /* Head of client thread */
34  gmp_addr_catalog hinst_addr_cat; /* Address catalog */
35 
36  void *hinst_context; /* External context */
37 
38  gmpx_patroot *hinst_intfs; /* Tree of interfaces */
39  gmp_proto hinst_proto; /* Protocol (IGMP/MLD) */
40  u_int hinst_addrlen; /* Address length (v4 or v6) */
41  gmpx_timer *hinst_master_clock; /* Timer for timekeeping */
43 
44 THREAD_TO_STRUCT(gmph_thread_to_instance, gmph_instance, hinst_thread);
45 
46 #define GMPH_INSTANCE_MAGIC 0x48696E73 /* 'Hins' */
47 
48 
49 /* An enum to define report types. */
50 
51 typedef enum {
52  GMP_CHANGE_RECORD, /* Change record */
53  GMP_CURRENT_STATE /* Current state */
55 
56 
57 /*
58  * Interface entry
59  *
60  * One of these entries is created for every interface mentioned by a client.
61  * It is stored on a patricia tree in the instance, keyed by interface index.
62  *
63  * There are a couple of fields associated with pending transmissions on the
64  * interface. hintf_pending_xmit_count keeps track of the number of groups
65  * and sources that will eventually need transmission (this may not happen
66  * until the expiration of a timer or somesuch.) When this goes to zero, the
67  * interface is completely quiescent. hintf_xmit_pending is set when there is
68  * a packet pending immediate transmission.
69  *
70  * For doing soft detachs (waiting for all pending transmissions to go out)
71  * the flow is a bit complex. The hintf_pending_xmit_count field keeps track
72  * of the number of groups that have pending transmissions associated with
73  * them. When gmph_detach_intf_soft() is called, we delay detaching the
74  * interface (and thus destroying it) until hintf_pending_xmit_count goes
75  * to zero.
76  *
77  * hintf_pending_xmit_count in turn represents the number of groups in which
78  * the hgroup_xmit_pending flag is set. See the comments below in the
79  * definition of gmph_group about how this works.
80  */
81 typedef struct gmph_intf_ {
82  gmph_instance *hintf_instance; /* Owning instance */
83  gmpx_patnode hintf_inst_patnode; /* Node on instance tree */
84  gmpx_patnode hintf_global_patnode; /* Node on global tree */
85  gmpx_intf_id hintf_id; /* Interface ID */
86  gmp_addr_string hintf_local_addr; /* Local interface address */
87 
88  task_thread hintf_xmit_head; /* Head of xmit groups */
89  gmph_report_type hintf_last_report_type; /* Last report type sent */
90 
91  gmp_version hintf_ver; /* GMP version running */
92  gmp_version hintf_cfg_ver; /* Configured max version */
93  u_int8_t hintf_robustness; /* Robustness variable */
94 
95  u_int32_t hintf_unsol_rpt_ivl; /* Unsolicited report ivl (msec) */
96 
97  gmpx_patroot *hintf_group_root; /* Root of aggregated group records */
98 
99  gmpx_timer *hintf_gen_query_timer; /* General query response timer */
100  gmpx_timer *hintf_basic_querier; /* Basic version querier present */
101  gmpx_timer *hintf_leaves_querier; /* Leaves version querier present */
102  gmpx_timer *hintf_soft_detach_timer; /* Deferral for soft detach */
103 
104  u_int32_t hintf_last_query_time; /* Time of last query */
105 
107  /* Callback after soft detach */
108  void *hintf_soft_detach_context; /* User-supplied context */
109 
110  u_int32_t hintf_pending_xmit_count; /* # of groups and srcs pending xmit */
111 
112  boolean hintf_suppress_reports; /* TRUE if report suppression is on */
113  boolean hintf_xmit_pending; /* TRUE if we have a pending xmit */
114  boolean hintf_passive; /* TRUE if passive (no xmits) */
115 } gmph_intf;
116 
117 GMPX_PATNODE_TO_STRUCT(gmph_inst_patnode_to_intf, gmph_intf,
118  hintf_inst_patnode);
119 GMPX_PATNODE_TO_STRUCT(gmph_global_patnode_to_intf, gmph_intf,
120  hintf_global_patnode);
121 
122 
123 /*
124  * Report message address entry
125  *
126  * This structure represents a single source address on the interface
127  * Allow and Block lists. It consists of an address entry structure
128  * plus a retransmission count, so we can keep track of how many times
129  * the individual address needs to be mentioned in a Report message.
130  */
132 {
133  gmp_addr_list_entry msg_addr_entry; /* Address entry */
134  u_int msg_rexmit_count; /* Retransmission count */
136 
137 EMBEDDED_STRUCT_TO_STRUCT(gmph_addr_list_to_group_list,
139  msg_addr_entry);
140 
141 
142 /*
143  * Group entry
144  *
145  * This data structure defines the group record for an interface. This
146  * is the aggregated state from the individual client groups, and should
147  * not be confused with them.
148  *
149  * There are several address lists attached to the group entry. They are:
150  *
151  * hgroup_src_addr_list
152  * The list of addresses currently being excluded or included on the
153  * interface; together with the filter mode they represent the group
154  * state on the interface. The address entries are generic.
155  *
156  * The transmit thread through this list contains all sources pending
157  * transmission in response to a general or GS query.
158  *
159  * hgroup_allow_list
160  * The list of addresses to be transmitted in ALLOW or TO_IN records.
161  * Any source entry that remains to be (re)transmitted will be found
162  * here. The address entries are of type gmph_rpt_msg_addr_entry, as
163  * they contain the retransmit count along with the address itself.
164  *
165  * The transmit thread through this list contains all sources pending
166  * transmission in a state-change report.
167  *
168  * hgroup_block_list
169  * Same as hintf_allow_list, except for BLOCK or TO_EX records.
170  *
171  * hgroup_query_list
172  * The list of addresses being queried by the querier. The transmit
173  * thread represents sources to be contained in replies to GSS
174  * queries. The address entries are generic.
175  *
176  *
177  * Flags
178  *
179  * hgroup_change_msg_due
180  * This flag indicates that a change message is due now for a
181  * group. The flag is set when the change timer expires for the
182  * group, and is cleared when all sources have been put into an
183  * outgoing packet for the group (if there are many sources, they
184  * may be split across multiple packets).
185  *
186  * hgroup_reply_due
187  * This flag indicates that a reply to a query is due now for a group.
188  * The flag is set when the query response timer expires for the group,
189  * and is cleared when everything for a group has been put into an
190  * outgoing packet.
191  *
192  * hgroup_gss_reply_due
193  * This flag indicates that a reply to a group-and-source-specific
194  * query is now due for a group. The flag is set when the group
195  * query response timer expires for the group, and is cleared when
196  * everything requested by the query has been put into an outgoing
197  * packet. The hgroup_reply_due flag is always set if this flag is
198  * also set.
199  *
200  * hgroup_xmit_pending
201  * This flag indicates that some kind of packet transmission is pending
202  * for this group (though it may be deferred by a timer.) This flag
203  * also notes that the interface hintf_xmit_pending_count has been
204  * incremented for the group. It is set whenever an action takes place
205  * that triggers a packet transmission, and is cleared when the group
206  * is completely quiescent (which causes hintf_xmit_pending_count to be
207  * decremented).
208  *
209  *
210  * Pending Transmissions
211  *
212  * gmph_detach_intf_soft() waits for hintf_pending_xmit_count to go to
213  * zero. This field represents the number of groups that have the
214  * hgroup_xmit_pending flag set.
215  *
216  * hgroup_xmit_pending is set if any of the following are true:
217  *
218  * . hgroup_query_timer is running (we will be replying to a GS/GSS query)
219  * . hgroup_change_rpt_timer is running (we will be sending a change message)
220  * . hgroup_change_msg_due is set (we will be sending a change message shortly)
221  * . hgroup_reply_due is set (we need to send a reply to a GS query)
222  * . The group is on the interface xmit thread (we're about to send a report)
223  *
224  * hgroup_xmit_pending remains set until *none* of the above conditions are
225  * true (the group has gone quiescent.) At that point it will be cleared,
226  * and hintf_pending_xmit_count will be decremented.
227  *
228  * We do limited refcounting to avoid double-freeing this structure
229  * as a side effect of transmitting change reports.
230  */
231 
232 typedef struct gmph_group_ {
233 
234  /* Linkages */
235 
236  task_thread hgroup_client_thread; /* Head of thread of client groups */
237  gmph_intf *hgroup_intf; /* Pointer back to interface */
238  gmpx_patnode hgroup_intf_patnode; /* Node on interface tree of groups */
239 
240  /* Group state */
241 
242  gmp_addr_string hgroup_addr; /* Group address */
243  gmp_filter_mode hgroup_filter_mode; /* Include/Exclude */
244  gmp_addr_list hgroup_src_addr_list; /* Source address list */
245 
246  /* State-change report stuff */
247 
248  gmp_addr_list hgroup_allow_list; /* List of Allow entries to send */
249  gmp_addr_list hgroup_block_list; /* List of Block entries to send */
250 
251  gmpx_timer *hgroup_change_rpt_timer; /* Timer for sending change reports */
252  u_int hgroup_mode_change_rexmit_count; /* Mode change retransmit count */
253 
254  /* Query reply stuff */
255 
256  gmpx_timer *hgroup_query_timer; /* For replying to group queries */
257  gmp_addr_list hgroup_query_list; /* Addresses to which we must reply */
258  boolean hgroup_last_reporter; /* TRUE if we were last to report */
259 
260  /* Transmission stuff */
261 
262  task_thread hgroup_xmit_thread; /* Entry on intf transmit list */
263  boolean hgroup_change_msg_due; /* TRUE if we need to send chg msg */
264  boolean hgroup_reply_due; /* TRUE if we need to send a reply */
265  boolean hgroup_gss_reply_due; /* TRUE if sending a GSS reply */
266  boolean hgroup_xmit_pending; /* TRUE if pending transmission */
267 
268  /* Ref counting */
269  boolean hgroup_is_deleted; /* Deleted, but locked */
270  u_int8_t hgroup_lock_count; /* Lock count */
271 } gmph_group;
272 
273 GMPX_PATNODE_TO_STRUCT(gmph_intf_patnode_to_group, gmph_group,
274  hgroup_intf_patnode);
275 THREAD_TO_STRUCT(gmph_xmit_thread_to_group, gmph_group, hgroup_xmit_thread);
276 
277 #define GMPH_INITIAL_REPORT_JITTER 0 /* Percent jitter for initial packet */
278 #define GMPH_REPORT_REXMIT_JITTER 100 /* Percent jitter for retransmission */
279 #define GMPH_QUERY_REPLY_JITTER 100 /* Percent jitter for replies */
280 
281 
282 /*
283  * Group set operation context block
284  *
285  * This block contains the context for address list set operations.
286  */
287 typedef struct gmph_group_set_context_ {
288  gmph_group *ctx_group; /* Group pointer */
289  gmp_addr_list *ctx_add_list; /* List to add to */
290  gmp_addr_list *ctx_del_list; /* List to delete from */
292 
293 
294 /*
295  * Client entry
296  *
297  * Each client has an associated data structure that tracks its associated
298  * state.
299  *
300  * Note that the patricia tree will not be in lexicographic order by interface
301  * ID on little-endian machines.
302  */
303 typedef struct gmph_client_ {
304  u_int32_t hclient_magic; /* Magic number for robustness */
305  gmph_instance *hclient_instance; /* Owning instance */
306  task_thread hclient_thread; /* Link on instance client thread */
307  gmpx_patroot *hclient_group_root; /* Root of client group requests */
308 } gmph_client;
309 
310 THREAD_TO_STRUCT(gmph_thread_to_client, gmph_client, hclient_thread);
311 
312 #define GMPH_CLIENT_MAGIC 0x48636A69 /* 'Hcli' */
313 
314 
315 /*
316  * Client group entry
317  *
318  * This data structure represents the requested group state for an individual
319  * client. The combined state of a group address across all clients is
320  * what gets advertised in the protocol.
321  *
322  * This structure is accessed two ways. First, it is on a patricia tree
323  * rooted at the client, indexed by interface ID and group address. Second,
324  * it is on a thread of entries for the same group from different clients.
325  *
326  * The set of addresses is represented by a bit vector.
327  */
328 typedef struct gmph_client_group_key_ {
329  gmpx_intf_id group_key_intf_id; /* Interface ID */
330  gmp_addr_string group_key_addr; /* Group address */
332 
333 typedef struct gmph_client_group_ {
334  gmph_client *client_group_client; /* Pointer back to owning client */
335  gmph_group *client_group_group; /* Pointer to group entry */
336  gmpx_patnode client_group_node; /* Node on client tree of groups */
337  task_thread client_group_thread; /* Node on group thread of cli grps */
339  gmp_filter_mode client_filter_mode; /* Include/Exclude */
340  gmp_addr_vect client_addr_vect; /* Source address vector */
342 
343 GMPX_PATNODE_TO_STRUCT(gmph_patnode_to_client_group, gmph_client_group,
344  client_group_node);
345 THREAD_TO_STRUCT(gmph_thread_to_client_group, gmph_client_group,
346  client_group_thread);
347 
348 #define client_group_intf_id client_group_key.group_key_intf_id
349 #define client_group_addr client_group_key.group_key_addr
350 
351 
352 /*
353  * gmph_client_group_key_len
354  *
355  * Returns the client group key length, which is based on the protocol
356  * in use (IGMP or MLD).
357  */
358 static inline u_int
360 {
361  u_int length;
362 
363  if (instance->hinst_proto == GMP_PROTO_IGMP)
364  length = sizeof(gmph_client_group_key) -
366  else
367  length = sizeof(gmph_client_group_key);
368 
369  return length;
370 }
371 
372 
373 /*
374  * gmph_group_is_active
375  *
376  * Returns TRUE if the group is active, or FALSE if not.
377  */
378 static inline boolean
380 {
381  /* Active if in Exclude mode. */
382 
384  return TRUE;
385 
386  /* Active if there are any sources. */
387 
389  return TRUE;
390 
391  return FALSE;
392 }
393 
394 
395 /*
396  * gmph_intf_shutting_down
397  *
398  * Returns TRUE if the interface is in the process of a soft detach, or
399  * FALSE if not.
400  */
401 static inline boolean
403 {
404  return (intf->hintf_soft_detach_callback != NULL);
405 }
406 
407 
408 /*
409  * Externals
410  */
420 
421 
422 /* gmph_instance.c */
423 
425  void *inst_context);
426 extern gmph_instance *gmph_get_instance(gmp_instance_id instance_id);
427 extern void gmph_instance_destroy(gmph_instance *instance);
428 
429 /* gmph_client.c */
430 
431 extern gmph_client *gmph_create_client(gmph_instance *instance);
432 extern gmph_client *gmph_get_client(gmp_client_id client_id);
433 extern void gmph_destroy_client(gmph_client *client);
435  gmpx_intf_id intf_id,
436  const u_int8_t *group);
437 extern void gmph_destroy_client_group(gmph_client_group *client_group,
438  boolean evaluate_group);
439 extern void gmph_destroy_intf_client_groups(gmph_client *client,
440  gmph_intf *intf);
441 extern gmph_client_group *
443  gmph_group *group, const u_int8_t *group_addr,
444  gmp_filter_mode filter_mode,
445  gmp_addr_thread *addr_thread);
446 extern void gmph_destroy_group_client_groups(gmph_group *group);
447 extern void gmph_destroy_instance_clients(gmph_instance *instance);
448 
449 /* gmph_intf.c */
450 
451 extern void gmph_intf_evaluate_version(gmph_intf *intf);
452 extern gmph_intf *gmph_intf_lookup(gmph_instance *instance,
453  gmpx_intf_id intf_id);
455  gmpx_intf_id intf_id);
456 extern void gmph_kick_xmit(gmph_intf *intf);
457 extern int gmph_attach_intf_internal(gmph_instance *instance,
458  gmpx_intf_id intf_id);
459 extern int gmph_detach_intf_internal(gmph_instance *instance,
460  gmpx_intf_id intf_id,
461  gmph_soft_detach_callback callback,
462  void *context);
463 extern void gmph_attempt_intf_free(gmph_intf *intf);
464 extern void gmph_destroy_instance_intfs(gmph_instance *instance);
465 extern void gmph_start_general_query_timer(gmph_intf *intf, u_int32_t ivl,
466  u_int jitter_pct);
469 
470 /* gmph_group.c */
471 
472 extern int gmph_reevaluate_group(gmph_group *group);
474  const u_int8_t *group);
475 extern gmph_group *gmph_group_lookup(gmph_intf *intf, const u_int8_t *group);
477 extern gmph_group *gmph_group_create(gmph_intf *intf, const u_int8_t *group);
481 extern void gmph_dequeue_group_xmit(gmph_group *group);
482 extern void gmph_delete_rpt_addr_entry(gmph_rpt_msg_addr_entry *report_entry);
483 extern void gmph_attempt_group_free(gmph_group *group);
484 extern void gmph_destroy_intf_groups(gmph_intf *intf);
485 extern void gmph_enqueue_group_xmit(gmph_group *group);
486 extern boolean gmph_group_xmit_pending(gmph_group *group);
487 extern void gmph_set_report_entry_rexmit(gmph_group *group,
488  gmp_addr_list_entry *addr_entry);
489 extern boolean gmph_group_source_requested(gmph_group *group,
490  const u_int8_t *source_addr);
491 extern void gmph_mark_pending_group_xmit(gmph_group *group);
492 extern void gmph_unmark_pending_group_xmit(gmph_group *group, boolean force);
493 extern void gmph_start_change_rpt_timer(gmph_group *group, u_int32_t ivl,
494  u_int jitter_pct);
495 extern void gmph_start_query_timer(gmph_group *group, u_int32_t ivl,
496  u_int jitter_pct);
497 
498 extern void gmph_lock_group (gmph_group *group);
499 extern boolean gmph_unlock_group (gmph_group *group);
500 
501 /* gmph_engine.c */
502 
503 extern void gmph_register_packet_handler(void);
504 extern void gmph_version_changed(gmph_instance *instance, gmph_intf *intf);
507  void *context);
508 extern void gmph_group_query_timer_expiry(gmpx_timer *timer, void *context);
509 
510 #endif /* __GMPH_PRIVATE_H__ */
void gmph_start_query_timer(gmph_group *group, u_int32_t ivl, u_int jitter_pct)
void gmph_destroy_intf_groups(gmph_intf *intf)
boolean hgroup_is_deleted
Definition: gmph_private.h:269
static u_int gmph_client_group_key_len(gmph_instance *instance)
Definition: gmph_private.h:359
gmph_report_type
Definition: gmph_private.h:51
void gmph_unmark_pending_group_xmit(gmph_group *group, boolean force)
task_thread hinst_client_thread
Definition: gmph_private.h:33
void gmph_destroy_group_client_groups(gmph_group *group)
struct gmph_group_set_context_ gmph_group_set_context
boolean hintf_suppress_reports
Definition: gmph_private.h:112
gmpx_block_tag gmph_intf_tag
void gmph_start_change_rpt_timer(gmph_group *group, u_int32_t ivl, u_int jitter_pct)
#define EMBEDDED_STRUCT_TO_STRUCT(procname, outerstruct, innerstruct, field)
Definition: gmp_private.h:28
gmph_client_group * gmph_create_client_group(gmph_intf *intf, gmph_client *client, gmph_group *group, const u_int8_t *group_addr, gmp_filter_mode filter_mode, gmp_addr_thread *addr_thread)
#define TRUE
Definition: mcast_common.h:15
void gmph_intf_evaluate_version(gmph_intf *intf)
gmpx_timer * hintf_leaves_querier
Definition: gmph_private.h:101
struct gmph_client_group_key_ gmph_client_group_key
gmpx_timer * hintf_soft_detach_timer
Definition: gmph_private.h:102
void gmph_group_query_timer_expiry(gmpx_timer *timer, void *context)
gmpx_patroot * gmph_global_intf_tree[]
gmph_client * gmph_create_client(gmph_instance *instance)
boolean hintf_xmit_pending
Definition: gmph_private.h:113
boolean gmph_unlock_group(gmph_group *group)
void gmph_lock_group(gmph_group *group)
void * gmp_instance_id
Definition: gmp.h:32
gmph_instance * gmph_instance_create(gmp_proto proto, void *inst_context)
void gmph_destroy_instance_intfs(gmph_instance *instance)
boolean hgroup_last_reporter
Definition: gmph_private.h:258
#define IPV4_ADDR_LEN
Definition: gmp.h:24
u_int32_t hintf_unsol_rpt_ivl
Definition: gmph_private.h:95
void gmph_destroy_client_group(gmph_client_group *client_group, boolean evaluate_group)
boolean hgroup_gss_reply_due
Definition: gmph_private.h:265
gmp_version
Definition: gmp_private.h:42
gmp_filter_mode client_filter_mode
Definition: gmph_private.h:339
boolean hgroup_reply_due
Definition: gmph_private.h:264
gmpx_block_tag gmph_group_rpt_entry_tag
gmpx_block_tag gmph_instance_tag
u_int hgroup_mode_change_rexmit_count
Definition: gmph_private.h:252
gmp_addr_string hintf_local_addr
Definition: gmph_private.h:86
#define GMPX_PATNODE_TO_STRUCT
#define THREAD_TO_STRUCT(function, structure, member)
void gmph_instance_destroy(gmph_instance *instance)
gmpx_patnode hintf_inst_patnode
Definition: gmph_private.h:83
gmph_client_group_key client_group_key
Definition: gmph_private.h:338
gmph_report_type hintf_last_report_type
Definition: gmph_private.h:89
#define FALSE
Definition: mcast_common.h:14
gmph_group * gmph_group_lookup(gmph_intf *intf, const u_int8_t *group)
gmp_addr_string hgroup_addr
Definition: gmph_private.h:242
gmp_proto
Definition: gmp.h:45
struct gmph_intf_ gmph_intf
gmpx_block_tag gmph_group_tag
u_int32_t hintf_pending_xmit_count
Definition: gmph_private.h:110
gmpx_timer * hinst_master_clock
Definition: gmph_private.h:41
void gmph_version_changed(gmph_instance *instance, gmph_intf *intf)
gmph_client_group * gmph_lookup_client_group(gmph_client *client, gmpx_intf_id intf_id, const u_int8_t *group)
void gmph_intf_decrement_pending_xmit_count(gmph_intf *)
struct gmph_instance_ gmph_instance
struct gmph_group_ gmph_group
gmp_addr_string group_key_addr
Definition: gmph_private.h:330
gmph_intf * hgroup_intf
Definition: gmph_private.h:237
gmp_version hintf_cfg_ver
Definition: gmph_private.h:92
Definition: gmph_private.h:131
void * hintf_soft_detach_context
Definition: gmph_private.h:108
gmph_instance * hclient_instance
Definition: gmph_private.h:305
gmpx_timer * gmph_create_change_report_timer(gmph_group *group)
gmph_group * gmph_first_group_xmit(gmph_intf *intf)
task_thread hinst_thread
Definition: gmph_private.h:32
gmph_group * gmph_next_group_xmit(gmph_group *group)
gmp_addr_list * ctx_add_list
Definition: gmph_private.h:289
task_thread gmph_global_instance_thread
task_thread hclient_thread
Definition: gmph_private.h:306
gmpx_timer * hgroup_query_timer
Definition: gmph_private.h:256
boolean gmph_group_xmit_pending(gmph_group *group)
gmpx_timer * hgroup_change_rpt_timer
Definition: gmph_private.h:251
gmp_addr_list hgroup_block_list
Definition: gmph_private.h:249
#define gmpx_block_tag
void gmph_start_general_query_timer(gmph_intf *intf, u_int32_t ivl, u_int jitter_pct)
void gmph_set_report_entry_rexmit(gmph_group *group, gmp_addr_list_entry *addr_entry)
gmpx_intf_id hintf_id
Definition: gmph_private.h:85
gmp_addr_list_entry msg_addr_entry
Definition: gmph_private.h:133
boolean hgroup_change_msg_due
Definition: gmph_private.h:263
void gmph_mark_pending_group_xmit(gmph_group *group)
gmph_instance * hintf_instance
Definition: gmph_private.h:82
gmph_group * client_group_group
Definition: gmph_private.h:335
void gmph_delete_rpt_addr_entry(gmph_rpt_msg_addr_entry *report_entry)
gmpx_block_tag gmph_client_group_tag
gmp_filter_mode hgroup_filter_mode
Definition: gmph_private.h:243
boolean gmp_addr_list_empty(gmp_addr_list *list)
u_int hinst_addrlen
Definition: gmph_private.h:40
u_int32_t hintf_last_query_time
Definition: gmph_private.h:104
void(* gmph_soft_detach_callback)(gmp_proto proto, gmpx_intf_id intf_id, void *context)
Definition: gmp_host.h:211
gmph_group * gmph_group_create(gmph_intf *intf, const u_int8_t *group)
gmph_client * gmph_get_client(gmp_client_id client_id)
task_thread hintf_xmit_head
Definition: gmph_private.h:88
gmp_version hintf_ver
Definition: gmph_private.h:91
gmph_soft_detach_callback hintf_soft_detach_callback
Definition: gmph_private.h:106
void gmph_destroy_intf_client_groups(gmph_client *client, gmph_intf *intf)
struct gmph_client_group_ gmph_client_group
u_int32_t hclient_magic
Definition: gmph_private.h:304
gmpx_patnode client_group_node
Definition: gmph_private.h:336
gmpx_block_tag gmph_client_tag
#define gmpx_patroot
static boolean gmph_intf_shutting_down(gmph_intf *intf)
Definition: gmph_private.h:402
void gmph_attempt_group_free(gmph_group *group)
struct gmph_rpt_msg_addr_entry_ gmph_rpt_msg_addr_entry
gmpx_timer * hintf_gen_query_timer
Definition: gmph_private.h:99
task_thread client_group_thread
Definition: gmph_private.h:337
gmpx_timer * hintf_basic_querier
Definition: gmph_private.h:100
void gmph_register_packet_handler(void)
int gmph_detach_intf_internal(gmph_instance *instance, gmpx_intf_id intf_id, gmph_soft_detach_callback callback, void *context)
gmph_group * gmph_group_lookup_first(gmph_intf *intf)
Definition: gmp_private.h:206
gmph_group * gmph_group_lookup_create(gmph_intf *, const u_int8_t *group)
boolean gmph_group_source_requested(gmph_group *group, const u_int8_t *source_addr)
gmp_addr_list hgroup_src_addr_list
Definition: gmph_private.h:244
void gmph_destroy_client(gmph_client *client)
u_int8_t hintf_robustness
Definition: gmph_private.h:93
void * hinst_context
Definition: gmph_private.h:36
u_int msg_rexmit_count
Definition: gmph_private.h:134
u_int8_t hgroup_lock_count
Definition: gmph_private.h:270
gmpx_patnode hgroup_intf_patnode
Definition: gmph_private.h:238
void gmph_group_change_report_timer_expiry(gmpx_timer *timer, void *context)
gmp_addr_list * ctx_del_list
Definition: gmph_private.h:290
struct gmph_client_ gmph_client
void gmph_enqueue_group_xmit(gmph_group *group)
gmpx_patroot * hintf_group_root
Definition: gmph_private.h:97
#define gmpx_patnode
gmp_addr_list hgroup_query_list
Definition: gmph_private.h:257
int gmph_attach_intf_internal(gmph_instance *instance, gmpx_intf_id intf_id)
gmpx_patroot * hclient_group_root
Definition: gmph_private.h:307
int gmph_reevaluate_group(gmph_group *group)
gmp_proto hinst_proto
Definition: gmph_private.h:39
void gmph_dequeue_group_xmit(gmph_group *group)
gmp_filter_mode
Definition: gmp.h:66
gmph_intf * gmph_intf_lookup(gmph_instance *instance, gmpx_intf_id intf_id)
gmp_addr_catalog hinst_addr_cat
Definition: gmph_private.h:34
static boolean gmph_group_is_active(gmph_group *group)
Definition: gmph_private.h:379
gmpx_intf_id group_key_intf_id
Definition: gmph_private.h:329
void gmph_intf_increment_pending_xmit_count(gmph_intf *)
gmp_addr_vect client_addr_vect
Definition: gmph_private.h:340
gmph_client * client_group_client
Definition: gmph_private.h:334
u_int32_t hinst_magic
Definition: gmph_private.h:31
#define IPV6_ADDR_LEN
Definition: gmp.h:25
void gmph_destroy_instance_clients(gmph_instance *instance)
boolean hgroup_xmit_pending
Definition: gmph_private.h:266
boolean hintf_passive
Definition: gmph_private.h:114
gmp_addr_list hgroup_allow_list
Definition: gmph_private.h:248
gmph_instance * gmph_get_instance(gmp_instance_id instance_id)
gmph_intf * gmph_intf_lookup_global(gmp_proto proto, gmpx_intf_id intf_id)
void gmph_kick_xmit(gmph_intf *intf)
void gmph_attempt_intf_free(gmph_intf *intf)
void * gmp_client_id
Definition: gmp.h:39
void gmph_group_general_query_timer_expiry(gmph_group *group)
task_thread hgroup_client_thread
Definition: gmph_private.h:236
gmpx_block_tag gmph_client_group_thread_tag
gmpx_patnode hintf_global_patnode
Definition: gmph_private.h:84
gmpx_patroot * hinst_intfs
Definition: gmph_private.h:38
task_thread hgroup_xmit_thread
Definition: gmph_private.h:262