Added support for VLAN in IPv6
[samplevnf.git] / VNFs / DPPD-PROX / Makefile
1 ##
2 ## Copyright (c) 2010-2019 Intel Corporation
3 ##
4 ## Licensed under the Apache License, Version 2.0 (the "License");
5 ## you may not use this file except in compliance with the License.
6 ## You may obtain a copy of the License at
7 ##
8 ##     http://www.apache.org/licenses/LICENSE-2.0
9 ##
10 ## Unless required by applicable law or agreed to in writing, software
11 ## distributed under the License is distributed on an "AS IS" BASIS,
12 ## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ## See the License for the specific language governing permissions and
14 ## limitations under the License.
15 ##
16
17 ifeq ($(RTE_SDK),)
18 $(error "Please define RTE_SDK environment variable")
19 endif
20
21 # Default target, can be overriden by command line or environment
22 RTE_TARGET ?= x86_64-native-linuxapp-gcc
23
24 rte_version_h := $(RTE_SDK)/$(RTE_TARGET)/include/rte_version.h
25 rte_config_h := $(RTE_SDK)/$(RTE_TARGET)/include/rte_config.h
26 rte_ver_part = $(shell sed -n -e 's/^\#define\s*$1\s*\(.*\)$$/\1/p' $(rte_version_h))
27 rte_config_part = $(shell sed -n -e 's/^\#define\s*$1\s*\(.*\)$$/\1/p' $(rte_config_h))
28 rte_ver_eval = $(shell printf '%u' $$(printf '0x%02x%02x%02x%02x' $1 $2 $3 $4))
29 rte_ver_MMLR = $(call rte_ver_eval,$(call \
30         rte_ver_part,RTE_VER_MAJOR),$(call \
31         rte_ver_part,RTE_VER_MINOR),$(call \
32         rte_ver_part,RTE_VER_PATCH_LEVEL),$(call \
33         rte_ver_part,RTE_VER_PATCH_RELEASE))
34 rte_version_YMMR = $(call rte_ver_eval,$(call \
35         rte_ver_part,RTE_VER_YEAR),$(call \
36         rte_ver_part,RTE_VER_MONTH),$(call \
37         rte_ver_part,RTE_VER_MINOR),$(call \
38         rte_ver_part,RTE_VER_RELEASE))
39 rte_config_YMMR = $(call rte_ver_eval,$(call \
40         rte_config_part,RTE_VER_YEAR),$(call \
41         rte_config_part,RTE_VER_MONTH),$(call \
42         rte_config_part,RTE_VER_MINOR),$(call \
43         rte_config_part,RTE_VER_RELEASE))
44 rte_ver_YMMR = $(if $(shell test $(rte_config_YMMR) -gt 0 && echo 'y'),$(rte_config_YMMR),$(rte_version_YMMR))
45 rte_ver_dpdk := $(if $(call rte_ver_part,RTE_VER_MAJOR),$(rte_ver_MMLR),$(rte_ver_YMMR))
46 rte_ver_comp = $(shell test $(rte_ver_dpdk) $5 $(call rte_ver_eval,$1,$2,$3,$4) && echo 'y')
47 rte_ver_EQ = $(call rte_ver_comp,$1,$2,$3,$4,-eq)
48 rte_ver_NE = $(call rte_ver_comp,$1,$2,$3,$4,-ne)
49 rte_ver_GT = $(call rte_ver_comp,$1,$2,$3,$4,-gt)
50 rte_ver_LT = $(call rte_ver_comp,$1,$2,$3,$4,-lt)
51 rte_ver_GE = $(call rte_ver_comp,$1,$2,$3,$4,-ge)
52 rte_ver_LE = $(call rte_ver_comp,$1,$2,$3,$4,-le)
53
54 include $(RTE_SDK)/mk/rte.vars.mk
55
56 # binary name
57 APP = prox
58 CFLAGS += -DPROGRAM_NAME=\"$(APP)\"
59
60 CFLAGS += -O2 -g
61 CFLAGS += -fno-stack-protector -Wno-deprecated-declarations
62
63 ifeq ($(BNG_QINQ),)
64 CFLAGS += -DUSE_QINQ
65 else ifeq ($(BNG_QINQ),y)
66 CFLAGS += -DUSE_QINQ
67 endif
68
69 ifeq ($(MPLS_ROUTING),)
70 CFLAGS += -DMPLS_ROUTING
71 else ifeq ($(MPLS_ROUTING),y)
72 CFLAGS += -DMPLS_ROUTING
73 endif
74
75 LD_LUA  = $(shell pkg-config --silence-errors --libs-only-l lua)
76 CFLAGS += $(shell pkg-config --silence-errors --cflags lua)
77 ifeq ($(LD_LUA),)
78 LD_LUA  = $(shell pkg-config --silence-errors --libs-only-l lua5.2)
79 CFLAGS += $(shell pkg-config --silence-errors --cflags lua5.2)
80 ifeq ($(LD_LUA),)
81 LD_LUA  = $(shell pkg-config --silence-errors --libs-only-l lua5.3)
82 CFLAGS += $(shell pkg-config --silence-errors --cflags lua5.3)
83 ifeq ($(LD_LUA),)
84 LD_LUA =-llua
85 endif
86 endif
87 endif
88
89 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y)
90 LDLIBS += -lrte_pmd_ring -lrte_pmd_null -lrte_pmd_ixgbe -lrte_pmd_i40e  -lrte_pmd_e1000  -lrte_pmd_virtio -lrte_pmd_vmxnet3_uio
91 endif
92
93 LD_TINFO = $(shell pkg-config --silence-errors --libs-only-l tinfo)
94 LDFLAGS += -lm -lpcap $(LD_TINFO) $(LD_LUA)
95 LDFLAGS += -lncurses -lncursesw -ledit
96
97 PROX_STATS ?= y
98 ifeq ($(PROX_STATS),y)
99 CFLAGS += -DPROX_STATS
100 endif
101
102 ifeq ($(DPI_STATS),y)
103 CFLAGS += -DDPI_STATS
104 endif
105
106 ifeq ($(HW_DIRECT_STATS),y)
107 CFLAGS += -DPROX_HW_DIRECT_STATS
108 endif
109
110 ifeq ($(dbg),y)
111 EXTRA_CFLAGS += -ggdb
112 endif
113
114 ifeq ($(log),)
115 CFLAGS += -DPROX_MAX_LOG_LVL=2
116 else
117 CFLAGS += -DPROX_MAX_LOG_LVL=$(log)
118 endif
119
120 # When ipv4 packet is de-encalpusled from ipv6 packet, genaerate IP checksum.
121 ifeq ($(GEN_DECAP_IPV6_TO_IPV4_CKSUM),y)
122 CFLAGS += -DGEN_DECAP_IPV6_TO_IPV4_CKSUM
123 endif
124
125 # override any use-case/enviroment specific choices regarding crc and
126 # always use the sw implementation
127 ifeq ($(crc),soft)
128 CFLAGS += -DSOFT_CRC
129 endif
130
131 CFLAGS += -DPROX_PREFETCH_OFFSET=2
132 #CFLAGS += -DBRAS_RX_BULK
133 #CFLAGS += -DASSERT
134 #CFLAGS += -DENABLE_EXTRA_USER_STATISTICS
135 CFLAGS += -DLATENCY_PER_PACKET
136 CFLAGS += -DLATENCY_HISTOGRAM
137 CFLAGS += -DGRE_TP
138 CFLAGS += -std=gnu99
139 CFLAGS += -D_GNU_SOURCE                # for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
140 CFLAGS += $(WERROR_FLAGS)
141 CFLAGS += -Wno-unused
142 CFLAGS += -Wno-unused-parameter
143 CFLAGS += -Wno-unused-result
144
145 # all source are stored in SRCS-y
146
147 SRCS-y := task_init.c
148
149 SRCS-y += handle_aggregator.c
150 SRCS-y += handle_nop.c
151 SRCS-y += handle_irq.c
152 SRCS-y += handle_arp.c
153 SRCS-y += handle_impair.c
154 SRCS-y += handle_lat.c
155 SRCS-y += handle_qos.c
156 SRCS-y += handle_qinq_decap4.c
157 SRCS-y += handle_routing.c
158 SRCS-y += handle_untag.c
159 SRCS-y += handle_mplstag.c
160 SRCS-y += handle_qinq_decap6.c
161
162 # support for GRE encap/decap dropped in latest DPDK versions
163 SRCS-$(call rte_ver_LT,2,1,0,0) += handle_gre_decap_encap.c
164
165 SRCS-y += rw_reg.c
166 SRCS-y += handle_lb_qinq.c
167 SRCS-y += handle_lb_pos.c
168 SRCS-y += handle_lb_net.c
169 SRCS-y += handle_qinq_encap4.c
170 SRCS-y += handle_qinq_encap6.c
171 SRCS-y += handle_classify.c
172 SRCS-y += handle_l2fwd.c
173 SRCS-y += handle_swap.c
174 SRCS-y += handle_police.c
175 SRCS-y += handle_acl.c
176 SRCS-y += handle_gen.c
177 SRCS-y += handle_master.c
178 SRCS-y += packet_utils.c
179 SRCS-y += handle_mirror.c
180 SRCS-y += handle_genl4.c
181 SRCS-y += handle_ipv6_tunnel.c
182 SRCS-y += handle_read.c
183 SRCS-$(CONFIG_RTE_LIBRTE_PMD_AESNI_MB) += handle_esp.c
184 ifneq ($(CONFIG_RTE_LIBRTE_PMD_AESNI_MB),y)
185 ifeq ($(FIRST_PROX_MAKE),)
186 $(warning "Building w/o IPSEC support")
187 endif
188 endif
189 SRCS-y += handle_cgnat.c
190 SRCS-y += handle_nat.c
191 SRCS-y += handle_dump.c
192 SRCS-y += handle_tsc.c
193 SRCS-y += handle_fm.c
194 SRCS-$(call rte_ver_GE,1,8,0,16) += handle_nsh.c
195 SRCS-y += handle_lb_5tuple.c
196 SRCS-y += handle_blockudp.c
197 SRCS-y += toeplitz.c
198 SRCS-$(CONFIG_RTE_LIBRTE_PIPELINE) += handle_pf_acl.c
199
200 SRCS-y += thread_nop.c
201 SRCS-y += thread_generic.c
202 SRCS-$(CONFIG_RTE_LIBRTE_PIPELINE) += thread_pipeline.c
203
204 SRCS-y += prox_args.c prox_cfg.c prox_cksum.c prox_port_cfg.c
205
206 SRCS-y += cfgfile.c clock.c commands.c cqm.c msr.c defaults.c
207 SRCS-y += display.c display_latency.c display_latency_distr.c display_mempools.c
208 SRCS-y += display_ports.c display_rings.c display_priority.c display_pkt_len.c display_l4gen.c display_tasks.c display_irq.c
209 SRCS-y += log.c hash_utils.c main.c parse_utils.c file_utils.c
210 SRCS-y += run.c input_conn.c input_curses.c
211 SRCS-y += rx_pkt.c lconf.c tx_pkt.c expire_cpe.c ip_subnet.c
212 SRCS-y += stats_port.c stats_mempool.c stats_ring.c stats_l4gen.c
213 SRCS-y += stats_latency.c stats_global.c stats_core.c stats_task.c stats_prio.c stats_irq.c
214 SRCS-y += cmd_parser.c input.c prox_shared.c prox_lua_types.c
215 SRCS-y += genl4_bundle.c heap.c genl4_stream_tcp.c genl4_stream_udp.c cdf.c
216 SRCS-y += stats.c stats_cons_log.c stats_cons_cli.c stats_parser.c hash_set.c prox_lua.c prox_malloc.c prox_ipv6.c prox_compat.c
217
218 ifeq ($(FIRST_PROX_MAKE),)
219 MAKEFLAGS += --no-print-directory
220 FIRST_PROX_MAKE = 1
221 export FIRST_PROX_MAKE
222 all:    libedit_autoconf.h
223         @./helper-scripts/trailing.sh
224         @$(MAKE) $@
225 clean:
226         $(Q) $(RM) -- 'libedit_autoconf.h'
227         @$(MAKE) $@
228 %::
229         @$(MAKE) $@
230
231 ifeq ($(call rte_ver_LT,17,2,0,0),y)
232 AUTO-CONFIG-SCRIPT = $(RTE_SDK)/scripts/auto-config-h.sh
233 else
234 AUTO-CONFIG-SCRIPT = $(RTE_SDK)/buildtools/auto-config-h.sh
235 endif
236
237 # DPDK CFLAGS prevents auto-conf program to properly compile
238 export CFLAGS=
239 # if el_rfunc_t exists, define HAVE_LIBEDIT_EL_RFUNC_T so that PROX knows it can use it
240 libedit_autoconf.h: $(AUTO-CONFIG-SCRIPT)
241         $(Q) $(RM) -- '$@'
242         $(Q) sh -- '$(AUTO-CONFIG-SCRIPT)' '$@' \
243                 HAVE_LIBEDIT_EL_RFUNC_T \
244                 histedit.h \
245                 type 'el_rfunc_t' \
246                 > /dev/null
247 # auto-conf adds empty line at the end of the file, considered as error by trailing.sh script
248         $(Q) sed -i '$$ d' '$@'
249 else
250 include $(RTE_SDK)/mk/rte.extapp.mk
251 endif