Preparations for Requested Attributes support.
[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   SilcUInt32 timeout;
34 } *SilcIDListPurge;
35
36 /* Channel key re-key context. */
37 typedef struct {
38   SilcChannelEntry channel;
39   SilcUInt32 key_len;
40   SilcTask task;
41 } *SilcServerChannelRekey;
42
43 /* Generic rekey context for connections */
44 typedef struct {
45   /* Current sending encryption key, provided for re-key. The `pfs'
46      is TRUE if the Perfect Forward Secrecy is performed in re-key. */
47   unsigned char *send_enc_key;
48   SilcUInt32 enc_key_len;
49   int ske_group;
50   bool pfs;
51   SilcUInt32 timeout;
52   void *context;
53 } *SilcServerRekey;
54
55 /* ID List Entry status flags. */
56 typedef SilcUInt8 SilcIDListStatus;
57 #define SILC_IDLIST_STATUS_NONE         0x00  /* No status */
58 #define SILC_IDLIST_STATUS_REGISTERED   0x01  /* Entry is registered */
59 #define SILC_IDLIST_STATUS_RESOLVED     0x02  /* Entry info is resolved */
60 #define SILC_IDLIST_STATUS_RESOLVING    0x04  /* Entry is being resolved
61                                                  with WHOIS or IDENTIFY */
62 #define SILC_IDLIST_STATUS_DISABLED     0x08  /* Entry is disabled */
63 #define SILC_IDLIST_STATUS_RESUMED      0x10  /* Entry is resumed */
64 #define SILC_IDLIST_STATUS_LOCAL        0x20  /* Entry locally connected */
65 #define SILC_IDLIST_STATUS_RESUME_RES   0x40  /* Entry resolved while
66                                                  resuming */
67 #define SILC_IDLIST_STATUS_NOATTR       0x80  /* Entry does not support
68                                                  attributes in WHOIS */
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   /* Requested Attributes */
351   unsigned char *attrs;
352   SilcUInt16 attrs_len;
353
354   /* Pointer to the router */
355   SilcServerEntry router;
356
357   /* All channels this client has joined */
358   SilcHashTable channels;
359
360   /* Connection data */
361   void *connection;
362
363   /* data.status is RESOLVING and this includes the resolving command 
364      reply identifier. */
365   SilcUInt16 resolve_cmd_ident;
366 };
367
368 /* 
369    SILC Channel entry object.
370
371    This entry holds information about channels in SILC network. The contents 
372    of this entry is depended on whether we are normal server or router server 
373    and whether the list is a local or global list.
374
375    This entry is defined as follows:
376
377    Server type   List type      Contents
378    =======================================================================
379    server        local list     All channels in server
380    server        global list    NULL
381    router        local list     All channels in cell
382    router        global list    All channels in SILC
383
384    Following short description of the fields:
385
386    char *channel_name
387
388        Logical name of the channel.
389
390    SilcUInt32 mode
391
392        Current mode of the channel.  See lib/silccore/silcchannel.h for
393        all modes.
394
395    SilcChannelID *id
396
397        ID of the channel. This includes all the information SILC will ever
398        need.
399
400    bool global_users
401  
402        Boolean value to tell whether there are users outside this server
403        on this channel. This is set to TRUE if router sends message to
404        the server that there are users outside your server on your
405        channel as well. This way server knows that messages needs to be
406        sent to the router for further routing. If this is a normal 
407        server and this channel is not created on this server this field
408        is always TRUE. If this server is a router this field is ignored.
409
410    char *topic
411
412        Current topic of the channel.
413
414    char *cipher
415
416        Default cipher of the channel. If this is NULL then server picks
417        the cipher to be used. This can be set at SILC_COMMAND_JOIN.
418
419    char *hmac_name
420
421        Default hmac of the channel. If this is NULL then server picks
422        the cipher to be used. This can be set at SILC_COMMAND_JOIN.
423
424    SilcPublicKey founder_key
425
426        If the SILC_CMODE_FOUNDER_AUTH has been set then this will include
427        the founder's public key.  When the mode and this key is set the
428        channel is also permanent channel and cannot be destroyed.
429
430    SilcHashTable user_list
431
432        All users joined on this channel.  Note that the context saved to
433        this entry shares memory with the client entrys `channels' hash
434        table.
435
436    SilcServerEntry router
437
438        This is a pointer to the server list. This is the router server 
439        whose cell this channel belongs to. This is used to route messages 
440        to this channel.
441
442    SilcCipher channel_key
443
444        The key of the channel (the cipher actually).
445
446    unsigned char *key
447    SilcUInt32 key_len
448
449        Raw key data of the channel key.
450
451    unsigned char iv[SILC_CIPHER_MAX_IV_SIZE]
452
453        Current initial vector. Initial vector is received always along
454        with the channel packet. By default this is filled with NULL.
455
456    SilcHmac hmac;
457
458        HMAC of the channel.
459
460    SilcServerChannelRekey rekey
461
462        Channel key re-key context.
463
464 */
465 struct SilcChannelEntryStruct {
466   char *channel_name;
467   SilcUInt32 mode;
468   SilcChannelID *id;
469   char *topic;
470   char *cipher;
471   char *hmac_name;
472   SilcPublicKey founder_key;
473
474   SilcUInt32 user_limit;
475   unsigned char *passphrase;
476   char *invite_list;
477   char *ban_list;
478
479   /* All users on this channel */
480   SilcHashTable user_list;
481   SilcUInt32 user_count;
482
483   /* Pointer to the router */
484   SilcServerEntry router;
485
486   /* Channel keys */
487   SilcCipher channel_key;
488   unsigned char *key;
489   SilcUInt32 key_len;
490   SilcHmac hmac;
491
492   SilcServerChannelRekey rekey;
493   unsigned long created;
494   unsigned long updated;
495
496   /* Flags */
497   unsigned int global_users : 1;
498   unsigned int disabled : 1;
499   unsigned int users_resolved : 1;
500 };
501
502 /* 
503    SILC ID List object.
504
505    As for remainder these lists are defined as follows:
506
507    Entry list (cache)  Server type   List type      Contents
508    =======================================================================
509    servers             server        local list     Server itself
510    servers             server        global list    NULL
511    servers             router        local list     All servers in cell
512    servers             router        global list    All servers in SILC
513
514    clients             server        local list     All clients in server
515    clients             server        global list    NULL
516    clients             router        local list     All clients in cell
517    clients             router        global list    All clients in SILC
518
519    channels            server        local list     All channels in server
520    channels            server        global list    NULL
521    channels            router        local list     All channels in cell
522    channels            router        global list    All channels in SILC
523
524    As seen on the list normal server never defines a global list. This is
525    because of normal server don't know anything about anything global data,
526    they get it from the router if and when they need it. Routers, on the
527    other hand, always define local and global lists because routers really
528    know all the relevant data in the SILC network.
529
530    This object is used as local and global list by the server/router.
531    Above table shows how this is defined on different conditions.
532
533    This object holds pointers to the ID cache system. Every ID cache entry
534    has a specific context pointer to allocated entry (server, client or
535    channel entry).
536
537 */
538 typedef struct SilcIDListStruct {
539   SilcIDCache servers;
540   SilcIDCache clients;
541   SilcIDCache channels;
542 } *SilcIDList;
543
544 /*
545    ID Entry for Unknown connections.
546
547    This is used during authentication phases where we still don't know 
548    what kind of connection remote connection is, hence, we will use this
549    structure instead until we know what type of connection remote end is.
550
551    This is not in any list. This is always individually allocated and
552    used as such.
553
554 */
555 typedef struct {
556   /* Generic data structure. DO NOT add anything before this! */
557   SilcIDListDataStruct data;
558 } *SilcUnknownEntry;
559
560 /* Prototypes */
561 void silc_idlist_add_data(void *entry, SilcIDListData idata);
562 void silc_idlist_del_data(void *entry);
563 SILC_TASK_CALLBACK_GLOBAL(silc_idlist_purge);
564 SilcServerEntry 
565 silc_idlist_add_server(SilcIDList id_list, 
566                        char *server_name, int server_type,
567                        SilcServerID *id, SilcServerEntry router,
568                        void *connection);
569 SilcServerEntry
570 silc_idlist_find_server_by_id(SilcIDList id_list, SilcServerID *id,
571                               bool registered, SilcIDCacheEntry *ret_entry);
572 SilcServerEntry
573 silc_idlist_find_server_by_name(SilcIDList id_list, char *name,
574                                 bool registered, SilcIDCacheEntry *ret_entry);
575 SilcServerEntry
576 silc_idlist_find_server_by_conn(SilcIDList id_list, char *hostname,
577                                 int port, bool registered,
578                                 SilcIDCacheEntry *ret_entry);
579 SilcServerEntry
580 silc_idlist_replace_server_id(SilcIDList id_list, SilcServerID *old_id,
581                               SilcServerID *new_id);
582 int silc_idlist_del_server(SilcIDList id_list, SilcServerEntry entry);
583 SilcClientEntry
584 silc_idlist_add_client(SilcIDList id_list, char *nickname, char *username, 
585                        char *userinfo, SilcClientID *id, 
586                        SilcServerEntry router, void *connection,
587                        int expire);
588 int silc_idlist_del_client(SilcIDList id_list, SilcClientEntry entry);
589 int silc_idlist_get_clients_by_nickname(SilcIDList id_list, char *nickname,
590                                         char *server, 
591                                         SilcClientEntry **clients,
592                                         SilcUInt32 *clients_count);
593 int silc_idlist_get_clients_by_hash(SilcIDList id_list, char *nickname,
594                                     SilcHash md5hash,
595                                     SilcClientEntry **clients,
596                                     SilcUInt32 *clients_count);
597 SilcClientEntry
598 silc_idlist_find_client_by_id(SilcIDList id_list, SilcClientID *id,
599                               bool registered, SilcIDCacheEntry *ret_entry);
600 SilcClientEntry
601 silc_idlist_replace_client_id(SilcServer server,
602                               SilcIDList id_list, SilcClientID *old_id,
603                               SilcClientID *new_id, const char *nickname);
604 void silc_idlist_client_destructor(SilcIDCache cache,
605                                    SilcIDCacheEntry entry);
606 SilcChannelEntry
607 silc_idlist_add_channel(SilcIDList id_list, char *channel_name, int mode,
608                         SilcChannelID *id, SilcServerEntry router,
609                         SilcCipher channel_key, SilcHmac hmac,
610                         int expire);
611 int silc_idlist_del_channel(SilcIDList id_list, SilcChannelEntry entry);
612 SilcChannelEntry
613 silc_idlist_find_channel_by_name(SilcIDList id_list, char *name,
614                                  SilcIDCacheEntry *ret_entry);
615 SilcChannelEntry
616 silc_idlist_find_channel_by_id(SilcIDList id_list, SilcChannelID *id,
617                                SilcIDCacheEntry *ret_entry);
618 SilcChannelEntry
619 silc_idlist_replace_channel_id(SilcIDList id_list, SilcChannelID *old_id,
620                                SilcChannelID *new_id);
621 SilcChannelEntry *
622 silc_idlist_get_channels(SilcIDList id_list, SilcChannelID *channel_id,
623                          SilcUInt32 *channels_count);
624
625 #endif