Skip to content

Commit 96b34ce

Browse files
committed
Merge branch 'dev' of https://github.com/F-Stack/f-stack into dev
2 parents 2ffc055 + c8e1aab commit 96b34ce

File tree

892 files changed

+289899
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

892 files changed

+289899
-11
lines changed

README.md

+24-7
Original file line numberDiff line numberDiff line change
@@ -38,44 +38,59 @@ Currently, besides authorized DNS server of DNSPod, there are various products i
3838
yum install numactl-devel # on Centos
3939
#sudo apt-get install libnuma-dev # on Ubuntu
4040

41+
# Install dependencies (FreeBSD only)
42+
#pkg install meson pkgconf py38-pyelftools
43+
4144
cd f-stack
4245
# Compile DPDK
4346
cd dpdk/
4447
meson -Denable_kmods=true build
4548
ninja -C build
4649
ninja -C build install
4750

48-
# Set hugepage
51+
# Set hugepage (Linux only)
4952
# single-node system
5053
echo 1024 > /sys/kernel/mm/hugepages/hugepages-2048kB/nr_hugepages
5154

52-
# or NUMA
55+
# or NUMA (Linux only)
5356
echo 1024 > /sys/devices/system/node/node0/hugepages/hugepages-2048kB/nr_hugepages
5457
echo 1024 > /sys/devices/system/node/node1/hugepages/hugepages-2048kB/nr_hugepages
5558

56-
# Using Hugepage with the DPDK
59+
# Using Hugepage with the DPDK (Linux only)
5760
mkdir /mnt/huge
5861
mount -t hugetlbfs nodev /mnt/huge
5962

60-
# Close ASLR; it is necessary in multiple process
63+
# Close ASLR; it is necessary in multiple process (Linux only)
6164
echo 0 > /proc/sys/kernel/randomize_va_space
6265

6366
# Install python for running DPDK python scripts
6467
sudo apt install python # On ubuntu
68+
#sudo pkg install python # On FreeBSD
6569

6670
# Offload NIC
71+
# For Linux:
6772
modprobe uio
6873
insmod /data/f-stack/dpdk/build/kernel/linux/igb_uio/igb_uio.ko
6974
insmod /data/f-stack/dpdk/build/kernel/linux/kni/rte_kni.ko carrier=on # carrier=on is necessary, otherwise need to be up `veth0` via `echo 1 > /sys/class/net/veth0/carrier`
7075
python dpdk-devbind.py --status
7176
ifconfig eth0 down
7277
python dpdk-devbind.py --bind=igb_uio eth0 # assuming that use 10GE NIC and eth0
7378

79+
# For FreeBSD:
80+
# Refer DPDK FreeBSD guide to set tunables in /boot/loader.conf
81+
# Below is an example used for our testing machine
82+
#echo "hw.nic_uio.bdfs=\"2:0:0\"" >> /boot/loader.conf
83+
#echo "hw.contigmem.num_buffers=1" >> /boot/loader.conf
84+
#echo "hw.contigmem.buffer_size=1073741824" >> /boot/loader.conf
85+
#kldload contigmem
86+
#kldload nic_uio
87+
7488
# On Ubuntu, use gawk instead of the default mawk.
7589
#sudo apt-get install gawk # or execute `sudo update-alternatives --config awk` to choose gawk.
7690

7791
# Install dependencies for F-Stack
78-
sudo apt install gcc make libssl-dev # On ubuntu
92+
sudo apt install gcc make libssl-dev # On ubuntu
93+
#sudo pkg install gcc gmake openssl pkgconf libepoll-shim # On FreeBSD
7994

8095
# Upgrade pkg-config while version < 0.28
8196
#cd /data
@@ -92,14 +107,16 @@ Currently, besides authorized DNS server of DNSPod, there are various products i
92107
export FF_PATH=/data/f-stack
93108
export PKG_CONFIG_PATH=/usr/lib64/pkgconfig:/usr/local/lib64/pkgconfig:/usr/lib/pkgconfig
94109
cd /data/f-stack/lib/
95-
make
110+
make # On Linux
111+
#gmake # On FreeBSD
96112

97113
# Install F-STACK
98114
# libfstack.a will be installed to /usr/local/lib
99115
# ff_*.h will be installed to /usr/local/include
100116
# start.sh will be installed to /usr/local/bin/ff_start
101117
# config.ini will be installed to /etc/f-stack.conf
102-
make install
118+
make install # On Linux
119+
#gmake install # On FreeBSD
103120

104121
#### Nginx
105122

config.ini

+3
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ nb_vdev=0
7070
# Number of bond.
7171
nb_bond=0
7272

73+
# log level for dpdk, optional
74+
# log_level=0
75+
7376
# Each core write into own pcap file, which is open one time, close one time if enough.
7477
# Support dump the first snaplen bytes of each packet.
7578
# if pcap file is lager than savelen bytes, it will be closed and next file was dumped into.

dpdk/lib/librte_eal/freebsd/include/rte_os.h

+28
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,22 @@
1414
#include <pthread_np.h>
1515

1616
typedef cpuset_t rte_cpuset_t;
17+
#if __FreeBSD_version >= 1301000
18+
#define RTE_CPU_AND(dst, src1, src2) do \
19+
{ \
20+
cpuset_t tmp; \
21+
CPU_COPY(src1, &tmp); \
22+
CPU_AND(&tmp, &tmp, src2); \
23+
CPU_COPY(&tmp, dst); \
24+
} while (0)
25+
#define RTE_CPU_OR(dst, src1, src2) do \
26+
{ \
27+
cpuset_t tmp; \
28+
CPU_COPY(src1, &tmp); \
29+
CPU_OR(&tmp, &tmp, src2); \
30+
CPU_COPY(&tmp, dst); \
31+
} while (0)
32+
#else
1733
#define RTE_CPU_AND(dst, src1, src2) do \
1834
{ \
1935
cpuset_t tmp; \
@@ -28,6 +44,7 @@ typedef cpuset_t rte_cpuset_t;
2844
CPU_OR(&tmp, src2); \
2945
CPU_COPY(&tmp, dst); \
3046
} while (0)
47+
#endif
3148
#define RTE_CPU_FILL(set) CPU_FILL(set)
3249

3350
/* In FreeBSD 13 CPU_NAND macro is CPU_ANDNOT */
@@ -40,13 +57,24 @@ typedef cpuset_t rte_cpuset_t;
4057
CPU_COPY(&tmp, dst); \
4158
} while (0)
4259
#else
60+
#if __FreeBSD_version >= 1301000
61+
#define RTE_CPU_NOT(dst, src) do \
62+
{ \
63+
cpuset_t tmp; \
64+
CPU_FILL(&tmp); \
65+
CPU_ANDNOT(&tmp, &tmp, src); \
66+
CPU_COPY(&tmp, dst); \
67+
} while (0)
68+
#else
4369
#define RTE_CPU_NOT(dst, src) do \
4470
{ \
4571
cpuset_t tmp; \
4672
CPU_FILL(&tmp); \
4773
CPU_ANDNOT(&tmp, src); \
4874
CPU_COPY(&tmp, dst); \
4975
} while (0)
76+
77+
#endif
5078
#endif
5179

5280
#endif /* _RTE_OS_H_ */

lib/Makefile

+28-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,19 @@ PREFIX_INCLUDE=/usr/local/include
2121
PREFIX_BIN=/usr/local/bin
2222
F-STACK_CONF=/etc/f-stack.conf
2323
F-STACK_VERSION=1.22
24+
TGT_OS=$(shell uname)
25+
ifeq ($(TGT_OS),FreeBSD)
26+
CC=gcc
27+
endif
2428

2529
HOST_OS:=$(shell uname -s)
2630

2731
DEBUG=-O0 -gdwarf-2 -g3 -Wno-format-truncation
2832

33+
# No DPDK KNI support on FreeBSD
34+
ifneq ($(TGT_OS),FreeBSD)
2935
FF_KNI=1
36+
endif
3037

3138
#FF_FLOW_ISOLATE=1
3239

@@ -59,6 +66,11 @@ INCLUDES+= -I./opt
5966

6067
# Include search path for files that only include host OS headers
6168
HOST_INCLUDES= -I.
69+
# Use libepoll shim on FreeBSD
70+
ifeq ($(TGT_OS),FreeBSD)
71+
HOST_INCLUDES+= -I/usr/local/include/libepoll-shim
72+
endif
73+
6274
ifndef DEBUG
6375
HOST_CFLAGS = -O2 -frename-registers -funswitch-loops -fweb -Wno-format-truncation
6476
else
@@ -91,6 +103,16 @@ endif
91103
HOST_CFLAGS+= -DINET
92104
CFLAGS+= -DINET
93105

106+
GCCVERGE10 = $(shell expr `gcc -dumpversion | cut -f1 -d.` \>= 10)
107+
ifeq "$(GCCVERGE10)" "1"
108+
CFLAGS+= -Wno-error=stringop-overflow
109+
endif
110+
111+
GCCVERGE11 = $(shell expr `gcc -dumpversion | cut -f1 -d.` \>= 11)
112+
ifeq "$(GCCVERGE11)" "1"
113+
CFLAGS+= -Wno-error=stringop-overread
114+
endif
115+
94116
ifdef FF_INET6
95117
HOST_CFLAGS+= -DINET6
96118
CFLAGS+= -DINET6
@@ -524,11 +546,15 @@ EXTRA_TCP_STACKS_SRCS+= \
524546
bbr.c
525547
endif
526548

549+
550+
ifneq ($(TGT_OS),FreeBSD)
527551
ifndef FF_KNI
528552
FF_HOST_SRCS+= \
529553
ff_dpdk_kni.c
530-
endif
531-
endif
554+
endif #FF_KNI
555+
endif #FreeBSD OS Check
556+
557+
endif #INET6
532558

533559
ifdef FF_IPFW
534560
NETIPFW_SRCS+= \

lib/ff_config.c

+7-1
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,9 @@ ini_parse_handler(void* user, const char* section, const char* name,
656656
printf("[%s]: %s=%s\n", section, name, value);
657657

658658
#define MATCH(s, n) strcmp(section, s) == 0 && strcmp(name, n) == 0
659-
if (MATCH("dpdk", "channel")) {
659+
if (MATCH("dpdk", "log_level")) {
660+
pconfig->dpdk.log_level = atoi(value);
661+
} else if (MATCH("dpdk", "channel")) {
660662
pconfig->dpdk.nb_channel = atoi(value);
661663
} else if (MATCH("dpdk", "memory")) {
662664
pconfig->dpdk.memory = atoi(value);
@@ -760,6 +762,10 @@ dpdk_args_setup(struct ff_config *cfg)
760762
sprintf(temp, "-m%d", cfg->dpdk.memory);
761763
dpdk_argv[n++] = strdup(temp);
762764
}
765+
if (cfg->dpdk.log_level) {
766+
sprintf(temp, "--log-level=%d", cfg->dpdk.log_level);
767+
dpdk_argv[n++] = strdup(temp);
768+
}
763769
if (cfg->dpdk.proc_type) {
764770
sprintf(temp, "--proc-type=%s", cfg->dpdk.proc_type);
765771
dpdk_argv[n++] = strdup(temp);

lib/ff_config.h

+3
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,9 @@ struct ff_config {
164164
int nb_ports;
165165
uint16_t max_portid;
166166
uint16_t *portid_list;
167+
168+
// load dpdk log level
169+
uint16_t log_level;
167170
// MAP(portid => struct ff_port_cfg*)
168171
struct ff_port_cfg *port_cfgs;
169172
struct ff_vdev_cfg *vdev_cfgs;

lib/ff_dpdk_if.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -577,6 +577,9 @@ init_port_start(void)
577577
struct ff_port_cfg *pconf = &ff_global_cfg.dpdk.port_cfgs[u_port_id];
578578
uint16_t nb_queues = pconf->nb_lcores;
579579

580+
if (pconf->nb_slaves > 0) {
581+
rte_eth_bond_8023ad_dedicated_queues_enable(u_port_id);
582+
}
580583
for (j=0; j<=pconf->nb_slaves; j++) {
581584
if (j < pconf->nb_slaves) {
582585
port_id = pconf->slave_portid_list[j];
@@ -1179,7 +1182,8 @@ protocol_filter(const void *data, uint16_t len)
11791182
if(ether_type == RTE_ETHER_TYPE_ARP)
11801183
return FILTER_ARP;
11811184

1182-
#ifdef INET6
1185+
#if (!defined(__FreeBSD__) && defined(INET6) ) || \
1186+
( defined(__FreeBSD__) && defined(INET6) && defined(FF_KNI))
11831187
if (ether_type == RTE_ETHER_TYPE_IPV6) {
11841188
return ff_kni_proto_filter(data,
11851189
len, ether_type);

lib/ff_syscall_wrapper.c

+3
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@
9090
#define LINUX_IP_OPTIONS 4
9191
#define LINUX_IP_RECVTTL 12
9292
#define LINUX_IP_RECVTOS 13
93+
#define LINUX_IP_MINTTL 21
9394

9495
#define LINUX_IP_MULTICAST_IF 32
9596
#define LINUX_IP_MULTICAST_TTL 33
@@ -403,6 +404,8 @@ ip_opt_convert(int optname)
403404
return IP_RECVTTL;
404405
case LINUX_IP_RECVTOS:
405406
return IP_RECVTOS;
407+
case LINUX_IP_MINTTL:
408+
return IP_MINTTL;
406409
default:
407410
return optname;
408411
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Bug report
3+
about: Help us improve Redis by reporting a bug
4+
title: '[BUG]'
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
12+
A short description of the bug.
13+
14+
**To reproduce**
15+
16+
Steps to reproduce the behavior and/or a minimal code sample.
17+
18+
**Expected behavior**
19+
20+
A description of what you expected to happen.
21+
22+
**Additional information**
23+
24+
Any additional information that is relevant to the problem.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Crash report
3+
about: Submit a crash report
4+
title: '[CRASH]'
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Crash report**
11+
12+
Paste the complete crash log between the quotes below. Please include a few lines from the log preceding the crash report to provide some context.
13+
14+
```
15+
```
16+
17+
**Aditional information**
18+
19+
1. OS distribution and version
20+
2. Steps to reproduce (if any)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Feature request
3+
about: Suggest a feature for Redis
4+
title: '[NEW]'
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**The problem/use-case that the feature addresses**
11+
12+
A description of the problem that the feature will solve, or the use-case with which the feature will be used.
13+
14+
**Description of the feature**
15+
16+
A description of what you want to happen.
17+
18+
**Alternatives you've considered**
19+
20+
Any alternative solutions or features you've considered, including references to existing open and closed feature requests in this repository.
21+
22+
**Additional information**
23+
24+
Any additional information that is relevant to the feature request.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: Other
3+
about: Can't find the right issue type? Use this one!
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Question
3+
about: Ask the Redis developers
4+
title: '[QUESTION]'
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
Please keep in mind that this issue tracker should be used for reporting bugs or proposing improvements to the Redis server.
11+
12+
Generally, questions about using Redis should be directed to the [community](https://redis.io/community):
13+
14+
* [the mailing list](https://groups.google.com/forum/#!forum/redis-db)
15+
* [the `redis` tag at StackOverflow](http://stackoverflow.com/questions/tagged/redis)
16+
* [/r/redis subreddit](http://www.reddit.com/r/redis)
17+
* [the irc channel #redis](http://webchat.freenode.net/?channels=redis) on freenode
18+
19+
It is also possible that your question was already asked here, so please do a quick issues search before submitting. Lastly, if your question is about one of Redis' [clients](https://redis.io/clients), you may to contact your client's developers for help.
20+
21+
That said, please feel free to replace all this with your question :)

0 commit comments

Comments
 (0)