Assure that endless loop with detached client resolving cannot
[silc.git] / apps / silcd / idlist.h
1 /*
2
3   idlist.h
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 1997 - 2002 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20
21 #ifndef IDLIST_H
22 #define IDLIST_H
23
24 /* Forward declarations */
25 typedef struct SilcServerEntryStruct *SilcServerEntry;
26 typedef struct SilcClientEntryStruct *SilcClientEntry;
27 typedef struct SilcChannelEntryStruct *SilcChannelEntry;
28
29 /* Context for holding cache information to periodically purge
30    the cache. */
31 typedef struct {
32   SilcIDCache cache;
33   SilcSchedule schedule;
34   SilcUInt32 timeout;
35 } *SilcIDListPurge;
36
37 /* Channel key re-key context. */
38 typedef struct {
39   void *context;
40   SilcChannelEntry channel;
41   SilcUInt32 key_len;
42   SilcTask task;
43 } *SilcServerChannelRekey;
44
45 /* Generic rekey context for connections */
46 typedef struct {
47   /* Current sending encryption key, provided for re-key. The `pfs'
48      is TRUE if the Perfect Forward Secrecy is performed in re-key. */
49   unsigned char *send_enc_key;
50   SilcUInt32 enc_key_len;
51   int ske_group;
52   bool pfs;
53   SilcUInt32 timeout;
54   void *context;
55 } *SilcServerRekey;
56
57 /* ID List Entry status type and all the types. */
58 typedef SilcUInt8 SilcIDListStatus;
59 #define SILC_IDLIST_STATUS_NONE         0x00    /* No status */
60 #define SILC_IDLIST_STATUS_REGISTERED   0x01    /* Entry is registered */
61 #define SILC_IDLIST_STATUS_RESOLVED     0x02    /* Entry info is resolved */
62 #define SILC_IDLIST_STATUS_RESOLVING    0x04    /* Entry is being resolved
63                                                    with WHOIS or IDENTIFY */
64 #define SILC_IDLIST_STATUS_DISABLED     0x08    /* Entry is disabled */
65 #define SILC_IDLIST_STATUS_RESUMED      0x10    /* Entry is resumed */
66 #define SILC_IDLIST_STATUS_LOCAL        0x20    /* Entry locally connected */
67 #define SILC_IDLIST_STATUS_RESUME_RES   0x40    /* Entry resolved while
68                                                    resuming */
69
70 /*
71    Generic ID list data structure.
72
73    This structure is included in all ID list entries and it includes data
74    pointers that are common to all ID entries.  This structure is always
75    defined to the first field in the ID entries and is used to explicitly
76    type cast to this type without first explicitly casting to correct ID
77    entry type.  Hence, the ID list entry is type casted to this type to
78    get this data from the ID entry (which is usually opaque pointer).
79
80    Note that some of the fields may be NULL.
81
82 */
83 typedef struct {
84   /* Send and receive symmetric keys */
85   SilcCipher send_key;
86   SilcCipher receive_key;
87
88   /* HMAC */
89   SilcHmac hmac_send;
90   SilcHmac hmac_receive;
91
92   /* Packet sequence numbers */
93   SilcUInt32 psn_send;
94   SilcUInt32 psn_receive;
95
96   /* Hash selected in the SKE protocol, NULL if not needed at all */
97   SilcHash hash;
98
99   /* Public key */
100   SilcPublicKey public_key;
101   unsigned char fingerprint[20];
102
103   /* Re-key context */
104   SilcServerRekey rekey;
105
106   long last_receive;            /* Time last received data */
107   long last_sent;               /* Time last sent data */
108
109   unsigned long created;        /* Time when entry was created */
110
111   SilcIDListStatus status;      /* Status mask of the entry */
112 } *SilcIDListData, SilcIDListDataStruct;
113
114 /* 
115    SILC Server entry object.
116
117    This entry holds information about servers in SILC network. However, 
118    contents of this entry is highly dependent of what kind of server we are 
119    (normal server or router server) and whether the entry is used as a local 
120    list or a global list. These factors dictates the contents of this entry.
121
122    This entry is defined as follows:
123
124    Server type   List type      Contents
125    =======================================================================
126    server        local list     Server itself
127    server        global list    NULL
128    router        local list     All servers is the cell
129    router        global list    All servers in the SILC network
130
131    Following short description of the fields:
132
133    SilcIDListDataStruct data
134
135        Generic data structure to hold data common to all ID entries.
136
137    char *server_name
138
139        Logical name of the server. There is no limit of the length of the
140        server name. This is usually the same name as defined in DNS.
141
142    SilcUInt8 server_type
143
144        Type of the server. SILC_SERVER or SILC_ROUTER are the possible
145        choices for this.
146
147    SilcServerID *id
148
149        ID of the server. This includes all the relevant information about
150        the server SILC will ever need. These are also the informations
151        that is broadcasted between servers and routers in the SILC network.
152
153    char *server_info
154    char *motd
155
156        Server info (from INFO command) saved temporarily and motd (from
157        MOTD command) saved temporarily.
158
159    SilcServerEntry router
160
161        This is a pointer back to the server list. This is the router server 
162        where this server is connected to. If this is the router itself and 
163        it doesn't have a route this is NULL.
164
165    SilcCipher send_key
166    SilcCipher receive_key
167
168        Data sending and receiving keys.
169
170    void *connection
171
172        A pointer, usually, to the socket list for fast referencing to
173        the data used in connection with this server.  This may be anything
174        but as just said, this is usually pointer to the socket connection
175        list.
176    
177 */
178 struct SilcServerEntryStruct {
179   /* Generic data structure. DO NOT add anything before this! */
180   SilcIDListDataStruct data;
181
182   char *server_name;
183   SilcUInt8 server_type;
184   SilcServerID *id;
185   char *server_info;
186   char *motd;
187
188   /* Pointer to the router */
189   SilcServerEntry router;
190
191   /* Connection data */
192   void *connection;
193 };
194
195 /* 
196    SILC Channel Client entry structure.
197
198    This entry used only by the SilcChannelEntry object and it holds
199    information about current clients (ie. users) on channel. Following
200    short description of the fields:
201
202    SilcClientEntry client
203
204        Pointer to the client list. This is the client currently on channel.
205
206    SilcUInt32 mode
207
208        Client's current mode on the channel.
209
210    SilcChannelEntry channel
211
212        Back pointer back to channel. As this structure is also used by
213        SilcClientEntry we have this here for fast access to the channel when
214        used by SilcClientEntry.
215
216 */
217 typedef struct SilcChannelClientEntryStruct {
218   SilcClientEntry client;
219   SilcUInt32 mode;
220   SilcChannelEntry channel;
221 } *SilcChannelClientEntry;
222
223 /* 
224    SILC Client entry object.
225
226    This entry holds information about connected clients ie. users in the SILC
227    network. The contents of this entrt is depended on whether we are normal 
228    server or router server and whether the list is a local or global list.
229
230    This entry is defined as follows:
231
232    Server type   List type      Contents
233    =======================================================================
234    server        local list     All clients in server
235    server        global list    NULL
236    router        local list     All clients in cell
237    router        global list    All clients in SILC
238
239    Following short description of the fields:
240
241    SilcIDListDataStruct data
242
243        Generic data structure to hold data common to all ID entries.
244
245    unsigned char *nickname
246
247        The nickname of the client.
248
249    char *servername
250
251        The name of the server where the client is from. MAy be NULL.
252
253    char username
254
255        Client's usename. This is defined in the following manner:
256
257        Server type   List type      Contents
258        ====================================================
259        server        local list     User's name
260        router        local list     NULL
261        router        global list    NULL
262
263        Router doesn't hold this information since it is not vital data 
264        for the router. If this information is needed by the client it is
265        fetched when it is needed.
266
267    char userinfo
268
269        Information about user. This is free information and can be virtually
270        anything. This is defined in following manner:
271        
272        Server type   List type      Contents
273        ====================================================
274        server        local list     User's information
275        router        local list     NULL
276        router        global list    NULL
277
278        Router doesn't hold this information since it is not vital data 
279        for the router. If this information is needed by the client it is
280        fetched when it is needed.
281
282    SilcClientID *id
283
284        ID of the client. This includes all the information SILC will ever
285        need. Notice that no nickname of the user is saved anywhere. This is
286        beacuse of SilcClientID includes 88 bit hash value of the user's 
287        nickname which can be used to track down specific user by their 
288        nickname. Nickname is not relevant information that would need to be 
289        saved as plain.
290
291    SilcUInt32 mode
292
293        Client's mode.  Client maybe for example server operator or
294        router operator (SILC operator).
295
296    long last_command
297
298        Time of last time client executed command. We are strict and will
299        not allow any command to be exeucted more than once in about
300        2 seconds. This is result of normal time().
301
302    SilcUInt8 fast_command
303
304        Counter to check command bursts.  By default, up to 5 commands
305        are allowed before limiting the execution.  See command flags
306        for more detail.
307
308    SilcServerEntry router
309
310        This is a pointer to the server list. This is the router server whose 
311        cell this client is coming from. This is used to route messages to 
312        this client.
313
314    SilcHashTable channels;
315
316        All the channels this client has joined.  The context saved in the
317        hash table shares memory with the channel entrys `user_list' hash
318        table.
319
320    void *connection
321
322        A pointer, usually, to the socket list for fast referencing to
323        the data used in connection with this client.  This may be anything
324        but as just said, this is usually pointer to the socket connection
325        list.
326
327    SilcUInt16 resolve_cmd_ident
328
329        Command identifier for the entry when the entry's data.status
330        is SILC_IDLIST_STATUS_RESOLVING.  If this entry is asked to be
331        resolved when the status is set then the resolver may attach to
332        this command identifier and handle the process after the resolving
333        is over.
334
335 */
336 struct SilcClientEntryStruct {
337   /* Generic data structure. DO NOT add anything before this! */
338   SilcIDListDataStruct data;
339
340   unsigned char *nickname;
341   char *servername;
342   char *username;
343   char *userinfo;
344   SilcClientID *id;
345   SilcUInt32 mode;
346
347   long last_command;
348   SilcUInt8 fast_command;
349
350   /* Pointer to the router */
351   SilcServerEntry router;
352
353   /* All channels this client has joined */
354   SilcHashTable channels;
355
356   /* Connection data */
357   void *connection;
358
359   /* data.status is RESOLVING and this includes the resolving command 
360      reply identifier. */
361   SilcUInt16 resolve_cmd_ident;
362 };
363
364 /* 
365    SILC Channel entry object.
366
367    This entry holds information about channels in SILC network. The contents 
368    of this entry is depended on whether we are normal server or router server 
369    and whether the list is a local or global list.
370
371    This entry is defined as follows:
372
373    Server type   List type      Contents
374    =======================================================================
375    server        local list     All channels in server
376    server        global list    NULL
377    router        local list     All channels in cell
378    router        global list    All channels in SILC
379
380    Following short description of the fields:
381
382    char *channel_name
383
384        Logical name of the channel.
385
386    SilcUInt32 mode
387
388        Current mode of the channel.  See lib/silccore/silcchannel.h for
389        all modes.
390
391    SilcChannelID *id
392
393        ID of the channel. This includes all the information SILC will ever
394        need.
395
396    bool global_users
397  
398        Boolean value to tell whether there are users outside this server
399        on this channel. This is set to TRUE if router sends message to
400        the server that there are users outside your server on your
401        channel as well. This way server knows that messages needs to be
402        sent to the router for further routing. If this is a normal 
403        server and this channel is not created on this server this field
404        is always TRUE. If this server is a router this field is ignored.
405
406    char *topic
407
408        Current topic of the channel.
409
410    char *cipher
411
412        Default cipher of the channel. If this is NULL then server picks
413        the cipher to be used. This can be set at SILC_COMMAND_JOIN.
414
415    char *hmac_name
416
417        Default hmac of the channel. If this is NULL then server picks
418        the cipher to be used. This can be set at SILC_COMMAND_JOIN.
419
420    SilcPublicKey founder_key
421
422        If the SILC_CMODE_FOUNDER_AUTH has been set then this will include
423        the founder's public key.  When the mode and this key is set the
424        channel is also permanent channel and cannot be destroyed.
425
426    SilcHashTable user_list
427
428        All users joined on this channel.  Note that the context saved to
429        this entry shares memory with the client entrys `channels' hash
430        table.
431
432    SilcServerEntry router
433
434        This is a pointer to the server list. This is the router server 
435        whose cell this channel belongs to. This is used to route messages 
436        to this channel.
437
438    SilcCipher channel_key
439
440        The key of the channel (the cipher actually).
441
442    unsigned char *key
443    SilcUInt32 key_len
444
445        Raw key data of the channel key.
446
447    unsigned char iv[SILC_CIPHER_MAX_IV_SIZE]
448
449        Current initial vector. Initial vector is received always along
450        with the channel packet. By default this is filled with NULL.
451
452    SilcHmac hmac;
453
454        HMAC of the channel.
455
456    SilcServerChannelRekey rekey
457
458        Channel key re-key context.
459
460 */
461 struct SilcChannelEntryStruct {
462   char *channel_name;
463   SilcUInt32 mode;
464   SilcChannelID *id;
465   char *topic;
466   char *cipher;
467   char *hmac_name;
468   SilcPublicKey founder_key;
469
470   SilcUInt32 user_limit;
471   unsigned char *passphrase;
472   char *invite_list;
473   char *ban_list;
474
475   /* All users on this channel */
476   SilcHashTable user_list;
477   SilcUInt32 user_count;
478
479   /* Pointer to the router */
480   SilcServerEntry router;
481
482   /* Channel keys */
483   SilcCipher channel_key;
484   unsigned char *key;
485   SilcUInt32 key_len;
486   SilcHmac hmac;
487
488   SilcServerChannelRekey rekey;
489   unsigned long created;
490   unsigned long updated;
491
492   /* Flags */
493   unsigned int global_users : 1;
494   unsigned int disabled : 1;
495   unsigned int users_resolved : 1;
496 };
497
498 /* 
499    SILC ID List object.
500
501    As for remainder these lists are defined as follows:
502
503    Entry list (cache)  Server type   List type      Contents
504    =======================================================================
505    servers             server        local list     Server itself
506    servers             server        global list    NULL
507    servers             router        local list     All servers in cell
508    servers             router        global list    All servers in SILC
509
510    clients             server        local list     All clients in server
511    clients             server        global list    NULL
512    clients             router        local list     All clients in cell
513    clients             router        global list    All clients in SILC
514
515    channels            server        local list     All channels in server
516    channels            server        global list    NULL
517    channels            router        local list     All channels in cell
518    channels            router        global list    All channels in SILC
519
520    As seen on the list normal server never defines a global list. This is
521    because of normal server don't know anything about anything global data,
522    they get it from the router if and when they need it. Routers, on the
523    other hand, always define local and global lists because routers really
524    know all the relevant data in the SILC network.
525
526    This object is used as local and global list by the server/router.
527    Above table shows how this is defined on different conditions.
528
529    This object holds pointers to the ID cache system. Every ID cache entry
530    has a specific context pointer to allocated entry (server, client or
531    channel entry).
532
533 */
534 typedef struct SilcIDListStruct {
535   SilcIDCache servers;
536   SilcIDCache clients;
537   SilcIDCache channels;
538 } *SilcIDList;
539
540 /*
541    ID Entry for Unknown connections.
542
543    This is used during authentication phases where we still don't know 
544    what kind of connection remote connection is, hence, we will use this
545    structure instead until we know what type of connection remote end is.
546
547    This is not in any list. This is always individually allocated and
548    used as such.
549
550 */
551 typedef struct {
552   /* Generic data structure. DO NOT add anything before this! */
553   SilcIDListDataStruct data;
554 } *SilcUnknownEntry;
555
556 /* Prototypes */
557 void silc_idlist_add_data(void *entry, SilcIDListData idata);
558 void silc_idlist_del_data(void *entry);
559 SILC_TASK_CALLBACK_GLOBAL(silc_idlist_purge);
560 SilcServerEntry 
561 silc_idlist_add_server(SilcIDList id_list, 
562                        char *server_name, int server_type,
563                        SilcServerID *id, SilcServerEntry router,
564                        void *connection);
565 SilcServerEntry
566 silc_idlist_find_server_by_id(SilcIDList id_list, SilcServerID *id,
567                               bool registered, SilcIDCacheEntry *ret_entry);
568 SilcServerEntry
569 silc_idlist_find_server_by_name(SilcIDList id_list, char *name,
570                                 bool registered, SilcIDCacheEntry *ret_entry);
571 SilcServerEntry
572 silc_idlist_find_server_by_conn(SilcIDList id_list, char *hostname,
573                                 int port, bool registered,
574                                 SilcIDCacheEntry *ret_entry);
575 SilcServerEntry
576 silc_idlist_replace_server_id(SilcIDList id_list, SilcServerID *old_id,
577                               SilcServerID *new_id);
578 int silc_idlist_del_server(SilcIDList id_list, SilcServerEntry entry);
579 SilcClientEntry
580 silc_idlist_add_client(SilcIDList id_list, char *nickname, char *username, 
581                        char *userinfo, SilcClientID *id, 
582                        SilcServerEntry router, void *connection,
583                        int expire);
584 int silc_idlist_del_client(SilcIDList id_list, SilcClientEntry entry);
585 int silc_idlist_get_clients_by_nickname(SilcIDList id_list, char *nickname,
586                                         char *server, 
587                                         SilcClientEntry **clients,
588                                         SilcUInt32 *clients_count);
589 int silc_idlist_get_clients_by_hash(SilcIDList id_list, char *nickname,
590                                     SilcHash md5hash,
591                                     SilcClientEntry **clients,
592                                     SilcUInt32 *clients_count);
593 SilcClientEntry
594 silc_idlist_find_client_by_id(SilcIDList id_list, SilcClientID *id,
595                               bool registered, SilcIDCacheEntry *ret_entry);
596 SilcClientEntry
597 silc_idlist_replace_client_id(SilcServer server,
598                               SilcIDList id_list, SilcClientID *old_id,
599                               SilcClientID *new_id, const char *nickname);
600 void silc_idlist_client_destructor(SilcIDCache cache,
601                                    SilcIDCacheEntry entry);
602 SilcChannelEntry
603 silc_idlist_add_channel(SilcIDList id_list, char *channel_name, int mode,
604                         SilcChannelID *id, SilcServerEntry router,
605                         SilcCipher channel_key, SilcHmac hmac,
606                         int expire);
607 int silc_idlist_del_channel(SilcIDList id_list, SilcChannelEntry entry);
608 SilcChannelEntry
609 silc_idlist_find_channel_by_name(SilcIDList id_list, char *name,
610                                  SilcIDCacheEntry *ret_entry);
611 SilcChannelEntry
612 silc_idlist_find_channel_by_id(SilcIDList id_list, SilcChannelID *id,
613                                SilcIDCacheEntry *ret_entry);
614 SilcChannelEntry
615 silc_idlist_replace_channel_id(SilcIDList id_list, SilcChannelID *old_id,
616                                SilcChannelID *new_id);
617 SilcChannelEntry *
618 silc_idlist_get_channels(SilcIDList id_list, SilcChannelID *channel_id,
619                          SilcUInt32 *channels_count);
620
621 #endif