TODO: Support other time sources
[platform/upstream/connman.git] / TODO
1 Background
2 ==========
3
4 - Priority scale: High, Medium and Low
5
6 - Complexity scale: C1, C2, C4 and C8.
7    The complexity scale is exponential, with complexity 1 being the
8    lowest complexity. Complexity is a function of both task 'complexity'
9    and task 'scope'.
10
11
12 Core
13 ====
14
15 - Session API implementation
16
17    Priority: High
18    Complexity: C4
19    Owner: Daniel Wagner <daniel.wagner@bmw-carit.de>
20    Owner: Patrik Flykt <patrik.flykt@linux.intel.com>
21
22    The session API should provide a connection abstraction in order to
23    prioritize applications network accesses, prevent or allow network
24    and bearer roaming, or provide applications with a way to request
25    for periodic network connections. On-demand connections will be
26    implemented through this API as well.
27    See http://www.mail-archive.com/connman@connman.net/msg01653.html
28
29
30 - Personal firewall
31
32    Priority: Low
33    Complexity: C8
34    Owner: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
35
36    Discuss and implement a basic and safe firewalling strategy into
37    Connman. Provide a D-Bus API for personal firewalling.
38
39
40 - PACRunner extensions
41
42    Priority: Low
43    Complexity: C4
44
45    Support more URI schemes, support multiple connections, tighter
46    security integration.
47
48
49 - Check logging produced by connman_info()
50
51    Priority: Medium
52    Complexity: C1
53
54    Check that logging produced by connman_info() contains meaningful messages
55    and get rid of the unnecessary ones.
56
57
58 - Support for multiple agents
59
60   Priority: Medium
61   Complexity: C2
62
63   Allow to register multiple agents. Each unique system bus name owner
64   however is only allowed to register one agent.
65
66   The selection of which agents is used  should be matched by bus name
67   owner if possible or first come first serve. A graceful fallback to
68   the next agent should be also used in case of malfunctional agents.
69
70 - Remove --nobacktrace option
71
72  Priority: Medium
73  Complexity: C1
74  When: 2.0
75
76  Remove the --nobacktrace option or change it to --backtrace depending on the
77  level of systemd integration or other factors.
78
79
80 - Clean up type definitions
81
82    Priority: Medium
83    Complexity: C1
84
85    Go through variable types and use the following:
86    * bool from <stdbool.h> instead of connman_bool_t and gboolean, in the
87      latter case in those places it makes sense
88
89
90 - Clean up data structure usage
91
92    Priority: Medium
93    Complexity: C4
94
95    Use hash tables, queues and lists in the code. Replace GSequences with
96    simpler structures. At the same time do a check on the currently used
97    data structures and see if something can be simplified.
98
99
100 - Unit tests for DHCP, DNS and HTTP
101
102    Priority: Medium
103    Complexity: C4
104
105    Create unit tests for these components starting with DHCP. Use gtest
106    from GLib for this task similarly to what has been done for OBEX in Bluez
107    and oFono in general.
108
109
110 - DHCPv6 DECLINE message support
111
112    Priority: Medium
113    Complexity: C2
114
115
116 - Support other time sources than NTP
117
118    Priority: Medium
119    Complexity: C2
120
121    Support other time sources like cellular, GPS in addition to NTP.
122
123
124 WiFi
125 ====
126
127 - Clean up WiFi data structure usage
128
129    Priority: Medium
130    Complexity: C2
131
132    Struct wifi_data is passed as a pointer in some of the wifi plugin
133    callbacks. For example removing a WiFi USB stick causes RTNL and
134    wpa_supplicant to call the wifi plugin at the same time causing the
135    freeing of the wifi data structure. Fix up the code to have proper
136    reference counting or other handling in place for the shared wifi data
137    and the members in the data structure.
138
139
140 - EAP-AKA/SIM
141
142    Priority: Medium
143    Complexity: C2
144    Owner: Samuel Ortiz <sameo@linux.intel.com>
145
146    This EAP is needed for SIM card based network authentication.
147    ConnMan here plays a minor role: Once wpa_supplicant is set up for
148    starting and EAP-AKA/SIM authentication, it will talk to a SIM card
149    through its pcsc-lite API.
150
151
152 - EAP-FAST
153
154    Priority: Low
155    Complexity: C1
156
157
158 - WiFi p2p
159
160    Priority: Medium
161    Complexity: C2
162
163
164 - Removing wpa_supplicant 0.7.x legacy support
165
166   Priority: Low
167   Complexity: C1
168   Owner: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
169
170   Removing global country property setter in gsupplicant, and removing
171   wifi's technology set_regdom implementation. Removing autoscan fallback.
172   (Note: should be done around the end 2012)
173
174 Bluetooth
175 =========
176
177 - Remove Bluez 4.x support
178
179   Priority: Low
180   Complexity: C1
181
182   Remove plugins/bluetooth-legacy.c support in about 6 month (July 2013) or
183   when Bluez 4.x usage becomes minimal.
184
185 Cellular
186 ========
187
188
189 VPN
190 ===
191
192 - IPsec
193
194    Priority: Medium
195    Complexity: C4
196    Owner: Jukka Rissanen <jukka.rissanen@linux.intel.com>
197
198 - L2TP & PPTP compatibility prefix removal
199
200    Priority: Medium
201    Complexity: C1
202    When: connman 2.0
203
204    The VPN config file provisioning patchset contains code that makes
205    PPP options to be marked by "PPPD." prefix. The code supports also
206    old "L2TP." and "PPTP." prefix for PPP options. Remove the compatibility
207    code and only allow "PPPD." prefix for PPP options.
208
209
210 Tools
211 =====
212
213 - Add Session mode, VPN and Clock API support to connmanctl command line tool
214
215    Priority: Low
216    Complexity: C2
217
218    The connmanctl command line tool should support Session mode and VPN
219    Agent with a set of suitable commands used in both interactive and
220    non-interactive mode. Also add support for Clock API.
221
222
223 User Interface
224 ==============
225
226 - GNOME3 UI
227
228    Priority: Low
229    Complexity: C4
230    Owner: Alok Barsode <alok.barsode@linux.intel.com>
231
232    A GNOME3 shell user interface would make it easier for mainstream distros
233    users to use ConnMan.