= Problems with the current codebase = OpenVPN's current codebase has a number of limitations. Some of the limitations require changes to the underlying architecture to be fixed. == Threads == Currently, OpenVPN is scaled on SMP machines by adding processes rather than threads. While it might be interesting to look into scaling OpenVPN across threads, there may be kernel-level bottlenecks that impede this, e.g. note the problems facebook had when trying to scale memcached, specifically the problems of having multiple threads contend for a single UDP socket: * http://www.facebook.com/note.php?note_id=39391378919&ref=mf == Monolithic architecture == The fact that OpenVPN is currently implemented as a monolithic C application makes it difficult to control OpenVPN's internal operation from higher level languages. Having the core functionality of OpenVPN implemented as a C library would allow it to be wrappable by higher-level language objects more easily. For example, suppose you wanted to build a full-mesh OpenVPN cloud, where OpenVPN runs on hundreds of machines, and where each machine has multiple processors. It would be much more straightforward to implement the cloud in a high-level language such as python, and wrap the OpenVPN library as a python extension. Another related problem is that OpenVPN's components are not easily exchangable. This means that adding certain types of functionality (e.g. IPv6) or replacing current SSL and compression functionality is much more difficult than it needs to be. == Event system == The current non-asynchrous-clean status of the event system makes maintenance of certain OpenVPN components quite tenuous, such as mtcp.c. It might be worthwhile to look into using libevent as the underlying i/o event system for OpenVPN (libevent is used by memcached). = Rethinking architecture for OpenVPN 3.0? = OpenVPN is essentially a special-case of a user-space network stack. In future development, OpenVPN could be modularized so that the central core is implemented as a user-space network stack, and the other components such as VPN and routing would be modules in this stack. The above changes make it more straightforward to implement other protocols in the stack, such as IPv6. The network stack changes would also make it much more straightforward to implement alternative topologies for OpenVPN, such as full-mesh. The SSL and compression functionality should be modularized so that OpenVPN can be used with different SSL libraries or different compression algorithms. The current i/o event system needs to be revamped into a true asynchronous model. While the current event model is partially asynchronous, it is not sufficiently clean to allow certain features to be implemented such as concurrent multithreading or the ability to listen on multiple interfaces simultaneously. * The current non-asynchrous-clean status of the event system makes maintenance of certain OpenVPN components quite tenuous, such as mtcp.c. * It might be worthwhile to look into using libevent as the underlying i/o event system for OpenVPN (libevent is used by memcached).