1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
// Copyright 2023 Mullvad VPN AB.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! `openvpn-plugin` is a crate that makes it easy to write OpenVPN plugins in Rust.
//!
//! The crate contains two main things:
//!
//! * The `openvpn_plugin!` macro for generating the FFI interface OpenVPN will interact with
//! * The FFI and safe Rust types needed to communicate with OpenVPN.
//!
//! ## Usage
//!
//! Edit your `Cargo.toml` to depend on this crate and set the type of your crate to a `cdylib` in
//! order to make it compile to a shared library that OpenVPN will understand:
//!
//! ```toml
//! [lib]
//! crate-type = ["cdylib"]
//!
//! [dependencies]
//! openvpn-plugin = "x.y"
//! ```
//!
//! In your crate root (`lib.rs`) define your handle type, the three callback functions and
//! call the [`openvpn_plugin!`] macro to generate the corresponding FFI bindings.
//! More details on the handle and the callback functions can be found in the documentation for the
//! [`openvpn_plugin!`] macro.
//!
//! ```rust,no_run
//! use std::collections::HashMap;
//! use std::ffi::CString;
//! use std::io::Error;
//! use openvpn_plugin::{openvpn_plugin, EventResult, EventType};
//!
//! pub struct Handle {
//!     // Fields needed for the plugin to keep state between callbacks
//! }
//!
//! fn openvpn_open(
//!     args: Vec<CString>,
//!     env: HashMap<CString, CString>,
//! ) -> Result<(Vec<EventType>, Handle), Error> {
//!     // Listen to only the `Up` event, which will be fired when a tunnel has been established.
//!     let events = vec![EventType::Up];
//!     // Create the handle instance.
//!     let handle = Handle { /* ... */ };
//!     Ok((events, handle))
//! }
//!
//! fn openvpn_close(handle: Handle) {
//!     println!("Plugin is closing down");
//! }
//!
//! fn openvpn_event(
//!     event: EventType,
//!     args: Vec<CString>,
//!     env: HashMap<CString, CString>,
//!     handle: &mut Handle,
//! ) -> Result<EventResult, Error> {
//!     /* Process the event */
//!
//!     // If the processing worked fine and/or the request the callback represents should be
//!     // accepted, return EventResult::Success. See EventResult docs for more info.
//!     Ok(EventResult::Success)
//! }
//!
//! openvpn_plugin!(crate::openvpn_open, crate::openvpn_close, crate::openvpn_event, Handle);
//! # fn main() {}
//! ```
//!
//! ## Panic handling
//!
//! C cannot handle Rust panic unwinding into it, so it is not good practice to let Rust panic when
//! called from C. Because of this, all calls from this crate to the callbacks given to
//! [`openvpn_plugin!`] \(`$open_fn`, `$close_fn` and `$event_fn`) are wrapped in
//! [`catch_unwind`].
//!
//! If [`catch_unwind`] captures a panic it will log it and then return
//! [`OPENVPN_PLUGIN_FUNC_ERROR`] to OpenVPN.
//!
//! Note that this will only work for unwinding panics, not with `panic=abort`.
//!
//! ## Logging
//!
//! Any errors returned from the user defined callbacks or panics that happens anywhere in Rust is
//! logged by this crate before control is returned to OpenVPN. By default logging happens to
//! stderr. To activate logging with the `error!` macro in the `log` crate, build this crate with
//! the `log` feature.
//!
//! [`openvpn_plugin!`]: macro.openvpn_plugin.html
//! [`OPENVPN_PLUGIN_FUNC_ERROR`]: ffi/constant.OPENVPN_PLUGIN_FUNC_ERROR.html
//! [`catch_unwind`]: https://doc.rust-lang.org/std/panic/fn.catch_unwind.html

#[cfg(feature = "serde")]
#[cfg_attr(feature = "serde", macro_use)]
extern crate serde;

use std::{
    collections::HashMap,
    convert::TryFrom,
    ffi::CString,
    fmt,
    os::raw::{c_int, c_void},
    panic,
};

/// FFI types and functions used by the plugin to convert between the types OpenVPN pass and expect
/// back and the Rust types the plugin will be exposed to.
///
/// Not intended for manual use. Is publicly exported since code generated by the `openvpn_plugin`
/// macro must access these types and functions.
pub mod ffi;

/// Rust types representing values and instructions from and to OpenVPN. Intended to be the safe
/// abstraction exposed to the plugins.
mod types;

/// Functions for logging errors that occur in plugins.
mod logging;

pub use crate::types::{EventResult, EventType};

/// The main part of this crate. The macro generates the public FFI functions that OpenVPN looks
/// for in a shared library:
///
/// * `openvpn_plugin_open_v3` - Will call `$open_fn`
/// * `openvpn_plugin_close_v1` - Will call `$close_fn`
/// * `openvpn_plugin_func_v3` - Will call `$event_fn`
///
/// This macro must be called in the crate root of the crate you wish to become an OpenVPN plugin.
/// That is because the FFI functions must be publicly exported from the shared library for OpenVPN
/// to find them.
///
/// See the top level library documentation and the included `debug-plugin` crate for examples on
/// how to use this macro.
///
///
/// ## `$open_fn` - The plugin load callback
///
/// Should be a function with the following signature:
///
/// ```rust,no_run
/// # use openvpn_plugin::EventType;
/// # use std::ffi::CString;
/// # use std::collections::HashMap;
/// # struct Handle {}
/// # struct Error {}
/// fn foo_open(
///     args: Vec<CString>,
///     env: HashMap<CString, CString>
/// ) -> Result<(Vec<EventType>, Handle), Error> {
///     /// ...
/// #    unimplemented!();
/// }
/// # fn main() {}
/// ```
///
/// With `foo_open` substituted for a function name of your liking and `Handle` being the
/// `$handle_ty` handle type you pass.
///
/// The type of the error in the result from this function does not matter, as long as it implements
/// `std::error::Error`. Any error returned is logged and then [`OPENVPN_PLUGIN_FUNC_ERROR`]
/// is returned to OpenVPN, which indicates that the plugin failed to load and OpenVPN will abort
/// and exit.
///
/// This function will be called by OpenVPN when the plugin is loaded, just as OpenVPN starts.
///
/// This function has access to the arguments passed to the plugin and the initial
/// OpenVPN environment. If the plugin deems the open operation successful it should return a vector
/// with the events it wants to register for and the handle instance that the plugin can use to
/// keep state (See further down for more on the handle).
///
/// The `openvpn_plugin::ffi::parse::{string_array_utf8, env_utf8}` functions can be used to try
/// to convert the arguments and environment into Rust `String`s.
///
///
/// ## `$close_fn` - The plugin unload callback
///
/// Should be a function with the following signature:
///
/// ```rust,no_run
/// # struct Handle {}
/// fn foo_close(handle: Handle) {
///     /// ...
/// #    unimplemented!();
/// }
/// # fn main() {}
/// ```
///
/// With `foo_close` substituted for a function name of your liking and `Handle` being the
/// `$handle_ty` handle type you pass.
///
/// This function is called just before the plugin is unloaded, just before OpenVPN shuts down.
/// Here the plugin can do any cleaning up that is necessary. Since the handle is passed by value it
/// will be dropped when this function returns.
///
///
/// ## `$event_fn` - The event callback function
///
/// Should be a function with the following signature:
///
/// ```rust,no_run
/// # use openvpn_plugin::{EventResult, EventType};
/// # use std::ffi::CString;
/// # use std::collections::HashMap;
/// # struct Handle {}
/// # struct Error {}
/// fn foo_event(
///     event: EventType,
///     args: Vec<CString>,
///     env: HashMap<CString, CString>,
///     handle: &mut Handle,
/// ) -> Result<EventResult, Error> {
///     /// ...
/// #    unimplemented!();
/// }
/// # fn main() {}
/// ```
///
/// With `foo_event` substituted for a function name of your liking and `Handle` being the
/// `$handle_ty` handle type you pass.
///
/// The type of the error in the result from this function does not matter, as long as it implements
/// `std::error::Error`. Any error returned is logged and then [`OPENVPN_PLUGIN_FUNC_ERROR`]
/// is returned to OpenVPN. [`OPENVPN_PLUGIN_FUNC_ERROR`] indicates different things on different
/// events. In the case of an authentication request or TLS key verification it means that the
/// request is denied and the connection is aborted.
///
/// This function is being called by OpenVPN each time one of the events that `$open_fn` registered
/// for happens. This can for example be that a tunnel is established or that a client wants to
/// authenticate.
///
/// The first argument, [`EventType`], will tell which event that is happening.
///
///
/// ## `$handle_ty` - The handle type
///
/// The handle must be created and returned by the `$open_fn` function and will be kept for the
/// entire runtime of the plugin. The handle is passed to every subsequent callback and this is the
/// way that the plugin is supposed to keep state between each callback.
///
/// The handle instance is being dropped upon return from the `$close_fn` function just as the
/// plugin is being unloaded.
///
/// [`EventType`]: types/enum.EventType.html
/// [`OPENVPN_PLUGIN_FUNC_ERROR`]: ffi/constant.OPENVPN_PLUGIN_FUNC_ERROR.html
#[macro_export]
macro_rules! openvpn_plugin {
    ($open_fn:path, $close_fn:path, $event_fn:path, $handle_ty:ty) => {
        /// Called by OpenVPN when the plugin is first loaded on OpenVPN start.
        /// Used to register which events the plugin wants to listen to (`args.type_mask`). Can
        /// also set an arbitrary pointer inside `args.handle` that will then be passed to all
        /// subsequent calls to the plugin.
        ///
        /// Will parse the data from OpenVPN and call the function given as `$open_fn` to the
        /// `openvpn_plugin` macro.
        #[no_mangle]
        pub unsafe extern "C" fn openvpn_plugin_open_v3(
            _version: ::std::os::raw::c_int,
            args: *const $crate::ffi::openvpn_plugin_args_open_in,
            retptr: *mut $crate::ffi::openvpn_plugin_args_open_return,
        ) -> ::std::os::raw::c_int {
            unsafe { $crate::openvpn_plugin_open::<$handle_ty, _, _>(args, retptr, $open_fn) }
        }

        /// Called by OpenVPN when the plugin is unloaded, just before OpenVPN shuts down.
        /// Will call the function given as `$event_fn` to the `openvpn_plugin` macro.
        #[no_mangle]
        pub unsafe extern "C" fn openvpn_plugin_close_v1(handle: *const ::std::os::raw::c_void) {
            unsafe { $crate::openvpn_plugin_close::<$handle_ty, _>(handle, $close_fn) }
        }

        /// Called by OpenVPN for each `OPENVPN_PLUGIN_*` event that it registered for in
        /// the open function.
        ///
        /// Will parse the data from OpenVPN and call the function given as `$event_fn` to the
        /// `openvpn_plugin` macro.
        #[no_mangle]
        pub unsafe extern "C" fn openvpn_plugin_func_v3(
            _version: ::std::os::raw::c_int,
            args: *const $crate::ffi::openvpn_plugin_args_func_in,
            _retptr: *const $crate::ffi::openvpn_plugin_args_func_return,
        ) -> ::std::os::raw::c_int {
            unsafe { $crate::openvpn_plugin_func::<$handle_ty, _, _>(args, $event_fn) }
        }
    };
}


/// Internal macro for matching on a result and either return the value inside the `Ok`, or in the
/// case of an `Err`, log it and early return [`OPENVPN_PLUGIN_FUNC_ERROR`].
///
/// [`OPENVPN_PLUGIN_FUNC_ERROR`]: ffi/constant.OPENVPN_PLUGIN_FUNC_ERROR.html
macro_rules! try_or_return_error {
    ($result:expr, $error_msg:expr) => {
        match $result {
            Ok(result) => result,
            Err(e) => {
                logging::log_error(&Error::new($error_msg, e));
                return ffi::OPENVPN_PLUGIN_FUNC_ERROR;
            }
        }
    };
}


/// Internal helper function. This function should never be called manually, only by code generated
/// by the [`openvpn_plugin!`] macro.
///
/// [`openvpn_plugin!`]: macro.openvpn_plugin.html
#[doc(hidden)]
pub unsafe fn openvpn_plugin_open<H, E, F>(
    args: *const ffi::openvpn_plugin_args_open_in,
    retptr: *mut ffi::openvpn_plugin_args_open_return,
    open_fn: F,
) -> c_int
where
    E: ::std::error::Error,
    F: panic::RefUnwindSafe,
    F: Fn(Vec<CString>, HashMap<CString, CString>) -> Result<(Vec<EventType>, H), E>,
{
    let parsed_args = try_or_return_error!(
        ffi::parse::string_array((*args).argv),
        "Malformed args from OpenVPN"
    );
    let parsed_env =
        try_or_return_error!(ffi::parse::env((*args).envp), "Malformed env from OpenVPN");

    match panic::catch_unwind(|| open_fn(parsed_args, parsed_env)) {
        Ok(Ok((events, handle))) => {
            (*retptr).type_mask = types::events_to_bitmask(&events);
            (*retptr).handle = Box::into_raw(Box::new(handle)) as *const c_void;
            ffi::OPENVPN_PLUGIN_FUNC_SUCCESS
        }
        Ok(Err(e)) => {
            logging::log_error(&e);
            ffi::OPENVPN_PLUGIN_FUNC_ERROR
        }
        Err(e) => {
            logging::log_panic("plugin open", &e);
            ffi::OPENVPN_PLUGIN_FUNC_ERROR
        }
    }
}


/// Internal helper function. This function should never be called manually, only by code generated
/// by the [`openvpn_plugin!`] macro.
///
/// [`openvpn_plugin!`]: macro.openvpn_plugin.html
#[doc(hidden)]
pub unsafe fn openvpn_plugin_close<H, F>(handle: *const c_void, close_fn: F)
where
    H: panic::UnwindSafe,
    F: Fn(H) + panic::RefUnwindSafe,
{
    // IMPORTANT: Bring the handle object back from a raw pointer. This will cause the
    // handle object to be properly deallocated when `$close_fn` returns.
    let handle = *Box::from_raw(handle as *mut H);
    if let Err(e) = panic::catch_unwind(|| close_fn(handle)) {
        logging::log_panic("plugin close", &e);
    }
}


/// Internal helper function. This function should never be called manually, only by code generated
/// by the [`openvpn_plugin!`] macro.
///
/// [`openvpn_plugin!`]: macro.openvpn_plugin.html
#[doc(hidden)]
pub unsafe fn openvpn_plugin_func<H, E, F>(
    args: *const ffi::openvpn_plugin_args_func_in,
    event_fn: F,
) -> c_int
where
    E: ::std::error::Error,
    F: panic::RefUnwindSafe,
    F: Fn(EventType, Vec<CString>, HashMap<CString, CString>, &mut H) -> Result<EventResult, E>,
{
    let event_type = (*args).event_type;
    let event = try_or_return_error!(
        EventType::try_from(event_type).map_err(|_| InvalidEventType(event_type)),
        "Invalid event integer"
    );
    let parsed_args = try_or_return_error!(
        ffi::parse::string_array((*args).argv),
        "Malformed args from OpenVPN"
    );
    let parsed_env =
        try_or_return_error!(ffi::parse::env((*args).envp), "Malformed env from OpenVPN");

    let result = panic::catch_unwind(|| {
        let handle: &mut H = &mut *((*args).handle as *mut H);
        event_fn(event, parsed_args, parsed_env, handle)
    });

    match result {
        Ok(Ok(EventResult::Success)) => ffi::OPENVPN_PLUGIN_FUNC_SUCCESS,
        Ok(Ok(EventResult::Deferred)) => ffi::OPENVPN_PLUGIN_FUNC_DEFERRED,
        Ok(Ok(EventResult::Failure)) => ffi::OPENVPN_PLUGIN_FUNC_ERROR,
        Ok(Err(e)) => {
            logging::log_error(&e);
            ffi::OPENVPN_PLUGIN_FUNC_ERROR
        }
        Err(e) => {
            logging::log_panic("plugin func", &e);
            ffi::OPENVPN_PLUGIN_FUNC_ERROR
        }
    }
}


/// Internal error type
#[derive(Debug)]
struct Error {
    msg: &'static str,
    source: Box<dyn (::std::error::Error)>,
}

impl Error {
    pub(crate) fn new(msg: &'static str, source: impl std::error::Error + 'static) -> Error {
        Error {
            msg,
            source: Box::new(source) as Box<dyn std::error::Error>,
        }
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.msg.fmt(f)
    }
}

impl std::error::Error for Error {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        Some(self.source.as_ref())
    }
}

/// Error thrown when trying to convert from an invalid integer into an `Event`.
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
struct InvalidEventType(c_int);

impl fmt::Display for InvalidEventType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{} is not a valid OPENVPN_PLUGIN_* constant", self.0)
    }
}

impl std::error::Error for InvalidEventType {}