summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-08-27Build fix in tap, handling of Windows shutdown signals.Adam Ierymenko
2013-08-27More tap work -- DHCP configuration and such.Adam Ierymenko
2013-08-27Dike out some cruft in Windows tap that we will never use, like TUN mode, ↵Adam Ierymenko
DHCP masq, ARP emulation, NDP emulation, and related. We operate only in L2 mode. All tap, no tun.
2013-08-27Tap now basically sorta works on Windows. Now have to figure out how to ↵Adam Ierymenko
control DHCP behavior since we normally don't want that.
2013-08-26Build fixes for *nixAdam Ierymenko
2013-08-26Windows: disable and enable tap to allow changes to take effect.Adam Ierymenko
2013-08-26ZeroTierOne for Windows binary project, builds and runs and mostly works but ↵Adam Ierymenko
still some issues with tap.
2013-08-25Cut out tap test code from selftest.Adam Ierymenko
2013-08-25Tap works! At least in isolation. Time to create the Windows executable and ↵Adam Ierymenko
the Windows service to run it and handle auto-update.
2013-08-24Docs, Node picks a default home folder if created with NULL as its home ↵Adam Ierymenko
path, and add binary tap drivers (self-signed for now).
2013-08-24Forked tap driver installs with test cert, assuming Windows is in test mode, ↵Adam Ierymenko
and seems to work!
2013-08-24It builds and it installs! Well, except for not being digitally signed. :PAdam Ierymenko
2013-08-24More tap work in progress.Adam Ierymenko
2013-08-24Tap driver project config, inf file.Adam Ierymenko
2013-08-23Tap driver basically builds in VS2012... fork of tap-windows from OpenVPN ↵Adam Ierymenko
(compatible license).
2013-08-23VERSION 0.4.4: multicast cleanup, Windows port workAdam Ierymenko
In addition to a lot of Windows port work that isn't finished yet (and doesn't affect the *nix platforms at all), this version contains quite a bit of multicast cleanup and code simplification. I also pulled rate limits for now, as it seems to be causing problems. More testing on the testnet is going to be needed.
2013-08-23Decided to abandon the winpcap direction for Windows tap... re-evaluating ↵Adam Ierymenko
using OpenVPN tap driver in some form for now.
2013-08-22Commit of a draft of the pcap-based strategy for a Windows tap. This may, in ↵Adam Ierymenko
the end, not work, since winpcap may not support immediate capture and also because some software flags winpcap as malware. Like I said, trying to do anything interesting with Windows is PAIN.
2013-08-22Add winpcap development libraries and includes.Adam Ierymenko
2013-08-22Tap now creates Microsoft Loopback Adapter instances and tags them with a ↵Adam Ierymenko
special ID... work in progress.
2013-08-21Bug fix in multicast changes.Adam Ierymenko
2013-08-21Huge convoluted logic de-tangling in multicast propagation, supernodes now ↵Adam Ierymenko
do random propagation for more efficient coverage with less bias in sparse graph cases.
2013-08-21A bit of code comment cleanup.Adam Ierymenko
2013-08-21Some work on Windows tap.Adam Ierymenko
2013-08-21Make that an arbitrary tag to identify persistent taps...Adam Ierymenko
2013-08-19Add an interface description to EthernetTap, mostly for Windows.Adam Ierymenko
2013-08-19Add devcon 32-bit and 64-bit Windoze binaries.Adam Ierymenko
2013-08-19Clean up...Adam Ierymenko
2013-08-16On second thought... argh.Adam Ierymenko
2013-08-15Add a fork of tap-windows from OpenVPN, will be customized.Adam Ierymenko
2013-08-15Create devel project for Windows tap work. (Might be temporary.)Adam Ierymenko
2013-08-14A few test build changes.Adam Ierymenko
2013-08-14Windows builds, self test runs in Debug mode!Adam Ierymenko
2013-08-14Self test almost builds, now need skeleton EthernetTap implementation for ↵Adam Ierymenko
Windows.
2013-08-14Move .vcxproj files to vsprojects\ subfolder and use Visual Studio's ability ↵Adam Ierymenko
to add existing files to create per-tool solutions. Create self test solution to test basic functionality on Windows.
2013-08-13Version 0.4.3 (the real one): fix Gentoo ip config failures and crashesAdam Ierymenko
This version fixes problems with locating the 'ip' command on Gentoo and possibly other Linux systems, and a problem that could cause a crash if EthernetTap was unable to locate one of the commands it invokes to configure IP information on tap devices. The code also now builds on Windows. It doesn't run yet, but it's a step. Windows port is in full swing. Finally, the multicast rate limit defaults were raised a little. More testing is needed here, and real world measurments.
2013-08-13Version 0.4.3: fix Gentoo ip config failures and crashesAdam Ierymenko
This version fixes problems with locating the 'ip' command on Gentoo and possibly other Linux systems, and a problem that could cause a crash if EthernetTap was unable to locate one of the commands it invokes to configure IP information on tap devices. The code also now builds on Windows. It doesn't run yet, but it's a step. Windows port is in full swing.
2013-08-12Fix a *nix build issue.Adam Ierymenko
2013-08-12Windows compiles! (w/Visual Studio 2012) That's about all it does, but it's ↵Adam Ierymenko
a start.
2013-08-12More Windows port work.Adam Ierymenko
2013-08-12Windows build work: condition, mutex, thread, udp socket...Adam Ierymenko
2013-08-12A few more visual studio file changes, forgot to save all. Will be switching ↵Adam Ierymenko
to dev branch now.
2013-08-12Add Visual Studio DLL project for coreAdam Ierymenko
2013-08-120.4.2: cleanup releaseAdam Ierymenko
Version 0.4.2 is largely a cleanup release. Changes are minor: * Programatically replace libcrypto's random number generator with our own (using /dev/urandom or Windows CAPI) since libcrypto's RNG likes to use uninitialized memory as one of its entropy sources. This causes massive floods of valgrind (debugger) errors during memory error profiling analysis. * Clean up some other code to eliminate valgrind errors. Valgrind now runs on Linux with only one error. This error is in EthernetTap and is a false positive.
2013-08-12Clean up a bunch of valgrind errors, nix a potentially unsafe op in Buffer ↵Adam Ierymenko
assignment operator.
2013-08-10Replace libcrypto RAND_ with our own to avoid valgrind errors.Adam Ierymenko
2013-08-10Stop using RAND_ in libcrypto for Utils::getSecureRandom() due to annoying ↵Adam Ierymenko
valgrind spew from libcrypto use of uninitialized RAM as a random source. Might look into replacing RAND_ in libcrypto with our own simple /dev/urandom / Windows CAPI plugin.
2013-08-09Add range safety check to EllipticCurveKey.Adam Ierymenko
2013-08-09Version 0.4.1 - RateLimiter for multicast, bug fixes.Adam Ierymenko
This version adds a draft of the multicast rate limiting architecture. A few minor bugs are also fixed. The Linux version builds in debug mode for now.
2013-08-09Fix for another wonderful C++ threading race condition.Adam Ierymenko