[[TOC(inline, depth=1)]] = Using development versions of OpenVPN = == Getting OpenVPN snapshots == We offer several different kinds of development builds and snapshots: * [http://build.openvpn.net/downloads/snapshots/ Windows installers built from every commit] * FreeBSD ''openvpn-devel'' port. Also usable as a standalone source snapshot on other platforms. Note that these snapshots are either ''entirely untested'' or tested only very briefly. So there are no guarantees that they work correctly. That said, most of the time they probably work just fine. == Fetching sources using git == Second option is to fetch sources using Git. This method is preferred, as it allows you to easily keep using the latest code. For instructions take a look [wiki:CodeRepositories here]. == Source for OpenVPN for Android == Source code for OpenVPN for Android is available [https://github.com/schwabe/ics-openvpn on GitHub]. == Source for OpenVPN Connect (android/IOS) == The latest source code snapshot for OpenVPN 3 is available [http://staging.openvpn.net/openvpn3/ here]. == Building == If you're using source snapshots / ports you can extract them like this: {{{ gzip -dc openvpn-.tar.gz | tar xvf - cd openvpn-/ }}} With Git you can skip this step. Next prepare for building (not required for stable releases): {{{ autoreconf -vi }}} Next configure (see ''./configure --help'' for available build-time options): {{{ ./configure }}} Finally compile: {{{ make [-j ] }}} Once you've ran ''make'', you can install OpenVPN using {{{ make install }}} === Building on MacOS X with homebrew === Homebrew does not install the openssl libraries in the standard paths. If you get errors like `Undefined symbols for architecture x86_64: "_SSL_CTX_get0_certificate" ...`, you need to pass `CPPFLAGS`/`LDFLAGS` (the correct values are shown by `brew info openssl`). {{{ make [-j ] CPPFLAGS=-I/usr/local/opt/openssl/include LDFLAGS=-L/usr/local/opt/openssl/lib }}} = TAP-driver debugging = Please take a look [wiki:ManagingWindowsTAPDrivers here]. = OpenVPN Debugging = If OpenVPN crashes, you can help developers figure out the problem by giving them a backtrace of the crash. If you're running released (stable) version of OpenVPN, you should install the ''openvpn debug'' and ''gdb'' packages and then run openvpn via gdb. On "testing" turn on debugging before compilation. In either case you can get a backtrace of the crash like this: {{{ $ gdb /usr/sbin/openvpn [gdb info message...blablabla...] (gdb) run --config [--other-arguments-you-might-pass] [wait for the crash] (gdb) bt [full backtrace should appear] }}} = Enable core dump = In some cases, it's not possible to trigger the bug when running via gdb directly. In this case, you can enable core dumps. On most distributions and *nix OSes today, you need to enable this from your shell before starting OpenVPN. {{{ $ ulimit -c unlimited }}} Then run OpenVPN with the normal arguments. When OpenVPN crashes, it will now most likely create a core file which can be used for debugging the state of OpenVPN when it crashed. {{{ $ gdb openvpn {core file} [gdb info message...blablabla...] (gdb) bt [full backtrace should appear] }}} Please save the core files for a little while before deleting them. It might be that the developers would ask for a copy of the core file in some situations, to investigate more carefully the state OpenVPN was in when it crashed. But be also aware of that these core files can (will most likely) contain sensitive data, like encryption keys and certificates. So share with care. Beware that if you start OpenVPN via init scripts, it will most likely not dump core files, unless you change the ulimit inside the init script. = Reporting bugs = OpenVPN issues are tracked in GitHub now: See https://github.com/OpenVPN/openvpn/issues Old issues can be found here in Trac: https://community.openvpn.net/openvpn/report If you're not sure if your problem is really a bug, you can ask about it on [wiki:GettingHelp OpenVPN support channels]. If you've genuinely found a bug, have a look if the same issue has been reported before, and if it has been fixed already. If you've found a new, unfixed bug, make sure you know [http://www.chiark.greenend.org.uk/~sgtatham/bugs.html how to report bugs efficiently]; good bug reports help resolve the problem quickly. In each bug report you should document a few things: * Operating system (e.g. OpenBSD 4.3) * The complete output of ''openvpn --version'', or... * ...the full filename of the Windows installer you used * Relevant parts of OpenVPN client and/or server logs (when available) at ''verb 5'' verbosity (see the [https://openvpn.net/community-resources/reference-manual-for-openvpn-2-4/ man page]) * If you built OpenVPN youself: the ''./configure'' command line you used If the bug you've found is a regression and you want to see it fixed as soon as possible, you can help by doing a ''Git bisect''. This technique is described here: * [http://book.git-scm.com/5_finding_issues_-_git_bisect.html Finding Issues - Git Bisect] * [http://progit.org/book/ch6-5.html Debugging with Git] Bisecting is an advanced technique and you're not expected to do it before filing bug reports.