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