summaryrefslogtreecommitdiffstats
path: root/ctrl/facemgr/src/interfaces/netlink/netlink.c
blob: 5bf0baf9f8ef36c5c5d01edd0ccb6a06d9f842db (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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/*
 * Copyright (c) 2017-2019 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.
 */

/**
 * \file interfaces/netlink/netlink.c
 * \brief Netlink interface
 */

#include <linux/rtnetlink.h>
#include <sys/types.h> // getpid
#include <unistd.h> // getpid

#include "../../event.h"
#include "../../facemgr.h"
#include "../../interface.h"

/* Internal data storage */
typedef struct {
    int fd;
} nl_data_t;

// little helper to parsing message using netlink macroses
void parseRtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len)
{
    memset(tb, 0, sizeof(struct rtattr *) * (max + 1));

    while (RTA_OK(rta, len)) {  // while not end of the message
        if (rta->rta_type <= max) {
            tb[rta->rta_type] = rta; // read attr
        }
        rta = RTA_NEXT(rta,len);    // get next attr
    }
}


int nl_initialize(interface_t * interface, face_rules_t * rules, void ** pdata)
{
    nl_data_t * data = malloc(sizeof(nl_data_t));
    if (!data)
        goto ERR_MALLOC;

    data->fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
    if (data->fd < 0) {
        printf("Failed to create netlink socket: %s\n", (char*)strerror(errno));
        goto ERR_SOCKET;
    }

    struct sockaddr_nl  local;  // local addr struct
    memset(&local, 0, sizeof(local));
    local.nl_family = AF_NETLINK;       // set protocol family
    local.nl_groups = RTMGRP_LINK | RTMGRP_IPV4_IFADDR | RTMGRP_IPV4_ROUTE;   // set groups we interested in
    local.nl_pid = getpid();    // set out id using current process id


    if (bind(data->fd, (struct sockaddr*)&local, sizeof(local)) < 0) {     // bind socket
        printf("Failed to bind netlink socket: %s\n", (char*)strerror(errno));
        goto ERR_BIND;
    }

    /* Issue a first query to receive static state */


    *pdata = data;
    return data->fd; // FACEMGR_SUCCESS;

ERR_BIND:
    close(data->fd);
ERR_SOCKET:
    free(data);
ERR_MALLOC:
    *pdata = NULL;
    return FACEMGR_FAILURE;
}

int nl_callback(interface_t * interface)
{
    nl_data_t * data = (nl_data_t*)interface->data;

    struct sockaddr_nl  local;  // local addr struct
    memset(&local, 0, sizeof(local));

    char buf[8192];             // message buffer
    struct iovec iov;           // message structure
    iov.iov_base = buf;         // set message buffer as io
    iov.iov_len = sizeof(buf);  // set size

    // initialize protocol message header
    struct msghdr msg;
    {
        msg.msg_name = &local;                  // local address
        msg.msg_namelen = sizeof(local);        // address size
        msg.msg_iov = &iov;                     // io vector
        msg.msg_iovlen = 1;                     // io size
    }

    ssize_t status = recvmsg(data->fd, &msg, 0);

    //  check status
    if (status < 0) {
/*
        if (errno == EINTR || errno == EAGAIN)
            continue;
*/

        printf("Failed to read netlink: %s", (char*)strerror(errno));
        return FACEMGR_FAILURE;
    }

    if (msg.msg_namelen != sizeof(local)) { // check message length, just in case
        printf("Invalid length of the sender address struct\n");
        return FACEMGR_FAILURE;
    }

    // message parser
    struct nlmsghdr *h;

    for (h = (struct nlmsghdr*)buf; status >= (ssize_t)sizeof(*h); ) {   // read all messagess headers
        int len = h->nlmsg_len;
        int l = len - sizeof(*h);
        char *ifName = NULL;

        if ((l < 0) || (len > status)) {
            printf("Invalid message length: %i\n", len);
            continue;
        }

        // now we can check message type
        if ((h->nlmsg_type == RTM_NEWROUTE) || (h->nlmsg_type == RTM_DELROUTE)) { // some changes in routing table
            printf("Routing table was changed\n");
        } else {    // in other case we need to go deeper
            char *ifUpp;
            char *ifRunn;
            struct ifinfomsg *ifi;  // structure for network interface info
            struct rtattr *tb[IFLA_MAX + 1];

            ifi = (struct ifinfomsg*) NLMSG_DATA(h);    // get information about changed network interface

            parseRtattr(tb, IFLA_MAX, IFLA_RTA(ifi), h->nlmsg_len);  // get attributes

            if (tb[IFLA_IFNAME]) {  // validation
                ifName = (char*)RTA_DATA(tb[IFLA_IFNAME]); // get network interface name
            }

            if (ifi->ifi_flags & IFF_UP) { // get UP flag of the network interface
                ifUpp = (char*)"UP";
            } else {
                ifUpp = (char*)"DOWN";
            }

            if (ifi->ifi_flags & IFF_RUNNING) { // get RUNNING flag of the network interface
                ifRunn = (char*)"RUNNING";
            } else {
                ifRunn = (char*)"NOT RUNNING";
            }

            char ifAddress[256] = {0};    // network addr
            struct ifaddrmsg *ifa; // structure for network interface data
            struct rtattr *tba[IFA_MAX+1];

            ifa = (struct ifaddrmsg*)NLMSG_DATA(h); // get data from the network interface

            parseRtattr(tba, IFA_MAX, IFA_RTA(ifa), h->nlmsg_len);

            if (tba[IFA_LOCAL]) {
                inet_ntop(AF_INET, RTA_DATA(tba[IFA_LOCAL]), ifAddress, sizeof(ifAddress)); // get IP addr
            }

            face_t * face;

            if (tba[IFA_LOCAL]) {
                ip_address_t local_addr = IP_ADDRESS_EMPTY;
                switch(ifa->ifa_family) {
                    case AF_INET:
                        local_addr.v4.as_inaddr = *(struct in_addr*)RTA_DATA(tba[IFA_LOCAL]);
                        break;
                    case AF_INET6:
                        local_addr.v6.as_in6addr = *(struct in6_addr*)RTA_DATA(tba[IFA_LOCAL]);
                        break;
                    default:
                        continue;
                }
                face = face_create_udp(&local_addr, 0, &IP_ADDRESS_EMPTY, 0, ifa->ifa_family);
            } else {
                face = NULL;
            }

            switch (h->nlmsg_type) {
                case RTM_DELADDR:
                    // DOES NOT SEEM TO BE TRIGGERED
                    printf("Interface %s: address was removed\n", ifName);
                    if (face)
                        event_raise(EVENT_TYPE_DELETE, face, interface);
                    break;

                case RTM_DELLINK:
                    printf("Network interface %s was removed\n", ifName);
                    break;

                case RTM_NEWLINK:
                    printf("New network interface %s, state: %s %s\n", ifName, ifUpp, ifRunn);
                    // UP RUNNING
                    // UP NOT RUNNING
                    // DOWN NOT RUNNING
                    if (!(ifi->ifi_flags & IFF_UP) || (!(ifi->ifi_flags & IFF_RUNNING))) {
                        if(face)
                            event_raise(EVENT_TYPE_DELETE, face, interface);
                    }
                    break;

                case RTM_NEWADDR:
                    printf("Interface %s: new address was assigned: %s\n", ifName, ifAddress);
                    printf("NEW FACE\n");
                    if (face)
                        event_raise(EVENT_TYPE_CREATE, face, interface);
                    break;
            }
        }

        status -= NLMSG_ALIGN(len); // align offsets by the message length, this is important

        h = (struct nlmsghdr*)((char*)h + NLMSG_ALIGN(len));    // get next message
    }

    return FACEMGR_SUCCESS;
}

int nl_finalize(interface_t * interface)
{
    nl_data_t * data = (nl_data_t*)interface->data;
    close(data->fd);
    return FACEMGR_SUCCESS;

}

const interface_ops_t netlink_ops = {
    .type = "netlink",
    .is_singleton = true,
    .initialize = nl_initialize,
    .callback = nl_callback,
    .finalize = nl_finalize,
    .on_event = NULL,
};
lass="n">u32 max_dequeue; int actual_transfer __attribute__ ((unused)); svm_fifo_t *tx_fifo, *rx_fifo; proxy_main_t *pm = &proxy_main; u32 thread_index = vlib_get_thread_index (); vnet_connect_args_t _a, *a = &_a; proxy_session_t *ps; int proxy_index; uword *p; svm_fifo_t *ao_tx_fifo; ASSERT (s->thread_index == thread_index); clib_spinlock_lock_if_init (&pm->sessions_lock); p = hash_get (pm->proxy_session_by_server_handle, session_handle (s)); if (PREDICT_TRUE (p != 0)) { clib_spinlock_unlock_if_init (&pm->sessions_lock); ao_tx_fifo = s->rx_fifo; /* * Send event for active open tx fifo */ if (svm_fifo_set_event (ao_tx_fifo)) { u32 ao_thread_index = ao_tx_fifo->master_thread_index; u32 ao_session_index = ao_tx_fifo->master_session_index; if (session_send_io_evt_to_thread_custom (&ao_session_index, ao_thread_index, SESSION_IO_EVT_TX)) clib_warning ("failed to enqueue tx evt"); } if (svm_fifo_max_enqueue (ao_tx_fifo) <= TCP_MSS) svm_fifo_add_want_deq_ntf (ao_tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF); } else { rx_fifo = s->rx_fifo; tx_fifo = s->tx_fifo; ASSERT (rx_fifo->master_thread_index == thread_index); ASSERT (tx_fifo->master_thread_index == thread_index); max_dequeue = svm_fifo_max_dequeue_cons (s->rx_fifo); if (PREDICT_FALSE (max_dequeue == 0)) return 0; max_dequeue = clib_min (pm->rcv_buffer_size, max_dequeue); actual_transfer = svm_fifo_peek (rx_fifo, 0 /* relative_offset */ , max_dequeue, pm->rx_buf[thread_index]); /* $$$ your message in this space: parse url, etc. */ clib_memset (a, 0, sizeof (*a)); pool_get (pm->sessions, ps); clib_memset (ps, 0, sizeof (*ps)); ps->server_rx_fifo = rx_fifo; ps->server_tx_fifo = tx_fifo; ps->vpp_server_handle = session_handle (s); proxy_index = ps - pm->sessions; hash_set (pm->proxy_session_by_server_handle, ps->vpp_server_handle, proxy_index); clib_spinlock_unlock_if_init (&pm->sessions_lock); a->uri = (char *) pm->client_uri; a->api_context = proxy_index; a->app_index = pm->active_open_app_index; proxy_call_main_thread (a); } return 0; } static int proxy_tx_callback (session_t * proxy_s) { proxy_main_t *pm = &proxy_main; transport_connection_t *tc; session_handle_t handle; proxy_session_t *ps; session_t *ao_s; uword *p; clib_spinlock_lock_if_init (&pm->sessions_lock); handle = session_handle (proxy_s); p = hash_get (pm->proxy_session_by_server_handle, handle); if (!p) return 0; if (pool_is_free_index (pm->sessions, p[0])) return 0; ps = pool_elt_at_index (pm->sessions, p[0]); if (ps->vpp_active_open_handle == ~0) return 0; ao_s = session_get_from_handle (ps->vpp_active_open_handle); /* Force ack on active open side to update rcv wnd */ tc = session_get_transport (ao_s); tcp_send_ack ((tcp_connection_t *) tc); clib_spinlock_unlock_if_init (&pm->sessions_lock); return 0; } static session_cb_vft_t proxy_session_cb_vft = { .session_accept_callback = proxy_accept_callback, .session_disconnect_callback = proxy_disconnect_callback, .session_connected_callback = proxy_connected_callback, .add_segment_callback = proxy_add_segment_callback, .builtin_app_rx_callback = proxy_rx_callback, .builtin_app_tx_callback = proxy_tx_callback, .session_reset_callback = proxy_reset_callback }; static int active_open_connected_callback (u32 app_index, u32 opaque, session_t * s, u8 is_fail) { proxy_main_t *pm = &proxy_main; proxy_session_t *ps; u8 thread_index = vlib_get_thread_index (); if (is_fail) { clib_warning ("connection %d failed!", opaque); return 0; } /* * Setup proxy session handle. */ clib_spinlock_lock_if_init (&pm->sessions_lock); ps = pool_elt_at_index (pm->sessions, opaque); ps->vpp_active_open_handle = session_handle (s); s->tx_fifo = ps->server_rx_fifo; s->rx_fifo = ps->server_tx_fifo; /* * Reset the active-open tx-fifo master indices so the active-open session * will receive data, etc. */ s->tx_fifo->master_session_index = s->session_index; s->tx_fifo->master_thread_index = s->thread_index; /* * Account for the active-open session's use of the fifos * so they won't disappear until the last session which uses * them disappears */ s->tx_fifo->refcnt++; s->rx_fifo->refcnt++; hash_set (pm->proxy_session_by_active_open_handle, ps->vpp_active_open_handle, opaque); clib_spinlock_unlock_if_init (&pm->sessions_lock); /* * Send event for active open tx fifo */ ASSERT (s->thread_index == thread_index); if (svm_fifo_set_event (s->tx_fifo)) session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX); return 0; } static void active_open_reset_callback (session_t * s) { delete_proxy_session (s, 1 /* is_active_open */ ); } static int active_open_create_callback (session_t * s) { return 0; } static void active_open_disconnect_callback (session_t * s) { delete_proxy_session (s, 1 /* is_active_open */ ); } static int active_open_rx_callback (session_t * s) { svm_fifo_t *proxy_tx_fifo; proxy_tx_fifo = s->rx_fifo; /* * Send event for server tx fifo */ if (svm_fifo_set_event (proxy_tx_fifo)) { u8 thread_index = proxy_tx_fifo->master_thread_index; u32 session_index = proxy_tx_fifo->master_session_index; return session_send_io_evt_to_thread_custom (&session_index, thread_index, SESSION_IO_EVT_TX); } if (svm_fifo_max_enqueue (proxy_tx_fifo) <= TCP_MSS) svm_fifo_add_want_deq_ntf (proxy_tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF); return 0; } static int active_open_tx_callback (session_t * ao_s) { proxy_main_t *pm = &proxy_main; transport_connection_t *tc; session_handle_t handle; proxy_session_t *ps; session_t *proxy_s; uword *p; clib_spinlock_lock_if_init (&pm->sessions_lock); handle = session_handle (ao_s); p = hash_get (pm->proxy_session_by_active_open_handle, handle); if (!p) return 0; if (pool_is_free_index (pm->sessions, p[0])) return 0; ps = pool_elt_at_index (pm->sessions, p[0]); if (ps->vpp_server_handle == ~0) return 0; proxy_s = session_get_from_handle (ps->vpp_server_handle); /* Force ack on proxy side to update rcv wnd */ tc = session_get_transport (proxy_s); tcp_send_ack ((tcp_connection_t *) tc); clib_spinlock_unlock_if_init (&pm->sessions_lock); return 0; } /* *INDENT-OFF* */ static session_cb_vft_t active_open_clients = { .session_reset_callback = active_open_reset_callback, .session_connected_callback = active_open_connected_callback, .session_accept_callback = active_open_create_callback, .session_disconnect_callback = active_open_disconnect_callback, .builtin_app_rx_callback = active_open_rx_callback, .builtin_app_tx_callback = active_open_tx_callback, }; /* *INDENT-ON* */ static int proxy_server_attach () { proxy_main_t *pm = &proxy_main; u64 options[APP_OPTIONS_N_OPTIONS]; vnet_app_attach_args_t _a, *a = &_a; u32 segment_size = 512 << 20; clib_memset (a, 0, sizeof (*a)); clib_memset (options, 0, sizeof (options)); if (pm->private_segment_size) segment_size = pm->private_segment_size; a->name = format (0, "proxy-server"); a->api_client_index = pm->server_client_index; a->session_cb_vft = &proxy_session_cb_vft; a->options = options; a->options[APP_OPTIONS_SEGMENT_SIZE] = segment_size; a->options[APP_OPTIONS_RX_FIFO_SIZE] = pm->fifo_size; a->options[APP_OPTIONS_TX_FIFO_SIZE] = pm->fifo_size; a->options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT] = pm->private_segment_count; a->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = pm->prealloc_fifos ? pm->prealloc_fifos : 0; a->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN; if (vnet_application_attach (a)) { clib_warning ("failed to attach server"); return -1; } pm->server_app_index = a->app_index; vec_free (a->name); return 0; } static int active_open_attach (void) { proxy_main_t *pm = &proxy_main; vnet_app_attach_args_t _a, *a = &_a; u64 options[16]; clib_memset (a, 0, sizeof (*a)); clib_memset (options, 0, sizeof (options)); a->api_client_index = pm->active_open_client_index; a->session_cb_vft = &active_open_clients; a->name = format (0, "proxy-active-open"); options[APP_OPTIONS_ACCEPT_COOKIE] = 0x12345678; options[APP_OPTIONS_SEGMENT_SIZE] = 512 << 20; options[APP_OPTIONS_RX_FIFO_SIZE] = pm->fifo_size; options[APP_OPTIONS_TX_FIFO_SIZE] = pm->fifo_size; options[APP_OPTIONS_PRIVATE_SEGMENT_COUNT] = pm->private_segment_count; options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = pm->prealloc_fifos ? pm->prealloc_fifos : 0; options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_IS_BUILTIN | APP_OPTIONS_FLAGS_IS_PROXY; a->options = options; if (vnet_application_attach (a)) return -1; pm->active_open_app_index = a->app_index; vec_free (a->name); return 0; } static int proxy_server_listen () { proxy_main_t *pm = &proxy_main; vnet_listen_args_t _a, *a = &_a; clib_memset (a, 0, sizeof (*a)); a->app_index = pm->server_app_index; a->uri = (char *) pm->server_uri; return vnet_bind_uri (a); } static int proxy_server_create (vlib_main_t * vm) { proxy_main_t *pm = &proxy_main; vlib_thread_main_t *vtm = vlib_get_thread_main (); u32 num_threads; int i; num_threads = 1 /* main thread */ + vtm->n_threads; vec_validate (proxy_main.server_event_queue, num_threads - 1); vec_validate (proxy_main.active_open_event_queue, num_threads - 1); vec_validate (pm->rx_buf, num_threads - 1); for (i = 0; i < num_threads; i++) vec_validate (pm->rx_buf[i], pm->rcv_buffer_size); if (proxy_server_attach ()) { clib_warning ("failed to attach server app"); return -1; } if (proxy_server_listen ()) { clib_warning ("failed to start listening"); return -1; } if (active_open_attach ()) { clib_warning ("failed to attach active open app"); return -1; } for (i = 0; i < num_threads; i++) { pm->active_open_event_queue[i] = session_main_get_vpp_event_queue (i); ASSERT (pm->active_open_event_queue[i]); pm->server_event_queue[i] = session_main_get_vpp_event_queue (i); } return 0; } static clib_error_t * proxy_server_create_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { proxy_main_t *pm = &proxy_main; char *default_server_uri = "tcp://0.0.0.0/23"; char *default_client_uri = "tcp://6.0.2.2/23"; int rv; u64 tmp; pm->fifo_size = 64 << 10; pm->rcv_buffer_size = 1024; pm->prealloc_fifos = 0; pm->private_segment_count = 0; pm->private_segment_size = 0; pm->server_uri = 0; pm->client_uri = 0; while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) { if (unformat (input, "fifo-size %d", &pm->fifo_size)) pm->fifo_size <<= 10; else if (unformat (input, "rcv-buf-size %d", &pm->rcv_buffer_size)) ; else if (unformat (input, "prealloc-fifos %d", &pm->prealloc_fifos)) ; else if (unformat (input, "private-segment-count %d", &pm->private_segment_count)) ; else if (unformat (input, "private-segment-size %U", unformat_memory_size, &tmp)) { if (tmp >= 0x100000000ULL) return clib_error_return (0, "private segment size %lld (%llu) too large", tmp, tmp); pm->private_segment_size = tmp; } else if (unformat (input, "server-uri %s", &pm->server_uri)) vec_add1 (pm->server_uri, 0); else if (unformat (input, "client-uri %s", &pm->client_uri)) vec_add1 (pm->client_uri, 0); else return clib_error_return (0, "unknown input `%U'", format_unformat_error, input); } if (!pm->server_uri) { clib_warning ("No server-uri provided, Using default: %s", default_server_uri); pm->server_uri = format (0, "%s%c", default_server_uri, 0); } if (!pm->client_uri) { clib_warning ("No client-uri provided, Using default: %s", default_client_uri); pm->client_uri = format (0, "%s%c", default_client_uri, 0); } vnet_session_enable_disable (vm, 1 /* turn on session and transport */ ); rv = proxy_server_create (vm); switch (rv) { case 0: break; default: return clib_error_return (0, "server_create returned %d", rv); } return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (proxy_create_command, static) = { .path = "test proxy server", .short_help = "test proxy server [server-uri <tcp://ip/port>]" "[client-uri <tcp://ip/port>][fifo-size <nn>][rcv-buf-size <nn>]" "[prealloc-fifos <nn>][private-segment-size <mem>]" "[private-segment-count <nn>]", .function = proxy_server_create_command_fn, }; /* *INDENT-ON* */ clib_error_t * proxy_main_init (vlib_main_t * vm) { proxy_main_t *pm = &proxy_main; pm->server_client_index = ~0; pm->active_open_client_index = ~0; pm->proxy_session_by_active_open_handle = hash_create (0, sizeof (uword)); pm->proxy_session_by_server_handle = hash_create (0, sizeof (uword)); return 0; } VLIB_INIT_FUNCTION (proxy_main_init); /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */