blob: 2ce40f3ec726e5b5f87ca77fe1dd426e731c0830 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001# 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
14AUTOMAKE_OPTIONS = foreign subdir-objects
15
Dave Barach61efa142016-01-22 08:23:09 -050016AM_CFLAGS = -Wall @DPDK@ @VIRL@ @IPSEC@ @VCGN@ @IPV6SR@
Ed Warnickecb9cada2015-12-08 15:45:58 -070017
18libvnet_la_SOURCES =
Todd Foggoa4ea4ecd2016-03-17 14:22:34 -040019libvnetplugin_la_SOURCES =
Ed Warnickecb9cada2015-12-08 15:45:58 -070020nobase_include_HEADERS =
Dave Barach4e281a42015-12-14 11:13:29 -050021noinst_PROGRAMS =
Filip Tehlar254b0362016-04-07 10:04:34 +020022TESTS =
Ed Warnickecb9cada2015-12-08 15:45:58 -070023
24########################################
25# Generic stuff
26########################################
27libvnet_la_SOURCES += \
28 vnet/config.c \
29 vnet/interface.c \
30 vnet/interface_cli.c \
31 vnet/interface_format.c \
32 vnet/interface_output.c \
33 vnet/misc.c \
34 vnet/replication.c \
35 vnet/rewrite.c
36
37nobase_include_HEADERS += \
38 vnet/api_errno.h \
39 vnet/buffer.h \
40 vnet/config.h \
41 vnet/global_funcs.h \
42 vnet/interface.h \
43 vnet/interface_funcs.h \
44 vnet/l3_types.h \
45 vnet/pipeline.h \
46 vnet/replication.h \
47 vnet/rewrite.h \
48 vnet/vnet.h
49
50########################################
51# Policer infra
52########################################
53
54libvnet_la_SOURCES += \
55 vnet/policer/node_funcs.c \
56 vnet/policer/policer.c \
57 vnet/policer/xlate.c
58
59nobase_include_HEADERS += \
60 vnet/policer/police.h \
61 vnet/policer/xlate.h
62
Dave Barachc07bf5d2016-02-17 17:52:26 -050063########################################
64# Cop - junk filter
65########################################
66
67libvnet_la_SOURCES += \
68 vnet/cop/cop.c \
69 vnet/cop/node1.c \
70 vnet/cop/ip4_whitelist.c \
71 vnet/cop/ip6_whitelist.c
72
73nobase_include_HEADERS += \
74 vnet/cop/cop.h
Ed Warnickecb9cada2015-12-08 15:45:58 -070075
76########################################
77# Layer 2 protocols go here
78########################################
79
80########################################
81# Layer 2 protocol: Ethernet
82########################################
83libvnet_la_SOURCES += \
84 vnet/ethernet/arp.c \
Ed Warnickecb9cada2015-12-08 15:45:58 -070085 vnet/ethernet/format.c \
86 vnet/ethernet/init.c \
87 vnet/ethernet/interface.c \
88 vnet/ethernet/node.c \
89 vnet/ethernet/pg.c
90
91nobase_include_HEADERS += \
92 vnet/ethernet/arp_packet.h \
93 vnet/ethernet/error.def \
94 vnet/ethernet/ethernet.h \
95 vnet/ethernet/packet.h \
96 vnet/ethernet/types.def
97
98########################################
99# Layer 2 protocol: Ethernet bridging
100########################################
101libvnet_la_SOURCES += \
102 vnet/l2/feat_bitmap.c \
103 vnet/l2/l2_bd.c \
104 vnet/l2/l2_bvi.c \
105 vnet/l2/l2_classify.c \
106 vnet/l2/l2_efp_filter.c \
107 vnet/l2/l2_fib.c \
108 vnet/l2/l2_flood.c \
109 vnet/l2/l2_fwd.c \
110 vnet/l2/l2_input_acl.c \
111 vnet/l2/l2_input.c \
112 vnet/l2/l2_input_vtr.c \
113 vnet/l2/l2_learn.c \
114 vnet/l2/l2_output_acl.c \
115 vnet/l2/l2_output.c \
116 vnet/l2/l2_patch.c \
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000117 vnet/l2/l2_rw.c \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118 vnet/l2/l2_vtr.c \
119 vnet/l2/l2_xcrw.c
120
121nobase_include_HEADERS += \
122 vnet/l2/feat_bitmap.h \
123 vnet/l2/l2_input.h \
124 vnet/l2/l2_output.h \
125 vnet/l2/l2_vtr.h \
126 vnet/l2/l2_input_vtr.h \
127 vnet/l2/l2_efp_filter.h \
128 vnet/l2/l2_fwd.h \
129 vnet/l2/l2_bd.h \
130 vnet/l2/l2_bvi.h \
131 vnet/l2/l2_flood.h \
132 vnet/l2/l2_fib.h \
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000133 vnet/l2/l2_rw.h \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134 vnet/l2/l2_xcrw.h \
135 vnet/l2/l2_classify.h
136
137########################################
138# Layer 2 protocol: SRP
139########################################
140libvnet_la_SOURCES += \
141 vnet/srp/format.c \
142 vnet/srp/interface.c \
143 vnet/srp/node.c \
144 vnet/srp/pg.c
145
146nobase_include_HEADERS += \
147 vnet/srp/packet.h \
148 vnet/srp/srp.h
149
150########################################
151# Layer 2 protocol: PPP
152########################################
153libvnet_la_SOURCES += \
154 vnet/ppp/node.c \
155 vnet/ppp/pg.c \
156 vnet/ppp/ppp.c
157
158nobase_include_HEADERS += \
159 vnet/ppp/error.def \
160 vnet/ppp/ppp.h \
161 vnet/ppp/packet.h
162
163########################################
164# Layer 2 protocol: HDLC
165########################################
166libvnet_la_SOURCES += \
167 vnet/hdlc/node.c \
168 vnet/hdlc/pg.c \
169 vnet/hdlc/hdlc.c
170
171nobase_include_HEADERS += \
172 vnet/hdlc/error.def \
173 vnet/hdlc/hdlc.h \
174 vnet/hdlc/packet.h
175
176########################################
177# Layer 2 protocol: LLC
178########################################
179libvnet_la_SOURCES += \
180 vnet/llc/llc.c \
181 vnet/llc/node.c \
182 vnet/llc/pg.c
183
184nobase_include_HEADERS += \
185 vnet/llc/llc.h
186
187########################################
188# Layer 2 protocol: SNAP
189########################################
190libvnet_la_SOURCES += \
191 vnet/snap/snap.c \
192 vnet/snap/node.c \
193 vnet/snap/pg.c
194
195nobase_include_HEADERS += \
196 vnet/snap/snap.h
197
198########################################
199# Layer 2 / vxlan
200########################################
201libvnet_la_SOURCES += \
202 vnet/vxlan/vxlan.c \
203 vnet/vxlan/encap.c \
204 vnet/vxlan/decap.c
205
206nobase_include_HEADERS += \
207 vnet/vxlan/vxlan.h \
Dave Barachced48e72016-02-08 15:57:35 -0500208 vnet/vxlan/vxlan_packet.h \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209 vnet/vxlan/vxlan_error.def
210
211########################################
Dave Barachced48e72016-02-08 15:57:35 -0500212# Layer 2 / CDP
213########################################
214libvnet_la_SOURCES += \
215 vnet/cdp/cdp_input.c \
216 vnet/cdp/cdp_node.c \
217 vnet/cdp/cdp_periodic.c
218
219nobase_include_HEADERS += \
220 vnet/cdp/cdp_protocol.h
221
222########################################
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223# Layer 2/3 "classify"
224########################################
225libvnet_la_SOURCES += \
226 vnet/classify/vnet_classify.c \
227 vnet/classify/ip_classify.c \
228 vnet/classify/input_acl.c \
229 vnet/classify/vnet_classify.h
230
231nobase_include_HEADERS += \
232 vnet/classify/vnet_classify.h \
233 vnet/classify/input_acl.h
234
235########################################
236# Layer 3 protocols go here
237########################################
238
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239########################################
240# Layer 3 protocol: IP v4/v6
241########################################
242libvnet_la_SOURCES += \
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400243 vnet/ip/adj_alloc.c \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244 vnet/ip/format.c \
245 vnet/ip/icmp4.c \
246 vnet/ip/icmp6.c \
247 vnet/ip/ip46_cli.c \
248 vnet/ip/ip4_format.c \
249 vnet/ip/ip4_forward.c \
250 vnet/ip/ip4_hop_by_hop.c \
251 vnet/ip/ip4_input.c \
252 vnet/ip/ip4_mtrie.c \
253 vnet/ip/ip4_pg.c \
254 vnet/ip/ip4_source_check.c \
255 vnet/ip/ip6_format.c \
256 vnet/ip/ip6_forward.c \
257 vnet/ip/ip6_hop_by_hop.c \
258 vnet/ip/ip6_input.c \
259 vnet/ip/ip6_neighbor.c \
260 vnet/ip/ip6_pg.c \
261 vnet/ip/ip_checksum.c \
262 vnet/ip/ip.h \
263 vnet/ip/ip_init.c \
264 vnet/ip/lookup.c \
265 vnet/ip/udp_format.c \
266 vnet/ip/udp_init.c \
267 vnet/ip/udp_local.c \
268 vnet/ip/udp_pg.c \
269 vnet/ip/ip_input_acl.c \
270 vnet/ip/ip_frag.c
271
272nobase_include_HEADERS += \
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400273 vnet/ip/adj_alloc.h \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274 vnet/ip/format.h \
275 vnet/ip/icmp46_packet.h \
Ole Troan92eade12016-01-13 20:17:08 +0100276 vnet/ip/icmp4.h \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 vnet/ip/icmp6.h \
278 vnet/ip/igmp_packet.h \
279 vnet/ip/ip.h \
280 vnet/ip/ip4.h \
281 vnet/ip/ip4_mtrie.h \
282 vnet/ip/ip4_error.h \
283 vnet/ip/ip4_packet.h \
284 vnet/ip/ip6.h \
285 vnet/ip/ip6_error.h \
286 vnet/ip/ip6_hop_by_hop.h \
287 vnet/ip/ip6_hop_by_hop_packet.h \
288 vnet/ip/ip6_packet.h \
289 vnet/ip/lookup.h \
290 vnet/ip/ip_packet.h \
291 vnet/ip/ports.def \
292 vnet/ip/protocols.def \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293 vnet/ip/tcp_packet.h \
294 vnet/ip/udp.h \
295 vnet/ip/udp_error.def \
296 vnet/ip/udp_packet.h
297
298########################################
299# Layer 3 protocol: IPSec
300########################################
Dave Barach61efa142016-01-22 08:23:09 -0500301if WITH_IPSEC
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302libvnet_la_SOURCES += \
303 vnet/ipsec/ipsec.c \
304 vnet/ipsec/ipsec_cli.c \
305 vnet/ipsec/ipsec_format.c \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306 vnet/ipsec/ipsec_input.c \
307 vnet/ipsec/ipsec_if.c \
308 vnet/ipsec/ipsec_if_in.c \
309 vnet/ipsec/ipsec_if_out.c \
310 vnet/ipsec/esp_encrypt.c \
311 vnet/ipsec/esp_decrypt.c \
312 vnet/ipsec/ikev2.c \
313 vnet/ipsec/ikev2_crypto.c \
314 vnet/ipsec/ikev2_cli.c \
315 vnet/ipsec/ikev2_payload.c \
316 vnet/ipsec/ikev2_format.c
Dave Barach61efa142016-01-22 08:23:09 -0500317endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318
Damjan Marione936bbe2016-02-25 23:17:38 +0100319libvnet_la_SOURCES += \
320 vnet/ipsec/ipsec_output.c
321
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322nobase_include_HEADERS += \
323 vnet/ipsec/ipsec.h \
324 vnet/ipsec/esp.h \
325 vnet/ipsec/ikev2.h \
326 vnet/ipsec/ikev2_priv.h
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327
328########################################
329# Layer 3 protocol: osi
330########################################
331libvnet_la_SOURCES += \
332 vnet/osi/node.c \
333 vnet/osi/osi.c \
334 vnet/osi/pg.c
335
336nobase_include_HEADERS += \
337 vnet/osi/osi.h
338
339########################################
340# Layer 3 protocol: MAP
341########################################
342libvnet_la_SOURCES += \
343 vnet/map/map.c \
344 vnet/map/ip4_map.c \
345 vnet/map/ip6_map.c \
346 vnet/map/sixrd.c \
347 vnet/map/ip4_sixrd.c \
348 vnet/map/ip6_sixrd.c \
349 vnet/map/ip4_map_t.c \
350 vnet/map/ip6_map_t.c
351
352nobase_include_HEADERS += \
353 vnet/map/map.h \
354 vnet/map/sixrd.h
355
356########################################
357# Tunnel protocol: gre
358########################################
359libvnet_la_SOURCES += \
360 vnet/gre/gre.c \
361 vnet/gre/node.c \
362 vnet/gre/interface.c \
363 vnet/gre/pg.c
364
365nobase_include_HEADERS += \
366 vnet/gre/gre.h \
367 vnet/gre/packet.h \
368 vnet/gre/error.def
369
370########################################
371# Tunnel protocol: l2tpv3
372########################################
373libvnet_la_SOURCES += \
374 vnet/l2tp/l2tp.c \
375 vnet/l2tp/encap.c \
376 vnet/l2tp/decap.c \
377 vnet/l2tp/pg.c
378
379nobase_include_HEADERS += \
380 vnet/l2tp/l2tp.h \
381 vnet/l2tp/packet.h
382
383########################################
384# Tunnel protocol: gre+mpls
385########################################
386libvnet_la_SOURCES += \
387 vnet/mpls-gre/mpls.c \
388 vnet/mpls-gre/node.c \
389 vnet/mpls-gre/interface.c \
390 vnet/mpls-gre/policy_encap.c \
391 vnet/mpls-gre/pg.c
392
393nobase_include_HEADERS += \
394 vnet/mpls-gre/mpls.h \
395 vnet/mpls-gre/packet.h \
396 vnet/mpls-gre/error.def
397
398
399########################################
400# Tunnel protocol: nsh-gre
401########################################
402
403libvnet_la_SOURCES += \
404 vnet/nsh-gre/nsh_gre.c \
405 vnet/nsh-gre/encap.c \
406 vnet/nsh-gre/decap.c
407
408nobase_include_HEADERS += \
409 vnet/nsh-gre/nsh_gre.h \
410 vnet/nsh-gre/nsh_gre_packet.h \
411 vnet/nsh-gre/nsh_gre_error.def
412
413########################################
414# Tunnel protocol: nsh-vxlan-gpe
415########################################
416
417libvnet_la_SOURCES += \
418 vnet/nsh-vxlan-gpe/nsh_vxlan_gpe.c \
419 vnet/nsh-vxlan-gpe/encap.c \
420 vnet/nsh-vxlan-gpe/decap.c
421
422nobase_include_HEADERS += \
423 vnet/nsh-vxlan-gpe/nsh_vxlan_gpe.h \
424 vnet/nsh-vxlan-gpe/vxlan_gpe_packet.h \
425 vnet/nsh-vxlan-gpe/nsh_vxlan_gpe_error.def
426
427########################################
Florin Corase127a7e2016-02-18 22:20:01 +0100428# LISP control plane: lisp-cp
429########################################
430
431libvnet_la_SOURCES += \
432 vnet/lisp-cp/lisp_types.c \
433 vnet/lisp-cp/control.c \
434 vnet/lisp-cp/gid_dictionary.c \
435 vnet/lisp-cp/lisp_msg_serdes.c \
436 vnet/lisp-cp/packets.c
437
438nobase_include_HEADERS += \
439 vnet/lisp-cp/lisp_types.h \
440 vnet/lisp-cp/packets.h \
441 vnet/lisp-cp/gid_dictionary.h \
442 vnet/lisp-cp/lisp_cp_messages.h \
443 vnet/lisp-cp/lisp_msg_serdes.h \
444 vnet/lisp-cp/control.h
445
Filip Tehlar254b0362016-04-07 10:04:34 +0200446
447if ENABLE_TESTS
448LDS = -lvppinfra -l:libvlib.a -l:libdpdk.a -l:libvlibmemory.a \
449 -l:libvlibapi.a -l:libsvm.a -lpthread -ldl -lrt -lm -l:libvlib_unix.a
450
451TESTS += test_cp_serdes test_lisp_types
452
453test_cp_serdes_SOURCES = \
454 test/lisp-cp/test_cp_serdes.c \
455 vnet/lisp-cp/lisp_msg_serdes.c \
456 vnet/lisp-cp/lisp_types.c \
457 vnet/lisp-cp/packets.c \
458 vnet/ip/ip_checksum.c
459
460test_lisp_types_SOURCES = \
461 test/lisp-cp/test_lisp_types.c \
462 vnet/lisp-cp/lisp_types.c
463
464test_cp_serdes_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
465test_lisp_types_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
466
467test_cp_serdes_LDADD = libvnet.la $(LDS)
468test_lisp_types_LDADD = libvnet.la $(LDS)
469
470test_cp_serdes_LDFLAGS = -static
471test_lisp_types_LDFLAGS = -static
472endif
473
Florin Corase127a7e2016-02-18 22:20:01 +0100474########################################
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475# Tunnel protocol: lisp-gpe
476########################################
477
478libvnet_la_SOURCES += \
479 vnet/lisp-gpe/lisp_gpe.c \
480 vnet/lisp-gpe/encap.c \
Florin Corase127a7e2016-02-18 22:20:01 +0100481 vnet/lisp-gpe/decap.c
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482
483nobase_include_HEADERS += \
484 vnet/lisp-gpe/lisp_gpe.h \
485 vnet/lisp-gpe/lisp_gpe_packet.h \
Florin Corase127a7e2016-02-18 22:20:01 +0100486 vnet/lisp-gpe/lisp_gpe_error.def
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487
Filip Tehlar254b0362016-04-07 10:04:34 +0200488if ENABLE_TESTS
489TESTS += test_test
490
491test_test_SOURCES = test/lisp-gpe/test.c
492
493test_test_CPPFLAGS = $(AM_CPPFLAGS) -DCLIB_DEBUG
494
495test_test_LDADD = $(LIBOBJS)
496
497noinst_PROGRAMS += $(TESTS)
498check_PROGRAMS = $(TESTS)
499endif
500
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501########################################
502# DHCP client
503########################################
504libvnet_la_SOURCES += \
505 vnet/dhcp/client.c \
506 vnet/dhcp/client.h
507
508nobase_include_HEADERS += \
509 vnet/dhcp/client.h
510
511########################################
512# DHCP proxy
513########################################
514libvnet_la_SOURCES += \
515 vnet/dhcp/proxy_node.c \
516 vnet/dhcp/proxy.h
517
518nobase_include_HEADERS += \
519 vnet/dhcp/packet.h \
520 vnet/dhcp/proxy.h \
521 vnet/dhcp/proxy_error.def
522
523########################################
524# ipv6 segment routing
525########################################
Dave Barach61efa142016-01-22 08:23:09 -0500526
527if WITH_IPV6SR
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528libvnet_la_SOURCES += \
529 vnet/sr/sr.c
Dave Barach61efa142016-01-22 08:23:09 -0500530endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531
532nobase_include_HEADERS += \
533 vnet/sr/sr_packet.h \
534 vnet/sr/sr_error.def \
535 vnet/sr/sr.h
536
537########################################
538# CGN
539#########################################
Dave Barach61efa142016-01-22 08:23:09 -0500540
541if WITH_VCGN
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542libvnet_la_SOURCES += \
543 vnet/vcgn/cnat_bulk_port.c \
544 vnet/vcgn/cnat_config.c \
545 vnet/vcgn/cnat_db_scanner.c \
546 vnet/vcgn/cnat_db_v2.c \
547 vnet/vcgn/cnat_debug_msg_handler.c \
548 vnet/vcgn/cnat_cli_handler.c \
549 vnet/vcgn/cnat_global.c \
550 vnet/vcgn/cnat_ipv4_udp_inside_input.c \
551 vnet/vcgn/cnat_ipv4_udp_inside_input_exceptions.c \
552 vnet/vcgn/cnat_ipv4_udp_outside_input.c \
553 vnet/vcgn/cnat_ipv4_tcp_inside_input.c \
554 vnet/vcgn/cnat_ipv4_tcp_inside_input_exceptions.c \
555 vnet/vcgn/cnat_ipv4_tcp_outside_input.c \
556 vnet/vcgn/cnat_ipv4_icmp_query_inside_input.c \
557 vnet/vcgn/cnat_ipv4_icmp_query_inside_input_exception.c \
558 vnet/vcgn/cnat_ipv4_icmp_query_outside_input.c \
559 vnet/vcgn/cnat_ipv4_icmp_error_inside_input.c \
560 vnet/vcgn/cnat_ipv4_icmp_error_outside_input.c \
561 vnet/vcgn/cnat_logging.c \
562 vnet/vcgn/cnat_ports.c \
563 vnet/vcgn/cnat_util.c \
564 vnet/vcgn/cnat_show.c \
565 vnet/vcgn/cnat_syslog.c \
566 vnet/vcgn/cnat_v4_functions.c \
567 vnet/vcgn/index_list.c \
568 vnet/vcgn/spp_platform_trace_log.c \
569 vnet/vcgn/vcgn_classify.c
Dave Barach61efa142016-01-22 08:23:09 -0500570endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571
572########################################
573# DHCPv6 proxy
574########################################
575libvnet_la_SOURCES += \
576 vnet/dhcpv6/proxy_node.c
577
578nobase_include_HEADERS += \
579 vnet/dhcpv6/packet.h \
580 vnet/dhcpv6/proxy.h \
581 vnet/dhcpv6/proxy_error.def
582
583########################################
584# IPFIX / netflow v10
585########################################
586libvnet_la_SOURCES += \
587 vnet/flow/flow_report.c
588
589nobase_include_HEADERS += \
590 vnet/flow/flow_report.h \
591 vnet/flow/ipfix_info_elements.h \
592 vnet/flow/ipfix_packet.h
593
594########################################
595# IPFIX sample code
596########################################
597
598libvnet_la_SOURCES += \
599 vnet/flow/flow_report_sample.c
600
601nobase_include_HEADERS += \
602 vnet/flow/flow_report_sample.h
603
604########################################
605# lawful intercept
606########################################
607
608libvnet_la_SOURCES += \
609 vnet/lawful-intercept/lawful_intercept.c \
610 vnet/lawful-intercept/node.c
611
612nobase_include_HEADERS += \
613 vnet/dpdk_replication.h \
614 vnet/lawful-intercept/lawful_intercept.h
615
616########################################
617# Packet generator
618########################################
619
620libvnet_la_SOURCES += \
621 vnet/pg/cli.c \
622 vnet/pg/edit.c \
623 vnet/pg/init.c \
624 vnet/pg/input.c \
625 vnet/pg/output.c \
626 vnet/pg/stream.c
627
628nobase_include_HEADERS += \
629 vnet/pg/pg.h \
630 vnet/pg/edit.h
631
632########################################
633# Intel DPDK
634########################################
635if WITH_DPDK
636libvnet_la_SOURCES += \
637 vnet/devices/dpdk/dpdk_priv.h \
638 vnet/devices/dpdk/device.c \
Damjan Marion7f620972016-02-25 16:00:11 +0100639 vnet/devices/dpdk/format.c \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640 vnet/devices/dpdk/init.c \
641 vnet/devices/dpdk/node.c \
642 vnet/devices/dpdk/threads.c \
643 vnet/devices/dpdk/vhost_user.c \
644 vnet/devices/dpdk/cli.c
645
646nobase_include_HEADERS += \
647 vnet/devices/dpdk/dpdk.h \
648 vnet/devices/dpdk/threads.h
649endif
650
651########################################
652# virtio
653########################################
654
655if WITH_DPDK
656libvnet_la_SOURCES += \
657 vnet/devices/virtio/vhost-user.c
658
659nobase_include_HEADERS += \
660 vnet/devices/virtio/vhost-user.h
661endif WITH_DPDK
662
663########################################
664# ssvm ethernet
665########################################
666libvnet_la_SOURCES += \
667 vnet/devices/ssvm/ssvm_eth.c \
668 vnet/devices/ssvm/node.c
669
670nobase_include_HEADERS += \
671 vnet/devices/ssvm/ssvm_eth.h
672
673########################################
Damjan Marion83243a02016-02-29 13:09:30 +0100674# Linux packet interface
675########################################
676
677libvnet_la_SOURCES += \
678 vnet/devices/af_packet/af_packet.c \
679 vnet/devices/af_packet/device.c \
680 vnet/devices/af_packet/node.c \
681 vnet/devices/af_packet/cli.c
682
683nobase_include_HEADERS += \
684 vnet/devices/af_packet/af_packet.h
685
686########################################
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687# Unix kernel related
688########################################
689
690# FIXME: vnet/unix/hgshm.c
691
692libvnet_la_SOURCES += \
693 vnet/unix/gdb_funcs.c \
694 vnet/unix/pcap.c \
695 vnet/unix/tapcli.c \
696 vnet/unix/tuntap.c
697
698nobase_include_HEADERS += \
699 vnet/unix/pcap.h \
700 vnet/unix/tuntap.h \
701 vnet/unix/tapcli.h
702
Todd Foggoa4ea4ecd2016-03-17 14:22:34 -0400703########################################
704# Plugin client library
705########################################
706
707libvnetplugin_la_SOURCES += \
708 vnet/plugin/p1.c
709
710nobase_include_HEADERS += \
711 vnet/plugin/plugin.h
712
713lib_LTLIBRARIES = libvnet.la libvnetplugin.la
Ed Warnickecb9cada2015-12-08 15:45:58 -0700714
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715dpdk_libs =
716
717if WITH_DPDK
718dpdk_libs += -l:libdpdk.a
719endif
720
Ed Warnickecb9cada2015-12-08 15:45:58 -0700721pcap2pg_SOURCES = \
722 vnet/unix/pcap2pg.c \
723 vnet/unix/pcap.h
724
725pcap2pg_LDFLAGS = -static
726pcap2pg_LDADD = libvnet.la -l:libvppinfra.a -lpthread -lm -ldl
727
728noinst_PROGRAMS += pcap2pg
Filip Tehlar254b0362016-04-07 10:04:34 +0200729
730