tunnelkit/README.md

255 lines
10 KiB
Markdown
Raw Permalink Normal View History

![iOS 12+](https://img.shields.io/badge/ios-12+-green.svg)
2021-01-03 11:41:50 +00:00
![macOS 10.15+](https://img.shields.io/badge/macos-10.15+-green.svg)
2021-10-06 16:19:28 +00:00
[![OpenSSL 1.1.1l](https://img.shields.io/badge/openssl-1.1.1l-d69c68.svg)](https://www.openssl.org/news/openssl-1.1.1-notes.html)
2018-10-19 00:47:06 +00:00
[![License GPLv3](https://img.shields.io/badge/license-GPLv3-lightgray.svg)](LICENSE)
2021-02-12 00:57:20 +00:00
# TunnelKit
This library provides a generic framework for VPN development and a simplified Swift/Obj-C implementation of the OpenVPN® protocol for the Apple platforms. The crypto layer is built on top of [OpenSSL 1.1.1][dep-openssl], which in turn enables support for a certain range of encryption and digest algorithms.
2018-08-23 08:19:25 +00:00
## Getting started
2018-11-10 09:24:05 +00:00
The client is known to work with [OpenVPN®][openvpn] 2.3+ servers.
2018-08-23 08:19:25 +00:00
- [x] Handshake and tunneling over UDP or TCP
2018-08-24 09:07:12 +00:00
- [x] Ciphers
- AES-CBC (128/192/256 bit)
- AES-GCM (128/192/256 bit, 2.4)
2018-08-24 09:07:12 +00:00
- [x] HMAC digests
2018-08-23 08:19:25 +00:00
- SHA-1
- SHA-2 (224/256/384/512 bit)
2018-09-02 00:16:34 +00:00
- [x] NCP (Negotiable Crypto Parameters, 2.4)
- Server-side
2018-08-24 09:07:12 +00:00
- [x] TLS handshake
2018-10-23 21:49:57 +00:00
- Server validation (CA, EKU)
2018-08-24 09:07:12 +00:00
- Client certificate
2018-09-11 15:45:22 +00:00
- [x] TLS wrapping
- Authentication (`--tls-auth`)
2018-09-20 22:11:01 +00:00
- Encryption (`--tls-crypt`)
- [x] Compression framing
2019-03-20 15:39:02 +00:00
- Via `--comp-lzo` (deprecated in 2.4)
- Via `--compress`
- [x] Compression algorithms
2019-03-20 15:39:02 +00:00
- LZO (via `--comp-lzo` or `--compress lzo`)
2018-11-10 09:24:05 +00:00
- [x] Key renegotiation
2018-08-24 09:07:12 +00:00
- [x] Replay protection (hardcoded window)
2018-08-23 08:19:25 +00:00
The library therefore supports compression framing, just not newer compression. Remember to match server-side compression and framing, otherwise the client will shut down with an error. E.g. if server has `comp-lzo no`, client must use `compressionFraming = .compLZO`.
2018-08-23 14:55:35 +00:00
2018-11-10 09:24:05 +00:00
### Support for .ovpn configuration
2021-07-23 09:14:20 +00:00
TunnelKit can parse .ovpn configuration files. Below are a few details worth mentioning.
2018-11-10 09:24:05 +00:00
2021-07-23 09:14:20 +00:00
#### Non-standard
- Single-byte XOR masking
- Via `--scramble xormask <character>`
- XOR all incoming and outgoing bytes by the ASCII value of the character argument
- See [Tunnelblick website][about-tunnelblick-xor] for more details
#### Unsupported
2018-11-10 09:24:05 +00:00
- UDP fragmentation, i.e. `--fragment`
2019-03-20 15:39:02 +00:00
- Compression via `--compress` other than empty or `lzo`
2019-05-02 08:49:30 +00:00
- Connecting via proxy
2018-11-10 09:24:05 +00:00
- External file references (inline `<block>` only)
- Static key encryption (non-TLS)
- `<connection>` blocks
- `vpn_gateway` and `net_gateway` literals in routes
2018-11-10 09:24:05 +00:00
2021-07-23 09:14:20 +00:00
#### Ignored
2018-11-10 09:24:05 +00:00
2021-01-03 11:41:50 +00:00
- Some MTU overrides
- `--link-mtu` and variants
2018-11-10 09:24:05 +00:00
- `--mssfix`
- Multiple `--remote` with different `host` values (first wins)
2019-11-11 18:28:13 +00:00
- Static client-side routes
2018-11-10 09:24:05 +00:00
Many other flags are ignored too but it's normally not an issue.
2018-08-23 08:19:25 +00:00
## Installation
### Requirements
- iOS 12.0+ / macOS 10.15+
- Xcode 11+ (Swift 5)
2018-08-23 08:19:25 +00:00
- Git (preinstalled with Xcode Command Line Tools)
- Ruby (preinstalled with macOS)
- [CocoaPods 1.6.0][dep-cocoapods]
2018-08-23 08:19:25 +00:00
- [jazzy][dep-jazzy] (optional, for documentation)
- [Disable Bitcode][issue-51]
2018-08-23 08:19:25 +00:00
It's highly recommended to use the Git and Ruby packages provided by [Homebrew][dep-brew].
### CocoaPods
To use with CocoaPods just add this to your Podfile:
```ruby
2018-08-23 10:16:36 +00:00
pod 'TunnelKit'
2018-08-23 08:19:25 +00:00
```
### Testing
Download the library codebase locally:
$ git clone https://github.com/passepartoutvpn/tunnelkit.git
2018-08-23 08:19:25 +00:00
Assuming you have a [working CocoaPods environment][dep-cocoapods], setting up the library workspace only requires installing the pod dependencies:
$ pod install
After that, open `TunnelKit.xcworkspace` in Xcode and run the unit tests found in the `TunnelKitTests` folder. A simple CMD+U while on `TunnelKit-(iOS|macOS)` should do that as well.
2018-08-23 08:19:25 +00:00
#### Demo
There are demo targets containing a simple app for testing the tunnel, called `BasicTunnel`.
2018-08-23 08:19:25 +00:00
For the VPN to work properly, the `BasicTunnel` demo requires:
- _App Groups_ and _Keychain Sharing_ capabilities
- App IDs with _Packet Tunnel_ entitlements
both in the main app and the tunnel extension target.
In order to test connectivity in your own environment, modify the file `TunnelKit/Demo/Configuration.swift` to match your VPN server parameters.
2018-08-23 08:19:25 +00:00
Example:
2018-10-06 14:50:04 +00:00
private let ca = CryptoContainer(pem: """
-----BEGIN CERTIFICATE-----
MIIFJDCC...
-----END CERTIFICATE-----
""")
2018-08-23 08:19:25 +00:00
2019-04-13 09:04:46 +00:00
Make sure to also update the following constants in the same files, according to your developer account and your target bundle identifiers:
public static let appGroup
public static let tunnelIdentifier
Remember that the App Group on macOS requires a team ID prefix.
2018-08-23 08:19:25 +00:00
## Documentation
The library is split into several modules, in order to decouple the low-level protocol implementation from the platform-specific bridging, namely the [NetworkExtension][ne-home] VPN framework.
2018-08-23 08:19:25 +00:00
Full documentation of the public interface is available and can be generated with [jazzy][dep-jazzy]. After installing the jazzy Ruby gem with:
$ gem install jazzy
enter the root directory of the repository and run:
$ jazzy
The generated output is stored into the `docs` directory in HTML format.
### Core
Contains the building blocks of a VPN protocol. Eventually, a consumer would implement the `Session` interface, expected to start and control the VPN session. A session is expected to work with generic network interfaces:
2018-08-23 08:19:25 +00:00
- `LinkInterface` (e.g. a socket)
- `TunnelInterface` (e.g. an `utun` interface)
There are no physical network implementations (e.g. UDP or TCP) in this module.
2018-08-23 08:19:25 +00:00
### AppExtension
Provides a layer on top of the NetworkExtension framework. Most importantly, bridges native [NWUDPSession][ne-udp] and [NWTCPConnection][ne-tcp] to an abstract `GenericSocket` interface, thus making a multi-protocol VPN dramatically easier to manage.
2020-06-13 13:44:33 +00:00
### Manager
This subspec includes convenient classes to control the VPN tunnel from your app without the NetworkExtension headaches. Have a look at `VPNProvider` implementations:
- `MockVPNProvider` (default, useful to test on simulator)
- `NetworkExtensionVPNProvider` (for IPSec/IKEv2)
### Protocols/Native
Here you find `NativeProvider`, a generic way to manage a VPN profile based on the native IPSec/IKEv2 protocols. Just wrap a `NEVPNProtocolIPSec` or `NEVPNProtocolIKEv2` object in a `NetworkExtensionVPNConfiguration` and use it to install or connect to the VPN.
2020-06-13 13:44:33 +00:00
### Protocols/OpenVPN
Here are the low-level entities on top of which an OpenVPN connection is established. Code is mixed Swift and Obj-C, most of it is not exposed to consumers. The module depends on OpenSSL.
The entry point is the `OpenVPNSession` class. The networking layer is fully abstract and delegated externally with the use of opaque `IOInterface` (`LinkInterface` and `TunnelInterface`) and `OpenVPNSessionDelegate` protocols.
Another goal of this module is packaging up a black box implementation of a [NEPacketTunnelProvider][ne-ptp], which is the essential part of a Packet Tunnel Provider app extension. You will find the main implementation in the `OpenVPNTunnelProvider` class. On the client side, you manage the VPN profile with the `OpenVPNProvider` class, which is a specific implementation of `NetworkExtensionVPNProvider`.
2018-08-23 08:19:25 +00:00
A debug log snapshot is optionally maintained and shared by the tunnel provider to host apps via the App Group container.
2018-08-23 08:19:25 +00:00
### Extra/LZO
2019-03-19 13:34:49 +00:00
Due to the restrictive license (GPLv2), LZO support is provided as an optional subspec.
2018-08-23 08:19:25 +00:00
## License
2020-05-11 07:52:54 +00:00
Copyright (c) 2020 Davide De Rosa. All rights reserved.
2018-09-29 08:19:15 +00:00
### Part I
2018-10-08 12:25:07 +00:00
This project is licensed under the [GPLv3][license-content].
2018-09-29 08:19:15 +00:00
### Part II
As seen in [libsignal-protocol-c][license-signal]:
> Additional Permissions For Submission to Apple App Store: Provided that you are otherwise in compliance with the GPLv3 for each covered work you convey (including without limitation making the Corresponding Source available in compliance with Section 6 of the GPLv3), the Author also grants you the additional permission to convey through the Apple App Store non-source executable versions of the Program as incorporated into each applicable covered work as Executable Versions only under the Mozilla Public License version 2.0 (https://www.mozilla.org/en-US/MPL/2.0/).
2018-08-23 08:19:25 +00:00
### Part III
Part I and II do not apply to the LZO library, which remains licensed under the terms of the GPLv2+.
2018-10-08 12:25:07 +00:00
### Contributing
By contributing to this project you are agreeing to the terms stated in the [Contributor License Agreement (CLA)][contrib-cla].
For more details please see [CONTRIBUTING][contrib-readme].
## Credits
2018-08-23 08:19:25 +00:00
2020-05-11 07:52:54 +00:00
- [lzo][dep-lzo-website] - Copyright (c) 1996-2017 Markus F.X.J. Oberhumer
- [PIATunnel][dep-piatunnel-repo] - Copyright (c) 2018-Present Private Internet Access
- [SURFnet][ppl-surfnet]
2020-05-11 07:52:54 +00:00
- [SwiftyBeaver][dep-swiftybeaver-repo] - Copyright (c) 2015 Sebastian Kreutzberger
- [XMB5][ppl-xmb5] for the [XOR patch][ppl-xmb5-xor] - Copyright (c) 2020 Sam Foxman
2018-08-23 08:19:25 +00:00
This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. ([https://www.openssl.org/][dep-openssl])
2020-05-11 07:52:54 +00:00
Copyright (c) 2002-2018 OpenVPN Inc. - OpenVPN is a registered trademark of OpenVPN Inc.
2018-08-23 08:19:25 +00:00
2018-10-08 12:25:07 +00:00
## Contacts
Twitter: [@keeshux][about-twitter]
2019-05-14 09:06:50 +00:00
Website: [passepartoutvpn.app][about-website]
2018-10-08 12:25:07 +00:00
2018-08-23 08:19:25 +00:00
[openvpn]: https://openvpn.net/index.php/open-source/overview.html
2018-10-08 12:25:07 +00:00
2018-08-23 08:19:25 +00:00
[dep-cocoapods]: https://guides.cocoapods.org/using/getting-started.html
[dep-jazzy]: https://github.com/realm/jazzy
[dep-brew]: https://brew.sh/
[dep-openssl]: https://www.openssl.org/
[issue-51]: https://github.com/passepartoutvpn/tunnelkit/issues/51
2018-08-23 08:19:25 +00:00
[ne-home]: https://developer.apple.com/documentation/networkextension
[ne-ptp]: https://developer.apple.com/documentation/networkextension/nepackettunnelprovider
[ne-udp]: https://developer.apple.com/documentation/networkextension/nwudpsession
[ne-tcp]: https://developer.apple.com/documentation/networkextension/nwtcpconnection
2018-08-23 10:16:36 +00:00
2018-10-08 12:25:07 +00:00
[license-content]: LICENSE
2018-09-29 08:19:15 +00:00
[license-signal]: https://github.com/signalapp/libsignal-protocol-c#license
2018-08-23 10:16:36 +00:00
[license-mit]: https://choosealicense.com/licenses/mit/
2018-10-08 12:25:07 +00:00
[contrib-cla]: CLA.rst
[contrib-readme]: CONTRIBUTING.md
2018-08-27 17:54:29 +00:00
2018-08-23 10:16:36 +00:00
[dep-piatunnel-repo]: https://github.com/pia-foss/tunnel-apple
[dep-swiftybeaver-repo]: https://github.com/SwiftyBeaver/SwiftyBeaver
[dep-lzo-website]: http://www.oberhumer.com/opensource/lzo/
[ppl-surfnet]: https://www.surf.nl/en/about-surf/subsidiaries/surfnet
[ppl-xmb5]: https://github.com/XMB5
[ppl-xmb5-xor]: https://github.com/passepartoutvpn/tunnelkit/pull/170
2021-07-23 09:14:20 +00:00
[about-tunnelblick-xor]: https://tunnelblick.net/cOpenvpn_xorpatch.html
2018-10-08 12:25:07 +00:00
[about-twitter]: https://twitter.com/keeshux
2019-05-14 09:06:50 +00:00
[about-website]: https://passepartoutvpn.app