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