platform/upstream/connman.git
11 years agoinet: Add function to return route to a given host
Jukka Rissanen [Tue, 14 Aug 2012 14:01:02 +0000 (17:01 +0300)]
inet: Add function to return route to a given host

The netlink message handling is modified from iproute.c in iproute2 package.

11 years agowifi: Try only twice when connecting to a non-favorite service
Julien Massot [Tue, 14 Aug 2012 14:21:46 +0000 (16:21 +0200)]
wifi: Try only twice when connecting to a non-favorite service

11 years agoservice: Add getter for favorite flag
Julien Massot [Tue, 14 Aug 2012 14:21:45 +0000 (16:21 +0200)]
service: Add getter for favorite flag

11 years agoiptables: Load table at the right places
Tomasz Bursztyka [Mon, 13 Aug 2012 10:28:52 +0000 (13:28 +0300)]
iptables: Load table at the right places

Using -j/-m options without -t one, will segfault due to table not loaded
before hand.

11 years agoiptables: Refactor default return code usage
Tomasz Bursztyka [Mon, 13 Aug 2012 10:28:51 +0000 (13:28 +0300)]
iptables: Refactor default return code usage

11 years agotools: Refactor where table should be loaded
Tomasz Bursztyka [Mon, 13 Aug 2012 10:28:50 +0000 (13:28 +0300)]
tools: Refactor where table should be loaded

Fixes segfault issues when using a non-builtin target without providing table name.
like: -A OUTPUT -j IDLETIMER (...)
will crash when: -t filter -A OUTPUT -j IDLETIMER (...) will success

11 years agoservice: Disconnect provider after connection timeout
Jukka Rissanen [Mon, 13 Aug 2012 09:51:31 +0000 (12:51 +0300)]
service: Disconnect provider after connection timeout

The provider was not disconnected after a connection timeout.
This lead to weird issues in VPN code; like following provider
connect request would disconnect the earlier VPN connection and
report EALREADY to the user.

11 years agodoc: Improve description of service state property
Lucas De Marchi [Wed, 8 Aug 2012 16:23:59 +0000 (13:23 -0300)]
doc: Improve description of service state property

Add missing "disconnect" state and point to doc/overview-api.txt for
more information about state transitions.

11 years agodundee Create ipconfig before setting index
Daniel Wagner [Fri, 10 Aug 2012 12:23:18 +0000 (14:23 +0200)]
dundee Create ipconfig before setting index

Since connman_network_set_index() does not create magically the
ipconfig for us anymore, we need to create it inside set_connected().

11 years agobluetooth: Defer add_networks() if adapter is not powered yet
Daniel Wagner [Thu, 9 Aug 2012 16:27:53 +0000 (18:27 +0200)]
bluetooth: Defer add_networks() if adapter is not powered yet

In the case we add a new adapter and the adapter is powered off
we would ignore the reported devices. Later when the adapter was
powered on it would just not add those networks.

Instead silently ignoring the devices, store the D-Bus paths in
a hash table and process them as soon the adapter is powered.

Fixes BMC#25322

11 years agobluetooth: Remove unused argument in check_networks()
Daniel Wagner [Thu, 9 Aug 2012 16:27:52 +0000 (18:27 +0200)]
bluetooth: Remove unused argument in check_networks()

11 years agobluetooth: Remove unused argument in add_network()
Daniel Wagner [Thu, 9 Aug 2012 16:27:51 +0000 (18:27 +0200)]
bluetooth: Remove unused argument in add_network()

11 years agoofono: Set IPv6 nameservers
Daniel Wagner [Fri, 10 Aug 2012 09:59:04 +0000 (11:59 +0200)]
ofono: Set IPv6 nameservers

11 years agonetwork: Enable IPv6 on network interface
Elena Tebesoi [Fri, 10 Aug 2012 09:59:03 +0000 (11:59 +0200)]
network: Enable IPv6 on network interface

This patch enables IPv6 usage for network interfaces
with static/manual configuration.

11 years agoipconfig: Allow NULL gateway for IPv6
Elena Tebesoi [Fri, 10 Aug 2012 09:59:02 +0000 (11:59 +0200)]
ipconfig: Allow NULL gateway for IPv6

This patch makes possible configuring a GPRS connection with
IPV6 settings and without gateway.

11 years agoofono: Create ipconfig before setting index
Daniel Wagner [Fri, 10 Aug 2012 09:59:01 +0000 (11:59 +0200)]
ofono: Create ipconfig before setting index

Since connman_network_set_index() does not create magically the
ipconfig for us anymore, we need to create it inside set_connected().

11 years agonetwork: Only set index in connman_network_set_index()
Daniel Wagner [Fri, 10 Aug 2012 09:59:00 +0000 (11:59 +0200)]
network: Only set index in connman_network_set_index()

Service ipconfig structures are no longer created in this
function.

11 years agoservice: Allow plugins to lookup services by networks
Daniel Wagner [Fri, 10 Aug 2012 09:58:59 +0000 (11:58 +0200)]
service: Allow plugins to lookup services by networks

11 years agoservice: Allow plugins access to connman_service_create_ip4/6config
Daniel Wagner [Fri, 10 Aug 2012 09:58:58 +0000 (11:58 +0200)]
service: Allow plugins access to connman_service_create_ip4/6config

11 years agotechnology: Save tethering identifier and passphrase
Julien Massot [Tue, 7 Aug 2012 16:57:06 +0000 (18:57 +0200)]
technology: Save tethering identifier and passphrase

11 years agotechnology: Rename save_state function by technology_save
Julien Massot [Tue, 7 Aug 2012 16:57:05 +0000 (18:57 +0200)]
technology: Rename save_state function by technology_save

11 years agodundee: Clean up device in case of setup failure
Gustavo Padovan [Thu, 9 Aug 2012 21:57:26 +0000 (18:57 -0300)]
dundee: Clean up device in case of setup failure

If the creation and registration of Bluetooth DUN device fails we need to
clean up before return, otherwise we leak memory.

11 years agobluetooth: Add device to hash before registration
Gustavo Padovan [Thu, 9 Aug 2012 21:57:25 +0000 (18:57 -0300)]
bluetooth: Add device to hash before registration

During the connman_device_register() procedure a lookup to the
bluetooth_devices hash table happens, however the device is not on the
hash at this point and the look out fails.

If the registration fails, technology_disable() returns the Failed
message on D-Bus with the error status zero. That happens because we
don't have any device registered.

This patch moves the insertion of the device to before the device
registration.

11 years agodhcp: Apply received hostname option according to conf file setting
Jukka Rissanen [Fri, 10 Aug 2012 08:21:26 +0000 (11:21 +0300)]
dhcp: Apply received hostname option according to conf file setting

We do not use the received DHCP hostname option (12) if system
config file setting says so.

Fixes BMC#25597

11 years agomain: Introduce conf file option to disable hostname updates
Jukka Rissanen [Fri, 10 Aug 2012 08:21:25 +0000 (11:21 +0300)]
main: Introduce conf file option to disable hostname updates

The AllowHostnameUpdates in system config file can be used
to ignore the hostname update request that for example
can be received via DHCP hostname option.

11 years agoprovider: Discard routes to VPN server via VPN tunnel
Jukka Rissanen [Wed, 8 Aug 2012 10:22:48 +0000 (13:22 +0300)]
provider: Discard routes to VPN server via VPN tunnel

These obsolete routes must be discarded as we cannot
contact VPN server via VPN tunnel. If the VPN server
address is not yet resolved, we do that while starting
the VPN client process.

Example of non working routes:
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         UG    0      0        0 vpn0
10.10.15.0      0.0.0.0         255.255.255.0   U     0      0        0 wlan0
10.10.15.1      0.0.0.0         255.255.255.255 UH    0      0        0 wlan0
10.252.112.0    0.0.0.0         255.255.240.0   U     0      0        0 vpn0
193.229.0.40    10.10.15.1      255.255.255.255 UGH   0      0        0 wlan0
193.229.0.42    10.10.15.1      255.255.255.255 UGH   0      0        0 wlan0
113.108.211.91  0.0.0.0         255.255.255.255 UH    0      0        0 vpn0
113.108.211.91  10.10.15.1      255.255.255.255 UGH   0      0        0 wlan0

The correct routes should be like this:
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 vpn0
10.10.15.0      0.0.0.0         255.255.255.0   U     0      0        0 wlan0
10.10.15.1      0.0.0.0         255.255.255.255 UH    0      0        0 wlan0
10.252.112.0    0.0.0.0         255.255.240.0   U     0      0        0 vpn0
193.229.0.40    10.10.15.1      255.255.255.255 UGH   0      0        0 wlan0
193.229.0.42    10.10.15.1      255.255.255.255 UGH   0      0        0 wlan0
113.108.211.91  10.10.15.1      255.255.255.255 UGH   0      0        0 wlan0

11 years agoprovider: Allow VPN connection if not in connected state
Jukka Rissanen [Wed, 8 Aug 2012 10:22:47 +0000 (13:22 +0300)]
provider: Allow VPN connection if not in connected state

Allow user to connect to VPN via dbus and supplying all
VPN parameters if the provider already exists but the VPN
is not in connected state.

This means that the user can call the Manager.ConnectProvider interface
multiple times to connect to VPN service. This patch is needed so that
OpenConnect can work correctly. Without this patch the OpenConnect cookie
cannot be passed to openconnect client program.

11 years agoconnection: Set VPN default route to the VPN interface
Jukka Rissanen [Wed, 8 Aug 2012 10:22:46 +0000 (13:22 +0300)]
connection: Set VPN default route to the VPN interface

Do not bother setting individual routes for default gateway so
for VPN we set the whole interface as a default gateway route.

11 years agoconnection: Add more debugging when setting VPN routes
Jukka Rissanen [Wed, 8 Aug 2012 10:22:45 +0000 (13:22 +0300)]
connection: Add more debugging when setting VPN routes

11 years agoservice: Signal error property changes
Grant Erickson [Wed, 8 Aug 2012 16:59:27 +0000 (09:59 -0700)]
service: Signal error property changes

In order to allow clients to update the property in a manner similar to
other service properties, signal changes in the service "Error" property
key/value pair.

The value "" is used when no error is asserted because D-Bus property
changed convention has no semantics for indicating a key/value pair was
removed.

11 years agoservice: Initiate autoconnect after changing ipconfig method
Jukka Rissanen [Tue, 7 Aug 2012 14:08:41 +0000 (17:08 +0300)]
service: Initiate autoconnect after changing ipconfig method

11 years agoservice: Do not set the service state when changing IPv4 method
Jukka Rissanen [Tue, 7 Aug 2012 14:08:40 +0000 (17:08 +0300)]
service: Do not set the service state when changing IPv4 method

The service state will be set to proper state if we are
actually doing the connection so do not set the state
when we are just setting the IPv4 method.

11 years agoservice: Do not try to connect to service that cannot create connection
Jukka Rissanen [Tue, 7 Aug 2012 14:08:39 +0000 (17:08 +0300)]
service: Do not try to connect to service that cannot create connection

Check if the service IPv4/6 ipconfig is turned OFF, in this
case do not try to connect to that service because it will
not succeed.

Fixes BMC#25587

11 years agoipconfig: Add function to check if the ipconfig is OFF
Jukka Rissanen [Tue, 7 Aug 2012 14:08:38 +0000 (17:08 +0300)]
ipconfig: Add function to check if the ipconfig is OFF

11 years agomain: Add support for specifying a non-default configuration file.
Grant Erickson [Tue, 7 Aug 2012 15:12:35 +0000 (08:12 -0700)]
main: Add support for specifying a non-default configuration file.

This patch adds support for specifying a main configuration file
different from the default value of /etc/connman/main.conf. This
is valuable during debug to specify alternate debug-only
configurations.

11 years agomain: Remove unused compat argument
Daniel Wagner [Mon, 6 Aug 2012 16:34:06 +0000 (18:34 +0200)]
main: Remove unused compat argument

11 years agostorage.c: Search for settings file even if d_type is DT_UNKNOWN.
Andrei Gherzan [Mon, 6 Aug 2012 20:54:33 +0000 (23:54 +0300)]
storage.c: Search for settings file even if d_type is DT_UNKNOWN.

This is useful for filesystems where d_type is always DT_UNKNOWN,
for example in reiserfs.

11 years agoTODO: Add WiMAX removal task
Patrik Flykt [Mon, 6 Aug 2012 06:05:19 +0000 (09:05 +0300)]
TODO: Add WiMAX removal task

11 years agodevice: Remove unused phyindex
Daniel Wagner [Fri, 3 Aug 2012 11:30:14 +0000 (13:30 +0200)]
device: Remove unused phyindex

11 years agoRelease 1.4 1.4
Marcel Holtmann [Tue, 24 Jul 2012 21:10:50 +0000 (23:10 +0200)]
Release 1.4

11 years agowifi: Return -EBUSY when tethering
Tomasz Bursztyka [Tue, 24 Jul 2012 13:28:02 +0000 (16:28 +0300)]
wifi: Return -EBUSY when tethering

Fixes BMC#25561

12 years agowispr: Add a reference counter mechanism on contexts
Tomasz Bursztyka [Tue, 17 Jul 2012 13:32:06 +0000 (16:32 +0300)]
wispr: Add a reference counter mechanism on contexts

Basically, wispr provides a pointer (a wispr/portal context) to third parties
(agent, gweb...) which are answering asynchronously. However, if the technology
related to the service owning such context is disabled: this context is not
valid anymore, leading to a crash when third part answers after such action.

In order to avoid such issue, wispr implement an internal refcount system.

Fixes BMC#25479

12 years agoAUTHORS: Mention Ross' contributions
Daniel Wagner [Wed, 18 Jul 2012 10:56:10 +0000 (12:56 +0200)]
AUTHORS: Mention Ross' contributions

12 years agodoc: Add coding-style.txt
Samuel Ortiz [Wed, 18 Jul 2012 10:23:49 +0000 (12:23 +0200)]
doc: Add coding-style.txt

This is a copy of the oFono coding-style document, with oFono instances
replaced with ConnMan ones.
It's also in sync with the neard one.

12 years agostorage: check that the string isn't empty before splitting
Ross Burton [Wed, 18 Jul 2012 09:37:38 +0000 (10:37 +0100)]
storage: check that the string isn't empty before splitting

If the string was non-NULL but empty (str="\0"), the following \0 assignment
would write to str[-1] and thus cause memory corruption.

On PPC and MIPS, this was causing crashes in glibc.

12 years agodevice: Do not set regdom when device is not powered
Tomasz Bursztyka [Wed, 11 Jul 2012 06:59:40 +0000 (09:59 +0300)]
device: Do not set regdom when device is not powered

Fixes crash bug:
connmand[6761]: plugins/ofono.c:get_properties_reply() /huawei_0 path /huawei_0 org.ofono.NetworkRegistration
connmand[6761]: plugins/ofono.c:netreg_properties_reply() /huawei_0
connmand[6761]: plugins/ofono.c:netreg_update_regdom() /huawei_0 MobileContryCode 460
connmand[6761]: src/device.c:connman_device_ref_debug() 0x8686ac0 ref 3 by plugins/wifi.c:991:wifi_set_regdom()
connmand[6761]: Aborting (signal 11) [src/connmand]
connmand[6761]: ++++++++ backtrace ++++++++
connmand[6761]: #0  0xb7749400 in
connmand[6761]: #1  0x806aa0b in g_supplicant_interface_set_country() at nat.c:0
connmand[6761]: #2  0x8062297 in wifi_set_regdom() at wifi.c:0
connmand[6761]: #3  0x80a607d in connman_technology_set_regdom() at ??:0
connmand[6761]: #4  0x806fefb in netreg_update_regdom() at ofono.c:0
connmand[6761]: #5  0x8071f3b in netreg_properties_reply() at ofono.c:0
connmand[6761]: #6  0x806f747 in get_properties_reply() at ofono.c:0
connmand[6761]: #7  0x4a374b62 in /usr/lib/libdbus-1.so.3
connmand[6761]: #8  0x4a3602b7 in /usr/lib/libdbus-1.so.3
connmand[6761]: #9  0x4a3639f5 in /usr/lib/libdbus-1.so.3
connmand[6761]: #10 0x8054250 in message_dispatch() at mainloop.c:0
connmand[6761]: #11 0x49f3e9d7 in /lib/libglib-2.0.so.0
connmand[6761]: #12 0x49f3de38 in /lib/libglib-2.0.so.0
connmand[6761]: #13 0x49f3e13e in /lib/libglib-2.0.so.0
connmand[6761]: #14 0x49f3e5a6 in /lib/libglib-2.0.so.0
connmand[6761]: #15 0x8053ab6 in main() at nat.c:0
connmand[6761]: #16 0x49cfc4c4 in /lib/libc.so.6
connmand[6761]: +++++++++++++++++++++++++++

12 years agogdhcp: Set client state to INIT_SELECTING on restart
Forest Bond [Mon, 16 Jul 2012 13:09:01 +0000 (09:09 -0400)]
gdhcp: Set client state to INIT_SELECTING on restart

With the previous behavior, we would end up sending a discover message
and then ignoring the reply due to the client state mismatch, so a
restart would never result in successful acquisition of a lease.

RFC 2131 specifies that the client should return to INIT state in
various restart scenarios.  However, also note that it would not make
sense in any case to send a discover message and ignore the reply.

12 years agortnl: Support PPP connections
Forest Bond [Wed, 20 Jun 2012 21:06:28 +0000 (17:06 -0400)]
rtnl: Support PPP connections

The ARP header type for PPP connections is ARPHRD_PPP (512).

12 years agogresolv: Use predefined mnemonics rather than magic numbers
Grant Erickson [Mon, 16 Jul 2012 16:48:10 +0000 (09:48 -0700)]
gresolv: Use predefined mnemonics rather than magic numbers

Use predefined mnemonics from arpa/nameserv.h for the return value from
ns_msg_getflag rather than magic numbers.

12 years agogresolv: Do not update successful status with unsuccessful one
Grant Erickson [Mon, 16 Jul 2012 16:48:09 +0000 (09:48 -0700)]
gresolv: Do not update successful status with unsuccessful one

When performing a resolver lookup from timeserver or wpad, both perform
queries with an unspecified address family. This means that both A and
AAAA record queries are issued. In cases where a valid, successful A
response comes back but where the AAAA query results in a timeout, do
not smash the successful A status with the time out AAAA status;
otherwise, the timeserver or wpad will appear to fail to them when, in
fact, the A query was successful and more than satisfies its unspecified
address family requirement.

Partial fix for BMC#25486.

12 years agogresolve: Fix a typo in conditional check for returning results
Grant Erickson [Mon, 16 Jul 2012 16:48:08 +0000 (09:48 -0700)]
gresolve: Fix a typo in conditional check for returning results

In both parse_response and query_timeout there exists logic that checks
to ensure that both an A and AAAA lookups have either been responded to
or timed out before processing and returning results to the caller. In
query_timeout, there was a typo in the condition check such that it did
not match those conditions tested in parse_response.

12 years agontp: Add debug message when starting NTP against resolved server
Grant Erickson [Mon, 16 Jul 2012 16:48:07 +0000 (09:48 -0700)]
ntp: Add debug message when starting NTP against resolved server

This patch adds an analagous debug message when starting NTP against a
resolved server as when starting against a numbered server.

12 years agontp: Fixed a debug message typo
Grant Erickson [Mon, 16 Jul 2012 16:48:06 +0000 (09:48 -0700)]
ntp: Fixed a debug message typo

12 years agontp: Retry a given server address multiple times before falling back
Grant Erickson [Mon, 16 Jul 2012 16:48:05 +0000 (09:48 -0700)]
ntp: Retry a given server address multiple times before falling back

This patch causes the internal NTP client to retry a given server
address up to three times (four total attempts) at a two second interval
before falling back to another server name or server address.

12 years agontp: Use mnemonic when specifying the request precision
Grant Erickson [Mon, 16 Jul 2012 16:48:04 +0000 (09:48 -0700)]
ntp: Use mnemonic when specifying the request precision

This patch uses a mnemonic to specify the request precision and also
adds a comment how a future implementation might pass along the actual
system wall clock precision.

12 years agontp: Add mnemonics for common clock precisions
Grant Erickson [Mon, 16 Jul 2012 16:48:03 +0000 (09:48 -0700)]
ntp: Add mnemonics for common clock precisions

12 years agontp: Use mnemonics when checking reply flags
Grant Erickson [Mon, 16 Jul 2012 16:48:02 +0000 (09:48 -0700)]
ntp: Use mnemonics when checking reply flags

Use mnemonics when checking reply flags and print out information in
debug mode about why the reply flags were rejected.

12 years agontp: Specify leap-not-in-sync in flags
Grant Erickson [Mon, 16 Jul 2012 16:48:01 +0000 (09:48 -0700)]
ntp: Specify leap-not-in-sync in flags

This patch sets the non-in-sync flag of the leap subfield of the packet
flags field. This reflects behavior implemented by ntpdate or ntpd in
one-shot mode.

12 years agontp: Send a transmit time value that reflects current system time
Grant Erickson [Mon, 16 Jul 2012 16:48:00 +0000 (09:48 -0700)]
ntp: Send a transmit time value that reflects current system time

This sets the ntp request packet transmit time to the current system
time to reflect behavior implemented by ntpdate and ntpd in one-shot
mode.

12 years agontp: Use mnemonics rather than magic numbers
Grant Erickson [Mon, 16 Jul 2012 16:47:59 +0000 (09:47 -0700)]
ntp: Use mnemonics rather than magic numbers

Convert a magic number into equivalent mnemonics for the flags (leap,
version, mode) packet field.

12 years agontp: Add mnemonics for the flags (leap, version, mode) packet field
Grant Erickson [Mon, 16 Jul 2012 16:47:58 +0000 (09:47 -0700)]
ntp: Add mnemonics for the flags (leap, version, mode) packet field

12 years agotimeserver: Try all resolved timeserver IP addresses
Jukka Rissanen [Mon, 16 Jul 2012 08:00:47 +0000 (11:00 +0300)]
timeserver: Try all resolved timeserver IP addresses

If we get more than one IP address, then add those
server addresses to the time server list so that they
can be tried if the first entry fails.

12 years agontp: If the server cannot be contacted, try next one
Jukka Rissanen [Mon, 16 Jul 2012 08:00:46 +0000 (11:00 +0300)]
ntp: If the server cannot be contacted, try next one

This could happen if the network routes are not yet setup
so the sendto() could fail. In this case try next address and
hope for the best. This is a rare issue but I have seen it
couple of times.

12 years agoRevert "build: Use -Wshadow compiler option"
Marcel Holtmann [Mon, 16 Jul 2012 13:12:05 +0000 (10:12 -0300)]
Revert "build: Use -Wshadow compiler option"

12 years agobuild: Use -Wshadow compiler option
Marcel Holtmann [Sun, 15 Jul 2012 22:59:19 +0000 (19:59 -0300)]
build: Use -Wshadow compiler option

12 years agodnsproxy: Avoid multiple shadowing variables
Marcel Holtmann [Sun, 15 Jul 2012 22:58:46 +0000 (19:58 -0300)]
dnsproxy: Avoid multiple shadowing variables

12 years agotethering: Avoid shadowing connection variable
Marcel Holtmann [Sun, 15 Jul 2012 22:55:07 +0000 (19:55 -0300)]
tethering: Avoid shadowing connection variable

12 years agosession: Avoid shadowing hash table iterator
Marcel Holtmann [Sun, 15 Jul 2012 22:54:14 +0000 (19:54 -0300)]
session: Avoid shadowing hash table iterator

12 years agosession: Avoid shadowing session info variable
Marcel Holtmann [Sun, 15 Jul 2012 22:53:13 +0000 (19:53 -0300)]
session: Avoid shadowing session info variable

12 years agoconfig: Avoid shadowing config structure variable
Marcel Holtmann [Sun, 15 Jul 2012 22:51:11 +0000 (19:51 -0300)]
config: Avoid shadowing config structure variable

12 years agocounter: Avoid shadowing connection variable
Marcel Holtmann [Sun, 15 Jul 2012 22:50:29 +0000 (19:50 -0300)]
counter: Avoid shadowing connection variable

12 years agonotifier: Avoid shadowing connected variable
Marcel Holtmann [Sun, 15 Jul 2012 22:43:17 +0000 (19:43 -0300)]
notifier: Avoid shadowing connected variable

12 years agoagent: Avoid shadowing connection variable
Marcel Holtmann [Sun, 15 Jul 2012 22:41:18 +0000 (19:41 -0300)]
agent: Avoid shadowing connection variable

12 years agoservice: Avoid shadowing string variable
Marcel Holtmann [Sun, 15 Jul 2012 22:40:49 +0000 (19:40 -0300)]
service: Avoid shadowing string variable

12 years agotask: Avoid shadowing connection variable
Marcel Holtmann [Sun, 15 Jul 2012 22:39:51 +0000 (19:39 -0300)]
task: Avoid shadowing connection variable

12 years agoplugins: Avoid shadowing connection variable
Marcel Holtmann [Sun, 15 Jul 2012 22:39:24 +0000 (19:39 -0300)]
plugins: Avoid shadowing connection variable

12 years agogsupplicant: Avoid shadowing key variable
Marcel Holtmann [Sun, 15 Jul 2012 22:31:28 +0000 (19:31 -0300)]
gsupplicant: Avoid shadowing key variable

12 years agounit: Avoid shadowing session info variable
Marcel Holtmann [Sun, 15 Jul 2012 22:31:06 +0000 (19:31 -0300)]
unit: Avoid shadowing session info variable

12 years agotools: Avoid shadowing buffer variable
Marcel Holtmann [Sun, 15 Jul 2012 22:30:38 +0000 (19:30 -0300)]
tools: Avoid shadowing buffer variable

12 years agogdhcp: Avoid shadowing address string variable
Marcel Holtmann [Sun, 15 Jul 2012 22:29:26 +0000 (19:29 -0300)]
gdhcp: Avoid shadowing address string variable

12 years agoservice: Gateway IP address property is not sent
Jukka Rissanen [Thu, 12 Jul 2012 12:32:42 +0000 (15:32 +0300)]
service: Gateway IP address property is not sent

The address of the IP gateway is not sent when the IP
property changes. This was because of timing issues i.e.,
the gateway was not yet set when the other IP properties
were sent.

Fixes BMC#25471

12 years agowifi: Debug print fixed
Jukka Rissanen [Tue, 10 Jul 2012 15:13:49 +0000 (18:13 +0300)]
wifi: Debug print fixed

Convert a warn message to debug one because it is printed
too often to be usefull as a warning message.

12 years agowifi: Scan all hidden and provisioned AP
Jukka Rissanen [Tue, 10 Jul 2012 15:13:48 +0000 (18:13 +0300)]
wifi: Scan all hidden and provisioned AP

12 years agoconfig: Get configurations that are provisioned
Jukka Rissanen [Tue, 10 Jul 2012 15:13:47 +0000 (18:13 +0300)]
config: Get configurations that are provisioned

We need the list of provisioned services so that
all the hidden ones can be scanned.

12 years agoconfig: Read hidden AP information from config file
Jukka Rissanen [Tue, 10 Jul 2012 15:13:46 +0000 (18:13 +0300)]
config: Read hidden AP information from config file

12 years agodoc: Hidden AP provisioning information added
Jukka Rissanen [Tue, 10 Jul 2012 15:13:45 +0000 (18:13 +0300)]
doc: Hidden AP provisioning information added

12 years agoTODO: Remove task about wpspin as PreviousPassphrase type
Tomasz Bursztyka [Tue, 10 Jul 2012 14:45:14 +0000 (17:45 +0300)]
TODO: Remove task about wpspin as PreviousPassphrase type

12 years agodoc: Add necessary documentation about wpspin as a PreviousPassphrase type
Tomasz Bursztyka [Tue, 10 Jul 2012 14:45:13 +0000 (17:45 +0300)]
doc: Add necessary documentation about wpspin as a PreviousPassphrase type

12 years agoagent: Handle wpspin type as a PreviousPassphrase
Tomasz Bursztyka [Tue, 10 Jul 2012 14:45:12 +0000 (17:45 +0300)]
agent: Handle wpspin type as a PreviousPassphrase

12 years agoagent: Rewrite how PreviousPassphrase field is handled
Tomasz Bursztyka [Tue, 10 Jul 2012 14:45:11 +0000 (17:45 +0300)]
agent: Rewrite how PreviousPassphrase field is handled

This is a necessary rewrite to make it clearer and simpler, before implementing
wpspin type support.

12 years agodevice: Turn off all running interfaces at startup
Jukka Rissanen [Mon, 9 Jul 2012 09:24:48 +0000 (12:24 +0300)]
device: Turn off all running interfaces at startup

Turning off running interfaces that have IP address,
causes all routes related to those interfaces to be
removed by kernel. This way connman will get a fresh
start without any extra and obsolete routes around.

12 years agoinet: Return all running interfaces
Jukka Rissanen [Mon, 9 Jul 2012 09:24:47 +0000 (12:24 +0300)]
inet: Return all running interfaces

Add a function that returns all (except loopback)
interfaces that are up and running (have IP address).
This information is used in following patch to clean
up the routes that are left hanging around.

12 years agoservice: Make sure the pending reply is not lost
Jukka Rissanen [Wed, 4 Jul 2012 08:21:27 +0000 (11:21 +0300)]
service: Make sure the pending reply is not lost

The user data (pending reply) can be null if agent returns
an error. In this case do not overwrite the real pending reply.

12 years agodhcp: warn on invalid netmask
Julien Massot [Thu, 5 Jul 2012 14:12:53 +0000 (14:12 +0000)]
dhcp: warn on invalid netmask

12 years agomain: Dynamically allocate default blacklist array, free on exit
Patrik Flykt [Thu, 28 Jun 2012 11:20:57 +0000 (14:20 +0300)]
main: Dynamically allocate default blacklist array, free on exit

12 years agomain: Move default string arrays top of the file
Patrik Flykt [Thu, 28 Jun 2012 13:06:00 +0000 (16:06 +0300)]
main: Move default string arrays top of the file

12 years agotechnology: check validity of given properties for tethering
Julien Massot [Wed, 4 Jul 2012 16:09:03 +0000 (16:09 +0000)]
technology: check validity of given properties for tethering

A WPA2 passphrase is between 8 and 63 characters,
a SSID name is between 1 and 32 characters.

12 years agotechnology: return already enabled when tethering is enabled
Julien Massot [Wed, 4 Jul 2012 16:09:02 +0000 (16:09 +0000)]
technology: return already enabled when tethering is enabled

12 years agoTODO: Remove BackgroundScanning task
Tomasz Bursztyka [Wed, 4 Jul 2012 14:24:42 +0000 (17:24 +0300)]
TODO: Remove BackgroundScanning task

12 years agowifi: Add support for autoscan request
Tomasz Bursztyka [Wed, 4 Jul 2012 14:24:41 +0000 (17:24 +0300)]
wifi: Add support for autoscan request