Struct ConfigurationProxy

Source
pub struct ConfigurationProxy<'c>(/* private fields */);
Expand description

Configuration Service

Stores VPN configuration profiles in a format used by the OpenVPN 3 Core library.

OpenVPN Documentation

Implementations§

Source§

impl<'c> ConfigurationProxy<'c>

Source

pub async fn new(conn: &Connection) -> Result<ConfigurationProxy<'c>>

Creates a new proxy with the default service and path.

Examples found in repository?
examples/basic.rs (line 41)
38fn main() {
39    task::block_on(async {
40        let connection = zbus::Connection::system().await.unwrap();
41        let config_manager = openvpn3_rs::ConfigurationProxy::new(&connection)
42            .await
43            .unwrap();
44        let config = config_manager
45            .import("My VPN", CONFIG_STR, true, false)
46            .await
47            .unwrap();
48
49        let sessions_manager = openvpn3_rs::SessionsProxy::new(&connection).await.unwrap();
50        let session = sessions_manager.new_tunnel(&config.path()).await.unwrap();
51
52        let mut ready = false;
53        while !ready {
54            // If the session is ready, the `ready()` method will return Ok(), otherwise an error will be returned with more details.
55            if let Err(err) = session.ready().await {
56                let err_str = err.to_string();
57                if err_str.contains("Missing user credentials") {
58                    // This loop queries the session for which credentials are needed. This example covers username/password authentication.
59
60                    let ui_type_group = session.user_input_queue_get_type_group().await.unwrap();
61
62                    for (ca_type, ca_group) in ui_type_group {
63                        let ui_queue_ids = session
64                            .user_input_queue_check(ca_type, ca_group)
65                            .await
66                            .unwrap();
67
68                        for id in ui_queue_ids {
69                            let (ca_type, ca_group, id, name, _description, _hidden_input) =
70                                session
71                                    .user_input_queue_fetch(ca_type, ca_group, id)
72                                    .await
73                                    .unwrap();
74
75                            if name == "username" {
76                                session
77                                    .user_input_provide(ca_type, ca_group, id, "smith")
78                                    .await
79                                    .unwrap();
80                            }
81
82                            if name == "password" {
83                                session
84                                    .user_input_provide(ca_type, ca_group, id, "hunter2")
85                                    .await
86                                    .unwrap();
87                            }
88                        }
89                    }
90                } else if err_str.contains("Backend VPN process is not ready") {
91                    task::sleep(std::time::Duration::from_secs(1)).await;
92                }
93            } else {
94                ready = true;
95            }
96        }
97
98        session.connect().await.unwrap();
99
100        // wait for signal to disconnect
101
102        session.disconnect().await.unwrap();
103    });
104}
Source

pub fn builder(conn: &Connection) -> ProxyBuilder<'c, Self>

Returns a customizable builder for this proxy.

Source

pub fn into_inner(self) -> Proxy<'c>

Consumes self, returning the underlying zbus::Proxy.

Source

pub fn inner(&self) -> &Proxy<'c>

The reference to the underlying zbus::Proxy.

Source

pub async fn fetch_available_configs(&self) -> Result<Vec<OwnedObjectPath>>

FetchAvailableConfigs method

This method will return an array of object paths to configuration objects the caller is granted access to.

Source

pub async fn import( &self, name: &str, config_str: &str, single_use: bool, persistent: bool, ) -> Result<ConfigurationNodeProxy<'c>>

Import method

This method imports a configuration profile. The configuration must be represented as a string blob containing everything.

§Arguments
  • name - User friendly name of the profile. To be used in user front-ends.
  • config_str - Content of config file. All files must be embedded inline.
  • single_use - If set to true, it will be removed from memory on first use.
  • persistent - If set to true, the configuration will be saved to disk.
§Returns

A unique D-Bus object path for the imported VPN configuration profile

Examples found in repository?
examples/basic.rs (line 45)
38fn main() {
39    task::block_on(async {
40        let connection = zbus::Connection::system().await.unwrap();
41        let config_manager = openvpn3_rs::ConfigurationProxy::new(&connection)
42            .await
43            .unwrap();
44        let config = config_manager
45            .import("My VPN", CONFIG_STR, true, false)
46            .await
47            .unwrap();
48
49        let sessions_manager = openvpn3_rs::SessionsProxy::new(&connection).await.unwrap();
50        let session = sessions_manager.new_tunnel(&config.path()).await.unwrap();
51
52        let mut ready = false;
53        while !ready {
54            // If the session is ready, the `ready()` method will return Ok(), otherwise an error will be returned with more details.
55            if let Err(err) = session.ready().await {
56                let err_str = err.to_string();
57                if err_str.contains("Missing user credentials") {
58                    // This loop queries the session for which credentials are needed. This example covers username/password authentication.
59
60                    let ui_type_group = session.user_input_queue_get_type_group().await.unwrap();
61
62                    for (ca_type, ca_group) in ui_type_group {
63                        let ui_queue_ids = session
64                            .user_input_queue_check(ca_type, ca_group)
65                            .await
66                            .unwrap();
67
68                        for id in ui_queue_ids {
69                            let (ca_type, ca_group, id, name, _description, _hidden_input) =
70                                session
71                                    .user_input_queue_fetch(ca_type, ca_group, id)
72                                    .await
73                                    .unwrap();
74
75                            if name == "username" {
76                                session
77                                    .user_input_provide(ca_type, ca_group, id, "smith")
78                                    .await
79                                    .unwrap();
80                            }
81
82                            if name == "password" {
83                                session
84                                    .user_input_provide(ca_type, ca_group, id, "hunter2")
85                                    .await
86                                    .unwrap();
87                            }
88                        }
89                    }
90                } else if err_str.contains("Backend VPN process is not ready") {
91                    task::sleep(std::time::Duration::from_secs(1)).await;
92                }
93            } else {
94                ready = true;
95            }
96        }
97
98        session.connect().await.unwrap();
99
100        // wait for signal to disconnect
101
102        session.disconnect().await.unwrap();
103    });
104}
Source

pub async fn lookup_config_name( &self, config_name: &str, ) -> Result<Vec<OwnedObjectPath>>

LookupConfigName method

This method will return an array of object paths to configuration objects the caller is granted access with the configuration name provided to the method.

§Arguments
  • config_name - String containing the configuration name for the configuration path lookup.
§Returns

An array of object paths to accessible configuration objects

Source

pub async fn transfer_ownership( &self, path: &ObjectPath<'_>, new_owner_uid: u32, ) -> Result<()>

TransferOwnership method

This method transfers the ownership of a configuration profile to the given UID value. This feature is by design restricted to the root account only and is only expected to be used by openvpn3-autoload and similar tools.

§Arguments
  • path - Configuration object path where to modify the owner property.
  • new_owner_uid - UID value of the new owner of the configuration profile.
Source

pub async fn receive_log(&self) -> Result<LogStream<'static>>

Create a stream that receives Log signals.

This a convenient wrapper around zbus::Proxy::receive_signal. Log signal

Whenever the configuration manager wants to log something, it issues a Log signal which carries a log group, log verbosity level and a string with the log message itself. See the separate logging documentation for details on this signal.

Source

pub async fn receive_log_with_args( &self, args: &[(u8, &str)], ) -> Result<LogStream<'static>>

Create a stream that receives Log signals.

This a convenient wrapper around zbus::Proxy::receive_signal_with_args. Log signal

Whenever the configuration manager wants to log something, it issues a Log signal which carries a log group, log verbosity level and a string with the log message itself. See the separate logging documentation for details on this signal.

Source

pub async fn version(&self) -> Result<String>

Version of the currently running service.

Source

pub fn cached_version( &self, ) -> Result<Option<<Result<String> as ResultAdapter>::Ok>, <Result<String> as ResultAdapter>::Err>

Get the cached value of the version property, or None if the property is not cached.

Source

pub async fn receive_version_changed( &self, ) -> PropertyStream<'c, <Result<String> as ResultAdapter>::Ok>

Create a stream for the version property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

Methods from Deref<Target = Proxy<'c>>§

Source

pub fn connection(&self) -> &Connection

Get a reference to the associated connection.

Source

pub fn destination(&self) -> &BusName<'_>

Get a reference to the destination service name.

Source

pub fn path(&self) -> &ObjectPath<'_>

Get a reference to the object path.

Examples found in repository?
examples/basic.rs (line 50)
38fn main() {
39    task::block_on(async {
40        let connection = zbus::Connection::system().await.unwrap();
41        let config_manager = openvpn3_rs::ConfigurationProxy::new(&connection)
42            .await
43            .unwrap();
44        let config = config_manager
45            .import("My VPN", CONFIG_STR, true, false)
46            .await
47            .unwrap();
48
49        let sessions_manager = openvpn3_rs::SessionsProxy::new(&connection).await.unwrap();
50        let session = sessions_manager.new_tunnel(&config.path()).await.unwrap();
51
52        let mut ready = false;
53        while !ready {
54            // If the session is ready, the `ready()` method will return Ok(), otherwise an error will be returned with more details.
55            if let Err(err) = session.ready().await {
56                let err_str = err.to_string();
57                if err_str.contains("Missing user credentials") {
58                    // This loop queries the session for which credentials are needed. This example covers username/password authentication.
59
60                    let ui_type_group = session.user_input_queue_get_type_group().await.unwrap();
61
62                    for (ca_type, ca_group) in ui_type_group {
63                        let ui_queue_ids = session
64                            .user_input_queue_check(ca_type, ca_group)
65                            .await
66                            .unwrap();
67
68                        for id in ui_queue_ids {
69                            let (ca_type, ca_group, id, name, _description, _hidden_input) =
70                                session
71                                    .user_input_queue_fetch(ca_type, ca_group, id)
72                                    .await
73                                    .unwrap();
74
75                            if name == "username" {
76                                session
77                                    .user_input_provide(ca_type, ca_group, id, "smith")
78                                    .await
79                                    .unwrap();
80                            }
81
82                            if name == "password" {
83                                session
84                                    .user_input_provide(ca_type, ca_group, id, "hunter2")
85                                    .await
86                                    .unwrap();
87                            }
88                        }
89                    }
90                } else if err_str.contains("Backend VPN process is not ready") {
91                    task::sleep(std::time::Duration::from_secs(1)).await;
92                }
93            } else {
94                ready = true;
95            }
96        }
97
98        session.connect().await.unwrap();
99
100        // wait for signal to disconnect
101
102        session.disconnect().await.unwrap();
103    });
104}
Source

pub fn interface(&self) -> &InterfaceName<'_>

Get a reference to the interface.

Source

pub async fn introspect(&self) -> Result<String, Error>

Introspect the associated object, and return the XML description.

See the xml or quick_xml module for parsing the result.

Source

pub fn cached_property<T>( &self, property_name: &str, ) -> Result<Option<T>, Error>

Get the cached value of the property property_name.

This returns None if the property is not in the cache. This could be because the cache was invalidated by an update, because caching was disabled for this property or proxy, or because the cache has not yet been populated. Use get_property to fetch the value from the peer.

Source

pub fn cached_property_raw<'p>( &'p self, property_name: &'p str, ) -> Option<impl Deref<Target = Value<'static>> + 'p>

Get the cached value of the property property_name.

Same as cached_property, but gives you access to the raw value stored in the cache. This is useful if you want to avoid allocations and cloning.

Source

pub async fn get_property<T>(&self, property_name: &str) -> Result<T, Error>

Get the property property_name.

Get the property value from the cache (if caching is enabled) or call the Get method of the org.freedesktop.DBus.Properties interface.

Source

pub async fn set_property<'t, T>( &self, property_name: &str, value: T, ) -> Result<(), Error>
where T: 't + Into<Value<'t>>,

Set the property property_name.

Effectively, call the Set method of the org.freedesktop.DBus.Properties interface.

Source

pub async fn call_method<'m, M, B>( &self, method_name: M, body: &B, ) -> Result<Arc<Message>, Error>

Call a method and return the reply.

Typically, you would want to use call method instead. Use this method if you need to deserialize the reply message manually (this way, you can avoid the memory allocation/copying, by deserializing the reply to an unowned type).

Source

pub async fn call<'m, M, B, R>( &self, method_name: M, body: &B, ) -> Result<R, Error>

Call a method and return the reply body.

Use call_method instead if you need to deserialize the reply manually/separately.

Source

pub async fn call_with_flags<'m, M, B, R>( &self, method_name: M, flags: BitFlags<MethodFlags>, body: &B, ) -> Result<Option<R>, Error>

Call a method and return the reply body, optionally supplying a set of method flags to control the way the method call message is sent and handled.

Use call instead if you do not need any special handling via additional flags. If the NoReplyExpected flag is passed , this will return None immediately after sending the message, similar to call_noreply

Source

pub async fn call_noreply<'m, M, B>( &self, method_name: M, body: &B, ) -> Result<(), Error>

Call a method without expecting a reply

This sets the NoReplyExpected flag on the calling message and does not wait for a reply.

Source

pub async fn receive_signal<'m, M>( &self, signal_name: M, ) -> Result<SignalStream<'m>, Error>
where M: TryInto<MemberName<'m>>, <M as TryInto<MemberName<'m>>>::Error: Into<Error>,

Create a stream for signal named signal_name.

Source

pub async fn receive_signal_with_args<'m, M>( &self, signal_name: M, args: &[(u8, &str)], ) -> Result<SignalStream<'m>, Error>
where M: TryInto<MemberName<'m>>, <M as TryInto<MemberName<'m>>>::Error: Into<Error>,

Same as Proxy::receive_signal but with a filter.

The D-Bus specification allows you to filter signals by their arguments, which helps avoid a lot of unnecessary traffic and processing since the filter is run on the server side. Use this method where possible. Note that this filtering is limited to arguments of string types.

The arguments are passed as a tuples of argument index and expected value.

Source

pub async fn receive_all_signals(&self) -> Result<SignalStream<'static>, Error>

Create a stream for all signals emitted by this service.

Source

pub async fn receive_property_changed<'name, T>( &self, name: &'name str, ) -> PropertyStream<'a, T>
where 'name: 'a,

Get a stream to receive property changed events.

Note that zbus doesn’t queue the updates. If the listener is slower than the receiver, it will only receive the last update.

If caching is not enabled on this proxy, the resulting stream will not return any events.

Source

pub async fn receive_owner_changed( &self, ) -> Result<OwnerChangedStream<'_>, Error>

Get a stream to receive destination owner changed events.

If the proxy destination is a unique name, the stream will be notified of the peer disconnection from the bus (with a None value).

If the proxy destination is a well-known name, the stream will be notified whenever the name owner is changed, either by a new peer being granted ownership (Some value) or when the name is released (with a None value).

Note that zbus doesn’t queue the updates. If the listener is slower than the receiver, it will only receive the last update.

Trait Implementations§

Source§

impl<'c> AsMut<Proxy<'c>> for ConfigurationProxy<'c>

Source§

fn as_mut(&mut self) -> &mut Proxy<'c>

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl<'c> AsRef<Proxy<'c>> for ConfigurationProxy<'c>

Source§

fn as_ref(&self) -> &Proxy<'c>

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<'c> Clone for ConfigurationProxy<'c>

Source§

fn clone(&self) -> ConfigurationProxy<'c>

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'c> Debug for ConfigurationProxy<'c>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'c> Deref for ConfigurationProxy<'c>

Source§

type Target = Proxy<'c>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<'c> DerefMut for ConfigurationProxy<'c>

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl<'c> From<Proxy<'c>> for ConfigurationProxy<'c>

Source§

fn from(proxy: Proxy<'c>) -> Self

Converts to this type from the input type.
Source§

impl<'a> ProxyDefault for ConfigurationProxy<'a>

Source§

const INTERFACE: &'static str = "net.openvpn.v3.configuration"

Source§

const DESTINATION: &'static str = "net.openvpn.v3.configuration"

Source§

const PATH: &'static str = "/net/openvpn/v3/configuration"

Source§

impl<'c> Serialize for ConfigurationProxy<'c>

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<'c> Type for ConfigurationProxy<'c>

Source§

fn signature() -> Signature<'static>

Get the signature for the implementing type. Read more

Auto Trait Implementations§

§

impl<'c> Freeze for ConfigurationProxy<'c>

§

impl<'c> !RefUnwindSafe for ConfigurationProxy<'c>

§

impl<'c> Send for ConfigurationProxy<'c>

§

impl<'c> Sync for ConfigurationProxy<'c>

§

impl<'c> Unpin for ConfigurationProxy<'c>

§

impl<'c> !UnwindSafe for ConfigurationProxy<'c>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynamicType for T
where T: Type + ?Sized,

Source§

fn dynamic_signature(&self) -> Signature<'_>

Get the signature for the implementing type. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more