mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
329da951b7
- Add a C callback interface (context_wrapper.h) between lokinet and the objective-C code so that: - we can use objective-C (rather than objective-C++), which seems more likely to be supported by Apple into the future; - we minimize the amount of code that needs to be aware of the Apple APIs. - this replaces apple logger objective c++ implementation with a plain c++ implementation that takes a very simple C callback (provided from the obj-c code) to actually make the call to NSLog. - Add various documentation to the code of what is going on. - Send all DNS traffic to the primary IP on the tun interface. The match prefixes simply don't work as advertised, and have weird shit (like even if you get it working for some domains, "instagram.com" still doesn't because of god-knows-what Apple internal politics). - Drop the dns proxy code as we don't need it anymore. - Don't use 9.9.9.9 for default DNS. (We might consider the unfiltered 9.9.9.10 as an alternative default, but if we do it should be a global lokinet change rather than a Mac-specific change). - Parse a lokinet.ini in the data directory, if it exists. (Since we are sandboxed, it is an app-specific "home" directory so is probably buried god knows where, but at least the GUI ought to be able to get it to let users add things to it). - This commit also adds a swift version of the PacketTunnelProvider glue, which ought to work in theory, but the *tooling* for cmake is so underdeveloped that I couldn't find any way to actually get the damn thing working. So I'm committing it here anyway (and will revert it away in the next commit) in case we someday want to switch to it. -
131 lines
5.2 KiB
CMake
131 lines
5.2 KiB
CMake
|
|
add_executable(lokinet-vpn lokinet-vpn.cpp)
|
|
if(APPLE)
|
|
set(LOKINET_SWIFT_SOURCES lokinet.swift)
|
|
add_executable(lokinet ${LOKINET_SWIFT_SOURCES})
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Lokinet.modulemap.in ${CMAKE_CURRENT_BINARY_DIR}/swift/LokinetExtension/module.modulemap ESCAPE_QUOTES @ONLY)
|
|
target_include_directories(lokinet PUBLIC ${CMAKE_CURRENT_BINARY_DIR}/swift)
|
|
else()
|
|
add_executable(lokinet lokinet.cpp)
|
|
add_executable(lokinet-bootstrap lokinet-bootstrap.cpp)
|
|
enable_lto(lokinet lokinet-vpn lokinet-bootstrap)
|
|
endif()
|
|
|
|
|
|
if(TRACY_ROOT)
|
|
target_sources(lokinet PRIVATE ${TRACY_ROOT}/TracyClient.cpp)
|
|
endif()
|
|
|
|
set(should_install ON)
|
|
set(SETCAP)
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
option(WITH_SETCAP "use setcap when installing" ON)
|
|
if(WITH_SETCAP)
|
|
find_program(SETCAP NAMES setcap HINTS /sbin /usr/sbin)
|
|
if(SETCAP)
|
|
message(STATUS "Found setcap binary: ${SETCAP}")
|
|
else()
|
|
message(WARNING "cannot find setcap binary you will not be able use the install targets unless you use -DWITH_SETCAP=OFF")
|
|
set(should_install OFF)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
if(NOT APPLE)
|
|
target_link_libraries(lokinet-bootstrap PUBLIC cpr::cpr)
|
|
if(NOT WIN32)
|
|
find_package(OpenSSL REQUIRED)
|
|
# because debian sid's curl doesn't link against openssl for some godawful cursed reason
|
|
target_link_libraries(lokinet-bootstrap PUBLIC OpenSSL::SSL OpenSSL::Crypto)
|
|
endif()
|
|
endif()
|
|
|
|
set(exetargets lokinet lokinet-vpn)
|
|
if(NOT APPLE)
|
|
list(APPEND exetargets lokinet-bootstrap)
|
|
endif()
|
|
|
|
foreach(exe ${exetargets})
|
|
if(WIN32 AND NOT MSVC_VERSION)
|
|
target_sources(${exe} PRIVATE ../llarp/win32/version.rc)
|
|
target_link_libraries(${exe} PRIVATE -static-libstdc++ -static-libgcc --static -Wl,--pic-executable,-e,mainCRTStartup,--subsystem,console:5.00)
|
|
target_link_libraries(${exe} PRIVATE ws2_32 iphlpapi)
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
|
target_link_directories(${exe} PRIVATE /usr/local/lib)
|
|
endif()
|
|
target_link_libraries(${exe} PUBLIC liblokinet)
|
|
if(WITH_JEMALLOC)
|
|
target_link_libraries(${exe} PUBLIC jemalloc)
|
|
endif()
|
|
target_include_directories(${exe} PUBLIC "${PROJECT_SOURCE_DIR}")
|
|
target_compile_definitions(${exe} PRIVATE -DVERSIONTAG=${GIT_VERSION_REAL})
|
|
add_log_tag(${exe})
|
|
if(should_install)
|
|
if(APPLE)
|
|
install(TARGETS ${exe} BUNDLE DESTINATION "${PROJECT_BINARY_DIR}" COMPONENT lokinet)
|
|
else()
|
|
install(TARGETS ${exe} RUNTIME DESTINATION bin COMPONENT lokinet)
|
|
endif()
|
|
endif()
|
|
endforeach()
|
|
|
|
if(APPLE)
|
|
|
|
set(CODESIGN_APP "" CACHE STRING "codesign the macos app using this key identity")
|
|
set(CODESIGN_APPEX "${CODESIGN_APP}" CACHE STRING "codesign the internal extension using this key identity; defaults to CODESIGN_APP if empty")
|
|
|
|
set(mac_icon ${CMAKE_CURRENT_BINARY_DIR}/lokinet.icns)
|
|
add_custom_command(OUTPUT ${mac_icon}
|
|
COMMAND ${PROJECT_SOURCE_DIR}/contrib/macos/mk-icns.sh ${PROJECT_SOURCE_DIR}/contrib/lokinet.svg ${mac_icon}
|
|
DEPENDS ${PROJECT_SOURCE_DIR}/contrib/lokinet.svg ${PROJECT_SOURCE_DIR}/contrib/macos/mk-icns.sh)
|
|
add_custom_target(icons DEPENDS ${mac_icon})
|
|
add_dependencies(lokinet icons lokinet-extension)
|
|
file(DOWNLOAD "https://seed.lokinet.org/lokinet.signed" ${CMAKE_CURRENT_BINARY_DIR}/bootstrap.signed)
|
|
add_custom_command(TARGET lokinet
|
|
POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_BINARY_DIR}/bootstrap.signed
|
|
$<TARGET_BUNDLE_DIR:lokinet-extension>/Contents/Resources/bootstrap.signed
|
|
COMMAND mkdir -p $<TARGET_BUNDLE_DIR:lokinet>/Contents/PlugIns
|
|
COMMAND cp -a $<TARGET_BUNDLE_DIR:lokinet-extension> $<TARGET_BUNDLE_DIR:lokinet>/Contents/PlugIns/
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${PROJECT_SOURCE_DIR}/contrib/macos/lokinet.provisionprofile
|
|
$<TARGET_BUNDLE_DIR:lokinet>/Contents/embedded.provisionprofile
|
|
)
|
|
|
|
set_target_properties(lokinet
|
|
PROPERTIES
|
|
MACOSX_BUNDLE TRUE
|
|
MACOSX_BUNDLE_INFO_STRING "Lokinet IP Packet Onion Router"
|
|
MACOSX_BUNDLE_BUNDLE_NAME "Lokinet"
|
|
MACOSX_BUNDLE_BUNDLE_VERSION "${LOKINET_VERSION}"
|
|
MACOSX_BUNDLE_LONG_VERSION_STRING "${lokinet_VERSION}"
|
|
MACOSX_BUNDLE_SHORT_VERSION_STRING "${lokinet_VERSION_MAJOR}.${lokinet_VERSION_MINOR}"
|
|
MACOSX_BUNDLE_GUI_IDENTIFIER "com.loki-project.lokinet"
|
|
MACOSX_BUNDLE_INFO_PLIST "${PROJECT_SOURCE_DIR}/contrib/macos/Info.plist.in"
|
|
MACOSX_BUNDLE_ICON_FILE "${mac_icon}"
|
|
MACOSX_BUNDLE_COPYRIGHT "© 2021, The Oxen Project")
|
|
if (CODESIGN_APP AND CODESIGN_APPEX)
|
|
message(STATUS "codesigning with ${CODESIGN_APP} (app) ${CODESIGN_APPEX} (appex)")
|
|
set(SIGN_TARGET "${CMAKE_CURRENT_BINARY_DIR}/lokinet.app")
|
|
configure_file(
|
|
"${PROJECT_SOURCE_DIR}/contrib/macos/sign.sh.in"
|
|
"${PROJECT_BINARY_DIR}/sign.sh"
|
|
@ONLY)
|
|
add_custom_target(
|
|
sign
|
|
DEPENDS "${PROJECT_BINARY_DIR}/sign.sh" lokinet lokinet-extension
|
|
COMMAND "${PROJECT_BINARY_DIR}/sign.sh"
|
|
)
|
|
else()
|
|
message(WARNING "Not codesigning: CODESIGN_APP (=${CODESIGN_APP}) and/or CODESIGN_APPEX (=${CODESIGN_APPEX}) are not set")
|
|
add_custom_target(
|
|
sign
|
|
DEPENDS lokinet lokinet-extension
|
|
COMMAND "true")
|
|
endif()
|
|
endif()
|
|
|
|
if(SETCAP)
|
|
install(CODE "execute_process(COMMAND ${SETCAP} cap_net_admin,cap_net_bind_service=+eip ${CMAKE_INSTALL_PREFIX}/bin/lokinet)")
|
|
endif()
|