Samuel Ortiz [Fri, 24 Sep 2010 18:24:04 +0000 (20:24 +0200)]
Stop polling the nameserver TCP socket once we're done with it
Samuel Ortiz [Fri, 24 Sep 2010 16:13:35 +0000 (18:13 +0200)]
Send an error response when the DNS request times out
Samuel Ortiz [Fri, 24 Sep 2010 16:00:48 +0000 (18:00 +0200)]
Add a protocol field to the DNS request structure
This is cleaner than checking for the client socket value.
Samuel Ortiz [Fri, 24 Sep 2010 15:57:55 +0000 (17:57 +0200)]
Send SERVFAIL when nameservers are not listening on TCP port 53
Samuel Ortiz [Fri, 24 Sep 2010 15:33:01 +0000 (17:33 +0200)]
Fix DNS TCP buffer parsing copy paste error
Samuel Ortiz [Fri, 24 Sep 2010 15:18:34 +0000 (17:18 +0200)]
Remove the DNS TCP listener watch when the socket is closed
Samuel Ortiz [Fri, 24 Sep 2010 14:40:44 +0000 (16:40 +0200)]
Factorize dnsproxy listener creation code
Lot of the code was shared between between the TCP and UDP code paths.
Samuel Ortiz [Fri, 24 Sep 2010 14:09:31 +0000 (16:09 +0200)]
Initial DNS over TCP implementation for dnsproxy
Daniel Wagner [Thu, 23 Sep 2010 14:42:00 +0000 (16:42 +0200)]
Fix typo in stats_print_record
Daniel Wagner [Thu, 23 Sep 2010 14:04:36 +0000 (16:04 +0200)]
Fix "invalid file header"
Use stat before open the file to find out if the
file already exists. Only if file exists and
the header is invalid trigger connman_error
Daniel Wagner [Thu, 23 Sep 2010 11:25:18 +0000 (13:25 +0200)]
Put .data files into a separate directory
Lucio Maciel [Wed, 22 Sep 2010 17:54:32 +0000 (14:54 -0300)]
Support multiple interfaces on -i and -I cmdline option.
Support multiple comma-separeted interfaces for -i and -I
command line option. E.g.:
-i eth*,wlan*,ppp* or -I virbr*,usb*,ppp*
Mohamed Abbas [Wed, 22 Sep 2010 11:35:35 +0000 (04:35 -0700)]
Fix bug to remove vpn services when turning offline mode on
This patch will remove all vpn services on offline mode. It also
make sure it exits after releasing all resources.
Fixes BMC #6591
Samuel Ortiz [Wed, 22 Sep 2010 14:49:45 +0000 (16:49 +0200)]
Schedule delayed scan when being disconnected from an AP
When being disconnected from an AP, a delayed scan is scheduled to make
sure the AP is still there. wpa_supplicant removes a BSS from its bss list
when it disappears from the scan results twice in a row.
Fixes BCM #6831
Mohamed Abbas [Wed, 22 Sep 2010 10:25:09 +0000 (12:25 +0200)]
Fix ConnMan crash while disable wifi device
When calling unregister_network() ConnMan sets the network->device pointer
to NULL. That is fine with ESSIDs formed by 1 AP. Otherwise, the eventual
call to __connman_device_decrease_connections() leads to a crash as the
device pointer is NULL.
Fixes BMC #6772
Daniel Wagner [Wed, 22 Sep 2010 10:11:06 +0000 (12:11 +0200)]
Add statistics ring buffer analyze tool
This tool prints the statistic ring buffer.
Daniel Wagner [Tue, 21 Sep 2010 11:33:42 +0000 (13:33 +0200)]
Store stats information into separate files
Currently the statistic information is stored into the profile file.
This results in rewriting the whole file if connann_stats_save is
called. This results in too many disk I/Os for low power devices.
Furthermore, only the current value is stored. There is no way to
find out how many bytes have been transfered in the last month.
First, each service statistic is stored into a separate files under
/var/lib/connman having a *.data extension. This file contains fixed
sized records of stats counters and will be mmap into memory. It is
used like a ring buffer.
If the buffer is full or after a certain period (e.g. a month), the
raw data will be summerized into the *.info file.
Currently the summary is not implented yet. This will be implemented
in the next round of patches.
Marcel Holtmann [Wed, 22 Sep 2010 04:14:39 +0000 (13:14 +0900)]
Don't bother setting 127.0.0.1 as nameserver
Marcel Holtmann [Wed, 22 Sep 2010 04:13:37 +0000 (13:13 +0900)]
Read nameservers from /etc/resolv.conf if none are specified
Marcel Holtmann [Wed, 22 Sep 2010 03:48:28 +0000 (12:48 +0900)]
Add support for setting proxy configuration method
Marcel Holtmann [Wed, 22 Sep 2010 01:46:19 +0000 (10:46 +0900)]
Add method, domainname and nameserver to proxy configuration
Marcel Holtmann [Wed, 22 Sep 2010 00:47:54 +0000 (09:47 +0900)]
Export service functions for retrieving domainname and nameserver
Marcel Holtmann [Tue, 21 Sep 2010 23:24:16 +0000 (08:24 +0900)]
Fix breakage of make distcheck
Lucio Maciel [Tue, 21 Sep 2010 15:20:40 +0000 (17:20 +0200)]
Call remove_network() on unsolicited disconnect
When receiving an unsolicited disconnect (turn-off the AP)
wpa_supplicant starts scanning every 5 seconds looking for the
previously connected ssid.
This causes the grow of the network list since connman will
not remove the unavailable networks if it is not the initiator of
the scan.
Patrik Flykt [Tue, 21 Sep 2010 07:07:51 +0000 (10:07 +0300)]
Remove RequestPassphrase functionality from Agent API
Remove the obsolete __connman_agent_request_passphrase function as the
RequestPassphrase method call has been replaced with RequestInput.
Patrik Flykt [Tue, 21 Sep 2010 07:07:50 +0000 (10:07 +0300)]
Use RequestInput method call when requesting passphrases
Change password query to use RequestInput method call instead of
RequestPassphrase. The supplied passphrase_cb_t function sets the password
returned via Agent API and tries to reconnect to the service.
Patrik Flykt [Tue, 21 Sep 2010 07:07:49 +0000 (10:07 +0300)]
Agent API RequestInput method for requesting passphrases
request_input_passphrase_reply creates and sends an Agent API RequestInput
method call and waits for the method call return. The function expects a
passhphrase_cb_t to be supplied. Only the "Passphrase" dictionary field is
requested by the method call and only the "Passphrase" dictionary field in
the method call return is used.
Patrik Flykt [Tue, 21 Sep 2010 07:07:48 +0000 (10:07 +0300)]
Add connman_service_set_passphrase helper function
Create helper function for setting a service passphrase by factoring out
the code from set_property.
Marcel Holtmann [Tue, 21 Sep 2010 14:43:37 +0000 (23:43 +0900)]
Use proper definition for finding device structure
Marcel Holtmann [Tue, 21 Sep 2010 14:38:53 +0000 (23:38 +0900)]
Use __connman_device_get_service_type for getting service type
Marcel Holtmann [Tue, 21 Sep 2010 14:33:01 +0000 (23:33 +0900)]
Add basic DNS resolving for HTTP operation
Lucas De Marchi [Tue, 21 Sep 2010 12:47:35 +0000 (09:47 -0300)]
Simplify linker script
Version linker scripts support function names and globs, so there's no
need to rely on nm tool to gather the exported symbols.
Marcel Holtmann [Tue, 21 Sep 2010 10:11:52 +0000 (19:11 +0900)]
Use DBUS_CONFDIR variable instead of DBUS_DATADIR
Daniel Wagner [Mon, 20 Sep 2010 14:45:25 +0000 (16:45 +0200)]
Use struct connman_stats_data
Instead of defining all the counters everwhere use
the connman_stats_data struct. This simplifies the
code later for storing and loading the counters
from the storage backend.
Daniel Wagner [Mon, 20 Sep 2010 14:45:24 +0000 (16:45 +0200)]
Handle several counters simultaniously
The current implementation does not handle multiple
counters at the same time correctly. Only the first
counter gets the updates, all others just an empty
dictionary.
For each Counter object the counters have to be
maintained separately.
Marcel Holtmann [Tue, 21 Sep 2010 04:57:46 +0000 (13:57 +0900)]
Add interface string to proxy configuration
Samuel Ortiz [Mon, 20 Sep 2010 16:23:00 +0000 (18:23 +0200)]
Bump wifi_legacy plugin's priority
The legacy wifi plugin is the default one.
Samuel Ortiz [Mon, 20 Sep 2010 16:21:51 +0000 (18:21 +0200)]
Do not register 2 network drivers for the same network type
Samuel Ortiz [Mon, 20 Sep 2010 14:28:42 +0000 (16:28 +0200)]
Improve GSupplicant debug
Samuel Ortiz [Mon, 20 Sep 2010 14:07:42 +0000 (16:07 +0200)]
Remove last ConnMan dependency for GSupplicant
This is achieved through the addition of a debug callback.
Samuel Ortiz [Thu, 16 Sep 2010 14:43:27 +0000 (16:43 +0200)]
WPA-EAP support for GSupplicant
Samuel Ortiz [Thu, 16 Sep 2010 10:34:48 +0000 (12:34 +0200)]
WEP and WPA-PSK support for GSupplicant
Samuel Ortiz [Wed, 15 Sep 2010 15:42:06 +0000 (17:42 +0200)]
Prioritize wifi plugins
The legacy one as the default wifi plugin.
Samuel Ortiz [Wed, 15 Sep 2010 22:21:23 +0000 (00:21 +0200)]
Move current wifi plugin to legacy
The current wifi plugin is replaced by the new API one and is renamed to
wifi-legacy.c.
Samuel Ortiz [Wed, 15 Sep 2010 13:33:43 +0000 (15:33 +0200)]
Get device interface through the get_string() routine
Samuel Ortiz [Wed, 15 Sep 2010 21:42:16 +0000 (23:42 +0200)]
GSupplicant intial commit
Marcel Holtmann [Mon, 20 Sep 2010 01:02:47 +0000 (10:02 +0900)]
Add support for PAC runner configuration updates
Marcel Holtmann [Mon, 20 Sep 2010 00:59:27 +0000 (09:59 +0900)]
Add support for retrieving proxy auto configuration URL
Martin Xu [Sun, 19 Sep 2010 08:31:01 +0000 (16:31 +0800)]
Ignore Bluetooth adapter if its address is 00:00:00:00:00:00
Marcel Holtmann [Sun, 19 Sep 2010 06:32:15 +0000 (15:32 +0900)]
Add skeleton for PAC runner support
Samuel Ortiz [Thu, 16 Sep 2010 23:16:58 +0000 (01:16 +0200)]
Update config-format.txt with Name vs SSID explanations
Patrik Flykt [Fri, 17 Sep 2010 10:15:23 +0000 (13:15 +0300)]
Add __connman_service_get_security function
Add helper function to access the security enum attribute of a service.
Samuel Ortiz [Thu, 16 Sep 2010 10:56:13 +0000 (12:56 +0200)]
Mention Pekka's contributions
Samuel Ortiz [Thu, 16 Sep 2010 10:55:09 +0000 (12:55 +0200)]
Mention Fabien's contributions
Fabien Marotte [Thu, 16 Sep 2010 07:52:43 +0000 (09:52 +0200)]
Fix a crash when doing PEAP/TTLS authentication
When doing a PEAP/TTLS authentication, if the Phase2 passphrase is
not provided, connman crashes due to a NULL pointer.
This patch fixes the crash.
Fixes BMC #6841
Fabien Marotte [Wed, 15 Sep 2010 09:51:12 +0000 (11:51 +0200)]
Add messages in supplicant plugin
This patch adds error and info messages in case connman detects
missing parameters when doing a TLS or a PEAP/TTLS authentication.
Fabien Marotte [Wed, 15 Sep 2010 09:51:11 +0000 (11:51 +0200)]
Add verification of the .config file parameters
Connman reads the *.config files in STORAGE_DIR during its boot but
it looks only for parameters it is interrested in.
The configuration parameters syntax is complex and it is very
simple to make a mistake without getting connman warnings. This
leads the user to think that connman understands the configuration
file although it doesn't.
This patch is the code that adds warnings to the logs if connman
reads unknown parameters from the *.config files.
Fabien Marotte [Wed, 15 Sep 2010 09:51:10 +0000 (11:51 +0200)]
Move configuration key strings to be #define
Pekka Pessi [Fri, 10 Sep 2010 12:11:34 +0000 (15:11 +0300)]
element: remove unnecessary checks
Do not check for null pointers after accessing data.
Marcel Holtmann [Mon, 13 Sep 2010 22:42:34 +0000 (07:42 +0900)]
Small style cleanup for readability
Pekka Pessi [Fri, 10 Sep 2010 12:11:23 +0000 (15:11 +0300)]
Check harder for -lresolv
Older Debians and friends expose __ns_initparse and their resolv.h
defines ns_initparse is __ns_initparse.
Marcel Holtmann [Sat, 11 Sep 2010 10:36:44 +0000 (12:36 +0200)]
Remove two pointless whitespaces
Marcel Holtmann [Sat, 11 Sep 2010 10:35:42 +0000 (12:35 +0200)]
Handle potential NULL pointer with DHCP options
Marcel Holtmann [Fri, 10 Sep 2010 09:24:11 +0000 (11:24 +0200)]
Release 0.61
Marcel Holtmann [Fri, 10 Sep 2010 09:20:37 +0000 (11:20 +0200)]
Remove leftover defines
Samuel Ortiz [Thu, 9 Sep 2010 22:57:21 +0000 (00:57 +0200)]
Implement the ModemAdded and ModemRemoved signal handlers
Samuel Ortiz [Thu, 9 Sep 2010 22:56:21 +0000 (00:56 +0200)]
Fix typo: modem_removed is linked to the MODEM_REMOVED signal
Samuel Ortiz [Thu, 9 Sep 2010 22:30:30 +0000 (00:30 +0200)]
Support the new oFono Manager API
GetModems() is called at startup, and ModemAdded and ModemRemoved are
being monitored.
Samuel Ortiz [Thu, 9 Sep 2010 18:24:40 +0000 (20:24 +0200)]
Fix debug message formatting
Samuel Ortiz [Thu, 9 Sep 2010 18:21:36 +0000 (20:21 +0200)]
Fix error message formatting
Samuel Ortiz [Thu, 9 Sep 2010 17:46:00 +0000 (19:46 +0200)]
Extend the D-Bus timeout for slow modems
Samuel Ortiz [Thu, 9 Sep 2010 17:45:15 +0000 (19:45 +0200)]
Power the ConnectionManager interface up when it shows up
Pekka Pessi [Thu, 9 Sep 2010 13:35:58 +0000 (15:35 +0200)]
ofono: use new oFono GPRS interfaces
The plugin keeps now a hash table for networks.
The improved oFono GPRS interface (ConnectionManager) relay the complete
network information in ContextAdded signal and in GetContexts reply. A
connman_network is immediately created for each Internet context.
The kludge used to create a new context in case the initial context list
was empty is removed.
The oFono context interface (ContextManager) has no essential changes,
it is just removed.
Information from the oFono NetworkRegistration interface is now cached
in the connman_device. Cached registration information is stored in the
newly created connman_network, too. Later changes in the registration
info get propagated to the connman_network.
TODO:
- handle ConnectionManager.ContextAdded
- handle ConnectionManager.ContextRemoved
Pekka Pessi [Thu, 26 Aug 2010 14:26:50 +0000 (17:26 +0300)]
ofono: use Modem Online property
Modem Online property gets controlled with the cellular device Powered
property.
As the oFono plugin needs to get the Powered state from the device it
gets created when the SIM is ready.
The GPRS networks get added after ConnMan can access the GPRS interface.
As a side effect the oFono modems which do support Online but do not
support GPRS are also visible in ConnMan.
The ConnMan device gets now removed when the SIM is removed or the IMSI
changes.
Pekka Pessi [Thu, 26 Aug 2010 14:26:49 +0000 (17:26 +0300)]
device: add connman_device_get_ident()
Expose former core function __connman_device_get_ident().
Pekka Pessi [Thu, 26 Aug 2010 14:26:48 +0000 (17:26 +0300)]
ofono: refactor modem_has_gprs()
Pekka Pessi [Thu, 26 Aug 2010 14:26:47 +0000 (17:26 +0300)]
ofono: refactor sim
MCC and MNC are no more propagated to the service.
Pekka Pessi [Thu, 26 Aug 2010 14:26:46 +0000 (17:26 +0300)]
ofono: refactor pri_context_changed handler
Do not use pending_network outside pri_context_changed.
Pekka Pessi [Thu, 26 Aug 2010 14:26:45 +0000 (17:26 +0300)]
ofono: fix pending_network_is_available()
connman_network_get_device() returns NULL if network has been removed.
Pekka Pessi [Thu, 26 Aug 2010 14:26:44 +0000 (17:26 +0300)]
ofono: don't reuse identifier pending_network
Pekka Pessi [Thu, 26 Aug 2010 14:26:43 +0000 (17:26 +0300)]
ofono: fix add_network()
Protect against duplication, remove leak.
Pekka Pessi [Thu, 26 Aug 2010 14:26:42 +0000 (17:26 +0300)]
ofono: do not strdup in get_ident()
Fix leak if network creation fails.
Pekka Pessi [Thu, 26 Aug 2010 14:26:41 +0000 (17:26 +0300)]
ofono: refactor dbus calls
Use call_ofono() wrapper.
Pekka Pessi [Thu, 26 Aug 2010 14:26:40 +0000 (17:26 +0300)]
ofono: avoid race between signals and methods
Create modem only after Modem.GetProperties succeeds, thus avoiding
races with Modem.PropertyChanged signal. Do not call Modem.GetProperties
again while modem exists.
Pekka Pessi [Thu, 26 Aug 2010 14:26:39 +0000 (17:26 +0300)]
ofono: fix stale data usage
Pekka Pessi [Thu, 9 Sep 2010 10:13:52 +0000 (12:13 +0200)]
ofono: log more of the errors
Pekka Pessi [Thu, 9 Sep 2010 10:07:23 +0000 (12:07 +0200)]
ofono: refactor SetProperty D-Bus calls
Marcel Holtmann [Thu, 9 Sep 2010 16:53:57 +0000 (18:53 +0200)]
Remove the no longer needed security framework
D-Bus security policies can now be set directly via the method tables.
Marcel Holtmann [Thu, 9 Sep 2010 16:47:25 +0000 (18:47 +0200)]
Use D-Bus constants for PolicyKit plugin
Marcel Holtmann [Thu, 9 Sep 2010 16:44:06 +0000 (18:44 +0200)]
Update support for PolicyKit with GDBus security integration
Marcel Holtmann [Thu, 9 Sep 2010 16:29:01 +0000 (18:29 +0200)]
Add gdbus/polkit.c file to sources list
Marcel Holtmann [Thu, 9 Sep 2010 15:04:40 +0000 (17:04 +0200)]
Add support for builtin GDBus security using PolicyKit
Marcel Holtmann [Thu, 9 Sep 2010 14:39:46 +0000 (16:39 +0200)]
Add support for GDBus security action and flags
Marcel Holtmann [Sun, 29 Aug 2010 10:31:20 +0000 (06:31 -0400)]
Use simpler error callbacks for GDBus security hooks
Marcel Holtmann [Sat, 28 Aug 2010 22:18:47 +0000 (00:18 +0200)]
Add support for GDBus security handlers
Marcel Holtmann [Wed, 8 Sep 2010 18:41:29 +0000 (20:41 +0200)]
Make the internal DHCP client the default now
Marcel Holtmann [Wed, 8 Sep 2010 18:20:18 +0000 (20:20 +0200)]
Release 0.60
Pekka Pessi [Mon, 30 Aug 2010 15:21:12 +0000 (18:21 +0300)]
network: don't connect if already removed
Pekka Pessi [Mon, 30 Aug 2010 15:21:11 +0000 (18:21 +0300)]
network: don't add into profile while unregistered
The connman_network_set_group() created an extra ref to service if it
was called before network was probed and registered.
Pekka Pessi [Mon, 30 Aug 2010 15:21:10 +0000 (18:21 +0300)]
service: debug log ref and unref