Tizen Native API
5.5
|
The Virtual Private Network (VPN) API provides functions for managing VPN.
#include <vpn_service.h>
The VPN Service functions for managing VPN. There can be only one VPN connection running at the same time. The existing interface is deactivated when a new one is created. Using the VPN Service, you can implement features that allow the users of your application to:
This API is related with the following features:
Functions | |
int | vpnsvc_init (const char *iface_name, vpnsvc_h *handle) |
Initializes VPN interface. | |
int | vpnsvc_deinit (vpnsvc_h handle) |
De-Initializes VPN interface. | |
int | vpnsvc_protect (vpnsvc_h handle, int socket_fd, const char *iface_name) |
Protect a socket from VPN connections. | |
int | vpnsvc_read (vpnsvc_h handle, int timeout_ms) |
Waits for the read event on VPN interface descriptor, but no more than the indicated timeout in milliseconds. | |
int | vpnsvc_write (vpnsvc_h handle, const char *data, size_t size) |
Writes the data supplied into the VPN interface. | |
int | vpnsvc_block_networks (vpnsvc_h handle, char *routes_dest_vpn_addr[], int routes_vpn_prefix[], size_t num_allow_routes_vpn, char *routes_dest_orig_addr[], int routes_orig_prefix[], size_t num_allow_routes_orig) |
Blocks all traffics except specified allowing networks. | |
int | vpnsvc_unblock_networks (vpnsvc_h handle) |
Removes any restrictions imposed by vpnsvc_block_networks(). | |
int | vpnsvc_update_settings (vpnsvc_h handle) |
Updates settings (Local IP / Remote IP / MTU). | |
int | vpnsvc_get_iface_fd (vpnsvc_h handle, int *iface_fd) |
Gets the fd of the VPN interface. | |
int | vpnsvc_get_iface_index (vpnsvc_h handle, int *iface_index) |
Gets the index of VPN interface. | |
int | vpnsvc_get_iface_name (vpnsvc_h handle, char **iface_name) |
Gets the name of VPN interface. | |
int | vpnsvc_set_mtu (vpnsvc_h handle, int mtu) |
Sets the MTU of the VPN interface. | |
int | vpnsvc_set_blocking (vpnsvc_h handle, bool blocking) |
Sets blocking mode of the file descriptor of VPN interface. | |
int | vpnsvc_set_session (vpnsvc_h handle, const char *session) |
Sets the session name for the VPN. (It will be displayed in system-managed dialogs and notifications.) | |
int | vpnsvc_get_session (vpnsvc_h handle, char **session) |
Gets the session name for the VPN. | |
int | vpnsvc_set_local_ip_address (vpnsvc_h handle, const char *local_ip) |
Sets the VPN client IP address. | |
int | vpnsvc_set_remote_ip_address (vpnsvc_h handle, const char *remote_ip) |
Sets the VPN server IP address. | |
int | vpnsvc_add_route (vpnsvc_h handle, const char *route_address, int prefix) |
Adds the route address. | |
int | vpnsvc_remove_route (vpnsvc_h handle, const char *route_address, int prefix) |
Removes the route address. | |
int | vpnsvc_add_dns_server (vpnsvc_h handle, const char *dns_server) |
Adds the DNS server name. | |
int | vpnsvc_remove_dns_server (vpnsvc_h handle, const char *dns_server) |
Removes the DNS server name. | |
Typedefs | |
typedef void * | vpnsvc_h |
The VPN interface handle. |
typedef void* vpnsvc_h |
The VPN interface handle.
This handle can be obtained by calling vpnsvc_init() and destroyed by calling vpnsvc_deinit().
enum vpnsvc_error_e |
Enumeration for VPN service error types.
Indicate formats of error type field
int vpnsvc_add_dns_server | ( | vpnsvc_h | handle, |
const char * | dns_server | ||
) |
Adds the DNS server name.
[in] | handle | The VPN interface handle |
[in] | dns_server | The DNS server address (IPv4 only) |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IO_ERROR | I/O Error (e.g. socket I/O error) |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_add_route | ( | vpnsvc_h | handle, |
const char * | route_address, | ||
int | prefix | ||
) |
Adds the route address.
[in] | handle | The VPN interface handle |
[in] | route_address | Destination address of the routes (IPv4 only) |
[in] | prefix | The prefix of routes, netmask length (also called a prefix, e.g. 8, 16, 24, 32) |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IO_ERROR | I/O Error (e.g. socket I/O error) |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_block_networks | ( | vpnsvc_h | handle, |
char * | routes_dest_vpn_addr[], | ||
int | routes_vpn_prefix[], | ||
size_t | num_allow_routes_vpn, | ||
char * | routes_dest_orig_addr[], | ||
int | routes_orig_prefix[], | ||
size_t | num_allow_routes_orig | ||
) |
Blocks all traffics except specified allowing networks.
[in] | handle | The VPN interface handle |
[in] | routes_dest_vpn_addr | Destination address of the routes, the list of allowing networks over VPN interface (e.g., VPN interface such as tun0, etc). |
[in] | routes_vpn_prefix | The prefix of VPN interface, netmask length (also called a prefix, e.g. 8, 16, 24, 32). |
[in] | num_allow_routes_vpn | The number of allowing networks over VPN interface |
[in] | routes_dest_orig_addr | Destination address of the routes, the list of allowing networks over the original interface (e.g., original interface such as eth0, wlan0, etc). |
[in] | routes_orig_prefix | The prefix of Original interface, netmask length (also called a prefix, e.g. 8, 16, 24, 32). |
[in] | num_allow_routes_orig | The number of allowing networks over the original interface |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IPC_FAILED | Cannot connect to service daemon |
VPNSVC_ERROR_PERMISSION_DENIED | Permission Denied |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_deinit | ( | vpnsvc_h | handle | ) |
De-Initializes VPN interface.
[in] | handle | The VPN interface handle |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IPC_FAILED | Cannot connect to service daemon |
VPNSVC_ERROR_PERMISSION_DENIED | Permission Denied |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_get_iface_fd | ( | vpnsvc_h | handle, |
int * | iface_fd | ||
) |
Gets the fd of the VPN interface.
[in] | handle | The VPN interface handle |
[out] | iface_fd | The vpn interface fd |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_get_iface_index | ( | vpnsvc_h | handle, |
int * | iface_index | ||
) |
Gets the index of VPN interface.
[in] | handle | The VPN interface handle |
[out] | iface_index | The VPN interface index |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_get_iface_name | ( | vpnsvc_h | handle, |
char ** | iface_name | ||
) |
Gets the name of VPN interface.
[in] | handle | The VPN interface handle |
[out] | iface_name | The name of VPN interface name |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_get_session | ( | vpnsvc_h | handle, |
char ** | session | ||
) |
Gets the session name for the VPN.
[in] | handle | The VPN interface handle |
[out] | session | The Session Name returned |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_init | ( | const char * | iface_name, |
vpnsvc_h * | handle | ||
) |
Initializes VPN interface.
You should call vpnsvc_get_iface_name() for checking the actual initialized VPN interface name. (In case of duplicated interface name)
[in] | iface_name | The VPN interface name |
[out] | handle | The VPN interface handle |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IO_ERROR | I/O Error (e.g. socket I/O error) |
VPNSVC_ERROR_IPC_FAILED | Cannot connect to service daemon |
VPNSVC_ERROR_PERMISSION_DENIED | Permission Denied |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_protect | ( | vpnsvc_h | handle, |
int | socket_fd, | ||
const char * | iface_name | ||
) |
Protect a socket from VPN connections.
After protecting, data sent through this socket will go directly to the underlying network.
[in] | handle | The VPN interface handle |
[in] | socket_fd | The opened socket file descriptor |
[in] | iface_name | The network interface name (e.g., interface name such as eth0, ppp0, etc) through which the VPN is working |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IO_ERROR | I/O Error (e.g. socket I/O error) |
VPNSVC_ERROR_IPC_FAILED | Cannot connect to service daemon |
VPNSVC_ERROR_PERMISSION_DENIED | Permission Denied |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_read | ( | vpnsvc_h | handle, |
int | timeout_ms | ||
) |
Waits for the read event on VPN interface descriptor, but no more than the indicated timeout in milliseconds.
[in] | handle | The VPN interface handle |
[in] | timeout_ms | The value of timeout (milliseconds) |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IO_ERROR | I/O Error (e.g. socket I/O error) |
VPNSVC_ERROR_TIMEOUT | Timeout (no answer in timeout_ms) |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_remove_dns_server | ( | vpnsvc_h | handle, |
const char * | dns_server | ||
) |
Removes the DNS server name.
[in] | handle | The VPN interface handle |
[in] | dns_server | The DNS server address (IPv4 only) |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IO_ERROR | I/O Error (e.g. socket I/O error) |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_remove_route | ( | vpnsvc_h | handle, |
const char * | route_address, | ||
int | prefix | ||
) |
Removes the route address.
[in] | handle | The VPN interface handle |
[in] | route_address | Destination address of the routes (IPv4 only) |
[in] | prefix | The prefix of routes, netmask length (also called a prefix, e.g. 8, 16, 24, 32) |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IO_ERROR | I/O Error (e.g. socket I/O error) |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_set_blocking | ( | vpnsvc_h | handle, |
bool | blocking | ||
) |
Sets blocking mode of the file descriptor of VPN interface.
[in] | handle | The VPN interface handle |
[in] | blocking | The blocking mode flag; True = BLOCKING, False = NON_BLOCKING (Default : BLOCKING) |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IO_ERROR | Failed to set the blocking flags |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_set_local_ip_address | ( | vpnsvc_h | handle, |
const char * | local_ip | ||
) |
Sets the VPN client IP address.
[in] | handle | The VPN interface handle |
[in] | local_ip | The local (VPN client) IP address (IPv4 only) |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IO_ERROR | I/O Error (e.g. socket I/O error) |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_set_mtu | ( | vpnsvc_h | handle, |
int | mtu | ||
) |
Sets the MTU of the VPN interface.
[in] | handle | The VPN interface handle |
[in] | mtu | The MTU (Maximum Transmission Unit) value to be set for VPN interface. Default MTU size is 1500. |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IO_ERROR | I/O Error (e.g. socket I/O error) |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_set_remote_ip_address | ( | vpnsvc_h | handle, |
const char * | remote_ip | ||
) |
Sets the VPN server IP address.
[in] | handle | The VPN interface handle |
[in] | remote_ip | The remote (VPN server) IP address (IPv4 only) |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IO_ERROR | I/O Error (e.g. socket I/O error) |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_set_session | ( | vpnsvc_h | handle, |
const char * | session | ||
) |
Sets the session name for the VPN. (It will be displayed in system-managed dialogs and notifications.)
[in] | handle | The VPN interface handle |
[in] | session | The Session Name |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_unblock_networks | ( | vpnsvc_h | handle | ) |
Removes any restrictions imposed by vpnsvc_block_networks().
[in] | handle | The VPN interface handle |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IPC_FAILED | Cannot connect to service daemon |
VPNSVC_ERROR_PERMISSION_DENIED | Permission Denied |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_update_settings | ( | vpnsvc_h | handle | ) |
Updates settings (Local IP / Remote IP / MTU).
[in] | handle | The VPN interface handle |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_IPC_FAILED | Cannot connect to service daemon |
VPNSVC_ERROR_PERMISSION_DENIED | Permission Denied |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
int vpnsvc_write | ( | vpnsvc_h | handle, |
const char * | data, | ||
size_t | size | ||
) |
Writes the data supplied into the VPN interface.
[in] | handle | The VPN interface handle |
[in] | data | Data writing to VPN interface |
[in] | size | The size of data |
VPNSVC_ERROR_NONE | Success |
VPNSVC_ERROR_INVALID_PARAMETER | Invalid parameter |
VPNSVC_ERROR_NOT_SUPPORTED | Not Supported |
In | case of negative error, please refer to standard posix write API's error code. |