2 #include <sys/socket.h>
5 #include <linux/if_ether.h>
19 if (unlikely(af
!= AF_INET
&& af
!= AF_INET6
))
20 panic("Wrong AF socket type!\n");
22 sock
= socket(af
, SOCK_DGRAM
, 0);
23 if (unlikely(sock
< 0))
24 panic("Creation AF socket failed: %s\n", strerror(errno
));
31 int sock
= socket(PF_PACKET
, SOCK_RAW
, 0);
32 if (unlikely(sock
< 0))
33 panic("Creation of PF socket failed: %s\n", strerror(errno
));
38 static int pf_socket_dgram(void)
40 int sock
= socket(PF_PACKET
, SOCK_DGRAM
, 0);
41 if (unlikely(sock
< 0))
42 panic("Creation of PF dgram socket failed: %s\n",
48 int pf_socket_type(uint32_t type
)
51 case LINKTYPE_LINUX_SLL
:
52 return pf_socket_dgram();
58 /* Avail in kernel >= 3.14
59 * in commit d346a3fae3 (packet: introduce PACKET_QDISC_BYPASS socket option)
61 void set_sock_qdisc_bypass(int fd
, int verbose
)
65 ret
= setsockopt(fd
, SOL_PACKET
, PACKET_QDISC_BYPASS
, &val
, sizeof(val
));
67 if (errno
== ENOPROTOOPT
) {
69 printf("No kernel support for PACKET_QDISC_BYPASS"
70 " (kernel < 3.14?)\n");
72 perror("Cannot set PACKET_QDISC_BYPASS");
74 if (verbose
) printf("Enabled kernel qdisc bypass\n");
77 void set_sock_prio(int fd
, int prio
)
81 ret
= setsockopt(fd
, SOL_SOCKET
, SO_PRIORITY
, &val
, sizeof(val
));
83 panic("Cannot set socket priority: %s\n", strerror(errno
));
86 void set_nonblocking(int fd
)
88 int ret
= fcntl(fd
, F_SETFL
, fcntl(fd
, F_GETFD
, 0) | O_NONBLOCK
);
89 if (unlikely(ret
< 0))
90 panic("Cannot fcntl: %s\n", strerror(errno
));
93 int set_nonblocking_sloppy(int fd
)
95 return fcntl(fd
, F_SETFL
, fcntl(fd
, F_GETFD
, 0) | O_NONBLOCK
);
98 void set_socket_keepalive(int fd
)
102 ret
= setsockopt(fd
, SOL_SOCKET
, SO_KEEPALIVE
, &one
, sizeof(one
));
104 panic("Cannot set TCP keepalive: %s\n", strerror(errno
));
107 void set_tcp_nodelay(int fd
)
111 ret
= setsockopt(fd
, IPPROTO_TCP
, TCP_NODELAY
, &one
, sizeof(one
));
113 panic("Cannot set TCP nodelay: %s\n", strerror(errno
));
116 int set_ipv6_only(int fd
)
119 return setsockopt(fd
, IPPROTO_IPV6
, IPV6_V6ONLY
, &one
, sizeof(one
));
122 int set_reuseaddr(int fd
)
126 ret
= setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, &one
, sizeof(one
));
127 if (unlikely(ret
< 0))
128 panic("Cannot reuse addr: %s\n", strerror(errno
));
133 void set_mtu_disc_dont(int fd
)
135 int mtu
= IP_PMTUDISC_DONT
, ret
;
137 ret
= setsockopt(fd
, SOL_IP
, IP_MTU_DISCOVER
, &mtu
, sizeof(mtu
));
139 panic("Cannot set MTU discovery options: %s\n", strerror(errno
));
149 #define SMEM_SUG_MAX 104857600
150 #define SMEM_SUG_DEF 4194304
152 static const char *const sock_mem
[] = {
153 [sock_rmem_max
] = "net/core/rmem_max",
154 [sock_rmem_def
] = "net/core/rmem_default",
155 [sock_wmem_max
] = "net/core/wmem_max",
156 [sock_wmem_def
] = "net/core/wmem_default",
159 static int get_system_socket_mem(int which
)
163 if (sysctl_get_int(sock_mem
[which
], &val
))
169 static void set_system_socket_mem(int which
, int val
)
171 if (val
> 0 && sysctl_set_int(sock_mem
[which
], val
))
172 printf("Cannot set system socket memory in %s%s: %s\n",
173 SYSCTL_PROC_PATH
, sock_mem
[which
], strerror(errno
));
176 void set_system_socket_memory(int *vals
, size_t len
)
180 if ((vals
[0] = get_system_socket_mem(sock_rmem_max
)) < SMEM_SUG_MAX
)
181 set_system_socket_mem(sock_rmem_max
, SMEM_SUG_MAX
);
182 if ((vals
[1] = get_system_socket_mem(sock_rmem_def
)) < SMEM_SUG_DEF
)
183 set_system_socket_mem(sock_rmem_def
, SMEM_SUG_DEF
);
184 if ((vals
[2] = get_system_socket_mem(sock_wmem_max
)) < SMEM_SUG_MAX
)
185 set_system_socket_mem(sock_wmem_max
, SMEM_SUG_MAX
);
186 if ((vals
[3] = get_system_socket_mem(sock_wmem_def
)) < SMEM_SUG_DEF
)
187 set_system_socket_mem(sock_wmem_def
, SMEM_SUG_DEF
);
190 void reset_system_socket_memory(int *vals
, size_t len
)
194 set_system_socket_mem(sock_rmem_max
, vals
[0]);
195 set_system_socket_mem(sock_rmem_def
, vals
[1]);
196 set_system_socket_mem(sock_wmem_max
, vals
[2]);
197 set_system_socket_mem(sock_wmem_def
, vals
[3]);