updates.
[silc.git] / apps / silcd / server.c
1 /*
2
3   server.c
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 1997 - 2001 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  * This is the actual SILC server than handles everything relating to
22  * servicing the SILC connections. This is also a SILC router as a router 
23  * is also normal server.
24  */
25 /* $Id$ */
26
27 #include "serverincludes.h"
28 #include "server_internal.h"
29
30 /* Static prototypes */
31 SILC_TASK_CALLBACK(silc_server_connect_router);
32 SILC_TASK_CALLBACK(silc_server_connect_to_router);
33 SILC_TASK_CALLBACK(silc_server_connect_to_router_second);
34 SILC_TASK_CALLBACK(silc_server_connect_to_router_final);
35 SILC_TASK_CALLBACK(silc_server_accept_new_connection);
36 SILC_TASK_CALLBACK(silc_server_accept_new_connection_second);
37 SILC_TASK_CALLBACK(silc_server_accept_new_connection_final);
38 SILC_TASK_CALLBACK(silc_server_packet_process);
39 SILC_TASK_CALLBACK(silc_server_packet_parse_real);
40 SILC_TASK_CALLBACK(silc_server_timeout_remote);
41 SILC_TASK_CALLBACK(silc_server_failure_callback);
42 SILC_TASK_CALLBACK(silc_server_rekey_callback);
43
44 /* Allocates a new SILC server object. This has to be done before the server
45    can be used. After allocation one must call silc_server_init to initialize
46    the server. The new allocated server object is returned to the new_server
47    argument. */
48
49 int silc_server_alloc(SilcServer *new_server)
50 {
51   SilcServer server;
52
53   SILC_LOG_DEBUG(("Allocating new server object"));
54
55   server = silc_calloc(1, sizeof(*server));
56   server->server_type = SILC_SERVER;
57   server->standalone = TRUE;
58   server->local_list = silc_calloc(1, sizeof(*server->local_list));
59   server->global_list = silc_calloc(1, sizeof(*server->global_list));
60   server->pending_commands = silc_dlist_init();
61 #ifdef SILC_SIM
62   server->sim = silc_dlist_init();
63 #endif
64
65   *new_server = server;
66
67   return TRUE;
68 }
69
70 /* Free's the SILC server object. This is called at the very end before
71    the program ends. */
72
73 void silc_server_free(SilcServer server)
74 {
75   if (server) {
76 #ifdef SILC_SIM
77     SilcSimContext *sim;
78 #endif
79
80     if (server->local_list)
81       silc_free(server->local_list);
82     if (server->global_list)
83       silc_free(server->global_list);
84     if (server->rng)
85       silc_rng_free(server->rng);
86
87 #ifdef SILC_SIM
88     while ((sim = silc_dlist_get(server->sim)) != SILC_LIST_END) {
89       silc_dlist_del(server->sim, sim);
90       silc_sim_free(sim);
91     }
92     silc_dlist_uninit(server->sim);
93 #endif
94
95     if (server->params)
96       silc_free(server->params);
97
98     if (server->pending_commands)
99       silc_dlist_uninit(server->pending_commands);
100
101     silc_free(server);
102   }
103 }
104
105 /* Initializes the entire SILC server. This is called always before running
106    the server. This is called only once at the initialization of the program.
107    This binds the server to its listenning port. After this function returns 
108    one should call silc_server_run to start the server. This returns TRUE 
109    when everything is ok to run the server. Configuration file must be
110    read and parsed before calling this. */
111
112 int silc_server_init(SilcServer server)
113 {
114   int *sock = NULL, sock_count = 0, i;
115   SilcServerID *id;
116   SilcServerEntry id_entry;
117   SilcIDListPurge purge;
118
119   SILC_LOG_DEBUG(("Initializing server"));
120   assert(server);
121   assert(server->config);
122
123   /* Set public and private keys */
124   if (!server->config->server_keys ||
125       !server->config->server_keys->public_key || 
126       !server->config->server_keys->private_key) {
127     SILC_LOG_ERROR(("Server public key and/or private key does not exist"));
128     return FALSE;
129   }
130   server->public_key = server->config->server_keys->public_key;
131   server->private_key = server->config->server_keys->private_key;
132
133   /* XXX After server is made as Silc Server Library this can be given
134      as argument, for now this is hard coded */
135   server->params = silc_calloc(1, sizeof(*server->params));
136   server->params->retry_count = SILC_SERVER_RETRY_COUNT;
137   server->params->retry_interval_min = SILC_SERVER_RETRY_INTERVAL_MIN;
138   server->params->retry_interval_max = SILC_SERVER_RETRY_INTERVAL_MAX;
139   server->params->retry_keep_trying = FALSE;
140   server->params->protocol_timeout = 60;
141   server->params->require_reverse_mapping = FALSE;
142
143   /* Set log files where log message should be saved. */
144   server->config->server = server;
145   silc_server_config_setlogfiles(server->config);
146  
147   /* Register all configured ciphers, PKCS and hash functions. */
148   if (!silc_server_config_register_ciphers(server->config))
149     silc_cipher_register_default();
150   if (!silc_server_config_register_pkcs(server->config))
151     silc_pkcs_register_default();
152   if (!silc_server_config_register_hashfuncs(server->config))
153     silc_hash_register_default();
154   if (!silc_server_config_register_hmacs(server->config))
155     silc_hmac_register_default();
156
157   /* Initialize random number generator for the server. */
158   server->rng = silc_rng_alloc();
159   silc_rng_init(server->rng);
160   silc_rng_global_init(server->rng);
161
162   /* Initialize hash functions for server to use */
163   silc_hash_alloc("md5", &server->md5hash);
164   silc_hash_alloc("sha1", &server->sha1hash);
165
166   /* Initialize none cipher */
167   silc_cipher_alloc("none", &server->none_cipher);
168
169   /* Create a listening server. Note that our server can listen on
170      multiple ports. All listeners are created here and now. */
171   /* XXX Still check this whether to use server_info or listen_port. */
172   sock_count = 0;
173   while(server->config->listen_port) {
174     int tmp;
175
176     tmp = silc_net_create_server(server->config->listen_port->port,
177                                  server->config->listen_port->host);
178     if (tmp < 0)
179       goto err0;
180
181     sock = silc_realloc(sock, (sizeof(int *) * (sock_count + 1)));
182     sock[sock_count] = tmp;
183     server->config->listen_port = server->config->listen_port->next;
184     sock_count++;
185   }
186
187   /* Initialize ID caches */
188   server->local_list->clients = 
189     silc_idcache_alloc(0, SILC_ID_CLIENT, silc_idlist_client_destructor);
190   server->local_list->servers = silc_idcache_alloc(0, SILC_ID_SERVER, NULL);
191   server->local_list->channels = silc_idcache_alloc(0, SILC_ID_CHANNEL, NULL);
192
193   /* These are allocated for normal server as well as these hold some 
194      global information that the server has fetched from its router. For 
195      router these are used as they are supposed to be used on router. */
196   server->global_list->clients = 
197     silc_idcache_alloc(0, SILC_ID_CLIENT, silc_idlist_client_destructor);
198   server->global_list->servers = silc_idcache_alloc(0, SILC_ID_SERVER, NULL);
199   server->global_list->channels = silc_idcache_alloc(0, SILC_ID_CHANNEL, NULL);
200
201   /* Allocate the entire socket list that is used in server. Eventually 
202      all connections will have entry in this table (it is a table of 
203      pointers to the actual object that is allocated individually 
204      later). */
205   server->sockets = silc_calloc(SILC_SERVER_MAX_CONNECTIONS,
206                                 sizeof(*server->sockets));
207
208   for (i = 0; i < sock_count; i++) {
209     SilcSocketConnection newsocket = NULL;
210
211     /* Set socket to non-blocking mode */
212     silc_net_set_socket_nonblock(sock[i]);
213     server->sock = sock[i];
214     
215     /* Create a Server ID for the server. */
216     silc_id_create_server_id(sock[i], server->rng, &id);
217     if (!id) {
218       goto err0;
219     }
220     
221     server->id = id;
222     server->id_string = silc_id_id2str(id, SILC_ID_SERVER);
223     server->id_string_len = silc_id_get_len(id, SILC_ID_SERVER);
224     server->id_type = SILC_ID_SERVER;
225     server->server_name = server->config->server_info->server_name;
226
227     /* Add ourselves to the server list. We don't have a router yet 
228        beacuse we haven't established a route yet. It will be done later. 
229        For now, NULL is sent as router. This allocates new entry to
230        the ID list. */
231     id_entry = 
232       silc_idlist_add_server(server->local_list,
233                              server->config->server_info->server_name,
234                              server->server_type, server->id, NULL, NULL);
235     if (!id_entry) {
236       SILC_LOG_ERROR(("Could not add ourselves to cache"));
237       goto err0;
238     }
239     
240     /* Add ourselves also to the socket table. The entry allocated above
241        is sent as argument for fast referencing in the future. */
242     silc_socket_alloc(sock[i], SILC_SOCKET_TYPE_SERVER, id_entry, 
243                       &newsocket);
244
245     server->sockets[sock[i]] = newsocket;
246     
247     /* Perform name and address lookups to resolve the listenning address
248        and port. */
249     if (!silc_net_check_local_by_sock(sock[i], &newsocket->hostname, 
250                                      &newsocket->ip)) {
251       if ((server->params->require_reverse_mapping && !newsocket->hostname) ||
252           !newsocket->ip) {
253         SILC_LOG_ERROR(("IP/DNS lookup failed for local host %s",
254                         newsocket->hostname ? newsocket->hostname :
255                         newsocket->ip ? newsocket->ip : ""));
256         server->stat.conn_failures++;
257         goto err0;
258       }
259       if (!newsocket->hostname)
260         newsocket->hostname = strdup(newsocket->ip);
261     }
262     newsocket->port = silc_net_get_local_port(sock[i]);
263
264     /* Put the allocated socket pointer also to the entry allocated above 
265        for fast back-referencing to the socket list. */
266     id_entry->connection = (void *)server->sockets[sock[i]];
267     server->id_entry = id_entry;
268   }
269
270   /* Register protocols */
271   silc_server_protocols_register();
272
273   /* Initialize the scheduler. */
274   server->schedule = silc_schedule_init(SILC_SERVER_MAX_CONNECTIONS);
275   if (!server->schedule)
276     goto err0;
277   
278   /* Add the first task to the scheduler. This is task that is executed by
279      timeout. It expires as soon as the caller calls silc_server_run. This
280      task performs authentication protocol and key exchange with our
281      primary router. */
282   silc_schedule_task_add(server->schedule, sock[0], 
283                          silc_server_connect_to_router,
284                          (void *)server, 0, 1,
285                          SILC_TASK_TIMEOUT,
286                          SILC_TASK_PRI_NORMAL);
287
288   /* Add listener task to the scheduler. This task receives new connections
289      to the server. This task remains on the queue until the end of the 
290      program. */
291   silc_schedule_task_add(server->schedule, sock[0],
292                          silc_server_accept_new_connection,
293                          (void *)server, 0, 0, 
294                          SILC_TASK_FD,
295                          SILC_TASK_PRI_NORMAL);
296   server->listenning = TRUE;
297
298   /* If server connections has been configured then we must be router as
299      normal server cannot have server connections, only router connections. */
300   if (server->config->servers)
301     server->server_type = SILC_ROUTER;
302
303   /* Register the ID Cache purge task. This periodically purges the ID cache
304      and removes the expired cache entries. */
305
306   /* Clients local list */
307   purge = silc_calloc(1, sizeof(*purge));
308   purge->cache = server->local_list->clients;
309   purge->schedule = server->schedule;
310   silc_schedule_task_add(purge->schedule, 0, 
311                          silc_idlist_purge,
312                          (void *)purge, 600, 0,
313                          SILC_TASK_TIMEOUT, SILC_TASK_PRI_LOW);
314
315   /* Clients global list */
316   purge = silc_calloc(1, sizeof(*purge));
317   purge->cache = server->global_list->clients;
318   purge->schedule = server->schedule;
319   silc_schedule_task_add(purge->schedule, 0, 
320                          silc_idlist_purge,
321                          (void *)purge, 300, 0,
322                          SILC_TASK_TIMEOUT, SILC_TASK_PRI_LOW);
323
324   SILC_LOG_DEBUG(("Server initialized"));
325
326   /* We are done here, return succesfully */
327   return TRUE;
328
329  err0:
330   for (i = 0; i < sock_count; i++)
331     silc_net_close_server(sock[i]);
332
333   return FALSE;
334 }
335
336 /* Fork server to background and set gid+uid to non-root.
337    Silcd will not run as root, so trying to set either user or group to
338    root will cause silcd to exit. */
339
340 void silc_server_daemonise(SilcServer server)
341 {
342   /* Are we executing silcd as root or a regular user? */
343   if (geteuid()==0) {
344     
345     struct passwd *pw;
346     struct group *gr;
347     char *user, *group;
348     
349     if (!server->config->identity || !server->config->identity->user || 
350         !server->config->identity->group) {
351       fprintf(stderr, "Error:"
352        "\tSILC server must not be run as root.  For the security of your\n"
353        "\tsystem it is strongly suggested that you run SILC under dedicated\n"
354        "\tuser account.  Modify the [Identity] configuration section to run\n"
355        "\tthe server as non-root user.\n");
356       exit(1);
357     }
358     
359     /* Get the values given for user and group in configuration file */
360     user=server->config->identity->user;
361     group=server->config->identity->group;
362     
363     /* Check whether the user/group information is text */ 
364     if (atoi(user)!=0 || atoi(group)!=0) {
365       SILC_LOG_DEBUG(("Invalid user and/or group information"));
366       SILC_LOG_DEBUG(("User and/or group given as number"));
367       fprintf(stderr, "Invalid user and/or group information\n");
368       fprintf(stderr, "Please assign them as names, not numbers\n");
369       exit(1);
370     }
371     
372     /* Catch the nasty incident of string "0" returning 0 from atoi */
373     if (strcmp("0", user)==0 || strcmp("0", group)==0) {
374       SILC_LOG_DEBUG(("User and/or group configured to 0. Unacceptable"));
375       fprintf(stderr, "User and/or group configured to 0. Exiting\n");
376       exit(1);
377     }
378     
379     pw=getpwnam(user);
380     gr=getgrnam(group);
381
382     if (!pw) {
383       fprintf(stderr, "No such user %s found\n", user);
384       exit(1);
385     }
386
387     if (!gr) {
388       fprintf(stderr, "No such group %s found\n", group);
389       exit(1);
390     }
391     
392     /* Check whether user and/or group is set to root. If yes, exit
393        immediately. Otherwise, setgid and setuid server to user.group */
394     if (gr->gr_gid==0 || pw->pw_uid==0) {
395       fprintf(stderr, "Error:"
396        "\tSILC server must not be run as root.  For the security of your\n"
397        "\tsystem it is strongly suggested that you run SILC under dedicated\n"
398        "\tuser account.  Modify the [Identity] configuration section to run\n"
399        "\tthe server as non-root user.\n");
400       exit(1);
401     } else {
402       /* Fork server to background, making it a daemon */
403       if (fork()) {
404         SILC_LOG_DEBUG(("Server started as root. Dropping privileges."));
405         SILC_LOG_DEBUG(("Forking SILC server to background"));
406         exit(0);
407       } 
408       setsid();
409       
410       SILC_LOG_DEBUG(("Changing to group %s", group));
411       if(setgid(gr->gr_gid)==0) {
412         SILC_LOG_DEBUG(("Setgid to %s", group));
413       } else {
414         SILC_LOG_DEBUG(("Setgid to %s failed", group));
415         fprintf(stderr, "Tried to setgid %s but no such group. Exiting\n",
416                 group);
417         exit(1);
418       }
419       SILC_LOG_DEBUG(("Changing to user nobody"));
420       if(setuid(pw->pw_uid)==0) {
421         SILC_LOG_DEBUG(("Setuid to %s", user));
422       } else {
423         SILC_LOG_DEBUG(("Setuid to %s failed", user));
424         fprintf(stderr, "Tried to setuid %s but no such user. Exiting\n",
425                 user);
426         exit(1);
427       }
428     }
429   } else {
430     /* Fork server to background, making it a daemon */
431     if (fork()) {
432       SILC_LOG_DEBUG(("Server started as user")); 
433       SILC_LOG_DEBUG(("Forking SILC server to background"));
434       exit(0);
435     }
436     setsid();
437   }
438 }
439
440 /* Stops the SILC server. This function is used to shutdown the server. 
441    This is usually called after the scheduler has returned. After stopping 
442    the server one should call silc_server_free. */
443
444 void silc_server_stop(SilcServer server)
445 {
446   SILC_LOG_DEBUG(("Stopping server"));
447
448   silc_schedule_stop(server->schedule);
449   silc_schedule_uninit(server->schedule);
450
451   silc_server_protocols_unregister();
452
453   SILC_LOG_DEBUG(("Server stopped"));
454 }
455
456 /* The heart of the server. This runs the scheduler thus runs the server. 
457    When this returns the server has been stopped and the program will
458    be terminated. */
459
460 void silc_server_run(SilcServer server)
461 {
462   SILC_LOG_DEBUG(("Running server"));
463
464   SILC_LOG_INFO(("SILC Server started"));
465
466   /* Start the scheduler, the heart of the SILC server. When this returns
467      the program will be terminated. */
468   silc_schedule(server->schedule);
469 }
470
471 /* Timeout callback that will be called to retry connecting to remote
472    router. This is used by both normal and router server. This will wait
473    before retrying the connecting. The timeout is generated by exponential
474    backoff algorithm. */
475
476 SILC_TASK_CALLBACK(silc_server_connect_to_router_retry)
477 {
478   SilcServerConnection sconn = (SilcServerConnection)context;
479   SilcServer server = sconn->server;
480
481   SILC_LOG_INFO(("Retrying connecting to a router"));
482
483   /* Calculate next timeout */
484   if (sconn->retry_count >= 1) {
485     sconn->retry_timeout = sconn->retry_timeout * SILC_SERVER_RETRY_MULTIPLIER;
486     if (sconn->retry_timeout > SILC_SERVER_RETRY_INTERVAL_MAX)
487       sconn->retry_timeout = SILC_SERVER_RETRY_INTERVAL_MAX;
488   } else {
489     sconn->retry_timeout = server->params->retry_interval_min;
490   }
491   sconn->retry_count++;
492   sconn->retry_timeout = sconn->retry_timeout +
493     silc_rng_get_rn32(server->rng) % SILC_SERVER_RETRY_RANDOMIZER;
494
495   /* If we've reached max retry count, give up. */
496   if (sconn->retry_count > server->params->retry_count && 
497       server->params->retry_keep_trying == FALSE) {
498     SILC_LOG_ERROR(("Could not connect to router, giving up"));
499     return;
500   }
501
502   /* Wait one before retrying */
503   silc_schedule_task_add(server->schedule, fd, silc_server_connect_router,
504                          context, sconn->retry_timeout, 
505                          server->params->retry_interval_min_usec,
506                          SILC_TASK_TIMEOUT, SILC_TASK_PRI_NORMAL);
507 }
508
509 /* Generic routine to use connect to a router. */
510
511 SILC_TASK_CALLBACK(silc_server_connect_router)
512 {    
513   SilcServerConnection sconn = (SilcServerConnection)context;
514   SilcServer server = sconn->server;
515   SilcSocketConnection newsocket;
516   SilcProtocol protocol;
517   SilcServerKEInternalContext *proto_ctx;
518   int sock;
519
520   SILC_LOG_INFO(("Connecting to the router %s on port %d", 
521                  sconn->remote_host, sconn->remote_port));
522
523   /* Connect to remote host */
524   sock = silc_net_create_connection(sconn->remote_port, 
525                                     sconn->remote_host);
526   if (sock < 0) {
527     SILC_LOG_ERROR(("Could not connect to router"));
528     silc_schedule_task_add(server->schedule, fd, 
529                            silc_server_connect_to_router_retry,
530                            context, 0, 1, SILC_TASK_TIMEOUT, 
531                            SILC_TASK_PRI_NORMAL);
532     return;
533   }
534
535   /* Set socket options */
536   silc_net_set_socket_nonblock(sock);
537   silc_net_set_socket_opt(sock, SOL_SOCKET, SO_REUSEADDR, 1);
538
539   /* Create socket connection for the connection. Even though we
540      know that we are connecting to a router we will mark the socket
541      to be unknown connection until we have executed authentication
542      protocol. */
543   silc_socket_alloc(sock, SILC_SOCKET_TYPE_UNKNOWN, NULL, &newsocket);
544   server->sockets[sock] = newsocket;
545   newsocket->hostname = strdup(sconn->remote_host);
546   newsocket->ip = strdup(sconn->remote_host);
547   newsocket->port = sconn->remote_port;
548   sconn->sock = newsocket;
549
550   /* Allocate internal protocol context. This is sent as context
551      to the protocol. */
552   proto_ctx = silc_calloc(1, sizeof(*proto_ctx));
553   proto_ctx->server = (void *)server;
554   proto_ctx->context = (void *)sconn;
555   proto_ctx->sock = newsocket;
556   proto_ctx->rng = server->rng;
557   proto_ctx->responder = FALSE;
558       
559   /* Perform key exchange protocol. silc_server_connect_to_router_second
560      will be called after the protocol is finished. */
561   silc_protocol_alloc(SILC_PROTOCOL_SERVER_KEY_EXCHANGE, 
562                       &protocol, proto_ctx,
563                       silc_server_connect_to_router_second);
564   newsocket->protocol = protocol;
565       
566   /* Register a timeout task that will be executed if the protocol
567      is not executed within set limit. */
568   proto_ctx->timeout_task = 
569     silc_schedule_task_add(server->schedule, sock, 
570                        silc_server_timeout_remote,
571                        server, server->params->protocol_timeout,
572                        server->params->protocol_timeout_usec,
573                        SILC_TASK_TIMEOUT,
574                        SILC_TASK_PRI_LOW);
575
576   /* Register the connection for network input and output. This sets
577      that scheduler will listen for incoming packets for this connection 
578      and sets that outgoing packets may be sent to this connection as 
579      well. However, this doesn't set the scheduler for outgoing traffic,
580      it will be set separately by calling SILC_SET_CONNECTION_FOR_OUTPUT,
581      later when outgoing data is available. */
582   context = (void *)server;
583   SILC_REGISTER_CONNECTION_FOR_IO(sock);
584   
585   /* Run the protocol */
586   silc_protocol_execute(protocol, server->schedule, 0, 0);
587 }
588   
589 /* This function connects to our primary router or if we are a router this
590    establishes all our primary routes. This is called at the start of the
591    server to do authentication and key exchange with our router - called
592    from schedule. */
593
594 SILC_TASK_CALLBACK(silc_server_connect_to_router)
595 {
596   SilcServer server = (SilcServer)context;
597   SilcServerConnection sconn;
598
599   SILC_LOG_DEBUG(("Connecting to router(s)"));
600
601   /* If we are normal SILC server we need to connect to our cell's
602      router. */
603   if (server->server_type == SILC_SERVER) {
604     SILC_LOG_DEBUG(("We are normal server"));
605
606     /* Create connection to the router, if configured. */
607     if (server->config->routers) {
608
609       /* Allocate connection object for hold connection specific stuff. */
610       sconn = silc_calloc(1, sizeof(*sconn));
611       sconn->server = server;
612       sconn->remote_host = strdup(server->config->routers->host);
613       sconn->remote_port = server->config->routers->port;
614
615       silc_schedule_task_add(server->schedule, fd, 
616                          silc_server_connect_router,
617                          (void *)sconn, 0, 1, SILC_TASK_TIMEOUT, 
618                          SILC_TASK_PRI_NORMAL);
619       return;
620     }
621   }
622
623   /* If we are a SILC router we need to establish all of our primary
624      routes. */
625   if (server->server_type == SILC_ROUTER) {
626     SilcServerConfigSectionServerConnection *ptr;
627
628     SILC_LOG_DEBUG(("We are router"));
629
630     /* Create the connections to all our routes */
631     ptr = server->config->routers;
632     while (ptr) {
633
634       SILC_LOG_DEBUG(("Router connection [%s] %s:%d",
635                       ptr->initiator ? "Initiator" : "Responder",
636                       ptr->host, ptr->port));
637
638       if (ptr->initiator) {
639         /* Allocate connection object for hold connection specific stuff. */
640         sconn = silc_calloc(1, sizeof(*sconn));
641         sconn->server = server;
642         sconn->remote_host = strdup(ptr->host);
643         sconn->remote_port = ptr->port;
644
645         silc_schedule_task_add(server->schedule, fd, 
646                            silc_server_connect_router,
647                            (void *)sconn, 0, 1, SILC_TASK_TIMEOUT, 
648                            SILC_TASK_PRI_NORMAL);
649       }
650
651       if (!ptr->next)
652         return;
653
654       ptr = ptr->next;
655     }
656   }
657
658   SILC_LOG_DEBUG(("No router(s), server will be standalone"));
659   
660   /* There wasn't a configured router, we will continue but we don't
661      have a connection to outside world.  We will be standalone server. */
662   server->standalone = TRUE;
663 }
664
665 /* Second part of connecting to router(s). Key exchange protocol has been
666    executed and now we will execute authentication protocol. */
667
668 SILC_TASK_CALLBACK(silc_server_connect_to_router_second)
669 {
670   SilcProtocol protocol = (SilcProtocol)context;
671   SilcServerKEInternalContext *ctx = 
672     (SilcServerKEInternalContext *)protocol->context;
673   SilcServer server = (SilcServer)ctx->server;
674   SilcServerConnection sconn = (SilcServerConnection)ctx->context;
675   SilcSocketConnection sock = ctx->sock;
676   SilcServerConnAuthInternalContext *proto_ctx;
677   SilcServerConfigSectionServerConnection *conn = NULL;
678
679   SILC_LOG_DEBUG(("Start"));
680
681   if (protocol->state == SILC_PROTOCOL_STATE_ERROR ||
682       protocol->state == SILC_PROTOCOL_STATE_FAILURE) {
683     /* Error occured during protocol */
684     silc_protocol_free(protocol);
685     sock->protocol = NULL;
686     silc_ske_free_key_material(ctx->keymat);
687     if (ctx->packet)
688       silc_packet_context_free(ctx->packet);
689     if (ctx->ske)
690       silc_ske_free(ctx->ske);
691     if (ctx->dest_id)
692       silc_free(ctx->dest_id);
693     silc_free(ctx);
694     silc_schedule_task_del_by_callback(server->schedule,
695                                      silc_server_failure_callback);
696     silc_server_disconnect_remote(server, sock, "Server closed connection: "
697                                   "Key exchange failed");
698     return;
699   }
700   
701   /* We now have the key material as the result of the key exchange
702      protocol. Take the key material into use. Free the raw key material
703      as soon as we've set them into use. */
704   if (!silc_server_protocol_ke_set_keys(ctx->ske, ctx->sock, ctx->keymat,
705                                         ctx->ske->prop->cipher,
706                                         ctx->ske->prop->pkcs,
707                                         ctx->ske->prop->hash,
708                                         ctx->ske->prop->hmac,
709                                         ctx->ske->prop->group,
710                                         ctx->responder)) {
711     silc_protocol_free(protocol);
712     sock->protocol = NULL;
713     silc_ske_free_key_material(ctx->keymat);
714     if (ctx->packet)
715       silc_packet_context_free(ctx->packet);
716     if (ctx->ske)
717       silc_ske_free(ctx->ske);
718     if (ctx->dest_id)
719       silc_free(ctx->dest_id);
720     silc_free(ctx);
721     silc_schedule_task_del_by_callback(server->schedule,
722                                      silc_server_failure_callback);
723     silc_server_disconnect_remote(server, sock, "Server closed connection: "
724                                   "Key exchange failed");
725     return;
726   }    
727   silc_ske_free_key_material(ctx->keymat);
728
729   /* Allocate internal context for the authentication protocol. This
730      is sent as context for the protocol. */
731   proto_ctx = silc_calloc(1, sizeof(*proto_ctx));
732   proto_ctx->server = (void *)server;
733   proto_ctx->context = (void *)sconn;
734   proto_ctx->sock = sock;
735   proto_ctx->ske = ctx->ske;       /* Save SKE object from previous protocol */
736   proto_ctx->dest_id_type = ctx->dest_id_type;
737   proto_ctx->dest_id = ctx->dest_id;
738
739   /* Resolve the authentication method used in this connection. Check if 
740      we find a match from user configured connections */
741   conn = silc_server_config_find_router_conn(server->config,
742                                              sock->hostname,
743                                              sock->port);
744   if (conn) {
745     /* Match found. Use the configured authentication method */
746     proto_ctx->auth_meth = conn->auth_meth;
747     if (conn->auth_data) {
748       proto_ctx->auth_data = strdup(conn->auth_data);
749       proto_ctx->auth_data_len = strlen(conn->auth_data);
750     }
751   } else {
752     SILC_LOG_ERROR(("Could not find connection data for %s (%s) on port",
753                     sock->hostname, sock->ip, sock->port));
754     silc_protocol_free(protocol);
755     sock->protocol = NULL;
756     if (ctx->packet)
757       silc_packet_context_free(ctx->packet);
758     if (ctx->ske)
759       silc_ske_free(ctx->ske);
760     if (ctx->dest_id)
761       silc_free(ctx->dest_id);
762     silc_free(ctx);
763     silc_schedule_task_del_by_callback(server->schedule,
764                                      silc_server_failure_callback);
765     silc_server_disconnect_remote(server, sock, "Server closed connection: "
766                                   "Key exchange failed");
767     return;
768   }
769
770   /* Free old protocol as it is finished now */
771   silc_protocol_free(protocol);
772   if (ctx->packet)
773     silc_packet_context_free(ctx->packet);
774   silc_free(ctx);
775   sock->protocol = NULL;
776
777   /* Allocate the authentication protocol. This is allocated here
778      but we won't start it yet. We will be receiving party of this
779      protocol thus we will wait that connecting party will make
780      their first move. */
781   silc_protocol_alloc(SILC_PROTOCOL_SERVER_CONNECTION_AUTH, 
782                       &sock->protocol, proto_ctx, 
783                       silc_server_connect_to_router_final);
784
785   /* Register timeout task. If the protocol is not executed inside
786      this timelimit the connection will be terminated. Currently
787      this is 15 seconds and is hard coded limit (XXX). */
788   proto_ctx->timeout_task = 
789     silc_schedule_task_add(server->schedule, sock->sock, 
790                        silc_server_timeout_remote,
791                        (void *)server, 15, 0,
792                        SILC_TASK_TIMEOUT,
793                        SILC_TASK_PRI_LOW);
794
795   /* Run the protocol */
796   silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
797 }
798
799 /* Finalizes the connection to router. Registers a server task to the
800    queue so that we can accept new connections. */
801
802 SILC_TASK_CALLBACK(silc_server_connect_to_router_final)
803 {
804   SilcProtocol protocol = (SilcProtocol)context;
805   SilcServerConnAuthInternalContext *ctx = 
806     (SilcServerConnAuthInternalContext *)protocol->context;
807   SilcServer server = (SilcServer)ctx->server;
808   SilcServerConnection sconn = (SilcServerConnection)ctx->context;
809   SilcSocketConnection sock = ctx->sock;
810   SilcServerEntry id_entry;
811   SilcBuffer packet;
812   SilcServerHBContext hb_context;
813   unsigned char *id_string;
814   uint32 id_len;
815   SilcIDListData idata;
816
817   SILC_LOG_DEBUG(("Start"));
818
819   if (protocol->state == SILC_PROTOCOL_STATE_ERROR ||
820       protocol->state == SILC_PROTOCOL_STATE_FAILURE) {
821     /* Error occured during protocol */
822     if (ctx->dest_id)
823       silc_free(ctx->dest_id);
824     silc_server_disconnect_remote(server, sock, "Server closed connection: "
825                                   "Authentication failed");
826     goto out;
827   }
828
829   /* Add a task to the queue. This task receives new connections to the 
830      server. This task remains on the queue until the end of the program. */
831   if (!server->listenning) {
832     silc_schedule_task_add(server->schedule, server->sock, 
833                        silc_server_accept_new_connection,
834                        (void *)server, 0, 0, 
835                        SILC_TASK_FD,
836                        SILC_TASK_PRI_NORMAL);
837     server->listenning = TRUE;
838   }
839
840   /* Send NEW_SERVER packet to the router. We will become registered
841      to the SILC network after sending this packet. */
842   id_string = silc_id_id2str(server->id, SILC_ID_SERVER);
843   id_len = silc_id_get_len(server->id, SILC_ID_SERVER);
844   packet = silc_buffer_alloc(2 + 2 + id_len + strlen(server->server_name));
845   silc_buffer_pull_tail(packet, SILC_BUFFER_END(packet));
846   silc_buffer_format(packet,
847                      SILC_STR_UI_SHORT(id_len),
848                      SILC_STR_UI_XNSTRING(id_string, id_len),
849                      SILC_STR_UI_SHORT(strlen(server->server_name)),
850                      SILC_STR_UI_XNSTRING(server->server_name,
851                                           strlen(server->server_name)),
852                      SILC_STR_END);
853
854   /* Send the packet */
855   silc_server_packet_send(server, ctx->sock, SILC_PACKET_NEW_SERVER, 0,
856                           packet->data, packet->len, TRUE);
857   silc_buffer_free(packet);
858   silc_free(id_string);
859
860   SILC_LOG_DEBUG(("Connected to router %s", sock->hostname));
861
862   /* Add the connected router to local server list */
863   server->standalone = FALSE;
864   id_entry = silc_idlist_add_server(server->local_list, strdup(sock->hostname),
865                                     SILC_ROUTER, ctx->dest_id, NULL, sock);
866   if (!id_entry) {
867     if (ctx->dest_id)
868       silc_free(ctx->dest_id);
869     silc_server_disconnect_remote(server, sock, "Server closed connection: "
870                                   "Authentication failed");
871     goto out;
872   }
873
874   silc_idlist_add_data(id_entry, (SilcIDListData)sock->user_data);
875   silc_free(sock->user_data);
876   sock->user_data = (void *)id_entry;
877   sock->type = SILC_SOCKET_TYPE_ROUTER;
878   server->id_entry->router = id_entry;
879   server->router = id_entry;
880   idata = (SilcIDListData)sock->user_data;
881   idata->registered = TRUE;
882
883   /* Perform keepalive. The `hb_context' will be freed automatically
884      when finally calling the silc_socket_free function. XXX hardcoded 
885      timeout!! */
886   hb_context = silc_calloc(1, sizeof(*hb_context));
887   hb_context->server = server;
888   silc_socket_set_heartbeat(sock, 600, hb_context,
889                             silc_server_perform_heartbeat,
890                             server->schedule);
891
892   /* Register re-key timeout */
893   idata->rekey->timeout = 3600; /* XXX hardcoded */
894   idata->rekey->context = (void *)server;
895   silc_schedule_task_add(server->schedule, sock->sock, 
896                      silc_server_rekey_callback,
897                      (void *)sock, idata->rekey->timeout, 0,
898                      SILC_TASK_TIMEOUT, SILC_TASK_PRI_NORMAL);
899
900   /* If we are router then announce our possible servers. */
901   if (server->server_type == SILC_ROUTER)
902     silc_server_announce_servers(server);
903
904   /* Announce our clients and channels to the router */
905   silc_server_announce_clients(server);
906   silc_server_announce_channels(server);
907
908  out:
909   /* Free the temporary connection data context */
910   if (sconn) {
911     silc_free(sconn->remote_host);
912     silc_free(sconn);
913   }
914
915   /* Free the protocol object */
916   silc_protocol_free(protocol);
917   if (ctx->packet)
918     silc_packet_context_free(ctx->packet);
919   if (ctx->ske)
920     silc_ske_free(ctx->ske);
921   silc_free(ctx);
922   sock->protocol = NULL;
923 }
924
925 /* Host lookup callbcak that is called after the incoming connection's
926    IP and FQDN lookup is performed. This will actually check the acceptance
927    of the incoming connection and will register the key exchange protocol
928    for this connection. */
929
930 static void 
931 silc_server_accept_new_connection_lookup(SilcSocketConnection sock,
932                                          void *context)
933 {
934   SilcServer server = (SilcServer)context;
935   SilcServerKEInternalContext *proto_ctx;
936   void *cconfig, *sconfig, *rconfig;
937   SilcServerConfigSectionDenyConnection *deny;
938   int port;
939
940   SILC_LOG_DEBUG(("Start"));
941
942   /* Check whether we could resolve both IP and FQDN. */
943   if (!sock->ip || (!strcmp(sock->ip, sock->hostname) &&
944                     server->params->require_reverse_mapping)) {
945     SILC_LOG_ERROR(("IP/DNS lookup failed %s",
946                     sock->hostname ? sock->hostname :
947                     sock->ip ? sock->ip : ""));
948     server->stat.conn_failures++;
949     silc_server_disconnect_remote(server, sock,
950                                   "Server closed connection: Unknown host");
951     return;
952   }
953
954   /* Register the connection for network input and output. This sets
955      that scheduler will listen for incoming packets for this connection 
956      and sets that outgoing packets may be sent to this connection as well.
957      However, this doesn't set the scheduler for outgoing traffic, it
958      will be set separately by calling SILC_SET_CONNECTION_FOR_OUTPUT,
959      later when outgoing data is available. */
960   SILC_REGISTER_CONNECTION_FOR_IO(sock->sock);
961
962   SILC_LOG_INFO(("Incoming connection from %s (%s)", sock->hostname,
963                  sock->ip));
964
965   port = server->sockets[server->sock]->port; /* Listenning port */
966
967   /* Check whether this connection is denied to connect to us. */
968   deny = silc_server_config_denied_conn(server->config, sock->ip, port);
969   if (!deny)
970     deny = silc_server_config_denied_conn(server->config, sock->hostname,
971                                           port);
972   if (deny) {
973     /* The connection is denied */
974     SILC_LOG_INFO(("Connection %s (%s) is denied", 
975                    sock->hostname, sock->ip));
976     silc_server_disconnect_remote(server, sock, deny->comment ?
977                                   deny->comment :
978                                   "Server closed connection: "
979                                   "Connection refused");
980     server->stat.conn_failures++;
981     return;
982   }
983
984   /* Check whether we have configred this sort of connection at all. We
985      have to check all configurations since we don't know what type of
986      connection this is. */
987   if (!(cconfig = silc_server_config_find_client_conn(server->config,
988                                                       sock->ip, port)))
989     cconfig = silc_server_config_find_client_conn(server->config,
990                                                   sock->hostname, 
991                                                   port);
992   if (!(sconfig = silc_server_config_find_server_conn(server->config,
993                                                      sock->ip, 
994                                                      port)))
995     sconfig = silc_server_config_find_server_conn(server->config,
996                                                   sock->hostname,
997                                                   port);
998   if (!(rconfig = silc_server_config_find_router_conn(server->config,
999                                                      sock->ip, port)))
1000     rconfig = silc_server_config_find_router_conn(server->config,
1001                                                   sock->hostname, 
1002                                                   port);
1003   if (!cconfig && !sconfig && !rconfig) {
1004     silc_server_disconnect_remote(server, sock, 
1005                                   "Server closed connection: "
1006                                   "Connection refused");
1007     server->stat.conn_failures++;
1008     return;
1009   }
1010
1011   /* The connection is allowed */
1012
1013   /* Allocate internal context for key exchange protocol. This is
1014      sent as context for the protocol. */
1015   proto_ctx = silc_calloc(1, sizeof(*proto_ctx));
1016   proto_ctx->server = context;
1017   proto_ctx->sock = sock;
1018   proto_ctx->rng = server->rng;
1019   proto_ctx->responder = TRUE;
1020   proto_ctx->cconfig = cconfig;
1021   proto_ctx->sconfig = sconfig;
1022   proto_ctx->rconfig = rconfig;
1023
1024   /* Prepare the connection for key exchange protocol. We allocate the
1025      protocol but will not start it yet. The connector will be the
1026      initiator of the protocol thus we will wait for initiation from 
1027      there before we start the protocol. */
1028   server->stat.auth_attempts++;
1029   silc_protocol_alloc(SILC_PROTOCOL_SERVER_KEY_EXCHANGE, 
1030                       &sock->protocol, proto_ctx, 
1031                       silc_server_accept_new_connection_second);
1032
1033   /* Register a timeout task that will be executed if the connector
1034      will not start the key exchange protocol within 60 seconds. For
1035      now, this is a hard coded limit. After 60 secs the connection will
1036      be closed if the key exchange protocol has not been started. */
1037   proto_ctx->timeout_task = 
1038     silc_schedule_task_add(server->schedule, sock->sock, 
1039                        silc_server_timeout_remote,
1040                        context, 60, 0,
1041                        SILC_TASK_TIMEOUT,
1042                        SILC_TASK_PRI_LOW);
1043 }
1044
1045 /* Accepts new connections to the server. Accepting new connections are
1046    done in three parts to make it async. */
1047
1048 SILC_TASK_CALLBACK(silc_server_accept_new_connection)
1049 {
1050   SilcServer server = (SilcServer)context;
1051   SilcSocketConnection newsocket;
1052   int sock;
1053
1054   SILC_LOG_DEBUG(("Accepting new connection"));
1055
1056   server->stat.conn_attempts++;
1057
1058   sock = silc_net_accept_connection(server->sock);
1059   if (sock < 0) {
1060     SILC_LOG_ERROR(("Could not accept new connection: %s", strerror(errno)));
1061     server->stat.conn_failures++;
1062     return;
1063   }
1064
1065   /* Check max connections */
1066   if (sock > SILC_SERVER_MAX_CONNECTIONS) {
1067     SILC_LOG_ERROR(("Refusing connection, server is full"));
1068     server->stat.conn_failures++;
1069     return;
1070   }
1071
1072   /* Set socket options */
1073   silc_net_set_socket_nonblock(sock);
1074   silc_net_set_socket_opt(sock, SOL_SOCKET, SO_REUSEADDR, 1);
1075
1076   /* We don't create a ID yet, since we don't know what type of connection
1077      this is yet. But, we do add the connection to the socket table. */
1078   silc_socket_alloc(sock, SILC_SOCKET_TYPE_UNKNOWN, NULL, &newsocket);
1079   server->sockets[sock] = newsocket;
1080
1081   /* Perform asynchronous host lookup. This will lookup the IP and the
1082      FQDN of the remote connection. After the lookup is done the connection
1083      is accepted further. */
1084   silc_socket_host_lookup(newsocket, TRUE, 
1085                           silc_server_accept_new_connection_lookup, context, 
1086                           server->schedule);
1087 }
1088
1089 /* Second part of accepting new connection. Key exchange protocol has been
1090    performed and now it is time to do little connection authentication
1091    protocol to figure out whether this connection is client or server
1092    and whether it has right to access this server (especially server
1093    connections needs to be authenticated). */
1094
1095 SILC_TASK_CALLBACK(silc_server_accept_new_connection_second)
1096 {
1097   SilcProtocol protocol = (SilcProtocol)context;
1098   SilcServerKEInternalContext *ctx = 
1099     (SilcServerKEInternalContext *)protocol->context;
1100   SilcServer server = (SilcServer)ctx->server;
1101   SilcSocketConnection sock = ctx->sock;
1102   SilcServerConnAuthInternalContext *proto_ctx;
1103
1104   SILC_LOG_DEBUG(("Start"));
1105
1106   if (protocol->state == SILC_PROTOCOL_STATE_ERROR ||
1107       protocol->state == SILC_PROTOCOL_STATE_FAILURE) {
1108     /* Error occured during protocol */
1109     silc_protocol_free(protocol);
1110     sock->protocol = NULL;
1111     silc_ske_free_key_material(ctx->keymat);
1112     if (ctx->packet)
1113       silc_packet_context_free(ctx->packet);
1114     if (ctx->ske)
1115       silc_ske_free(ctx->ske);
1116     if (ctx->dest_id)
1117       silc_free(ctx->dest_id);
1118     silc_free(ctx);
1119     silc_schedule_task_del_by_callback(server->schedule,
1120                                      silc_server_failure_callback);
1121     silc_server_disconnect_remote(server, sock, "Server closed connection: "
1122                                   "Key exchange failed");
1123     server->stat.auth_failures++;
1124     return;
1125   }
1126
1127   /* We now have the key material as the result of the key exchange
1128      protocol. Take the key material into use. Free the raw key material
1129      as soon as we've set them into use. */
1130   if (!silc_server_protocol_ke_set_keys(ctx->ske, ctx->sock, ctx->keymat,
1131                                         ctx->ske->prop->cipher,
1132                                         ctx->ske->prop->pkcs,
1133                                         ctx->ske->prop->hash,
1134                                         ctx->ske->prop->hmac,
1135                                         ctx->ske->prop->group,
1136                                         ctx->responder)) {
1137     silc_protocol_free(protocol);
1138     sock->protocol = NULL;
1139     silc_ske_free_key_material(ctx->keymat);
1140     if (ctx->packet)
1141       silc_packet_context_free(ctx->packet);
1142     if (ctx->ske)
1143       silc_ske_free(ctx->ske);
1144     if (ctx->dest_id)
1145       silc_free(ctx->dest_id);
1146     silc_free(ctx);
1147     silc_schedule_task_del_by_callback(server->schedule,
1148                                      silc_server_failure_callback);
1149     silc_server_disconnect_remote(server, sock, "Server closed connection: "
1150                                   "Key exchange failed");
1151     server->stat.auth_failures++;
1152     return;
1153   }    
1154   silc_ske_free_key_material(ctx->keymat);
1155
1156   /* Allocate internal context for the authentication protocol. This
1157      is sent as context for the protocol. */
1158   proto_ctx = silc_calloc(1, sizeof(*proto_ctx));
1159   proto_ctx->server = (void *)server;
1160   proto_ctx->sock = sock;
1161   proto_ctx->ske = ctx->ske;    /* Save SKE object from previous protocol */
1162   proto_ctx->responder = TRUE;
1163   proto_ctx->dest_id_type = ctx->dest_id_type;
1164   proto_ctx->dest_id = ctx->dest_id;
1165   proto_ctx->cconfig = ctx->cconfig;
1166   proto_ctx->sconfig = ctx->sconfig;
1167   proto_ctx->rconfig = ctx->rconfig;
1168
1169   /* Free old protocol as it is finished now */
1170   silc_protocol_free(protocol);
1171   if (ctx->packet)
1172     silc_packet_context_free(ctx->packet);
1173   silc_free(ctx);
1174   sock->protocol = NULL;
1175
1176   /* Allocate the authentication protocol. This is allocated here
1177      but we won't start it yet. We will be receiving party of this
1178      protocol thus we will wait that connecting party will make
1179      their first move. */
1180   silc_protocol_alloc(SILC_PROTOCOL_SERVER_CONNECTION_AUTH, 
1181                       &sock->protocol, proto_ctx, 
1182                       silc_server_accept_new_connection_final);
1183
1184   /* Register timeout task. If the protocol is not executed inside
1185      this timelimit the connection will be terminated. Currently
1186      this is 60 seconds and is hard coded limit (XXX). */
1187   proto_ctx->timeout_task = 
1188     silc_schedule_task_add(server->schedule, sock->sock, 
1189                        silc_server_timeout_remote,
1190                        (void *)server, 60, 0,
1191                        SILC_TASK_TIMEOUT,
1192                        SILC_TASK_PRI_LOW);
1193 }
1194
1195 /* Final part of accepting new connection. The connection has now
1196    been authenticated and keys has been exchanged. We also know whether
1197    this is client or server connection. */
1198
1199 SILC_TASK_CALLBACK(silc_server_accept_new_connection_final)
1200 {
1201   SilcProtocol protocol = (SilcProtocol)context;
1202   SilcServerConnAuthInternalContext *ctx = 
1203     (SilcServerConnAuthInternalContext *)protocol->context;
1204   SilcServer server = (SilcServer)ctx->server;
1205   SilcSocketConnection sock = ctx->sock;
1206   SilcServerHBContext hb_context;
1207   void *id_entry = NULL;
1208
1209   SILC_LOG_DEBUG(("Start"));
1210
1211   if (protocol->state == SILC_PROTOCOL_STATE_ERROR ||
1212       protocol->state == SILC_PROTOCOL_STATE_FAILURE) {
1213     /* Error occured during protocol */
1214     silc_protocol_free(protocol);
1215     sock->protocol = NULL;
1216     if (ctx->packet)
1217       silc_packet_context_free(ctx->packet);
1218     if (ctx->ske)
1219       silc_ske_free(ctx->ske);
1220     if (ctx->dest_id)
1221       silc_free(ctx->dest_id);
1222     silc_free(ctx);
1223     if (sock)
1224       sock->protocol = NULL;
1225     silc_schedule_task_del_by_callback(server->schedule,
1226                                      silc_server_failure_callback);
1227     silc_server_disconnect_remote(server, sock, "Server closed connection: "
1228                                   "Authentication failed");
1229     server->stat.auth_failures++;
1230     return;
1231   }
1232
1233   switch(ctx->conn_type) {
1234   case SILC_SOCKET_TYPE_CLIENT:
1235     {
1236       SilcClientEntry client;
1237
1238       SILC_LOG_DEBUG(("Remote host is client"));
1239       SILC_LOG_INFO(("Connection from %s (%s) is client", sock->hostname,
1240                      sock->ip));
1241
1242       /* Add the client to the client ID cache. The nickname and Client ID
1243          and other information is created after we have received NEW_CLIENT
1244          packet from client. */
1245       client = silc_idlist_add_client(server->local_list, 
1246                                       NULL, NULL, NULL, NULL, NULL, sock);
1247       if (!client) {
1248         SILC_LOG_ERROR(("Could not add new client to cache"));
1249         silc_free(sock->user_data);
1250         silc_server_disconnect_remote(server, sock, 
1251                                       "Server closed connection: "
1252                                       "Authentication failed");
1253         server->stat.auth_failures++;
1254         goto out;
1255       }
1256
1257       /* Statistics */
1258       server->stat.my_clients++;
1259       server->stat.clients++;
1260       if (server->server_type == SILC_ROUTER)
1261         server->stat.cell_clients++;
1262
1263       id_entry = (void *)client;
1264       break;
1265     }
1266   case SILC_SOCKET_TYPE_SERVER:
1267   case SILC_SOCKET_TYPE_ROUTER:
1268     {
1269       SilcServerEntry new_server;
1270       SilcServerConfigSectionServerConnection *conn = 
1271         ctx->conn_type == SILC_SOCKET_TYPE_SERVER ? 
1272         ctx->sconfig : ctx->rconfig;
1273
1274       SILC_LOG_DEBUG(("Remote host is %s", 
1275                       ctx->conn_type == SILC_SOCKET_TYPE_SERVER ? 
1276                       "server" : "router"));
1277       SILC_LOG_INFO(("Connection from %s (%s) is %s", sock->hostname,
1278                      sock->ip, ctx->conn_type == SILC_SOCKET_TYPE_SERVER ? 
1279                      "server" : "router"));
1280
1281       /* Add the server into server cache. The server name and Server ID
1282          is updated after we have received NEW_SERVER packet from the
1283          server. We mark ourselves as router for this server if we really
1284          are router. */
1285       new_server = 
1286         silc_idlist_add_server(server->local_list, NULL,
1287                                ctx->conn_type == SILC_SOCKET_TYPE_SERVER ?
1288                                SILC_SERVER : SILC_ROUTER, NULL, 
1289                                ctx->conn_type == SILC_SOCKET_TYPE_SERVER ?
1290                                server->id_entry : NULL, sock);
1291       if (!new_server) {
1292         SILC_LOG_ERROR(("Could not add new server to cache"));
1293         silc_free(sock->user_data);
1294         silc_server_disconnect_remote(server, sock, 
1295                                       "Server closed connection: "
1296                                       "Authentication failed");
1297         server->stat.auth_failures++;
1298         goto out;
1299       }
1300
1301       /* Statistics */
1302       if (ctx->conn_type == SILC_SOCKET_TYPE_SERVER)
1303         server->stat.my_servers++;
1304       else
1305         server->stat.my_routers++;
1306       server->stat.servers++;
1307
1308       id_entry = (void *)new_server;
1309
1310       /* Check whether this connection is to be our primary router connection
1311          if we dont' already have the primary route. */
1312       if (server->standalone && ctx->conn_type == SILC_SOCKET_TYPE_ROUTER) {
1313         if (silc_server_config_is_primary_route(server->config) &&
1314             !conn->initiator)
1315           break;
1316
1317         SILC_LOG_DEBUG(("We are not standalone server anymore"));
1318         server->standalone = FALSE;
1319         if (!server->id_entry->router) {
1320           server->id_entry->router = id_entry;
1321           server->router = id_entry;
1322         }
1323       }
1324
1325       break;
1326     }
1327   default:
1328     break;
1329   }
1330
1331   sock->type = ctx->conn_type;
1332
1333   /* Add the common data structure to the ID entry. */
1334   if (id_entry)
1335     silc_idlist_add_data(id_entry, (SilcIDListData)sock->user_data);
1336       
1337   /* Add to sockets internal pointer for fast referencing */
1338   silc_free(sock->user_data);
1339   sock->user_data = id_entry;
1340
1341   /* Connection has been fully established now. Everything is ok. */
1342   SILC_LOG_DEBUG(("New connection authenticated"));
1343
1344   /* Perform keepalive. The `hb_context' will be freed automatically
1345      when finally calling the silc_socket_free function. XXX hardcoded 
1346      timeout!! */
1347   hb_context = silc_calloc(1, sizeof(*hb_context));
1348   hb_context->server = server;
1349   silc_socket_set_heartbeat(sock, 600, hb_context,
1350                             silc_server_perform_heartbeat,
1351                             server->schedule);
1352
1353  out:
1354   silc_schedule_task_del_by_callback(server->schedule,
1355                                    silc_server_failure_callback);
1356   silc_protocol_free(protocol);
1357   if (ctx->packet)
1358     silc_packet_context_free(ctx->packet);
1359   if (ctx->ske)
1360     silc_ske_free(ctx->ske);
1361   if (ctx->dest_id)
1362     silc_free(ctx->dest_id);
1363   silc_free(ctx);
1364   sock->protocol = NULL;
1365 }
1366
1367 /* This function is used to read packets from network and send packets to
1368    network. This is usually a generic task. */
1369
1370 SILC_TASK_CALLBACK(silc_server_packet_process)
1371 {
1372   SilcServer server = (SilcServer)context;
1373   SilcSocketConnection sock = server->sockets[fd];
1374   SilcIDListData idata;
1375   SilcCipher cipher = NULL;
1376   SilcHmac hmac = NULL;
1377   int ret;
1378
1379   if (!sock)
1380     return;
1381
1382   SILC_LOG_DEBUG(("Processing packet"));
1383
1384   /* Packet sending */
1385
1386   if (type == SILC_TASK_WRITE) {
1387     /* Do not send data to disconnected connection */
1388     if (SILC_IS_DISCONNECTED(sock))
1389       return;
1390
1391     server->stat.packets_sent++;
1392
1393     if (sock->outbuf->data - sock->outbuf->head)
1394      silc_buffer_push(sock->outbuf, sock->outbuf->data - sock->outbuf->head);
1395
1396     /* Send the packet */
1397     ret = silc_packet_send(sock, TRUE);
1398
1399     /* If returned -2 could not write to connection now, will do
1400        it later. */
1401     if (ret == -2)
1402       return;
1403
1404     if (ret == -1) {
1405       SILC_LOG_ERROR(("Error sending packet to connection "
1406                       "%s:%d [%s]", sock->hostname, sock->port,  
1407                       (sock->type == SILC_SOCKET_TYPE_UNKNOWN ? "Unknown" :
1408                        sock->type == SILC_SOCKET_TYPE_CLIENT ? "Client" :
1409                        sock->type == SILC_SOCKET_TYPE_SERVER ? "Server" :
1410                        "Router")));
1411       return;
1412     }
1413     
1414     /* The packet has been sent and now it is time to set the connection
1415        back to only for input. When there is again some outgoing data 
1416        available for this connection it will be set for output as well. 
1417        This call clears the output setting and sets it only for input. */
1418     SILC_SET_CONNECTION_FOR_INPUT(server->schedule, fd);
1419     SILC_UNSET_OUTBUF_PENDING(sock);
1420
1421     silc_buffer_clear(sock->outbuf);
1422     return;
1423   }
1424
1425   /* Packet receiving */
1426
1427   /* Read some data from connection */
1428   ret = silc_packet_receive(sock);
1429   if (ret < 0) {
1430
1431     if (ret == -1)
1432       SILC_LOG_ERROR(("Error receiving packet from connection "
1433                       "%s:%d [%s]", sock->hostname, sock->port,  
1434                       (sock->type == SILC_SOCKET_TYPE_UNKNOWN ? "Unknown" :
1435                        sock->type == SILC_SOCKET_TYPE_CLIENT ? "Client" :
1436                        sock->type == SILC_SOCKET_TYPE_SERVER ? "Server" :
1437                        "Router")));
1438     return;
1439   }    
1440
1441   /* EOF */
1442   if (ret == 0) {
1443     SILC_LOG_DEBUG(("Read EOF"));
1444       
1445     /* If connection is disconnecting already we will finally
1446        close the connection */
1447     if (SILC_IS_DISCONNECTING(sock)) {
1448       if (sock->user_data)
1449         silc_server_free_sock_user_data(server, sock);
1450       silc_server_close_connection(server, sock);
1451       return;
1452     }
1453       
1454     SILC_LOG_DEBUG(("Premature EOF from connection %d", sock->sock));
1455     SILC_SET_DISCONNECTING(sock);
1456
1457     /* If the closed connection was our primary router connection the
1458        start re-connecting phase. */
1459     if (!server->standalone && sock->type == SILC_SOCKET_TYPE_ROUTER && 
1460         sock == server->router->connection)
1461       silc_schedule_task_add(server->schedule, 0, 
1462                          silc_server_connect_to_router,
1463                          context, 1, 0,
1464                          SILC_TASK_TIMEOUT,
1465                          SILC_TASK_PRI_NORMAL);
1466
1467     if (sock->user_data)
1468       silc_server_free_sock_user_data(server, sock);
1469     silc_server_close_connection(server, sock);
1470     return;
1471   }
1472
1473   /* If connection is disconnecting or disconnected we will ignore
1474      what we read. */
1475   if (SILC_IS_DISCONNECTING(sock) || SILC_IS_DISCONNECTED(sock)) {
1476     SILC_LOG_DEBUG(("Ignoring read data from disonnected connection"));
1477     return;
1478   }
1479
1480   server->stat.packets_received++;
1481
1482   /* Get keys and stuff from ID entry */
1483   idata = (SilcIDListData)sock->user_data;
1484   if (idata) {
1485     idata->last_receive = time(NULL);
1486     cipher = idata->receive_key;
1487     hmac = idata->hmac_receive;
1488   }
1489  
1490   /* Process the packet. This will call the parser that will then
1491      decrypt and parse the packet. */
1492   silc_packet_receive_process(sock, cipher, hmac, silc_server_packet_parse, 
1493                               server);
1494 }
1495
1496 /* Callback function that the silc_packet_decrypt will call to make the
1497    decision whether the packet is normal or special packet. We will 
1498    return TRUE if it is normal and FALSE if it is special */
1499
1500 static int silc_server_packet_decrypt_check(SilcPacketType packet_type,
1501                                             SilcBuffer buffer,
1502                                             SilcPacketContext *packet,
1503                                             void *context)
1504 {
1505   SilcPacketParserContext *parse_ctx = (SilcPacketParserContext *)context;
1506   SilcServer server = (SilcServer)parse_ctx->context;
1507
1508   /* Packet is normal packet, if: 
1509
1510      1) packet is private message packet and does not have private key set
1511      2) is other packet than channel message packet
1512      3) is channel message packet and remote is router and we are router 
1513
1514      all other packets are special packets 
1515   */
1516
1517   if (packet_type == SILC_PACKET_PRIVATE_MESSAGE &&
1518       (buffer->data[2] & SILC_PACKET_FLAG_PRIVMSG_KEY))
1519     return FALSE;
1520
1521   if (packet_type != SILC_PACKET_CHANNEL_MESSAGE || 
1522       (packet_type == SILC_PACKET_CHANNEL_MESSAGE &&
1523        parse_ctx->sock->type == SILC_SOCKET_TYPE_ROUTER &&
1524        server->server_type == SILC_ROUTER))
1525     return TRUE;
1526
1527   return FALSE;
1528 }
1529   
1530 /* Parses whole packet, received earlier. */
1531
1532 SILC_TASK_CALLBACK(silc_server_packet_parse_real)
1533 {
1534   SilcPacketParserContext *parse_ctx = (SilcPacketParserContext *)context;
1535   SilcServer server = (SilcServer)parse_ctx->context;
1536   SilcSocketConnection sock = parse_ctx->sock;
1537   SilcPacketContext *packet = parse_ctx->packet;
1538   SilcIDListData idata = (SilcIDListData)sock->user_data;
1539   int ret;
1540
1541   SILC_LOG_DEBUG(("Start"));
1542
1543   /* Decrypt the received packet */
1544   ret = silc_packet_decrypt(idata ? idata->receive_key : NULL, 
1545                             idata ? idata->hmac_receive : NULL, 
1546                             packet->buffer, packet,
1547                             silc_server_packet_decrypt_check, parse_ctx);
1548   if (ret < 0) {
1549     SILC_LOG_WARNING(("Packet decryption failed for connection "
1550                       "%s:%d [%s]", sock->hostname, sock->port,  
1551                       (sock->type == SILC_SOCKET_TYPE_UNKNOWN ? "Unknown" :
1552                        sock->type == SILC_SOCKET_TYPE_CLIENT ? "Client" :
1553                        sock->type == SILC_SOCKET_TYPE_SERVER ? "Server" :
1554                        "Router")));
1555     goto out;
1556   }
1557
1558   if (ret == 0) {
1559     /* Parse the packet. Packet type is returned. */
1560     ret = silc_packet_parse(packet);
1561   } else {
1562     /* Parse the packet header in special way as this is "special"
1563        packet type. */
1564     ret = silc_packet_parse_special(packet);
1565   }
1566
1567   if (ret == SILC_PACKET_NONE)
1568     goto out;
1569
1570   /* Check that the the current client ID is same as in the client's packet. */
1571   if (sock->type == SILC_SOCKET_TYPE_CLIENT) {
1572     SilcClientEntry client = (SilcClientEntry)sock->user_data;
1573     if (client && client->id) {
1574       void *id = silc_id_str2id(packet->src_id, packet->src_id_len,
1575                                 packet->src_id_type);
1576       if (!id || !SILC_ID_CLIENT_COMPARE(client->id, id)) {
1577         silc_free(id);
1578         goto out;
1579       }
1580       silc_free(id);
1581     }
1582   }
1583
1584   if (server->server_type == SILC_ROUTER) {
1585     /* Route the packet if it is not destined to us. Other ID types but
1586        server are handled separately after processing them. */
1587     if (!(packet->flags & SILC_PACKET_FLAG_BROADCAST) &&
1588         packet->dst_id_type == SILC_ID_SERVER && 
1589         sock->type != SILC_SOCKET_TYPE_CLIENT &&
1590         memcmp(packet->dst_id, server->id_string, packet->dst_id_len)) {
1591       
1592       /* Route the packet to fastest route for the destination ID */
1593       void *id = silc_id_str2id(packet->dst_id, packet->dst_id_len, 
1594                                 packet->dst_id_type);
1595       if (!id)
1596         goto out;
1597       silc_server_packet_route(server,
1598                                silc_server_route_get(server, id,
1599                                                      packet->dst_id_type),
1600                                packet);
1601       silc_free(id);
1602       goto out;
1603     }
1604   }
1605
1606   /* Parse the incoming packet type */
1607   silc_server_packet_parse_type(server, sock, packet);
1608
1609   if (server->server_type == SILC_ROUTER) {
1610     /* Broadcast packet if it is marked as broadcast packet and it is
1611        originated from router and we are router. */
1612     if (sock->type == SILC_SOCKET_TYPE_ROUTER &&
1613         packet->flags & SILC_PACKET_FLAG_BROADCAST &&
1614         !server->standalone) {
1615       silc_server_packet_broadcast(server, server->router->connection, packet);
1616     }
1617   }
1618
1619  out:
1620   /*  silc_buffer_clear(sock->inbuf); */
1621   silc_packet_context_free(packet);
1622   silc_free(parse_ctx);
1623 }
1624
1625 /* Parser callback called by silc_packet_receive_process. This merely
1626    registers timeout that will handle the actual parsing when appropriate. */
1627
1628 void silc_server_packet_parse(SilcPacketParserContext *parser_context)
1629 {
1630   SilcServer server = (SilcServer)parser_context->context;
1631   SilcSocketConnection sock = parser_context->sock;
1632
1633   switch (sock->type) {
1634   case SILC_SOCKET_TYPE_UNKNOWN:
1635   case SILC_SOCKET_TYPE_CLIENT:
1636     /* Parse the packet with timeout */
1637     silc_schedule_task_add(server->schedule, sock->sock,
1638                        silc_server_packet_parse_real,
1639                        (void *)parser_context, 0, 100000,
1640                        SILC_TASK_TIMEOUT,
1641                        SILC_TASK_PRI_NORMAL);
1642     break;
1643   case SILC_SOCKET_TYPE_SERVER:
1644   case SILC_SOCKET_TYPE_ROUTER:
1645     /* Packets from servers are parsed as soon as possible */
1646     silc_schedule_task_add(server->schedule, sock->sock,
1647                        silc_server_packet_parse_real,
1648                        (void *)parser_context, 0, 1,
1649                        SILC_TASK_TIMEOUT,
1650                        SILC_TASK_PRI_NORMAL);
1651     break;
1652   default:
1653     return;
1654   }
1655 }
1656
1657 /* Parses the packet type and calls what ever routines the packet type
1658    requires. This is done for all incoming packets. */
1659
1660 void silc_server_packet_parse_type(SilcServer server, 
1661                                    SilcSocketConnection sock,
1662                                    SilcPacketContext *packet)
1663 {
1664   SilcPacketType type = packet->type;
1665
1666   SILC_LOG_DEBUG(("Parsing packet type %d", type));
1667
1668   /* Parse the packet type */
1669   switch(type) {
1670   case SILC_PACKET_DISCONNECT:
1671     SILC_LOG_DEBUG(("Disconnect packet"));
1672     if (packet->flags & SILC_PACKET_FLAG_LIST)
1673       break;
1674     break;
1675
1676   case SILC_PACKET_SUCCESS:
1677     /*
1678      * Success received for something. For now we can have only
1679      * one protocol for connection executing at once hence this
1680      * success message is for whatever protocol is executing currently.
1681      */
1682     SILC_LOG_DEBUG(("Success packet"));
1683     if (packet->flags & SILC_PACKET_FLAG_LIST)
1684       break;
1685     if (sock->protocol)
1686       silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
1687     break;
1688
1689   case SILC_PACKET_FAILURE:
1690     /*
1691      * Failure received for something. For now we can have only
1692      * one protocol for connection executing at once hence this
1693      * failure message is for whatever protocol is executing currently.
1694      */
1695     SILC_LOG_DEBUG(("Failure packet"));
1696     if (packet->flags & SILC_PACKET_FLAG_LIST)
1697       break;
1698     if (sock->protocol) {
1699       SilcServerFailureContext f;
1700       f = silc_calloc(1, sizeof(*f));
1701       f->server = server;
1702       f->sock = sock;
1703       
1704       /* We will wait 5 seconds to process this failure packet */
1705       silc_schedule_task_add(server->schedule, sock->sock,
1706                          silc_server_failure_callback, (void *)f, 5, 0,
1707                          SILC_TASK_TIMEOUT, SILC_TASK_PRI_NORMAL);
1708     }
1709     break;
1710
1711   case SILC_PACKET_REJECT:
1712     SILC_LOG_DEBUG(("Reject packet"));
1713     if (packet->flags & SILC_PACKET_FLAG_LIST)
1714       break;
1715     return;
1716     break;
1717
1718   case SILC_PACKET_NOTIFY:
1719     /*
1720      * Received notify packet. Server can receive notify packets from
1721      * router. Server then relays the notify messages to clients if needed.
1722      */
1723     SILC_LOG_DEBUG(("Notify packet"));
1724     if (packet->flags & SILC_PACKET_FLAG_LIST)
1725       silc_server_notify_list(server, sock, packet);
1726     else
1727       silc_server_notify(server, sock, packet);
1728     break;
1729
1730     /* 
1731      * Channel packets
1732      */
1733   case SILC_PACKET_CHANNEL_MESSAGE:
1734     /*
1735      * Received channel message. Channel messages are special packets
1736      * (although probably most common ones) thus they are handled
1737      * specially.
1738      */
1739     SILC_LOG_DEBUG(("Channel Message packet"));
1740     if (packet->flags & SILC_PACKET_FLAG_LIST)
1741       break;
1742     silc_server_channel_message(server, sock, packet);
1743     break;
1744
1745   case SILC_PACKET_CHANNEL_KEY:
1746     /*
1747      * Received key for channel. As channels are created by the router
1748      * the keys are as well. We will distribute the key to all of our
1749      * locally connected clients on the particular channel. Router
1750      * never receives this channel and thus is ignored.
1751      */
1752     SILC_LOG_DEBUG(("Channel Key packet"));
1753     if (packet->flags & SILC_PACKET_FLAG_LIST)
1754       break;
1755     silc_server_channel_key(server, sock, packet);
1756     break;
1757
1758     /*
1759      * Command packets
1760      */
1761   case SILC_PACKET_COMMAND:
1762     /*
1763      * Recived command. Processes the command request and allocates the
1764      * command context and calls the command.
1765      */
1766     SILC_LOG_DEBUG(("Command packet"));
1767     if (packet->flags & SILC_PACKET_FLAG_LIST)
1768       break;
1769     silc_server_command_process(server, sock, packet);
1770     break;
1771
1772   case SILC_PACKET_COMMAND_REPLY:
1773     /*
1774      * Received command reply packet. Received command reply to command. It
1775      * may be reply to command sent by us or reply to command sent by client
1776      * that we've routed further.
1777      */
1778     SILC_LOG_DEBUG(("Command Reply packet"));
1779     if (packet->flags & SILC_PACKET_FLAG_LIST)
1780       break;
1781     silc_server_command_reply(server, sock, packet);
1782     break;
1783
1784     /*
1785      * Private Message packets
1786      */
1787   case SILC_PACKET_PRIVATE_MESSAGE:
1788     /*
1789      * Received private message packet. The packet is coming from either
1790      * client or server.
1791      */
1792     SILC_LOG_DEBUG(("Private Message packet"));
1793     if (packet->flags & SILC_PACKET_FLAG_LIST)
1794       break;
1795     silc_server_private_message(server, sock, packet);
1796     break;
1797
1798   case SILC_PACKET_PRIVATE_MESSAGE_KEY:
1799     /*
1800      * Private message key packet.
1801      */
1802     if (packet->flags & SILC_PACKET_FLAG_LIST)
1803       break;
1804     silc_server_private_message_key(server, sock, packet);
1805     break;
1806
1807     /*
1808      * Key Exchange protocol packets
1809      */
1810   case SILC_PACKET_KEY_EXCHANGE:
1811     SILC_LOG_DEBUG(("KE packet"));
1812     if (packet->flags & SILC_PACKET_FLAG_LIST)
1813       break;
1814
1815     if (sock->protocol && sock->protocol->protocol &&
1816         sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_KEY_EXCHANGE) {
1817
1818       SilcServerKEInternalContext *proto_ctx = 
1819         (SilcServerKEInternalContext *)sock->protocol->context;
1820
1821       proto_ctx->packet = silc_packet_context_dup(packet);
1822
1823       /* Let the protocol handle the packet */
1824       silc_protocol_execute(sock->protocol, server->schedule, 0, 100000);
1825     } else {
1826       SILC_LOG_ERROR(("Received Key Exchange packet but no key exchange "
1827                       "protocol active, packet dropped."));
1828     }
1829     break;
1830
1831   case SILC_PACKET_KEY_EXCHANGE_1:
1832     SILC_LOG_DEBUG(("KE 1 packet"));
1833     if (packet->flags & SILC_PACKET_FLAG_LIST)
1834       break;
1835
1836     if (sock->protocol && sock->protocol->protocol &&
1837         (sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_KEY_EXCHANGE ||
1838          sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY)) {
1839
1840       if (sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY) {
1841         SilcServerRekeyInternalContext *proto_ctx = 
1842           (SilcServerRekeyInternalContext *)sock->protocol->context;
1843         
1844         if (proto_ctx->packet)
1845           silc_packet_context_free(proto_ctx->packet);
1846         
1847         proto_ctx->packet = silc_packet_context_dup(packet);
1848
1849         /* Let the protocol handle the packet */
1850         silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
1851       } else {
1852         SilcServerKEInternalContext *proto_ctx = 
1853           (SilcServerKEInternalContext *)sock->protocol->context;
1854         
1855         if (proto_ctx->packet)
1856           silc_packet_context_free(proto_ctx->packet);
1857         
1858         proto_ctx->packet = silc_packet_context_dup(packet);
1859         proto_ctx->dest_id_type = packet->src_id_type;
1860         proto_ctx->dest_id = silc_id_str2id(packet->src_id, packet->src_id_len,
1861                                             packet->src_id_type);
1862         if (!proto_ctx->dest_id)
1863           break;
1864
1865         /* Let the protocol handle the packet */
1866         silc_protocol_execute(sock->protocol, server->schedule, 
1867                               0, 100000);
1868       }
1869     } else {
1870       SILC_LOG_ERROR(("Received Key Exchange 1 packet but no key exchange "
1871                       "protocol active, packet dropped."));
1872     }
1873     break;
1874
1875   case SILC_PACKET_KEY_EXCHANGE_2:
1876     SILC_LOG_DEBUG(("KE 2 packet"));
1877     if (packet->flags & SILC_PACKET_FLAG_LIST)
1878       break;
1879
1880     if (sock->protocol && sock->protocol->protocol &&
1881         (sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_KEY_EXCHANGE ||
1882          sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY)) {
1883
1884       if (sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY) {
1885         SilcServerRekeyInternalContext *proto_ctx = 
1886           (SilcServerRekeyInternalContext *)sock->protocol->context;
1887         
1888         if (proto_ctx->packet)
1889           silc_packet_context_free(proto_ctx->packet);
1890         
1891         proto_ctx->packet = silc_packet_context_dup(packet);
1892
1893         /* Let the protocol handle the packet */
1894         silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
1895       } else {
1896         SilcServerKEInternalContext *proto_ctx = 
1897           (SilcServerKEInternalContext *)sock->protocol->context;
1898         
1899         if (proto_ctx->packet)
1900           silc_packet_context_free(proto_ctx->packet);
1901         
1902         proto_ctx->packet = silc_packet_context_dup(packet);
1903         proto_ctx->dest_id_type = packet->src_id_type;
1904         proto_ctx->dest_id = silc_id_str2id(packet->src_id, packet->src_id_len,
1905                                             packet->src_id_type);
1906         if (!proto_ctx->dest_id)
1907           break;
1908
1909         /* Let the protocol handle the packet */
1910         silc_protocol_execute(sock->protocol, server->schedule, 
1911                               0, 100000);
1912       }
1913     } else {
1914       SILC_LOG_ERROR(("Received Key Exchange 2 packet but no key exchange "
1915                       "protocol active, packet dropped."));
1916     }
1917     break;
1918
1919   case SILC_PACKET_CONNECTION_AUTH_REQUEST:
1920     /*
1921      * Connection authentication request packet. When we receive this packet
1922      * we will send to the other end information about our mandatory
1923      * authentication method for the connection. This packet maybe received
1924      * at any time. 
1925      */
1926     SILC_LOG_DEBUG(("Connection authentication request packet"));
1927     if (packet->flags & SILC_PACKET_FLAG_LIST)
1928       break;
1929     silc_server_connection_auth_request(server, sock, packet);
1930     break;
1931
1932     /*
1933      * Connection Authentication protocol packets
1934      */
1935   case SILC_PACKET_CONNECTION_AUTH:
1936     /* Start of the authentication protocol. We receive here the 
1937        authentication data and will verify it. */
1938     SILC_LOG_DEBUG(("Connection auth packet"));
1939     if (packet->flags & SILC_PACKET_FLAG_LIST)
1940       break;
1941
1942     if (sock->protocol && sock->protocol->protocol->type 
1943         == SILC_PROTOCOL_SERVER_CONNECTION_AUTH) {
1944
1945       SilcServerConnAuthInternalContext *proto_ctx = 
1946         (SilcServerConnAuthInternalContext *)sock->protocol->context;
1947
1948       proto_ctx->packet = silc_packet_context_dup(packet);
1949
1950       /* Let the protocol handle the packet */
1951       silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
1952     } else {
1953       SILC_LOG_ERROR(("Received Connection Auth packet but no authentication "
1954                       "protocol active, packet dropped."));
1955     }
1956     break;
1957
1958   case SILC_PACKET_NEW_ID:
1959     /*
1960      * Received New ID packet. This includes some new ID that has been
1961      * created. It may be for client, server or channel. This is the way
1962      * to distribute information about new registered entities in the
1963      * SILC network.
1964      */
1965     SILC_LOG_DEBUG(("New ID packet"));
1966     if (packet->flags & SILC_PACKET_FLAG_LIST)
1967       silc_server_new_id_list(server, sock, packet);
1968     else
1969       silc_server_new_id(server, sock, packet);
1970     break;
1971
1972   case SILC_PACKET_NEW_CLIENT:
1973     /*
1974      * Received new client packet. This includes client information that
1975      * we will use to create initial client ID. After creating new
1976      * ID we will send it to the client.
1977      */
1978     SILC_LOG_DEBUG(("New Client packet"));
1979     if (packet->flags & SILC_PACKET_FLAG_LIST)
1980       break;
1981     silc_server_new_client(server, sock, packet);
1982     break;
1983
1984   case SILC_PACKET_NEW_SERVER:
1985     /*
1986      * Received new server packet. This includes Server ID and some other
1987      * information that we may save. This is received after server has 
1988      * connected to us.
1989      */
1990     SILC_LOG_DEBUG(("New Server packet"));
1991     if (packet->flags & SILC_PACKET_FLAG_LIST)
1992       break;
1993     silc_server_new_server(server, sock, packet);
1994     break;
1995
1996   case SILC_PACKET_NEW_CHANNEL:
1997     /*
1998      * Received new channel packet. Information about new channel in the
1999      * network are distributed using this packet.
2000      */
2001     SILC_LOG_DEBUG(("New Channel packet"));
2002     if (packet->flags & SILC_PACKET_FLAG_LIST)
2003       silc_server_new_channel_list(server, sock, packet);
2004     else
2005       silc_server_new_channel(server, sock, packet);
2006     break;
2007
2008   case SILC_PACKET_HEARTBEAT:
2009     /*
2010      * Received heartbeat.
2011      */
2012     SILC_LOG_DEBUG(("Heartbeat packet"));
2013     if (packet->flags & SILC_PACKET_FLAG_LIST)
2014       break;
2015     break;
2016
2017   case SILC_PACKET_KEY_AGREEMENT:
2018     /*
2019      * Received heartbeat.
2020      */
2021     SILC_LOG_DEBUG(("Key agreement packet"));
2022     if (packet->flags & SILC_PACKET_FLAG_LIST)
2023       break;
2024     silc_server_key_agreement(server, sock, packet);
2025     break;
2026
2027   case SILC_PACKET_REKEY:
2028     /*
2029      * Received re-key packet. The sender wants to regenerate the session
2030      * keys.
2031      */
2032     SILC_LOG_DEBUG(("Re-key packet"));
2033     if (packet->flags & SILC_PACKET_FLAG_LIST)
2034       break;
2035     silc_server_rekey(server, sock, packet);
2036     break;
2037
2038   case SILC_PACKET_REKEY_DONE:
2039     /*
2040      * The re-key is done.
2041      */
2042     SILC_LOG_DEBUG(("Re-key done packet"));
2043     if (packet->flags & SILC_PACKET_FLAG_LIST)
2044       break;
2045
2046     if (sock->protocol && sock->protocol->protocol &&
2047         sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY) {
2048
2049       SilcServerRekeyInternalContext *proto_ctx = 
2050         (SilcServerRekeyInternalContext *)sock->protocol->context;
2051
2052       if (proto_ctx->packet)
2053         silc_packet_context_free(proto_ctx->packet);
2054
2055       proto_ctx->packet = silc_packet_context_dup(packet);
2056
2057       /* Let the protocol handle the packet */
2058       silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
2059     } else {
2060       SILC_LOG_ERROR(("Received Re-key done packet but no re-key "
2061                       "protocol active, packet dropped."));
2062     }
2063     break;
2064
2065   default:
2066     SILC_LOG_ERROR(("Incorrect packet type %d, packet dropped", type));
2067     break;
2068   }
2069   
2070 }
2071
2072 /* Creates connection to a remote router. */
2073
2074 void silc_server_create_connection(SilcServer server,
2075                                    char *remote_host, uint32 port)
2076 {
2077   SilcServerConnection sconn;
2078
2079   /* Allocate connection object for hold connection specific stuff. */
2080   sconn = silc_calloc(1, sizeof(*sconn));
2081   sconn->server = server;
2082   sconn->remote_host = strdup(remote_host);
2083   sconn->remote_port = port;
2084
2085   silc_schedule_task_add(server->schedule, 0, 
2086                      silc_server_connect_router,
2087                      (void *)sconn, 0, 1, SILC_TASK_TIMEOUT, 
2088                      SILC_TASK_PRI_NORMAL);
2089 }
2090
2091 SILC_TASK_CALLBACK(silc_server_close_connection_final)
2092 {
2093   silc_socket_free((SilcSocketConnection)context);
2094 }
2095
2096 /* Closes connection to socket connection */
2097
2098 void silc_server_close_connection(SilcServer server,
2099                                   SilcSocketConnection sock)
2100 {
2101   SILC_LOG_INFO(("Closing connection %s:%d [%s] (%d)", sock->hostname,
2102                  sock->port,  
2103                  (sock->type == SILC_SOCKET_TYPE_UNKNOWN ? "Unknown" :
2104                   sock->type == SILC_SOCKET_TYPE_CLIENT ? "Client" :
2105                   sock->type == SILC_SOCKET_TYPE_SERVER ? "Server" :
2106                   "Router"), sock->sock));
2107
2108   /* We won't listen for this connection anymore */
2109   silc_schedule_unset_listen_fd(server->schedule, sock->sock);
2110
2111   /* Unregister all tasks */
2112   silc_schedule_task_del_by_fd(server->schedule, sock->sock);
2113   silc_schedule_task_del_by_fd(server->schedule, sock->sock);
2114
2115   /* Close the actual connection */
2116   silc_net_close_connection(sock->sock);
2117   server->sockets[sock->sock] = NULL;
2118
2119   silc_schedule_task_add(server->schedule, 0, 
2120                      silc_server_close_connection_final,
2121                      (void *)sock, 0, 1, SILC_TASK_TIMEOUT, 
2122                      SILC_TASK_PRI_NORMAL);
2123 }
2124
2125 /* Sends disconnect message to remote connection and disconnects the 
2126    connection. */
2127
2128 void silc_server_disconnect_remote(SilcServer server,
2129                                    SilcSocketConnection sock,
2130                                    const char *fmt, ...)
2131 {
2132   va_list ap;
2133   unsigned char buf[4096];
2134
2135   if (!sock)
2136     return;
2137
2138   memset(buf, 0, sizeof(buf));
2139   va_start(ap, fmt);
2140   vsprintf(buf, fmt, ap);
2141   va_end(ap);
2142
2143   SILC_LOG_DEBUG(("Disconnecting remote host"));
2144
2145   SILC_LOG_INFO(("Disconnecting %s:%d [%s]", sock->hostname,
2146                   sock->port,
2147                   (sock->type == SILC_SOCKET_TYPE_UNKNOWN ? "Unknown" :
2148                    sock->type == SILC_SOCKET_TYPE_CLIENT ? "Client" :
2149                    sock->type == SILC_SOCKET_TYPE_SERVER ? "Server" :
2150                    "Router")));
2151
2152   /* Notify remote end that the conversation is over. The notify message
2153      is tried to be sent immediately. */
2154   silc_server_packet_send(server, sock, SILC_PACKET_DISCONNECT, 0,  
2155                           buf, strlen(buf), TRUE);
2156
2157   /* Mark the connection to be disconnected */
2158   SILC_SET_DISCONNECTED(sock);
2159   silc_server_close_connection(server, sock);
2160 }
2161
2162 typedef struct {
2163   SilcServer server;
2164   SilcClientEntry client;
2165 } *FreeClientInternal;
2166
2167 SILC_TASK_CALLBACK(silc_server_free_client_data_timeout)
2168 {
2169   FreeClientInternal i = (FreeClientInternal)context;
2170
2171   silc_idlist_del_data(i->client);
2172   silc_idcache_purge_by_context(i->server->local_list->clients, i->client);
2173   silc_free(i);
2174 }
2175
2176 /* Frees client data and notifies about client's signoff. */
2177
2178 void silc_server_free_client_data(SilcServer server, 
2179                                   SilcSocketConnection sock,
2180                                   SilcClientEntry client, 
2181                                   int notify,
2182                                   char *signoff)
2183 {
2184   FreeClientInternal i = silc_calloc(1, sizeof(*i));
2185
2186   /* If there is pending outgoing data for the client then purge it
2187      to the network before removing the client entry. */
2188   if (sock && SILC_IS_OUTBUF_PENDING(sock) && 
2189       (SILC_IS_DISCONNECTED(sock) == FALSE)) {
2190     server->stat.packets_sent++;
2191
2192     if (sock->outbuf->data - sock->outbuf->head)
2193      silc_buffer_push(sock->outbuf, sock->outbuf->data - sock->outbuf->head);
2194
2195     silc_packet_send(sock, TRUE);
2196
2197     SILC_SET_CONNECTION_FOR_INPUT(server->schedule, sock->sock);
2198     SILC_UNSET_OUTBUF_PENDING(sock);
2199     silc_buffer_clear(sock->outbuf);
2200   }
2201
2202   /* Send SIGNOFF notify to routers. */
2203   if (notify && !server->standalone && server->router)
2204     silc_server_send_notify_signoff(server, server->router->connection,
2205                                     server->server_type == SILC_SERVER ?
2206                                     FALSE : TRUE, client->id, signoff);
2207
2208   /* Remove client from all channels */
2209   if (notify)
2210     silc_server_remove_from_channels(server, NULL, client, 
2211                                      TRUE, signoff, TRUE);
2212   else
2213     silc_server_remove_from_channels(server, NULL, client, 
2214                                      FALSE, NULL, FALSE);
2215
2216   /* We will not delete the client entry right away. We will take it
2217      into history (for WHOWAS command) for 5 minutes */
2218   i->server = server;
2219   i->client = client;
2220   silc_schedule_task_add(server->schedule, 0, 
2221                      silc_server_free_client_data_timeout,
2222                      (void *)i, 300, 0,
2223                      SILC_TASK_TIMEOUT, SILC_TASK_PRI_LOW);
2224   client->data.registered = FALSE;
2225
2226   /* Free the client entry and everything in it */
2227   server->stat.my_clients--;
2228   server->stat.clients--;
2229   if (server->server_type == SILC_ROUTER)
2230     server->stat.cell_clients--;
2231 }
2232
2233 /* Frees user_data pointer from socket connection object. This also sends
2234    appropriate notify packets to the network to inform about leaving
2235    entities. */
2236
2237 void silc_server_free_sock_user_data(SilcServer server, 
2238                                      SilcSocketConnection sock)
2239 {
2240   SILC_LOG_DEBUG(("Start"));
2241
2242   switch(sock->type) {
2243   case SILC_SOCKET_TYPE_CLIENT:
2244     {
2245       SilcClientEntry user_data = (SilcClientEntry)sock->user_data;
2246       silc_server_free_client_data(server, sock, user_data, TRUE, NULL);
2247       break;
2248     }
2249   case SILC_SOCKET_TYPE_SERVER:
2250   case SILC_SOCKET_TYPE_ROUTER:
2251     {
2252       SilcServerEntry user_data = (SilcServerEntry)sock->user_data;
2253
2254       /* Free all client entries that this server owns as they will
2255          become invalid now as well. */
2256       if (user_data->id)
2257         silc_server_remove_clients_by_server(server, user_data, TRUE);
2258
2259       /* If this was our primary router connection then we're lost to
2260          the outside world. */
2261       if (server->router == user_data) {
2262         server->id_entry->router = NULL;
2263         server->router = NULL;
2264         server->standalone = TRUE;
2265       }
2266
2267       /* Free the server entry */
2268       silc_idlist_del_data(user_data);
2269       silc_idlist_del_server(server->local_list, user_data);
2270       server->stat.my_servers--;
2271       server->stat.servers--;
2272       if (server->server_type == SILC_ROUTER)
2273         server->stat.cell_servers--;
2274       break;
2275     }
2276   default:
2277     {
2278       SilcUnknownEntry user_data = (SilcUnknownEntry)sock->user_data;
2279
2280       silc_idlist_del_data(user_data);
2281       silc_free(user_data);
2282       break;
2283     }
2284   }
2285
2286   /* If any protocol is active cancel its execution */
2287   if (sock->protocol) {
2288     silc_protocol_cancel(sock->protocol, server->schedule);
2289     sock->protocol->state = SILC_PROTOCOL_STATE_ERROR;
2290     silc_protocol_execute_final(sock->protocol, server->schedule);
2291     sock->protocol = NULL;
2292   }
2293
2294   sock->user_data = NULL;
2295 }
2296
2297 /* Removes the client from channels and possibly removes the channels
2298    as well.  After removing those channels that exist, their channel
2299    keys are regnerated. This is called only by the function
2300    silc_server_remove_clients_by_server. */
2301
2302 static void silc_server_remove_clients_channels(SilcServer server, 
2303                                                 SilcSocketConnection sock,
2304                                                 SilcClientEntry client,
2305                                                 SilcHashTable channels)
2306 {
2307   SilcChannelEntry channel;
2308   SilcChannelClientEntry chl;
2309   SilcHashTableList htl;
2310   SilcBuffer clidp;
2311
2312   SILC_LOG_DEBUG(("Start"));
2313
2314   if (!client || !client->id)
2315     return;
2316
2317   clidp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
2318
2319   /* Remove the client from all channels. The client is removed from
2320      the channels' user list. */
2321   silc_hash_table_list(client->channels, &htl);
2322   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
2323     channel = chl->channel;
2324
2325     /* Remove channel from client's channel list */
2326     silc_hash_table_del(client->channels, channel);
2327
2328     /* Remove channel if there is no users anymore */
2329     if (server->server_type == SILC_ROUTER &&
2330         silc_hash_table_count(channel->user_list) < 2) {
2331
2332       if (silc_hash_table_find(channels, channel, NULL, NULL))
2333         silc_hash_table_del(channels, channel);
2334
2335       if (channel->rekey)
2336         silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2337
2338       if (!silc_idlist_del_channel(server->local_list, channel))
2339         silc_idlist_del_channel(server->global_list, channel);
2340       server->stat.my_channels--;
2341       continue;
2342     }
2343
2344     /* Remove client from channel's client list */
2345     silc_hash_table_del(channel->user_list, chl->client);
2346     silc_free(chl);
2347     server->stat.my_chanclients--;
2348
2349     /* If there is no global users on the channel anymore mark the channel
2350        as local channel. Do not check if the removed client is local client. */
2351     if (server->server_type == SILC_SERVER && channel->global_users && 
2352         chl->client->router && !silc_server_channel_has_global(channel))
2353       channel->global_users = FALSE;
2354
2355     /* If there is not at least one local user on the channel then we don't
2356        need the channel entry anymore, we can remove it safely. */
2357     if (server->server_type == SILC_SERVER &&
2358         !silc_server_channel_has_local(channel)) {
2359
2360       if (silc_hash_table_find(channels, channel, NULL, NULL))
2361         silc_hash_table_del(channels, channel);
2362
2363       if (channel->rekey)
2364         silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2365
2366       if (channel->founder_key) {
2367         /* The founder auth data exists, do not remove the channel entry */
2368         SilcChannelClientEntry chl2;
2369         SilcHashTableList htl2;
2370
2371         channel->id = NULL;
2372
2373         silc_hash_table_list(channel->user_list, &htl2);
2374         while (silc_hash_table_get(&htl2, NULL, (void *)&chl2)) {
2375           silc_hash_table_del(chl2->client->channels, channel);
2376           silc_hash_table_del(channel->user_list, chl2->client);
2377           silc_free(chl2);
2378         }
2379         continue;
2380       }
2381
2382       /* Remove the channel entry */
2383       if (!silc_idlist_del_channel(server->local_list, channel))
2384         silc_idlist_del_channel(server->global_list, channel);
2385       server->stat.my_channels--;
2386       continue;
2387     }
2388
2389     /* Add the channel to the the channels list to regenerate the 
2390        channel key */
2391     if (!silc_hash_table_find(channels, channel, NULL, NULL))
2392       silc_hash_table_add(channels, channel, channel);
2393   }
2394
2395   silc_buffer_free(clidp);
2396 }
2397
2398 /* This function is used to remove all client entries by the server `entry'.
2399    This is called when the connection is lost to the server. In this case
2400    we must invalidate all the client entries owned by the server `entry'. 
2401    If the `server_signoff' is TRUE then the SERVER_SIGNOFF notify is
2402    distributed to our local clients. */
2403
2404 int silc_server_remove_clients_by_server(SilcServer server, 
2405                                          SilcServerEntry entry,
2406                                          int server_signoff)
2407 {
2408   SilcIDCacheList list = NULL;
2409   SilcIDCacheEntry id_cache = NULL;
2410   SilcClientEntry client = NULL;
2411   SilcBuffer idp;
2412   SilcClientEntry *clients = NULL;
2413   uint32 clients_c = 0;
2414   unsigned char **argv = NULL;
2415   uint32 *argv_lens = NULL, *argv_types = NULL, argc = 0;
2416   SilcHashTableList htl;
2417   SilcChannelEntry channel;
2418   SilcHashTable channels;
2419   int i;
2420
2421   SILC_LOG_DEBUG(("Start"));
2422
2423   /* Allocate the hash table that holds the channels that require
2424      channel key re-generation after we've removed this server's clients
2425      from the channels. */
2426   channels = silc_hash_table_alloc(0, silc_hash_ptr, NULL, NULL, NULL,
2427                                    NULL, NULL, TRUE);
2428
2429   if (server_signoff) {
2430     idp = silc_id_payload_encode(entry->id, SILC_ID_SERVER);
2431     argv = silc_realloc(argv, sizeof(*argv) * (argc + 1));
2432     argv_lens = silc_realloc(argv_lens,  sizeof(*argv_lens) * (argc + 1));
2433     argv_types = silc_realloc(argv_types, sizeof(*argv_types) * (argc + 1));
2434     argv[argc] = silc_calloc(idp->len, sizeof(*argv[0]));
2435     memcpy(argv[argc], idp->data, idp->len);
2436     argv_lens[argc] = idp->len;
2437     argv_types[argc] = argc + 1;
2438     argc++;
2439     silc_buffer_free(idp);
2440   }
2441
2442   if (silc_idcache_get_all(server->local_list->clients, &list)) {
2443
2444     if (silc_idcache_list_first(list, &id_cache)) {
2445       while (id_cache) {
2446         client = (SilcClientEntry)id_cache->context;
2447         if (client->data.registered == FALSE) {
2448           if (!silc_idcache_list_next(list, &id_cache))
2449             break;
2450           else
2451             continue;
2452         }
2453
2454         if (client->router != entry) {
2455           if (server_signoff && client->connection) {
2456             clients = silc_realloc(clients, 
2457                                    sizeof(*clients) * (clients_c + 1));
2458             clients[clients_c] = client;
2459             clients_c++;
2460           }
2461
2462           if (!silc_idcache_list_next(list, &id_cache))
2463             break;
2464           else
2465             continue;
2466         }
2467
2468         if (server_signoff) {
2469           idp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
2470           argv = silc_realloc(argv, sizeof(*argv) * (argc + 1));
2471           argv_lens = silc_realloc(argv_lens, sizeof(*argv_lens) *
2472                                    (argc + 1));
2473           argv_types = silc_realloc(argv_types, sizeof(*argv_types) *
2474                                     (argc + 1));
2475           argv[argc] = silc_calloc(idp->len, sizeof(*argv[0]));
2476           memcpy(argv[argc], idp->data, idp->len);
2477           argv_lens[argc] = idp->len;
2478           argv_types[argc] = argc + 1;
2479           argc++;
2480           silc_buffer_free(idp);
2481         }
2482
2483         /* Remove the client entry */
2484         silc_server_remove_clients_channels(server, NULL, client, channels);
2485         silc_idlist_del_client(server->local_list, client);
2486
2487         if (!silc_idcache_list_next(list, &id_cache))
2488           break;
2489       }
2490     }
2491     silc_idcache_list_free(list);
2492   }
2493   
2494   if (silc_idcache_get_all(server->global_list->clients, &list)) {
2495
2496     if (silc_idcache_list_first(list, &id_cache)) {
2497       while (id_cache) {
2498         client = (SilcClientEntry)id_cache->context;
2499         if (client->data.registered == FALSE) {
2500           if (!silc_idcache_list_next(list, &id_cache))
2501             break;
2502           else
2503             continue;
2504         }
2505         
2506         if (client->router != entry) {
2507           if (server_signoff && client->connection) {
2508             clients = silc_realloc(clients, 
2509                                    sizeof(*clients) * (clients_c + 1));
2510             clients[clients_c] = client;
2511             clients_c++;
2512           }
2513
2514           if (!silc_idcache_list_next(list, &id_cache))
2515             break;
2516           else
2517             continue;
2518         }
2519
2520         if (server_signoff) {
2521           idp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
2522           argv = silc_realloc(argv, sizeof(*argv) * (argc + 1));
2523           argv_lens = silc_realloc(argv_lens, sizeof(*argv_lens) *
2524                                    (argc + 1));
2525           argv_types = silc_realloc(argv_types, sizeof(*argv_types) *
2526                                     (argc + 1));
2527           argv[argc] = silc_calloc(idp->len, sizeof(*argv[0]));
2528           memcpy(argv[argc], idp->data, idp->len);
2529           argv_lens[argc] = idp->len;
2530           argv_types[argc] = argc + 1;
2531           argc++;
2532           silc_buffer_free(idp);
2533         }
2534
2535         /* Remove the client entry */
2536         silc_server_remove_clients_channels(server, NULL, client, channels);
2537         silc_idlist_del_client(server->global_list, client);
2538
2539         if (!silc_idcache_list_next(list, &id_cache))
2540           break;
2541       }
2542     }
2543     silc_idcache_list_free(list);
2544   }
2545
2546   /* Send the SERVER_SIGNOFF notify */
2547   if (server_signoff) {
2548     SilcBuffer args;
2549
2550     /* Send SERVER_SIGNOFF notify to our primary router */
2551     if (!server->standalone && server->router &&
2552         server->router != entry) {
2553       args = silc_argument_payload_encode(1, argv, argv_lens,
2554                                           argv_types);
2555       silc_server_send_notify_args(server, 
2556                                    server->router->connection,
2557                                    server->server_type == SILC_SERVER ? 
2558                                    FALSE : TRUE, 
2559                                    SILC_NOTIFY_TYPE_SERVER_SIGNOFF,
2560                                    argc, args);
2561       silc_buffer_free(args);
2562     }
2563
2564     args = silc_argument_payload_encode(argc, argv, argv_lens,
2565                                         argv_types);
2566     /* Send to local clients */
2567     for (i = 0; i < clients_c; i++) {
2568       silc_server_send_notify_args(server, clients[i]->connection,
2569                                    FALSE, SILC_NOTIFY_TYPE_SERVER_SIGNOFF,
2570                                    argc, args);
2571     }
2572
2573     silc_free(clients);
2574     silc_buffer_free(args);
2575     for (i = 0; i < argc; i++)
2576       silc_free(argv[i]);
2577     silc_free(argv);
2578     silc_free(argv_lens);
2579     silc_free(argv_types);
2580   }
2581
2582   /* We must now re-generate the channel key for all channels that had
2583      this server's client(s) on the channel. As they left the channel we
2584      must re-generate the channel key. */
2585   silc_hash_table_list(channels, &htl);
2586   while (silc_hash_table_get(&htl, NULL, (void *)&channel)) {
2587     silc_server_create_channel_key(server, channel, 0);
2588     silc_server_send_channel_key(server, NULL, channel, 
2589                                  server->server_type == SILC_ROUTER ? 
2590                                  FALSE : !server->standalone);
2591   }
2592   silc_hash_table_free(channels);
2593
2594   return TRUE;
2595 }
2596
2597 /* Checks whether given channel has global users.  If it does this returns
2598    TRUE and FALSE if there is only locally connected clients on the channel. */
2599
2600 int silc_server_channel_has_global(SilcChannelEntry channel)
2601 {
2602   SilcChannelClientEntry chl;
2603   SilcHashTableList htl;
2604
2605   silc_hash_table_list(channel->user_list, &htl);
2606   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
2607     if (chl->client->router)
2608       return TRUE;
2609   }
2610
2611   return FALSE;
2612 }
2613
2614 /* Checks whether given channel has locally connected users.  If it does this
2615    returns TRUE and FALSE if there is not one locally connected client. */
2616
2617 int silc_server_channel_has_local(SilcChannelEntry channel)
2618 {
2619   SilcChannelClientEntry chl;
2620   SilcHashTableList htl;
2621
2622   silc_hash_table_list(channel->user_list, &htl);
2623   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
2624     if (!chl->client->router)
2625       return TRUE;
2626   }
2627
2628   return FALSE;
2629 }
2630
2631 /* Removes client from all channels it has joined. This is used when client
2632    connection is disconnected. If the client on a channel is last, the
2633    channel is removed as well. This sends the SIGNOFF notify types. */
2634
2635 void silc_server_remove_from_channels(SilcServer server, 
2636                                       SilcSocketConnection sock,
2637                                       SilcClientEntry client,
2638                                       int notify,
2639                                       char *signoff_message,
2640                                       int keygen)
2641 {
2642   SilcChannelEntry channel;
2643   SilcChannelClientEntry chl;
2644   SilcHashTableList htl;
2645   SilcBuffer clidp;
2646
2647   SILC_LOG_DEBUG(("Start"));
2648
2649   if (!client || !client->id)
2650     return;
2651
2652   clidp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
2653
2654   /* Remove the client from all channels. The client is removed from
2655      the channels' user list. */
2656   silc_hash_table_list(client->channels, &htl);
2657   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
2658     channel = chl->channel;
2659
2660     /* Remove channel from client's channel list */
2661     silc_hash_table_del(client->channels, channel);
2662
2663     /* Remove channel if there is no users anymore */
2664     if (server->server_type == SILC_ROUTER &&
2665         silc_hash_table_count(channel->user_list) < 2) {
2666       if (channel->rekey)
2667         silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2668       if (!silc_idlist_del_channel(server->local_list, channel))
2669         silc_idlist_del_channel(server->global_list, channel);
2670       server->stat.my_channels--;
2671       continue;
2672     }
2673
2674     /* Remove client from channel's client list */
2675     silc_hash_table_del(channel->user_list, chl->client);
2676     silc_free(chl);
2677     server->stat.my_chanclients--;
2678
2679     /* If there is no global users on the channel anymore mark the channel
2680        as local channel. Do not check if the removed client is local client. */
2681     if (server->server_type == SILC_SERVER && channel->global_users && 
2682         chl->client->router && !silc_server_channel_has_global(channel))
2683       channel->global_users = FALSE;
2684
2685     /* If there is not at least one local user on the channel then we don't
2686        need the channel entry anymore, we can remove it safely. */
2687     if (server->server_type == SILC_SERVER &&
2688         !silc_server_channel_has_local(channel)) {
2689       /* Notify about leaving client if this channel has global users. */
2690       if (notify && channel->global_users)
2691         silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
2692                                            SILC_NOTIFY_TYPE_SIGNOFF, 
2693                                            signoff_message ? 2 : 1,
2694                                            clidp->data, clidp->len,
2695                                            signoff_message, signoff_message ?
2696                                            strlen(signoff_message) : 0);
2697
2698       if (channel->rekey)
2699         silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2700
2701       if (channel->founder_key) {
2702         /* The founder auth data exists, do not remove the channel entry */
2703         SilcChannelClientEntry chl2;
2704         SilcHashTableList htl2;
2705
2706         channel->id = NULL;
2707
2708         silc_hash_table_list(channel->user_list, &htl2);
2709         while (silc_hash_table_get(&htl2, NULL, (void *)&chl2)) {
2710           silc_hash_table_del(chl2->client->channels, channel);
2711           silc_hash_table_del(channel->user_list, chl2->client);
2712           silc_free(chl2);
2713         }
2714         continue;
2715       }
2716
2717       /* Remove the channel entry */
2718       if (!silc_idlist_del_channel(server->local_list, channel))
2719         silc_idlist_del_channel(server->global_list, channel);
2720       server->stat.my_channels--;
2721       continue;
2722     }
2723
2724     /* Send notify to channel about client leaving SILC and thus
2725        the entire channel. */
2726     if (notify)
2727       silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
2728                                          SILC_NOTIFY_TYPE_SIGNOFF, 
2729                                          signoff_message ? 2 : 1,
2730                                          clidp->data, clidp->len,
2731                                          signoff_message, signoff_message ?
2732                                          strlen(signoff_message) : 0);
2733
2734     if (keygen && !(channel->mode & SILC_CHANNEL_MODE_PRIVKEY)) {
2735       /* Re-generate channel key */
2736       silc_server_create_channel_key(server, channel, 0);
2737       
2738       /* Send the channel key to the channel. The key of course is not sent
2739          to the client who was removed from the channel. */
2740       silc_server_send_channel_key(server, client->connection, channel, 
2741                                    server->server_type == SILC_ROUTER ? 
2742                                    FALSE : !server->standalone);
2743     }
2744   }
2745
2746   silc_buffer_free(clidp);
2747 }
2748
2749 /* Removes client from one channel. This is used for example when client
2750    calls LEAVE command to remove itself from the channel. Returns TRUE
2751    if channel still exists and FALSE if the channel is removed when
2752    last client leaves the channel. If `notify' is FALSE notify messages
2753    are not sent. */
2754
2755 int silc_server_remove_from_one_channel(SilcServer server, 
2756                                         SilcSocketConnection sock,
2757                                         SilcChannelEntry channel,
2758                                         SilcClientEntry client,
2759                                         int notify)
2760 {
2761   SilcChannelClientEntry chl;
2762   SilcBuffer clidp;
2763
2764   SILC_LOG_DEBUG(("Start"));
2765
2766   /* Get the entry to the channel, if this client is not on the channel
2767      then return Ok. */
2768   if (!silc_hash_table_find(client->channels, channel, NULL, (void *)&chl))
2769     return TRUE;
2770
2771   /* Remove the client from the channel. The client is removed from
2772      the channel's user list. */
2773
2774   clidp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
2775
2776   /* Remove channel from client's channel list */
2777   silc_hash_table_del(client->channels, chl->channel);
2778
2779   /* Remove channel if there is no users anymore */
2780   if (server->server_type == SILC_ROUTER &&
2781       silc_hash_table_count(channel->user_list) < 2) {
2782     if (channel->rekey)
2783       silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2784     if (!silc_idlist_del_channel(server->local_list, channel))
2785       silc_idlist_del_channel(server->global_list, channel);
2786     silc_buffer_free(clidp);
2787     server->stat.my_channels--;
2788     return FALSE;
2789   }
2790
2791   /* Remove client from channel's client list */
2792   silc_hash_table_del(channel->user_list, chl->client);
2793   silc_free(chl);
2794   server->stat.my_chanclients--;
2795   
2796   /* If there is no global users on the channel anymore mark the channel
2797      as local channel. Do not check if the client is local client. */
2798   if (server->server_type == SILC_SERVER && channel->global_users &&
2799       chl->client->router && !silc_server_channel_has_global(channel))
2800     channel->global_users = FALSE;
2801
2802   /* If there is not at least one local user on the channel then we don't
2803      need the channel entry anymore, we can remove it safely. */
2804   if (server->server_type == SILC_SERVER &&
2805       !silc_server_channel_has_local(channel)) {
2806     /* Notify about leaving client if this channel has global users. */
2807     if (notify && channel->global_users)
2808       silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
2809                                          SILC_NOTIFY_TYPE_LEAVE, 1,
2810                                          clidp->data, clidp->len);
2811     
2812     silc_buffer_free(clidp);
2813     
2814     if (channel->rekey)
2815       silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2816
2817     if (channel->founder_key) {
2818       /* The founder auth data exists, do not remove the channel entry */
2819       SilcChannelClientEntry chl2;
2820       SilcHashTableList htl2;
2821       
2822       channel->id = NULL;
2823       
2824       silc_hash_table_list(channel->user_list, &htl2);
2825       while (silc_hash_table_get(&htl2, NULL, (void *)&chl2)) {
2826         silc_hash_table_del(chl2->client->channels, channel);
2827         silc_hash_table_del(channel->user_list, chl2->client);
2828         silc_free(chl2);
2829       }
2830       return FALSE;
2831     }
2832
2833     /* Remove the channel entry */
2834     if (!silc_idlist_del_channel(server->local_list, channel))
2835       silc_idlist_del_channel(server->global_list, channel);
2836     server->stat.my_channels--;
2837     return FALSE;
2838   }
2839
2840   /* Send notify to channel about client leaving the channel */
2841   if (notify)
2842     silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
2843                                        SILC_NOTIFY_TYPE_LEAVE, 1,
2844                                        clidp->data, clidp->len);
2845
2846   silc_buffer_free(clidp);
2847   return TRUE;
2848 }
2849
2850 /* Returns TRUE if the given client is on the channel.  FALSE if not. 
2851    This works because we assure that the user list on the channel is
2852    always in up to date thus we can only check the channel list from 
2853    `client' which is faster than checking the user list from `channel'. */
2854
2855 int silc_server_client_on_channel(SilcClientEntry client,
2856                                   SilcChannelEntry channel)
2857 {
2858   if (!client || !channel)
2859     return FALSE;
2860
2861   if (silc_hash_table_find(client->channels, channel, NULL, NULL))
2862     return TRUE;
2863
2864   return FALSE;
2865 }
2866
2867 /* Timeout callback. This is called if connection is idle or for some
2868    other reason is not responding within some period of time. This 
2869    disconnects the remote end. */
2870
2871 SILC_TASK_CALLBACK(silc_server_timeout_remote)
2872 {
2873   SilcServer server = (SilcServer)context;
2874   SilcSocketConnection sock = server->sockets[fd];
2875
2876   SILC_LOG_DEBUG(("Start"));
2877
2878   if (!sock)
2879     return;
2880
2881   /* If we have protocol active we must assure that we call the protocol's
2882      final callback so that all the memory is freed. */
2883   if (sock->protocol) {
2884     sock->protocol->state = SILC_PROTOCOL_STATE_ERROR;
2885     silc_protocol_execute_final(sock->protocol, server->schedule);
2886     return;
2887   }
2888
2889   if (sock->user_data)
2890     silc_server_free_sock_user_data(server, sock);
2891
2892   silc_server_disconnect_remote(server, sock, "Server closed connection: "
2893                                 "Connection timeout");
2894 }
2895
2896 /* Creates new channel. Sends NEW_CHANNEL packet to primary route. This
2897    function may be used only by router. In real SILC network all channels
2898    are created by routers thus this function is never used by normal
2899    server. */
2900
2901 SilcChannelEntry silc_server_create_new_channel(SilcServer server, 
2902                                                 SilcServerID *router_id,
2903                                                 char *cipher, 
2904                                                 char *hmac,
2905                                                 char *channel_name,
2906                                                 int broadcast)
2907 {
2908   SilcChannelID *channel_id;
2909   SilcChannelEntry entry;
2910   SilcCipher key;
2911   SilcHmac newhmac;
2912
2913   SILC_LOG_DEBUG(("Creating new channel"));
2914
2915   if (!cipher)
2916     cipher = "aes-256-cbc";
2917   if (!hmac)
2918     hmac = "hmac-sha1-96";
2919
2920   /* Allocate cipher */
2921   if (!silc_cipher_alloc(cipher, &key))
2922     return NULL;
2923
2924   /* Allocate hmac */
2925   if (!silc_hmac_alloc(hmac, NULL, &newhmac)) {
2926     silc_cipher_free(key);
2927     return NULL;
2928   }
2929
2930   channel_name = strdup(channel_name);
2931
2932   /* Create the channel */
2933   silc_id_create_channel_id(router_id, server->rng, &channel_id);
2934   entry = silc_idlist_add_channel(server->local_list, channel_name, 
2935                                   SILC_CHANNEL_MODE_NONE, channel_id, 
2936                                   NULL, key, newhmac);
2937   if (!entry) {
2938     silc_free(channel_name);
2939     silc_cipher_free(key);
2940     silc_hmac_free(newhmac);
2941     return NULL;
2942   }
2943
2944   entry->cipher = strdup(cipher);
2945   entry->hmac_name = strdup(hmac);
2946
2947   /* Now create the actual key material */
2948   silc_server_create_channel_key(server, entry, 
2949                                  silc_cipher_get_key_len(key) / 8);
2950
2951   /* Notify other routers about the new channel. We send the packet
2952      to our primary route. */
2953   if (broadcast && server->standalone == FALSE)
2954     silc_server_send_new_channel(server, server->router->connection, TRUE, 
2955                                  channel_name, entry->id, 
2956                                  silc_id_get_len(entry->id, SILC_ID_CHANNEL),
2957                                  entry->mode);
2958
2959   server->stat.my_channels++;
2960
2961   return entry;
2962 }
2963
2964 /* Same as above but creates the channel with Channel ID `channel_id. */
2965
2966 SilcChannelEntry 
2967 silc_server_create_new_channel_with_id(SilcServer server, 
2968                                        char *cipher, 
2969                                        char *hmac,
2970                                        char *channel_name,
2971                                        SilcChannelID *channel_id,
2972                                        int broadcast)
2973 {
2974   SilcChannelEntry entry;
2975   SilcCipher key;
2976   SilcHmac newhmac;
2977
2978   SILC_LOG_DEBUG(("Creating new channel"));
2979
2980   if (!cipher)
2981     cipher = "aes-256-cbc";
2982   if (!hmac)
2983     hmac = "hmac-sha1-96";
2984
2985   /* Allocate cipher */
2986   if (!silc_cipher_alloc(cipher, &key))
2987     return NULL;
2988
2989   /* Allocate hmac */
2990   if (!silc_hmac_alloc(hmac, NULL, &newhmac)) {
2991     silc_cipher_free(key);
2992     return NULL;
2993   }
2994
2995   channel_name = strdup(channel_name);
2996
2997   /* Create the channel */
2998   entry = silc_idlist_add_channel(server->local_list, channel_name, 
2999                                   SILC_CHANNEL_MODE_NONE, channel_id, 
3000                                   NULL, key, newhmac);
3001   if (!entry) {
3002     silc_free(channel_name);
3003     return NULL;
3004   }
3005
3006   /* Now create the actual key material */
3007   silc_server_create_channel_key(server, entry, 
3008                                  silc_cipher_get_key_len(key) / 8);
3009
3010   /* Notify other routers about the new channel. We send the packet
3011      to our primary route. */
3012   if (broadcast && server->standalone == FALSE)
3013     silc_server_send_new_channel(server, server->router->connection, TRUE, 
3014                                  channel_name, entry->id, 
3015                                  silc_id_get_len(entry->id, SILC_ID_CHANNEL),
3016                                  entry->mode);
3017
3018   server->stat.my_channels++;
3019
3020   return entry;
3021 }
3022
3023 /* Channel's key re-key timeout callback. */
3024
3025 SILC_TASK_CALLBACK(silc_server_channel_key_rekey)
3026 {
3027   SilcServerChannelRekey rekey = (SilcServerChannelRekey)context;
3028   SilcServer server = (SilcServer)rekey->context;
3029
3030   silc_server_create_channel_key(server, rekey->channel, rekey->key_len);
3031   silc_server_send_channel_key(server, NULL, rekey->channel, FALSE);
3032
3033   silc_schedule_task_add(server->schedule, 0, 
3034                      silc_server_channel_key_rekey,
3035                      (void *)rekey, 3600, 0,
3036                      SILC_TASK_TIMEOUT,
3037                      SILC_TASK_PRI_NORMAL);
3038 }
3039
3040 /* Generates new channel key. This is used to create the initial channel key
3041    but also to re-generate new key for channel. If `key_len' is provided
3042    it is the bytes of the key length. */
3043
3044 void silc_server_create_channel_key(SilcServer server, 
3045                                     SilcChannelEntry channel,
3046                                     uint32 key_len)
3047 {
3048   int i;
3049   unsigned char channel_key[32], hash[32];
3050   uint32 len;
3051
3052   SILC_LOG_DEBUG(("Generating channel key"));
3053
3054   if (channel->mode & SILC_CHANNEL_MODE_PRIVKEY) {
3055     SILC_LOG_DEBUG(("Channel has private keys, will not generate new key"));
3056     return;
3057   }
3058
3059   if (!channel->channel_key)
3060     if (!silc_cipher_alloc("aes-256-cbc", &channel->channel_key))
3061       return;
3062
3063   if (key_len)
3064     len = key_len;
3065   else if (channel->key_len)
3066     len = channel->key_len / 8;
3067   else
3068     len = silc_cipher_get_key_len(channel->channel_key) / 8;
3069
3070   /* Create channel key */
3071   for (i = 0; i < len; i++) channel_key[i] = silc_rng_get_byte(server->rng);
3072   
3073   /* Set the key */
3074   silc_cipher_set_key(channel->channel_key, channel_key, len * 8);
3075
3076   /* Remove old key if exists */
3077   if (channel->key) {
3078     memset(channel->key, 0, channel->key_len / 8);
3079     silc_free(channel->key);
3080   }
3081
3082   /* Save the key */
3083   channel->key_len = len * 8;
3084   channel->key = silc_calloc(len, sizeof(*channel->key));
3085   memcpy(channel->key, channel_key, len);
3086   memset(channel_key, 0, sizeof(channel_key));
3087
3088   /* Generate HMAC key from the channel key data and set it */
3089   if (!channel->hmac)
3090     silc_hmac_alloc("hmac-sha1-96", NULL, &channel->hmac);
3091   silc_hash_make(channel->hmac->hash, channel->key, len, hash);
3092   silc_hmac_set_key(channel->hmac, hash, silc_hash_len(channel->hmac->hash));
3093   memset(hash, 0, sizeof(hash));
3094
3095   if (server->server_type == SILC_ROUTER) {
3096     if (!channel->rekey)
3097       channel->rekey = silc_calloc(1, sizeof(*channel->rekey));
3098     channel->rekey->context = (void *)server;
3099     channel->rekey->channel = channel;
3100     channel->rekey->key_len = key_len;
3101
3102     silc_schedule_task_del_by_callback(server->schedule,
3103                                      silc_server_channel_key_rekey);
3104     silc_schedule_task_add(server->schedule, 0, 
3105                        silc_server_channel_key_rekey,
3106                        (void *)channel->rekey, 3600, 0,
3107                        SILC_TASK_TIMEOUT,
3108                        SILC_TASK_PRI_NORMAL);
3109   }
3110 }
3111
3112 /* Saves the channel key found in the encoded `key_payload' buffer. This 
3113    function is used when we receive Channel Key Payload and also when we're
3114    processing JOIN command reply. Returns entry to the channel. */
3115
3116 SilcChannelEntry silc_server_save_channel_key(SilcServer server,
3117                                               SilcBuffer key_payload,
3118                                               SilcChannelEntry channel)
3119 {
3120   SilcChannelKeyPayload payload = NULL;
3121   SilcChannelID *id = NULL;
3122   unsigned char *tmp, hash[32];
3123   uint32 tmp_len;
3124   char *cipher;
3125
3126   SILC_LOG_DEBUG(("Start"));
3127
3128   /* Decode channel key payload */
3129   payload = silc_channel_key_payload_parse(key_payload);
3130   if (!payload) {
3131     SILC_LOG_ERROR(("Bad channel key payload, dropped"));
3132     channel = NULL;
3133     goto out;
3134   }
3135
3136   /* Get the channel entry */
3137   if (!channel) {
3138
3139     /* Get channel ID */
3140     tmp = silc_channel_key_get_id(payload, &tmp_len);
3141     id = silc_id_str2id(tmp, tmp_len, SILC_ID_CHANNEL);
3142     if (!id) {
3143       channel = NULL;
3144       goto out;
3145     }
3146
3147     channel = silc_idlist_find_channel_by_id(server->local_list, id, NULL);
3148     if (!channel) {
3149       channel = silc_idlist_find_channel_by_id(server->global_list, id, NULL);
3150       if (!channel) {
3151         SILC_LOG_ERROR(("Received key for non-existent channel"));
3152         goto out;
3153       }
3154     }
3155   }
3156
3157   tmp = silc_channel_key_get_key(payload, &tmp_len);
3158   if (!tmp) {
3159     channel = NULL;
3160     goto out;
3161   }
3162
3163   cipher = silc_channel_key_get_cipher(payload, NULL);
3164   if (!cipher) {
3165     channel = NULL;
3166     goto out;
3167   }
3168
3169   /* Remove old key if exists */
3170   if (channel->key) {
3171     memset(channel->key, 0, channel->key_len / 8);
3172     silc_free(channel->key);
3173     silc_cipher_free(channel->channel_key);
3174   }
3175
3176   /* Create new cipher */
3177   if (!silc_cipher_alloc(cipher, &channel->channel_key)) {
3178     channel = NULL;
3179     goto out;
3180   }
3181
3182   if (channel->cipher)
3183     silc_free(channel->cipher);
3184   channel->cipher = strdup(cipher);
3185
3186   /* Save the key */
3187   channel->key_len = tmp_len * 8;
3188   channel->key = silc_calloc(tmp_len, sizeof(unsigned char));
3189   memcpy(channel->key, tmp, tmp_len);
3190   silc_cipher_set_key(channel->channel_key, tmp, channel->key_len);
3191
3192   /* Generate HMAC key from the channel key data and set it */
3193   if (!channel->hmac)
3194     silc_hmac_alloc("hmac-sha1-96", NULL, &channel->hmac);
3195   silc_hash_make(channel->hmac->hash, tmp, tmp_len, hash);
3196   silc_hmac_set_key(channel->hmac, hash, silc_hash_len(channel->hmac->hash));
3197
3198   memset(hash, 0, sizeof(hash));
3199   memset(tmp, 0, tmp_len);
3200
3201   if (server->server_type == SILC_ROUTER) {
3202     if (!channel->rekey)
3203       channel->rekey = silc_calloc(1, sizeof(*channel->rekey));
3204     channel->rekey->context = (void *)server;
3205     channel->rekey->channel = channel;
3206
3207     silc_schedule_task_del_by_callback(server->schedule,
3208                                      silc_server_channel_key_rekey);
3209     silc_schedule_task_add(server->schedule, 0, 
3210                        silc_server_channel_key_rekey,
3211                        (void *)channel->rekey, 3600, 0,
3212                        SILC_TASK_TIMEOUT,
3213                        SILC_TASK_PRI_NORMAL);
3214   }
3215
3216  out:
3217   if (id)
3218     silc_free(id);
3219   if (payload)
3220     silc_channel_key_payload_free(payload);
3221
3222   return channel;
3223 }
3224
3225 /* Heartbeat callback. This function is set as argument for the
3226    silc_socket_set_heartbeat function. The library will call this function
3227    at the set time interval. */
3228
3229 void silc_server_perform_heartbeat(SilcSocketConnection sock,
3230                                    void *hb_context)
3231 {
3232   SilcServerHBContext hb = (SilcServerHBContext)hb_context;
3233
3234   SILC_LOG_DEBUG(("Sending heartbeat to %s (%s)", sock->hostname,
3235                   sock->ip));
3236
3237   /* Send the heartbeat */
3238   silc_server_send_heartbeat(hb->server, sock);
3239 }
3240
3241 /* Returns assembled of all servers in the given ID list. The packet's
3242    form is dictated by the New ID payload. */
3243
3244 static void silc_server_announce_get_servers(SilcServer server,
3245                                              SilcIDList id_list,
3246                                              SilcBuffer *servers)
3247 {
3248   SilcIDCacheList list;
3249   SilcIDCacheEntry id_cache;
3250   SilcServerEntry entry;
3251   SilcBuffer idp;
3252
3253   /* Go through all clients in the list */
3254   if (silc_idcache_get_all(id_list->servers, &list)) {
3255     if (silc_idcache_list_first(list, &id_cache)) {
3256       while (id_cache) {
3257         entry = (SilcServerEntry)id_cache->context;
3258
3259         idp = silc_id_payload_encode(entry->id, SILC_ID_SERVER);
3260
3261         *servers = silc_buffer_realloc(*servers, 
3262                                        (*servers ? 
3263                                         (*servers)->truelen + idp->len : 
3264                                         idp->len));
3265         silc_buffer_pull_tail(*servers, ((*servers)->end - (*servers)->data));
3266         silc_buffer_put(*servers, idp->data, idp->len);
3267         silc_buffer_pull(*servers, idp->len);
3268         silc_buffer_free(idp);
3269
3270         if (!silc_idcache_list_next(list, &id_cache))
3271           break;
3272       }
3273     }
3274
3275     silc_idcache_list_free(list);
3276   }
3277 }
3278
3279 /* This function is used by router to announce existing servers to our
3280    primary router when we've connected to it. */
3281
3282 void silc_server_announce_servers(SilcServer server)
3283 {
3284   SilcBuffer servers = NULL;
3285
3286   SILC_LOG_DEBUG(("Announcing servers"));
3287
3288   /* Get servers in local list */
3289   silc_server_announce_get_servers(server, server->local_list, &servers);
3290
3291   /* Get servers in global list */
3292   silc_server_announce_get_servers(server, server->global_list, &servers);
3293
3294   if (servers) {
3295     silc_buffer_push(servers, servers->data - servers->head);
3296     SILC_LOG_HEXDUMP(("servers"), servers->data, servers->len);
3297
3298     /* Send the packet */
3299     silc_server_packet_send(server, server->router->connection,
3300                             SILC_PACKET_NEW_ID, SILC_PACKET_FLAG_LIST,
3301                             servers->data, servers->len, TRUE);
3302
3303     silc_buffer_free(servers);
3304   }
3305 }
3306
3307 /* Returns assembled packet of all clients in the given ID list. The
3308    packet's form is dictated by the New ID Payload. */
3309
3310 static void silc_server_announce_get_clients(SilcServer server,
3311                                              SilcIDList id_list,
3312                                              SilcBuffer *clients)
3313 {
3314   SilcIDCacheList list;
3315   SilcIDCacheEntry id_cache;
3316   SilcClientEntry client;
3317   SilcBuffer idp;
3318
3319   /* Go through all clients in the list */
3320   if (silc_idcache_get_all(id_list->clients, &list)) {
3321     if (silc_idcache_list_first(list, &id_cache)) {
3322       while (id_cache) {
3323         client = (SilcClientEntry)id_cache->context;
3324
3325         idp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
3326
3327         *clients = silc_buffer_realloc(*clients, 
3328                                        (*clients ? 
3329                                         (*clients)->truelen + idp->len : 
3330                                         idp->len));
3331         silc_buffer_pull_tail(*clients, ((*clients)->end - (*clients)->data));
3332         silc_buffer_put(*clients, idp->data, idp->len);
3333         silc_buffer_pull(*clients, idp->len);
3334         silc_buffer_free(idp);
3335
3336         if (!silc_idcache_list_next(list, &id_cache))
3337           break;
3338       }
3339     }
3340
3341     silc_idcache_list_free(list);
3342   }
3343 }
3344
3345 /* This function is used to announce our existing clients to our router
3346    when we've connected to it. */
3347
3348 void silc_server_announce_clients(SilcServer server)
3349 {
3350   SilcBuffer clients = NULL;
3351
3352   SILC_LOG_DEBUG(("Announcing clients"));
3353
3354   /* Get clients in local list */
3355   silc_server_announce_get_clients(server, server->local_list,
3356                                    &clients);
3357
3358   /* As router we announce our global list as well */
3359   if (server->server_type == SILC_ROUTER)
3360     silc_server_announce_get_clients(server, server->global_list,
3361                                      &clients);
3362
3363   if (clients) {
3364     silc_buffer_push(clients, clients->data - clients->head);
3365     SILC_LOG_HEXDUMP(("clients"), clients->data, clients->len);
3366
3367     /* Send the packet */
3368     silc_server_packet_send(server, server->router->connection,
3369                             SILC_PACKET_NEW_ID, SILC_PACKET_FLAG_LIST,
3370                             clients->data, clients->len, TRUE);
3371
3372     silc_buffer_free(clients);
3373   }
3374 }
3375
3376 static SilcBuffer 
3377 silc_server_announce_encode_notify(SilcNotifyType notify, uint32 argc, ...)
3378 {
3379   va_list ap;
3380   SilcBuffer p;
3381
3382   va_start(ap, argc);
3383   p = silc_notify_payload_encode(notify, argc, ap);
3384   va_end(ap);
3385  
3386   return p;
3387 }
3388
3389 /* Returns assembled packets for channel users of the `channel'. */
3390
3391 void silc_server_announce_get_channel_users(SilcServer server,
3392                                             SilcChannelEntry channel,
3393                                             SilcBuffer *channel_users,
3394                                             SilcBuffer *channel_users_modes)
3395 {
3396   SilcChannelClientEntry chl;
3397   SilcHashTableList htl;
3398   SilcBuffer chidp, clidp;
3399   SilcBuffer tmp;
3400   int len;
3401   unsigned char mode[4];
3402
3403   SILC_LOG_DEBUG(("Start"));
3404
3405   /* Now find all users on the channel */
3406   chidp = silc_id_payload_encode(channel->id, SILC_ID_CHANNEL);
3407   silc_hash_table_list(channel->user_list, &htl);
3408   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
3409     clidp = silc_id_payload_encode(chl->client->id, SILC_ID_CLIENT);
3410
3411     /* JOIN Notify */
3412     tmp = silc_server_announce_encode_notify(SILC_NOTIFY_TYPE_JOIN, 2, 
3413                                              clidp->data, clidp->len,
3414                                              chidp->data, chidp->len);
3415     len = tmp->len;
3416     *channel_users = 
3417       silc_buffer_realloc(*channel_users, 
3418                           (*channel_users ? 
3419                            (*channel_users)->truelen + len : len));
3420     silc_buffer_pull_tail(*channel_users, 
3421                           ((*channel_users)->end - 
3422                            (*channel_users)->data));
3423     
3424     silc_buffer_put(*channel_users, tmp->data, tmp->len);
3425     silc_buffer_pull(*channel_users, len);
3426     silc_buffer_free(tmp);
3427
3428     /* CUMODE notify for mode change on the channel */
3429     SILC_PUT32_MSB(chl->mode, mode);
3430     tmp = silc_server_announce_encode_notify(SILC_NOTIFY_TYPE_CUMODE_CHANGE, 
3431                                              3, clidp->data, clidp->len,
3432                                              mode, 4,
3433                                              clidp->data, clidp->len);
3434     len = tmp->len;
3435     *channel_users_modes = 
3436       silc_buffer_realloc(*channel_users_modes, 
3437                           (*channel_users_modes ? 
3438                            (*channel_users_modes)->truelen + len : len));
3439     silc_buffer_pull_tail(*channel_users_modes, 
3440                           ((*channel_users_modes)->end - 
3441                            (*channel_users_modes)->data));
3442     
3443     silc_buffer_put(*channel_users_modes, tmp->data, tmp->len);
3444     silc_buffer_pull(*channel_users_modes, len);
3445     silc_buffer_free(tmp);
3446
3447     silc_buffer_free(clidp);
3448   }
3449   silc_buffer_free(chidp);
3450 }
3451
3452 /* Returns assembled packets for all channels and users on those channels
3453    from the given ID List. The packets are in the form dictated by the
3454    New Channel and New Channel User payloads. */
3455
3456 void silc_server_announce_get_channels(SilcServer server,
3457                                        SilcIDList id_list,
3458                                        SilcBuffer *channels,
3459                                        SilcBuffer *channel_users,
3460                                        SilcBuffer **channel_users_modes,
3461                                        uint32 *channel_users_modes_c,
3462                                        SilcChannelID ***channel_ids)
3463 {
3464   SilcIDCacheList list;
3465   SilcIDCacheEntry id_cache;
3466   SilcChannelEntry channel;
3467   unsigned char *cid;
3468   uint32 id_len;
3469   uint16 name_len;
3470   int len;
3471   int i = *channel_users_modes_c;
3472
3473   SILC_LOG_DEBUG(("Start"));
3474
3475   /* Go through all channels in the list */
3476   if (silc_idcache_get_all(id_list->channels, &list)) {
3477     if (silc_idcache_list_first(list, &id_cache)) {
3478       while (id_cache) {
3479         channel = (SilcChannelEntry)id_cache->context;
3480         
3481         cid = silc_id_id2str(channel->id, SILC_ID_CHANNEL);
3482         id_len = silc_id_get_len(channel->id, SILC_ID_CHANNEL);
3483         name_len = strlen(channel->channel_name);
3484
3485         len = 4 + name_len + id_len + 4;
3486         *channels = 
3487           silc_buffer_realloc(*channels, 
3488                               (*channels ? (*channels)->truelen + len : len));
3489         silc_buffer_pull_tail(*channels, 
3490                               ((*channels)->end - (*channels)->data));
3491         silc_buffer_format(*channels,
3492                            SILC_STR_UI_SHORT(name_len),
3493                            SILC_STR_UI_XNSTRING(channel->channel_name, 
3494                                                 name_len),
3495                            SILC_STR_UI_SHORT(id_len),
3496                            SILC_STR_UI_XNSTRING(cid, id_len),
3497                            SILC_STR_UI_INT(channel->mode),
3498                            SILC_STR_END);
3499         silc_buffer_pull(*channels, len);
3500
3501         *channel_users_modes = silc_realloc(*channel_users_modes,
3502                                             sizeof(**channel_users_modes) * 
3503                                             (i + 1));
3504         (*channel_users_modes)[i] = NULL;
3505         *channel_ids = silc_realloc(*channel_ids, 
3506                                     sizeof(**channel_ids) * (i + 1));
3507         (*channel_ids)[i] = NULL;
3508         silc_server_announce_get_channel_users(server, channel,
3509                                                channel_users,
3510                                                channel_users_modes[i]);
3511         (*channel_ids)[i] = channel->id;
3512         i++;
3513
3514         if (!silc_idcache_list_next(list, &id_cache))
3515           break;
3516       }
3517
3518       *channel_users_modes_c += i;
3519     }
3520
3521     silc_idcache_list_free(list);
3522   }
3523 }
3524
3525 /* This function is used to announce our existing channels to our router
3526    when we've connected to it. This also announces the users on the
3527    channels to the router. */
3528
3529 void silc_server_announce_channels(SilcServer server)
3530 {
3531   SilcBuffer channels = NULL, channel_users = NULL;
3532   SilcBuffer *channel_users_modes = NULL;
3533   uint32 channel_users_modes_c = 0;
3534   SilcChannelID **channel_ids = NULL;
3535
3536   SILC_LOG_DEBUG(("Announcing channels and channel users"));
3537
3538   /* Get channels and channel users in local list */
3539   silc_server_announce_get_channels(server, server->local_list,
3540                                     &channels, &channel_users,
3541                                     &channel_users_modes,
3542                                     &channel_users_modes_c,
3543                                     &channel_ids);
3544
3545   /* Get channels and channel users in global list */
3546   silc_server_announce_get_channels(server, server->global_list,
3547                                     &channels, &channel_users,
3548                                     &channel_users_modes,
3549                                     &channel_users_modes_c,
3550                                     &channel_ids);
3551
3552   if (channels) {
3553     silc_buffer_push(channels, channels->data - channels->head);
3554     SILC_LOG_HEXDUMP(("channels"), channels->data, channels->len);
3555
3556     /* Send the packet */
3557     silc_server_packet_send(server, server->router->connection,
3558                             SILC_PACKET_NEW_CHANNEL, SILC_PACKET_FLAG_LIST,
3559                             channels->data, channels->len,
3560                             FALSE);
3561
3562     silc_buffer_free(channels);
3563   }
3564
3565   if (channel_users) {
3566     silc_buffer_push(channel_users, channel_users->data - channel_users->head);
3567     SILC_LOG_HEXDUMP(("channel users"), channel_users->data, 
3568                      channel_users->len);
3569
3570     /* Send the packet */
3571     silc_server_packet_send(server, server->router->connection,
3572                             SILC_PACKET_NOTIFY, SILC_PACKET_FLAG_LIST,
3573                             channel_users->data, channel_users->len,
3574                             FALSE);
3575
3576     silc_buffer_free(channel_users);
3577   }
3578
3579   if (channel_users_modes) {
3580     int i;
3581
3582     for (i = 0; i < channel_users_modes_c; i++) {
3583       silc_buffer_push(channel_users_modes[i], 
3584                        channel_users_modes[i]->data - 
3585                        channel_users_modes[i]->head);
3586       SILC_LOG_HEXDUMP(("channel users modes"), channel_users_modes[i]->data, 
3587                        channel_users_modes[i]->len);
3588       silc_server_packet_send_dest(server, server->router->connection,
3589                                    SILC_PACKET_NOTIFY, SILC_PACKET_FLAG_LIST,
3590                                    channel_ids[i], SILC_ID_CHANNEL,
3591                                    channel_users_modes[i]->data, 
3592                                    channel_users_modes[i]->len,
3593                                    FALSE);
3594       silc_buffer_free(channel_users_modes[i]);
3595     }
3596     silc_free(channel_users_modes);
3597     silc_free(channel_ids);
3598   }
3599 }
3600
3601 /* Failure timeout callback. If this is called then we will immediately
3602    process the received failure. We always process the failure with timeout
3603    since we do not want to blindly trust to received failure packets. 
3604    This won't be called (the timeout is cancelled) if the failure was
3605    bogus (it is bogus if remote does not close the connection after sending
3606    the failure). */
3607
3608 SILC_TASK_CALLBACK(silc_server_failure_callback)
3609 {
3610   SilcServerFailureContext f = (SilcServerFailureContext)context;
3611
3612   if (f->sock->protocol) {
3613     f->sock->protocol->state = SILC_PROTOCOL_STATE_FAILURE;
3614     silc_protocol_execute(f->sock->protocol, f->server->schedule, 0, 0);
3615   }
3616
3617   silc_free(f);
3618 }
3619
3620 /* Assembles user list and users mode list from the `channel'. */
3621
3622 void silc_server_get_users_on_channel(SilcServer server,
3623                                       SilcChannelEntry channel,
3624                                       SilcBuffer *user_list,
3625                                       SilcBuffer *mode_list,
3626                                       uint32 *user_count)
3627 {
3628   SilcChannelClientEntry chl;
3629   SilcHashTableList htl;
3630   SilcBuffer client_id_list;
3631   SilcBuffer client_mode_list;
3632   SilcBuffer idp;
3633   uint32 list_count = 0, len = 0;
3634
3635   silc_hash_table_list(channel->user_list, &htl);
3636   while (silc_hash_table_get(&htl, NULL, (void *)&chl))
3637     len += (silc_id_get_len(chl->client->id, SILC_ID_CLIENT) + 4);
3638
3639   client_id_list = silc_buffer_alloc(len);
3640   client_mode_list = 
3641     silc_buffer_alloc(4 * silc_hash_table_count(channel->user_list));
3642   silc_buffer_pull_tail(client_id_list, SILC_BUFFER_END(client_id_list));
3643   silc_buffer_pull_tail(client_mode_list, SILC_BUFFER_END(client_mode_list));
3644
3645   silc_hash_table_list(channel->user_list, &htl);
3646   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
3647     /* Client ID */
3648     idp = silc_id_payload_encode(chl->client->id, SILC_ID_CLIENT);
3649     silc_buffer_put(client_id_list, idp->data, idp->len);
3650     silc_buffer_pull(client_id_list, idp->len);
3651     silc_buffer_free(idp);
3652
3653     /* Client's mode on channel */
3654     SILC_PUT32_MSB(chl->mode, client_mode_list->data);
3655     silc_buffer_pull(client_mode_list, 4);
3656
3657     list_count++;
3658   }
3659   silc_buffer_push(client_id_list, 
3660                    client_id_list->data - client_id_list->head);
3661   silc_buffer_push(client_mode_list, 
3662                    client_mode_list->data - client_mode_list->head);
3663
3664   *user_list = client_id_list;
3665   *mode_list = client_mode_list;
3666   *user_count = list_count;
3667 }
3668
3669 /* Saves users and their modes to the `channel'. */
3670
3671 void silc_server_save_users_on_channel(SilcServer server,
3672                                        SilcSocketConnection sock,
3673                                        SilcChannelEntry channel,
3674                                        SilcClientID *noadd,
3675                                        SilcBuffer user_list,
3676                                        SilcBuffer mode_list,
3677                                        uint32 user_count)
3678 {
3679   int i;
3680
3681   /* Cache the received Client ID's and modes. This cache expires
3682      whenever server sends notify message to channel. It means two things;
3683      some user has joined or leaved the channel. XXX TODO! */
3684   for (i = 0; i < user_count; i++) {
3685     uint16 idp_len;
3686     uint32 mode;
3687     SilcClientID *client_id;
3688     SilcClientEntry client;
3689
3690     /* Client ID */
3691     SILC_GET16_MSB(idp_len, user_list->data + 2);
3692     idp_len += 4;
3693     client_id = silc_id_payload_parse_id(user_list->data, idp_len);
3694     silc_buffer_pull(user_list, idp_len);
3695     if (!client_id)
3696       continue;
3697
3698     /* Mode */
3699     SILC_GET32_MSB(mode, mode_list->data);
3700     silc_buffer_pull(mode_list, 4);
3701
3702     if (noadd && SILC_ID_CLIENT_COMPARE(client_id, noadd)) {
3703       silc_free(client_id);
3704       continue;
3705     }
3706     
3707     /* Check if we have this client cached already. */
3708     client = silc_idlist_find_client_by_id(server->local_list, client_id,
3709                                            NULL);
3710     if (!client)
3711       client = silc_idlist_find_client_by_id(server->global_list, 
3712                                              client_id, NULL);
3713     if (!client) {
3714       /* If router did not find such Client ID in its lists then this must
3715          be bogus client or some router in the net is buggy. */
3716       if (server->server_type == SILC_ROUTER) {
3717         silc_free(client_id);
3718         continue;
3719       }
3720
3721       /* We don't have that client anywhere, add it. The client is added
3722          to global list since server didn't have it in the lists so it must be 
3723          global. */
3724       client = silc_idlist_add_client(server->global_list, NULL, NULL, NULL,
3725                                       silc_id_dup(client_id, SILC_ID_CLIENT), 
3726                                       sock->user_data, NULL);
3727       if (!client) {
3728         silc_free(client_id);
3729         continue;
3730       }
3731
3732       client->data.registered = TRUE;
3733     }
3734
3735     silc_free(client_id);
3736
3737     if (!silc_server_client_on_channel(client, channel)) {
3738       /* Client was not on the channel, add it. */
3739       SilcChannelClientEntry chl = silc_calloc(1, sizeof(*chl));
3740       chl->client = client;
3741       chl->mode = mode;
3742       chl->channel = channel;
3743       silc_hash_table_add(channel->user_list, chl->client, chl);
3744       silc_hash_table_add(client->channels, chl->channel, chl);
3745     }
3746   }
3747 }
3748
3749 /* Lookups route to the client indicated by the `id_data'. The connection
3750    object and internal data object is returned. Returns NULL if route
3751    could not be found to the client. If the `client_id' is specified then
3752    it is used and the `id_data' is ignored. */
3753
3754 SilcSocketConnection silc_server_get_client_route(SilcServer server,
3755                                                   unsigned char *id_data,
3756                                                   uint32 id_len,
3757                                                   SilcClientID *client_id,
3758                                                   SilcIDListData *idata)
3759 {
3760   SilcClientID *id;
3761   SilcClientEntry client;
3762
3763   SILC_LOG_DEBUG(("Start"));
3764
3765   /* Decode destination Client ID */
3766   if (!client_id) {
3767     id = silc_id_str2id(id_data, id_len, SILC_ID_CLIENT);
3768     if (!id) {
3769       SILC_LOG_ERROR(("Could not decode destination Client ID, dropped"));
3770       return NULL;
3771     }
3772   } else {
3773     id = silc_id_dup(client_id, SILC_ID_CLIENT);
3774   }
3775
3776   /* If the destination belongs to our server we don't have to route
3777      the packet anywhere but to send it to the local destination. */
3778   client = silc_idlist_find_client_by_id(server->local_list, id, NULL);
3779   if (client) {
3780     silc_free(id);
3781
3782     if (client->data.registered == FALSE)
3783       return NULL;
3784
3785     /* If we are router and the client has router then the client is in
3786        our cell but not directly connected to us. */
3787     if (server->server_type == SILC_ROUTER && client->router) {
3788       /* We are of course in this case the client's router thus the route
3789          to the client is the server who owns the client. So, we will send
3790          the packet to that server. */
3791       if (idata)
3792         *idata = (SilcIDListData)client->router;
3793       return client->router->connection;
3794     }
3795
3796     /* Seems that client really is directly connected to us */
3797     if (idata)
3798       *idata = (SilcIDListData)client;
3799     return client->connection;
3800   }
3801
3802   /* Destination belongs to someone not in this server. If we are normal
3803      server our action is to send the packet to our router. */
3804   if (server->server_type == SILC_SERVER && !server->standalone) {
3805     silc_free(id);
3806     if (idata)
3807       *idata = (SilcIDListData)server->router;
3808     return server->router->connection;
3809   }
3810
3811   /* We are router and we will perform route lookup for the destination 
3812      and send the packet to fastest route. */
3813   if (server->server_type == SILC_ROUTER && !server->standalone) {
3814     /* Check first that the ID is valid */
3815     client = silc_idlist_find_client_by_id(server->global_list, id, NULL);
3816     if (client) {
3817       SilcSocketConnection dst_sock;
3818
3819       dst_sock = silc_server_route_get(server, id, SILC_ID_CLIENT);
3820
3821       silc_free(id);
3822       if (idata)
3823         *idata = (SilcIDListData)dst_sock->user_data;
3824       return dst_sock;
3825     }
3826   }
3827
3828   silc_free(id);
3829   return NULL;
3830 }
3831
3832 /* Encodes and returns channel list of channels the `client' has joined.
3833    Secret channels are not put to the list. */
3834
3835 SilcBuffer silc_server_get_client_channel_list(SilcServer server,
3836                                                SilcClientEntry client)
3837 {
3838   SilcBuffer buffer = NULL;
3839   SilcChannelEntry channel;
3840   SilcChannelClientEntry chl;
3841   SilcHashTableList htl;
3842   unsigned char *cid;
3843   uint32 id_len;
3844   uint16 name_len;
3845   int len;
3846
3847   silc_hash_table_list(client->channels, &htl);
3848   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
3849     channel = chl->channel;
3850
3851     if (channel->mode & SILC_CHANNEL_MODE_SECRET)
3852       continue;
3853
3854     cid = silc_id_id2str(channel->id, SILC_ID_CHANNEL);
3855     id_len = silc_id_get_len(channel->id, SILC_ID_CHANNEL);
3856     name_len = strlen(channel->channel_name);
3857     
3858     len = 4 + name_len + id_len + 4;
3859     buffer = silc_buffer_realloc(buffer, 
3860                                  (buffer ? (buffer)->truelen + len : len));
3861     silc_buffer_pull_tail(buffer, ((buffer)->end - (buffer)->data));
3862     silc_buffer_format(buffer,
3863                        SILC_STR_UI_SHORT(name_len),
3864                        SILC_STR_UI_XNSTRING(channel->channel_name, 
3865                                             name_len),
3866                        SILC_STR_UI_SHORT(id_len),
3867                        SILC_STR_UI_XNSTRING(cid, id_len),
3868                        SILC_STR_UI_INT(chl->mode), /* Client's mode */
3869                        SILC_STR_END);
3870     silc_buffer_pull(buffer, len);
3871     silc_free(cid);
3872   }
3873
3874   if (buffer)
3875     silc_buffer_push(buffer, buffer->data - buffer->head);
3876
3877   return buffer;
3878 }
3879
3880 /* Finds client entry by Client ID and if it is not found then resolves
3881    it using WHOIS command. */
3882
3883 SilcClientEntry silc_server_get_client_resolve(SilcServer server,
3884                                                SilcClientID *client_id)
3885 {
3886   SilcClientEntry client;
3887
3888   client = silc_idlist_find_client_by_id(server->local_list, client_id, NULL);
3889   if (!client) {
3890     client = silc_idlist_find_client_by_id(server->global_list, 
3891                                            client_id, NULL);
3892     if (!client && server->server_type == SILC_ROUTER)
3893       return NULL;
3894   }
3895
3896   if (!client && server->standalone)
3897     return NULL;
3898
3899   if (!client || !client->nickname || !client->username) {
3900     SilcBuffer buffer, idp;
3901
3902     idp = silc_id_payload_encode(client_id, SILC_ID_CLIENT);
3903     buffer = silc_command_payload_encode_va(SILC_COMMAND_WHOIS,
3904                                             ++server->cmd_ident, 1,
3905                                             3, idp->data, idp->len);
3906     silc_server_packet_send(server, client ? client->router->connection :
3907                             server->router->connection,
3908                             SILC_PACKET_COMMAND, 0,
3909                             buffer->data, buffer->len, FALSE);
3910     silc_buffer_free(idp);
3911     silc_buffer_free(buffer);
3912     return NULL;
3913   }
3914
3915   return client;
3916 }
3917
3918 /* A timeout callback for the re-key. We will be the initiator of the
3919    re-key protocol. */
3920
3921 SILC_TASK_CALLBACK(silc_server_rekey_callback)
3922 {
3923   SilcSocketConnection sock = (SilcSocketConnection)context;
3924   SilcIDListData idata = (SilcIDListData)sock->user_data;
3925   SilcServer server = (SilcServer)idata->rekey->context;
3926   SilcProtocol protocol;
3927   SilcServerRekeyInternalContext *proto_ctx;
3928
3929   SILC_LOG_DEBUG(("Start"));
3930
3931   /* Allocate internal protocol context. This is sent as context
3932      to the protocol. */
3933   proto_ctx = silc_calloc(1, sizeof(*proto_ctx));
3934   proto_ctx->server = (void *)server;
3935   proto_ctx->sock = sock;
3936   proto_ctx->responder = FALSE;
3937   proto_ctx->pfs = idata->rekey->pfs;
3938       
3939   /* Perform rekey protocol. Will call the final callback after the
3940      protocol is over. */
3941   silc_protocol_alloc(SILC_PROTOCOL_SERVER_REKEY, 
3942                       &protocol, proto_ctx, silc_server_rekey_final);
3943   sock->protocol = protocol;
3944       
3945   /* Run the protocol */
3946   silc_protocol_execute(protocol, server->schedule, 0, 0);
3947
3948   /* Re-register re-key timeout */
3949   silc_schedule_task_add(server->schedule, sock->sock, 
3950                      silc_server_rekey_callback,
3951                      context, idata->rekey->timeout, 0,
3952                      SILC_TASK_TIMEOUT, SILC_TASK_PRI_NORMAL);
3953 }
3954
3955 /* The final callback for the REKEY protocol. This will actually take the
3956    new key material into use. */
3957
3958 SILC_TASK_CALLBACK_GLOBAL(silc_server_rekey_final)
3959 {
3960   SilcProtocol protocol = (SilcProtocol)context;
3961   SilcServerRekeyInternalContext *ctx =
3962     (SilcServerRekeyInternalContext *)protocol->context;
3963   SilcServer server = (SilcServer)ctx->server;
3964   SilcSocketConnection sock = ctx->sock;
3965
3966   SILC_LOG_DEBUG(("Start"));
3967
3968   if (protocol->state == SILC_PROTOCOL_STATE_ERROR ||
3969       protocol->state == SILC_PROTOCOL_STATE_FAILURE) {
3970     /* Error occured during protocol */
3971     silc_protocol_cancel(protocol, server->schedule);
3972     silc_protocol_free(protocol);
3973     sock->protocol = NULL;
3974     if (ctx->packet)
3975       silc_packet_context_free(ctx->packet);
3976     if (ctx->ske)
3977       silc_ske_free(ctx->ske);
3978     silc_free(ctx);
3979     return;
3980   }
3981
3982   /* Cleanup */
3983   silc_protocol_free(protocol);
3984   sock->protocol = NULL;
3985   if (ctx->packet)
3986     silc_packet_context_free(ctx->packet);
3987   if (ctx->ske)
3988     silc_ske_free(ctx->ske);
3989   silc_free(ctx);
3990 }