summaryrefslogtreecommitdiff
path: root/vpn
AgeCommit message (Collapse)AuthorFilesLines
2013-03-08vpn-config: Ignore IN_CREATE as IN_MODIFY is called anywayJukka Rissanen1-8/+20
Inotify will send modify event after create event when user has copied the config file into config directory. Because of this it is useless to act on create event. As a bonus we avoid create/modify/create loop that was earlier done in the modify event handling code.
2013-03-08vpn-provider: Do not save or load provisioned VPN connectionsJukka Rissanen1-3/+13
The vpnd will not read or save provider data from disk. Only way to provision VPN is by setting necessary data in VPN .config file.
2013-03-08vpn-provider: SetProperty and ClearProperty do not work if immutableJukka Rissanen1-0/+6
Immutable VPN connection settings cannot be changed by SetProperty or ClearProperty dbus API.
2013-03-08vpn-provider: Introduce immutable flag to provider dataJukka Rissanen1-0/+5
2013-03-08vpn-provider: Do not allow changes to settings that are immutableJukka Rissanen2-5/+26
The immutable settings are those that are read from .config file.
2013-03-08vpn-provider: Do not quit vpnd if there are no VPN configurationsJukka Rissanen3-27/+0
Because we now support provisioning of VPN services via .config file, we need to keep vpnd running so that it can monitor the connman-vpn directory for new config files.
2013-02-28vpn-provider: Parse user networks correctlyJukka Rissanen1-1/+5
Check NULL string before passing it to g_strsplit()
2013-02-19vpn-provider: SetProperty works with all propertiesJukka Rissanen1-2/+6
2013-02-19vpn-provider: ClearProperty works with all propertiesJukka Rissanen1-0/+2
2013-02-19vpn-provider: Allow use of Domain property nameJukka Rissanen1-3/+6
Allow use of both VPN.Domain and Domain property strings.
2013-02-19vpn-provider: Add GetProperties method implementationJukka Rissanen1-0/+42
2013-02-19vpn-provider: Do not send state property if state is not changedJukka Rissanen1-1/+5
2013-02-19vpn-provider: Setting VPN properties will send PropertyChanged signalJukka Rissanen1-31/+67
2013-02-19vpn-provider: Set the state to FAILURE after auth errorJukka Rissanen1-0/+1
2013-02-19vpn-provider: Go internally into IDLE after FAILUREJukka Rissanen1-0/+7
Do not stay in FAILURE state as clients like connmand can get confused about our current state. Symptom for the problem is that after a failed connect attempt, a new connect attempt by the client would cause immediately a failure return code because vpnd is still in FAILURE state. The actual connect attempt might still succeed but then the client would not know about the success status. By setting the state to IDLE we avoid this confusion.
2013-02-19pptp: Set the username/password before starting daemonJukka Rissanen1-4/+4
This is required in order to avoid free memory access that is happening if we call vpn_provider_set_string() with same string that is already in the settings db.
2013-02-19l2tp: Set the username/password before starting daemonJukka Rissanen1-4/+4
This is required in order to avoid free memory access that is happening if we call vpn_provider_set_string() with same string that is already in the settings db.
2013-02-19vpn-provider: Make state debug print more usefulJukka Rissanen1-2/+1
Print the state value as a string as it is useful information.
2013-02-19vpn-provider: Avoid printing password to log filesJukka Rissanen4-5/+22
Add a variant to vpn_provider_set_string() that does not print sensitive data like password in clear text to log files.
2013-02-19l2tp: Clear password if authentication failsJukka Rissanen1-1/+7
This allows plugin to query agent so that user can give correct password.
2013-02-19pptp: Clear password if authentication failsJukka Rissanen1-1/+7
This allows plugin to query agent so that user can give new password. Fixes BMC#25963
2013-02-19main: Create VPN_STORAGEDIR when starting upJukka Rissanen1-0/+10
Eventually all VPN directories from STORAGEDIR is to be migrated into VPN_STORAGEDIR
2013-02-19vpn-provider: Add extra whitespaceJukka Rissanen1-1/+1
2013-02-19vpn-provider: Add route support in vpn config fileJukka Rissanen2-16/+86
2013-02-19vpn-provider: Remove unprovisioned providers at startupJukka Rissanen1-1/+79
Check if there are any providers that were provisioned but their .config file is removed. If such providers are found, then remove the provider files from file system.
2013-02-19vpn-provider: Type string in provider needs to be in lower caseJukka Rissanen1-1/+1
2013-02-19vpn-config: Provision providers from .config fileJukka Rissanen3-0/+605
2013-02-19vpn-provider: Initial .config file supportJukka Rissanen2-17/+140
2013-02-19pptp: Use PPPD prefix for pppd specific optionsJukka Rissanen1-18/+44
For backward compatibility purposes, support also the PPTP prefix for PPPD options.
2013-02-19l2tp: Use PPPD prefix for pppd specific optionsJukka Rissanen1-21/+47
For backward compatibility purposes, support also the L2TP prefix for PPPD options.
2013-02-19l2tp: Add rx and tx bps pppd optionsJukka Rissanen1-0/+2
2013-02-19l2tp: Fixed the nodeflate pppd option nameJukka Rissanen1-1/+1
2013-01-08vpn-provider: Check if providers list is NULL before using itPatrik Flykt1-0/+3
2012-12-14vpn-provider: Report disconnect errors other than -EINPROGRESSPatrik Flykt1-3/+3
Return code -EINPROGRESS is an indication of a disconnect taking place, not a disconnect error.
2012-12-14vpn-provider: Set state when connecting and disconnectingPatrik Flykt1-7/+6
Update provider state when connect or disconnect is initiated.
2012-12-14vpn-plugin: Send proper response to caller and connect if neededPatrik Flykt1-11/+30
Send a proper response to the caller and attempt to connect if the provider data exists but is not connected.
2012-11-30pptp: Header file was missingJukka Rissanen1-0/+1
2012-11-30l2tp: Header file was missingJukka Rissanen1-0/+1
2012-11-30pptp: Clear password when disconnectingJukka Rissanen1-0/+6
2012-11-30l2tp: Clear password when disconnectingJukka Rissanen1-0/+6
2012-11-30vpn: Driver disconnect needs provider informationJukka Rissanen2-2/+2
The provider pointer needs to be passed to VPN driver when disconnecting. Otherwise we cannot find the correct provider that is being disconnected.
2012-11-30vpn-provider: Unregister provider from dbus when freedJukka Rissanen1-32/+36
The provider object was not unregistered from dbus watch when the provider was removed which caused free memory access error.
2012-11-30vpn-provider: Register agent driverJukka Rissanen1-0/+30
2012-11-30pptp: Do not save the passwordJukka Rissanen1-6/+0
2012-11-30l2tp: Do not save the passwordJukka Rissanen1-6/+0
2012-11-30pptp: Ask username and password from agentJukka Rissanen1-8/+242
2012-11-30l2tp: Ask username and password from agentJukka Rissanen2-12/+241
2012-11-30vpn-agent: Routine to add username and password into agent dictJukka Rissanen2-0/+48
2012-11-30openconnect: Add support for --no-cert-check client optionJukka Rissanen1-1/+51
2012-11-30openconnect: Domain pointer was used incorrectlyJukka Rissanen1-4/+8
We must allocate the domain name from the heap and not point to it directly because the dbus library will deallocate it and we will have invalid memory access.