1 /* Copyright (c) 2017 Facebook
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
7 * BPF program to set initial congestion window and initial receive
8 * window to 40 packets and send and receive buffers to 1.5MB. This
9 * would usually be done after doing appropriate checks that indicate
10 * the hosts are far enough away (i.e. large RTT).
12 * Use "bpftool cgroup attach $cg sock_ops $prog" to load this BPF program.
15 #include <uapi/linux/bpf.h>
16 #include <uapi/linux/if_ether.h>
17 #include <uapi/linux/if_packet.h>
18 #include <uapi/linux/ip.h>
19 #include <linux/socket.h>
20 #include <bpf/bpf_helpers.h>
21 #include <bpf/bpf_endian.h>
26 int bpf_iw(struct bpf_sock_ops *skops)
28 int bufsize = 1500000;
34 /* For testing purposes, only execute rest of BPF program
35 * if neither port numberis 55601
37 if (bpf_ntohl(skops->remote_port) != 55601 &&
38 skops->local_port != 55601) {
46 bpf_printk("BPF command: %d\n", op);
49 /* Usually there would be a check to insure the hosts are far
50 * from each other so it makes sense to increase buffer sizes
53 case BPF_SOCK_OPS_RWND_INIT:
56 case BPF_SOCK_OPS_TCP_CONNECT_CB:
57 /* Set sndbuf and rcvbuf of active connections */
58 rv = bpf_setsockopt(skops, SOL_SOCKET, SO_SNDBUF, &bufsize,
60 rv += bpf_setsockopt(skops, SOL_SOCKET, SO_RCVBUF,
61 &bufsize, sizeof(bufsize));
63 case BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB:
64 rv = bpf_setsockopt(skops, SOL_TCP, TCP_BPF_IW, &iw,
67 case BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB:
68 /* Set sndbuf and rcvbuf of passive connections */
69 rv = bpf_setsockopt(skops, SOL_SOCKET, SO_SNDBUF, &bufsize,
71 rv += bpf_setsockopt(skops, SOL_SOCKET, SO_RCVBUF,
72 &bufsize, sizeof(bufsize));
78 bpf_printk("Returning %d\n", rv);
83 char _license[] SEC("license") = "GPL";