LISP: Fix several control plane message issues, VPP-558
[vpp.git] / plugins / ioam-plugin / Makefile.am
1 # Copyright (c) 2015 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 AUTOMAKE_OPTIONS = foreign subdir-objects
15
16 AM_CFLAGS = -Wall
17 AM_LDFLAGS = -module -shared -avoid-version
18
19 ########################################
20 # iOAM Proof of Transit
21 ########################################
22
23 ioam_pot_plugin_la_SOURCES =                    \
24         ioam/lib-pot/pot_util.c                 \
25         ioam/encap/ip6_ioam_pot.c               \
26         ioam/lib-pot/pot_util.h                 \
27         ioam/lib-pot/math64.h                   \
28         ioam/lib-pot/pot_api.c
29
30 BUILT_SOURCES =                                 \
31         ioam/lib-pot/pot.api.h                  \
32         ioam/lib-pot/pot.api.json
33
34 SUFFIXES = .api.h .api
35
36 %.api.h: %.api
37         mkdir -p `dirname $@` ; \
38         $(CC) $(CPPFLAGS) -E -P -C -x c $^ \
39         | vppapigen --input - --output $@ --show-name $@
40
41 %.api.json: %.api
42         @echo "  JSON APIGEN  " $@ ;                            \
43         mkdir -p `dirname $@` ;                                 \
44         $(CC) $(CPPFLAGS) -E -P -C -x c $^                      \
45         | vppapigen --input - --json $@
46
47 apidir = $(prefix)/ioam/
48 api_DATA =                                      \
49         ioam/lib-pot/pot.api.json               \
50         ioam/lib-trace/trace.api.json           \
51         ioam/export/ioam_export.api.json
52
53 noinst_HEADERS =                                \
54   ioam/lib-pot/pot_all_api_h.h                  \
55   ioam/lib-pot/pot_msg_enum.h                   \
56   ioam/lib-pot/pot.api.h                        \
57   ioam/lib-pot/pot_util.h                       \
58   ioam/lib-pot/math64.h
59
60 ioam_pot_test_plugin_la_SOURCES =               \
61         ioam/lib-pot/pot_test.c                 \
62         ioam/lib-pot/pot_plugin.api.h
63
64 vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins
65 vpppluginsdir = ${libdir}/vpp_plugins
66
67 vppapitestplugins_LTLIBRARIES = ioam_pot_test_plugin.la
68 vppplugins_LTLIBRARIES = ioam_pot_plugin.la
69
70 ########################################
71 # iOAM trace export for IPv6
72 ########################################
73
74 ioam_export_plugin_la_SOURCES =   \
75 ioam/export/ioam_export.c         \
76 ioam/export/node.c                \
77 ioam/export/ioam_export.api.h     \
78 ioam/export/ioam_export_thread.c
79
80 BUILT_SOURCES +=                                \
81         ioam/export/ioam_export.api.h           \
82         ioam/export/ioam_export.api.json
83
84 noinst_HEADERS +=                       \
85   ioam/export/ioam_export_all_api_h.h   \
86   ioam/export/ioam_export_msg_enum.h    \
87   ioam/export/ioam_export.api.h
88
89 ioam_export_test_plugin_la_SOURCES =  \
90   ioam/export/ioam_export_test.c      \
91   ioam/export/ioam_export_plugin.api.h
92
93 vppapitestplugins_LTLIBRARIES += ioam_export_test_plugin.la
94 vppplugins_LTLIBRARIES += ioam_export_plugin.la
95
96 ########################################
97 # iOAM Trace
98 ########################################
99 libioam_trace_plugin_la_SOURCES =               \
100         ioam/lib-trace/trace_util.c             \
101         ioam/encap/ip6_ioam_trace.c             \
102         ioam/lib-trace/trace_util.h             \
103         ioam/lib-trace/trace_api.c
104
105 BUILT_SOURCES +=                                \
106         ioam/lib-trace/trace.api.h              \
107         ioam/lib-trace/trace.api.json
108
109 noinst_HEADERS +=                       \
110   ioam/export/ioam_export_all_api_h.h   \
111   ioam/lib-trace/trace_all_api_h.h      \
112   ioam/lib-trace/trace_msg_enum.h       \
113   ioam/lib-trace/trace.api.h            \
114   ioam/lib-trace/trace_util.h
115
116 ioam_trace_test_plugin_la_SOURCES =             \
117         ioam/lib-trace/trace_test.c             \
118         ioam/lib-trace/trace_plugin.api.h
119
120 vppapitestplugins_LTLIBRARIES += ioam_trace_test_plugin.la
121 vppplugins_LTLIBRARIES += libioam_trace_plugin.la
122
123 ########################################
124 # VxLAN-GPE
125 ########################################
126 libioam_vxlan_gpe_plugin_la_SOURCES =                   \
127         ioam/lib-vxlan-gpe/ioam_encap.c                 \
128         ioam/lib-vxlan-gpe/ioam_decap.c                 \
129         ioam/lib-vxlan-gpe/ioam_pop.c                   \
130         ioam/lib-vxlan-gpe/vxlan_gpe_api.c              \
131         ioam/lib-vxlan-gpe/vxlan_gpe_ioam_trace.c       \
132     ioam/lib-vxlan-gpe/vxlan_gpe_ioam.c
133
134 BUILT_SOURCES +=                                \
135         ioam/lib-vxlan-gpe/vxlan_gpe.api.h              \
136         ioam/lib-vxlan-gpe/vxlan_gpe.api.json
137
138 noinst_HEADERS +=                       \
139   ioam/export/ioam_export_all_api_h.h   \
140   ioam/lib-vxlan-gpe/vxlan_gpe_all_api_h.h                      \
141   ioam/lib-vxlan-gpe/vxlan_gpe_msg_enum.h                       \
142   ioam/lib-vxlan-gpe/vxlan_gpe.api.h                    \
143   ioam/lib-vxlan-gpe/vxlan_gpe_ioam_util.h                      \
144   ioam/lib-vxlan-gpe/vxlan_gpe_ioam_packet.h                    \
145   ioam/lib-vxlan-gpe/vxlan_gpe_ioam.h
146
147 ioam_vxlan_gpe_test_plugin_la_SOURCES =         \
148         ioam/lib-vxlan-gpe/vxlan_gpe_test.c                     \
149         ioam/lib-vxlan-gpe/vxlan_gpe_plugin.api.h
150
151 libioam_vxlan_gpe_plugin_la_LIBADD = libioam_trace_plugin.la
152
153 vppapitestplugins_LTLIBRARIES += ioam_vxlan_gpe_test_plugin.la
154 vppplugins_LTLIBRARIES += libioam_vxlan_gpe_plugin.la
155
156 ########################################
157 # iOAM export for VxLAN-GPE
158 ########################################
159
160 libvxlan_gpe_ioam_export_plugin_la_SOURCES =   \
161 ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.c         \
162 ioam/export-vxlan-gpe/vxlan_gpe_node.c                \
163 ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api.h     \
164 ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_thread.c
165
166 BUILT_SOURCES +=                                \
167         ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api.h               \
168         ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api.json
169
170 noinst_HEADERS +=                                            \
171   ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_all_api_h.h       \
172   ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_msg_enum.h        \
173   ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api.h
174
175 vxlan_gpe_ioam_export_test_plugin_la_SOURCES =          \
176   ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_test.c      \
177   ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_plugin.api.h
178
179 libvxlan_gpe_ioam_export_plugin_la_LIBADD = libioam_vxlan_gpe_plugin.la
180
181 vppapitestplugins_LTLIBRARIES += vxlan_gpe_ioam_export_test_plugin.la
182 vppplugins_LTLIBRARIES += libvxlan_gpe_ioam_export_plugin.la
183
184 ########################################
185 # iOAM E2E plugin
186 ########################################
187
188 ioam_e2e_plugin_la_SOURCES =                \
189         ioam/encap/ip6_ioam_e2e.c               \
190         ioam/encap/ip6_ioam_seqno.c             \
191         ioam/encap/ip6_ioam_seqno_analyse.c
192
193 noinst_HEADERS +=                    \
194         ioam/encap/ip6_ioam_e2e.h        \
195         ioam/encap/ip6_ioam_seqno.h
196
197 vppplugins_LTLIBRARIES += ioam_e2e_plugin.la
198
199 # Remove *.la files
200 install-data-hook:
201         @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES))
202         @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES))
203
204
205 #
206 # Java code generation
207 #
208 jvpp_registry_root = ../../vpp-api/java
209 jvpp_registry_version = 17.01
210 jioam_trace_jarfile = jvpp-ioam-trace-$(PACKAGE_VERSION).jar
211 jvpp_trace_package_dir = io/fd/vpp/jvpp/ioamtrace
212 jvpp_root = ioam/jvpp
213 jvpp_target_dir = target
214 jvpp_target = $(jvpp_root)/$(jvpp_target_dir)
215 trace_api_file=$(srcdir)/ioam/lib-trace/trace.api
216
217
218 lib_LTLIBRARIES = libjvpp_ioamtrace.la
219 libjvpp_ioamtrace_la_SOURCES = ioam/lib-trace/trace.api.h ioam/lib-trace/jvpp_ioam_trace.c ioam/jvpp/io_fd_vpp_jvpp_ioam_trace_JVppIoamTraceImpl.h
220 libjvpp_ioamtrace_la_LIBADD = -lvlibmemoryclient -lvlibapi -lvppinfra \
221                       -lpthread -lm -lrt -L$(jvpp_registry_root)/.libs -ljvpp_common
222 libjvpp_ioamtrace_la_LDFLAGS = -module
223 libjvpp_ioamtrace_la_CPPFLAGS = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -I../ -I$(srcdir)/../
224
225 BUILT_SOURCES += $(jvpp_root)/io_fd_vpp_jvpp_ioamtrace_JVppIoamtraceImpl.h
226
227 $(jvpp_root)/io_fd_vpp_jvpp_ioamtrace_JVppIoamtraceImpl.h: ioam_trace.api.json
228         dir=`pwd`;                                              \
229         mkdir -p $(jvpp_target); \
230         mkdir -p $(jvpp_root)/$(jvpp_trace_package_dir);                \
231         cd $(jvpp_root)/$(jvpp_trace_package_dir);                      \
232         mkdir -p dto future callfacade callback notification test;      \
233         @srcdir@/$(jvpp_registry_root)/jvpp/gen/jvpp_gen.py -i $${dir}/ioam_trace.api.json --plugin_name ioamtrace;             \
234         cd -;                                                   \
235         mv -f $(jvpp_root)/$(jvpp_trace_package_dir)/jvpp_ioamtrace_gen.h $(jvpp_root)/jvpp_ioam_trace_gen.h;                                                   \
236         cp $(srcdir)/$(jvpp_root)/$(jvpp_trace_package_dir)/test/*.java $(jvpp_root)/$(jvpp_trace_package_dir)/test/;                           \
237         cd $(jvpp_root);                                \
238         $(JAVAC) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d $(jvpp_target_dir) $(jvpp_trace_package_dir)/*.java \
239                 $(jvpp_trace_package_dir)/dto/*.java \
240                 $(jvpp_trace_package_dir)/callback/*.java \
241                 $(jvpp_trace_package_dir)/notification/*.java \
242                 $(jvpp_trace_package_dir)/future/*.java         \
243                 $(jvpp_trace_package_dir)/callfacade/*.java     \
244                 $(jvpp_trace_package_dir)/test/*.java \
245                 || (echo "ioam trace jvpp compilation failed: $$?"; exit 1);    \
246         $(JAVAH) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d . io.fd.vpp.jvpp.ioamtrace.JVppIoamtraceImpl ;
247
248 $(jioam_trace_jarfile): libjvpp_ioamtrace.la
249         cp .libs/libjvpp_ioamtrace.so.0.0.0 $(jvpp_target);                             \
250         cd $(jvpp_target);                              \
251         $(JAR) cfv $(JARFLAGS) ../../../$@ libjvpp_ioamtrace.so.0.0.0 $(jvpp_trace_package_dir)/* ; cd ..;
252
253 ioam_trace.api.json:
254         @echo "  jIoam_trace API"; \
255         vppapigen --input $(trace_api_file) --json ioam_trace.api.json;
256
257 all-local: $(jioam_trace_jarfile)
258
259
260 jioam_pot_jarfile = jvpp-ioam-pot-$(PACKAGE_VERSION).jar
261 jvpp_pot_package_dir = io/fd/vpp/jvpp/ioampot
262 jvpp_root = ioam/jvpp
263 jvpp_target_dir = target
264 jvpp_target = $(jvpp_root)/$(jvpp_target_dir)
265 pot_api_file=$(srcdir)/ioam/lib-pot/pot.api
266
267
268 lib_LTLIBRARIES += libjvpp_ioampot.la
269 libjvpp_ioampot_la_SOURCES = ioam/lib-pot/pot.api.h ioam/lib-pot/jvpp_ioam_pot.c ioam/jvpp/io_fd_vpp_jvpp_ioam_pot_JVppIoamPotImpl.h
270 libjvpp_ioampot_la_LIBADD = -lvlibmemoryclient -lvlibapi -lvppinfra \
271                       -lpthread -lm -lrt -L$(jvpp_registry_root)/.libs -ljvpp_common
272 libjvpp_ioampot_la_LDFLAGS = -module
273 libjvpp_ioampot_la_CPPFLAGS = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -I../ -I$(srcdir)/../
274
275 BUILT_SOURCES += $(jvpp_root)/io_fd_vpp_jvpp_ioampot_JVppIoampotImpl.h
276
277 $(jvpp_root)/io_fd_vpp_jvpp_ioampot_JVppIoampotImpl.h: ioam_pot.api.json
278         dir=`pwd`;                                              \
279         mkdir -p $(jvpp_target); \
280         mkdir -p $(jvpp_root)/$(jvpp_pot_package_dir);          \
281         cd $(jvpp_root)/$(jvpp_pot_package_dir);                        \
282         mkdir -p dto future callfacade callback notification test;      \
283         @srcdir@/$(jvpp_registry_root)/jvpp/gen/jvpp_gen.py -i $${dir}/ioam_pot.api.json --plugin_name ioampot;         \
284         cd -;                                                   \
285         mv -f $(jvpp_root)/$(jvpp_pot_package_dir)/jvpp_ioampot_gen.h $(jvpp_root)/jvpp_ioam_pot_gen.h;                                                 \
286         cp $(srcdir)/$(jvpp_root)/$(jvpp_pot_package_dir)/test/*.java $(jvpp_root)/$(jvpp_pot_package_dir)/test/;                               \
287         cd $(jvpp_root);                                \
288         $(JAVAC) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d $(jvpp_target_dir) $(jvpp_pot_package_dir)/*.java \
289                 $(jvpp_pot_package_dir)/dto/*.java \
290                 $(jvpp_pot_package_dir)/callback/*.java \
291                 $(jvpp_pot_package_dir)/notification/*.java \
292                 $(jvpp_pot_package_dir)/future/*.java   \
293                 $(jvpp_pot_package_dir)/callfacade/*.java       \
294                 $(jvpp_pot_package_dir)/test/*.java \
295                 || (echo "ioam pot jvpp compilation failed: $$?"; exit 1);      \
296         $(JAVAH) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d . io.fd.vpp.jvpp.ioampot.JVppIoampotImpl ;
297
298 $(jioam_pot_jarfile): libjvpp_ioampot.la
299         cp .libs/libjvpp_ioampot.so.0.0.0 $(jvpp_target);                               \
300         cd $(jvpp_target);                              \
301         $(JAR) cfv $(JARFLAGS) ../../../$@ libjvpp_ioampot.so.0.0.0 $(jvpp_pot_package_dir)/* ; cd ..;
302
303 ioam_pot.api.json:
304         @echo "  jIoam_pot API"; \
305         vppapigen --input $(pot_api_file) --json ioam_pot.api.json;
306
307 all-local: $(jioam_pot_jarfile)