acl-plugin: missing "deny" parameter in API
[vpp.git] / Makefile
1 # Copyright (c) 2016 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 export WS_ROOT=$(CURDIR)
15 export BR=$(WS_ROOT)/build-root
16 CCACHE_DIR?=$(BR)/.ccache
17 GDB?=gdb
18 PLATFORM?=vpp
19
20 MINIMAL_STARTUP_CONF="unix { interactive }"
21
22 GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
23
24 #
25 # OS Detection
26 #
27 # We allow Darwin (MacOS) for docs generation; VPP build will still fail.
28 ifneq ($(shell uname),Darwin)
29 OS_ID        = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
30 OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
31 endif
32
33 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
34 PKG=deb
35 else ifeq ($(filter rhel centos fedora,$(OS_ID)),$(OS_ID))
36 PKG=rpm
37 endif
38
39 DEB_DEPENDS  = curl build-essential autoconf automake bison libssl-dev ccache
40 DEB_DEPENDS += debhelper dkms git libtool libganglia1-dev libapr1-dev dh-systemd
41 DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config
42 DEB_DEPENDS += lcov chrpath autoconf nasm
43 DEB_DEPENDS += python-all python-dev python-virtualenv python-pip libffi6
44 ifeq ($(OS_VERSION_ID),14.04)
45         DEB_DEPENDS += openjdk-8-jdk-headless
46 else
47         DEB_DEPENDS += default-jdk-headless
48 endif
49
50 RPM_DEPENDS_GROUPS = 'Development Tools'
51 RPM_DEPENDS  = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
52 RPM_DEPENDS += openssl-devel https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm apr-devel
53 RPM_DEPENDS += python-devel
54 ifeq ($(OS_ID)),fedora)
55 ifeq ($(OS_VERSION_ID),25)
56         RPM_DEPENDS += python2-virtualenv
57 else
58         RPM_DEPENDS += python-virtualenv
59 endif
60 endif
61 RPM_DEPENDS += lcov chrpath libffi-devel
62 RPM_DEPENDS += https://kojipkgs.fedoraproject.org//packages/nasm/2.12.02/2.fc26/x86_64/nasm-2.12.02-2.fc26.x86_64.rpm
63 EPEL_DEPENDS = libconfuse-devel ganglia-devel epel-rpm-macros
64
65 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
66         STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
67 endif
68
69 ifeq ($(findstring y,$(UNATTENDED)),y)
70 CONFIRM=-y
71 FORCE=--force-yes
72 endif
73
74 .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
75 .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
76 .PHONY: ctags cscope
77 .PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe
78 .PHONY: test-cov test-wipe-cov
79
80 help:
81         @echo "Make Targets:"
82         @echo " bootstrap           - prepare tree for build"
83         @echo " install-dep         - install software dependencies"
84         @echo " wipe                - wipe all products of debug build "
85         @echo " wipe-release        - wipe all products of release build "
86         @echo " build               - build debug binaries"
87         @echo " build-release       - build release binaries"
88         @echo " build-coverity      - build coverity artifacts"
89         @echo " rebuild             - wipe and build debug binares"
90         @echo " rebuild-release     - wipe and build release binares"
91         @echo " run                 - run debug binary"
92         @echo " run-release         - run release binary"
93         @echo " debug               - run debug binary with debugger"
94         @echo " debug-release       - run release binary with debugger"
95         @echo " test                - build and run (basic) functional tests"
96         @echo " test-debug          - build and run (basic) functional tests (debug build)"
97         @echo " test-all            - build and run (all) functional tests"
98         @echo " test-all-debug      - build and run (all) functional tests (debug build)"
99         @echo " test-shell          - enter shell with test environment"
100         @echo " test-shell-debug    - enter shell with test environment (debug build)"
101         @echo " test-wipe           - wipe files generated by unit tests"
102         @echo " retest              - run functional tests"
103         @echo " retest-debug        - run functional tests (debug build)"
104         @echo " test-help           - show help on test framework"
105         @echo " run-vat             - run vpp-api-test tool"
106         @echo " pkg-deb             - build DEB packages"
107         @echo " pkg-rpm             - build RPM packages"
108         @echo " dpdk-install-dev    - install DPDK development packages"
109         @echo " ctags               - (re)generate ctags database"
110         @echo " gtags               - (re)generate gtags database"
111         @echo " cscope              - (re)generate cscope database"
112         @echo " checkstyle          - check coding style"
113         @echo " fixstyle            - fix coding style"
114         @echo " doxygen             - (re)generate documentation"
115         @echo " bootstrap-doxygen   - setup Doxygen dependencies"
116         @echo " wipe-doxygen        - wipe all generated documentation"
117         @echo " test-doc            - generate documentation for test framework"
118         @echo " test-wipe-doc       - wipe documentation for test framework"
119         @echo " test-cov            - generate code coverage report for test framework"
120         @echo " test-wipe-cov       - wipe code coverage report for test framework"
121         @echo " test-checkstyle     - check PEP8 compliance for test framework"
122         @echo ""
123         @echo "Make Arguments:"
124         @echo " V=[0|1]             - set build verbosity level"
125         @echo " STARTUP_CONF=<path> - startup configuration file"
126         @echo "                       (e.g. /etc/vpp/startup.conf)"
127         @echo " STARTUP_DIR=<path>  - startup drectory (e.g. /etc/vpp)"
128         @echo "                       It also sets STARTUP_CONF if"
129         @echo "                       startup.conf file is present"
130         @echo " GDB=<path>          - gdb binary to use for debugging"
131         @echo " PLATFORM=<name>     - target platform. default is vpp"
132         @echo " TEST=<filter>       - apply filter to test set, see test-help"
133         @echo ""
134         @echo "Current Argument Values:"
135         @echo " V            = $(V)"
136         @echo " STARTUP_CONF = $(STARTUP_CONF)"
137         @echo " STARTUP_DIR  = $(STARTUP_DIR)"
138         @echo " GDB          = $(GDB)"
139         @echo " PLATFORM     = $(PLATFORM)"
140         @echo " DPDK_VERSION = $(DPDK_VERSION)"
141
142 $(BR)/.bootstrap.ok:
143 ifeq ($(findstring y,$(UNATTENDED)),y)
144         make install-dep
145 endif
146 ifeq ($(OS_ID),ubuntu)
147         @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
148         if [ -n "$$MISSING" ] ; then \
149           echo "\nPlease install missing packages: \n$$MISSING\n" ; \
150           echo "by executing \"make install-dep\"\n" ; \
151           exit 1 ; \
152         fi ; \
153         exit 0
154 else ifneq ("$(wildcard /etc/redhat-release)","")
155         @for i in $(RPM_DEPENDS) $(EPEL_DEPENDS) ; do \
156             RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3)  ;   \
157             if [[ "$$RPM" =~ "epel-release-latest" ]] ; then            \
158                 MISSING+=$$(rpm -q epel-release | grep "^package") ;    \
159             else                                                        \
160                 MISSING+=$$(rpm -q $$RPM | grep "^package")        ;    \
161             fi                                                     ;    \
162         done                                                       ;    \
163         if [ -n "$$MISSING" ] ; then \
164           echo "Please install missing RPMs: \n$$MISSING\n" ; \
165           echo "by executing \"make install-dep\"\n" ; \
166           exit 1 ; \
167         fi ; \
168         exit 0
169 endif
170         @echo "SOURCE_PATH = $(WS_ROOT)"                   > $(BR)/build-config.mk
171         @echo "#!/bin/bash\n"                              > $(BR)/path_setup
172         @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
173         @echo 'export PATH=$(BR)/tools/bin:$$PATH'        >> $(BR)/path_setup
174         @echo 'export CCACHE_DIR=$(CCACHE_DIR)'           >> $(BR)/path_setup
175
176 ifeq ("$(wildcard /usr/bin/ccache )","")
177         @echo "WARNING: Please install ccache AYEC and re-run this script"
178 else
179         @rm -rf $(BR)/tools/ccache-bin
180         @mkdir -p $(BR)/tools/ccache-bin
181         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
182         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
183 endif
184         @make -C $(BR) V=$(V) is_build_tool=yes tools-install
185         @touch $@
186
187 bootstrap: $(BR)/.bootstrap.ok
188
189 install-dep:
190 ifeq ($(OS_ID),ubuntu)
191 ifeq ($(OS_VERSION_ID),14.04)
192         @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
193         @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
194 endif
195         @sudo -E apt-get update
196         @sudo -E apt-get $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
197 else ifneq ("$(wildcard /etc/redhat-release)","")
198         @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
199         @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
200         @sudo -E yum install $(CONFIRM) --enablerepo=epel $(EPEL_DEPENDS)
201         @sudo -E debuginfo-install $(CONFIRM) glibc-2.17-106.el7_2.4.x86_64 openssl-libs-1.0.1e-51.el7_2.4.x86_64 zlib-1.2.7-15.el7.x86_64
202 else
203         $(error "This option currently works only on Ubuntu or Centos systems")
204 endif
205
206 define make
207         @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
208 endef
209
210 $(BR)/scripts/.version:
211 ifneq ("$(wildcard /etc/redhat-release)","")
212         $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
213 else
214         $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
215 endif
216
217 dist:   $(BR)/scripts/.version
218         $(MAKE) verstring=$(PLATFORM)-$(shell cat $(BR)/scripts/.version) prefix=$(PLATFORM) distversion
219
220 distversion:    $(BR)/scripts/.version
221         $(BR)/scripts/verdist ${BR} ${prefix}-$(shell $(BR)/scripts/version rpm-version) ${verstring}
222         mv $(verstring).tar.gz $(BR)/rpm
223
224 build: $(BR)/.bootstrap.ok
225         $(call make,$(PLATFORM)_debug,vpp-install)
226
227 wipedist:
228         $(RM) $(BR)/scripts/.version $(BR)/rpm/*.tar.gz
229
230 wipe: wipedist $(BR)/.bootstrap.ok
231         $(call make,$(PLATFORM)_debug,vpp-wipe)
232
233 rebuild: wipe build
234
235 build-release: $(BR)/.bootstrap.ok
236         $(call make,$(PLATFORM),vpp-install)
237
238 wipe-release: $(BR)/.bootstrap.ok
239         $(call make,$(PLATFORM),vpp-wipe)
240
241 rebuild-release: wipe-release build-release
242
243 export VPP_PYTHON_PREFIX=$(BR)/python
244
245 define test
246         $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
247         make -C test \
248           TEST_DIR=$(WS_ROOT)/test \
249           VPP_TEST_BUILD_DIR=$(BR)/build-$(2)-native \
250           VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
251           VPP_TEST_PLUGIN_PATH=$(BR)/install-$(2)-native/vpp/lib64/vpp_plugins \
252           VPP_TEST_INSTALL_PATH=$(BR)/install-$(2)-native/ \
253           LD_LIBRARY_PATH=$(BR)/install-$(2)-native/vpp/lib64/ \
254           EXTENDED_TESTS=$(EXTENDED_TESTS) \
255           $(3)
256 endef
257
258 test: bootstrap
259         $(call test,vpp,vpp,test)
260
261 test-debug: bootstrap
262         $(call test,vpp,vpp_debug,test)
263
264 test-all: bootstrap
265         $(eval EXTENDED_TESTS=yes)
266         $(call test,vpp,vpp,test)
267
268 test-all-debug: bootstrap
269         $(eval EXTENDED_TESTS=yes)
270         $(call test,vpp,vpp_debug,test)
271
272 test-help:
273         @make -C test help
274
275 test-wipe:
276         @make -C test wipe
277
278 test-shell: bootstrap
279         $(call test,vpp,vpp,shell)
280
281 test-shell-debug: bootstrap
282         $(call test,vpp,vpp_debug,shell)
283
284 test-doc:
285         @make -C test doc
286
287 test-wipe-doc:
288         @make -C test wipe-doc
289
290 test-cov: bootstrap
291         $(eval EXTENDED_TESTS=yes)
292         $(call test,vpp,vpp_gcov,cov)
293
294 test-wipe-cov:
295         @make -C test wipe-cov
296
297 test-checkstyle:
298         @make -C test checkstyle
299
300 retest:
301         $(call test,vpp,vpp,retest)
302
303 retest-debug:
304         $(call test,vpp,vpp_debug,retest)
305
306 STARTUP_DIR ?= $(PWD)
307 ifeq ("$(wildcard $(STARTUP_CONF))","")
308 define run
309         @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
310         @echo "         Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
311         @cd $(STARTUP_DIR) && \
312           sudo $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) plugin_path $(1)/vpp/lib64/vpp_plugins
313 endef
314 else
315 define run
316         @cd $(STARTUP_DIR) && \
317           sudo $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//') plugin_path $(1)/vpp/lib64/vpp_plugins
318 endef
319 endif
320
321 %.files: .FORCE
322         @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
323                 \( -not -path './build-root*' -o -path \
324                 './build-root/build-vpp_debug-native/dpdk*' \) > $@
325
326 .FORCE:
327
328 run:
329         $(call run, $(BR)/install-$(PLATFORM)_debug-native)
330
331 run-release:
332         $(call run, $(BR)/install-$(PLATFORM)-native)
333
334 debug:
335         $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
336
337 build-coverity: 
338         $(call make,$(PLATFORM)_coverity,install-packages)
339
340 debug-release:
341         $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
342
343 build-vat:
344         $(call make,$(PLATFORM)_debug,vpp-api-test-install)
345
346 run-vat:
347         @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
348
349 pkg-deb:
350         $(call make,$(PLATFORM),install-deb)
351
352 pkg-rpm: dist
353         $(call make,$(PLATFORM),install-rpm)
354
355 dpdk-install-dev:
356         make -C dpdk install-$(PKG)
357
358 ctags: ctags.files
359         @ctags --totals --tag-relative -L $<
360         @rm $<
361
362 gtags: ctags
363         @gtags --gtagslabel=ctags
364
365 cscope: cscope.files
366         @cscope -b -q -v
367
368 checkstyle:
369         @build-root/scripts/checkstyle.sh
370
371 fixstyle:
372         @build-root/scripts/checkstyle.sh --fix
373
374 #
375 # Build the documentation
376 #
377
378 # Doxygen configuration and our utility scripts
379 export DOXY_DIR ?= $(WS_ROOT)/doxygen
380
381 define make-doxy
382         @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
383 endef
384
385 .PHONY: bootstrap-doxygen doxygen wipe-doxygen
386
387 bootstrap-doxygen:
388         $(call make-doxy)
389
390 doxygen:
391         $(call make-doxy)
392
393 wipe-doxygen:
394         $(call make-doxy)
395
396 define banner
397         @echo "========================================================================"
398         @echo " $(1)"
399         @echo "========================================================================"
400         @echo " "
401 endef
402
403 verify: install-dep $(BR)/.bootstrap.ok dpdk-install-dev
404         $(call banner,"Building for PLATFORM=vpp using gcc")
405         @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
406 ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
407         $(call banner,"Installing dependencies")
408         @sudo -E apt-get update
409         @sudo -E apt-get $(CONFIRM) $(FORCE) install clang
410         $(call banner,"Building for PLATFORM=vpp using clang")
411         @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang wipe-all install-packages
412 endif
413         $(call banner,"Building $(PKG) packages")
414         @make pkg-$(PKG)
415         @make test-all
416
417