LCOV - code coverage report
Current view: top level - plugins/wireguard - wireguard_api.c (source / functions) Hit Total Coverage
Test: coverage-filtered.info Lines: 145 178 81.5 %
Date: 2023-07-05 22:20:52 Functions: 17 18 94.4 %

          Line data    Source code
       1             : /*
       2             :  * Copyright (c) 2020 Cisco and/or its affiliates.
       3             :  * Copyright (c) 2020 Doc.ai 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             : #include <vnet/vnet.h>
      18             : #include <vlibmemory/api.h>
      19             : 
      20             : #include <vnet/format_fns.h>
      21             : #include <vnet/ip/ip_types_api.h>
      22             : #include <vlibapi/api.h>
      23             : 
      24             : #include <wireguard/wireguard.api_enum.h>
      25             : #include <wireguard/wireguard.api_types.h>
      26             : 
      27             : #include <wireguard/wireguard_key.h>
      28             : #include <wireguard/wireguard.h>
      29             : #include <wireguard/wireguard_if.h>
      30             : 
      31             : #define REPLY_MSG_ID_BASE wmp->msg_id_base
      32             : #include <wireguard/wireguard_peer.h>
      33             : #include <vlibapi/api_helper_macros.h>
      34             : 
      35             : static void
      36          82 :   vl_api_wireguard_interface_create_t_handler
      37             :   (vl_api_wireguard_interface_create_t * mp)
      38             : {
      39             :   vl_api_wireguard_interface_create_reply_t *rmp;
      40          82 :   wg_main_t *wmp = &wg_main;
      41             :   u8 private_key[NOISE_PUBLIC_KEY_LEN];
      42             :   ip_address_t src;
      43          82 :   u32 sw_if_index = ~0;
      44          82 :   int rv = 0;
      45             : 
      46          82 :   wg_feature_init (wmp);
      47             : 
      48          82 :   ip_address_decode2 (&mp->interface.src_ip, &src);
      49             : 
      50          82 :   if (mp->generate_key)
      51           0 :     curve25519_gen_secret (private_key);
      52             :   else
      53          82 :     clib_memcpy (private_key, mp->interface.private_key, NOISE_PUBLIC_KEY_LEN);
      54             : 
      55          82 :   rv = wg_if_create (ntohl (mp->interface.user_instance), private_key,
      56          82 :                      ntohs (mp->interface.port), &src, &sw_if_index);
      57             : 
      58          82 :   REPLY_MACRO2(VL_API_WIREGUARD_INTERFACE_CREATE_REPLY,
      59             :   {
      60             :     rmp->sw_if_index = htonl(sw_if_index);
      61             :   });
      62             : }
      63             : 
      64             : static void
      65          82 :   vl_api_wireguard_interface_delete_t_handler
      66             :   (vl_api_wireguard_interface_delete_t * mp)
      67             : {
      68             :   vl_api_wireguard_interface_delete_reply_t *rmp;
      69          82 :   wg_main_t *wmp = &wg_main;
      70          82 :   int rv = 0;
      71             : 
      72          82 :   wg_feature_init (wmp);
      73             : 
      74          82 :   VALIDATE_SW_IF_INDEX (mp);
      75             : 
      76          82 :   rv = wg_if_delete (ntohl (mp->sw_if_index));
      77             : 
      78          82 :   BAD_SW_IF_INDEX_LABEL;
      79             : 
      80          82 :   REPLY_MACRO(VL_API_WIREGUARD_INTERFACE_DELETE_REPLY);
      81             : }
      82             : 
      83             : typedef struct wg_deatils_walk_t_
      84             : {
      85             :   vl_api_registration_t *reg;
      86             :   u32 context;
      87             :   u8 show_private_key;
      88             : } wg_deatils_walk_t;
      89             : 
      90             : static walk_rc_t
      91           0 : wireguard_if_send_details (index_t wgii, void *data)
      92             : {
      93             :   vl_api_wireguard_interface_details_t *rmp;
      94           0 :   wg_deatils_walk_t *ctx = data;
      95             :   const wg_if_t *wgi;
      96             :   const noise_local_t *local;
      97             : 
      98           0 :   wgi = wg_if_get (wgii);
      99           0 :   local = noise_local_get (wgi->local_idx);
     100             : 
     101           0 :   rmp = vl_msg_api_alloc_zero (sizeof (*rmp));
     102           0 :   rmp->_vl_msg_id = htons (VL_API_WIREGUARD_INTERFACE_DETAILS +
     103           0 :                            wg_main.msg_id_base);
     104             : 
     105           0 :   if (ctx->show_private_key)
     106           0 :     clib_memcpy (rmp->interface.private_key,
     107             :                  local->l_private, NOISE_PUBLIC_KEY_LEN);
     108           0 :   clib_memcpy (rmp->interface.public_key,
     109             :                local->l_public, NOISE_PUBLIC_KEY_LEN);
     110           0 :   rmp->interface.sw_if_index = htonl (wgi->sw_if_index);
     111           0 :   rmp->interface.port = htons (wgi->port);
     112           0 :   rmp->interface.user_instance = htonl (wgi->user_instance);
     113           0 :   ip_address_encode2 (&wgi->src_ip, &rmp->interface.src_ip);
     114             : 
     115           0 :   rmp->context = ctx->context;
     116             : 
     117           0 :   vl_api_send_msg (ctx->reg, (u8 *) rmp);
     118             : 
     119           0 :   return (WALK_CONTINUE);
     120             : }
     121             : 
     122             : static void
     123          82 : vl_api_wireguard_interface_dump_t_handler (vl_api_wireguard_interface_dump_t *
     124             :                                            mp)
     125             : {
     126             :   vl_api_registration_t *reg;
     127          82 :   wg_main_t *wmp = &wg_main;
     128             : 
     129          82 :   wg_feature_init (wmp);
     130             : 
     131          82 :   reg = vl_api_client_index_to_registration (mp->client_index);
     132          82 :   if (reg == 0)
     133           0 :     return;
     134             : 
     135          82 :   wg_deatils_walk_t ctx = {
     136             :     .reg = reg,
     137          82 :     .context = mp->context,
     138          82 :     .show_private_key = mp->show_private_key,
     139             :   };
     140             : 
     141          82 :   u32 sw_if_index = ntohl (mp->sw_if_index);
     142          82 :   if (sw_if_index == ~0)
     143          82 :     wg_if_walk (wireguard_if_send_details, &ctx);
     144             :   else
     145             :     {
     146           0 :       index_t wgii = wg_if_find_by_sw_if_index (sw_if_index);
     147           0 :       if (wgii != INDEX_INVALID)
     148           0 :         wireguard_if_send_details (wgii, &ctx);
     149             :     }
     150             : }
     151             : 
     152             : static void
     153         146 : vl_api_wireguard_peer_add_t_handler (vl_api_wireguard_peer_add_t * mp)
     154             : {
     155             :   vl_api_wireguard_peer_add_reply_t *rmp;
     156         146 :   wg_main_t *wmp = &wg_main;
     157         146 :   index_t peeri = INDEX_INVALID;
     158         146 :   int ii, rv = 0;
     159             : 
     160             :   ip_address_t endpoint;
     161         146 :   fib_prefix_t *allowed_ips = NULL;
     162             : 
     163         146 :   VALIDATE_SW_IF_INDEX (&(mp->peer));
     164             : 
     165         146 :   if (0 == mp->peer.n_allowed_ips)
     166             :     {
     167           0 :       rv = VNET_API_ERROR_INVALID_VALUE;
     168           0 :       goto done;
     169             :     }
     170             : 
     171         146 :   wg_feature_init (wmp);
     172             : 
     173         146 :   vec_validate (allowed_ips, mp->peer.n_allowed_ips - 1);
     174         146 :   ip_address_decode2 (&mp->peer.endpoint, &endpoint);
     175             : 
     176         293 :   for (ii = 0; ii < mp->peer.n_allowed_ips; ii++)
     177         147 :     ip_prefix_decode (&mp->peer.allowed_ips[ii], &allowed_ips[ii]);
     178             : 
     179         146 :   rv = wg_peer_add (ntohl (mp->peer.sw_if_index), mp->peer.public_key,
     180             :                     ntohl (mp->peer.table_id), &ip_addr_46 (&endpoint),
     181         146 :                     allowed_ips, ntohs (mp->peer.port),
     182         146 :                     ntohs (mp->peer.persistent_keepalive), &peeri);
     183             : 
     184         146 :   vec_free (allowed_ips);
     185         146 : done:
     186         146 :   BAD_SW_IF_INDEX_LABEL;
     187             : 
     188         146 :   REPLY_MACRO2(VL_API_WIREGUARD_PEER_ADD_REPLY,
     189             :   {
     190             :     rmp->peer_index = ntohl (peeri);
     191             :   });
     192             : }
     193             : 
     194             : static void
     195         146 : vl_api_wireguard_peer_remove_t_handler (vl_api_wireguard_peer_remove_t * mp)
     196             : {
     197             :   vl_api_wireguard_peer_remove_reply_t *rmp;
     198         146 :   wg_main_t *wmp = &wg_main;
     199         146 :   int rv = 0;
     200             : 
     201         146 :   wg_feature_init (wmp);
     202             : 
     203         146 :   rv = wg_peer_remove (ntohl (mp->peer_index));
     204             : 
     205         146 :   REPLY_MACRO(VL_API_WIREGUARD_PEER_REMOVE_REPLY);
     206             : }
     207             : 
     208             : static walk_rc_t
     209        1238 : wg_api_send_peers_details (index_t peeri, void *data)
     210             : {
     211             :   vl_api_wireguard_peers_details_t *rmp;
     212        1238 :   wg_deatils_walk_t *ctx = data;
     213             :   const wg_peer_t *peer;
     214             :   u8 n_allowed_ips;
     215             :   size_t ss;
     216             : 
     217        1238 :   if (pool_is_free_index (wg_peer_pool, peeri))
     218           0 :     return (WALK_CONTINUE);
     219             : 
     220        1238 :   peer = wg_peer_get (peeri);
     221             : 
     222        1238 :   n_allowed_ips = vec_len (peer->allowed_ips);
     223             : 
     224        1238 :   ss = (sizeof (*rmp) + (n_allowed_ips * sizeof (rmp->peer.allowed_ips[0])));
     225             : 
     226        1238 :   rmp = vl_msg_api_alloc_zero (ss);
     227             : 
     228        1238 :   rmp->_vl_msg_id = htons (VL_API_WIREGUARD_PEERS_DETAILS +
     229        1238 :                            wg_main.msg_id_base);
     230             : 
     231        1238 :   rmp->peer.peer_index = htonl (peeri);
     232        1238 :   rmp->peer.flags = peer->flags;
     233        1238 :   clib_memcpy (rmp->peer.public_key,
     234             :                peer->remote.r_public, NOISE_PUBLIC_KEY_LEN);
     235             : 
     236        1238 :   ip_address_encode (&peer->dst.addr, IP46_TYPE_ANY, &rmp->peer.endpoint);
     237        1238 :   rmp->peer.port = htons (peer->dst.port);
     238        1238 :   rmp->peer.n_allowed_ips = n_allowed_ips;
     239        1238 :   rmp->peer.sw_if_index = htonl (peer->wg_sw_if_index);
     240        1238 :   rmp->peer.persistent_keepalive = htons (peer->persistent_keepalive_interval);
     241        1238 :   rmp->peer.table_id = htonl (peer->table_id);
     242             : 
     243             :   int ii;
     244        2477 :   for (ii = 0; ii < n_allowed_ips; ii++)
     245        1239 :     ip_prefix_encode (&peer->allowed_ips[ii], &rmp->peer.allowed_ips[ii]);
     246             : 
     247        1238 :   rmp->context = ctx->context;
     248             : 
     249        1238 :   vl_api_send_msg (ctx->reg, (u8 *) rmp);
     250             : 
     251        1238 :   return (WALK_CONTINUE);
     252             : }
     253             : 
     254             : static void
     255         311 : vl_api_wireguard_peers_dump_t_handler (vl_api_wireguard_peers_dump_t * mp)
     256             : {
     257             :   vl_api_registration_t *reg;
     258         311 :   wg_main_t *wmp = &wg_main;
     259             : 
     260         311 :   wg_feature_init (wmp);
     261             : 
     262         311 :   reg = vl_api_client_index_to_registration (mp->client_index);
     263         311 :   if (reg == NULL)
     264           0 :     return;
     265             : 
     266         311 :   wg_deatils_walk_t ctx = {
     267             :     .reg = reg,
     268         311 :     .context = mp->context,
     269             :   };
     270             : 
     271         311 :   if (mp->peer_index == ~0)
     272         311 :     wg_peer_walk (wg_api_send_peers_details, &ctx);
     273             :   else
     274           0 :     wg_api_send_peers_details (ntohl (mp->peer_index), &ctx);
     275             : }
     276             : 
     277             : static vpe_client_registration_t *
     278           6 : wg_api_client_lookup (wg_peer_t *peer, u32 client_index)
     279             : {
     280             :   uword *p;
     281           6 :   vpe_client_registration_t *api_client = NULL;
     282             : 
     283           6 :   p = hash_get (peer->api_client_by_client_index, client_index);
     284           6 :   if (p)
     285           0 :     api_client = vec_elt_at_index (peer->api_clients, p[0]);
     286             : 
     287           6 :   return api_client;
     288             : }
     289             : 
     290             : static walk_rc_t
     291          10 : wg_api_update_peer_api_client (index_t peeri, void *data)
     292             : {
     293          10 :   if (pool_is_free_index (wg_peer_pool, peeri))
     294           0 :     return (WALK_CONTINUE);
     295             : 
     296          10 :   vl_api_want_wireguard_peer_events_t *mp = data;
     297          10 :   wg_peer_t *peer = wg_peer_get (peeri);
     298             : 
     299          10 :   if (ntohl (mp->sw_if_index) != ~0 &&
     300          10 :       ntohl (mp->sw_if_index) != peer->wg_sw_if_index)
     301             :     {
     302           4 :       return (WALK_CONTINUE);
     303             :     }
     304             : 
     305             :   vpe_client_registration_t *api_client;
     306             : 
     307           6 :   api_client = wg_api_client_lookup (peer, mp->client_index);
     308             : 
     309           6 :   if (api_client)
     310             :     {
     311           0 :       if (mp->enable_disable)
     312             :         {
     313           0 :           return (WALK_CONTINUE);
     314             :         }
     315           0 :       hash_unset (peer->api_client_by_client_index, api_client->client_index);
     316           0 :       pool_put (peer->api_clients, api_client);
     317             :     }
     318           6 :   if (mp->enable_disable)
     319             :     {
     320           6 :       pool_get (peer->api_clients, api_client);
     321           6 :       clib_memset (api_client, 0, sizeof (vpe_client_registration_t));
     322           6 :       api_client->client_index = mp->client_index;
     323           6 :       api_client->client_pid = mp->pid;
     324           6 :       hash_set (peer->api_client_by_client_index, mp->client_index,
     325             :                 api_client - peer->api_clients);
     326             :     }
     327             : 
     328           6 :   return (WALK_CONTINUE);
     329             : }
     330             : 
     331             : static void
     332           4 : vl_api_want_wireguard_peer_events_t_handler (
     333             :   vl_api_want_wireguard_peer_events_t *mp)
     334             : {
     335           4 :   wg_main_t *wmp = &wg_main;
     336             :   vl_api_want_wireguard_peer_events_reply_t *rmp;
     337           4 :   int rv = 0;
     338             : 
     339           4 :   wg_feature_init (wmp);
     340             : 
     341           4 :   if (mp->peer_index == ~0)
     342           2 :     wg_peer_walk (wg_api_update_peer_api_client, mp);
     343             :   else
     344           2 :     wg_api_update_peer_api_client (ntohl (mp->peer_index), mp);
     345             : 
     346           4 :   REPLY_MACRO (VL_API_WANT_WIREGUARD_PEER_EVENTS_REPLY);
     347             : }
     348             : 
     349             : static void
     350          18 : wg_api_send_peer_event (vl_api_registration_t *rp, index_t peer_index,
     351             :                         wg_peer_flags flags)
     352             : {
     353          18 :   vl_api_wireguard_peer_event_t *mp = vl_msg_api_alloc (sizeof (*mp));
     354          18 :   clib_memset (mp, 0, sizeof (*mp));
     355             : 
     356          18 :   mp->_vl_msg_id = htons (VL_API_WIREGUARD_PEER_EVENT + wg_main.msg_id_base);
     357          18 :   mp->peer_index = htonl (peer_index);
     358          18 :   mp->flags = flags;
     359             : 
     360          18 :   vl_api_send_msg (rp, (u8 *) mp);
     361          18 : }
     362             : 
     363             : typedef struct
     364             : {
     365             :   index_t peeri;
     366             :   wg_peer_flags flags;
     367             : } wg_api_peer_event_args_t;
     368             : 
     369             : static void
     370         550 : wg_api_peer_event_cb (wg_api_peer_event_args_t *args)
     371             : {
     372         550 :   wg_peer_t *peer = wg_peer_get (args->peeri);
     373             :   vpe_client_registration_t *api_client;
     374             :   vl_api_registration_t *rp;
     375             : 
     376         568 :   pool_foreach (api_client, peer->api_clients)
     377             :     {
     378          18 :       rp = vl_api_client_index_to_registration (api_client->client_index);
     379          18 :       if (rp)
     380             :         {
     381          18 :           wg_api_send_peer_event (rp, args->peeri, args->flags);
     382             :         }
     383             :     };
     384         550 : }
     385             : 
     386             : void
     387         550 : wg_api_peer_event (index_t peeri, wg_peer_flags flags)
     388             : {
     389         550 :   wg_api_peer_event_args_t args = {
     390             :     .peeri = peeri,
     391             :     .flags = flags,
     392             :   };
     393             : 
     394         550 :   vl_api_rpc_call_main_thread (wg_api_peer_event_cb, (u8 *) &args,
     395             :                                sizeof (args));
     396         550 : }
     397             : 
     398             : static void
     399          16 : vl_api_wg_set_async_mode_t_handler (vl_api_wg_set_async_mode_t *mp)
     400             : {
     401          16 :   wg_main_t *wmp = &wg_main;
     402             :   vl_api_wg_set_async_mode_reply_t *rmp;
     403          16 :   int rv = 0;
     404             : 
     405          16 :   wg_set_async_mode (mp->async_enable);
     406             : 
     407          16 :   REPLY_MACRO (VL_API_WG_SET_ASYNC_MODE_REPLY);
     408             : }
     409             : 
     410             : /* set tup the API message handling tables */
     411             : #include <wireguard/wireguard.api.c>
     412             : static clib_error_t *
     413         559 : wg_api_hookup (vlib_main_t * vm)
     414             : {
     415         559 :   wg_main_t *wmp = &wg_main;
     416         559 :   wmp->msg_id_base = setup_message_id_table ();
     417         559 :   return 0;
     418             : }
     419             : 
     420        1119 : VLIB_API_INIT_FUNCTION (wg_api_hookup);
     421             : 
     422             : /*
     423             :  * fd.io coding-style-patch-verification: ON
     424             :  *
     425             :  * Local Variables:
     426             :  * eval: (c-set-style "gnu")
     427             :  * End:
     428             :  */

Generated by: LCOV version 1.14