Loading...
1/*
2 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
5
6#include <stdio.h>
7#include <unistd.h>
8#include <stdarg.h>
9#include <errno.h>
10#include <stddef.h>
11#include <string.h>
12#include <sys/ioctl.h>
13#include <net/if.h>
14#include <linux/if_tun.h>
15#include <arpa/inet.h>
16#include <sys/types.h>
17#include <sys/stat.h>
18#include <fcntl.h>
19#include <sys/types.h>
20#include <sys/socket.h>
21#include <net/ethernet.h>
22#include <netinet/ip.h>
23#include <netinet/ether.h>
24#include <linux/if_ether.h>
25#include <linux/if_packet.h>
26#include <sys/socket.h>
27#include <sys/wait.h>
28#include <linux/virtio_net.h>
29#include <netdb.h>
30#include <stdlib.h>
31#include <os.h>
32#include <um_malloc.h>
33#include "vector_user.h"
34
35#define ID_GRE 0
36#define ID_L2TPV3 1
37#define ID_MAX 1
38
39#define TOKEN_IFNAME "ifname"
40
41#define TRANS_RAW "raw"
42#define TRANS_RAW_LEN strlen(TRANS_RAW)
43
44#define VNET_HDR_FAIL "could not enable vnet headers on fd %d"
45#define TUN_GET_F_FAIL "tapraw: TUNGETFEATURES failed: %s"
46#define L2TPV3_BIND_FAIL "l2tpv3_open : could not bind socket err=%i"
47#define BPF_ATTACH_FAIL "Failed to attach filter size %d to %d, err %d\n"
48
49/* This is very ugly and brute force lookup, but it is done
50 * only once at initialization so not worth doing hashes or
51 * anything more intelligent
52 */
53
54char *uml_vector_fetch_arg(struct arglist *ifspec, char *token)
55{
56 int i;
57
58 for (i = 0; i < ifspec->numargs; i++) {
59 if (strcmp(ifspec->tokens[i], token) == 0)
60 return ifspec->values[i];
61 }
62 return NULL;
63
64}
65
66struct arglist *uml_parse_vector_ifspec(char *arg)
67{
68 struct arglist *result;
69 int pos, len;
70 bool parsing_token = true, next_starts = true;
71
72 if (arg == NULL)
73 return NULL;
74 result = uml_kmalloc(sizeof(struct arglist), UM_GFP_KERNEL);
75 if (result == NULL)
76 return NULL;
77 result->numargs = 0;
78 len = strlen(arg);
79 for (pos = 0; pos < len; pos++) {
80 if (next_starts) {
81 if (parsing_token) {
82 result->tokens[result->numargs] = arg + pos;
83 } else {
84 result->values[result->numargs] = arg + pos;
85 result->numargs++;
86 }
87 next_starts = false;
88 }
89 if (*(arg + pos) == '=') {
90 if (parsing_token)
91 parsing_token = false;
92 else
93 goto cleanup;
94 next_starts = true;
95 (*(arg + pos)) = '\0';
96 }
97 if (*(arg + pos) == ',') {
98 parsing_token = true;
99 next_starts = true;
100 (*(arg + pos)) = '\0';
101 }
102 }
103 return result;
104cleanup:
105 printk(UM_KERN_ERR "vector_setup - Couldn't parse '%s'\n", arg);
106 kfree(result);
107 return NULL;
108}
109
110/*
111 * Socket/FD configuration functions. These return an structure
112 * of rx and tx descriptors to cover cases where these are not
113 * the same (f.e. read via raw socket and write via tap).
114 */
115
116#define PATH_NET_TUN "/dev/net/tun"
117
118static struct vector_fds *user_init_tap_fds(struct arglist *ifspec)
119{
120 struct ifreq ifr;
121 int fd = -1;
122 struct sockaddr_ll sock;
123 int err = -ENOMEM, offload;
124 char *iface;
125 struct vector_fds *result = NULL;
126
127 iface = uml_vector_fetch_arg(ifspec, TOKEN_IFNAME);
128 if (iface == NULL) {
129 printk(UM_KERN_ERR "uml_tap: failed to parse interface spec\n");
130 goto tap_cleanup;
131 }
132
133 result = uml_kmalloc(sizeof(struct vector_fds), UM_GFP_KERNEL);
134 if (result == NULL) {
135 printk(UM_KERN_ERR "uml_tap: failed to allocate file descriptors\n");
136 goto tap_cleanup;
137 }
138 result->rx_fd = -1;
139 result->tx_fd = -1;
140 result->remote_addr = NULL;
141 result->remote_addr_size = 0;
142
143 /* TAP */
144
145 fd = open(PATH_NET_TUN, O_RDWR);
146 if (fd < 0) {
147 printk(UM_KERN_ERR "uml_tap: failed to open tun device\n");
148 goto tap_cleanup;
149 }
150 result->tx_fd = fd;
151 memset(&ifr, 0, sizeof(ifr));
152 ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_VNET_HDR;
153 strncpy((char *)&ifr.ifr_name, iface, sizeof(ifr.ifr_name) - 1);
154
155 err = ioctl(fd, TUNSETIFF, (void *) &ifr);
156 if (err != 0) {
157 printk(UM_KERN_ERR "uml_tap: failed to select tap interface\n");
158 goto tap_cleanup;
159 }
160
161 offload = TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6;
162 ioctl(fd, TUNSETOFFLOAD, offload);
163
164 /* RAW */
165
166 fd = socket(AF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
167 if (fd == -1) {
168 printk(UM_KERN_ERR
169 "uml_tap: failed to create socket: %i\n", -errno);
170 goto tap_cleanup;
171 }
172 result->rx_fd = fd;
173 memset(&ifr, 0, sizeof(ifr));
174 strncpy((char *)&ifr.ifr_name, iface, sizeof(ifr.ifr_name) - 1);
175 if (ioctl(fd, SIOCGIFINDEX, (void *) &ifr) < 0) {
176 printk(UM_KERN_ERR
177 "uml_tap: failed to set interface: %i\n", -errno);
178 goto tap_cleanup;
179 }
180
181 sock.sll_family = AF_PACKET;
182 sock.sll_protocol = htons(ETH_P_ALL);
183 sock.sll_ifindex = ifr.ifr_ifindex;
184
185 if (bind(fd,
186 (struct sockaddr *) &sock, sizeof(struct sockaddr_ll)) < 0) {
187 printk(UM_KERN_ERR
188 "user_init_tap: failed to bind raw pair, err %d\n",
189 -errno);
190 goto tap_cleanup;
191 }
192 return result;
193tap_cleanup:
194 printk(UM_KERN_ERR "user_init_tap: init failed, error %d", err);
195 if (result != NULL) {
196 if (result->rx_fd >= 0)
197 os_close_file(result->rx_fd);
198 if (result->tx_fd >= 0)
199 os_close_file(result->tx_fd);
200 kfree(result);
201 }
202 return NULL;
203}
204
205
206static struct vector_fds *user_init_raw_fds(struct arglist *ifspec)
207{
208 struct ifreq ifr;
209 int rxfd = -1, txfd = -1;
210 struct sockaddr_ll sock;
211 int err = -ENOMEM;
212 char *iface;
213 struct vector_fds *result = NULL;
214
215 iface = uml_vector_fetch_arg(ifspec, TOKEN_IFNAME);
216 if (iface == NULL)
217 goto cleanup;
218
219 rxfd = socket(AF_PACKET, SOCK_RAW, ETH_P_ALL);
220 if (rxfd == -1) {
221 err = -errno;
222 goto cleanup;
223 }
224 txfd = socket(AF_PACKET, SOCK_RAW, 0); /* Turn off RX on this fd */
225 if (txfd == -1) {
226 err = -errno;
227 goto cleanup;
228 }
229 memset(&ifr, 0, sizeof(ifr));
230 strncpy((char *)&ifr.ifr_name, iface, sizeof(ifr.ifr_name) - 1);
231 if (ioctl(rxfd, SIOCGIFINDEX, (void *) &ifr) < 0) {
232 err = -errno;
233 goto cleanup;
234 }
235
236 sock.sll_family = AF_PACKET;
237 sock.sll_protocol = htons(ETH_P_ALL);
238 sock.sll_ifindex = ifr.ifr_ifindex;
239
240 if (bind(rxfd,
241 (struct sockaddr *) &sock, sizeof(struct sockaddr_ll)) < 0) {
242 err = -errno;
243 goto cleanup;
244 }
245
246 sock.sll_family = AF_PACKET;
247 sock.sll_protocol = htons(ETH_P_IP);
248 sock.sll_ifindex = ifr.ifr_ifindex;
249
250 if (bind(txfd,
251 (struct sockaddr *) &sock, sizeof(struct sockaddr_ll)) < 0) {
252 err = -errno;
253 goto cleanup;
254 }
255
256 result = uml_kmalloc(sizeof(struct vector_fds), UM_GFP_KERNEL);
257 if (result != NULL) {
258 result->rx_fd = rxfd;
259 result->tx_fd = txfd;
260 result->remote_addr = NULL;
261 result->remote_addr_size = 0;
262 }
263 return result;
264cleanup:
265 printk(UM_KERN_ERR "user_init_raw: init failed, error %d", err);
266 if (rxfd >= 0)
267 os_close_file(rxfd);
268 if (txfd >= 0)
269 os_close_file(txfd);
270 if (result != NULL)
271 kfree(result);
272 return NULL;
273}
274
275
276bool uml_raw_enable_qdisc_bypass(int fd)
277{
278 int optval = 1;
279
280 if (setsockopt(fd,
281 SOL_PACKET, PACKET_QDISC_BYPASS,
282 &optval, sizeof(optval)) != 0) {
283 return false;
284 }
285 return true;
286}
287
288bool uml_raw_enable_vnet_headers(int fd)
289{
290 int optval = 1;
291
292 if (setsockopt(fd,
293 SOL_PACKET, PACKET_VNET_HDR,
294 &optval, sizeof(optval)) != 0) {
295 printk(UM_KERN_INFO VNET_HDR_FAIL, fd);
296 return false;
297 }
298 return true;
299}
300bool uml_tap_enable_vnet_headers(int fd)
301{
302 unsigned int features;
303 int len = sizeof(struct virtio_net_hdr);
304
305 if (ioctl(fd, TUNGETFEATURES, &features) == -1) {
306 printk(UM_KERN_INFO TUN_GET_F_FAIL, strerror(errno));
307 return false;
308 }
309 if ((features & IFF_VNET_HDR) == 0) {
310 printk(UM_KERN_INFO "tapraw: No VNET HEADER support");
311 return false;
312 }
313 ioctl(fd, TUNSETVNETHDRSZ, &len);
314 return true;
315}
316
317static struct vector_fds *user_init_socket_fds(struct arglist *ifspec, int id)
318{
319 int err = -ENOMEM;
320 int fd = -1, gairet;
321 struct addrinfo srchints;
322 struct addrinfo dsthints;
323 bool v6, udp;
324 char *value;
325 char *src, *dst, *srcport, *dstport;
326 struct addrinfo *gairesult = NULL;
327 struct vector_fds *result = NULL;
328
329
330 value = uml_vector_fetch_arg(ifspec, "v6");
331 v6 = false;
332 udp = false;
333 if (value != NULL) {
334 if (strtol((const char *) value, NULL, 10) > 0)
335 v6 = true;
336 }
337
338 value = uml_vector_fetch_arg(ifspec, "udp");
339 if (value != NULL) {
340 if (strtol((const char *) value, NULL, 10) > 0)
341 udp = true;
342 }
343 src = uml_vector_fetch_arg(ifspec, "src");
344 dst = uml_vector_fetch_arg(ifspec, "dst");
345 srcport = uml_vector_fetch_arg(ifspec, "srcport");
346 dstport = uml_vector_fetch_arg(ifspec, "dstport");
347
348 memset(&dsthints, 0, sizeof(dsthints));
349
350 if (v6)
351 dsthints.ai_family = AF_INET6;
352 else
353 dsthints.ai_family = AF_INET;
354
355 switch (id) {
356 case ID_GRE:
357 dsthints.ai_socktype = SOCK_RAW;
358 dsthints.ai_protocol = IPPROTO_GRE;
359 break;
360 case ID_L2TPV3:
361 if (udp) {
362 dsthints.ai_socktype = SOCK_DGRAM;
363 dsthints.ai_protocol = 0;
364 } else {
365 dsthints.ai_socktype = SOCK_RAW;
366 dsthints.ai_protocol = IPPROTO_L2TP;
367 }
368 break;
369 default:
370 printk(KERN_ERR "Unsupported socket type\n");
371 return NULL;
372 }
373 memcpy(&srchints, &dsthints, sizeof(struct addrinfo));
374
375 gairet = getaddrinfo(src, srcport, &dsthints, &gairesult);
376 if ((gairet != 0) || (gairesult == NULL)) {
377 printk(UM_KERN_ERR
378 "socket_open : could not resolve src, error = %s",
379 gai_strerror(gairet)
380 );
381 return NULL;
382 }
383 fd = socket(gairesult->ai_family,
384 gairesult->ai_socktype, gairesult->ai_protocol);
385 if (fd == -1) {
386 printk(UM_KERN_ERR
387 "socket_open : could not open socket, error = %d",
388 -errno
389 );
390 goto cleanup;
391 }
392 if (bind(fd,
393 (struct sockaddr *) gairesult->ai_addr,
394 gairesult->ai_addrlen)) {
395 printk(UM_KERN_ERR L2TPV3_BIND_FAIL, errno);
396 goto cleanup;
397 }
398
399 if (gairesult != NULL)
400 freeaddrinfo(gairesult);
401
402 gairesult = NULL;
403
404 gairet = getaddrinfo(dst, dstport, &dsthints, &gairesult);
405 if ((gairet != 0) || (gairesult == NULL)) {
406 printk(UM_KERN_ERR
407 "socket_open : could not resolve dst, error = %s",
408 gai_strerror(gairet)
409 );
410 return NULL;
411 }
412
413 result = uml_kmalloc(sizeof(struct vector_fds), UM_GFP_KERNEL);
414 if (result != NULL) {
415 result->rx_fd = fd;
416 result->tx_fd = fd;
417 result->remote_addr = uml_kmalloc(
418 gairesult->ai_addrlen, UM_GFP_KERNEL);
419 if (result->remote_addr == NULL)
420 goto cleanup;
421 result->remote_addr_size = gairesult->ai_addrlen;
422 memcpy(
423 result->remote_addr,
424 gairesult->ai_addr,
425 gairesult->ai_addrlen
426 );
427 }
428 freeaddrinfo(gairesult);
429 return result;
430cleanup:
431 if (gairesult != NULL)
432 freeaddrinfo(gairesult);
433 printk(UM_KERN_ERR "user_init_socket: init failed, error %d", err);
434 if (fd >= 0)
435 os_close_file(fd);
436 if (result != NULL) {
437 if (result->remote_addr != NULL)
438 kfree(result->remote_addr);
439 kfree(result);
440 }
441 return NULL;
442}
443
444struct vector_fds *uml_vector_user_open(
445 int unit,
446 struct arglist *parsed
447)
448{
449 char *transport;
450
451 if (parsed == NULL) {
452 printk(UM_KERN_ERR "no parsed config for unit %d\n", unit);
453 return NULL;
454 }
455 transport = uml_vector_fetch_arg(parsed, "transport");
456 if (transport == NULL) {
457 printk(UM_KERN_ERR "missing transport for unit %d\n", unit);
458 return NULL;
459 }
460 if (strncmp(transport, TRANS_RAW, TRANS_RAW_LEN) == 0)
461 return user_init_raw_fds(parsed);
462 if (strncmp(transport, TRANS_TAP, TRANS_TAP_LEN) == 0)
463 return user_init_tap_fds(parsed);
464 if (strncmp(transport, TRANS_GRE, TRANS_GRE_LEN) == 0)
465 return user_init_socket_fds(parsed, ID_GRE);
466 if (strncmp(transport, TRANS_L2TPV3, TRANS_L2TPV3_LEN) == 0)
467 return user_init_socket_fds(parsed, ID_L2TPV3);
468 return NULL;
469}
470
471
472int uml_vector_sendmsg(int fd, void *hdr, int flags)
473{
474 int n;
475
476 CATCH_EINTR(n = sendmsg(fd, (struct msghdr *) hdr, flags));
477 if ((n < 0) && (errno == EAGAIN))
478 return 0;
479 if (n >= 0)
480 return n;
481 else
482 return -errno;
483}
484
485int uml_vector_recvmsg(int fd, void *hdr, int flags)
486{
487 int n;
488
489 CATCH_EINTR(n = recvmsg(fd, (struct msghdr *) hdr, flags));
490 if ((n < 0) && (errno == EAGAIN))
491 return 0;
492 if (n >= 0)
493 return n;
494 else
495 return -errno;
496}
497
498int uml_vector_writev(int fd, void *hdr, int iovcount)
499{
500 int n;
501
502 CATCH_EINTR(n = writev(fd, (struct iovec *) hdr, iovcount));
503 if ((n < 0) && (errno == EAGAIN))
504 return 0;
505 if (n >= 0)
506 return n;
507 else
508 return -errno;
509}
510
511int uml_vector_sendmmsg(
512 int fd,
513 void *msgvec,
514 unsigned int vlen,
515 unsigned int flags)
516{
517 int n;
518
519 CATCH_EINTR(n = sendmmsg(fd, (struct mmsghdr *) msgvec, vlen, flags));
520 if ((n < 0) && (errno == EAGAIN))
521 return 0;
522 if (n >= 0)
523 return n;
524 else
525 return -errno;
526}
527
528int uml_vector_recvmmsg(
529 int fd,
530 void *msgvec,
531 unsigned int vlen,
532 unsigned int flags)
533{
534 int n;
535
536 CATCH_EINTR(
537 n = recvmmsg(fd, (struct mmsghdr *) msgvec, vlen, flags, 0));
538 if ((n < 0) && (errno == EAGAIN))
539 return 0;
540 if (n >= 0)
541 return n;
542 else
543 return -errno;
544}
545int uml_vector_attach_bpf(int fd, void *bpf, int bpf_len)
546{
547 int err = setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, bpf, bpf_len);
548
549 if (err < 0)
550 printk(KERN_ERR BPF_ATTACH_FAIL, bpf_len, fd, -errno);
551 return err;
552}
553
554#define DEFAULT_BPF_LEN 6
555
556void *uml_vector_default_bpf(int fd, void *mac)
557{
558 struct sock_filter *bpf;
559 uint32_t *mac1 = (uint32_t *)(mac + 2);
560 uint16_t *mac2 = (uint16_t *) mac;
561 struct sock_fprog bpf_prog = {
562 .len = 6,
563 .filter = NULL,
564 };
565
566 bpf = uml_kmalloc(
567 sizeof(struct sock_filter) * DEFAULT_BPF_LEN, UM_GFP_KERNEL);
568 if (bpf != NULL) {
569 bpf_prog.filter = bpf;
570 /* ld [8] */
571 bpf[0] = (struct sock_filter){ 0x20, 0, 0, 0x00000008 };
572 /* jeq #0xMAC[2-6] jt 2 jf 5*/
573 bpf[1] = (struct sock_filter){ 0x15, 0, 3, ntohl(*mac1)};
574 /* ldh [6] */
575 bpf[2] = (struct sock_filter){ 0x28, 0, 0, 0x00000006 };
576 /* jeq #0xMAC[0-1] jt 4 jf 5 */
577 bpf[3] = (struct sock_filter){ 0x15, 0, 1, ntohs(*mac2)};
578 /* ret #0 */
579 bpf[4] = (struct sock_filter){ 0x6, 0, 0, 0x00000000 };
580 /* ret #0x40000 */
581 bpf[5] = (struct sock_filter){ 0x6, 0, 0, 0x00040000 };
582 if (uml_vector_attach_bpf(
583 fd, &bpf_prog, sizeof(struct sock_fprog)) < 0) {
584 kfree(bpf);
585 bpf = NULL;
586 }
587 }
588 return bpf;
589}
590
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
4 */
5
6#include <stdio.h>
7#include <unistd.h>
8#include <stdarg.h>
9#include <errno.h>
10#include <stddef.h>
11#include <string.h>
12#include <sys/ioctl.h>
13#include <net/if.h>
14#include <linux/if_tun.h>
15#include <arpa/inet.h>
16#include <sys/types.h>
17#include <sys/stat.h>
18#include <fcntl.h>
19#include <sys/socket.h>
20#include <sys/un.h>
21#include <netinet/ip.h>
22#include <linux/if_ether.h>
23#include <linux/if_packet.h>
24#include <sys/wait.h>
25#include <sys/uio.h>
26#include <linux/virtio_net.h>
27#include <netdb.h>
28#include <stdlib.h>
29#include <os.h>
30#include <limits.h>
31#include <um_malloc.h>
32#include "vector_user.h"
33
34#define ID_GRE 0
35#define ID_L2TPV3 1
36#define ID_BESS 2
37#define ID_MAX 2
38
39#define TOKEN_IFNAME "ifname"
40#define TOKEN_SCRIPT "ifup"
41
42#define TRANS_RAW "raw"
43#define TRANS_RAW_LEN strlen(TRANS_RAW)
44
45#define TRANS_FD "fd"
46#define TRANS_FD_LEN strlen(TRANS_FD)
47
48#define VNET_HDR_FAIL "could not enable vnet headers on fd %d"
49#define TUN_GET_F_FAIL "tapraw: TUNGETFEATURES failed: %s"
50#define L2TPV3_BIND_FAIL "l2tpv3_open : could not bind socket err=%i"
51#define UNIX_BIND_FAIL "unix_open : could not bind socket err=%i"
52#define BPF_ATTACH_FAIL "Failed to attach filter size %d prog %px to %d, err %d\n"
53#define BPF_DETACH_FAIL "Failed to detach filter size %d prog %px to %d, err %d\n"
54
55#define MAX_UN_LEN 107
56
57static const char padchar[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
58static const char *template = "tapXXXXXX";
59
60/* This is very ugly and brute force lookup, but it is done
61 * only once at initialization so not worth doing hashes or
62 * anything more intelligent
63 */
64
65char *uml_vector_fetch_arg(struct arglist *ifspec, char *token)
66{
67 int i;
68
69 for (i = 0; i < ifspec->numargs; i++) {
70 if (strcmp(ifspec->tokens[i], token) == 0)
71 return ifspec->values[i];
72 }
73 return NULL;
74
75}
76
77struct arglist *uml_parse_vector_ifspec(char *arg)
78{
79 struct arglist *result;
80 int pos, len;
81 bool parsing_token = true, next_starts = true;
82
83 if (arg == NULL)
84 return NULL;
85 result = uml_kmalloc(sizeof(struct arglist), UM_GFP_KERNEL);
86 if (result == NULL)
87 return NULL;
88 result->numargs = 0;
89 len = strlen(arg);
90 for (pos = 0; pos < len; pos++) {
91 if (next_starts) {
92 if (parsing_token) {
93 result->tokens[result->numargs] = arg + pos;
94 } else {
95 result->values[result->numargs] = arg + pos;
96 result->numargs++;
97 }
98 next_starts = false;
99 }
100 if (*(arg + pos) == '=') {
101 if (parsing_token)
102 parsing_token = false;
103 else
104 goto cleanup;
105 next_starts = true;
106 (*(arg + pos)) = '\0';
107 }
108 if (*(arg + pos) == ',') {
109 parsing_token = true;
110 next_starts = true;
111 (*(arg + pos)) = '\0';
112 }
113 }
114 return result;
115cleanup:
116 printk(UM_KERN_ERR "vector_setup - Couldn't parse '%s'\n", arg);
117 kfree(result);
118 return NULL;
119}
120
121/*
122 * Socket/FD configuration functions. These return an structure
123 * of rx and tx descriptors to cover cases where these are not
124 * the same (f.e. read via raw socket and write via tap).
125 */
126
127#define PATH_NET_TUN "/dev/net/tun"
128
129
130static int create_tap_fd(char *iface)
131{
132 struct ifreq ifr;
133 int fd = -1;
134 int err = -ENOMEM, offload;
135
136 fd = open(PATH_NET_TUN, O_RDWR);
137 if (fd < 0) {
138 printk(UM_KERN_ERR "uml_tap: failed to open tun device\n");
139 goto tap_fd_cleanup;
140 }
141 memset(&ifr, 0, sizeof(ifr));
142 ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_VNET_HDR;
143 strncpy((char *)&ifr.ifr_name, iface, sizeof(ifr.ifr_name) - 1);
144
145 err = ioctl(fd, TUNSETIFF, (void *) &ifr);
146 if (err != 0) {
147 printk(UM_KERN_ERR "uml_tap: failed to select tap interface\n");
148 goto tap_fd_cleanup;
149 }
150
151 offload = TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6;
152 ioctl(fd, TUNSETOFFLOAD, offload);
153 return fd;
154tap_fd_cleanup:
155 if (fd >= 0)
156 os_close_file(fd);
157 return err;
158}
159
160static int create_raw_fd(char *iface, int flags, int proto)
161{
162 struct ifreq ifr;
163 int fd = -1;
164 struct sockaddr_ll sock;
165 int err = -ENOMEM;
166
167 fd = socket(AF_PACKET, SOCK_RAW, flags);
168 if (fd == -1) {
169 err = -errno;
170 goto raw_fd_cleanup;
171 }
172 memset(&ifr, 0, sizeof(ifr));
173 strncpy((char *)&ifr.ifr_name, iface, sizeof(ifr.ifr_name) - 1);
174 if (ioctl(fd, SIOCGIFINDEX, (void *) &ifr) < 0) {
175 err = -errno;
176 goto raw_fd_cleanup;
177 }
178
179 sock.sll_family = AF_PACKET;
180 sock.sll_protocol = htons(proto);
181 sock.sll_ifindex = ifr.ifr_ifindex;
182
183 if (bind(fd,
184 (struct sockaddr *) &sock, sizeof(struct sockaddr_ll)) < 0) {
185 err = -errno;
186 goto raw_fd_cleanup;
187 }
188 return fd;
189raw_fd_cleanup:
190 printk(UM_KERN_ERR "user_init_raw: init failed, error %d", err);
191 if (fd >= 0)
192 os_close_file(fd);
193 return err;
194}
195
196
197static struct vector_fds *user_init_tap_fds(struct arglist *ifspec)
198{
199 int fd = -1, i;
200 char *iface;
201 struct vector_fds *result = NULL;
202 bool dynamic = false;
203 char dynamic_ifname[IFNAMSIZ];
204 char *argv[] = {NULL, NULL, NULL, NULL};
205
206 iface = uml_vector_fetch_arg(ifspec, TOKEN_IFNAME);
207 if (iface == NULL) {
208 dynamic = true;
209 iface = dynamic_ifname;
210 srand(getpid());
211 }
212
213 result = uml_kmalloc(sizeof(struct vector_fds), UM_GFP_KERNEL);
214 if (result == NULL) {
215 printk(UM_KERN_ERR "uml_tap: failed to allocate file descriptors\n");
216 goto tap_cleanup;
217 }
218 result->rx_fd = -1;
219 result->tx_fd = -1;
220 result->remote_addr = NULL;
221 result->remote_addr_size = 0;
222
223 /* TAP */
224 do {
225 if (dynamic) {
226 strcpy(iface, template);
227 for (i = 0; i < strlen(iface); i++) {
228 if (iface[i] == 'X') {
229 iface[i] = padchar[rand() % strlen(padchar)];
230 }
231 }
232 }
233 fd = create_tap_fd(iface);
234 if ((fd < 0) && (!dynamic)) {
235 printk(UM_KERN_ERR "uml_tap: failed to create tun interface\n");
236 goto tap_cleanup;
237 }
238 result->tx_fd = fd;
239 result->rx_fd = fd;
240 } while (fd < 0);
241
242 argv[0] = uml_vector_fetch_arg(ifspec, TOKEN_SCRIPT);
243 if (argv[0]) {
244 argv[1] = iface;
245 run_helper(NULL, NULL, argv);
246 }
247
248 return result;
249tap_cleanup:
250 printk(UM_KERN_ERR "user_init_tap: init failed, error %d", fd);
251 kfree(result);
252 return NULL;
253}
254
255static struct vector_fds *user_init_hybrid_fds(struct arglist *ifspec)
256{
257 char *iface;
258 struct vector_fds *result = NULL;
259 char *argv[] = {NULL, NULL, NULL, NULL};
260
261 iface = uml_vector_fetch_arg(ifspec, TOKEN_IFNAME);
262 if (iface == NULL) {
263 printk(UM_KERN_ERR "uml_tap: failed to parse interface spec\n");
264 goto hybrid_cleanup;
265 }
266
267 result = uml_kmalloc(sizeof(struct vector_fds), UM_GFP_KERNEL);
268 if (result == NULL) {
269 printk(UM_KERN_ERR "uml_tap: failed to allocate file descriptors\n");
270 goto hybrid_cleanup;
271 }
272 result->rx_fd = -1;
273 result->tx_fd = -1;
274 result->remote_addr = NULL;
275 result->remote_addr_size = 0;
276
277 /* TAP */
278
279 result->tx_fd = create_tap_fd(iface);
280 if (result->tx_fd < 0) {
281 printk(UM_KERN_ERR "uml_tap: failed to create tun interface: %i\n", result->tx_fd);
282 goto hybrid_cleanup;
283 }
284
285 /* RAW */
286
287 result->rx_fd = create_raw_fd(iface, ETH_P_ALL, ETH_P_ALL);
288 if (result->rx_fd == -1) {
289 printk(UM_KERN_ERR
290 "uml_tap: failed to create paired raw socket: %i\n", result->rx_fd);
291 goto hybrid_cleanup;
292 }
293
294 argv[0] = uml_vector_fetch_arg(ifspec, TOKEN_SCRIPT);
295 if (argv[0]) {
296 argv[1] = iface;
297 run_helper(NULL, NULL, argv);
298 }
299 return result;
300hybrid_cleanup:
301 printk(UM_KERN_ERR "user_init_hybrid: init failed");
302 kfree(result);
303 return NULL;
304}
305
306static struct vector_fds *user_init_unix_fds(struct arglist *ifspec, int id)
307{
308 int fd = -1;
309 int socktype;
310 char *src, *dst;
311 struct vector_fds *result = NULL;
312 struct sockaddr_un *local_addr = NULL, *remote_addr = NULL;
313
314 src = uml_vector_fetch_arg(ifspec, "src");
315 dst = uml_vector_fetch_arg(ifspec, "dst");
316 result = uml_kmalloc(sizeof(struct vector_fds), UM_GFP_KERNEL);
317 if (result == NULL) {
318 printk(UM_KERN_ERR "unix open:cannot allocate remote addr");
319 goto unix_cleanup;
320 }
321 remote_addr = uml_kmalloc(sizeof(struct sockaddr_un), UM_GFP_KERNEL);
322 if (remote_addr == NULL) {
323 printk(UM_KERN_ERR "unix open:cannot allocate remote addr");
324 goto unix_cleanup;
325 }
326
327 switch (id) {
328 case ID_BESS:
329 socktype = SOCK_SEQPACKET;
330 if ((src != NULL) && (strlen(src) <= MAX_UN_LEN)) {
331 local_addr = uml_kmalloc(sizeof(struct sockaddr_un), UM_GFP_KERNEL);
332 if (local_addr == NULL) {
333 printk(UM_KERN_ERR "bess open:cannot allocate local addr");
334 goto unix_cleanup;
335 }
336 local_addr->sun_family = AF_UNIX;
337 memcpy(local_addr->sun_path, src, strlen(src) + 1);
338 }
339 if ((dst == NULL) || (strlen(dst) > MAX_UN_LEN))
340 goto unix_cleanup;
341 remote_addr->sun_family = AF_UNIX;
342 memcpy(remote_addr->sun_path, dst, strlen(dst) + 1);
343 break;
344 default:
345 printk(KERN_ERR "Unsupported unix socket type\n");
346 return NULL;
347 }
348
349 fd = socket(AF_UNIX, socktype, 0);
350 if (fd == -1) {
351 printk(UM_KERN_ERR
352 "unix open: could not open socket, error = %d",
353 -errno
354 );
355 goto unix_cleanup;
356 }
357 if (local_addr != NULL) {
358 if (bind(fd, (struct sockaddr *) local_addr, sizeof(struct sockaddr_un))) {
359 printk(UM_KERN_ERR UNIX_BIND_FAIL, errno);
360 goto unix_cleanup;
361 }
362 }
363 switch (id) {
364 case ID_BESS:
365 if (connect(fd, (const struct sockaddr *) remote_addr, sizeof(struct sockaddr_un)) < 0) {
366 printk(UM_KERN_ERR "bess open:cannot connect to %s %i", remote_addr->sun_path, -errno);
367 goto unix_cleanup;
368 }
369 break;
370 }
371 result->rx_fd = fd;
372 result->tx_fd = fd;
373 result->remote_addr_size = sizeof(struct sockaddr_un);
374 result->remote_addr = remote_addr;
375 return result;
376unix_cleanup:
377 if (fd >= 0)
378 os_close_file(fd);
379 kfree(remote_addr);
380 kfree(result);
381 return NULL;
382}
383
384static int strtofd(const char *nptr)
385{
386 long fd;
387 char *endptr;
388
389 if (nptr == NULL)
390 return -1;
391
392 errno = 0;
393 fd = strtol(nptr, &endptr, 10);
394 if (nptr == endptr ||
395 errno != 0 ||
396 *endptr != '\0' ||
397 fd < 0 ||
398 fd > INT_MAX) {
399 return -1;
400 }
401 return fd;
402}
403
404static struct vector_fds *user_init_fd_fds(struct arglist *ifspec)
405{
406 int fd = -1;
407 char *fdarg = NULL;
408 struct vector_fds *result = NULL;
409
410 fdarg = uml_vector_fetch_arg(ifspec, "fd");
411 fd = strtofd(fdarg);
412 if (fd == -1) {
413 printk(UM_KERN_ERR "fd open: bad or missing fd argument");
414 goto fd_cleanup;
415 }
416
417 result = uml_kmalloc(sizeof(struct vector_fds), UM_GFP_KERNEL);
418 if (result == NULL) {
419 printk(UM_KERN_ERR "fd open: allocation failed");
420 goto fd_cleanup;
421 }
422
423 result->rx_fd = fd;
424 result->tx_fd = fd;
425 result->remote_addr_size = 0;
426 result->remote_addr = NULL;
427 return result;
428
429fd_cleanup:
430 if (fd >= 0)
431 os_close_file(fd);
432 kfree(result);
433 return NULL;
434}
435
436static struct vector_fds *user_init_raw_fds(struct arglist *ifspec)
437{
438 int rxfd = -1, txfd = -1;
439 int err = -ENOMEM;
440 char *iface;
441 struct vector_fds *result = NULL;
442 char *argv[] = {NULL, NULL, NULL, NULL};
443
444 iface = uml_vector_fetch_arg(ifspec, TOKEN_IFNAME);
445 if (iface == NULL)
446 goto raw_cleanup;
447
448 rxfd = create_raw_fd(iface, ETH_P_ALL, ETH_P_ALL);
449 if (rxfd == -1) {
450 err = -errno;
451 goto raw_cleanup;
452 }
453 txfd = create_raw_fd(iface, 0, ETH_P_IP); /* Turn off RX on this fd */
454 if (txfd == -1) {
455 err = -errno;
456 goto raw_cleanup;
457 }
458 result = uml_kmalloc(sizeof(struct vector_fds), UM_GFP_KERNEL);
459 if (result != NULL) {
460 result->rx_fd = rxfd;
461 result->tx_fd = txfd;
462 result->remote_addr = NULL;
463 result->remote_addr_size = 0;
464 }
465 argv[0] = uml_vector_fetch_arg(ifspec, TOKEN_SCRIPT);
466 if (argv[0]) {
467 argv[1] = iface;
468 run_helper(NULL, NULL, argv);
469 }
470 return result;
471raw_cleanup:
472 printk(UM_KERN_ERR "user_init_raw: init failed, error %d", err);
473 kfree(result);
474 return NULL;
475}
476
477
478bool uml_raw_enable_qdisc_bypass(int fd)
479{
480 int optval = 1;
481
482 if (setsockopt(fd,
483 SOL_PACKET, PACKET_QDISC_BYPASS,
484 &optval, sizeof(optval)) != 0) {
485 return false;
486 }
487 return true;
488}
489
490bool uml_raw_enable_vnet_headers(int fd)
491{
492 int optval = 1;
493
494 if (setsockopt(fd,
495 SOL_PACKET, PACKET_VNET_HDR,
496 &optval, sizeof(optval)) != 0) {
497 printk(UM_KERN_INFO VNET_HDR_FAIL, fd);
498 return false;
499 }
500 return true;
501}
502bool uml_tap_enable_vnet_headers(int fd)
503{
504 unsigned int features;
505 int len = sizeof(struct virtio_net_hdr);
506
507 if (ioctl(fd, TUNGETFEATURES, &features) == -1) {
508 printk(UM_KERN_INFO TUN_GET_F_FAIL, strerror(errno));
509 return false;
510 }
511 if ((features & IFF_VNET_HDR) == 0) {
512 printk(UM_KERN_INFO "tapraw: No VNET HEADER support");
513 return false;
514 }
515 ioctl(fd, TUNSETVNETHDRSZ, &len);
516 return true;
517}
518
519static struct vector_fds *user_init_socket_fds(struct arglist *ifspec, int id)
520{
521 int err = -ENOMEM;
522 int fd = -1, gairet;
523 struct addrinfo srchints;
524 struct addrinfo dsthints;
525 bool v6, udp;
526 char *value;
527 char *src, *dst, *srcport, *dstport;
528 struct addrinfo *gairesult = NULL;
529 struct vector_fds *result = NULL;
530
531
532 value = uml_vector_fetch_arg(ifspec, "v6");
533 v6 = false;
534 udp = false;
535 if (value != NULL) {
536 if (strtol((const char *) value, NULL, 10) > 0)
537 v6 = true;
538 }
539
540 value = uml_vector_fetch_arg(ifspec, "udp");
541 if (value != NULL) {
542 if (strtol((const char *) value, NULL, 10) > 0)
543 udp = true;
544 }
545 src = uml_vector_fetch_arg(ifspec, "src");
546 dst = uml_vector_fetch_arg(ifspec, "dst");
547 srcport = uml_vector_fetch_arg(ifspec, "srcport");
548 dstport = uml_vector_fetch_arg(ifspec, "dstport");
549
550 memset(&dsthints, 0, sizeof(dsthints));
551
552 if (v6)
553 dsthints.ai_family = AF_INET6;
554 else
555 dsthints.ai_family = AF_INET;
556
557 switch (id) {
558 case ID_GRE:
559 dsthints.ai_socktype = SOCK_RAW;
560 dsthints.ai_protocol = IPPROTO_GRE;
561 break;
562 case ID_L2TPV3:
563 if (udp) {
564 dsthints.ai_socktype = SOCK_DGRAM;
565 dsthints.ai_protocol = 0;
566 } else {
567 dsthints.ai_socktype = SOCK_RAW;
568 dsthints.ai_protocol = IPPROTO_L2TP;
569 }
570 break;
571 default:
572 printk(KERN_ERR "Unsupported socket type\n");
573 return NULL;
574 }
575 memcpy(&srchints, &dsthints, sizeof(struct addrinfo));
576
577 gairet = getaddrinfo(src, srcport, &dsthints, &gairesult);
578 if ((gairet != 0) || (gairesult == NULL)) {
579 printk(UM_KERN_ERR
580 "socket_open : could not resolve src, error = %s",
581 gai_strerror(gairet)
582 );
583 return NULL;
584 }
585 fd = socket(gairesult->ai_family,
586 gairesult->ai_socktype, gairesult->ai_protocol);
587 if (fd == -1) {
588 printk(UM_KERN_ERR
589 "socket_open : could not open socket, error = %d",
590 -errno
591 );
592 goto cleanup;
593 }
594 if (bind(fd,
595 (struct sockaddr *) gairesult->ai_addr,
596 gairesult->ai_addrlen)) {
597 printk(UM_KERN_ERR L2TPV3_BIND_FAIL, errno);
598 goto cleanup;
599 }
600
601 if (gairesult != NULL)
602 freeaddrinfo(gairesult);
603
604 gairesult = NULL;
605
606 gairet = getaddrinfo(dst, dstport, &dsthints, &gairesult);
607 if ((gairet != 0) || (gairesult == NULL)) {
608 printk(UM_KERN_ERR
609 "socket_open : could not resolve dst, error = %s",
610 gai_strerror(gairet)
611 );
612 return NULL;
613 }
614
615 result = uml_kmalloc(sizeof(struct vector_fds), UM_GFP_KERNEL);
616 if (result != NULL) {
617 result->rx_fd = fd;
618 result->tx_fd = fd;
619 result->remote_addr = uml_kmalloc(
620 gairesult->ai_addrlen, UM_GFP_KERNEL);
621 if (result->remote_addr == NULL)
622 goto cleanup;
623 result->remote_addr_size = gairesult->ai_addrlen;
624 memcpy(
625 result->remote_addr,
626 gairesult->ai_addr,
627 gairesult->ai_addrlen
628 );
629 }
630 freeaddrinfo(gairesult);
631 return result;
632cleanup:
633 if (gairesult != NULL)
634 freeaddrinfo(gairesult);
635 printk(UM_KERN_ERR "user_init_socket: init failed, error %d", err);
636 if (fd >= 0)
637 os_close_file(fd);
638 if (result != NULL) {
639 kfree(result->remote_addr);
640 kfree(result);
641 }
642 return NULL;
643}
644
645struct vector_fds *uml_vector_user_open(
646 int unit,
647 struct arglist *parsed
648)
649{
650 char *transport;
651
652 if (parsed == NULL) {
653 printk(UM_KERN_ERR "no parsed config for unit %d\n", unit);
654 return NULL;
655 }
656 transport = uml_vector_fetch_arg(parsed, "transport");
657 if (transport == NULL) {
658 printk(UM_KERN_ERR "missing transport for unit %d\n", unit);
659 return NULL;
660 }
661 if (strncmp(transport, TRANS_RAW, TRANS_RAW_LEN) == 0)
662 return user_init_raw_fds(parsed);
663 if (strncmp(transport, TRANS_HYBRID, TRANS_HYBRID_LEN) == 0)
664 return user_init_hybrid_fds(parsed);
665 if (strncmp(transport, TRANS_TAP, TRANS_TAP_LEN) == 0)
666 return user_init_tap_fds(parsed);
667 if (strncmp(transport, TRANS_GRE, TRANS_GRE_LEN) == 0)
668 return user_init_socket_fds(parsed, ID_GRE);
669 if (strncmp(transport, TRANS_L2TPV3, TRANS_L2TPV3_LEN) == 0)
670 return user_init_socket_fds(parsed, ID_L2TPV3);
671 if (strncmp(transport, TRANS_BESS, TRANS_BESS_LEN) == 0)
672 return user_init_unix_fds(parsed, ID_BESS);
673 if (strncmp(transport, TRANS_FD, TRANS_FD_LEN) == 0)
674 return user_init_fd_fds(parsed);
675 return NULL;
676}
677
678
679int uml_vector_sendmsg(int fd, void *hdr, int flags)
680{
681 int n;
682
683 CATCH_EINTR(n = sendmsg(fd, (struct msghdr *) hdr, flags));
684 if ((n < 0) && (errno == EAGAIN))
685 return 0;
686 if (n >= 0)
687 return n;
688 else
689 return -errno;
690}
691
692int uml_vector_recvmsg(int fd, void *hdr, int flags)
693{
694 int n;
695 struct msghdr *msg = (struct msghdr *) hdr;
696
697 CATCH_EINTR(n = readv(fd, msg->msg_iov, msg->msg_iovlen));
698 if ((n < 0) && (errno == EAGAIN))
699 return 0;
700 if (n >= 0)
701 return n;
702 else
703 return -errno;
704}
705
706int uml_vector_writev(int fd, void *hdr, int iovcount)
707{
708 int n;
709
710 CATCH_EINTR(n = writev(fd, (struct iovec *) hdr, iovcount));
711 if ((n < 0) && ((errno == EAGAIN) || (errno == ENOBUFS)))
712 return 0;
713 if (n >= 0)
714 return n;
715 else
716 return -errno;
717}
718
719int uml_vector_sendmmsg(
720 int fd,
721 void *msgvec,
722 unsigned int vlen,
723 unsigned int flags)
724{
725 int n;
726
727 CATCH_EINTR(n = sendmmsg(fd, (struct mmsghdr *) msgvec, vlen, flags));
728 if ((n < 0) && ((errno == EAGAIN) || (errno == ENOBUFS)))
729 return 0;
730 if (n >= 0)
731 return n;
732 else
733 return -errno;
734}
735
736int uml_vector_recvmmsg(
737 int fd,
738 void *msgvec,
739 unsigned int vlen,
740 unsigned int flags)
741{
742 int n;
743
744 CATCH_EINTR(
745 n = recvmmsg(fd, (struct mmsghdr *) msgvec, vlen, flags, 0));
746 if ((n < 0) && (errno == EAGAIN))
747 return 0;
748 if (n >= 0)
749 return n;
750 else
751 return -errno;
752}
753int uml_vector_attach_bpf(int fd, void *bpf)
754{
755 struct sock_fprog *prog = bpf;
756
757 int err = setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, bpf, sizeof(struct sock_fprog));
758
759 if (err < 0)
760 printk(KERN_ERR BPF_ATTACH_FAIL, prog->len, prog->filter, fd, -errno);
761 return err;
762}
763
764int uml_vector_detach_bpf(int fd, void *bpf)
765{
766 struct sock_fprog *prog = bpf;
767
768 int err = setsockopt(fd, SOL_SOCKET, SO_DETACH_FILTER, bpf, sizeof(struct sock_fprog));
769 if (err < 0)
770 printk(KERN_ERR BPF_DETACH_FAIL, prog->len, prog->filter, fd, -errno);
771 return err;
772}
773void *uml_vector_default_bpf(void *mac)
774{
775 struct sock_filter *bpf;
776 uint32_t *mac1 = (uint32_t *)(mac + 2);
777 uint16_t *mac2 = (uint16_t *) mac;
778 struct sock_fprog *bpf_prog;
779
780 bpf_prog = uml_kmalloc(sizeof(struct sock_fprog), UM_GFP_KERNEL);
781 if (bpf_prog) {
782 bpf_prog->len = DEFAULT_BPF_LEN;
783 bpf_prog->filter = NULL;
784 } else {
785 return NULL;
786 }
787 bpf = uml_kmalloc(
788 sizeof(struct sock_filter) * DEFAULT_BPF_LEN, UM_GFP_KERNEL);
789 if (bpf) {
790 bpf_prog->filter = bpf;
791 /* ld [8] */
792 bpf[0] = (struct sock_filter){ 0x20, 0, 0, 0x00000008 };
793 /* jeq #0xMAC[2-6] jt 2 jf 5*/
794 bpf[1] = (struct sock_filter){ 0x15, 0, 3, ntohl(*mac1)};
795 /* ldh [6] */
796 bpf[2] = (struct sock_filter){ 0x28, 0, 0, 0x00000006 };
797 /* jeq #0xMAC[0-1] jt 4 jf 5 */
798 bpf[3] = (struct sock_filter){ 0x15, 0, 1, ntohs(*mac2)};
799 /* ret #0 */
800 bpf[4] = (struct sock_filter){ 0x6, 0, 0, 0x00000000 };
801 /* ret #0x40000 */
802 bpf[5] = (struct sock_filter){ 0x6, 0, 0, 0x00040000 };
803 } else {
804 kfree(bpf_prog);
805 bpf_prog = NULL;
806 }
807 return bpf_prog;
808}
809
810/* Note - this function requires a valid mac being passed as an arg */
811
812void *uml_vector_user_bpf(char *filename)
813{
814 struct sock_filter *bpf;
815 struct sock_fprog *bpf_prog;
816 struct stat statbuf;
817 int res, ffd = -1;
818
819 if (filename == NULL)
820 return NULL;
821
822 if (stat(filename, &statbuf) < 0) {
823 printk(KERN_ERR "Error %d reading bpf file", -errno);
824 return false;
825 }
826 bpf_prog = uml_kmalloc(sizeof(struct sock_fprog), UM_GFP_KERNEL);
827 if (bpf_prog == NULL) {
828 printk(KERN_ERR "Failed to allocate bpf prog buffer");
829 return NULL;
830 }
831 bpf_prog->len = statbuf.st_size / sizeof(struct sock_filter);
832 bpf_prog->filter = NULL;
833 ffd = os_open_file(filename, of_read(OPENFLAGS()), 0);
834 if (ffd < 0) {
835 printk(KERN_ERR "Error %d opening bpf file", -errno);
836 goto bpf_failed;
837 }
838 bpf = uml_kmalloc(statbuf.st_size, UM_GFP_KERNEL);
839 if (bpf == NULL) {
840 printk(KERN_ERR "Failed to allocate bpf buffer");
841 goto bpf_failed;
842 }
843 bpf_prog->filter = bpf;
844 res = os_read_file(ffd, bpf, statbuf.st_size);
845 if (res < statbuf.st_size) {
846 printk(KERN_ERR "Failed to read bpf program %s, error %d", filename, res);
847 kfree(bpf);
848 goto bpf_failed;
849 }
850 os_close_file(ffd);
851 return bpf_prog;
852bpf_failed:
853 if (ffd > 0)
854 os_close_file(ffd);
855 kfree(bpf_prog);
856 return NULL;
857}