mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-04-24 00:00:05 +08:00
Squashed 'OpenVPN Adapter/Vendors/openvpn/' content from commit da99df6
git-subtree-dir: OpenVPN Adapter/Vendors/openvpn git-subtree-split: da99df69492256d7a18bbea303ae98457782a4bf
This commit is contained in:
@@ -0,0 +1,325 @@
|
||||
// OpenVPN -- An application to securely tunnel IP networks
|
||||
// over a single port, with support for SSL/TLS-based
|
||||
// session authentication and key exchange,
|
||||
// packet encryption, packet authentication, and
|
||||
// packet compression.
|
||||
//
|
||||
// Copyright (C) 2012-2017 OpenVPN Technologies, Inc.
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License Version 3
|
||||
// as published by the Free Software Foundation.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program in the COPYING file.
|
||||
// If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#ifndef OPENVPN_APPLE_MACLIFE_H
|
||||
#define OPENVPN_APPLE_MACLIFE_H
|
||||
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
|
||||
#include <thread>
|
||||
|
||||
#include <openvpn/log/logthread.hpp>
|
||||
#include <openvpn/applecrypto/cf/cftimer.hpp>
|
||||
#include <openvpn/applecrypto/cf/cfhelper.hpp>
|
||||
#include <openvpn/applecrypto/util/reachable.hpp>
|
||||
#include <openvpn/client/clilife.hpp>
|
||||
#include <openvpn/apple/runloop.hpp>
|
||||
#include <openvpn/apple/macsleep.hpp>
|
||||
#include <openvpn/apple/scdynstore.hpp>
|
||||
|
||||
namespace openvpn {
|
||||
class MacLifeCycle : public ClientLifeCycle, MacSleep, ReachabilityTracker
|
||||
{
|
||||
public:
|
||||
OPENVPN_EXCEPTION(mac_lifecycle_error);
|
||||
|
||||
MacLifeCycle()
|
||||
: ReachabilityTracker(true, false),
|
||||
nc(nullptr),
|
||||
thread(nullptr),
|
||||
paused(false)
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~MacLifeCycle()
|
||||
{
|
||||
stop_thread();
|
||||
}
|
||||
|
||||
virtual bool network_available()
|
||||
{
|
||||
return net_up();
|
||||
}
|
||||
|
||||
virtual void start(NotifyCallback* nc_arg)
|
||||
{
|
||||
if (!thread && nc_arg)
|
||||
{
|
||||
nc = nc_arg;
|
||||
thread = new std::thread(&MacLifeCycle::thread_func, this);
|
||||
}
|
||||
}
|
||||
|
||||
virtual void stop()
|
||||
{
|
||||
stop_thread();
|
||||
}
|
||||
|
||||
private:
|
||||
struct State
|
||||
{
|
||||
State()
|
||||
: net_up(false),
|
||||
sleep(false)
|
||||
{
|
||||
}
|
||||
|
||||
State(bool net_up_arg, const std::string& iface_arg, bool sleep_arg)
|
||||
: net_up(net_up_arg),
|
||||
iface(iface_arg),
|
||||
sleep(sleep_arg)
|
||||
{
|
||||
}
|
||||
|
||||
bool operator==(const State& other) const
|
||||
{
|
||||
return net_up == other.net_up && iface == other.iface && sleep == other.sleep;
|
||||
}
|
||||
|
||||
bool operator!=(const State& other) const
|
||||
{
|
||||
return !operator==(other);
|
||||
}
|
||||
|
||||
std::string to_string() const
|
||||
{
|
||||
std::ostringstream os;
|
||||
os << "[net_up=" << net_up << " iface=" << iface << " sleep=" << sleep << ']';
|
||||
return os.str();
|
||||
}
|
||||
|
||||
bool net_up;
|
||||
std::string iface;
|
||||
bool sleep;
|
||||
};
|
||||
|
||||
void stop_thread()
|
||||
{
|
||||
if (thread)
|
||||
{
|
||||
if (runloop.defined())
|
||||
CFRunLoopStop(runloop());
|
||||
thread->join();
|
||||
delete thread;
|
||||
thread = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
void thread_func()
|
||||
{
|
||||
runloop.reset(CFRunLoopGetCurrent(), CF::BORROW);
|
||||
Log::Context logctx(logwrap);
|
||||
try {
|
||||
// set up dynamic store query object
|
||||
dstore.reset(SCDynamicStoreCreate(kCFAllocatorDefault,
|
||||
CFSTR("OpenVPN_MacLifeCycle"),
|
||||
nullptr,
|
||||
nullptr));
|
||||
|
||||
// init state
|
||||
state = State(net_up(), primary_interface(), false);
|
||||
prev_state = state;
|
||||
paused = false;
|
||||
|
||||
// enable sleep/wakeup notifications
|
||||
mac_sleep_start();
|
||||
|
||||
// enable network reachability notifications
|
||||
reachability_tracker_schedule();
|
||||
|
||||
// enable interface change notifications
|
||||
iface_watch();
|
||||
|
||||
// process event loop until CFRunLoopStop is called from parent thread
|
||||
CFRunLoopRun();
|
||||
}
|
||||
catch (const std::exception& e)
|
||||
{
|
||||
OPENVPN_LOG("MacLifeCycle Exception: " << e.what());
|
||||
}
|
||||
|
||||
// cleanup
|
||||
cancel_action_timer();
|
||||
mac_sleep_stop();
|
||||
reachability_tracker_cancel();
|
||||
dstore.reset();
|
||||
}
|
||||
|
||||
std::string primary_interface()
|
||||
{
|
||||
CF::Dict dict(CF::DynamicStoreCopyDict(dstore, "State:/Network/Global/IPv4"));
|
||||
return CF::dict_get_str(dict, "PrimaryInterface");
|
||||
}
|
||||
|
||||
bool net_up()
|
||||
{
|
||||
ReachabilityViaInternet r;
|
||||
return ReachabilityViaInternet::status_from_flags(r.flags()) != ReachabilityInterface::NotReachable;
|
||||
}
|
||||
|
||||
void iface_watch()
|
||||
{
|
||||
SCDynamicStoreContext context = {0, this, nullptr, nullptr, nullptr};
|
||||
CF::DynamicStore ds(SCDynamicStoreCreate(kCFAllocatorDefault,
|
||||
CFSTR("OpenVPN_MacLifeCycle_iface_watch"),
|
||||
iface_watch_callback_static,
|
||||
&context));
|
||||
if (!ds.defined())
|
||||
throw mac_lifecycle_error("SCDynamicStoreCreate");
|
||||
CF::MutableArray watched_keys(CF::mutable_array());
|
||||
CF::array_append_str(watched_keys, "State:/Network/Global/IPv4");
|
||||
//CF::array_append_str(watched_keys, "State:/Network/Global/IPv6");
|
||||
if (!watched_keys.defined())
|
||||
throw mac_lifecycle_error("watched_keys is undefined");
|
||||
if (!SCDynamicStoreSetNotificationKeys(ds(),
|
||||
watched_keys(),
|
||||
nullptr))
|
||||
throw mac_lifecycle_error("SCDynamicStoreSetNotificationKeys failed");
|
||||
CF::RunLoopSource rls(SCDynamicStoreCreateRunLoopSource(kCFAllocatorDefault, ds(), 0));
|
||||
if (!rls.defined())
|
||||
throw mac_lifecycle_error("SCDynamicStoreCreateRunLoopSource failed");
|
||||
CFRunLoopAddSource(CFRunLoopGetCurrent(), rls(), kCFRunLoopDefaultMode);
|
||||
}
|
||||
|
||||
static void iface_watch_callback_static(SCDynamicStoreRef store, CFArrayRef changedKeys, void *arg)
|
||||
{
|
||||
MacLifeCycle *self = (MacLifeCycle *)arg;
|
||||
self->iface_watch_callback(store, changedKeys);
|
||||
}
|
||||
|
||||
void iface_watch_callback(SCDynamicStoreRef store, CFArrayRef changedKeys)
|
||||
{
|
||||
state.iface = primary_interface();
|
||||
OPENVPN_LOG("MacLifeCycle NET_IFACE " << state.iface);
|
||||
schedule_action_timer(1);
|
||||
}
|
||||
|
||||
virtual void notify_sleep()
|
||||
{
|
||||
OPENVPN_LOG("MacLifeCycle SLEEP");
|
||||
state.sleep = true;
|
||||
schedule_action_timer(0);
|
||||
}
|
||||
|
||||
virtual void notify_wakeup()
|
||||
{
|
||||
OPENVPN_LOG("MacLifeCycle WAKEUP");
|
||||
state.sleep = false;
|
||||
schedule_action_timer(1);
|
||||
}
|
||||
|
||||
virtual void reachability_tracker_event(const ReachabilityBase& rb, SCNetworkReachabilityFlags flags)
|
||||
{
|
||||
if (rb.vtype() == ReachabilityBase::Internet)
|
||||
{
|
||||
const ReachabilityBase::Status status = rb.vstatus(flags);
|
||||
state.net_up = (status != ReachabilityInterface::NotReachable);
|
||||
OPENVPN_LOG("MacLifeCycle NET_STATE " << state.net_up << " status=" << ReachabilityBase::render_status(status) << " flags=" << ReachabilityBase::render_flags(flags));
|
||||
schedule_action_timer(1);
|
||||
}
|
||||
}
|
||||
|
||||
void schedule_action_timer(const int seconds)
|
||||
{
|
||||
cancel_action_timer();
|
||||
if (seconds)
|
||||
{
|
||||
CFRunLoopTimerContext context = { 0, this, nullptr, nullptr, nullptr };
|
||||
action_timer.reset(CFRunLoopTimerCreate(kCFAllocatorDefault, CFAbsoluteTimeGetCurrent() + seconds, 0, 0, 0, action_timer_callback_static, &context));
|
||||
if (action_timer.defined())
|
||||
CFRunLoopAddTimer(CFRunLoopGetCurrent(), action_timer(), kCFRunLoopCommonModes);
|
||||
else
|
||||
OPENVPN_LOG("MacLifeCycle::schedule_action_timer: failed to create timer");
|
||||
}
|
||||
else
|
||||
action_timer_callback(nullptr);
|
||||
}
|
||||
|
||||
void cancel_action_timer()
|
||||
{
|
||||
if (action_timer.defined())
|
||||
{
|
||||
CFRunLoopTimerInvalidate(action_timer());
|
||||
action_timer.reset(nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
static void action_timer_callback_static(CFRunLoopTimerRef timer, void *info)
|
||||
{
|
||||
MacLifeCycle* self = (MacLifeCycle*)info;
|
||||
self->action_timer_callback(timer);
|
||||
}
|
||||
|
||||
void action_timer_callback(CFRunLoopTimerRef timer)
|
||||
{
|
||||
try {
|
||||
if (state != prev_state)
|
||||
{
|
||||
OPENVPN_LOG("MacLifeCycle ACTION pause=" << paused << " state=" << state.to_string() << " prev=" << prev_state.to_string());
|
||||
if (paused)
|
||||
{
|
||||
if (!state.sleep && state.net_up)
|
||||
{
|
||||
nc->cln_resume();
|
||||
paused = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (state.sleep)
|
||||
{
|
||||
nc->cln_pause("sleep");
|
||||
paused = true;
|
||||
}
|
||||
else if (!state.net_up)
|
||||
{
|
||||
nc->cln_pause("network-unavailable");
|
||||
paused = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (state.iface != prev_state.iface)
|
||||
nc->cln_reconnect(0);
|
||||
}
|
||||
}
|
||||
prev_state = state;
|
||||
}
|
||||
}
|
||||
catch (const std::exception& e)
|
||||
{
|
||||
OPENVPN_LOG("MacLifeCycle::action_timer_callback: " << e.what());
|
||||
}
|
||||
}
|
||||
|
||||
NotifyCallback* nc;
|
||||
std::thread* thread;
|
||||
CF::RunLoop runloop; // run loop in thread
|
||||
CF::DynamicStore dstore;
|
||||
State state;
|
||||
State prev_state;
|
||||
bool paused;
|
||||
CF::Timer action_timer;
|
||||
Log::Context::Wrapper logwrap; // used to carry forward the log context from parent thread
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,129 @@
|
||||
// OpenVPN -- An application to securely tunnel IP networks
|
||||
// over a single port, with support for SSL/TLS-based
|
||||
// session authentication and key exchange,
|
||||
// packet encryption, packet authentication, and
|
||||
// packet compression.
|
||||
//
|
||||
// Copyright (C) 2012-2017 OpenVPN Technologies, Inc.
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License Version 3
|
||||
// as published by the Free Software Foundation.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program in the COPYING file.
|
||||
// If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#ifndef OPENVPN_APPLE_MACSLEEP_H
|
||||
#define OPENVPN_APPLE_MACSLEEP_H
|
||||
|
||||
#include <mach/mach_port.h>
|
||||
#include <mach/mach_interface.h>
|
||||
#include <mach/mach_init.h>
|
||||
|
||||
#include <IOKit/pwr_mgt/IOPMLib.h>
|
||||
#include <IOKit/IOMessage.h>
|
||||
|
||||
#include <openvpn/common/size.hpp>
|
||||
|
||||
namespace openvpn {
|
||||
class MacSleep
|
||||
{
|
||||
MacSleep(const MacSleep&) = delete;
|
||||
MacSleep& operator=(const MacSleep&) = delete;
|
||||
|
||||
public:
|
||||
MacSleep()
|
||||
: root_port(0),
|
||||
notifyPortRef(nullptr),
|
||||
notifierObject(0)
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~MacSleep()
|
||||
{
|
||||
mac_sleep_stop();
|
||||
}
|
||||
|
||||
bool mac_sleep_start()
|
||||
{
|
||||
if (!root_port)
|
||||
{
|
||||
root_port = IORegisterForSystemPower(this, ¬ifyPortRef, callback_static, ¬ifierObject);
|
||||
if (!root_port)
|
||||
return false;
|
||||
CFRunLoopAddSource(CFRunLoopGetCurrent(), IONotificationPortGetRunLoopSource(notifyPortRef), kCFRunLoopCommonModes);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void mac_sleep_stop()
|
||||
{
|
||||
if (root_port)
|
||||
{
|
||||
// remove the sleep notification port from the application runloop
|
||||
CFRunLoopRemoveSource(CFRunLoopGetCurrent(),
|
||||
IONotificationPortGetRunLoopSource(notifyPortRef),
|
||||
kCFRunLoopCommonModes);
|
||||
|
||||
// deregister for system sleep notifications
|
||||
IODeregisterForSystemPower(¬ifierObject);
|
||||
|
||||
// IORegisterForSystemPower implicitly opens the Root Power Domain IOService
|
||||
// so we close it here
|
||||
IOServiceClose(root_port);
|
||||
|
||||
// destroy the notification port allocated by IORegisterForSystemPower
|
||||
IONotificationPortDestroy(notifyPortRef);
|
||||
|
||||
// reset object members
|
||||
root_port = 0;
|
||||
notifyPortRef = nullptr;
|
||||
notifierObject = 0;
|
||||
}
|
||||
}
|
||||
|
||||
virtual void notify_sleep() = 0;
|
||||
virtual void notify_wakeup() = 0;
|
||||
|
||||
private:
|
||||
static void callback_static(void* arg, io_service_t service, natural_t messageType, void *messageArgument)
|
||||
{
|
||||
MacSleep* self = (MacSleep*)arg;
|
||||
self->callback(service, messageType, messageArgument);
|
||||
}
|
||||
|
||||
void callback(io_service_t service, natural_t messageType, void *messageArgument)
|
||||
{
|
||||
switch (messageType)
|
||||
{
|
||||
case kIOMessageCanSystemSleep:
|
||||
IOAllowPowerChange(root_port, (long)messageArgument);
|
||||
break;
|
||||
case kIOMessageSystemWillSleep:
|
||||
notify_sleep();
|
||||
IOAllowPowerChange(root_port, (long)messageArgument);
|
||||
break;
|
||||
case kIOMessageSystemHasPoweredOn:
|
||||
notify_wakeup();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// a reference to the Root Power Domain IOService
|
||||
io_connect_t root_port;
|
||||
|
||||
// notification port allocated by IORegisterForSystemPower
|
||||
IONotificationPortRef notifyPortRef;
|
||||
|
||||
// notifier object, used to deregister later
|
||||
io_object_t notifierObject;
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,75 @@
|
||||
// OpenVPN -- An application to securely tunnel IP networks
|
||||
// over a single port, with support for SSL/TLS-based
|
||||
// session authentication and key exchange,
|
||||
// packet encryption, packet authentication, and
|
||||
// packet compression.
|
||||
//
|
||||
// Copyright (C) 2012-2017 OpenVPN Technologies, Inc.
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License Version 3
|
||||
// as published by the Free Software Foundation.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program in the COPYING file.
|
||||
// If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#ifndef OPENVPN_APPLE_MACVER_H
|
||||
#define OPENVPN_APPLE_MACVER_H
|
||||
|
||||
#include <errno.h>
|
||||
#include <sys/sysctl.h>
|
||||
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <vector>
|
||||
|
||||
#include <openvpn/common/split.hpp>
|
||||
#include <openvpn/common/number.hpp>
|
||||
#include <openvpn/apple/ver.hpp>
|
||||
|
||||
namespace openvpn {
|
||||
namespace Mac {
|
||||
class Version : public AppleVersion
|
||||
{
|
||||
public:
|
||||
// Mac OS X versions
|
||||
// 15.x.x OS X 10.11.x El Capitan
|
||||
// 14.x.x OS X 10.10.x Yosemite
|
||||
// 13.x.x OS X 10.9.x Mavericks
|
||||
// 12.x.x OS X 10.8.x Mountain Lion
|
||||
// 11.x.x OS X 10.7.x Lion
|
||||
// 10.x.x OS X 10.6.x Snow Leopard
|
||||
// 9.x.x OS X 10.5.x Leopard
|
||||
// 8.x.x OS X 10.4.x Tiger
|
||||
// 7.x.x OS X 10.3.x Panther
|
||||
// 6.x.x OS X 10.2.x Jaguar
|
||||
// 5.x OS X 10.1.x Puma
|
||||
|
||||
enum {
|
||||
OSX_10_11=15,
|
||||
OSX_10_10=14,
|
||||
OSX_10_9=13,
|
||||
OSX_10_8=12,
|
||||
OSX_10_7=11,
|
||||
OSX_10_6=10,
|
||||
};
|
||||
|
||||
Version()
|
||||
{
|
||||
char str[256];
|
||||
size_t size = sizeof(str);
|
||||
int ret = sysctlbyname("kern.osrelease", str, &size, nullptr, 0);
|
||||
if (!ret)
|
||||
init(std::string(str, size));
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,34 @@
|
||||
// OpenVPN -- An application to securely tunnel IP networks
|
||||
// over a single port, with support for SSL/TLS-based
|
||||
// session authentication and key exchange,
|
||||
// packet encryption, packet authentication, and
|
||||
// packet compression.
|
||||
//
|
||||
// Copyright (C) 2012-2017 OpenVPN Technologies, Inc.
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License Version 3
|
||||
// as published by the Free Software Foundation.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program in the COPYING file.
|
||||
// If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#ifndef OPENVPN_APPLE_RUNLOOP_H
|
||||
#define OPENVPN_APPLE_RUNLOOP_H
|
||||
|
||||
#include <openvpn/applecrypto/cf/cf.hpp>
|
||||
|
||||
namespace openvpn {
|
||||
namespace CF {
|
||||
OPENVPN_CF_WRAP(RunLoop, runloop_cast, CFRunLoopRef, CFRunLoopGetTypeID);
|
||||
OPENVPN_CF_WRAP(RunLoopSource, runloop_source_cast, CFRunLoopSourceRef, CFRunLoopSourceGetTypeID);
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,52 @@
|
||||
// OpenVPN -- An application to securely tunnel IP networks
|
||||
// over a single port, with support for SSL/TLS-based
|
||||
// session authentication and key exchange,
|
||||
// packet encryption, packet authentication, and
|
||||
// packet compression.
|
||||
//
|
||||
// Copyright (C) 2012-2017 OpenVPN Technologies, Inc.
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License Version 3
|
||||
// as published by the Free Software Foundation.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program in the COPYING file.
|
||||
// If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#ifndef OPENVPN_APPLE_SCDYNSTORE_H
|
||||
#define OPENVPN_APPLE_SCDYNSTORE_H
|
||||
|
||||
#include <SystemConfiguration/SCDynamicStore.h>
|
||||
|
||||
#include <openvpn/applecrypto/cf/cf.hpp>
|
||||
|
||||
namespace openvpn {
|
||||
namespace CF {
|
||||
OPENVPN_CF_WRAP(DynamicStore, dynamic_store_cast, SCDynamicStoreRef, SCDynamicStoreGetTypeID)
|
||||
|
||||
template <typename RET, typename KEY>
|
||||
inline RET DynamicStoreCopy(const DynamicStore& ds, const KEY& key)
|
||||
{
|
||||
String keystr = string(key);
|
||||
return RET(RET::cast(SCDynamicStoreCopyValue(ds(), keystr())));
|
||||
}
|
||||
|
||||
template <typename KEY>
|
||||
inline Dict DynamicStoreCopyDict(const DynamicStore& ds, const KEY& key)
|
||||
{
|
||||
Dict dict = DynamicStoreCopy<Dict>(ds, key);
|
||||
if (dict.defined())
|
||||
return dict;
|
||||
else
|
||||
return CF::empty_dict();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,81 @@
|
||||
// OpenVPN -- An application to securely tunnel IP networks
|
||||
// over a single port, with support for SSL/TLS-based
|
||||
// session authentication and key exchange,
|
||||
// packet encryption, packet authentication, and
|
||||
// packet compression.
|
||||
//
|
||||
// Copyright (C) 2012-2017 OpenVPN Technologies, Inc.
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License Version 3
|
||||
// as published by the Free Software Foundation.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program in the COPYING file.
|
||||
// If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#ifndef OPENVPN_APPLE_VER_H
|
||||
#define OPENVPN_APPLE_VER_H
|
||||
|
||||
#include <errno.h>
|
||||
#include <sys/sysctl.h>
|
||||
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <vector>
|
||||
|
||||
#include <openvpn/common/split.hpp>
|
||||
#include <openvpn/common/number.hpp>
|
||||
|
||||
namespace openvpn {
|
||||
class AppleVersion
|
||||
{
|
||||
public:
|
||||
int major() const { return ver[0]; }
|
||||
int minor() const { return ver[1]; }
|
||||
int build() const { return ver[2]; }
|
||||
|
||||
std::string to_string() const
|
||||
{
|
||||
std::ostringstream os;
|
||||
os << major() << '.' << minor() << '.' << build();
|
||||
return os.str();
|
||||
}
|
||||
|
||||
protected:
|
||||
AppleVersion()
|
||||
{
|
||||
reset();
|
||||
}
|
||||
|
||||
// verstr should be in the form major.minor.build
|
||||
void init(const std::string& verstr)
|
||||
{
|
||||
typedef std::vector<std::string> StringList;
|
||||
reset();
|
||||
StringList sl;
|
||||
sl.reserve(3);
|
||||
Split::by_char_void<StringList, NullLex, Split::NullLimit>(sl, verstr, '.');
|
||||
for (size_t i = 0; i < 3; ++i)
|
||||
{
|
||||
if (i < sl.size())
|
||||
parse_number(sl[i], ver[i]);
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
void reset()
|
||||
{
|
||||
ver[0] = ver[1] = ver[2] = -1;
|
||||
}
|
||||
|
||||
int ver[3];
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user