blob: 44ce1077c21b10232c32419a81bd97a71ae230f0 [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 =
19libvnetplugin_la_SOURCES =
20nobase_include_HEADERS =
Dave Barach4e281a42015-12-14 11:13:29 -050021noinst_PROGRAMS =
Ed Warnickecb9cada2015-12-08 15:45:58 -070022
23########################################
24# Generic stuff
25########################################
26libvnet_la_SOURCES += \
27 vnet/config.c \
28 vnet/interface.c \
29 vnet/interface_cli.c \
30 vnet/interface_format.c \
31 vnet/interface_output.c \
32 vnet/misc.c \
33 vnet/replication.c \
34 vnet/rewrite.c
35
36nobase_include_HEADERS += \
37 vnet/api_errno.h \
38 vnet/buffer.h \
39 vnet/config.h \
40 vnet/global_funcs.h \
41 vnet/interface.h \
42 vnet/interface_funcs.h \
43 vnet/l3_types.h \
44 vnet/pipeline.h \
45 vnet/replication.h \
46 vnet/rewrite.h \
47 vnet/vnet.h
48
49########################################
50# Policer infra
51########################################
52
53libvnet_la_SOURCES += \
54 vnet/policer/node_funcs.c \
55 vnet/policer/policer.c \
56 vnet/policer/xlate.c
57
58nobase_include_HEADERS += \
59 vnet/policer/police.h \
60 vnet/policer/xlate.h
61
62
63########################################
64# Layer 2 protocols go here
65########################################
66
67########################################
68# Layer 2 protocol: Ethernet
69########################################
70libvnet_la_SOURCES += \
71 vnet/ethernet/arp.c \
72 vnet/ethernet/cli.c \
73 vnet/ethernet/format.c \
74 vnet/ethernet/init.c \
75 vnet/ethernet/interface.c \
76 vnet/ethernet/node.c \
77 vnet/ethernet/pg.c
78
79nobase_include_HEADERS += \
80 vnet/ethernet/arp_packet.h \
81 vnet/ethernet/error.def \
82 vnet/ethernet/ethernet.h \
83 vnet/ethernet/packet.h \
84 vnet/ethernet/types.def
85
86########################################
87# Layer 2 protocol: Ethernet bridging
88########################################
89libvnet_la_SOURCES += \
90 vnet/l2/feat_bitmap.c \
91 vnet/l2/l2_bd.c \
92 vnet/l2/l2_bvi.c \
93 vnet/l2/l2_classify.c \
94 vnet/l2/l2_efp_filter.c \
95 vnet/l2/l2_fib.c \
96 vnet/l2/l2_flood.c \
97 vnet/l2/l2_fwd.c \
98 vnet/l2/l2_input_acl.c \
99 vnet/l2/l2_input.c \
100 vnet/l2/l2_input_vtr.c \
101 vnet/l2/l2_learn.c \
102 vnet/l2/l2_output_acl.c \
103 vnet/l2/l2_output.c \
104 vnet/l2/l2_patch.c \
105 vnet/l2/l2_vtr.c \
106 vnet/l2/l2_xcrw.c
107
108nobase_include_HEADERS += \
109 vnet/l2/feat_bitmap.h \
110 vnet/l2/l2_input.h \
111 vnet/l2/l2_output.h \
112 vnet/l2/l2_vtr.h \
113 vnet/l2/l2_input_vtr.h \
114 vnet/l2/l2_efp_filter.h \
115 vnet/l2/l2_fwd.h \
116 vnet/l2/l2_bd.h \
117 vnet/l2/l2_bvi.h \
118 vnet/l2/l2_flood.h \
119 vnet/l2/l2_fib.h \
120 vnet/l2/l2_xcrw.h \
121 vnet/l2/l2_classify.h
122
123########################################
124# Layer 2 protocol: SRP
125########################################
126libvnet_la_SOURCES += \
127 vnet/srp/format.c \
128 vnet/srp/interface.c \
129 vnet/srp/node.c \
130 vnet/srp/pg.c
131
132nobase_include_HEADERS += \
133 vnet/srp/packet.h \
134 vnet/srp/srp.h
135
136########################################
137# Layer 2 protocol: PPP
138########################################
139libvnet_la_SOURCES += \
140 vnet/ppp/node.c \
141 vnet/ppp/pg.c \
142 vnet/ppp/ppp.c
143
144nobase_include_HEADERS += \
145 vnet/ppp/error.def \
146 vnet/ppp/ppp.h \
147 vnet/ppp/packet.h
148
149########################################
150# Layer 2 protocol: HDLC
151########################################
152libvnet_la_SOURCES += \
153 vnet/hdlc/node.c \
154 vnet/hdlc/pg.c \
155 vnet/hdlc/hdlc.c
156
157nobase_include_HEADERS += \
158 vnet/hdlc/error.def \
159 vnet/hdlc/hdlc.h \
160 vnet/hdlc/packet.h
161
162########################################
163# Layer 2 protocol: LLC
164########################################
165libvnet_la_SOURCES += \
166 vnet/llc/llc.c \
167 vnet/llc/node.c \
168 vnet/llc/pg.c
169
170nobase_include_HEADERS += \
171 vnet/llc/llc.h
172
173########################################
174# Layer 2 protocol: SNAP
175########################################
176libvnet_la_SOURCES += \
177 vnet/snap/snap.c \
178 vnet/snap/node.c \
179 vnet/snap/pg.c
180
181nobase_include_HEADERS += \
182 vnet/snap/snap.h
183
184########################################
185# Layer 2 / vxlan
186########################################
187libvnet_la_SOURCES += \
188 vnet/vxlan/vxlan.c \
189 vnet/vxlan/encap.c \
190 vnet/vxlan/decap.c
191
192nobase_include_HEADERS += \
193 vnet/vxlan/vxlan.h \
Dave Barachced48e72016-02-08 15:57:35 -0500194 vnet/vxlan/vxlan_packet.h \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 vnet/vxlan/vxlan_error.def
196
197########################################
Dave Barachced48e72016-02-08 15:57:35 -0500198# Layer 2 / CDP
199########################################
200libvnet_la_SOURCES += \
201 vnet/cdp/cdp_input.c \
202 vnet/cdp/cdp_node.c \
203 vnet/cdp/cdp_periodic.c
204
205nobase_include_HEADERS += \
206 vnet/cdp/cdp_protocol.h
207
208########################################
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209# Layer 2/3 "classify"
210########################################
211libvnet_la_SOURCES += \
212 vnet/classify/vnet_classify.c \
213 vnet/classify/ip_classify.c \
214 vnet/classify/input_acl.c \
215 vnet/classify/vnet_classify.h
216
217nobase_include_HEADERS += \
218 vnet/classify/vnet_classify.h \
219 vnet/classify/input_acl.h
220
221########################################
222# Layer 3 protocols go here
223########################################
224
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225########################################
226# Layer 3 protocol: IP v4/v6
227########################################
228libvnet_la_SOURCES += \
229 vnet/ip/format.c \
230 vnet/ip/icmp4.c \
231 vnet/ip/icmp6.c \
232 vnet/ip/ip46_cli.c \
233 vnet/ip/ip4_format.c \
234 vnet/ip/ip4_forward.c \
235 vnet/ip/ip4_hop_by_hop.c \
236 vnet/ip/ip4_input.c \
237 vnet/ip/ip4_mtrie.c \
238 vnet/ip/ip4_pg.c \
239 vnet/ip/ip4_source_check.c \
240 vnet/ip/ip6_format.c \
241 vnet/ip/ip6_forward.c \
242 vnet/ip/ip6_hop_by_hop.c \
243 vnet/ip/ip6_input.c \
244 vnet/ip/ip6_neighbor.c \
245 vnet/ip/ip6_pg.c \
246 vnet/ip/ip_checksum.c \
247 vnet/ip/ip.h \
248 vnet/ip/ip_init.c \
249 vnet/ip/lookup.c \
250 vnet/ip/udp_format.c \
251 vnet/ip/udp_init.c \
252 vnet/ip/udp_local.c \
253 vnet/ip/udp_pg.c \
254 vnet/ip/ip_input_acl.c \
255 vnet/ip/ip_frag.c
256
257nobase_include_HEADERS += \
258 vnet/ip/format.h \
259 vnet/ip/icmp46_packet.h \
Ole Troan92eade12016-01-13 20:17:08 +0100260 vnet/ip/icmp4.h \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261 vnet/ip/icmp6.h \
262 vnet/ip/igmp_packet.h \
263 vnet/ip/ip.h \
264 vnet/ip/ip4.h \
265 vnet/ip/ip4_mtrie.h \
266 vnet/ip/ip4_error.h \
267 vnet/ip/ip4_packet.h \
268 vnet/ip/ip6.h \
269 vnet/ip/ip6_error.h \
270 vnet/ip/ip6_hop_by_hop.h \
271 vnet/ip/ip6_hop_by_hop_packet.h \
272 vnet/ip/ip6_packet.h \
273 vnet/ip/lookup.h \
274 vnet/ip/ip_packet.h \
275 vnet/ip/ports.def \
276 vnet/ip/protocols.def \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 vnet/ip/tcp_packet.h \
278 vnet/ip/udp.h \
279 vnet/ip/udp_error.def \
280 vnet/ip/udp_packet.h
281
282########################################
283# Layer 3 protocol: IPSec
284########################################
Dave Barach61efa142016-01-22 08:23:09 -0500285if WITH_IPSEC
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286libvnet_la_SOURCES += \
287 vnet/ipsec/ipsec.c \
288 vnet/ipsec/ipsec_cli.c \
289 vnet/ipsec/ipsec_format.c \
290 vnet/ipsec/ipsec_output.c \
291 vnet/ipsec/ipsec_input.c \
292 vnet/ipsec/ipsec_if.c \
293 vnet/ipsec/ipsec_if_in.c \
294 vnet/ipsec/ipsec_if_out.c \
295 vnet/ipsec/esp_encrypt.c \
296 vnet/ipsec/esp_decrypt.c \
297 vnet/ipsec/ikev2.c \
298 vnet/ipsec/ikev2_crypto.c \
299 vnet/ipsec/ikev2_cli.c \
300 vnet/ipsec/ikev2_payload.c \
301 vnet/ipsec/ikev2_format.c
Dave Barach61efa142016-01-22 08:23:09 -0500302endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303
304nobase_include_HEADERS += \
305 vnet/ipsec/ipsec.h \
306 vnet/ipsec/esp.h \
307 vnet/ipsec/ikev2.h \
308 vnet/ipsec/ikev2_priv.h
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
310########################################
311# Layer 3 protocol: osi
312########################################
313libvnet_la_SOURCES += \
314 vnet/osi/node.c \
315 vnet/osi/osi.c \
316 vnet/osi/pg.c
317
318nobase_include_HEADERS += \
319 vnet/osi/osi.h
320
321########################################
322# Layer 3 protocol: MAP
323########################################
324libvnet_la_SOURCES += \
325 vnet/map/map.c \
326 vnet/map/ip4_map.c \
327 vnet/map/ip6_map.c \
328 vnet/map/sixrd.c \
329 vnet/map/ip4_sixrd.c \
330 vnet/map/ip6_sixrd.c \
331 vnet/map/ip4_map_t.c \
332 vnet/map/ip6_map_t.c
333
334nobase_include_HEADERS += \
335 vnet/map/map.h \
336 vnet/map/sixrd.h
337
338########################################
339# Tunnel protocol: gre
340########################################
341libvnet_la_SOURCES += \
342 vnet/gre/gre.c \
343 vnet/gre/node.c \
344 vnet/gre/interface.c \
345 vnet/gre/pg.c
346
347nobase_include_HEADERS += \
348 vnet/gre/gre.h \
349 vnet/gre/packet.h \
350 vnet/gre/error.def
351
352########################################
353# Tunnel protocol: l2tpv3
354########################################
355libvnet_la_SOURCES += \
356 vnet/l2tp/l2tp.c \
357 vnet/l2tp/encap.c \
358 vnet/l2tp/decap.c \
359 vnet/l2tp/pg.c
360
361nobase_include_HEADERS += \
362 vnet/l2tp/l2tp.h \
363 vnet/l2tp/packet.h
364
365########################################
366# Tunnel protocol: gre+mpls
367########################################
368libvnet_la_SOURCES += \
369 vnet/mpls-gre/mpls.c \
370 vnet/mpls-gre/node.c \
371 vnet/mpls-gre/interface.c \
372 vnet/mpls-gre/policy_encap.c \
373 vnet/mpls-gre/pg.c
374
375nobase_include_HEADERS += \
376 vnet/mpls-gre/mpls.h \
377 vnet/mpls-gre/packet.h \
378 vnet/mpls-gre/error.def
379
380
381########################################
382# Tunnel protocol: nsh-gre
383########################################
384
385libvnet_la_SOURCES += \
386 vnet/nsh-gre/nsh_gre.c \
387 vnet/nsh-gre/encap.c \
388 vnet/nsh-gre/decap.c
389
390nobase_include_HEADERS += \
391 vnet/nsh-gre/nsh_gre.h \
392 vnet/nsh-gre/nsh_gre_packet.h \
393 vnet/nsh-gre/nsh_gre_error.def
394
395########################################
396# Tunnel protocol: nsh-vxlan-gpe
397########################################
398
399libvnet_la_SOURCES += \
400 vnet/nsh-vxlan-gpe/nsh_vxlan_gpe.c \
401 vnet/nsh-vxlan-gpe/encap.c \
402 vnet/nsh-vxlan-gpe/decap.c
403
404nobase_include_HEADERS += \
405 vnet/nsh-vxlan-gpe/nsh_vxlan_gpe.h \
406 vnet/nsh-vxlan-gpe/vxlan_gpe_packet.h \
407 vnet/nsh-vxlan-gpe/nsh_vxlan_gpe_error.def
408
409########################################
410# Tunnel protocol: lisp-gpe
411########################################
412
413libvnet_la_SOURCES += \
414 vnet/lisp-gpe/lisp_gpe.c \
415 vnet/lisp-gpe/encap.c \
416 vnet/lisp-gpe/decap.c
417
418nobase_include_HEADERS += \
419 vnet/lisp-gpe/lisp_gpe.h \
420 vnet/lisp-gpe/lisp_gpe_packet.h \
421 vnet/lisp-gpe/lisp_gpe_error.def
422
423########################################
424# DHCP client
425########################################
426libvnet_la_SOURCES += \
427 vnet/dhcp/client.c \
428 vnet/dhcp/client.h
429
430nobase_include_HEADERS += \
431 vnet/dhcp/client.h
432
433########################################
434# DHCP proxy
435########################################
436libvnet_la_SOURCES += \
437 vnet/dhcp/proxy_node.c \
438 vnet/dhcp/proxy.h
439
440nobase_include_HEADERS += \
441 vnet/dhcp/packet.h \
442 vnet/dhcp/proxy.h \
443 vnet/dhcp/proxy_error.def
444
445########################################
446# ipv6 segment routing
447########################################
Dave Barach61efa142016-01-22 08:23:09 -0500448
449if WITH_IPV6SR
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450libvnet_la_SOURCES += \
451 vnet/sr/sr.c
Dave Barach61efa142016-01-22 08:23:09 -0500452endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453
454nobase_include_HEADERS += \
455 vnet/sr/sr_packet.h \
456 vnet/sr/sr_error.def \
457 vnet/sr/sr.h
458
459########################################
460# CGN
461#########################################
Dave Barach61efa142016-01-22 08:23:09 -0500462
463if WITH_VCGN
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464libvnet_la_SOURCES += \
465 vnet/vcgn/cnat_bulk_port.c \
466 vnet/vcgn/cnat_config.c \
467 vnet/vcgn/cnat_db_scanner.c \
468 vnet/vcgn/cnat_db_v2.c \
469 vnet/vcgn/cnat_debug_msg_handler.c \
470 vnet/vcgn/cnat_cli_handler.c \
471 vnet/vcgn/cnat_global.c \
472 vnet/vcgn/cnat_ipv4_udp_inside_input.c \
473 vnet/vcgn/cnat_ipv4_udp_inside_input_exceptions.c \
474 vnet/vcgn/cnat_ipv4_udp_outside_input.c \
475 vnet/vcgn/cnat_ipv4_tcp_inside_input.c \
476 vnet/vcgn/cnat_ipv4_tcp_inside_input_exceptions.c \
477 vnet/vcgn/cnat_ipv4_tcp_outside_input.c \
478 vnet/vcgn/cnat_ipv4_icmp_query_inside_input.c \
479 vnet/vcgn/cnat_ipv4_icmp_query_inside_input_exception.c \
480 vnet/vcgn/cnat_ipv4_icmp_query_outside_input.c \
481 vnet/vcgn/cnat_ipv4_icmp_error_inside_input.c \
482 vnet/vcgn/cnat_ipv4_icmp_error_outside_input.c \
483 vnet/vcgn/cnat_logging.c \
484 vnet/vcgn/cnat_ports.c \
485 vnet/vcgn/cnat_util.c \
486 vnet/vcgn/cnat_show.c \
487 vnet/vcgn/cnat_syslog.c \
488 vnet/vcgn/cnat_v4_functions.c \
489 vnet/vcgn/index_list.c \
490 vnet/vcgn/spp_platform_trace_log.c \
491 vnet/vcgn/vcgn_classify.c
Dave Barach61efa142016-01-22 08:23:09 -0500492endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493
494########################################
495# DHCPv6 proxy
496########################################
497libvnet_la_SOURCES += \
498 vnet/dhcpv6/proxy_node.c
499
500nobase_include_HEADERS += \
501 vnet/dhcpv6/packet.h \
502 vnet/dhcpv6/proxy.h \
503 vnet/dhcpv6/proxy_error.def
504
505########################################
506# IPFIX / netflow v10
507########################################
508libvnet_la_SOURCES += \
509 vnet/flow/flow_report.c
510
511nobase_include_HEADERS += \
512 vnet/flow/flow_report.h \
513 vnet/flow/ipfix_info_elements.h \
514 vnet/flow/ipfix_packet.h
515
516########################################
517# IPFIX sample code
518########################################
519
520libvnet_la_SOURCES += \
521 vnet/flow/flow_report_sample.c
522
523nobase_include_HEADERS += \
524 vnet/flow/flow_report_sample.h
525
526########################################
527# lawful intercept
528########################################
529
530libvnet_la_SOURCES += \
531 vnet/lawful-intercept/lawful_intercept.c \
532 vnet/lawful-intercept/node.c
533
534nobase_include_HEADERS += \
535 vnet/dpdk_replication.h \
536 vnet/lawful-intercept/lawful_intercept.h
537
538########################################
539# Packet generator
540########################################
541
542libvnet_la_SOURCES += \
543 vnet/pg/cli.c \
544 vnet/pg/edit.c \
545 vnet/pg/init.c \
546 vnet/pg/input.c \
547 vnet/pg/output.c \
548 vnet/pg/stream.c
549
550nobase_include_HEADERS += \
551 vnet/pg/pg.h \
552 vnet/pg/edit.h
553
554########################################
555# Intel DPDK
556########################################
557if WITH_DPDK
558libvnet_la_SOURCES += \
559 vnet/devices/dpdk/dpdk_priv.h \
560 vnet/devices/dpdk/device.c \
561 vnet/devices/dpdk/init.c \
562 vnet/devices/dpdk/node.c \
563 vnet/devices/dpdk/threads.c \
564 vnet/devices/dpdk/vhost_user.c \
565 vnet/devices/dpdk/cli.c
566
567nobase_include_HEADERS += \
568 vnet/devices/dpdk/dpdk.h \
569 vnet/devices/dpdk/threads.h
570endif
571
572########################################
573# virtio
574########################################
575
576if WITH_DPDK
577libvnet_la_SOURCES += \
578 vnet/devices/virtio/vhost-user.c
579
580nobase_include_HEADERS += \
581 vnet/devices/virtio/vhost-user.h
582endif WITH_DPDK
583
584########################################
585# ssvm ethernet
586########################################
587libvnet_la_SOURCES += \
588 vnet/devices/ssvm/ssvm_eth.c \
589 vnet/devices/ssvm/node.c
590
591nobase_include_HEADERS += \
592 vnet/devices/ssvm/ssvm_eth.h
593
594########################################
595# Unix kernel related
596########################################
597
598# FIXME: vnet/unix/hgshm.c
599
600libvnet_la_SOURCES += \
601 vnet/unix/gdb_funcs.c \
602 vnet/unix/pcap.c \
603 vnet/unix/tapcli.c \
604 vnet/unix/tuntap.c
605
606nobase_include_HEADERS += \
607 vnet/unix/pcap.h \
608 vnet/unix/tuntap.h \
609 vnet/unix/tapcli.h
610
611########################################
612# Plugin client library
613########################################
614
615libvnetplugin_la_SOURCES += \
616 vnet/plugin/p1.c
617
618nobase_include_HEADERS += \
619 vnet/plugin/plugin.h
620
621lib_LTLIBRARIES = libvnet.la libvnetplugin.la
622
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623dpdk_libs =
624
625if WITH_DPDK
626dpdk_libs += -l:libdpdk.a
627endif
628
Ed Warnickecb9cada2015-12-08 15:45:58 -0700629pcap2pg_SOURCES = \
630 vnet/unix/pcap2pg.c \
631 vnet/unix/pcap.h
632
633pcap2pg_LDFLAGS = -static
634pcap2pg_LDADD = libvnet.la -l:libvppinfra.a -lpthread -lm -ldl
635
636noinst_PROGRAMS += pcap2pg