IGMP: improve CLI debug output
[vpp.git] / src / plugins / igmp / igmp_config.h
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2018 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #ifndef __IGMP_CONFIG_H__
19 #define __IGMP_CONFIG_H__
20
21 #include <igmp/igmp_types.h>
22 #include <igmp/igmp_timer.h>
23 #include <igmp/igmp_group.h>
24
25 /**
26  * GENERAL_REPORT = On expiry send a general report
27  * GENERAL_QUERY  = On expiry send a general query
28  */
29 #define foreach_igmp_config_timer_type  \
30   _(GENERAL_REPORT, "general-report")   \
31   _(GENERAL_QUERY, "general-query")
32
33 typedef enum igmp_config_timer_type_t_
34 {
35 #define _(v,s) IGMP_CONFIG_TIMER_##v,
36   foreach_igmp_config_timer_type
37 #undef _
38 } igmp_config_timer_type_t;
39
40 #define IGMP_CONFIG_N_TIMERS (IGMP_CONFIG_TIMER_GENERAL_QUERY + 1)
41
42 extern u8 *format_igmp_config_timer_type (u8 * s, va_list * args);
43
44 /**
45  * @brief IGMP interface configuration
46 */
47 typedef struct igmp_config_t_
48 {
49   /**
50    * @param sw_if_index - interface sw_if_index
51    */
52   u32 sw_if_index;
53
54   /**
55    * @param adj_index - multicast adjacency index on the link
56    */
57   adj_index_t adj_index;
58
59   /**
60    * @param mode - host or router
61    */
62   igmp_mode_t mode;
63
64   /**
65    * Robustness variable (section 5.1)
66    */
67   u8 robustness_var;
68
69   /**
70    * Database of groups joined on the link
71    */
72   uword *igmp_group_by_key;
73
74   /**
75    * A vector of scheduled query-response timers
76    */
77   igmp_timer_id_t timers[IGMP_CONFIG_N_TIMERS];
78
79   /**
80    * ID of a proxy device this configuration is on
81    */
82   u32 proxy_device_id;
83 } igmp_config_t;
84
85 #define FOR_EACH_GROUP(_group, _config, _body)                          \
86 do {                                                                    \
87   igmp_key_t *__key__;                                                  \
88   u32 __gid__;                                                          \
89   hash_foreach_mem(__key__, __gid__, _config->igmp_group_by_key,        \
90   ({                                                                    \
91     _group = pool_elt_at_index(igmp_main.groups, __gid__);              \
92     do { _body; } while (0);                                            \
93   }));                                                                  \
94  } while (0);
95
96 /**
97  * @brief igmp clear config
98  *  @param config - igmp configuration
99  *
100  *   Clear all (S,G)s on specified config and remove this config from pool.
101  */
102 extern void igmp_clear_config (igmp_config_t * config);
103
104 /**
105  * @brief igmp config lookup
106  *  @param im - igmp main
107  *  @param sw_if_index - interface sw_if_index
108  */
109 extern igmp_config_t *igmp_config_lookup (u32 sw_if_index);
110
111 /**
112  * Get the pool index for a config
113  */
114 extern u32 igmp_config_index (const igmp_config_t * c);
115
116 /**
117  * Get the config from the pool index
118  */
119 extern igmp_config_t *igmp_config_get (u32 index);
120
121 /**
122  * @brief igmp group lookup
123  *  @param config - igmp configuration
124  *  @param key - igmp key
125 */
126 extern igmp_group_t *igmp_group_lookup (igmp_config_t * config,
127                                         const igmp_key_t * key);
128
129 extern u8 *format_igmp_config (u8 * s, va_list * args);
130
131 #endif
132
133 /*
134  * fd.io coding-style-patch-verification: ON
135  *
136  * Local Variables:
137  * eval: (c-set-style "gnu")
138  * End:
139  */