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