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   /* If sock->user_data is NULL then we'll check for active protocols
2102      here since the silc_server_free_sock_user_data has not been called
2103      for this connection. */
2104   if (!sock->user_data) {
2105     /* If any protocol is active cancel its execution */
2106     if (sock->protocol) {
2107       silc_protocol_cancel(sock->protocol, server->schedule);
2108       sock->protocol->state = SILC_PROTOCOL_STATE_ERROR;
2109       silc_protocol_execute_final(sock->protocol, server->schedule);
2110       sock->protocol = NULL;
2111     }
2112   }
2113
2114   /* We won't listen for this connection anymore */
2115   silc_schedule_unset_listen_fd(server->schedule, sock->sock);
2116
2117   /* Unregister all tasks */
2118   silc_schedule_task_del_by_fd(server->schedule, sock->sock);
2119   silc_schedule_task_del_by_fd(server->schedule, sock->sock);
2120
2121   /* Close the actual connection */
2122   silc_net_close_connection(sock->sock);
2123   server->sockets[sock->sock] = NULL;
2124
2125   silc_schedule_task_add(server->schedule, 0, 
2126                      silc_server_close_connection_final,
2127                      (void *)sock, 0, 1, SILC_TASK_TIMEOUT, 
2128                      SILC_TASK_PRI_NORMAL);
2129 }
2130
2131 /* Sends disconnect message to remote connection and disconnects the 
2132    connection. */
2133
2134 void silc_server_disconnect_remote(SilcServer server,
2135                                    SilcSocketConnection sock,
2136                                    const char *fmt, ...)
2137 {
2138   va_list ap;
2139   unsigned char buf[4096];
2140
2141   if (!sock)
2142     return;
2143
2144   memset(buf, 0, sizeof(buf));
2145   va_start(ap, fmt);
2146   vsprintf(buf, fmt, ap);
2147   va_end(ap);
2148
2149   SILC_LOG_DEBUG(("Disconnecting remote host"));
2150
2151   SILC_LOG_INFO(("Disconnecting %s:%d [%s]", sock->hostname,
2152                   sock->port,
2153                   (sock->type == SILC_SOCKET_TYPE_UNKNOWN ? "Unknown" :
2154                    sock->type == SILC_SOCKET_TYPE_CLIENT ? "Client" :
2155                    sock->type == SILC_SOCKET_TYPE_SERVER ? "Server" :
2156                    "Router")));
2157
2158   /* Notify remote end that the conversation is over. The notify message
2159      is tried to be sent immediately. */
2160   silc_server_packet_send(server, sock, SILC_PACKET_DISCONNECT, 0,  
2161                           buf, strlen(buf), TRUE);
2162
2163   /* Mark the connection to be disconnected */
2164   SILC_SET_DISCONNECTED(sock);
2165   silc_server_close_connection(server, sock);
2166 }
2167
2168 typedef struct {
2169   SilcServer server;
2170   SilcClientEntry client;
2171 } *FreeClientInternal;
2172
2173 SILC_TASK_CALLBACK(silc_server_free_client_data_timeout)
2174 {
2175   FreeClientInternal i = (FreeClientInternal)context;
2176
2177   silc_idlist_del_data(i->client);
2178   silc_idcache_purge_by_context(i->server->local_list->clients, i->client);
2179   silc_free(i);
2180 }
2181
2182 /* Frees client data and notifies about client's signoff. */
2183
2184 void silc_server_free_client_data(SilcServer server, 
2185                                   SilcSocketConnection sock,
2186                                   SilcClientEntry client, 
2187                                   int notify,
2188                                   char *signoff)
2189 {
2190   FreeClientInternal i = silc_calloc(1, sizeof(*i));
2191
2192   /* If there is pending outgoing data for the client then purge it
2193      to the network before removing the client entry. */
2194   if (sock && SILC_IS_OUTBUF_PENDING(sock) && 
2195       (SILC_IS_DISCONNECTED(sock) == FALSE)) {
2196     server->stat.packets_sent++;
2197
2198     if (sock->outbuf->data - sock->outbuf->head)
2199      silc_buffer_push(sock->outbuf, sock->outbuf->data - sock->outbuf->head);
2200
2201     silc_packet_send(sock, TRUE);
2202
2203     SILC_SET_CONNECTION_FOR_INPUT(server->schedule, sock->sock);
2204     SILC_UNSET_OUTBUF_PENDING(sock);
2205     silc_buffer_clear(sock->outbuf);
2206   }
2207
2208   /* Send SIGNOFF notify to routers. */
2209   if (notify && !server->standalone && server->router)
2210     silc_server_send_notify_signoff(server, server->router->connection,
2211                                     server->server_type == SILC_SERVER ?
2212                                     FALSE : TRUE, client->id, signoff);
2213
2214   /* Remove client from all channels */
2215   if (notify)
2216     silc_server_remove_from_channels(server, NULL, client, 
2217                                      TRUE, signoff, TRUE);
2218   else
2219     silc_server_remove_from_channels(server, NULL, client, 
2220                                      FALSE, NULL, FALSE);
2221
2222   /* We will not delete the client entry right away. We will take it
2223      into history (for WHOWAS command) for 5 minutes */
2224   i->server = server;
2225   i->client = client;
2226   silc_schedule_task_add(server->schedule, 0, 
2227                      silc_server_free_client_data_timeout,
2228                      (void *)i, 300, 0,
2229                      SILC_TASK_TIMEOUT, SILC_TASK_PRI_LOW);
2230   client->data.registered = FALSE;
2231
2232   /* Free the client entry and everything in it */
2233   server->stat.my_clients--;
2234   server->stat.clients--;
2235   if (server->server_type == SILC_ROUTER)
2236     server->stat.cell_clients--;
2237 }
2238
2239 /* Frees user_data pointer from socket connection object. This also sends
2240    appropriate notify packets to the network to inform about leaving
2241    entities. */
2242
2243 void silc_server_free_sock_user_data(SilcServer server, 
2244                                      SilcSocketConnection sock)
2245 {
2246   SILC_LOG_DEBUG(("Start"));
2247
2248   switch(sock->type) {
2249   case SILC_SOCKET_TYPE_CLIENT:
2250     {
2251       SilcClientEntry user_data = (SilcClientEntry)sock->user_data;
2252       silc_server_free_client_data(server, sock, user_data, TRUE, NULL);
2253       break;
2254     }
2255   case SILC_SOCKET_TYPE_SERVER:
2256   case SILC_SOCKET_TYPE_ROUTER:
2257     {
2258       SilcServerEntry user_data = (SilcServerEntry)sock->user_data;
2259
2260       /* Free all client entries that this server owns as they will
2261          become invalid now as well. */
2262       if (user_data->id)
2263         silc_server_remove_clients_by_server(server, user_data, TRUE);
2264
2265       /* If this was our primary router connection then we're lost to
2266          the outside world. */
2267       if (server->router == user_data) {
2268         server->id_entry->router = NULL;
2269         server->router = NULL;
2270         server->standalone = TRUE;
2271       }
2272
2273       /* Free the server entry */
2274       silc_idlist_del_data(user_data);
2275       silc_idlist_del_server(server->local_list, user_data);
2276       server->stat.my_servers--;
2277       server->stat.servers--;
2278       if (server->server_type == SILC_ROUTER)
2279         server->stat.cell_servers--;
2280       break;
2281     }
2282   default:
2283     {
2284       SilcUnknownEntry user_data = (SilcUnknownEntry)sock->user_data;
2285
2286       silc_idlist_del_data(user_data);
2287       silc_free(user_data);
2288       break;
2289     }
2290   }
2291
2292   /* If any protocol is active cancel its execution */
2293   if (sock->protocol) {
2294     silc_protocol_cancel(sock->protocol, server->schedule);
2295     sock->protocol->state = SILC_PROTOCOL_STATE_ERROR;
2296     silc_protocol_execute_final(sock->protocol, server->schedule);
2297     sock->protocol = NULL;
2298   }
2299
2300   sock->user_data = NULL;
2301 }
2302
2303 /* Removes the client from channels and possibly removes the channels
2304    as well.  After removing those channels that exist, their channel
2305    keys are regnerated. This is called only by the function
2306    silc_server_remove_clients_by_server. */
2307
2308 static void silc_server_remove_clients_channels(SilcServer server, 
2309                                                 SilcSocketConnection sock,
2310                                                 SilcClientEntry client,
2311                                                 SilcHashTable channels)
2312 {
2313   SilcChannelEntry channel;
2314   SilcChannelClientEntry chl;
2315   SilcHashTableList htl;
2316   SilcBuffer clidp;
2317
2318   SILC_LOG_DEBUG(("Start"));
2319
2320   if (!client || !client->id)
2321     return;
2322
2323   clidp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
2324
2325   /* Remove the client from all channels. The client is removed from
2326      the channels' user list. */
2327   silc_hash_table_list(client->channels, &htl);
2328   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
2329     channel = chl->channel;
2330
2331     /* Remove channel from client's channel list */
2332     silc_hash_table_del(client->channels, channel);
2333
2334     /* Remove channel if there is no users anymore */
2335     if (server->server_type == SILC_ROUTER &&
2336         silc_hash_table_count(channel->user_list) < 2) {
2337
2338       if (silc_hash_table_find(channels, channel, NULL, NULL))
2339         silc_hash_table_del(channels, channel);
2340
2341       if (channel->rekey)
2342         silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2343
2344       if (!silc_idlist_del_channel(server->local_list, channel))
2345         silc_idlist_del_channel(server->global_list, channel);
2346       server->stat.my_channels--;
2347       continue;
2348     }
2349
2350     /* Remove client from channel's client list */
2351     silc_hash_table_del(channel->user_list, chl->client);
2352     silc_free(chl);
2353     server->stat.my_chanclients--;
2354
2355     /* If there is no global users on the channel anymore mark the channel
2356        as local channel. Do not check if the removed client is local client. */
2357     if (server->server_type == SILC_SERVER && channel->global_users && 
2358         chl->client->router && !silc_server_channel_has_global(channel))
2359       channel->global_users = FALSE;
2360
2361     /* If there is not at least one local user on the channel then we don't
2362        need the channel entry anymore, we can remove it safely. */
2363     if (server->server_type == SILC_SERVER &&
2364         !silc_server_channel_has_local(channel)) {
2365
2366       if (silc_hash_table_find(channels, channel, NULL, NULL))
2367         silc_hash_table_del(channels, channel);
2368
2369       if (channel->rekey)
2370         silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2371
2372       if (channel->founder_key) {
2373         /* The founder auth data exists, do not remove the channel entry */
2374         SilcChannelClientEntry chl2;
2375         SilcHashTableList htl2;
2376
2377         channel->id = NULL;
2378
2379         silc_hash_table_list(channel->user_list, &htl2);
2380         while (silc_hash_table_get(&htl2, NULL, (void *)&chl2)) {
2381           silc_hash_table_del(chl2->client->channels, channel);
2382           silc_hash_table_del(channel->user_list, chl2->client);
2383           silc_free(chl2);
2384         }
2385         continue;
2386       }
2387
2388       /* Remove the channel entry */
2389       if (!silc_idlist_del_channel(server->local_list, channel))
2390         silc_idlist_del_channel(server->global_list, channel);
2391       server->stat.my_channels--;
2392       continue;
2393     }
2394
2395     /* Add the channel to the the channels list to regenerate the 
2396        channel key */
2397     if (!silc_hash_table_find(channels, channel, NULL, NULL))
2398       silc_hash_table_add(channels, channel, channel);
2399   }
2400
2401   silc_buffer_free(clidp);
2402 }
2403
2404 /* This function is used to remove all client entries by the server `entry'.
2405    This is called when the connection is lost to the server. In this case
2406    we must invalidate all the client entries owned by the server `entry'. 
2407    If the `server_signoff' is TRUE then the SERVER_SIGNOFF notify is
2408    distributed to our local clients. */
2409
2410 int silc_server_remove_clients_by_server(SilcServer server, 
2411                                          SilcServerEntry entry,
2412                                          int server_signoff)
2413 {
2414   SilcIDCacheList list = NULL;
2415   SilcIDCacheEntry id_cache = NULL;
2416   SilcClientEntry client = NULL;
2417   SilcBuffer idp;
2418   SilcClientEntry *clients = NULL;
2419   uint32 clients_c = 0;
2420   unsigned char **argv = NULL;
2421   uint32 *argv_lens = NULL, *argv_types = NULL, argc = 0;
2422   SilcHashTableList htl;
2423   SilcChannelEntry channel;
2424   SilcHashTable channels;
2425   int i;
2426
2427   SILC_LOG_DEBUG(("Start"));
2428
2429   /* Allocate the hash table that holds the channels that require
2430      channel key re-generation after we've removed this server's clients
2431      from the channels. */
2432   channels = silc_hash_table_alloc(0, silc_hash_ptr, NULL, NULL, NULL,
2433                                    NULL, NULL, TRUE);
2434
2435   if (server_signoff) {
2436     idp = silc_id_payload_encode(entry->id, SILC_ID_SERVER);
2437     argv = silc_realloc(argv, sizeof(*argv) * (argc + 1));
2438     argv_lens = silc_realloc(argv_lens,  sizeof(*argv_lens) * (argc + 1));
2439     argv_types = silc_realloc(argv_types, sizeof(*argv_types) * (argc + 1));
2440     argv[argc] = silc_calloc(idp->len, sizeof(*argv[0]));
2441     memcpy(argv[argc], idp->data, idp->len);
2442     argv_lens[argc] = idp->len;
2443     argv_types[argc] = argc + 1;
2444     argc++;
2445     silc_buffer_free(idp);
2446   }
2447
2448   if (silc_idcache_get_all(server->local_list->clients, &list)) {
2449
2450     if (silc_idcache_list_first(list, &id_cache)) {
2451       while (id_cache) {
2452         client = (SilcClientEntry)id_cache->context;
2453         if (client->data.registered == FALSE) {
2454           if (!silc_idcache_list_next(list, &id_cache))
2455             break;
2456           else
2457             continue;
2458         }
2459
2460         if (client->router != entry) {
2461           if (server_signoff && client->connection) {
2462             clients = silc_realloc(clients, 
2463                                    sizeof(*clients) * (clients_c + 1));
2464             clients[clients_c] = client;
2465             clients_c++;
2466           }
2467
2468           if (!silc_idcache_list_next(list, &id_cache))
2469             break;
2470           else
2471             continue;
2472         }
2473
2474         if (server_signoff) {
2475           idp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
2476           argv = silc_realloc(argv, sizeof(*argv) * (argc + 1));
2477           argv_lens = silc_realloc(argv_lens, sizeof(*argv_lens) *
2478                                    (argc + 1));
2479           argv_types = silc_realloc(argv_types, sizeof(*argv_types) *
2480                                     (argc + 1));
2481           argv[argc] = silc_calloc(idp->len, sizeof(*argv[0]));
2482           memcpy(argv[argc], idp->data, idp->len);
2483           argv_lens[argc] = idp->len;
2484           argv_types[argc] = argc + 1;
2485           argc++;
2486           silc_buffer_free(idp);
2487         }
2488
2489         /* Remove the client entry */
2490         silc_server_remove_clients_channels(server, NULL, client, channels);
2491         silc_idlist_del_client(server->local_list, client);
2492
2493         if (!silc_idcache_list_next(list, &id_cache))
2494           break;
2495       }
2496     }
2497     silc_idcache_list_free(list);
2498   }
2499   
2500   if (silc_idcache_get_all(server->global_list->clients, &list)) {
2501
2502     if (silc_idcache_list_first(list, &id_cache)) {
2503       while (id_cache) {
2504         client = (SilcClientEntry)id_cache->context;
2505         if (client->data.registered == FALSE) {
2506           if (!silc_idcache_list_next(list, &id_cache))
2507             break;
2508           else
2509             continue;
2510         }
2511         
2512         if (client->router != entry) {
2513           if (server_signoff && client->connection) {
2514             clients = silc_realloc(clients, 
2515                                    sizeof(*clients) * (clients_c + 1));
2516             clients[clients_c] = client;
2517             clients_c++;
2518           }
2519
2520           if (!silc_idcache_list_next(list, &id_cache))
2521             break;
2522           else
2523             continue;
2524         }
2525
2526         if (server_signoff) {
2527           idp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
2528           argv = silc_realloc(argv, sizeof(*argv) * (argc + 1));
2529           argv_lens = silc_realloc(argv_lens, sizeof(*argv_lens) *
2530                                    (argc + 1));
2531           argv_types = silc_realloc(argv_types, sizeof(*argv_types) *
2532                                     (argc + 1));
2533           argv[argc] = silc_calloc(idp->len, sizeof(*argv[0]));
2534           memcpy(argv[argc], idp->data, idp->len);
2535           argv_lens[argc] = idp->len;
2536           argv_types[argc] = argc + 1;
2537           argc++;
2538           silc_buffer_free(idp);
2539         }
2540
2541         /* Remove the client entry */
2542         silc_server_remove_clients_channels(server, NULL, client, channels);
2543         silc_idlist_del_client(server->global_list, client);
2544
2545         if (!silc_idcache_list_next(list, &id_cache))
2546           break;
2547       }
2548     }
2549     silc_idcache_list_free(list);
2550   }
2551
2552   /* Send the SERVER_SIGNOFF notify */
2553   if (server_signoff) {
2554     SilcBuffer args;
2555
2556     /* Send SERVER_SIGNOFF notify to our primary router */
2557     if (!server->standalone && server->router &&
2558         server->router != entry) {
2559       args = silc_argument_payload_encode(1, argv, argv_lens,
2560                                           argv_types);
2561       silc_server_send_notify_args(server, 
2562                                    server->router->connection,
2563                                    server->server_type == SILC_SERVER ? 
2564                                    FALSE : TRUE, 
2565                                    SILC_NOTIFY_TYPE_SERVER_SIGNOFF,
2566                                    argc, args);
2567       silc_buffer_free(args);
2568     }
2569
2570     args = silc_argument_payload_encode(argc, argv, argv_lens,
2571                                         argv_types);
2572     /* Send to local clients */
2573     for (i = 0; i < clients_c; i++) {
2574       silc_server_send_notify_args(server, clients[i]->connection,
2575                                    FALSE, SILC_NOTIFY_TYPE_SERVER_SIGNOFF,
2576                                    argc, args);
2577     }
2578
2579     silc_free(clients);
2580     silc_buffer_free(args);
2581     for (i = 0; i < argc; i++)
2582       silc_free(argv[i]);
2583     silc_free(argv);
2584     silc_free(argv_lens);
2585     silc_free(argv_types);
2586   }
2587
2588   /* We must now re-generate the channel key for all channels that had
2589      this server's client(s) on the channel. As they left the channel we
2590      must re-generate the channel key. */
2591   silc_hash_table_list(channels, &htl);
2592   while (silc_hash_table_get(&htl, NULL, (void *)&channel)) {
2593     silc_server_create_channel_key(server, channel, 0);
2594     silc_server_send_channel_key(server, NULL, channel, 
2595                                  server->server_type == SILC_ROUTER ? 
2596                                  FALSE : !server->standalone);
2597   }
2598   silc_hash_table_free(channels);
2599
2600   return TRUE;
2601 }
2602
2603 /* Checks whether given channel has global users.  If it does this returns
2604    TRUE and FALSE if there is only locally connected clients on the channel. */
2605
2606 int silc_server_channel_has_global(SilcChannelEntry channel)
2607 {
2608   SilcChannelClientEntry chl;
2609   SilcHashTableList htl;
2610
2611   silc_hash_table_list(channel->user_list, &htl);
2612   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
2613     if (chl->client->router)
2614       return TRUE;
2615   }
2616
2617   return FALSE;
2618 }
2619
2620 /* Checks whether given channel has locally connected users.  If it does this
2621    returns TRUE and FALSE if there is not one locally connected client. */
2622
2623 int silc_server_channel_has_local(SilcChannelEntry channel)
2624 {
2625   SilcChannelClientEntry chl;
2626   SilcHashTableList htl;
2627
2628   silc_hash_table_list(channel->user_list, &htl);
2629   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
2630     if (!chl->client->router)
2631       return TRUE;
2632   }
2633
2634   return FALSE;
2635 }
2636
2637 /* Removes client from all channels it has joined. This is used when client
2638    connection is disconnected. If the client on a channel is last, the
2639    channel is removed as well. This sends the SIGNOFF notify types. */
2640
2641 void silc_server_remove_from_channels(SilcServer server, 
2642                                       SilcSocketConnection sock,
2643                                       SilcClientEntry client,
2644                                       int notify,
2645                                       char *signoff_message,
2646                                       int keygen)
2647 {
2648   SilcChannelEntry channel;
2649   SilcChannelClientEntry chl;
2650   SilcHashTableList htl;
2651   SilcBuffer clidp;
2652
2653   SILC_LOG_DEBUG(("Start"));
2654
2655   if (!client || !client->id)
2656     return;
2657
2658   clidp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
2659
2660   /* Remove the client from all channels. The client is removed from
2661      the channels' user list. */
2662   silc_hash_table_list(client->channels, &htl);
2663   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
2664     channel = chl->channel;
2665
2666     /* Remove channel from client's channel list */
2667     silc_hash_table_del(client->channels, channel);
2668
2669     /* Remove channel if there is no users anymore */
2670     if (server->server_type == SILC_ROUTER &&
2671         silc_hash_table_count(channel->user_list) < 2) {
2672       if (channel->rekey)
2673         silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2674       if (!silc_idlist_del_channel(server->local_list, channel))
2675         silc_idlist_del_channel(server->global_list, channel);
2676       server->stat.my_channels--;
2677       continue;
2678     }
2679
2680     /* Remove client from channel's client list */
2681     silc_hash_table_del(channel->user_list, chl->client);
2682     silc_free(chl);
2683     server->stat.my_chanclients--;
2684
2685     /* If there is no global users on the channel anymore mark the channel
2686        as local channel. Do not check if the removed client is local client. */
2687     if (server->server_type == SILC_SERVER && channel->global_users && 
2688         chl->client->router && !silc_server_channel_has_global(channel))
2689       channel->global_users = FALSE;
2690
2691     /* If there is not at least one local user on the channel then we don't
2692        need the channel entry anymore, we can remove it safely. */
2693     if (server->server_type == SILC_SERVER &&
2694         !silc_server_channel_has_local(channel)) {
2695       /* Notify about leaving client if this channel has global users. */
2696       if (notify && channel->global_users)
2697         silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
2698                                            SILC_NOTIFY_TYPE_SIGNOFF, 
2699                                            signoff_message ? 2 : 1,
2700                                            clidp->data, clidp->len,
2701                                            signoff_message, signoff_message ?
2702                                            strlen(signoff_message) : 0);
2703
2704       if (channel->rekey)
2705         silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2706
2707       if (channel->founder_key) {
2708         /* The founder auth data exists, do not remove the channel entry */
2709         SilcChannelClientEntry chl2;
2710         SilcHashTableList htl2;
2711
2712         channel->id = NULL;
2713
2714         silc_hash_table_list(channel->user_list, &htl2);
2715         while (silc_hash_table_get(&htl2, NULL, (void *)&chl2)) {
2716           silc_hash_table_del(chl2->client->channels, channel);
2717           silc_hash_table_del(channel->user_list, chl2->client);
2718           silc_free(chl2);
2719         }
2720         continue;
2721       }
2722
2723       /* Remove the channel entry */
2724       if (!silc_idlist_del_channel(server->local_list, channel))
2725         silc_idlist_del_channel(server->global_list, channel);
2726       server->stat.my_channels--;
2727       continue;
2728     }
2729
2730     /* Send notify to channel about client leaving SILC and thus
2731        the entire channel. */
2732     if (notify)
2733       silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
2734                                          SILC_NOTIFY_TYPE_SIGNOFF, 
2735                                          signoff_message ? 2 : 1,
2736                                          clidp->data, clidp->len,
2737                                          signoff_message, signoff_message ?
2738                                          strlen(signoff_message) : 0);
2739
2740     if (keygen && !(channel->mode & SILC_CHANNEL_MODE_PRIVKEY)) {
2741       /* Re-generate channel key */
2742       silc_server_create_channel_key(server, channel, 0);
2743       
2744       /* Send the channel key to the channel. The key of course is not sent
2745          to the client who was removed from the channel. */
2746       silc_server_send_channel_key(server, client->connection, channel, 
2747                                    server->server_type == SILC_ROUTER ? 
2748                                    FALSE : !server->standalone);
2749     }
2750   }
2751
2752   silc_buffer_free(clidp);
2753 }
2754
2755 /* Removes client from one channel. This is used for example when client
2756    calls LEAVE command to remove itself from the channel. Returns TRUE
2757    if channel still exists and FALSE if the channel is removed when
2758    last client leaves the channel. If `notify' is FALSE notify messages
2759    are not sent. */
2760
2761 int silc_server_remove_from_one_channel(SilcServer server, 
2762                                         SilcSocketConnection sock,
2763                                         SilcChannelEntry channel,
2764                                         SilcClientEntry client,
2765                                         int notify)
2766 {
2767   SilcChannelClientEntry chl;
2768   SilcBuffer clidp;
2769
2770   SILC_LOG_DEBUG(("Start"));
2771
2772   /* Get the entry to the channel, if this client is not on the channel
2773      then return Ok. */
2774   if (!silc_hash_table_find(client->channels, channel, NULL, (void *)&chl))
2775     return TRUE;
2776
2777   /* Remove the client from the channel. The client is removed from
2778      the channel's user list. */
2779
2780   clidp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
2781
2782   /* Remove channel from client's channel list */
2783   silc_hash_table_del(client->channels, chl->channel);
2784
2785   /* Remove channel if there is no users anymore */
2786   if (server->server_type == SILC_ROUTER &&
2787       silc_hash_table_count(channel->user_list) < 2) {
2788     if (channel->rekey)
2789       silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2790     if (!silc_idlist_del_channel(server->local_list, channel))
2791       silc_idlist_del_channel(server->global_list, channel);
2792     silc_buffer_free(clidp);
2793     server->stat.my_channels--;
2794     return FALSE;
2795   }
2796
2797   /* Remove client from channel's client list */
2798   silc_hash_table_del(channel->user_list, chl->client);
2799   silc_free(chl);
2800   server->stat.my_chanclients--;
2801   
2802   /* If there is no global users on the channel anymore mark the channel
2803      as local channel. Do not check if the client is local client. */
2804   if (server->server_type == SILC_SERVER && channel->global_users &&
2805       chl->client->router && !silc_server_channel_has_global(channel))
2806     channel->global_users = FALSE;
2807
2808   /* If there is not at least one local user on the channel then we don't
2809      need the channel entry anymore, we can remove it safely. */
2810   if (server->server_type == SILC_SERVER &&
2811       !silc_server_channel_has_local(channel)) {
2812     /* Notify about leaving client if this channel has global users. */
2813     if (notify && channel->global_users)
2814       silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
2815                                          SILC_NOTIFY_TYPE_LEAVE, 1,
2816                                          clidp->data, clidp->len);
2817     
2818     silc_buffer_free(clidp);
2819     
2820     if (channel->rekey)
2821       silc_schedule_task_del_by_context(server->schedule, channel->rekey);
2822
2823     if (channel->founder_key) {
2824       /* The founder auth data exists, do not remove the channel entry */
2825       SilcChannelClientEntry chl2;
2826       SilcHashTableList htl2;
2827       
2828       channel->id = NULL;
2829       
2830       silc_hash_table_list(channel->user_list, &htl2);
2831       while (silc_hash_table_get(&htl2, NULL, (void *)&chl2)) {
2832         silc_hash_table_del(chl2->client->channels, channel);
2833         silc_hash_table_del(channel->user_list, chl2->client);
2834         silc_free(chl2);
2835       }
2836       return FALSE;
2837     }
2838
2839     /* Remove the channel entry */
2840     if (!silc_idlist_del_channel(server->local_list, channel))
2841       silc_idlist_del_channel(server->global_list, channel);
2842     server->stat.my_channels--;
2843     return FALSE;
2844   }
2845
2846   /* Send notify to channel about client leaving the channel */
2847   if (notify)
2848     silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
2849                                        SILC_NOTIFY_TYPE_LEAVE, 1,
2850                                        clidp->data, clidp->len);
2851
2852   silc_buffer_free(clidp);
2853   return TRUE;
2854 }
2855
2856 /* Returns TRUE if the given client is on the channel.  FALSE if not. 
2857    This works because we assure that the user list on the channel is
2858    always in up to date thus we can only check the channel list from 
2859    `client' which is faster than checking the user list from `channel'. */
2860
2861 int silc_server_client_on_channel(SilcClientEntry client,
2862                                   SilcChannelEntry channel)
2863 {
2864   if (!client || !channel)
2865     return FALSE;
2866
2867   if (silc_hash_table_find(client->channels, channel, NULL, NULL))
2868     return TRUE;
2869
2870   return FALSE;
2871 }
2872
2873 /* Timeout callback. This is called if connection is idle or for some
2874    other reason is not responding within some period of time. This 
2875    disconnects the remote end. */
2876
2877 SILC_TASK_CALLBACK(silc_server_timeout_remote)
2878 {
2879   SilcServer server = (SilcServer)context;
2880   SilcSocketConnection sock = server->sockets[fd];
2881
2882   SILC_LOG_DEBUG(("Start"));
2883
2884   if (!sock)
2885     return;
2886
2887   /* If we have protocol active we must assure that we call the protocol's
2888      final callback so that all the memory is freed. */
2889   if (sock->protocol) {
2890     sock->protocol->state = SILC_PROTOCOL_STATE_ERROR;
2891     silc_protocol_execute_final(sock->protocol, server->schedule);
2892     return;
2893   }
2894
2895   if (sock->user_data)
2896     silc_server_free_sock_user_data(server, sock);
2897
2898   silc_server_disconnect_remote(server, sock, "Server closed connection: "
2899                                 "Connection timeout");
2900 }
2901
2902 /* Creates new channel. Sends NEW_CHANNEL packet to primary route. This
2903    function may be used only by router. In real SILC network all channels
2904    are created by routers thus this function is never used by normal
2905    server. */
2906
2907 SilcChannelEntry silc_server_create_new_channel(SilcServer server, 
2908                                                 SilcServerID *router_id,
2909                                                 char *cipher, 
2910                                                 char *hmac,
2911                                                 char *channel_name,
2912                                                 int broadcast)
2913 {
2914   SilcChannelID *channel_id;
2915   SilcChannelEntry entry;
2916   SilcCipher key;
2917   SilcHmac newhmac;
2918
2919   SILC_LOG_DEBUG(("Creating new channel"));
2920
2921   if (!cipher)
2922     cipher = "aes-256-cbc";
2923   if (!hmac)
2924     hmac = "hmac-sha1-96";
2925
2926   /* Allocate cipher */
2927   if (!silc_cipher_alloc(cipher, &key))
2928     return NULL;
2929
2930   /* Allocate hmac */
2931   if (!silc_hmac_alloc(hmac, NULL, &newhmac)) {
2932     silc_cipher_free(key);
2933     return NULL;
2934   }
2935
2936   channel_name = strdup(channel_name);
2937
2938   /* Create the channel */
2939   silc_id_create_channel_id(router_id, server->rng, &channel_id);
2940   entry = silc_idlist_add_channel(server->local_list, channel_name, 
2941                                   SILC_CHANNEL_MODE_NONE, channel_id, 
2942                                   NULL, key, newhmac);
2943   if (!entry) {
2944     silc_free(channel_name);
2945     silc_cipher_free(key);
2946     silc_hmac_free(newhmac);
2947     return NULL;
2948   }
2949
2950   entry->cipher = strdup(cipher);
2951   entry->hmac_name = strdup(hmac);
2952
2953   /* Now create the actual key material */
2954   silc_server_create_channel_key(server, entry, 
2955                                  silc_cipher_get_key_len(key) / 8);
2956
2957   /* Notify other routers about the new channel. We send the packet
2958      to our primary route. */
2959   if (broadcast && server->standalone == FALSE)
2960     silc_server_send_new_channel(server, server->router->connection, TRUE, 
2961                                  channel_name, entry->id, 
2962                                  silc_id_get_len(entry->id, SILC_ID_CHANNEL),
2963                                  entry->mode);
2964
2965   server->stat.my_channels++;
2966
2967   return entry;
2968 }
2969
2970 /* Same as above but creates the channel with Channel ID `channel_id. */
2971
2972 SilcChannelEntry 
2973 silc_server_create_new_channel_with_id(SilcServer server, 
2974                                        char *cipher, 
2975                                        char *hmac,
2976                                        char *channel_name,
2977                                        SilcChannelID *channel_id,
2978                                        int broadcast)
2979 {
2980   SilcChannelEntry entry;
2981   SilcCipher key;
2982   SilcHmac newhmac;
2983
2984   SILC_LOG_DEBUG(("Creating new channel"));
2985
2986   if (!cipher)
2987     cipher = "aes-256-cbc";
2988   if (!hmac)
2989     hmac = "hmac-sha1-96";
2990
2991   /* Allocate cipher */
2992   if (!silc_cipher_alloc(cipher, &key))
2993     return NULL;
2994
2995   /* Allocate hmac */
2996   if (!silc_hmac_alloc(hmac, NULL, &newhmac)) {
2997     silc_cipher_free(key);
2998     return NULL;
2999   }
3000
3001   channel_name = strdup(channel_name);
3002
3003   /* Create the channel */
3004   entry = silc_idlist_add_channel(server->local_list, channel_name, 
3005                                   SILC_CHANNEL_MODE_NONE, channel_id, 
3006                                   NULL, key, newhmac);
3007   if (!entry) {
3008     silc_free(channel_name);
3009     return NULL;
3010   }
3011
3012   /* Now create the actual key material */
3013   silc_server_create_channel_key(server, entry, 
3014                                  silc_cipher_get_key_len(key) / 8);
3015
3016   /* Notify other routers about the new channel. We send the packet
3017      to our primary route. */
3018   if (broadcast && server->standalone == FALSE)
3019     silc_server_send_new_channel(server, server->router->connection, TRUE, 
3020                                  channel_name, entry->id, 
3021                                  silc_id_get_len(entry->id, SILC_ID_CHANNEL),
3022                                  entry->mode);
3023
3024   server->stat.my_channels++;
3025
3026   return entry;
3027 }
3028
3029 /* Channel's key re-key timeout callback. */
3030
3031 SILC_TASK_CALLBACK(silc_server_channel_key_rekey)
3032 {
3033   SilcServerChannelRekey rekey = (SilcServerChannelRekey)context;
3034   SilcServer server = (SilcServer)rekey->context;
3035
3036   silc_server_create_channel_key(server, rekey->channel, rekey->key_len);
3037   silc_server_send_channel_key(server, NULL, rekey->channel, FALSE);
3038
3039   silc_schedule_task_add(server->schedule, 0, 
3040                      silc_server_channel_key_rekey,
3041                      (void *)rekey, 3600, 0,
3042                      SILC_TASK_TIMEOUT,
3043                      SILC_TASK_PRI_NORMAL);
3044 }
3045
3046 /* Generates new channel key. This is used to create the initial channel key
3047    but also to re-generate new key for channel. If `key_len' is provided
3048    it is the bytes of the key length. */
3049
3050 void silc_server_create_channel_key(SilcServer server, 
3051                                     SilcChannelEntry channel,
3052                                     uint32 key_len)
3053 {
3054   int i;
3055   unsigned char channel_key[32], hash[32];
3056   uint32 len;
3057
3058   SILC_LOG_DEBUG(("Generating channel key"));
3059
3060   if (channel->mode & SILC_CHANNEL_MODE_PRIVKEY) {
3061     SILC_LOG_DEBUG(("Channel has private keys, will not generate new key"));
3062     return;
3063   }
3064
3065   if (!channel->channel_key)
3066     if (!silc_cipher_alloc("aes-256-cbc", &channel->channel_key))
3067       return;
3068
3069   if (key_len)
3070     len = key_len;
3071   else if (channel->key_len)
3072     len = channel->key_len / 8;
3073   else
3074     len = silc_cipher_get_key_len(channel->channel_key) / 8;
3075
3076   /* Create channel key */
3077   for (i = 0; i < len; i++) channel_key[i] = silc_rng_get_byte(server->rng);
3078   
3079   /* Set the key */
3080   silc_cipher_set_key(channel->channel_key, channel_key, len * 8);
3081
3082   /* Remove old key if exists */
3083   if (channel->key) {
3084     memset(channel->key, 0, channel->key_len / 8);
3085     silc_free(channel->key);
3086   }
3087
3088   /* Save the key */
3089   channel->key_len = len * 8;
3090   channel->key = silc_calloc(len, sizeof(*channel->key));
3091   memcpy(channel->key, channel_key, len);
3092   memset(channel_key, 0, sizeof(channel_key));
3093
3094   /* Generate HMAC key from the channel key data and set it */
3095   if (!channel->hmac)
3096     silc_hmac_alloc("hmac-sha1-96", NULL, &channel->hmac);
3097   silc_hash_make(channel->hmac->hash, channel->key, len, hash);
3098   silc_hmac_set_key(channel->hmac, hash, silc_hash_len(channel->hmac->hash));
3099   memset(hash, 0, sizeof(hash));
3100
3101   if (server->server_type == SILC_ROUTER) {
3102     if (!channel->rekey)
3103       channel->rekey = silc_calloc(1, sizeof(*channel->rekey));
3104     channel->rekey->context = (void *)server;
3105     channel->rekey->channel = channel;
3106     channel->rekey->key_len = key_len;
3107
3108     silc_schedule_task_del_by_callback(server->schedule,
3109                                      silc_server_channel_key_rekey);
3110     silc_schedule_task_add(server->schedule, 0, 
3111                        silc_server_channel_key_rekey,
3112                        (void *)channel->rekey, 3600, 0,
3113                        SILC_TASK_TIMEOUT,
3114                        SILC_TASK_PRI_NORMAL);
3115   }
3116 }
3117
3118 /* Saves the channel key found in the encoded `key_payload' buffer. This 
3119    function is used when we receive Channel Key Payload and also when we're
3120    processing JOIN command reply. Returns entry to the channel. */
3121
3122 SilcChannelEntry silc_server_save_channel_key(SilcServer server,
3123                                               SilcBuffer key_payload,
3124                                               SilcChannelEntry channel)
3125 {
3126   SilcChannelKeyPayload payload = NULL;
3127   SilcChannelID *id = NULL;
3128   unsigned char *tmp, hash[32];
3129   uint32 tmp_len;
3130   char *cipher;
3131
3132   SILC_LOG_DEBUG(("Start"));
3133
3134   /* Decode channel key payload */
3135   payload = silc_channel_key_payload_parse(key_payload);
3136   if (!payload) {
3137     SILC_LOG_ERROR(("Bad channel key payload, dropped"));
3138     channel = NULL;
3139     goto out;
3140   }
3141
3142   /* Get the channel entry */
3143   if (!channel) {
3144
3145     /* Get channel ID */
3146     tmp = silc_channel_key_get_id(payload, &tmp_len);
3147     id = silc_id_str2id(tmp, tmp_len, SILC_ID_CHANNEL);
3148     if (!id) {
3149       channel = NULL;
3150       goto out;
3151     }
3152
3153     channel = silc_idlist_find_channel_by_id(server->local_list, id, NULL);
3154     if (!channel) {
3155       channel = silc_idlist_find_channel_by_id(server->global_list, id, NULL);
3156       if (!channel) {
3157         SILC_LOG_ERROR(("Received key for non-existent channel"));
3158         goto out;
3159       }
3160     }
3161   }
3162
3163   tmp = silc_channel_key_get_key(payload, &tmp_len);
3164   if (!tmp) {
3165     channel = NULL;
3166     goto out;
3167   }
3168
3169   cipher = silc_channel_key_get_cipher(payload, NULL);
3170   if (!cipher) {
3171     channel = NULL;
3172     goto out;
3173   }
3174
3175   /* Remove old key if exists */
3176   if (channel->key) {
3177     memset(channel->key, 0, channel->key_len / 8);
3178     silc_free(channel->key);
3179     silc_cipher_free(channel->channel_key);
3180   }
3181
3182   /* Create new cipher */
3183   if (!silc_cipher_alloc(cipher, &channel->channel_key)) {
3184     channel = NULL;
3185     goto out;
3186   }
3187
3188   if (channel->cipher)
3189     silc_free(channel->cipher);
3190   channel->cipher = strdup(cipher);
3191
3192   /* Save the key */
3193   channel->key_len = tmp_len * 8;
3194   channel->key = silc_calloc(tmp_len, sizeof(unsigned char));
3195   memcpy(channel->key, tmp, tmp_len);
3196   silc_cipher_set_key(channel->channel_key, tmp, channel->key_len);
3197
3198   /* Generate HMAC key from the channel key data and set it */
3199   if (!channel->hmac)
3200     silc_hmac_alloc("hmac-sha1-96", NULL, &channel->hmac);
3201   silc_hash_make(channel->hmac->hash, tmp, tmp_len, hash);
3202   silc_hmac_set_key(channel->hmac, hash, silc_hash_len(channel->hmac->hash));
3203
3204   memset(hash, 0, sizeof(hash));
3205   memset(tmp, 0, tmp_len);
3206
3207   if (server->server_type == SILC_ROUTER) {
3208     if (!channel->rekey)
3209       channel->rekey = silc_calloc(1, sizeof(*channel->rekey));
3210     channel->rekey->context = (void *)server;
3211     channel->rekey->channel = channel;
3212
3213     silc_schedule_task_del_by_callback(server->schedule,
3214                                      silc_server_channel_key_rekey);
3215     silc_schedule_task_add(server->schedule, 0, 
3216                        silc_server_channel_key_rekey,
3217                        (void *)channel->rekey, 3600, 0,
3218                        SILC_TASK_TIMEOUT,
3219                        SILC_TASK_PRI_NORMAL);
3220   }
3221
3222  out:
3223   if (id)
3224     silc_free(id);
3225   if (payload)
3226     silc_channel_key_payload_free(payload);
3227
3228   return channel;
3229 }
3230
3231 /* Heartbeat callback. This function is set as argument for the
3232    silc_socket_set_heartbeat function. The library will call this function
3233    at the set time interval. */
3234
3235 void silc_server_perform_heartbeat(SilcSocketConnection sock,
3236                                    void *hb_context)
3237 {
3238   SilcServerHBContext hb = (SilcServerHBContext)hb_context;
3239
3240   SILC_LOG_DEBUG(("Sending heartbeat to %s (%s)", sock->hostname,
3241                   sock->ip));
3242
3243   /* Send the heartbeat */
3244   silc_server_send_heartbeat(hb->server, sock);
3245 }
3246
3247 /* Returns assembled of all servers in the given ID list. The packet's
3248    form is dictated by the New ID payload. */
3249
3250 static void silc_server_announce_get_servers(SilcServer server,
3251                                              SilcIDList id_list,
3252                                              SilcBuffer *servers)
3253 {
3254   SilcIDCacheList list;
3255   SilcIDCacheEntry id_cache;
3256   SilcServerEntry entry;
3257   SilcBuffer idp;
3258
3259   /* Go through all clients in the list */
3260   if (silc_idcache_get_all(id_list->servers, &list)) {
3261     if (silc_idcache_list_first(list, &id_cache)) {
3262       while (id_cache) {
3263         entry = (SilcServerEntry)id_cache->context;
3264
3265         idp = silc_id_payload_encode(entry->id, SILC_ID_SERVER);
3266
3267         *servers = silc_buffer_realloc(*servers, 
3268                                        (*servers ? 
3269                                         (*servers)->truelen + idp->len : 
3270                                         idp->len));
3271         silc_buffer_pull_tail(*servers, ((*servers)->end - (*servers)->data));
3272         silc_buffer_put(*servers, idp->data, idp->len);
3273         silc_buffer_pull(*servers, idp->len);
3274         silc_buffer_free(idp);
3275
3276         if (!silc_idcache_list_next(list, &id_cache))
3277           break;
3278       }
3279     }
3280
3281     silc_idcache_list_free(list);
3282   }
3283 }
3284
3285 /* This function is used by router to announce existing servers to our
3286    primary router when we've connected to it. */
3287
3288 void silc_server_announce_servers(SilcServer server)
3289 {
3290   SilcBuffer servers = NULL;
3291
3292   SILC_LOG_DEBUG(("Announcing servers"));
3293
3294   /* Get servers in local list */
3295   silc_server_announce_get_servers(server, server->local_list, &servers);
3296
3297   /* Get servers in global list */
3298   silc_server_announce_get_servers(server, server->global_list, &servers);
3299
3300   if (servers) {
3301     silc_buffer_push(servers, servers->data - servers->head);
3302     SILC_LOG_HEXDUMP(("servers"), servers->data, servers->len);
3303
3304     /* Send the packet */
3305     silc_server_packet_send(server, server->router->connection,
3306                             SILC_PACKET_NEW_ID, SILC_PACKET_FLAG_LIST,
3307                             servers->data, servers->len, TRUE);
3308
3309     silc_buffer_free(servers);
3310   }
3311 }
3312
3313 /* Returns assembled packet of all clients in the given ID list. The
3314    packet's form is dictated by the New ID Payload. */
3315
3316 static void silc_server_announce_get_clients(SilcServer server,
3317                                              SilcIDList id_list,
3318                                              SilcBuffer *clients)
3319 {
3320   SilcIDCacheList list;
3321   SilcIDCacheEntry id_cache;
3322   SilcClientEntry client;
3323   SilcBuffer idp;
3324
3325   /* Go through all clients in the list */
3326   if (silc_idcache_get_all(id_list->clients, &list)) {
3327     if (silc_idcache_list_first(list, &id_cache)) {
3328       while (id_cache) {
3329         client = (SilcClientEntry)id_cache->context;
3330
3331         idp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
3332
3333         *clients = silc_buffer_realloc(*clients, 
3334                                        (*clients ? 
3335                                         (*clients)->truelen + idp->len : 
3336                                         idp->len));
3337         silc_buffer_pull_tail(*clients, ((*clients)->end - (*clients)->data));
3338         silc_buffer_put(*clients, idp->data, idp->len);
3339         silc_buffer_pull(*clients, idp->len);
3340         silc_buffer_free(idp);
3341
3342         if (!silc_idcache_list_next(list, &id_cache))
3343           break;
3344       }
3345     }
3346
3347     silc_idcache_list_free(list);
3348   }
3349 }
3350
3351 /* This function is used to announce our existing clients to our router
3352    when we've connected to it. */
3353
3354 void silc_server_announce_clients(SilcServer server)
3355 {
3356   SilcBuffer clients = NULL;
3357
3358   SILC_LOG_DEBUG(("Announcing clients"));
3359
3360   /* Get clients in local list */
3361   silc_server_announce_get_clients(server, server->local_list,
3362                                    &clients);
3363
3364   /* As router we announce our global list as well */
3365   if (server->server_type == SILC_ROUTER)
3366     silc_server_announce_get_clients(server, server->global_list,
3367                                      &clients);
3368
3369   if (clients) {
3370     silc_buffer_push(clients, clients->data - clients->head);
3371     SILC_LOG_HEXDUMP(("clients"), clients->data, clients->len);
3372
3373     /* Send the packet */
3374     silc_server_packet_send(server, server->router->connection,
3375                             SILC_PACKET_NEW_ID, SILC_PACKET_FLAG_LIST,
3376                             clients->data, clients->len, TRUE);
3377
3378     silc_buffer_free(clients);
3379   }
3380 }
3381
3382 static SilcBuffer 
3383 silc_server_announce_encode_notify(SilcNotifyType notify, uint32 argc, ...)
3384 {
3385   va_list ap;
3386   SilcBuffer p;
3387
3388   va_start(ap, argc);
3389   p = silc_notify_payload_encode(notify, argc, ap);
3390   va_end(ap);
3391  
3392   return p;
3393 }
3394
3395 /* Returns assembled packets for channel users of the `channel'. */
3396
3397 void silc_server_announce_get_channel_users(SilcServer server,
3398                                             SilcChannelEntry channel,
3399                                             SilcBuffer *channel_users,
3400                                             SilcBuffer *channel_users_modes)
3401 {
3402   SilcChannelClientEntry chl;
3403   SilcHashTableList htl;
3404   SilcBuffer chidp, clidp;
3405   SilcBuffer tmp;
3406   int len;
3407   unsigned char mode[4];
3408
3409   SILC_LOG_DEBUG(("Start"));
3410
3411   /* Now find all users on the channel */
3412   chidp = silc_id_payload_encode(channel->id, SILC_ID_CHANNEL);
3413   silc_hash_table_list(channel->user_list, &htl);
3414   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
3415     clidp = silc_id_payload_encode(chl->client->id, SILC_ID_CLIENT);
3416
3417     /* JOIN Notify */
3418     tmp = silc_server_announce_encode_notify(SILC_NOTIFY_TYPE_JOIN, 2, 
3419                                              clidp->data, clidp->len,
3420                                              chidp->data, chidp->len);
3421     len = tmp->len;
3422     *channel_users = 
3423       silc_buffer_realloc(*channel_users, 
3424                           (*channel_users ? 
3425                            (*channel_users)->truelen + len : len));
3426     silc_buffer_pull_tail(*channel_users, 
3427                           ((*channel_users)->end - 
3428                            (*channel_users)->data));
3429     
3430     silc_buffer_put(*channel_users, tmp->data, tmp->len);
3431     silc_buffer_pull(*channel_users, len);
3432     silc_buffer_free(tmp);
3433
3434     /* CUMODE notify for mode change on the channel */
3435     SILC_PUT32_MSB(chl->mode, mode);
3436     tmp = silc_server_announce_encode_notify(SILC_NOTIFY_TYPE_CUMODE_CHANGE, 
3437                                              3, clidp->data, clidp->len,
3438                                              mode, 4,
3439                                              clidp->data, clidp->len);
3440     len = tmp->len;
3441     *channel_users_modes = 
3442       silc_buffer_realloc(*channel_users_modes, 
3443                           (*channel_users_modes ? 
3444                            (*channel_users_modes)->truelen + len : len));
3445     silc_buffer_pull_tail(*channel_users_modes, 
3446                           ((*channel_users_modes)->end - 
3447                            (*channel_users_modes)->data));
3448     
3449     silc_buffer_put(*channel_users_modes, tmp->data, tmp->len);
3450     silc_buffer_pull(*channel_users_modes, len);
3451     silc_buffer_free(tmp);
3452
3453     silc_buffer_free(clidp);
3454   }
3455   silc_buffer_free(chidp);
3456 }
3457
3458 /* Returns assembled packets for all channels and users on those channels
3459    from the given ID List. The packets are in the form dictated by the
3460    New Channel and New Channel User payloads. */
3461
3462 void silc_server_announce_get_channels(SilcServer server,
3463                                        SilcIDList id_list,
3464                                        SilcBuffer *channels,
3465                                        SilcBuffer *channel_users,
3466                                        SilcBuffer **channel_users_modes,
3467                                        uint32 *channel_users_modes_c,
3468                                        SilcChannelID ***channel_ids)
3469 {
3470   SilcIDCacheList list;
3471   SilcIDCacheEntry id_cache;
3472   SilcChannelEntry channel;
3473   unsigned char *cid;
3474   uint32 id_len;
3475   uint16 name_len;
3476   int len;
3477   int i = *channel_users_modes_c;
3478
3479   SILC_LOG_DEBUG(("Start"));
3480
3481   /* Go through all channels in the list */
3482   if (silc_idcache_get_all(id_list->channels, &list)) {
3483     if (silc_idcache_list_first(list, &id_cache)) {
3484       while (id_cache) {
3485         channel = (SilcChannelEntry)id_cache->context;
3486         
3487         cid = silc_id_id2str(channel->id, SILC_ID_CHANNEL);
3488         id_len = silc_id_get_len(channel->id, SILC_ID_CHANNEL);
3489         name_len = strlen(channel->channel_name);
3490
3491         len = 4 + name_len + id_len + 4;
3492         *channels = 
3493           silc_buffer_realloc(*channels, 
3494                               (*channels ? (*channels)->truelen + len : len));
3495         silc_buffer_pull_tail(*channels, 
3496                               ((*channels)->end - (*channels)->data));
3497         silc_buffer_format(*channels,
3498                            SILC_STR_UI_SHORT(name_len),
3499                            SILC_STR_UI_XNSTRING(channel->channel_name, 
3500                                                 name_len),
3501                            SILC_STR_UI_SHORT(id_len),
3502                            SILC_STR_UI_XNSTRING(cid, id_len),
3503                            SILC_STR_UI_INT(channel->mode),
3504                            SILC_STR_END);
3505         silc_buffer_pull(*channels, len);
3506
3507         *channel_users_modes = silc_realloc(*channel_users_modes,
3508                                             sizeof(**channel_users_modes) * 
3509                                             (i + 1));
3510         (*channel_users_modes)[i] = NULL;
3511         *channel_ids = silc_realloc(*channel_ids, 
3512                                     sizeof(**channel_ids) * (i + 1));
3513         (*channel_ids)[i] = NULL;
3514         silc_server_announce_get_channel_users(server, channel,
3515                                                channel_users,
3516                                                channel_users_modes[i]);
3517         (*channel_ids)[i] = channel->id;
3518         i++;
3519
3520         if (!silc_idcache_list_next(list, &id_cache))
3521           break;
3522       }
3523
3524       *channel_users_modes_c += i;
3525     }
3526
3527     silc_idcache_list_free(list);
3528   }
3529 }
3530
3531 /* This function is used to announce our existing channels to our router
3532    when we've connected to it. This also announces the users on the
3533    channels to the router. */
3534
3535 void silc_server_announce_channels(SilcServer server)
3536 {
3537   SilcBuffer channels = NULL, channel_users = NULL;
3538   SilcBuffer *channel_users_modes = NULL;
3539   uint32 channel_users_modes_c = 0;
3540   SilcChannelID **channel_ids = NULL;
3541
3542   SILC_LOG_DEBUG(("Announcing channels and channel users"));
3543
3544   /* Get channels and channel users in local list */
3545   silc_server_announce_get_channels(server, server->local_list,
3546                                     &channels, &channel_users,
3547                                     &channel_users_modes,
3548                                     &channel_users_modes_c,
3549                                     &channel_ids);
3550
3551   /* Get channels and channel users in global list */
3552   silc_server_announce_get_channels(server, server->global_list,
3553                                     &channels, &channel_users,
3554                                     &channel_users_modes,
3555                                     &channel_users_modes_c,
3556                                     &channel_ids);
3557
3558   if (channels) {
3559     silc_buffer_push(channels, channels->data - channels->head);
3560     SILC_LOG_HEXDUMP(("channels"), channels->data, channels->len);
3561
3562     /* Send the packet */
3563     silc_server_packet_send(server, server->router->connection,
3564                             SILC_PACKET_NEW_CHANNEL, SILC_PACKET_FLAG_LIST,
3565                             channels->data, channels->len,
3566                             FALSE);
3567
3568     silc_buffer_free(channels);
3569   }
3570
3571   if (channel_users) {
3572     silc_buffer_push(channel_users, channel_users->data - channel_users->head);
3573     SILC_LOG_HEXDUMP(("channel users"), channel_users->data, 
3574                      channel_users->len);
3575
3576     /* Send the packet */
3577     silc_server_packet_send(server, server->router->connection,
3578                             SILC_PACKET_NOTIFY, SILC_PACKET_FLAG_LIST,
3579                             channel_users->data, channel_users->len,
3580                             FALSE);
3581
3582     silc_buffer_free(channel_users);
3583   }
3584
3585   if (channel_users_modes) {
3586     int i;
3587
3588     for (i = 0; i < channel_users_modes_c; i++) {
3589       silc_buffer_push(channel_users_modes[i], 
3590                        channel_users_modes[i]->data - 
3591                        channel_users_modes[i]->head);
3592       SILC_LOG_HEXDUMP(("channel users modes"), channel_users_modes[i]->data, 
3593                        channel_users_modes[i]->len);
3594       silc_server_packet_send_dest(server, server->router->connection,
3595                                    SILC_PACKET_NOTIFY, SILC_PACKET_FLAG_LIST,
3596                                    channel_ids[i], SILC_ID_CHANNEL,
3597                                    channel_users_modes[i]->data, 
3598                                    channel_users_modes[i]->len,
3599                                    FALSE);
3600       silc_buffer_free(channel_users_modes[i]);
3601     }
3602     silc_free(channel_users_modes);
3603     silc_free(channel_ids);
3604   }
3605 }
3606
3607 /* Failure timeout callback. If this is called then we will immediately
3608    process the received failure. We always process the failure with timeout
3609    since we do not want to blindly trust to received failure packets. 
3610    This won't be called (the timeout is cancelled) if the failure was
3611    bogus (it is bogus if remote does not close the connection after sending
3612    the failure). */
3613
3614 SILC_TASK_CALLBACK(silc_server_failure_callback)
3615 {
3616   SilcServerFailureContext f = (SilcServerFailureContext)context;
3617
3618   if (f->sock->protocol) {
3619     f->sock->protocol->state = SILC_PROTOCOL_STATE_FAILURE;
3620     silc_protocol_execute(f->sock->protocol, f->server->schedule, 0, 0);
3621   }
3622
3623   silc_free(f);
3624 }
3625
3626 /* Assembles user list and users mode list from the `channel'. */
3627
3628 void silc_server_get_users_on_channel(SilcServer server,
3629                                       SilcChannelEntry channel,
3630                                       SilcBuffer *user_list,
3631                                       SilcBuffer *mode_list,
3632                                       uint32 *user_count)
3633 {
3634   SilcChannelClientEntry chl;
3635   SilcHashTableList htl;
3636   SilcBuffer client_id_list;
3637   SilcBuffer client_mode_list;
3638   SilcBuffer idp;
3639   uint32 list_count = 0, len = 0;
3640
3641   silc_hash_table_list(channel->user_list, &htl);
3642   while (silc_hash_table_get(&htl, NULL, (void *)&chl))
3643     len += (silc_id_get_len(chl->client->id, SILC_ID_CLIENT) + 4);
3644
3645   client_id_list = silc_buffer_alloc(len);
3646   client_mode_list = 
3647     silc_buffer_alloc(4 * silc_hash_table_count(channel->user_list));
3648   silc_buffer_pull_tail(client_id_list, SILC_BUFFER_END(client_id_list));
3649   silc_buffer_pull_tail(client_mode_list, SILC_BUFFER_END(client_mode_list));
3650
3651   silc_hash_table_list(channel->user_list, &htl);
3652   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
3653     /* Client ID */
3654     idp = silc_id_payload_encode(chl->client->id, SILC_ID_CLIENT);
3655     silc_buffer_put(client_id_list, idp->data, idp->len);
3656     silc_buffer_pull(client_id_list, idp->len);
3657     silc_buffer_free(idp);
3658
3659     /* Client's mode on channel */
3660     SILC_PUT32_MSB(chl->mode, client_mode_list->data);
3661     silc_buffer_pull(client_mode_list, 4);
3662
3663     list_count++;
3664   }
3665   silc_buffer_push(client_id_list, 
3666                    client_id_list->data - client_id_list->head);
3667   silc_buffer_push(client_mode_list, 
3668                    client_mode_list->data - client_mode_list->head);
3669
3670   *user_list = client_id_list;
3671   *mode_list = client_mode_list;
3672   *user_count = list_count;
3673 }
3674
3675 /* Saves users and their modes to the `channel'. */
3676
3677 void silc_server_save_users_on_channel(SilcServer server,
3678                                        SilcSocketConnection sock,
3679                                        SilcChannelEntry channel,
3680                                        SilcClientID *noadd,
3681                                        SilcBuffer user_list,
3682                                        SilcBuffer mode_list,
3683                                        uint32 user_count)
3684 {
3685   int i;
3686
3687   /* Cache the received Client ID's and modes. This cache expires
3688      whenever server sends notify message to channel. It means two things;
3689      some user has joined or leaved the channel. XXX TODO! */
3690   for (i = 0; i < user_count; i++) {
3691     uint16 idp_len;
3692     uint32 mode;
3693     SilcClientID *client_id;
3694     SilcClientEntry client;
3695
3696     /* Client ID */
3697     SILC_GET16_MSB(idp_len, user_list->data + 2);
3698     idp_len += 4;
3699     client_id = silc_id_payload_parse_id(user_list->data, idp_len);
3700     silc_buffer_pull(user_list, idp_len);
3701     if (!client_id)
3702       continue;
3703
3704     /* Mode */
3705     SILC_GET32_MSB(mode, mode_list->data);
3706     silc_buffer_pull(mode_list, 4);
3707
3708     if (noadd && SILC_ID_CLIENT_COMPARE(client_id, noadd)) {
3709       silc_free(client_id);
3710       continue;
3711     }
3712     
3713     /* Check if we have this client cached already. */
3714     client = silc_idlist_find_client_by_id(server->local_list, client_id,
3715                                            NULL);
3716     if (!client)
3717       client = silc_idlist_find_client_by_id(server->global_list, 
3718                                              client_id, NULL);
3719     if (!client) {
3720       /* If router did not find such Client ID in its lists then this must
3721          be bogus client or some router in the net is buggy. */
3722       if (server->server_type == SILC_ROUTER) {
3723         silc_free(client_id);
3724         continue;
3725       }
3726
3727       /* We don't have that client anywhere, add it. The client is added
3728          to global list since server didn't have it in the lists so it must be 
3729          global. */
3730       client = silc_idlist_add_client(server->global_list, NULL, NULL, NULL,
3731                                       silc_id_dup(client_id, SILC_ID_CLIENT), 
3732                                       sock->user_data, NULL);
3733       if (!client) {
3734         silc_free(client_id);
3735         continue;
3736       }
3737
3738       client->data.registered = TRUE;
3739     }
3740
3741     silc_free(client_id);
3742
3743     if (!silc_server_client_on_channel(client, channel)) {
3744       /* Client was not on the channel, add it. */
3745       SilcChannelClientEntry chl = silc_calloc(1, sizeof(*chl));
3746       chl->client = client;
3747       chl->mode = mode;
3748       chl->channel = channel;
3749       silc_hash_table_add(channel->user_list, chl->client, chl);
3750       silc_hash_table_add(client->channels, chl->channel, chl);
3751     }
3752   }
3753 }
3754
3755 /* Lookups route to the client indicated by the `id_data'. The connection
3756    object and internal data object is returned. Returns NULL if route
3757    could not be found to the client. If the `client_id' is specified then
3758    it is used and the `id_data' is ignored. */
3759
3760 SilcSocketConnection silc_server_get_client_route(SilcServer server,
3761                                                   unsigned char *id_data,
3762                                                   uint32 id_len,
3763                                                   SilcClientID *client_id,
3764                                                   SilcIDListData *idata)
3765 {
3766   SilcClientID *id;
3767   SilcClientEntry client;
3768
3769   SILC_LOG_DEBUG(("Start"));
3770
3771   /* Decode destination Client ID */
3772   if (!client_id) {
3773     id = silc_id_str2id(id_data, id_len, SILC_ID_CLIENT);
3774     if (!id) {
3775       SILC_LOG_ERROR(("Could not decode destination Client ID, dropped"));
3776       return NULL;
3777     }
3778   } else {
3779     id = silc_id_dup(client_id, SILC_ID_CLIENT);
3780   }
3781
3782   /* If the destination belongs to our server we don't have to route
3783      the packet anywhere but to send it to the local destination. */
3784   client = silc_idlist_find_client_by_id(server->local_list, id, NULL);
3785   if (client) {
3786     silc_free(id);
3787
3788     if (client->data.registered == FALSE)
3789       return NULL;
3790
3791     /* If we are router and the client has router then the client is in
3792        our cell but not directly connected to us. */
3793     if (server->server_type == SILC_ROUTER && client->router) {
3794       /* We are of course in this case the client's router thus the route
3795          to the client is the server who owns the client. So, we will send
3796          the packet to that server. */
3797       if (idata)
3798         *idata = (SilcIDListData)client->router;
3799       return client->router->connection;
3800     }
3801
3802     /* Seems that client really is directly connected to us */
3803     if (idata)
3804       *idata = (SilcIDListData)client;
3805     return client->connection;
3806   }
3807
3808   /* Destination belongs to someone not in this server. If we are normal
3809      server our action is to send the packet to our router. */
3810   if (server->server_type == SILC_SERVER && !server->standalone) {
3811     silc_free(id);
3812     if (idata)
3813       *idata = (SilcIDListData)server->router;
3814     return server->router->connection;
3815   }
3816
3817   /* We are router and we will perform route lookup for the destination 
3818      and send the packet to fastest route. */
3819   if (server->server_type == SILC_ROUTER && !server->standalone) {
3820     /* Check first that the ID is valid */
3821     client = silc_idlist_find_client_by_id(server->global_list, id, NULL);
3822     if (client) {
3823       SilcSocketConnection dst_sock;
3824
3825       dst_sock = silc_server_route_get(server, id, SILC_ID_CLIENT);
3826
3827       silc_free(id);
3828       if (idata)
3829         *idata = (SilcIDListData)dst_sock->user_data;
3830       return dst_sock;
3831     }
3832   }
3833
3834   silc_free(id);
3835   return NULL;
3836 }
3837
3838 /* Encodes and returns channel list of channels the `client' has joined.
3839    Secret channels are not put to the list. */
3840
3841 SilcBuffer silc_server_get_client_channel_list(SilcServer server,
3842                                                SilcClientEntry client)
3843 {
3844   SilcBuffer buffer = NULL;
3845   SilcChannelEntry channel;
3846   SilcChannelClientEntry chl;
3847   SilcHashTableList htl;
3848   unsigned char *cid;
3849   uint32 id_len;
3850   uint16 name_len;
3851   int len;
3852
3853   silc_hash_table_list(client->channels, &htl);
3854   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
3855     channel = chl->channel;
3856
3857     if (channel->mode & SILC_CHANNEL_MODE_SECRET)
3858       continue;
3859
3860     cid = silc_id_id2str(channel->id, SILC_ID_CHANNEL);
3861     id_len = silc_id_get_len(channel->id, SILC_ID_CHANNEL);
3862     name_len = strlen(channel->channel_name);
3863     
3864     len = 4 + name_len + id_len + 4;
3865     buffer = silc_buffer_realloc(buffer, 
3866                                  (buffer ? (buffer)->truelen + len : len));
3867     silc_buffer_pull_tail(buffer, ((buffer)->end - (buffer)->data));
3868     silc_buffer_format(buffer,
3869                        SILC_STR_UI_SHORT(name_len),
3870                        SILC_STR_UI_XNSTRING(channel->channel_name, 
3871                                             name_len),
3872                        SILC_STR_UI_SHORT(id_len),
3873                        SILC_STR_UI_XNSTRING(cid, id_len),
3874                        SILC_STR_UI_INT(chl->mode), /* Client's mode */
3875                        SILC_STR_END);
3876     silc_buffer_pull(buffer, len);
3877     silc_free(cid);
3878   }
3879
3880   if (buffer)
3881     silc_buffer_push(buffer, buffer->data - buffer->head);
3882
3883   return buffer;
3884 }
3885
3886 /* Finds client entry by Client ID and if it is not found then resolves
3887    it using WHOIS command. */
3888
3889 SilcClientEntry silc_server_get_client_resolve(SilcServer server,
3890                                                SilcClientID *client_id)
3891 {
3892   SilcClientEntry client;
3893
3894   client = silc_idlist_find_client_by_id(server->local_list, client_id, NULL);
3895   if (!client) {
3896     client = silc_idlist_find_client_by_id(server->global_list, 
3897                                            client_id, NULL);
3898     if (!client && server->server_type == SILC_ROUTER)
3899       return NULL;
3900   }
3901
3902   if (!client && server->standalone)
3903     return NULL;
3904
3905   if (!client || !client->nickname || !client->username) {
3906     SilcBuffer buffer, idp;
3907
3908     idp = silc_id_payload_encode(client_id, SILC_ID_CLIENT);
3909     buffer = silc_command_payload_encode_va(SILC_COMMAND_WHOIS,
3910                                             ++server->cmd_ident, 1,
3911                                             3, idp->data, idp->len);
3912     silc_server_packet_send(server, client ? client->router->connection :
3913                             server->router->connection,
3914                             SILC_PACKET_COMMAND, 0,
3915                             buffer->data, buffer->len, FALSE);
3916     silc_buffer_free(idp);
3917     silc_buffer_free(buffer);
3918     return NULL;
3919   }
3920
3921   return client;
3922 }
3923
3924 /* A timeout callback for the re-key. We will be the initiator of the
3925    re-key protocol. */
3926
3927 SILC_TASK_CALLBACK(silc_server_rekey_callback)
3928 {
3929   SilcSocketConnection sock = (SilcSocketConnection)context;
3930   SilcIDListData idata = (SilcIDListData)sock->user_data;
3931   SilcServer server = (SilcServer)idata->rekey->context;
3932   SilcProtocol protocol;
3933   SilcServerRekeyInternalContext *proto_ctx;
3934
3935   SILC_LOG_DEBUG(("Start"));
3936
3937   /* Allocate internal protocol context. This is sent as context
3938      to the protocol. */
3939   proto_ctx = silc_calloc(1, sizeof(*proto_ctx));
3940   proto_ctx->server = (void *)server;
3941   proto_ctx->sock = sock;
3942   proto_ctx->responder = FALSE;
3943   proto_ctx->pfs = idata->rekey->pfs;
3944       
3945   /* Perform rekey protocol. Will call the final callback after the
3946      protocol is over. */
3947   silc_protocol_alloc(SILC_PROTOCOL_SERVER_REKEY, 
3948                       &protocol, proto_ctx, silc_server_rekey_final);
3949   sock->protocol = protocol;
3950       
3951   /* Run the protocol */
3952   silc_protocol_execute(protocol, server->schedule, 0, 0);
3953
3954   /* Re-register re-key timeout */
3955   silc_schedule_task_add(server->schedule, sock->sock, 
3956                      silc_server_rekey_callback,
3957                      context, idata->rekey->timeout, 0,
3958                      SILC_TASK_TIMEOUT, SILC_TASK_PRI_NORMAL);
3959 }
3960
3961 /* The final callback for the REKEY protocol. This will actually take the
3962    new key material into use. */
3963
3964 SILC_TASK_CALLBACK_GLOBAL(silc_server_rekey_final)
3965 {
3966   SilcProtocol protocol = (SilcProtocol)context;
3967   SilcServerRekeyInternalContext *ctx =
3968     (SilcServerRekeyInternalContext *)protocol->context;
3969   SilcServer server = (SilcServer)ctx->server;
3970   SilcSocketConnection sock = ctx->sock;
3971
3972   SILC_LOG_DEBUG(("Start"));
3973
3974   if (protocol->state == SILC_PROTOCOL_STATE_ERROR ||
3975       protocol->state == SILC_PROTOCOL_STATE_FAILURE) {
3976     /* Error occured during protocol */
3977     silc_protocol_cancel(protocol, server->schedule);
3978     silc_protocol_free(protocol);
3979     sock->protocol = NULL;
3980     if (ctx->packet)
3981       silc_packet_context_free(ctx->packet);
3982     if (ctx->ske)
3983       silc_ske_free(ctx->ske);
3984     silc_free(ctx);
3985     return;
3986   }
3987
3988   /* Cleanup */
3989   silc_protocol_free(protocol);
3990   sock->protocol = NULL;
3991   if (ctx->packet)
3992     silc_packet_context_free(ctx->packet);
3993   if (ctx->ske)
3994     silc_ske_free(ctx->ske);
3995   silc_free(ctx);
3996 }