TODO: Removed wispr task
[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 Core
12 ====
13
14 - Session API implementation
15
16    Priority: High
17    Complexity: C4
18    Owner: Daniel Wagner <daniel.wagner@bmw-carit.de>
19    Owner: Samuel Ortiz <sameo@linux.intel.com>
20
21    The session API should provide a connection abstraction in order to
22    prioritize applications network accesses, prevent or allow network
23    and bearer roaming, or provide applications with a way to request
24    for periodic network connections. On-demand connections will be
25    implemented through this API as well.
26    See http://www.mail-archive.com/connman@connman.net/msg01653.html
27
28
29 - DNS caching
30
31    Priority: Low
32    Complexity: C4
33
34    A simple initial implementation would see ConnMan's dnsproxy
35    caching the DNS record based on their TTL.
36
37
38 - Power management
39
40    Priority: Medium
41    Complexity: C4
42    Owner: Samuel Ortiz <sameo@linux.intel.com>
43
44    Implement a simple device pm hook that ConnMan's core code would
45    use whenever it decides to put devices in power save mode. Although
46    the kernel runtime power management code should take care of that,
47    not all driver (especially WiFi ones) implement runtime PM hooks.
48
49
50 - IP ranges allocation and check
51
52    Priority: High
53    Complexity: C2
54
55    For both tethering and private networks, but also to detect invalid
56    static IP configurations, we need to have a core IP range layer
57    that manages all currently used IP blocks.
58
59
60 - Personal firewall
61
62    Priority: Low
63    Complexity: C8
64
65    Extend the iptables code and provide a D-Bus API for personal firewalling.
66
67
68 - PACRunner extensions
69
70    Priority: Low
71    Complexity: C4
72
73    Support more URI schemes, support multiple connections, tighter
74    security integration.
75
76
77
78 WiFi
79 ====
80
81 - Ad-Hoc support
82
83    Priority: Medium
84    Complexity: C2
85    Owner: Samuel Ortiz <sameo@linux.intel.com>
86
87
88 - Fast Connect
89
90    Priority: Low
91    Complexity: C4
92    Owner: Samuel Ortiz <sameo@linux.intel.com>
93
94
95 - EAP-AKA/SIM
96
97    Priority: Medium
98    Complexity: C2
99    Owner: Samuel Ortiz <sameo@linux.intel.com>
100
101    This EAP is needed for SIM card based network authentication.
102    ConnMan here plays a minor role: Once wpa_supplicant is set up for
103    starting and EAP-AKA/SIM authentication, it will talk to a SIM card
104    through its pcsc-lite API.
105
106
107 - EAP-FAST
108
109    Priority: Low
110    Complexity: C1
111
112
113 - WiFi p2p
114
115    Priority: Medium
116    Complexity: C2
117
118
119
120 Bluetooth
121 =========
122
123 - DUN client
124
125    Priority: Low
126    Complexity: C4
127    Owner: Mario Tokarz <mario.tokarz@bmw-carit.de>
128
129
130
131 Cellular
132 ========
133
134
135 VPN
136 ===
137
138 - l2tp support
139
140    Priority: Low
141    Complexity: C2
142    Owner: Mohamed Abbas <mohamed.abbas@intel.com>
143
144
145 - pptp support
146
147    Priority: Low
148    Complexity: C2
149    Owner: Mohamed Abbas <mohamed.abbas@intel.com>
150
151
152 - IPsec
153
154    Priority: Low
155    Complexity: C4
156
157
158 - Split tunnelling
159
160    Priority: Low
161    Complexity: C8
162    Dependencies: Core:Private networks
163
164    The current VPN support puts the VPN interface at the top of the
165    service list, giving VPNs the default route. When doing split
166    tunneling, the system routes packet to the VPN interface for
167    private IPs, while going through the default interface for the rest
168    of the traffic.