LCOV - code coverage report
Current view: top level - plugins/lisp/lisp-gpe - lisp_gpe_api.c (source / functions) Hit Total Coverage
Test: coverage-filtered.info Lines: 4 211 1.9 %
Date: 2023-10-26 01:39:38 Functions: 3 24 12.5 %

          Line data    Source code
       1             : /*
       2             :  *------------------------------------------------------------------
       3             :  * lisp_gpe_api.c - lisp_gpe api
       4             :  *
       5             :  * Copyright (c) 2016 Cisco and/or its affiliates.
       6             :  * Licensed under the Apache License, Version 2.0 (the "License");
       7             :  * you may not use this file except in compliance with the License.
       8             :  * You may obtain a copy of the License at:
       9             :  *
      10             :  *     http://www.apache.org/licenses/LICENSE-2.0
      11             :  *
      12             :  * Unless required by applicable law or agreed to in writing, software
      13             :  * distributed under the License is distributed on an "AS IS" BASIS,
      14             :  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      15             :  * See the License for the specific language governing permissions and
      16             :  * limitations under the License.
      17             :  *------------------------------------------------------------------
      18             :  */
      19             : 
      20             : #include <vnet/vnet.h>
      21             : #include <vlibmemory/api.h>
      22             : 
      23             : #include <vnet/interface.h>
      24             : #include <vnet/api_errno.h>
      25             : #include <lisp/lisp-gpe/lisp_gpe.h>
      26             : #include <lisp/lisp-gpe/lisp_gpe_adjacency.h>
      27             : #include <lisp/lisp-gpe/lisp_gpe_tunnel.h>
      28             : #include <lisp/lisp-gpe/lisp_gpe_fwd_entry.h>
      29             : #include <lisp/lisp-gpe/lisp_gpe_tenant.h>
      30             : #include <vnet/fib/fib_table.h>
      31             : #include <vnet/ip/ip_types_api.h>
      32             : #include <vnet/ethernet/ethernet_types_api.h>
      33             : #include <lisp/lisp-gpe/lisp_types_api.h>
      34             : 
      35             : /* define message IDs */
      36             : #include <vnet/format_fns.h>
      37             : #include <lisp/lisp-gpe/lisp_gpe.api_enum.h>
      38             : #include <lisp/lisp-gpe/lisp_gpe.api_types.h>
      39             : 
      40             : /**
      41             :  * Base message ID fot the plugin
      42             :  */
      43             : static u32 gpe_base_msg_id;
      44             : #define REPLY_MSG_ID_BASE gpe_base_msg_id
      45             : 
      46             : #include <vlibapi/api_helper_macros.h>
      47             : 
      48             : static locator_pair_t *
      49           0 : unformat_gpe_loc_pairs (void *locs, u32 rloc_num)
      50             : {
      51             :   u32 i;
      52           0 :   locator_pair_t *pairs = 0, pair, *p;
      53             :   vl_api_gpe_locator_t *r;
      54             : 
      55           0 :   for (i = 0; i < rloc_num; i++)
      56             :     {
      57             :       /* local locator */
      58           0 :       r = &((vl_api_gpe_locator_t *) locs)[i];
      59           0 :       clib_memset (&pair, 0, sizeof (pair));
      60           0 :       ip_address_decode2 (&r->addr, &pair.lcl_loc);
      61             : 
      62           0 :       pair.weight = r->weight;
      63           0 :       vec_add1 (pairs, pair);
      64             :     }
      65             : 
      66           0 :   for (i = rloc_num; i < rloc_num * 2; i++)
      67             :     {
      68             :       /* remote locators */
      69           0 :       r = &((vl_api_gpe_locator_t *) locs)[i];
      70           0 :       p = &pairs[i - rloc_num];
      71           0 :       ip_address_decode2 (&r->addr, &p->rmt_loc);
      72             :     }
      73           0 :   return pairs;
      74             : }
      75             : 
      76             : static void
      77           0 :   gpe_fwd_entry_path_dump_t_net_to_host
      78             :   (vl_api_gpe_fwd_entry_path_dump_t * mp)
      79             : {
      80           0 :   mp->fwd_entry_index = clib_net_to_host_u32 (mp->fwd_entry_index);
      81           0 : }
      82             : 
      83             : static void
      84           0 : lisp_api_set_locator (vl_api_gpe_locator_t * loc,
      85             :                       const ip_address_t * addr, u8 weight)
      86             : {
      87           0 :   loc->weight = weight;
      88           0 :   ip_address_encode2 (addr, &loc->addr);
      89           0 : }
      90             : 
      91             : static void
      92           0 :   vl_api_gpe_fwd_entry_path_dump_t_handler
      93             :   (vl_api_gpe_fwd_entry_path_dump_t * mp)
      94             : {
      95             :   lisp_fwd_path_t *path;
      96           0 :   vl_api_gpe_fwd_entry_path_details_t *rmp = NULL;
      97           0 :   lisp_gpe_main_t *lgm = &lisp_gpe_main;
      98             :   vl_api_registration_t *reg;
      99             :   lisp_gpe_fwd_entry_t *lfe;
     100             : 
     101           0 :   gpe_fwd_entry_path_dump_t_net_to_host (mp);
     102             : 
     103           0 :   reg = vl_api_client_index_to_registration (mp->client_index);
     104           0 :   if (!reg)
     105           0 :     return;
     106             : 
     107           0 :   if (pool_is_free_index (lgm->lisp_fwd_entry_pool, mp->fwd_entry_index))
     108           0 :     return;
     109             : 
     110           0 :   lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, mp->fwd_entry_index);
     111             : 
     112           0 :   if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE == lfe->type)
     113           0 :     return;
     114             : 
     115           0 :   vec_foreach (path, lfe->paths)
     116             :   {
     117           0 :     rmp = vl_msg_api_alloc (sizeof (*rmp));
     118           0 :     clib_memset (rmp, 0, sizeof (*rmp));
     119             :     const lisp_gpe_tunnel_t *lgt;
     120             : 
     121           0 :     rmp->_vl_msg_id =
     122           0 :       clib_host_to_net_u16 (VL_API_GPE_FWD_ENTRY_PATH_DETAILS);
     123             : 
     124             :     const lisp_gpe_adjacency_t *ladj =
     125           0 :       lisp_gpe_adjacency_get (path->lisp_adj);
     126           0 :     lisp_api_set_locator (&rmp->rmt_loc, &ladj->remote_rloc, path->weight);
     127           0 :     lgt = lisp_gpe_tunnel_get (ladj->tunnel_index);
     128           0 :     lisp_api_set_locator (&rmp->lcl_loc, &lgt->key->lcl, path->weight);
     129             : 
     130           0 :     rmp->context = mp->context;
     131           0 :     vl_api_send_msg (reg, (u8 *) rmp);
     132             :   }
     133             : }
     134             : 
     135             : static void
     136           0 : gpe_fwd_entries_copy (vl_api_gpe_fwd_entry_t * dst,
     137             :                       lisp_api_gpe_fwd_entry_t * src)
     138             : {
     139             :   lisp_api_gpe_fwd_entry_t *e;
     140           0 :   u32 i = 0;
     141             : 
     142           0 :   vec_foreach (e, src)
     143             :   {
     144           0 :     clib_memset (&dst[i], 0, sizeof (*dst));
     145           0 :     dst[i].dp_table = e->dp_table;
     146           0 :     dst[i].fwd_entry_index = e->fwd_entry_index;
     147           0 :     dst[i].vni = e->vni;
     148           0 :     dst[i].action = e->action;
     149           0 :     switch (fid_addr_type (&e->leid))
     150             :       {
     151           0 :       case FID_ADDR_IP_PREF:
     152           0 :         dst[i].leid.type = EID_TYPE_API_PREFIX;
     153           0 :         dst[i].reid.type = EID_TYPE_API_PREFIX;
     154           0 :         ip_prefix_encode2 (&fid_addr_ippref (&e->leid),
     155           0 :                            &dst[i].leid.address.prefix);
     156           0 :         ip_prefix_encode2 (&fid_addr_ippref (&e->reid),
     157           0 :                            &dst[i].reid.address.prefix);
     158           0 :         break;
     159           0 :       case FID_ADDR_MAC:
     160           0 :         mac_address_encode ((mac_address_t *) fid_addr_mac (&e->leid),
     161           0 :                             dst[i].leid.address.mac);
     162           0 :         mac_address_encode ((mac_address_t *) fid_addr_mac (&e->reid),
     163           0 :                             dst[i].reid.address.mac);
     164           0 :         dst[i].leid.type = EID_TYPE_API_MAC;
     165           0 :         dst[i].reid.type = EID_TYPE_API_MAC;
     166           0 :         break;
     167           0 :       default:
     168           0 :         clib_warning ("unknown fid type %d!", fid_addr_type (&e->leid));
     169           0 :         break;
     170             :       }
     171           0 :     i++;
     172             :   }
     173           0 : }
     174             : 
     175             : static void
     176           0 : gpe_fwd_entries_get_t_net_to_host (vl_api_gpe_fwd_entries_get_t * mp)
     177             : {
     178           0 :   mp->vni = clib_net_to_host_u32 (mp->vni);
     179           0 : }
     180             : 
     181             : static void
     182           0 : gpe_entry_t_host_to_net (vl_api_gpe_fwd_entry_t * e)
     183             : {
     184           0 :   e->fwd_entry_index = clib_host_to_net_u32 (e->fwd_entry_index);
     185           0 :   e->dp_table = clib_host_to_net_u32 (e->dp_table);
     186           0 :   e->vni = clib_host_to_net_u32 (e->vni);
     187           0 : }
     188             : 
     189             : static void
     190           0 :   gpe_fwd_entries_get_reply_t_host_to_net
     191             :   (vl_api_gpe_fwd_entries_get_reply_t * mp)
     192             : {
     193             :   u32 i;
     194             :   vl_api_gpe_fwd_entry_t *e;
     195             : 
     196           0 :   for (i = 0; i < mp->count; i++)
     197             :     {
     198           0 :       e = &mp->entries[i];
     199           0 :       gpe_entry_t_host_to_net (e);
     200             :     }
     201           0 :   mp->count = clib_host_to_net_u32 (mp->count);
     202           0 : }
     203             : 
     204             : static void
     205           0 : vl_api_gpe_fwd_entry_vnis_get_t_handler (vl_api_gpe_fwd_entry_vnis_get_t * mp)
     206             : {
     207           0 :   vl_api_gpe_fwd_entry_vnis_get_reply_t *rmp = 0;
     208             :   hash_pair_t *p;
     209           0 :   u32 i = 0;
     210           0 :   int rv = 0;
     211             : 
     212           0 :   u32 *vnis = vnet_lisp_gpe_get_fwd_entry_vnis ();
     213           0 :   u32 size = hash_elts (vnis) * sizeof (u32);
     214             : 
     215             :   /* *INDENT-OFF* */
     216           0 :   REPLY_MACRO4 (VL_API_GPE_FWD_ENTRY_VNIS_GET_REPLY, size,
     217             :   {
     218             :     rmp->count = clib_host_to_net_u32 (hash_elts (vnis));
     219             :     hash_foreach_pair (p, vnis,
     220             :     ({
     221             :       rmp->vnis[i++] = clib_host_to_net_u32 (p->key);
     222             :     }));
     223             :   });
     224             :   /* *INDENT-ON* */
     225             : 
     226           0 :   hash_free (vnis);
     227             : }
     228             : 
     229             : static void
     230           0 : vl_api_gpe_fwd_entries_get_t_handler (vl_api_gpe_fwd_entries_get_t * mp)
     231             : {
     232             :   lisp_api_gpe_fwd_entry_t *e;
     233           0 :   vl_api_gpe_fwd_entries_get_reply_t *rmp = 0;
     234           0 :   u32 size = 0;
     235           0 :   int rv = 0;
     236             : 
     237           0 :   gpe_fwd_entries_get_t_net_to_host (mp);
     238             : 
     239           0 :   e = vnet_lisp_gpe_fwd_entries_get_by_vni (mp->vni);
     240           0 :   size = vec_len (e) * sizeof (vl_api_gpe_fwd_entry_t);
     241             : 
     242             :   /* *INDENT-OFF* */
     243           0 :   REPLY_MACRO4 (VL_API_GPE_FWD_ENTRIES_GET_REPLY, size,
     244             :   {
     245             :     rmp->count = vec_len (e);
     246             :     gpe_fwd_entries_copy (rmp->entries, e);
     247             :     gpe_fwd_entries_get_reply_t_host_to_net (rmp);
     248             :   });
     249             :   /* *INDENT-ON* */
     250             : 
     251           0 :   vec_free (e);
     252             : }
     253             : 
     254             : static void
     255           0 : gpe_add_del_fwd_entry_t_net_to_host (vl_api_gpe_add_del_fwd_entry_t * mp)
     256             : {
     257           0 :   mp->vni = clib_net_to_host_u32 (mp->vni);
     258           0 :   mp->dp_table = clib_net_to_host_u32 (mp->dp_table);
     259           0 :   mp->loc_num = clib_net_to_host_u32 (mp->loc_num);
     260           0 : }
     261             : 
     262             : static void
     263           0 : vl_api_gpe_add_del_fwd_entry_t_handler (vl_api_gpe_add_del_fwd_entry_t * mp)
     264             : {
     265             :   vl_api_gpe_add_del_fwd_entry_reply_t *rmp;
     266           0 :   vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a;
     267           0 :   locator_pair_t *pairs = 0;
     268           0 :   int rv = 0;
     269             : 
     270           0 :   gpe_add_del_fwd_entry_t_net_to_host (mp);
     271           0 :   clib_memset (a, 0, sizeof (a[0]));
     272             : 
     273           0 :   rv = unformat_lisp_eid_api (&a->rmt_eid, mp->vni, &mp->rmt_eid);
     274           0 :   rv |= unformat_lisp_eid_api (&a->lcl_eid, mp->vni, &mp->lcl_eid);
     275             : 
     276           0 :   if (mp->loc_num % 2 != 0)
     277             :     {
     278           0 :       rv = -1;
     279           0 :       goto send_reply;
     280             :     }
     281           0 :   pairs = unformat_gpe_loc_pairs (mp->locs, mp->loc_num / 2);
     282             : 
     283           0 :   if (rv)
     284           0 :     goto send_reply;
     285             : 
     286           0 :   a->is_add = mp->is_add;
     287           0 :   a->locator_pairs = pairs;
     288           0 :   a->dp_table = mp->dp_table;
     289           0 :   a->vni = mp->vni;
     290           0 :   a->action = mp->action;
     291           0 :   if (mp->loc_num == 0)
     292           0 :     a->is_negative = 1;
     293             : 
     294           0 :   rv = vnet_lisp_gpe_add_del_fwd_entry (a, 0);
     295           0 :   vec_free (pairs);
     296           0 : send_reply:
     297             :   /* *INDENT-OFF* */
     298           0 :   REPLY_MACRO2 (VL_API_GPE_ADD_DEL_FWD_ENTRY_REPLY,
     299             :   {
     300             :     rmp->fwd_entry_index = clib_host_to_net_u32 (a->fwd_entry_index);
     301             :   });
     302             :   /* *INDENT-ON* */
     303             : }
     304             : 
     305             : static void
     306           0 : vl_api_gpe_enable_disable_t_handler (vl_api_gpe_enable_disable_t * mp)
     307             : {
     308             :   vl_api_gpe_enable_disable_reply_t *rmp;
     309           0 :   int rv = 0;
     310           0 :   vnet_lisp_gpe_enable_disable_args_t _a, *a = &_a;
     311             : 
     312           0 :   a->is_en = mp->is_enable;
     313           0 :   vnet_lisp_gpe_enable_disable (a);
     314             : 
     315           0 :   REPLY_MACRO (VL_API_GPE_ENABLE_DISABLE_REPLY);
     316             : }
     317             : 
     318             : static void
     319           0 : vl_api_gpe_add_del_iface_t_handler (vl_api_gpe_add_del_iface_t * mp)
     320             : {
     321             :   vl_api_gpe_add_del_iface_reply_t *rmp;
     322           0 :   int rv = 0;
     323             :   u32 vni, dp_table;
     324             : 
     325           0 :   vni = clib_net_to_host_u32 (mp->vni);
     326           0 :   dp_table = clib_net_to_host_u32 (mp->dp_table);
     327             : 
     328           0 :   if (mp->is_l2)
     329             :     {
     330           0 :       if (mp->is_add)
     331             :         {
     332           0 :           if (~0 == lisp_gpe_tenant_l2_iface_add_or_lock (vni, dp_table))
     333           0 :             rv = 1;
     334             :         }
     335             :       else
     336           0 :         lisp_gpe_tenant_l2_iface_unlock (vni);
     337             :     }
     338             :   else
     339             :     {
     340           0 :       if (mp->is_add)
     341             :         {
     342           0 :           if (~0 == lisp_gpe_tenant_l3_iface_add_or_lock (vni, dp_table, 1))
     343           0 :             rv = 1;
     344             :         }
     345             :       else
     346           0 :         lisp_gpe_tenant_l3_iface_unlock (vni);
     347             :     }
     348             : 
     349           0 :   REPLY_MACRO (VL_API_GPE_ADD_DEL_IFACE_REPLY);
     350             : }
     351             : 
     352             : static void
     353           0 : vl_api_gpe_set_encap_mode_t_handler (vl_api_gpe_set_encap_mode_t * mp)
     354             : {
     355             :   vl_api_gpe_set_encap_mode_reply_t *rmp;
     356           0 :   int rv = 0;
     357             : 
     358           0 :   rv = vnet_gpe_set_encap_mode (mp->is_vxlan);
     359           0 :   REPLY_MACRO (VL_API_GPE_SET_ENCAP_MODE_REPLY);
     360             : }
     361             : 
     362             : static void
     363           0 : vl_api_gpe_get_encap_mode_t_handler (vl_api_gpe_get_encap_mode_t * mp)
     364             : {
     365             :   vl_api_gpe_get_encap_mode_reply_t *rmp;
     366           0 :   int rv = 0;
     367             : 
     368             :   /* *INDENT-OFF* */
     369           0 :   REPLY_MACRO2 (VL_API_GPE_GET_ENCAP_MODE_REPLY,
     370             :   ({
     371             :     rmp->encap_mode = vnet_gpe_get_encap_mode ();
     372             :   }));
     373             :   /* *INDENT-ON* */
     374             : }
     375             : 
     376             : static void
     377           0 :   vl_api_gpe_add_del_native_fwd_rpath_t_handler
     378             :   (vl_api_gpe_add_del_native_fwd_rpath_t * mp)
     379             : {
     380             :   vl_api_gpe_add_del_native_fwd_rpath_reply_t *rmp;
     381           0 :   vnet_gpe_native_fwd_rpath_args_t _a, *a = &_a;
     382           0 :   int rv = 0;
     383             : 
     384           0 :   clib_memset (a, 0, sizeof (a[0]));
     385             : 
     386           0 :   if (mp->nh_addr.af)
     387           0 :     clib_memcpy (&a->rpath.frp_addr.ip6, mp->nh_addr.un.ip6,
     388             :                  sizeof (ip6_address_t));
     389             :   else
     390           0 :     clib_memcpy (&a->rpath.frp_addr.ip4, mp->nh_addr.un.ip4,
     391             :                  sizeof (ip4_address_t));
     392             : 
     393           0 :   a->is_add = mp->is_add;
     394           0 :   a->rpath.frp_proto = mp->nh_addr.af ? DPO_PROTO_IP6 : DPO_PROTO_IP4;
     395           0 :   a->rpath.frp_fib_index =
     396           0 :     fib_table_find (dpo_proto_to_fib (a->rpath.frp_proto),
     397             :                     clib_net_to_host_u32 (mp->table_id));
     398           0 :   if (~0 == a->rpath.frp_fib_index)
     399             :     {
     400           0 :       rv = VNET_API_ERROR_INVALID_VALUE;
     401           0 :       goto done;
     402             :     }
     403             : 
     404           0 :   a->rpath.frp_sw_if_index = clib_net_to_host_u32 (mp->nh_sw_if_index);
     405           0 :   a->rpath.frp_weight = 1;
     406             : 
     407           0 :   rv = vnet_gpe_add_del_native_fwd_rpath (a);
     408           0 : done:
     409           0 :   REPLY_MACRO (VL_API_GPE_ADD_DEL_NATIVE_FWD_RPATH_REPLY);
     410             : }
     411             : 
     412             : static void
     413           0 : gpe_native_fwd_rpaths_copy (vl_api_gpe_native_fwd_rpath_t * dst,
     414             :                             fib_route_path_t * src)
     415             : {
     416             :   fib_route_path_t *e;
     417             :   fib_table_t *table;
     418           0 :   u32 i = 0;
     419             : 
     420           0 :   vec_foreach (e, src)
     421             :   {
     422           0 :     clib_memset (&dst[i], 0, sizeof (*dst));
     423           0 :     table = fib_table_get (e->frp_fib_index, dpo_proto_to_fib (e->frp_proto));
     424           0 :     dst[i].fib_index = table->ft_table_id;
     425           0 :     dst[i].nh_sw_if_index = e->frp_sw_if_index;
     426           0 :     ip_address_encode (&e->frp_addr, IP46_TYPE_ANY, &dst[i].nh_addr);
     427           0 :     i++;
     428             :   }
     429           0 : }
     430             : 
     431             : static void
     432           0 : gpe_native_fwd_rpath_t_host_to_net (vl_api_gpe_native_fwd_rpath_t * e)
     433             : {
     434           0 :   e->fib_index = clib_host_to_net_u32 (e->fib_index);
     435           0 :   e->nh_sw_if_index = clib_host_to_net_u32 (e->nh_sw_if_index);
     436           0 : }
     437             : 
     438             : static void
     439           0 :   gpe_native_fwd_rpaths_get_reply_t_host_to_net
     440             :   (vl_api_gpe_native_fwd_rpaths_get_reply_t * mp)
     441             : {
     442             :   u32 i;
     443             :   vl_api_gpe_native_fwd_rpath_t *e;
     444             : 
     445           0 :   for (i = 0; i < mp->count; i++)
     446             :     {
     447           0 :       e = &mp->entries[i];
     448           0 :       gpe_native_fwd_rpath_t_host_to_net (e);
     449             :     }
     450           0 :   mp->count = clib_host_to_net_u32 (mp->count);
     451           0 : }
     452             : 
     453             : static void
     454           0 : vl_api_gpe_native_fwd_rpaths_get_t_handler (vl_api_gpe_native_fwd_rpaths_get_t
     455             :                                             * mp)
     456             : {
     457           0 :   lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main ();
     458             :   vl_api_gpe_native_fwd_rpaths_get_reply_t *rmp;
     459           0 :   u32 size = 0;
     460           0 :   int rv = 0;
     461             : 
     462           0 :   u8 rpath_index = mp->is_ip4 ? 1 : 0;
     463             : 
     464           0 :   size = vec_len (lgm->native_fwd_rpath[rpath_index])
     465             :     * sizeof (vl_api_gpe_native_fwd_rpath_t);
     466             : 
     467             :   /* *INDENT-OFF* */
     468           0 :   REPLY_MACRO4 (VL_API_GPE_NATIVE_FWD_RPATHS_GET_REPLY, size,
     469             :   {
     470             :     rmp->count = vec_len (lgm->native_fwd_rpath[rpath_index]);
     471             :     gpe_native_fwd_rpaths_copy (rmp->entries,
     472             :                                 lgm->native_fwd_rpath[rpath_index]);
     473             :     gpe_native_fwd_rpaths_get_reply_t_host_to_net (rmp);
     474             :   });
     475             :   /* *INDENT-ON* */
     476             : }
     477             : 
     478             : /*
     479             :  * lisp_api_hookup
     480             :  * Add vpe's API message handlers to the table.
     481             :  * vlib has already mapped shared memory and
     482             :  * added the client registration handlers.
     483             :  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
     484             :  */
     485             : #include <lisp/lisp-gpe/lisp_gpe.api.c>
     486             : 
     487             : static clib_error_t *
     488         575 : gpe_api_hookup (vlib_main_t * vm)
     489             : {
     490             :   /*
     491             :    * Set up the (msg_name, crc, message-id) table
     492             :    */
     493         575 :   gpe_base_msg_id = setup_message_id_table ();
     494             : 
     495         575 :   return NULL;
     496             : }
     497             : 
     498        2303 : VLIB_API_INIT_FUNCTION (gpe_api_hookup);
     499             : 
     500             : /*
     501             :  * fd.io coding-style-patch-verification: ON
     502             :  *
     503             :  * Local Variables:
     504             :  * eval: (c-set-style "gnu")
     505             :  * End:
     506             :  */

Generated by: LCOV version 1.14