only for ksk
[oweals/gnunet.git] / TODO
1 Implementable right now (but not necessarily important), with caveats
2 (unavailable components that will limit what can be implemented right
3 away), in order in which they will likely be done:
4 * TESTING-TESTBED [Nate]
5 * SETUP
6 * DV [Nate]
7 * TBENCH
8 * TRACEKIT
9 * FRAGMENTATION [Ji Lu]
10 * HTTP transport
11 * MySQL / Postgres plugins (datastore, datacache)
12 * UPNP [Milan]
13 * ARM [Safey]
14 * FS [Christian]
15
16 0.9.0pre0:
17 * CORE:
18   - SET_KEY is triggered every 2.5 minutes (after session is up); should
19     just do PING (not SET_KEY + PING)
20   - "Forcing disconnect of XXX due to inactivity" -- can happen every few MS!?
21     (disconnect does not really succeed, or what?)
22     Also, core does not seem to actually decrement the number of active
23     sessions even if no connections exist for a while! (likely related...)
24   - transport reports bw quota violations on big-endian systems (core or
25     transport issue?)
26 * FS:
27   - gnunet-publish cannot be aborted using CTRL-C
28   - on some systems, keyword search does not find locally published content
29     (need testcase of command-line tools!)
30   - 2-peer download is still too slow (why?)
31   - advanced FS API parts
32     + search: SBlocks, NBlocks, probes, notify FS-service of known results
33     + location URIs (publish, search, download)
34     + indexing: index-failure-cleanup
35     + gnunet-publish (URI args)
36     + gnunet-download (directory)
37     + gnunet-search (options, incl. namespace search)
38     + gnunet-download (many options)
39     + gnunet-directory (man page, options)
40     + gnunet-pseudonym (all of it)
41     + gnunet-service-fs (remove failing on-demand blocks, hot-path routing, load-based routing, nitpicks)
42   - implement adv. FS testcases 
43     + getopt API
44     + insert: sblocks, loc uris
45     + download: loc uris
46     + search: sblocks, nblocks, loc uris
47     + namespaces
48   - [./fs/gnunet-service-fs.c:208]: (style) struct or union member 'LocalGetContext::results_bf_size' is never used
49   - [./fs/gnunet-service-fs.c:501]: (style) struct or union member 'PendingRequest::used_pids_size' is never used
50   - [./fs/gnunet-service-fs.c:654]: (style) struct or union member 'ConnectedPeer::last_client_replies' is never used
51   - [./fs/gnunet-service-fs.c:669]: (style) struct or union member 'ConnectedPeer::avg_delay' is never used
52   - [./fs/gnunet-service-fs.c:675]: (style) struct or union member 'ConnectedPeer::avg_priority' is never used
53   - [./fs/gnunet-service-fs.c:688]: (style) struct or union member 'ConnectedPeer::pending_requests' is never used
54   - [./fs/gnunet-service-fs.c:694]: (style) struct or union member 'ConnectedPeer::last_p2p_replies_woff' is never used
55   - [./fs/gnunet-service-fs.c:700]: (style) struct or union member 'ConnectedPeer::last_client_replies_woff' is never used
56
57 * WWW:
58   - Get IPv6 hooked up
59   - change DNS
60
61 0.9.0pre1:
62 * Module features to implement:
63   - tbench (RC-pre1)
64     + good to have for DV evaluation!
65   - DV (RC-pre1)
66     + write DV API 
67     + implement DV service [Nate & CG]
68     + implement DV library [Nate]
69     + implement DV transport plugin [Nate & CG]
70     + implement testcases [Nate]
71     + implement performance tests [Nate]
72 * SETUP:
73   - design & implement new setup tool
74 * GUIs to implement:
75   - gtk (RC-pre1)
76     + how to integrate scheduler with GTK event loop!
77 * STATISTICS:
78   - does not seem to work with timeouts (especially if service is not running)
79 * UTIL:
80   - trust: need *fast* way to check/update trust in peers
81            (async peerinfo would not be right)
82   - scheduler should change OS process priority based on task priority;   
83     should make better use of task priorities in general
84   - only connect() sockets that are ready (select()) [Nils]
85     [On W32, we need to select after calling socket before
86      doing connect etc.]
87 * FS:
88   - datastore reservation (publishing)
89   - persistence support (publish, unindex, search, download)
90   - download: management/bounding of parallel downloads (for recursive dl.)
91   - non-anonymous FS service (needs DHT)
92     + basic DHT integration
93     + CS-DHT-functions (DHT-put of LOC)
94     + P2P-functions (DHT-get)
95   - active migration support (in fs or in datastore or new daemon?)
96   - GAP improvements:
97     + active reply route caching design & implementation of service; gap extension!
98 * TOPOLOGY:
99   - needs more testing (especially F2F topology)
100   - needs to re-try connecting after disconnect (currently, it
101     initially triggers a connection request, but if that connection
102     fails / goes down, it does not retry in a timely fashion;
103     cause seems to be the 'blacklist_after_attempt' being set to 1h,
104     which is rather long -- and should probably be adjusted based on
105     the number of connections / known peers)
106   - If the topology daemon crashes, peers that were put on the
107     blacklist with transport will never be removed from it (until
108     transport service dies); we should use the blacklist notification
109     API to learn about the exact set of blacklisted peers at all times
110     (FIXME: the transport_api implementation of blacklisting
111      also does not work nicely for this since it won't let us know about
112      disconnect-reconnect events and the implicit whitelisting
113      that might happen here; that's not so bad since we will
114      re-blacklist on pre-connect attempts anyway, so this is 
115      a minor issue).
116   - the code uses the term 'blacklist' for both peers that are forbidden
117     to connect (i.e. F2F mode) as well as peers that we currently
118     won't try to actively connect to ourselves (since we just tried);
119     This is confusing.  We need two distinct terms.
120   - move code to use hash table instead of linked list
121   - instead of periodically discarding blacklisted entries,
122     simply add task that is triggered at the right time (earlier free,
123     more balanced load)
124   - check if new HELLO learned is different from old HELLO
125     before resetting entire state!
126 * HELLO:
127   - need function to test "equivalency" of HELLOs (or integrate with "merge"?); use in PEERINFO
128
129 0.9.0pre2:
130 * Module features to implement:
131   - tracekit (RC-pre2)
132     + good to have for DV/DHT evaluation!
133   - DHT (RC-pre2)
134     + implement DHT service (needs DV, DATACACHE)
135     + implement DHT library
136     + implement testcases
137     + implement performance tests
138 * GUIs to implement:
139   - fuse (RC-pre2)
140 * Plugins to implement:
141   - UDP backend (RC-pre2)
142     + Fragmentation library 
143     + actual plugin
144   - HTTP backend (RC-pre2)
145 * ARM:
146   - need to get rid of synchronous API for service starts (cause all kinds of problems)
147     [=> eliminate for need to tell ARM about service starts most of the time!] [Safey]
148   - better tracking of which config changes actually need to cause process restarts by ARM.
149   - listen for requests to discover dependencies between services (and avoid
150     having to explicitly program start requests)
151   - better crash management (attach debugging support, capture and analyze
152     debug output, detect random vs. deterministic crashes)
153   - shutdown sequence?
154 * FS:
155   - collection API & tests
156   - implement FS performance tests
157     + insert
158     + download
159     + search
160     + unindex
161
162
163 0.9.0pre3:
164 * GUIs to implement:
165   - qt (RC-pre3)
166     + see discussions @ FISL about integration with event loop!
167 * Determine RC bugs and fix those!
168 * TESTING:
169   - modify configuration to allow controlling connections for non-local starts
170   - testbed creation with topology (needs working F2F topology) [Nate]
171   - testbed with churn [Nate]
172   - implement testcases for distributed testing [Nate]
173   - test basic peer re-configure [Nate]
174   - test topology creation [Nate]
175   - test churn generation [Nate]
176   - consider changing API for peer-group termination to 
177     call continuation when done
178
179
180 0.9.0:
181 * Documentation
182   - update man pages
183   - update webpage documentation
184 * new webpage:
185   - expand bibliography
186   - convert documentation pages to books
187   - update books (especially for developers)
188   - create good Drupal theme for GNUnet
189   - make a NICE download page and figure out how to 
190     enable developers to publish TGZs nicely
191   - port "contact" page
192   - add content type for "todo" items?
193   - DNS activation
194 * Plugins to implement:
195   - MySQL database backends
196     + datacache
197     + datastore
198   - Postgres database backends
199     + datacache
200     + datastore
201   - vpn
202 * Determine RC bugs and fix those!
203
204
205 0.9.x:
206 * TRANSPORT:
207   - SMTP transport backend
208   - HTTPS transport backend
209     + improved HTTPS support in MHD
210     + actual plugin
211   - Implement method of learning our external addresses from
212     other peers; need some kind of threshold-based
213     scheme, limiting both the total number of addresses that we accept 
214     this way as well as requiring multiple confirmations; also, we
215     should possibly try to confirm that the given address works for
216     us ourselves (loopback-style) before adding it to the list
217     + we may be able to simplify WELCOME messages (no need to add 
218       addresses there anymore, but may help to learn them there anyway...).
219     + we probably want some kind of voting/counting for learning IP addresses
220       (maybe including IP addresses in ads proportional to how often others
221        report them? we at least need some protection against >64k HELLOs!),
222     + provide a way to give the user a list of "learned" IP addresses and
223       a way to easily "veto" addresses off the list!
224       => If MiM attacker uses vetoed address, blacklist the specific IP for
225          the presumed neighbour!
226   - implement gnunet-transport (transport configurator / tester)
227   - UPnP-based IP detection
228     (Note: build library always, build service when libxml2/etc. are available)
229 * FS:
230   - Remove KBlocks in gnunet-unindex (see discussion with Kenneth Almquist on gnunet-devs in 9/2009)
231   - Allow checking of presence of search results and/or content via command-line tools
232     (add options to gnunet-search / gnunet-download to limit search to local peer)
233 * PEERINFO:
234   - expire 'ancient' HELLOs (those without valid addresses AND that 
235     we have not 'used' (for their public keys) in a while; need a way
236     to track actual 'use')
237   - make sue we also trigger notifications whenever HELLOs expire
238
239
240
241 Optimizations:
242 * TCP:
243   - should use hash map to look up sessions
244 * PEERINFO:
245   - api creates many, many short-lived TCP connections; either some
246     clients should use the API differently or we need to change the
247     API to enable re-use of connections to the service
248 * STATISTICS:
249   - should use BIO instead of mmap
250 * TRANSPORT:
251   - need to periodically probe latency/transport cost changes & possibly switch transport
252   - instantly filter addresses from *other* peers that 
253     are *equal* to our own address + port (i.e., localhost:2086).  We 
254     no longer filter those for outgoing (helps with loopback testing
255     and keeps the code clean), but we should filter strictly *impossible*
256     incoming addresses!  This is for efficiency, not correctness.
257   - should use hash map to look up Neighbours
258 * HOSTLIST:
259   - 'server' uses 'GNUNET_PEERINFO_iterate', should probably switch to notification API
260     (for more instant / up-to-date hostlists at lower cost) [OPTIMIZATION]
261
262 Minor features:
263 * TCP:
264   - repeatedly resolve hostname and look up interfaces to determine our own IP
265   - [./transport/plugin_transport_tcp.c:391]: (style) struct or union member 'Plugin::address_update_task' is never used (related to issue above)
266 * TRANSPORT:
267   - [./transport/gnunet-service-transport.c:173]: (style) struct or union member 'TransportPlugin::rebuild' is never used (related to TCP not refreshing external addresses?)
268 * DATACACHE:
269   - add stats (# bytes available, # bytes used, # PUTs, # GETs, # GETs satisfied)
270