forked from openvswitch/ovs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetdev-bsd.c
1826 lines (1604 loc) · 51 KB
/
netdev-bsd.c
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2011, 2013, 2014 Gaetano Catalli.
* Copyright (c) 2013, 2014 YAMAMOTO Takashi.
*
* 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 <config.h>
#include "netdev-provider.h"
#include <stdlib.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/sockio.h>
#include <net/bpf.h>
#include <ifaddrs.h>
#include <pcap/pcap.h>
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_media.h>
#include <net/if_tap.h>
#include <netinet/in.h>
#ifdef HAVE_NET_IF_MIB_H
#include <net/if_mib.h>
#endif
#include <poll.h>
#include <string.h>
#include <unistd.h>
#include <sys/sysctl.h>
#if defined(__NetBSD__)
#include <net/route.h>
#include <netinet/if_inarp.h>
#endif
#include "rtbsd.h"
#include "coverage.h"
#include "dp-packet.h"
#include "dpif-netdev.h"
#include "dynamic-string.h"
#include "fatal-signal.h"
#include "openflow/openflow.h"
#include "ovs-thread.h"
#include "packets.h"
#include "poll-loop.h"
#include "shash.h"
#include "socket-util.h"
#include "svec.h"
#include "util.h"
#include "openvswitch/vlog.h"
VLOG_DEFINE_THIS_MODULE(netdev_bsd);
struct netdev_rxq_bsd {
struct netdev_rxq up;
/* Packet capture descriptor for a system network device.
* For a tap device this is NULL. */
pcap_t *pcap_handle;
/* Selectable file descriptor for the network device.
* This descriptor will be used for polling operations. */
int fd;
};
struct netdev_bsd {
struct netdev up;
/* Never changes after initialization. */
char *kernel_name;
/* Protects all members below. */
struct ovs_mutex mutex;
unsigned int cache_valid;
int ifindex;
struct eth_addr etheraddr;
struct in_addr in4;
struct in_addr netmask;
struct in6_addr in6;
int mtu;
int carrier;
int tap_fd; /* TAP character device, if any, otherwise -1. */
/* Used for sending packets on non-tap devices. */
pcap_t *pcap;
int fd;
};
enum {
VALID_IFINDEX = 1 << 0,
VALID_ETHERADDR = 1 << 1,
VALID_IN4 = 1 << 2,
VALID_IN6 = 1 << 3,
VALID_MTU = 1 << 4,
VALID_CARRIER = 1 << 5
};
#define PCAP_SNAPLEN 2048
/*
* Notifier used to invalidate device informations in case of status change.
*
* It will be registered with a 'rtbsd_notifier_register()' when the first
* device will be created with the call of either 'netdev_bsd_tap_create()' or
* 'netdev_bsd_system_create()'.
*
* The callback associated with this notifier ('netdev_bsd_cache_cb()') will
* invalidate cached information about the device.
*/
static struct rtbsd_notifier netdev_bsd_cache_notifier;
static int cache_notifier_refcount;
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
static void destroy_tap(int fd, const char *name);
static int get_flags(const struct netdev *, int *flagsp);
static int set_flags(const char *, int flags);
static int do_set_addr(struct netdev *netdev,
unsigned long ioctl_nr, const char *ioctl_name,
struct in_addr addr);
static int get_etheraddr(const char *netdev_name, struct eth_addr *ea);
static int set_etheraddr(const char *netdev_name, int hwaddr_family,
int hwaddr_len, const struct eth_addr);
static int get_ifindex(const struct netdev *, int *ifindexp);
static int ifr_get_flags(const struct ifreq *);
static void ifr_set_flags(struct ifreq *, int flags);
#ifdef __NetBSD__
static int af_link_ioctl(unsigned long command, const void *arg);
#endif
static void netdev_bsd_run(void);
static int netdev_bsd_get_mtu(const struct netdev *netdev_, int *mtup);
static bool
is_netdev_bsd_class(const struct netdev_class *netdev_class)
{
return netdev_class->run == netdev_bsd_run;
}
static struct netdev_bsd *
netdev_bsd_cast(const struct netdev *netdev)
{
ovs_assert(is_netdev_bsd_class(netdev_get_class(netdev)));
return CONTAINER_OF(netdev, struct netdev_bsd, up);
}
static struct netdev_rxq_bsd *
netdev_rxq_bsd_cast(const struct netdev_rxq *rxq)
{
ovs_assert(is_netdev_bsd_class(netdev_get_class(rxq->netdev)));
return CONTAINER_OF(rxq, struct netdev_rxq_bsd, up);
}
static const char *
netdev_get_kernel_name(const struct netdev *netdev)
{
return netdev_bsd_cast(netdev)->kernel_name;
}
/*
* Perform periodic work needed by netdev. In BSD netdevs it checks for any
* interface status changes, and eventually calls all the user callbacks.
*/
static void
netdev_bsd_run(void)
{
rtbsd_notifier_run();
}
/*
* Arranges for poll_block() to wake up if the "run" member function needs to
* be called.
*/
static void
netdev_bsd_wait(void)
{
rtbsd_notifier_wait();
}
/* Invalidate cache in case of interface status change. */
static void
netdev_bsd_cache_cb(const struct rtbsd_change *change,
void *aux OVS_UNUSED)
{
struct netdev_bsd *dev;
if (change) {
struct netdev *base_dev = netdev_from_name(change->if_name);
if (base_dev) {
const struct netdev_class *netdev_class =
netdev_get_class(base_dev);
if (is_netdev_bsd_class(netdev_class)) {
dev = netdev_bsd_cast(base_dev);
dev->cache_valid = 0;
netdev_change_seq_changed(base_dev);
}
netdev_close(base_dev);
}
} else {
/*
* XXX the API is lacking, we should be able to iterate on the list of
* netdevs without having to store the info in a temp shash.
*/
struct shash device_shash;
struct shash_node *node;
shash_init(&device_shash);
netdev_get_devices(&netdev_bsd_class, &device_shash);
SHASH_FOR_EACH (node, &device_shash) {
struct netdev *netdev = node->data;
dev = netdev_bsd_cast(netdev);
dev->cache_valid = 0;
netdev_change_seq_changed(netdev);
netdev_close(netdev);
}
shash_destroy(&device_shash);
}
}
static int
cache_notifier_ref(void)
{
int ret = 0;
if (!cache_notifier_refcount) {
ret = rtbsd_notifier_register(&netdev_bsd_cache_notifier,
netdev_bsd_cache_cb, NULL);
if (ret) {
return ret;
}
}
cache_notifier_refcount++;
return 0;
}
static int
cache_notifier_unref(void)
{
cache_notifier_refcount--;
if (cache_notifier_refcount == 0) {
rtbsd_notifier_unregister(&netdev_bsd_cache_notifier);
}
return 0;
}
static struct netdev *
netdev_bsd_alloc(void)
{
struct netdev_bsd *netdev = xzalloc(sizeof *netdev);
return &netdev->up;
}
static int
netdev_bsd_construct_system(struct netdev *netdev_)
{
struct netdev_bsd *netdev = netdev_bsd_cast(netdev_);
enum netdev_flags flags;
int error;
error = cache_notifier_ref();
if (error) {
return error;
}
ovs_mutex_init(&netdev->mutex);
netdev->tap_fd = -1;
netdev->kernel_name = xstrdup(netdev_->name);
/* Verify that the netdev really exists by attempting to read its flags */
error = netdev_get_flags(netdev_, &flags);
if (error == ENXIO) {
free(netdev->kernel_name);
cache_notifier_unref();
return error;
}
return 0;
}
static int
netdev_bsd_construct_tap(struct netdev *netdev_)
{
struct netdev_bsd *netdev = netdev_bsd_cast(netdev_);
const char *name = netdev_->name;
int error = 0;
struct ifreq ifr;
char *kernel_name = NULL;
error = cache_notifier_ref();
if (error) {
goto error;
}
memset(&ifr, 0, sizeof(ifr));
/* Create a tap device by opening /dev/tap. The TAPGIFNAME ioctl is used
* to retrieve the name of the tap device. */
ovs_mutex_init(&netdev->mutex);
netdev->tap_fd = open("/dev/tap", O_RDWR);
if (netdev->tap_fd < 0) {
error = errno;
VLOG_WARN("opening \"/dev/tap\" failed: %s", ovs_strerror(error));
goto error_unref_notifier;
}
/* Retrieve tap name (e.g. tap0) */
if (ioctl(netdev->tap_fd, TAPGIFNAME, &ifr) == -1) {
/* XXX Need to destroy the device? */
error = errno;
close(netdev->tap_fd);
goto error_unref_notifier;
}
/* Change the name of the tap device */
#if defined(SIOCSIFNAME)
ifr.ifr_data = (void *)name;
error = af_inet_ioctl(SIOCSIFNAME, &ifr);
if (error) {
destroy_tap(netdev->tap_fd, ifr.ifr_name);
goto error_unref_notifier;
}
kernel_name = xstrdup(name);
#else
/*
* NetBSD doesn't support inteface renaming.
*/
VLOG_INFO("tap %s is created for bridge %s", ifr.ifr_name, name);
kernel_name = xstrdup(ifr.ifr_name);
#endif
/* set non-blocking. */
error = set_nonblocking(netdev->tap_fd);
if (error) {
destroy_tap(netdev->tap_fd, kernel_name);
goto error_unref_notifier;
}
/* Turn device UP */
ifr_set_flags(&ifr, IFF_UP);
ovs_strlcpy(ifr.ifr_name, kernel_name, sizeof ifr.ifr_name);
error = af_inet_ioctl(SIOCSIFFLAGS, &ifr);
if (error) {
destroy_tap(netdev->tap_fd, kernel_name);
goto error_unref_notifier;
}
netdev->kernel_name = kernel_name;
return 0;
error_unref_notifier:
ovs_mutex_destroy(&netdev->mutex);
cache_notifier_unref();
error:
free(kernel_name);
return error;
}
static void
netdev_bsd_destruct(struct netdev *netdev_)
{
struct netdev_bsd *netdev = netdev_bsd_cast(netdev_);
cache_notifier_unref();
if (netdev->tap_fd >= 0) {
destroy_tap(netdev->tap_fd, netdev_get_kernel_name(netdev_));
}
if (netdev->pcap) {
pcap_close(netdev->pcap);
}
free(netdev->kernel_name);
ovs_mutex_destroy(&netdev->mutex);
}
static void
netdev_bsd_dealloc(struct netdev *netdev_)
{
struct netdev_bsd *netdev = netdev_bsd_cast(netdev_);
free(netdev);
}
static int
netdev_bsd_open_pcap(const char *name, pcap_t **pcapp, int *fdp)
{
char errbuf[PCAP_ERRBUF_SIZE];
pcap_t *pcap = NULL;
int one = 1;
int error;
int fd;
/* Open the pcap device. The device is opened in non-promiscuous mode
* because the interface flags are manually set by the caller. */
errbuf[0] = '\0';
pcap = pcap_open_live(name, PCAP_SNAPLEN, 0, 1000, errbuf);
if (!pcap) {
VLOG_ERR_RL(&rl, "%s: pcap_open_live failed: %s", name, errbuf);
error = EIO;
goto error;
}
if (errbuf[0] != '\0') {
VLOG_WARN_RL(&rl, "%s: pcap_open_live: %s", name, errbuf);
}
/* Get the underlying fd. */
fd = pcap_get_selectable_fd(pcap);
if (fd == -1) {
VLOG_WARN_RL(&rl, "%s: no selectable file descriptor", name);
error = errno;
goto error;
}
/* Set non-blocking mode. Also the BIOCIMMEDIATE ioctl must be called
* on the file descriptor returned by pcap_get_selectable_fd to achieve
* a real non-blocking behaviour.*/
error = pcap_setnonblock(pcap, 1, errbuf);
if (error == -1) {
error = errno;
goto error;
}
/* This call assure that reads return immediately upon packet
* reception. Otherwise, a read will block until either the kernel
* buffer becomes full or a timeout occurs. */
if (ioctl(fd, BIOCIMMEDIATE, &one) < 0 ) {
VLOG_ERR_RL(&rl, "ioctl(BIOCIMMEDIATE) on %s device failed: %s",
name, ovs_strerror(errno));
error = errno;
goto error;
}
/* Capture only incoming packets. */
error = pcap_setdirection(pcap, PCAP_D_IN);
if (error == -1) {
error = errno;
goto error;
}
*pcapp = pcap;
*fdp = fd;
return 0;
error:
if (pcap) {
pcap_close(pcap);
}
*pcapp = NULL;
*fdp = -1;
return error;
}
static struct netdev_rxq *
netdev_bsd_rxq_alloc(void)
{
struct netdev_rxq_bsd *rxq = xzalloc(sizeof *rxq);
return &rxq->up;
}
static int
netdev_bsd_rxq_construct(struct netdev_rxq *rxq_)
{
struct netdev_rxq_bsd *rxq = netdev_rxq_bsd_cast(rxq_);
struct netdev *netdev_ = rxq->up.netdev;
struct netdev_bsd *netdev = netdev_bsd_cast(netdev_);
int error;
if (!strcmp(netdev_get_type(netdev_), "tap")) {
rxq->pcap_handle = NULL;
rxq->fd = netdev->tap_fd;
error = 0;
} else {
ovs_mutex_lock(&netdev->mutex);
error = netdev_bsd_open_pcap(netdev_get_kernel_name(netdev_),
&rxq->pcap_handle, &rxq->fd);
ovs_mutex_unlock(&netdev->mutex);
}
return error;
}
static void
netdev_bsd_rxq_destruct(struct netdev_rxq *rxq_)
{
struct netdev_rxq_bsd *rxq = netdev_rxq_bsd_cast(rxq_);
if (rxq->pcap_handle) {
pcap_close(rxq->pcap_handle);
}
}
static void
netdev_bsd_rxq_dealloc(struct netdev_rxq *rxq_)
{
struct netdev_rxq_bsd *rxq = netdev_rxq_bsd_cast(rxq_);
free(rxq);
}
/* The recv callback of the netdev class returns the number of bytes of the
* received packet.
*
* This can be done by the pcap_next() function. Unfortunately pcap_next() does
* not make difference between a missing packet on the capture interface and
* an error during the file capture. We can use the pcap_dispatch() function
* instead, which is able to distinguish between errors and null packet.
*
* To make pcap_dispatch() returns the number of bytes read from the interface
* we need to define the following callback and argument.
*/
struct pcap_arg {
void *data;
int size;
int retval;
};
/*
* This callback will be executed on every captured packet.
*
* If the packet captured by pcap_dispatch() does not fit the pcap buffer,
* pcap returns a truncated packet and we follow this behavior.
*
* The argument args->retval is the packet size in bytes.
*/
static void
proc_pkt(u_char *args_, const struct pcap_pkthdr *hdr, const u_char *packet)
{
struct pcap_arg *args = ALIGNED_CAST(struct pcap_arg *, args_);
if (args->size < hdr->len) {
VLOG_WARN_RL(&rl, "packet truncated");
args->retval = args->size;
} else {
args->retval = hdr->len;
}
/* copy the packet to our buffer */
memcpy(args->data, packet, args->retval);
}
/*
* This function attempts to receive a packet from the specified network
* device. It is assumed that the network device is a system device or a tap
* device opened as a system one. In this case the read operation is performed
* from rxq->pcap.
*/
static int
netdev_rxq_bsd_recv_pcap(struct netdev_rxq_bsd *rxq, struct dp_packet *buffer)
{
struct pcap_arg arg;
int ret;
/* prepare the pcap argument to store the packet */
arg.size = dp_packet_tailroom(buffer);
arg.data = dp_packet_data(buffer);
for (;;) {
ret = pcap_dispatch(rxq->pcap_handle, 1, proc_pkt, (u_char *) &arg);
if (ret > 0) {
dp_packet_set_size(buffer, dp_packet_size(buffer) + arg.retval);
return 0;
}
if (ret == -1) {
if (errno == EINTR) {
continue;
}
}
return EAGAIN;
}
}
/*
* This function attempts to receive a packet from the specified network
* device. It is assumed that the network device is a tap device and
* 'rxq->fd' is initialized with the tap file descriptor.
*/
static int
netdev_rxq_bsd_recv_tap(struct netdev_rxq_bsd *rxq, struct dp_packet *buffer)
{
size_t size = dp_packet_tailroom(buffer);
for (;;) {
ssize_t retval = read(rxq->fd, dp_packet_data(buffer), size);
if (retval >= 0) {
dp_packet_set_size(buffer, dp_packet_size(buffer) + retval);
return 0;
} else if (errno != EINTR) {
if (errno != EAGAIN) {
VLOG_WARN_RL(&rl, "error receiving Ethernet packet on %s: %s",
ovs_strerror(errno), netdev_rxq_get_name(&rxq->up));
}
return errno;
}
}
}
static int
netdev_bsd_rxq_recv(struct netdev_rxq *rxq_, struct dp_packet **packets,
int *c)
{
struct netdev_rxq_bsd *rxq = netdev_rxq_bsd_cast(rxq_);
struct netdev *netdev = rxq->up.netdev;
struct dp_packet *packet;
ssize_t retval;
int mtu;
if (netdev_bsd_get_mtu(netdev, &mtu)) {
mtu = ETH_PAYLOAD_MAX;
}
packet = dp_packet_new_with_headroom(VLAN_ETH_HEADER_LEN + mtu,
DP_NETDEV_HEADROOM);
retval = (rxq->pcap_handle
? netdev_rxq_bsd_recv_pcap(rxq, packet)
: netdev_rxq_bsd_recv_tap(rxq, packet));
if (retval) {
dp_packet_delete(packet);
} else {
dp_packet_pad(packet);
dp_packet_rss_invalidate(packet);
packets[0] = packet;
*c = 1;
}
return retval;
}
/*
* Registers with the poll loop to wake up from the next call to poll_block()
* when a packet is ready to be received with netdev_rxq_recv() on 'rxq'.
*/
static void
netdev_bsd_rxq_wait(struct netdev_rxq *rxq_)
{
struct netdev_rxq_bsd *rxq = netdev_rxq_bsd_cast(rxq_);
poll_fd_wait(rxq->fd, POLLIN);
}
/* Discards all packets waiting to be received from 'rxq'. */
static int
netdev_bsd_rxq_drain(struct netdev_rxq *rxq_)
{
struct ifreq ifr;
struct netdev_rxq_bsd *rxq = netdev_rxq_bsd_cast(rxq_);
strcpy(ifr.ifr_name, netdev_get_kernel_name(netdev_rxq_get_netdev(rxq_)));
if (ioctl(rxq->fd, BIOCFLUSH, &ifr) == -1) {
VLOG_DBG_RL(&rl, "%s: ioctl(BIOCFLUSH) failed: %s",
netdev_rxq_get_name(rxq_), ovs_strerror(errno));
return errno;
}
return 0;
}
/*
* Send a packet on the specified network device. The device could be either a
* system or a tap device.
*/
static int
netdev_bsd_send(struct netdev *netdev_, int qid OVS_UNUSED,
struct dp_packet **pkts, int cnt, bool may_steal)
{
struct netdev_bsd *dev = netdev_bsd_cast(netdev_);
const char *name = netdev_get_name(netdev_);
int error;
int i;
ovs_mutex_lock(&dev->mutex);
if (dev->tap_fd < 0 && !dev->pcap) {
error = netdev_bsd_open_pcap(name, &dev->pcap, &dev->fd);
} else {
error = 0;
}
for (i = 0; i < cnt; i++) {
const void *data = dp_packet_data(pkts[i]);
size_t size = dp_packet_size(pkts[i]);
while (!error) {
ssize_t retval;
if (dev->tap_fd >= 0) {
retval = write(dev->tap_fd, data, size);
} else {
retval = pcap_inject(dev->pcap, data, size);
}
if (retval < 0) {
if (errno == EINTR) {
continue;
} else {
error = errno;
if (error != EAGAIN) {
VLOG_WARN_RL(&rl, "error sending Ethernet packet on"
" %s: %s", name, ovs_strerror(error));
}
}
} else if (retval != size) {
VLOG_WARN_RL(&rl, "sent partial Ethernet packet "
"(%"PRIuSIZE" bytes of "
"%"PRIuSIZE") on %s", retval, size, name);
error = EMSGSIZE;
} else {
break;
}
}
}
ovs_mutex_unlock(&dev->mutex);
if (may_steal) {
for (i = 0; i < cnt; i++) {
dp_packet_delete(pkts[i]);
}
}
return error;
}
/*
* Registers with the poll loop to wake up from the next call to poll_block()
* when the packet transmission queue has sufficient room to transmit a packet
* with netdev_send().
*/
static void
netdev_bsd_send_wait(struct netdev *netdev_, int qid OVS_UNUSED)
{
struct netdev_bsd *dev = netdev_bsd_cast(netdev_);
ovs_mutex_lock(&dev->mutex);
if (dev->tap_fd >= 0) {
/* TAP device always accepts packets. */
poll_immediate_wake();
} else if (dev->pcap) {
poll_fd_wait(dev->fd, POLLOUT);
} else {
/* We haven't even tried to send a packet yet. */
poll_immediate_wake();
}
ovs_mutex_unlock(&dev->mutex);
}
/*
* Attempts to set 'netdev''s MAC address to 'mac'. Returns 0 if successful,
* otherwise a positive errno value.
*/
static int
netdev_bsd_set_etheraddr(struct netdev *netdev_,
const struct eth_addr mac)
{
struct netdev_bsd *netdev = netdev_bsd_cast(netdev_);
int error = 0;
ovs_mutex_lock(&netdev->mutex);
if (!(netdev->cache_valid & VALID_ETHERADDR)
|| !eth_addr_equals(netdev->etheraddr, mac)) {
error = set_etheraddr(netdev_get_kernel_name(netdev_), AF_LINK,
ETH_ADDR_LEN, mac);
if (!error) {
netdev->cache_valid |= VALID_ETHERADDR;
netdev->etheraddr = mac;
netdev_change_seq_changed(netdev_);
}
}
ovs_mutex_unlock(&netdev->mutex);
return error;
}
/*
* Returns a pointer to 'netdev''s MAC address. The caller must not modify or
* free the returned buffer.
*/
static int
netdev_bsd_get_etheraddr(const struct netdev *netdev_, struct eth_addr *mac)
{
struct netdev_bsd *netdev = netdev_bsd_cast(netdev_);
int error = 0;
ovs_mutex_lock(&netdev->mutex);
if (!(netdev->cache_valid & VALID_ETHERADDR)) {
error = get_etheraddr(netdev_get_kernel_name(netdev_),
&netdev->etheraddr);
if (!error) {
netdev->cache_valid |= VALID_ETHERADDR;
}
}
if (!error) {
*mac = netdev->etheraddr;
}
ovs_mutex_unlock(&netdev->mutex);
return error;
}
/*
* Returns the maximum size of transmitted (and received) packets on 'netdev',
* in bytes, not including the hardware header; thus, this is typically 1500
* bytes for Ethernet devices.
*/
static int
netdev_bsd_get_mtu(const struct netdev *netdev_, int *mtup)
{
struct netdev_bsd *netdev = netdev_bsd_cast(netdev_);
int error = 0;
ovs_mutex_lock(&netdev->mutex);
if (!(netdev->cache_valid & VALID_MTU)) {
struct ifreq ifr;
error = af_inet_ifreq_ioctl(netdev_get_kernel_name(netdev_), &ifr,
SIOCGIFMTU, "SIOCGIFMTU");
if (!error) {
netdev->mtu = ifr.ifr_mtu;
netdev->cache_valid |= VALID_MTU;
}
}
if (!error) {
*mtup = netdev->mtu;
}
ovs_mutex_unlock(&netdev->mutex);
return error;
}
static int
netdev_bsd_get_ifindex(const struct netdev *netdev_)
{
struct netdev_bsd *netdev = netdev_bsd_cast(netdev_);
int ifindex, error;
ovs_mutex_lock(&netdev->mutex);
error = get_ifindex(netdev_, &ifindex);
ovs_mutex_unlock(&netdev->mutex);
return error ? -error : ifindex;
}
static int
netdev_bsd_get_carrier(const struct netdev *netdev_, bool *carrier)
{
struct netdev_bsd *netdev = netdev_bsd_cast(netdev_);
int error = 0;
ovs_mutex_lock(&netdev->mutex);
if (!(netdev->cache_valid & VALID_CARRIER)) {
struct ifmediareq ifmr;
memset(&ifmr, 0, sizeof(ifmr));
ovs_strlcpy(ifmr.ifm_name, netdev_get_kernel_name(netdev_),
sizeof ifmr.ifm_name);
error = af_inet_ioctl(SIOCGIFMEDIA, &ifmr);
if (!error) {
netdev->carrier = (ifmr.ifm_status & IFM_ACTIVE) == IFM_ACTIVE;
netdev->cache_valid |= VALID_CARRIER;
/* If the interface doesn't report whether the media is active,
* just assume it is active. */
if ((ifmr.ifm_status & IFM_AVALID) == 0) {
netdev->carrier = true;
}
} else {
VLOG_DBG_RL(&rl, "%s: ioctl(SIOCGIFMEDIA) failed: %s",
netdev_get_name(netdev_), ovs_strerror(error));
}
}
if (!error) {
*carrier = netdev->carrier;
}
ovs_mutex_unlock(&netdev->mutex);
return error;
}
static void
convert_stats_system(struct netdev_stats *stats, const struct if_data *ifd)
{
/*
* note: UINT64_MAX means unsupported
*/
stats->rx_packets = ifd->ifi_ipackets;
stats->tx_packets = ifd->ifi_opackets;
stats->rx_bytes = ifd->ifi_obytes;
stats->tx_bytes = ifd->ifi_ibytes;
stats->rx_errors = ifd->ifi_ierrors;
stats->tx_errors = ifd->ifi_oerrors;
stats->rx_dropped = ifd->ifi_iqdrops;
stats->tx_dropped = UINT64_MAX;
stats->multicast = ifd->ifi_imcasts;
stats->collisions = ifd->ifi_collisions;
stats->rx_length_errors = UINT64_MAX;
stats->rx_over_errors = UINT64_MAX;
stats->rx_crc_errors = UINT64_MAX;
stats->rx_frame_errors = UINT64_MAX;
stats->rx_fifo_errors = UINT64_MAX;
stats->rx_missed_errors = UINT64_MAX;
stats->tx_aborted_errors = UINT64_MAX;
stats->tx_carrier_errors = UINT64_MAX;
stats->tx_fifo_errors = UINT64_MAX;
stats->tx_heartbeat_errors = UINT64_MAX;
stats->tx_window_errors = UINT64_MAX;
}
static void
convert_stats_tap(struct netdev_stats *stats, const struct if_data *ifd)
{
/*
* Similar to convert_stats_system but swapping rxq and tx
* because 'ifd' is stats for the network interface side of the
* tap device and what the caller wants is one for the character
* device side.
*
* note: UINT64_MAX means unsupported
*/
stats->rx_packets = ifd->ifi_opackets;
stats->tx_packets = ifd->ifi_ipackets;
stats->rx_bytes = ifd->ifi_ibytes;
stats->tx_bytes = ifd->ifi_obytes;
stats->rx_errors = ifd->ifi_oerrors;
stats->tx_errors = ifd->ifi_ierrors;
stats->rx_dropped = UINT64_MAX;
stats->tx_dropped = ifd->ifi_iqdrops;
stats->multicast = ifd->ifi_omcasts;
stats->collisions = UINT64_MAX;
stats->rx_length_errors = UINT64_MAX;
stats->rx_over_errors = UINT64_MAX;
stats->rx_crc_errors = UINT64_MAX;
stats->rx_frame_errors = UINT64_MAX;
stats->rx_fifo_errors = UINT64_MAX;
stats->rx_missed_errors = UINT64_MAX;
stats->tx_aborted_errors = UINT64_MAX;
stats->tx_carrier_errors = UINT64_MAX;
stats->tx_fifo_errors = UINT64_MAX;
stats->tx_heartbeat_errors = UINT64_MAX;
stats->tx_window_errors = UINT64_MAX;
}
static void
convert_stats(const struct netdev *netdev, struct netdev_stats *stats,
const struct if_data *ifd)
{
if (netdev_bsd_cast(netdev)->tap_fd == -1) {
convert_stats_system(stats, ifd);
} else {
convert_stats_tap(stats, ifd);
}
}
/* Retrieves current device stats for 'netdev'. */
static int
netdev_bsd_get_stats(const struct netdev *netdev_, struct netdev_stats *stats)
{
#if defined(__FreeBSD__)
int if_count, i;
int mib[6];
size_t len;
struct ifmibdata ifmd;
mib[0] = CTL_NET;
mib[1] = PF_LINK;
mib[2] = NETLINK_GENERIC;
mib[3] = IFMIB_SYSTEM;
mib[4] = IFMIB_IFCOUNT;
len = sizeof(if_count);
if (sysctl(mib, 5, &if_count, &len, (void *)0, 0) == -1) {
VLOG_DBG_RL(&rl, "%s: sysctl failed: %s",
netdev_get_name(netdev_), ovs_strerror(errno));
return errno;
}
mib[5] = IFDATA_GENERAL;
mib[3] = IFMIB_IFDATA;
len = sizeof(ifmd);