summaryrefslogtreecommitdiffstats
path: root/src/vnet/replication.c
blob: 0fdca0bf13c25091eededf3922e3dac21fdd962c (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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
/*
 * replication.c : packet replication
 *
 * Copyright (c) 2013 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/vnet.h>
#include <vppinfra/error.h>
#include <vnet/ip/ip4_packet.h>
#include <vnet/replication.h>


replication_main_t replication_main;


replication_context_t *
replication_prep (vlib_main_t * vm,
		  vlib_buffer_t * b0, u32 recycle_node_index, u32 l2_packet)
{
  replication_main_t *rm = &replication_main;
  replication_context_t *ctx;
  uword thread_index = vm->thread_index;
  ip4_header_t *ip;
  u32 ctx_id;

  /* Allocate a context, reserve context 0 */
  if (PREDICT_FALSE (rm->contexts[thread_index] == 0))
    pool_get_aligned (rm->contexts[thread_index], ctx, CLIB_CACHE_LINE_BYTES);

  pool_get_aligned (rm->contexts[thread_index], ctx, CLIB_CACHE_LINE_BYTES);
  ctx_id = ctx - rm->contexts[thread_index];

  /* Save state from vlib buffer */
  ctx->saved_free_list_index = vlib_buffer_get_free_list_index (b0);
  ctx->current_data = b0->current_data;

  /* Set up vlib buffer hooks */
  b0->recycle_count = ctx_id;
  vlib_buffer_set_free_list_index (b0, rm->recycle_list_index);
  b0->flags |= VLIB_BUFFER_RECYCLE;

  /* Save feature state */
  ctx->recycle_node_index = recycle_node_index;

  /* Save vnet state */
  clib_memcpy (ctx->vnet_buffer, vnet_buffer (b0),
	       sizeof (vnet_buffer_opaque_t));

  /* Save packet contents */
  ctx->l2_packet = l2_packet;
  ip = (ip4_header_t *) vlib_buffer_get_current (b0);
  if (l2_packet)
    {
      /* Save ethernet header */
      ctx->l2_header[0] = ((u64 *) ip)[0];
      ctx->l2_header[1] = ((u64 *) ip)[1];
      ctx->l2_header[2] = ((u64 *) ip)[2];
      /* set ip to the true ip header */
      ip = (ip4_header_t *) (((u8 *) ip) + vnet_buffer (b0)->l2.l2_len);
    }

  /*
   * Copy L3 fields.
   * We need to save TOS for ip4 and ip6 packets.
   * Fortunately the TOS field is
   * in the first two bytes of both the ip4 and ip6 headers.
   */
  ctx->ip_tos = *((u16 *) (ip));

  /*
   * Save the ip4 checksum as well. We just blindly save the corresponding two
   * bytes even for ip6 packets.
   */
  ctx->ip4_checksum = ip->checksum;

  return ctx;
}


replication_context_t *
replication_recycle (vlib_main_t * vm, vlib_buffer_t * b0, u32 is_last)
{
  replication_main_t *rm = &replication_main;
  replication_context_t *ctx;
  uword thread_index = vm->thread_index;
  ip4_header_t *ip;

  /* Get access to the replication context */
  ctx = pool_elt_at_index (rm->contexts[thread_index], b0->recycle_count);

  /* Restore vnet buffer state */
  clib_memcpy (vnet_buffer (b0), ctx->vnet_buffer,
	       sizeof (vnet_buffer_opaque_t));

  /* Restore the packet start (current_data) and length */
  vlib_buffer_advance (b0, ctx->current_data - b0->current_data);

  /* Restore packet contents */
  ip = (ip4_header_t *) vlib_buffer_get_current (b0);
  if (ctx->l2_packet)
    {
      /* Restore ethernet header */
      ((u64 *) ip)[0] = ctx->l2_header[0];
      ((u64 *) ip)[1] = ctx->l2_header[1];
      ((u64 *) ip)[2] = ctx->l2_header[2];
      /* set ip to the true ip header */
      ip = (ip4_header_t *) (((u8 *) ip) + vnet_buffer (b0)->l2.l2_len);
    }

  // Restore L3 fields
  *((u16 *) (ip)) = ctx->ip_tos;
  ip->checksum = ctx->ip4_checksum;

  if (is_last)
    {
      /*
       * This is the last replication in the list.
       * Restore original buffer free functionality.
       */
      vlib_buffer_set_free_list_index (b0, ctx->saved_free_list_index);
      b0->flags &= ~VLIB_BUFFER_RECYCLE;

      /* Free context back to its pool */
      pool_put (rm->contexts[thread_index], ctx);
    }

  return ctx;
}



/*
 * fish pkts back from the recycle queue/freelist
 * un-flatten the context chains
 */
static void
replication_recycle_callback (vlib_main_t * vm, vlib_buffer_free_list_t * fl)
{
  vlib_frame_t *f = 0;
  u32 n_left_from;
  u32 n_left_to_next = 0;
  u32 n_this_frame = 0;
  u32 *from;
  u32 *to_next = 0;
  u32 bi0, pi0;
  vlib_buffer_t *b0;
  int i;
  replication_main_t *rm = &replication_main;
  replication_context_t *ctx;
  u32 feature_node_index = 0;
  uword thread_index = vm->thread_index;

  /*
   * All buffers in the list are destined to the same recycle node.
   * Pull the recycle node index from the first buffer.
   * Note: this could be sped up if the node index were stuffed into
   * the freelist itself.
   */
  if (vec_len (fl->buffers) > 0)
    {
      bi0 = fl->buffers[0];
      b0 = vlib_get_buffer (vm, bi0);
      ctx = pool_elt_at_index (rm->contexts[thread_index], b0->recycle_count);
      feature_node_index = ctx->recycle_node_index;
    }

  /* buffers */
  for (i = 0; i < 2; i++)
    {
      if (i == 0)
	{
	  from = fl->buffers;
	  n_left_from = vec_len (from);
	}

      while (n_left_from > 0)
	{
	  if (PREDICT_FALSE (n_left_to_next == 0))
	    {
	      if (f)
		{
		  f->n_vectors = n_this_frame;
		  vlib_put_frame_to_node (vm, feature_node_index, f);
		}

	      f = vlib_get_frame_to_node (vm, feature_node_index);
	      to_next = vlib_frame_vector_args (f);
	      n_left_to_next = VLIB_FRAME_SIZE;
	      n_this_frame = 0;
	    }

	  bi0 = from[0];
	  if (PREDICT_TRUE (n_left_from > 1))
	    {
	      pi0 = from[1];
	      vlib_prefetch_buffer_with_index (vm, pi0, LOAD);
	    }

	  b0 = vlib_get_buffer (vm, bi0);

	  /* Mark that this buffer was just recycled */
	  b0->flags |= VLIB_BUFFER_IS_RECYCLED;

#if (CLIB_DEBUG > 0)
	  if (vm->buffer_main->callbacks_registered == 0)
	    vlib_buffer_set_known_state (vm, bi0,
					 VLIB_BUFFER_KNOWN_ALLOCATED);
#endif

	  /* If buffer is traced, mark frame as traced */
	  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
	    f->flags |= VLIB_FRAME_TRACE;

	  to_next[0] = bi0;

	  from++;
	  to_next++;
	  n_this_frame++;
	  n_left_to_next--;
	  n_left_from--;
	}
    }

  vec_reset_length (fl->buffers);

  if (f)
    {
      ASSERT (n_this_frame);
      f->n_vectors = n_this_frame;
      vlib_put_frame_to_node (vm, feature_node_index, f);
    }
}

clib_error_t *
replication_init (vlib_main_t * vm)
{
  replication_main_t *rm = &replication_main;
  vlib_buffer_main_t *bm = vm->buffer_main;
  vlib_buffer_free_list_t *fl;
  __attribute__ ((unused)) replication_context_t *ctx;
  vlib_thread_main_t *tm = vlib_get_thread_main ();

  rm->vlib_main = vm;
  rm->vnet_main = vnet_get_main ();
  rm->recycle_list_index =
    vlib_buffer_create_free_list (vm, 1024 /* fictional */ ,
				  "replication-recycle");

  fl = pool_elt_at_index (bm->buffer_free_list_pool, rm->recycle_list_index);

  fl->buffers_added_to_freelist_function = replication_recycle_callback;

  /* Verify the replication context is the expected size */
  ASSERT (sizeof (replication_context_t) == 128);	/* 2 cache lines */

  vec_validate (rm->contexts, tm->n_vlib_mains - 1);
  return 0;
}

VLIB_INIT_FUNCTION (replication_init);

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */
="o">++; else if (tph->tp_status & TP_STATUS_SEND_REQUEST) n_send_req++; else if (tph->tp_status & TP_STATUS_SENDING) n_sending++; else n_wrong++; n_tot++; } while (tx_frame != tx_queue->next_tx_frame); s = format (s, "\n%Uavailable:%d request:%d sending:%d wrong:%d total:%d", format_white_space, indent + 2, n_avail, n_send_req, n_sending, n_wrong, n_tot); clib_spinlock_unlock (&tx_queue->lockp); } return s; } static u8 * format_af_packet_tx_trace (u8 *s, va_list *va) { CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *); CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *); af_packet_tx_trace_t *t = va_arg (*va, af_packet_tx_trace_t *); u32 indent = format_get_indent (s); s = format (s, "af_packet: hw_if_index %u tx-queue %u", t->hw_if_index, t->queue_id); s = format (s, "\n%Utpacket3_hdr:\n%Ustatus 0x%x len %u snaplen %u mac %u net %u" "\n%Usec 0x%x nsec 0x%x vlan %U" #ifdef TP_STATUS_VLAN_TPID_VALID " vlan_tpid %u" #endif , format_white_space, indent + 2, format_white_space, indent + 4, t->tph.tp_status, t->tph.tp_len, t->tph.tp_snaplen, t->tph.tp_mac, t->tph.tp_net, format_white_space, indent + 4, t->tph.tp_sec, t->tph.tp_nsec, format_ethernet_vlan_tci, t->tph.hv1.tp_vlan_tci #ifdef TP_STATUS_VLAN_TPID_VALID , t->tph.hv1.tp_vlan_tpid #endif ); s = format (s, "\n%Uvnet-hdr:\n%Uflags 0x%02x gso_type 0x%02x hdr_len %u" "\n%Ugso_size %u csum_start %u csum_offset %u", format_white_space, indent + 2, format_white_space, indent + 4, t->vnet_hdr.flags, t->vnet_hdr.gso_type, t->vnet_hdr.hdr_len, format_white_space, indent + 4, t->vnet_hdr.gso_size, t->vnet_hdr.csum_start, t->vnet_hdr.csum_offset); s = format (s, "\n%Ubuffer 0x%x:\n%U%U", format_white_space, indent + 2, t->buffer_index, format_white_space, indent + 4, format_vnet_buffer_no_chain, &t->buffer); s = format (s, "\n%U%U", format_white_space, indent + 2, format_ethernet_header_with_length, t->buffer.pre_data, sizeof (t->buffer.pre_data)); return s; } static void af_packet_tx_trace (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_buffer_t *b0, u32 bi, tpacket3_hdr_t *tph, vnet_virtio_net_hdr_t *vnet_hdr, u32 hw_if_index, u16 queue_id) { af_packet_tx_trace_t *t; t = vlib_add_trace (vm, node, b0, sizeof (t[0])); t->hw_if_index = hw_if_index; t->queue_id = queue_id; t->buffer_index = bi; clib_memcpy_fast (&t->tph, tph, sizeof (*tph)); clib_memcpy_fast (&t->vnet_hdr, vnet_hdr, sizeof (*vnet_hdr)); clib_memcpy_fast (&t->buffer, b0, sizeof (*b0) - sizeof (b0->pre_data)); clib_memcpy_fast (t->buffer.pre_data, vlib_buffer_get_current (b0), sizeof (t->buffer.pre_data)); } static_always_inline void fill_gso_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr) { vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags; if (b0->flags & VNET_BUFFER_F_IS_IP4) { ip4_header_t *ip4; vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4; vnet_hdr->gso_size = vnet_buffer2 (b0)->gso_size; vnet_hdr->hdr_len = vnet_buffer (b0)->l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz; vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; vnet_hdr->csum_start = vnet_buffer (b0)->l4_hdr_offset; // 0x22; vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum); ip4 = (ip4_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset); if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM) ip4->checksum = ip4_header_checksum (ip4); } else if (b0->flags & VNET_BUFFER_F_IS_IP6) { vnet_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6; vnet_hdr->gso_size = vnet_buffer2 (b0)->gso_size; vnet_hdr->hdr_len = vnet_buffer (b0)->l4_hdr_offset + vnet_buffer2 (b0)->gso_l4_hdr_sz; vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; vnet_hdr->csum_start = vnet_buffer (b0)->l4_hdr_offset; // 0x36; vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum); } } static_always_inline void fill_cksum_offload (vlib_buffer_t *b0, vnet_virtio_net_hdr_t *vnet_hdr) { vnet_buffer_oflags_t oflags = vnet_buffer (b0)->oflags; if (b0->flags & VNET_BUFFER_F_IS_IP4) { ip4_header_t *ip4; ip4 = (ip4_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset); if (oflags & VNET_BUFFER_OFFLOAD_F_IP_CKSUM) ip4->checksum = ip4_header_checksum (ip4); vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; vnet_hdr->csum_start = 0x22; if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM) { tcp_header_t *tcp = (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset); tcp->checksum = ip4_pseudo_header_cksum (ip4); vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum); } else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM) { udp_header_t *udp = (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset); udp->checksum = ip4_pseudo_header_cksum (ip4); vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum); } } else if (b0->flags & VNET_BUFFER_F_IS_IP6) { ip6_header_t *ip6; vnet_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM; vnet_hdr->csum_start = 0x36; ip6 = (ip6_header_t *) (b0->data + vnet_buffer (b0)->l3_hdr_offset); if (oflags & VNET_BUFFER_OFFLOAD_F_TCP_CKSUM) { tcp_header_t *tcp = (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset); tcp->checksum = ip6_pseudo_header_cksum (ip6); vnet_hdr->csum_offset = STRUCT_OFFSET_OF (tcp_header_t, checksum); } else if (oflags & VNET_BUFFER_OFFLOAD_F_UDP_CKSUM) { udp_header_t *udp = (udp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset); udp->checksum = ip6_pseudo_header_cksum (ip6); vnet_hdr->csum_offset = STRUCT_OFFSET_OF (udp_header_t, checksum); } } } VNET_DEVICE_CLASS_TX_FN (af_packet_device_class) (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) { af_packet_main_t *apm = &af_packet_main; vnet_hw_if_tx_frame_t *tf = vlib_frame_scalar_args (frame); u32 *buffers = vlib_frame_vector_args (frame); u32 n_left = frame->n_vectors; u32 n_sent = 0; vnet_interface_output_runtime_t *rd = (void *) node->runtime_data; af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, rd->dev_instance); u16 queue_id = tf->queue_id; af_packet_queue_t *tx_queue = vec_elt_at_index (apif->tx_queues, queue_id); u32 block = 0, frame_size = 0, frame_num = 0, tx_frame = 0; u8 *block_start = 0; tpacket3_hdr_t *tph = 0; u32 frame_not_ready = 0; u8 is_cksum_gso_enabled = (apif->is_cksum_gso_enabled == 1) ? 1 : 0; if (tf->shared_queue) clib_spinlock_lock (&tx_queue->lockp); frame_size = tx_queue->tx_req->tp_frame_size; frame_num = tx_queue->tx_req->tp_frame_nr; block_start = tx_queue->tx_ring[block]; tx_frame = tx_queue->next_tx_frame; while (n_left) { u32 len; vnet_virtio_net_hdr_t *vnet_hdr = 0; u32 offset = 0; vlib_buffer_t *b0 = 0, *b0_first = 0; u32 bi, bi_first; bi = bi_first = buffers[0]; n_left--; buffers++; tph = (tpacket3_hdr_t *) (block_start + tx_frame * frame_size); if (PREDICT_FALSE (tph->tp_status & (TP_STATUS_SEND_REQUEST | TP_STATUS_SENDING))) { frame_not_ready++; goto next; } b0_first = b0 = vlib_get_buffer (vm, bi); if (PREDICT_TRUE (is_cksum_gso_enabled)) { vnet_hdr = (vnet_virtio_net_hdr_t *) ((u8 *) tph + TPACKET_ALIGN (sizeof ( tpacket3_hdr_t))); clib_memset_u8 (vnet_hdr, 0, sizeof (vnet_virtio_net_hdr_t)); offset = sizeof (vnet_virtio_net_hdr_t); if (b0->flags & VNET_BUFFER_F_GSO) fill_gso_offload (b0, vnet_hdr); else if (b0->flags & VNET_BUFFER_F_OFFLOAD) fill_cksum_offload (b0, vnet_hdr); } len = b0->current_length; clib_memcpy_fast ((u8 *) tph + TPACKET_ALIGN (sizeof (tpacket3_hdr_t)) + offset, vlib_buffer_get_current (b0), len); offset += len; while (b0->flags & VLIB_BUFFER_NEXT_PRESENT) { b0 = vlib_get_buffer (vm, b0->next_buffer); len = b0->current_length; clib_memcpy_fast ((u8 *) tph + TPACKET_ALIGN (sizeof (tpacket3_hdr_t)) + offset, vlib_buffer_get_current (b0), len); offset += len; } tph->tp_len = tph->tp_snaplen = offset; tph->tp_status = TP_STATUS_SEND_REQUEST; n_sent++; if (PREDICT_FALSE (b0_first->flags & VLIB_BUFFER_IS_TRACED)) { if (PREDICT_TRUE (is_cksum_gso_enabled)) af_packet_tx_trace (vm, node, b0_first, bi_first, tph, vnet_hdr, apif->hw_if_index, queue_id); else { vnet_virtio_net_hdr_t vnet_hdr2 = {}; af_packet_tx_trace (vm, node, b0_first, bi_first, tph, &vnet_hdr2, apif->hw_if_index, queue_id); } } tx_frame = (tx_frame + 1) % frame_num; next: /* check if we've exhausted the ring */ if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num)) break; } CLIB_MEMORY_BARRIER (); if (PREDICT_TRUE (n_sent)) { tx_queue->next_tx_frame = tx_frame; if (PREDICT_FALSE ( sendto (tx_queue->fd, NULL, 0, MSG_DONTWAIT, NULL, 0) == -1)) { /* Uh-oh, drop & move on, but count whether it was fatal or not. * Note that we have no reliable way to properly determine the * disposition of the packets we just enqueued for delivery. */ vlib_error_count (vm, node->node_index, unix_error_is_fatal (errno) ? AF_PACKET_TX_ERROR_TXRING_FATAL : AF_PACKET_TX_ERROR_TXRING_EAGAIN, n_sent); } } if (tf->shared_queue) clib_spinlock_unlock (&tx_queue->lockp); if (PREDICT_FALSE (frame_not_ready)) vlib_error_count (vm, node->node_index, AF_PACKET_TX_ERROR_FRAME_NOT_READY, frame_not_ready); if (PREDICT_FALSE (frame_not_ready + n_sent == frame_num)) vlib_error_count (vm, node->node_index, AF_PACKET_TX_ERROR_TXRING_OVERRUN, n_left); vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors); return frame->n_vectors; } static void af_packet_set_interface_next_node (vnet_main_t * vnm, u32 hw_if_index, u32 node_index) { af_packet_main_t *apm = &af_packet_main; vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index); af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, hw->dev_instance); /* Shut off redirection */ if (node_index == ~0) { apif->per_interface_next_index = node_index; return; } apif->per_interface_next_index = vlib_node_add_next (vlib_get_main (), af_packet_input_node.index, node_index); } static void af_packet_clear_hw_interface_counters (u32 instance) { /* Nothing for now */ } static clib_error_t * af_packet_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags) { af_packet_main_t *apm = &af_packet_main; vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index); af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, hw->dev_instance); u32 hw_flags; int rv, fd = socket (AF_UNIX, SOCK_DGRAM, 0); struct ifreq ifr; if (0 > fd) { vlib_log_warn (apm->log_class, "af_packet_%s could not open socket", apif->host_if_name); return 0; } /* if interface is a bridge ignore */ if (apif->host_if_index < 0) goto error; /* no error */ /* use host_if_index in case host name has changed */ ifr.ifr_ifindex = apif->host_if_index; if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0) { vlib_log_warn (apm->log_class, "af_packet_%s ioctl could not retrieve eth name", apif->host_if_name); goto error; } apif->is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0; if ((rv = ioctl (fd, SIOCGIFFLAGS, &ifr)) < 0) { vlib_log_warn (apm->log_class, "af_packet_%s error: %d", apif->is_admin_up ? "up" : "down", rv); goto error; } if (apif->is_admin_up) { hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP; ifr.ifr_flags |= IFF_UP; } else { hw_flags = 0; ifr.ifr_flags &= ~IFF_UP; } if ((rv = ioctl (fd, SIOCSIFFLAGS, &ifr)) < 0) { vlib_log_warn (apm->log_class, "af_packet_%s error: %d", apif->is_admin_up ? "up" : "down", rv); goto error; } vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags); error: if (0 <= fd) close (fd); return 0; /* no error */ } static clib_error_t * af_packet_subif_add_del_function (vnet_main_t * vnm, u32 hw_if_index, struct vnet_sw_interface_t *st, int is_add) { /* Nothing for now */ return 0; } static clib_error_t *af_packet_set_mac_address_function (struct vnet_hw_interface_t *hi, const u8 * old_address, const u8 * address) { af_packet_main_t *apm = &af_packet_main; af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, hi->dev_instance); int rv, fd; struct ifreq ifr; if (apif->mode == AF_PACKET_IF_MODE_IP) { vlib_log_warn (apm->log_class, "af_packet_%s interface is in IP mode", apif->host_if_name); return clib_error_return (0, " MAC update failed, interface is in IP mode"); } fd = socket (AF_UNIX, SOCK_DGRAM, 0); if (0 > fd) { vlib_log_warn (apm->log_class, "af_packet_%s could not open socket", apif->host_if_name); return 0; } /* if interface is a bridge ignore */ if (apif->host_if_index < 0) goto error; /* no error */ /* use host_if_index in case host name has changed */ ifr.ifr_ifindex = apif->host_if_index; if ((rv = ioctl (fd, SIOCGIFNAME, &ifr)) < 0) { vlib_log_warn (apm->log_class, "af_packet_%s ioctl could not retrieve eth name, error: %d", apif->host_if_name, rv); goto error; } clib_memcpy (ifr.ifr_hwaddr.sa_data, address, 6); ifr.ifr_hwaddr.sa_family = ARPHRD_ETHER; if ((rv = ioctl (fd, SIOCSIFHWADDR, &ifr)) < 0) { vlib_log_warn (apm->log_class, "af_packet_%s ioctl could not set mac, error: %d", apif->host_if_name, rv); goto error; } error: if (0 <= fd) close (fd); return 0; /* no error */ } VNET_DEVICE_CLASS (af_packet_device_class) = { .name = "af-packet", .format_device_name = format_af_packet_device_name, .format_device = format_af_packet_device, .format_tx_trace = format_af_packet_tx_trace, .tx_function_n_errors = AF_PACKET_TX_N_ERROR, .tx_function_error_strings = af_packet_tx_func_error_strings, .rx_redirect_to_node = af_packet_set_interface_next_node, .clear_counters = af_packet_clear_hw_interface_counters, .admin_up_down_function = af_packet_interface_admin_up_down, .subif_add_del_function = af_packet_subif_add_del_function, .mac_addr_change_function = af_packet_set_mac_address_function, }; /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */