updates.
[silc.git] / TODO
1 TODO for 1.1 And Beyond
2 =======================
3
4 NOTE: Any item that doesn't have (***DONE) in it, isn't done yet.
5
6
7 lib/silccrypt                   ****PARTLY DONE****
8 =============
9
10  o Implement the defined SilcDH API.  The definition is in
11    lib/silccrypt/silcdh.h.
12
13  o SSH2 public keys support, allowing the use of SSH2 public keys in
14    SILC.
15
16  o OpenPGP certificate support, allowing the use of PGP public keys
17    in SILC.
18
19  o SILC PKCS (silcpkcs.h) reorganizing when other PK supports added.
20    Move the SILC Public Key routines away from the crypto library into
21    the core library (silccore).  silc_pkcs_public/private_key_* routines
22    to silc_public/private_key_* routines.  The silc_public_key_* routines
23    should also automatically handle SILC Public Keys, and other keys
24    and certificates as well.  Add fe. silcpk.h into silccore.  It should
25    also include the Public Key Payload encoding and decoding routines.
26    (***DONE)
27
28  o Add DSS support.
29
30  o Cipher optimizations (asm, that this) at least for i386 would be nice.
31
32  o ECDSA and ECDH.
33
34
35 lib/silccore/silcpacket.[ch]    ****DONE****
36 ============================
37
38  o SilcPacketEngine. (***DONE)
39
40  o New SILC Packet API. (***DONE)
41
42
43 lib/silccore/silcpacket.[ch]    ****PARTLY DONE****
44 ============================
45
46  o IV Included flag support, UDP transport support (***TESTING NEEDED)
47
48
49 lib/silcske/silcske.[ch]
50 ========================
51
52  o IV Included flag support (it currently doesn't accept it)
53
54
55 lib/silccore/silcid.[ch]        ****DONE****
56 ========================
57
58   o Add silc_id_str2id to accept the destination buffer as argument
59     and thus not require any memory allocation.  Same will happen
60     with silc_id_payload_* functions. (***DONE)
61
62   o silc_id_str2id, silc_id2str to non-allocating routines. (***DONE)
63
64
65 lib/silccore
66 ============
67
68   o All payload encoding routines should take SilcStack as argument.
69
70
71 lib/silcutil                    ****PARTLY DONE****
72 ============
73
74  o silc_stringprep to non-allocating version.
75
76  o Compression routines are missing.  The protocol supports packet
77    compression thus it must be implemented.  SILC Zip API must be
78    defined.
79
80  o Add builtin SOCKS and HTTP Proxy support, well the SOCKS at least.
81    SILC currently supports SOCKS4 and SOCKS5 but it needs to be compiled
82    in separately.
83
84  o bool -> SilcBool (***DONE)
85
86  o Silc FD Stream to WIN32 (lib/silcutil/silcfdstream.h)
87
88
89 lib/silcutil/silcbuffer.h       ****DONE****
90 =========================
91
92  o Remove the `truelen' field from SilcBuffer as it is entirely
93    redundant since we can get the true length of the buffer by
94    doing buffer->end - buffer->header.  Add silc_buffer_truelen
95    macro instead.  Consider also removing `len' field too since
96    it effectively is buffer->tail - buffer->data, and adding
97    silc_buffer_len macro can do the same.  These would save
98    totally 8 bytes of memory per buffer. (***DONE)
99
100
101 lib/silcutil/silcbuffmt.[ch]    ****PARTLY DONE****
102 ============================
103
104  o SilcStack aware silc_buffer_unformat
105
106  o SilcStack aware silc_buffer_format (***DONE)
107
108  o silc_buffer_format reallocates automatically (***DONE)
109
110  o SILC_STR_OFFSET (***DONE)
111
112
113 lib/silcutil/silcstack.[ch]     ****DONE****
114 ===========================
115
116  o Data stack implementation (***DONE)
117
118
119 lib/silcutil/silcstream.[ch]    ****DONE****
120 ============================
121
122  o Add abstract SilcStream. (***DONE)
123
124
125 lib/silcutil/silcsocketstream.[ch]      ****PARTY DONE****
126 ==================================
127
128  o Add SilcSocketStream (***DONE)
129
130  o Add SilcSocketStream for WIN32
131
132  o Test QoS after the changes made to socket stream
133
134
135 lib/silcutil/silcschedule*.[ch]         ****DONE****
136 ===============================
137
138  o Scheduler can be optimized for FD tasks by changing the fd_queue
139    to SilcHashTable instead of using linked list.  We need to do
140    one-to-one mapping of FD to task and hash table is more efficient
141    for this usage.
142
143    Also redefine the silc_select to perhaps return a separate
144    structure of the events that actually occurred, instead of
145    returning the events in the fd_list which is then traversed
146    in the generic code to find the changed events.  This can be
147    made faster by having own struct which includes only the
148    changed events, thus the tarversing is faster since the whole
149    fd_list is not traversed anymore (it is still traversed in the
150    silc_select but at least it removes one extra tarversing later
151    for the same list).
152
153    Other task queues should be changed to use SilcList.  (***DONE)
154
155  o Add SILC scheduler's internal routines into a table of implementation
156    function pointers, that the generic code then takes as extern from
157    implementation.  These are the silc_schedule_internal_* routines.
158    (***DONE)
159
160  o Change SILC_TASK_CALLBACK to non-static, and remove the macro
161    SILC_TASK_CALLBACK_GLOBAL. (***DONE)
162
163  o SILC Schedule API changes to WIN32.
164
165
166 lib/silcutil/silcasync.[ch]     ****DONE****
167 ===========================
168
169  o Add SilcAsyncOperation to utility library.  Any function that takes
170    callback as an argument must/should return SilcAsyncOperation.
171    (***DONE)
172
173
174 lib/silcutil/silctime.[ch]      ****DONE****
175 ===========================
176
177  o SilcTime. (***DONE)
178
179  o system time, universal, generalized. (***DONE)
180
181
182 lib/silcutil/silcfsm.[ch]       ****DONE****
183 =========================
184
185  o SILC Finite State Machine API.  Replaces SILC Protocol API (***DONE)
186
187
188 lib/silcutil/silcnet*, lib/silcutil/*/silc*net*         ****PARTLY DONE****
189 ===============================================
190
191  o Add UDP interface (***DONE)
192
193  o Add UDP interface for WIN32
194
195  o New network interfaces (***DONE)
196
197
198 lib/silcutil/epoc/*
199 ===================
200
201   o lib/silcutil/epoc routines missing or not completed.
202
203   o The PKCS#1 also calls global RNG (even though it is not used
204     currently in SILC, the interface allows its use).
205
206   o Something needs to be thought to the logging globals as well,
207     like silc_debug etc.  They won't work on EPOC.  Perhaps logging
208     and debugging is to be disabled on EPOC.
209
210
211 lib/silcmath
212 ============
213
214  o Import TFM.  Talk to Tom to add the missing functions.  Use TFM in
215    client and client library, but TMA in server, due to the significantly
216    increased memory consumption with TFM, and the rare need for public
217    key operations in server.
218
219  o The SILC MP API function must start returning indication of success
220    and failure of the operation.
221
222  o Do SilcStack support for silc_mp_init, silc_mp_init_size and other
223    any other MP function (including utility ones) that may allocate
224    memory.
225
226  o All utility functions should be made non-allocating ones.
227
228
229 lib/silcasn1                    ****PARTLY DONE****
230 ============
231
232  o ASN.1 library (***DONE)
233
234  o Header documentation missing. (***DONE)
235
236  o Some string encodings missing (copy/paste matter). (***DONE)
237
238  o Negative integer encoding
239
240
241 lib/silcpkix
242 ============
243
244  o PKIX implementation
245
246
247 lib/silcserver
248 ==============
249
250  o (Re)write commands/command replys.
251
252  o (Re)write notify handling.
253
254  o The SERVER_SIGNOFF notify handing is not optimal, because it'll
255    cause sending of multiple SIGNOFF notify's instead of the one
256    SERVER_SIGNOFF notify that the server received.  This should be
257    optimized so that the only SERVER_SIGNOFF is sent and not
258    SIGNOFF of notify at all (using SIGNOFF takes the idea about
259    SERVER_SIGNOFF away entirely).
260
261  o Another SERVER_SIGNOFF opt/bugfix:  Currently the signoff is
262    sent to a client if it is on same channel as the client that
263    signoffed.  However, the entire SERVER_SIGNOFF list is sent to
264    the client, ie. it may receive clients that was not on the
265    same channel.  This is actually against the specs.  It must be
266    done per channel.  It shouldn't receive the whole list just
267    because one client happened to be on same channel.
268
269  o MAYBE: The SilcChannelClientEntry can be:
270         SilcUInt32 address;
271         SilcUInt32 mode;
272
273   where address is SilcClientEntry address XOR SilcChannelEntry.
274   You can get SilcClientEntry by doing client = chl->address XOR channel,
275   and SilcChannelEntry by doing channel = chl->address XOR client.
276   As long as the other pointer is always available when accessing the
277   structure this can be done.
278
279  o Add reference counters to all Silc*Entry structures
280
281  o SERVICEs support (plugin, SIM)
282
283  o If client's public key is saved in the server (and doing public key
284    authentication) then the hostname and the username information could
285    be taken from the public key.  Should be a configuration option!
286
287  o Add a timeout to handling incoming JOIN commands.  It should be
288    enforced that JOIN command is executed only once in a second or two
289    seconds.  Now it is possible to accept n incoming JOIN commands
290    and process them without any timeouts.  THis must be employed because
291    each JOIN command will create and distribute the new channel key
292    to everybody on the channel (Fix this to 0.9.x).
293
294  o Related to above.  If multiple JOINs are received in sequence perhaps
295    new key should be created only once, if the JOINs are handeled at the same
296    time.  Now we create multiple keys and never end up using them because
297    many JOINs are processed at the same time in sequence.  Only the last
298    key ends up being used.
299
300  o The CMODE cipher & hmac change problem (#101).
301
302
303 lib/silcclient
304 ==============
305
306  o Some form of rewrite to make it more efficient.
307
308  o Clear up interfaces.
309
310  o Remove silc_client_run and silc_client_run_one from calling SilcSchedule.
311    Leave the scheduling entirely to application.