summaryrefslogtreecommitdiffstats
path: root/src/plugins/lacp/lacp_api.c
blob: d23bf217baca000b18c29cc956655e34ffcf9c6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
 *------------------------------------------------------------------
 * lacp_api.c - lacp api
 *
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *------------------------------------------------------------------
 */

#include <vlib/vlib.h>
#include <vnet/ethernet/ethernet.h>
#include <vlib/unix/unix.h>
#include <lacp/node.h>

#include <vlibapi/api.h>
#include <vlibmemory/api.h>


/* define message IDs */
#include <lacp/lacp_msg_enum.h>

/* define message structures */
#define vl_typedefs
#include <lacp/lacp_all_api_h.h>
#undef vl_typedefs

/* define generated endian-swappers */
#define vl_endianfun
#include <lacp/lacp_all_api_h.h>
#undef vl_endianfun

/* instantiate all the print functions we know about */
#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
#define vl_printfun
#include <lacp/lacp_all_api_h.h>
#undef vl_printfun

/* Get the API version number */
#define vl_api_version(n,v) static u32 api_version=(v);
#include <lacp/lacp_all_api_h.h>
#undef vl_api_version

#define REPLY_MSG_ID_BASE lm->msg_id_base
#include <vlibapi/api_helper_macros.h>

#define foreach_lacp_plugin_api_msg				\
_(SW_INTERFACE_LACP_DUMP, sw_interface_lacp_dump)

static void
lacp_send_sw_interface_details (vl_api_registration_t * reg,
				lacp_interface_details_t * lacp_if,
				u32 context)
{
  lacp_main_t *lm = &lacp_main;
  vl_api_sw_interface_lacp_details_t *mp;

  mp = vl_msg_api_alloc (sizeof (*mp));
  clib_memset (mp, 0, sizeof (*mp));
  mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_LACP_DETAILS + lm->msg_id_base);
  mp->sw_if_index = htonl (lacp_if->sw_if_index);

  /* These fields in network order already */
  mp->actor_system_priority = lacp_if->actor_system_priority;
  mp->actor_key = lacp_if->actor_key;
  mp->actor_port_priority = lacp_if->actor_port_priority;
  mp->actor_port_number = lacp_if->actor_port_number;
  mp->actor_state = lacp_if->actor_state;
  clib_memcpy (mp->actor_system, lacp_if->actor_system, 6);
  mp->partner_system_priority = lacp_if->partner_system_priority;
  mp->partner_key = lacp_if->partner_key;
  mp->partner_port_priority = lacp_if->partner_port_priority;
  mp->partner_port_number = lacp_if->partner_port_number;
  mp->partner_state = lacp_if->partner_state;

  clib_memcpy (mp->partner_system, lacp_if->partner_system, 6);
  clib_memcpy (mp->interface_name, lacp_if->interface_name,
	       MIN (ARRAY_LEN (mp->interface_name) - 1,
		    strlen ((const char *) lacp_if->interface_name)));
  clib_memcpy (mp->bond_interface_name, lacp_if->bond_interface_name,
	       MIN (ARRAY_LEN (mp->bond_interface_name) - 1,
		    strlen ((const char *) lacp_if->bond_interface_name)));
  mp->rx_state = htonl (lacp_if->rx_state);
  mp->tx_state = htonl (lacp_if->tx_state);
  mp->mux_state = htonl (lacp_if->mux_state);
  mp->ptx_state = htonl (lacp_if->ptx_state);

  mp->context = context;
  vl_api_send_msg (reg, (u8 *) mp);
}

/**
 * @brief Message handler for lacp_dump API.
 * @param mp vl_api_lacp_dump_t * mp the api message
 */
void
vl_api_sw_interface_lacp_dump_t_handler (vl_api_sw_interface_lacp_dump_t * mp)
{
  int rv;
  vl_api_registration_t *reg;
  lacp_interface_details_t *lacpifs = NULL;
  lacp_interface_details_t *lacp_if = NULL;

  reg = vl_api_client_index_to_registration (mp->client_index);
  if (!reg)
    return;

  rv = lacp_dump_ifs (&lacpifs);
  if (rv)
    return;

  vec_foreach (lacp_if, lacpifs)
  {
    lacp_send_sw_interface_details (reg, lacp_if, mp->context);
  }

  vec_free (lacpifs);
}

#define vl_msg_name_crc_list
#include <lacp/lacp_all_api_h.h>
#undef vl_msg_name_crc_list

static void
setup_message_id_table (lacp_main_t * lm, api_main_t * am)
{
#define _(id,n,crc) \
  vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + lm->msg_id_base);
  foreach_vl_msg_name_crc_lacp;
#undef _
}

/* Set up the API message handling tables */
clib_error_t *
lacp_plugin_api_hookup (vlib_main_t * vm)
{
  lacp_main_t *lm = &lacp_main;
  api_main_t *am = &api_main;
  u8 *name;

  /* Construct the API name */
  name = format (0, "lacp_%08x%c", api_version, 0);

  /* Ask for a correctly-sized block of API message decode slots */
  lm->msg_id_base = vl_msg_api_get_msg_ids
    ((char *) name, VL_MSG_FIRST_AVAILABLE);

#define _(N,n)                                                  \
    vl_msg_api_set_handlers((VL_API_##N + lm->msg_id_base),     \
                           #n,                                  \
                           vl_api_##n##_t_handler,              \
                           vl_noop_handler,                     \
                           vl_api_##n##_t_endian,               \
                           vl_api_##n##_t_print,                \
                           sizeof(vl_api_##n##_t), 1);
  foreach_lacp_plugin_api_msg;
#undef _

  /*
   * Set up the (msg_name, crc, message-id) table
   */
  setup_message_id_table (lm, am);

  vec_free (name);
  return 0;
}

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */
tic M: Dave Barach <dbarach@cisco.com> F: src/plugins/http_static/ Plugin - builtinurl I: builtinurl M: Dave Barach <dbarach@cisco.com> F: src/plugins/builtinurl/ Plugin - Group Based Policy (GBP) I: gbp M: Neale Ranns <nranns@cisco.com> F: src/plugins/gbp/ Plugin - GTPU I: gtpu M: Hongjun Ni <hongjun.ni@intel.com> F: src/plugins/gtpu/ Plugin - Internet Key Exchange (IKEv2) Protocol I: ikev2 M: Damjan Marion <damarion@cisco.com> M: Neale Ranns <nranns@cisco.com> F: src/plugins/ikev2/ Plugin - Internet Group Management Protocol (IGMP) I: igmp M: Neale Ranns <nranns@cisco.com> F: src/plugins/igmp/ Plugin - ixge device driver I: ixge M: Damjan Marion <damarion@cisco.com> F: src/plugins/ixge/ Plugin - L3 Cross-Connect (L3XC) I: l3xc M: Neale Ranns <nranns@cisco.com> F: src/plugins/l3xc/ Plugin - memif device driver I: memif M: Damjan Marion <damarion@cisco.com> F: src/plugins/memif/ Plugin - Marvell MUSDK device driver I: marvell M: Damjan Marion <damarion@cisco.com> F: src/plugins/marvell/ Plugin - PPPoE I: pppoe M: Hongjun Ni <hongjun.ni@intel.com> F: src/plugins/pppoe/ Plugin - Ping I: ping M: Andrew Yourtchenko <ayourtch@gmail.com> F: src/plugins/ping Plugin - IPv6 Segment Routing Dynamic Proxy I: srv6-ad M: Francois Clad <fclad@cisco.com> F: src/plugins/srv6-ad/ Plugin - IPv6 Segment Routing Masquerading Proxy I: srv6-am M: Francois Clad <fclad@cisco.com> F: src/plugins/srv6-am/ Plugin - IPv6 Segment Routing Static Proxy I: srv6-as M: Francois Clad <fclad@cisco.com> F: src/plugins/srv6-as/ Plugin - Link Aggregation Control Protocol I: lacp M: Steven Luong <sluong@cisco.com> F: src/plugins/lacp/ Plugin - Load Balancer I: lb M: Pfister <ppfister@cisco.com> M: Hongjun Ni <hongjun.ni@intel.com> F: src/plugins/lb/ Plugin - NSH I: nsh M: Hongjun Ni <hongjun.ni@intel.com> M: Vengada <venggovi@cisco.com> F: src/plugins/nsh/ Plugin - Time-based MAC filter I: mactime Y: src/plugins/mactime/FEATURE.yaml M: Dave Barach <dave@barachs.net> F: src/plugins/mactime/ Plugin - Network Delay Simulator I: nsim M: Dave Barach <dave@barachs.net> F: src/plugins/nsim/ Test Infrastructure I: tests M: Klement Sekera <ksekera@cisco.com> M: Paul Vinciguerra <pvinci@vinciconsulting.com> F: test/ SVM Library I: svm M: Dave Barach <dave@barachs.net> F: src/svm VPP API TEST I: vat M: Dave Barach <dave@barachs.net> F: src/vat/ VPP Executable I: vpp M: Dave Barach <dave@barachs.net> F: src/vpp/ Emacs templates I: emacs M: Dave Barach <dave@barachs.net> F: extras/emacs/ Graphical Event Viewer I: g2 M: Dave Barach <dave@barachs.net> F: src/tools/g2/ Performance Tooling I: perftool M: Dave Barach <dave@barachs.net> F: src/tools/perftool/ Plugin - vmxnet3 device driver I: vmxnet3 M: Steven Luong <sluong@cisco.com> F: src/plugins/vmxnet3/ Binary API Compiler for Python I: vppapigen M: Ole Troan <otroan@employees.org> F: src/tools/vppapigen/ API trace tool I: vppapitrace M: Ole Troan <otroan@employees.org> F: src/tools/vppapitrace/ Binary API Compiler for C and C++ I: vapi M: Ole Troan <ot@cisco.com> F: src/vpp-api/vapi Plugin - RDMA (ibverb) driver I: rdma M: Benoît Ganne <bganne@cisco.com> M: Damjan Marion <damarion@cisco.com> F: src/plugins/rdma/ Plugin - QUIC protocol I: quic M: Aloys Augustin <aloaugus@cisco.com> M: Nathan Skrzypczak <nathan.skrzypczak@gmail.com> M: Dave Wallace <dwallacelf@gmail.com> M: Florin Coras <fcoras@cisco.com> F: src/plugins/quic/ libmemif I: libmemif M: Damjan Marion <damarion@cisco.com> F: extras/libmemif VPP Comms Library I: vcl M: Florin Coras <fcoras@cisco.com> F: src/vcl Statistics Segment I: stats M: Ole Troan <ot@cisco.com> F: src/vpp/stats/ F: src/vpp-api/client/stat_client.[ch] VPP Object Model I: vom M: Neale Ranns <nranns@cisco.com> M: Mohsin Kazmi <sykazmi@cisco.com> F: extras/vom/vom/ Plugin - Host Stack Applications I: hsa M: Florin Coras <fcoras@cisco.com> M: Dave Wallace <dwallacelf@gmail.com> M: Aloys Augustin <aloaugus@cisco.com> M: Nathan Skrzypczak <nathan.skrzypczak@gmail.com> F: src/plugins/hs_apps/ Python binding for the VPP API I: papi M: Ole Troan <ot@cisco.com> F: src/vpp-api/python Plugin - SCTP I: sctp F: src/plugins/sctp/ Cisco Discovery Protocol I: cdp F: src/plugins/cdp/ Source VRF Select I: svs M: Neale Ranns <nranns@cisco.com> F: src/plugins/svs/ LAN Emulation I: l2e M: Neale Ranns <nranns@cisco.com> F: src/plugins/l2e/ IPv6 Connection Tracker I: ct6 M: Dave Barach <dave@barachs.net> F: src/plugins/ct6 Steal The NIC I: stn F: src/plugins/stn IOAM I: ioam F: src/plugins/ioam Awkward chained buffer geometry tool I: oddbuf F: src/plugins/oddbuf THE REST I: misc C: Contact vpp-dev Mailing List <vpp-dev@fd.io> F: * F: */