make code compile with enable-malicious option set
[oweals/gnunet.git] / TODO
1 0.9.0pre2:
2  FS:
3   - measure latencies (core, datastore) => trust economy
4   - FS performance benchmarking
5   - integrate with DHT (need DHT API to fit block API better first; also, get rid of the continuation!)
6 * DHT: [Nate]
7   - use new block lib in service
8   - provide block-lib compatible API in gnunet_dht_service.h
9   - eliminate continuations in DHT API (not needed, we have auto-retransmit!)
10 * CORE:
11   - derived key generation [Nils]
12   - authentication of ciphertexts [Nils]
13   - Jun 27 11:51:54 core-7670 ERROR Assertion failed at gnunet-service-core.c:3616.
14     (transport notified us that we connected to ourselves!!!)
15   - transport-level disconnect (i.e. TCP) does not cause core-level
16     disconnect in a timely fashion (waits for connection timeout);
17     need to figure a way to make it near-instant in those cases 
18     (i.e. rapid reduction in timeout on transport-level disconnect) [CG]
19     => may have been fixed with instant-notification of disconnect
20        to core on session-oriented connection hick-up; not perfect but
21        likely good enough until we get ATS going; still should be tested...
22     => "peers connected (transport)" now instantly goes to ZERO (core statistic),
23        but "established sessions" stays up...
24 * UTIL:
25   - drop dependency on GMP? [Nils]
26
27 0.9.0pre3:
28 * Determine RC bugs and fix those (release should have no known real bugs)
29 * DATASTORE: [LT]
30   - GNUNET_DATASTORE_cancel method not tested [LT]
31 * TESTING: [Nate]
32   - test basic peer re-configure 
33 * TOPOLOGY: [Nate]
34   - needs more testing (especially F2F topology) & transport blacklisting
35 * TRANSPORT-TCP [MW]:
36   - should use hash map to look up sessions
37 * NAT/UPNP: [Milan]
38   - finalize API design
39   - code clean up
40   - testing
41   - integration with transport service
42   - also do UPnP-based (external) IP detection
43     (Note: build library always, build UPnP service when dependencies like libxml2 are available)
44 * FS: [CG]
45   - library:
46     + reconstruct IBLOCKS from DBLOCKS if possible (during download; see FIXME in fs_download)
47     + add support for pushing "already seen" search results to FS service for bloomfilter
48     + use different 'priority' for probe downloads vs. normal downloads
49   - service:
50     + trust: do not charge when "idle" / load considerations (migration, routing)
51     + artificial delays
52     + active reply route caching design & implementation; gap extension!
53   - non-anonymous FS service (needs DHT)
54     + DHT integration for search
55     + CS-DHT-functions (DHT-put of LOC)
56     + P2P-functions (DHT-get)
57   - implement FS performance tests
58     + insert
59     + download
60     + search
61     + unindex
62   - re-implement gnunet-auto-share
63 * GNUNET-GTK:
64   - optimize meta-data for directories in 'add_dir_at_iter'
65   - finish publish dialog details:
66     + normalize keywords (edit subdialog)
67     + set/view previews (edit subdialog)
68   - implement download by URI dialog; figure out where to display those downloads!
69   - figure out where in the GUI we should show active uploads/unindex operations and allow aborts
70   - implement unindex operation (use dialog with all indexed files for selection)
71   - events:
72     + search error
73     + publish error
74     + unindex error
75 * ARM: [CG/Safey]
76   - better tracking of which config changes actually need to cause process restarts by ARM.
77   - handle gnunet-arm -k in combination with auto-start magic (what is the right thing here?)
78   - discover dependencies between services
79 * MONKEY: [Safey]
80   - better crash management (attach debugging support, capture and analyze
81     debug output, detect random vs. deterministic crashes)
82   - '-m EMAIL' option for alternative e-mail TO
83   - '-f FILENAME' option to write  report to file instead of e-mail (for testing!)
84
85 0.9.0:
86 * Determine RC bugs and fix those  (release should have no known real bugs)
87 * UTIL:
88   - only connect() sockets that are ready (select()) [Nils]
89     [On W32, we need to select after calling socket before doing connect etc.]
90 * new webpage: [BL]
91   - convert documentation pages to books
92   - update books (especially for developers)
93   - make a NICE download page and figure out how to enable developers to publish TGZs nicely
94   - port "contact" page
95   - add content type for "todo" items
96 * SETUP: [CG]
97   - design & implement new setup tool
98 * TBENCH: [MW]
99   - good to have for transport/DV evaluation! 
100 * TRACEKIT: [MW]
101   - good to have for DHT evaluation!
102 * DHT: [Nate]
103   - performance tests
104 * BLOCK:
105   - more testing (KBlock, SBlock, NBlock)
106
107 0.9.1:
108 * TRANSPORT: [MW]
109   - WiFi transport backend [DB]
110   - implement gnunet-transport (transport configurator / tester)
111   - Implement method of learning our external addresses from
112     other peers; need some kind of threshold-based
113     scheme, limiting both the total number of addresses that we accept 
114     this way as well as requiring multiple confirmations; also, we
115     should possibly try to confirm that the given address works for
116     us ourselves (loopback-style) before adding it to the list
117     + we may be able to simplify WELCOME messages (no need to add 
118       addresses there anymore, but may help to learn them there anyway...).
119     + we probably want some kind of voting/counting for learning IP addresses
120       (maybe including IP addresses in ads proportional to how often others
121        report them? we at least need some protection against >64k HELLOs!),
122     + provide a way to give the user a list of "learned" IP addresses and
123       a way to easily "veto" addresses off the list!
124       => If MiM attacker uses vetoed address, blacklist the specific IP for
125          the presumed neighbour!
126   - need to periodically probe latency/transport cost changes & possibly switch transport
127   - should use hash map to look up Neighbours (service AND plugins!)
128 * DV: [Nate]
129   - proper bandwidth allocation
130   - performance tests
131 * PEERINFO:     
132   - merge multiple HELLOs of the same peer in the transmission queue
133     (theoretically reduces overhead; bounds message queue size)
134   - merge multiple iteration requests over "all" peers in the queue
135     (theoretically reduces overhead; bounds messgae queue size)
136 * STATISTICS: [CG]
137   - should use BIO instead of mmap
138 * FS: [CG]
139   - Remove KBlocks in gnunet-unindex (see discussion with Kenneth Almquist on gnunet-devs in 9/2009)
140   - use different queue prioritization for probe-downloads vs. normal downloads
141 * UTIL: [CG]
142   - allow limiting UNIX socket access by UID/GID
143 * GNUNET-GTK: [CG]
144   - add tool bar
145   - do meaningful update to status line (starting up, peer running, #connections, shutdown, ...)
146   - add progress dialog for 'add_dir_at_iter' scan (can take a while...)
147   - NS list in search dialog should use colors to offset our own namespaces from the others
148   - right-clicking on NS list in search dialog should open menu that allows 
149     * viewing full meta data 
150     * deletion of namespace info
151
152 0.9.2:
153 * PEERINFO: [NN]
154   - expire 'ancient' HELLOs (those without valid addresses AND that 
155     we have not 'used' (for their public keys) in a while; need a way
156     to track actual 'use')
157   - make sue we also trigger notifications whenever HELLOs expire
158 * TCP:
159   - repeatedly resolve hostname and look up interfaces to determine our own IP
160   - [./transport/plugin_transport_tcp.c:391]: (style) struct or union member 'Plugin::address_update_task' is never used (related to issue above)
161 * TRANSPORT:
162   - [./transport/gnunet-service-transport.c:173]: (style) struct or union member 'TransportPlugin::rebuild' is never used (related to TCP not refreshing external addresses?)
163   - WiFi transport backend
164     * nice signal strength adjustment [MW]
165     * energy cost in ATS [MW]
166 * BLOCKS:
167   - testcase would be nice
168   - generic block support for DHT
169 * STATISTICS:
170   - test notification-based statistics API [LT]
171   - implement statistics GUI (=> start from gnunet-gtk by button!)
172 * PEERINFO: [NN]
173   - move peerinfo to new GUI (=> start from gnunet-gtk by button!)
174   - extend peer dialog with green-yellow-red connectivity status lights
175   - extend peer dialog with country flags and names
176
177 0.9.3:
178 * SMTP transport backend:
179   - sending (SMTP/SMTPS)
180   - receiving (IMAP/IMAPS/POP?)
181   - rate limiting
182   - improved batching
183   - resource limit integration with ATS
184 * VPN [PT]
185   - DNS hijacking
186   - DNS exit
187   - TCP entry/exit
188   - UDP entry/exit
189   - internal services
190   - integration with DHT routing
191   - optimized routes (beyond DHT/DV)
192   - "DNS" .gnunet