VirtualBox

source: vbox/trunk/src/VBox/NetworkServices/NAT/Makefile.kmk@ 93115

Last change on this file since 93115 was 93115, checked in by vboxsync, 3 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 KB
Line 
1# $Id: Makefile.kmk 93115 2022-01-01 11:31:46Z vboxsync $
2## @file
3# Sub-makefile for NAT Networking
4#
5
6#
7# Copyright (C) 2006-2022 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17
18SUB_DEPTH = ../../../..
19include $(KBUILD_PATH)/subheader.kmk
20ifdef VBOX_WITH_LWIP_NAT # entire file
21
22 ifndef LWIP_SOURCES
23 include $(PATH_SUB_CURRENT)/../../Devices/Network/lwip-new/Config.kmk
24 endif
25
26#
27# Globals
28#
29VBOX_PATH_NAT_SRC := $(PATH_SUB_CURRENT)
30
31
32#
33# Hardened stub exe for VBoxNetNAT.
34#
35 ifdef VBOX_WITH_HARDENING
36PROGRAMS += VBoxNetNATHardened
37VBoxNetNATHardened_TEMPLATE = VBOXR3HARDENEDEXE
38VBoxNetNATHardened_NAME = VBoxNetNAT
39 ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
40VBoxNetNATHardened_DEFS = SERVICE_NAME="VBoxNetNAT"
41 else
42VBoxNetNATHardened_DEFS = SERVICE_NAME=\"VBoxNetNAT\"
43 endif
44VBoxNetNATHardened_SOURCES = VBoxNetNATHardened.cpp
45VBoxNetNATHardened_LDFLAGS.win = /SUBSYSTEM:windows
46$(call VBOX_SET_VER_INFO_EXE,VBoxNetNATHardened,VirtualBox NAT Engine,$(VBOX_WINDOWS_ICON_FILE)) # Version info / description.
47 endif
48
49
50#
51# VBoxNetNAT.
52#
53 ifdef VBOX_WITH_HARDENING
54DLLS += VBoxNetNAT
55 else
56PROGRAMS += VBoxNetNAT
57 endif
58VBoxNetNAT_TEMPLATE := $(if-expr defined(VBOX_WITH_HARDENING),VBOXMAINDLL,VBOXMAINCLIENTEXE)
59VBoxNetNAT_NAME := VBoxNetNAT
60VBoxNetNAT_DEFS = IPv6
61# VBoxNetNAT_DEFS.linux = WITH_VALGRIND # instrument lwip memp.c
62VBoxNetNAT_DEFS.win = VBOX_COM_OUTOFPROC_MODULE _WIN32_WINNT=0x501 # Windows XP
63# Convince Solaris headers to expose socket stuff we need.
64#
65# Setting _XOPEN_SOURCE to either 500 or 600 would always work, but
66# <sys/feature_tests.h> insists that 600 requires C99 and so it
67# explodes for older g++. It also insists that 500 is NOT to be used
68# with C99.
69#
70# Newer g++ in C++11 mode (formerly known as C++0x) needs 600, so it
71# employs sleight of hand to pretend it's C99 to keep feature test
72# happy.
73#
74# Compile the C code with settings that match g++. This probably
75# should be centralized so that whole codebase uses consistent
76# settings.
77 ifeq ($(KBUILD_TARGET),solaris)
78 ifneq ($(VBOX_GCC_VERSION_CXX),)
79 if $(VBOX_GCC_VERSION_CXX) >= 40600
80# we compile C++ code with -std=c++0x / -std=c++11
81VBoxNetNAT_CFLAGS.solaris += -std=c99
82VBoxNetNAT_DEFS.solaris += _XOPEN_SOURCE=600
83 else
84VBoxNetNAT_DEFS.solaris += _XOPEN_SOURCE=500
85 endif
86 endif
87VBoxNetNAT_DEFS.solaris += __EXTENSIONS__=1
88 endif
89
90# (current dir is for for lwipopts.h)
91VBoxNetNAT_INCS += . $(addprefix ../../Devices/Network/lwip-new/,$(LWIP_INCS))
92
93VBoxNetNAT_SOURCES = \
94 VBoxNetLwipNAT.cpp \
95 ../NetLib/IntNetIf.cpp \
96 ../NetLib/VBoxNetPortForwardString.cpp \
97 $(addprefix ../../Devices/Network/lwip-new/,$(LWIP_SOURCES)) \
98 proxy_pollmgr.c \
99 proxy_rtadvd.c \
100 proxy.c \
101 pxremap.c \
102 pxtcp.c \
103 pxudp.c \
104 pxdns.c \
105 fwtcp.c \
106 fwudp.c \
107 portfwd.c \
108 proxy_dhcp6ds.c \
109 proxy_tftpd.c
110
111 ifeq ($(KBUILD_TARGET),win)
112VBoxNetNAT_SOURCES += pxping_win.c # unprivileged Icmp API
113 else
114VBoxNetNAT_SOURCES += pxping.c # raw sockets
115VBoxNetNAT_CFLAGS.linux += -Wno-address-of-packed-member # Needed for GCC 9.
116 endif
117
118VBoxNetNAT_SOURCES.darwin += rtmon_bsd.c
119VBoxNetNAT_SOURCES.freebsd += rtmon_bsd.c
120VBoxNetNAT_SOURCES.linux += rtmon_linux.c
121VBoxNetNAT_SOURCES.solaris += rtmon_bsd.c
122VBoxNetNAT_SOURCES.win += \
123 rtmon_win.c \
124 RTWinPoll.cpp \
125 RTWinSocketPair.cpp
126
127VBoxNetNAT_LIBS = \
128 $(LIB_RUNTIME)
129VBoxNetNAT_LIBS.solaris += socket nsl
130
131VBoxNetNAT_LDFLAGS.win = /SUBSYSTEM:windows
132
133# ifeq ($(VBOX_WITH_HARDENING),)
134# ifn1of ($(KBUILD_TARGET), darwin win)
135# # helper for debugging unprivileged
136# VBoxNetNAT_DEFS += VBOX_RAWSOCK_DEBUG_HELPER
137# VBoxNetNAT_SOURCES += getrawsock.c
138# endif
139# endif
140
141
142 ifdef VBOX_WITH_HARDENING
143$(call VBOX_SET_VER_INFO_DLL,VBoxNetNAT,VirtualBox NAT Engine (dll),$(VBOX_WINDOWS_ICON_FILE)) # Version info / description.
144 else
145$(call VBOX_SET_VER_INFO_EXE,VBoxNetNAT,VirtualBox NAT Engine,$(VBOX_WINDOWS_ICON_FILE)) # Version info / description.
146 endif
147
148endif # VBOX_WITH_LWIP_NAT
149include $(FILE_KBUILD_SUB_FOOTER)
150
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette