Do not call final protocol callback for backup router proto
[silc.git] / apps / silcd / server.c
1 /*
2
3   server.c 
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 1997 - 2002 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19 /*
20  * This is the actual SILC server than handles everything relating to
21  * servicing the SILC connections. This is also a SILC router as a router
22  * is also normal server.
23  */
24 /* $Id$ */
25
26 #include "serverincludes.h"
27 #include "server_internal.h"
28
29 /* Static prototypes */
30 SILC_TASK_CALLBACK(silc_server_rehash_close_connection);
31 SILC_TASK_CALLBACK(silc_server_connect_to_router_retry);
32 SILC_TASK_CALLBACK(silc_server_connect_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_close_connection_final);
41 SILC_TASK_CALLBACK(silc_server_free_client_data_timeout);
42 SILC_TASK_CALLBACK(silc_server_timeout_remote);
43 SILC_TASK_CALLBACK(silc_server_channel_key_rekey);
44 SILC_TASK_CALLBACK(silc_server_get_stats);
45
46 /* Allocates a new SILC server object. This has to be done before the server
47    can be used. After allocation one must call silc_server_init to initialize
48    the server. The new allocated server object is returned to the new_server
49    argument. */
50
51 int silc_server_alloc(SilcServer *new_server)
52 {
53   SilcServer server;
54
55   SILC_LOG_DEBUG(("Allocating new server object"));
56
57   server = silc_calloc(1, sizeof(*server));
58   server->server_type = SILC_SERVER;
59   server->standalone = TRUE;
60   server->local_list = silc_calloc(1, sizeof(*server->local_list));
61   server->global_list = silc_calloc(1, sizeof(*server->global_list));
62   server->pending_commands = silc_dlist_init();
63 #ifdef SILC_SIM
64   server->sim = silc_dlist_init();
65 #endif
66
67   *new_server = server;
68
69   return TRUE;
70 }
71
72 /* Free's the SILC server object. This is called at the very end before
73    the program ends. */
74
75 void silc_server_free(SilcServer server)
76 {
77   SilcIDCacheList list;
78   SilcIDCacheEntry cache;
79
80   if (!server)
81     return;
82
83 #ifdef SILC_SIM
84   {
85     SilcSim sim;
86     silc_dlist_start(server->sim);
87     while ((sim = silc_dlist_get(server->sim)) != SILC_LIST_END) {
88       silc_dlist_del(server->sim, sim);
89       silc_sim_close(sim);
90       silc_sim_free(sim);
91     }
92     silc_dlist_uninit(server->sim);
93   }
94 #endif
95
96   silc_server_backup_free(server);
97   silc_server_config_unref(&server->config_ref);
98   if (server->rng)
99     silc_rng_free(server->rng);
100   if (server->pkcs)
101     silc_pkcs_free(server->pkcs);
102   if (server->public_key)
103     silc_pkcs_public_key_free(server->public_key);
104   if (server->private_key)
105     silc_pkcs_private_key_free(server->private_key);
106   if (server->pending_commands)
107     silc_dlist_uninit(server->pending_commands);
108   if (server->id_entry)
109     silc_idlist_del_server(server->local_list, server->id_entry);
110
111   /* Delete all channels */
112   list = NULL;
113   if (silc_idcache_get_all(server->local_list->channels, &list) &&
114       silc_idcache_list_first(list, &cache)) {
115     silc_idlist_del_channel(server->local_list, cache->context);
116     while (silc_idcache_list_next(list, &cache))
117       silc_idlist_del_channel(server->local_list, cache->context);
118   }
119   if (list)
120     silc_idcache_list_free(list);
121   list = NULL;
122   if (silc_idcache_get_all(server->global_list->channels, &list) &&
123       silc_idcache_list_first(list, &cache)) {
124     silc_idlist_del_channel(server->global_list, cache->context);
125     while (silc_idcache_list_next(list, &cache))
126       silc_idlist_del_channel(server->global_list, cache->context);
127   }
128   if (list)
129     silc_idcache_list_free(list);
130
131   /* Delete all clients */
132   list = NULL;
133   if (silc_idcache_get_all(server->local_list->clients, &list) &&
134       silc_idcache_list_first(list, &cache)) {
135     silc_idlist_del_client(server->local_list, cache->context);
136     while (silc_idcache_list_next(list, &cache))
137       silc_idlist_del_client(server->local_list, cache->context);
138   }
139   if (list)
140     silc_idcache_list_free(list);
141   list = NULL;
142   if (silc_idcache_get_all(server->global_list->clients, &list) &&
143       silc_idcache_list_first(list, &cache)) {
144     silc_idlist_del_client(server->global_list, cache->context);
145     while (silc_idcache_list_next(list, &cache))
146       silc_idlist_del_client(server->global_list, cache->context);
147   }
148   if (list)
149     silc_idcache_list_free(list);
150
151   /* Delete all servers */
152   list = NULL;
153   if (silc_idcache_get_all(server->local_list->servers, &list) &&
154       silc_idcache_list_first(list, &cache)) {
155     silc_idlist_del_server(server->local_list, cache->context);
156     while (silc_idcache_list_next(list, &cache))
157       silc_idlist_del_server(server->local_list, cache->context);
158   }
159   if (list)
160     silc_idcache_list_free(list);
161   list = NULL;
162   if (silc_idcache_get_all(server->global_list->servers, &list) &&
163       silc_idcache_list_first(list, &cache)) {
164     silc_idlist_del_server(server->global_list, cache->context);
165     while (silc_idcache_list_next(list, &cache))
166       silc_idlist_del_server(server->global_list, cache->context);
167   }
168   if (list)
169     silc_idcache_list_free(list);
170
171   silc_idcache_free(server->local_list->clients);
172   silc_idcache_free(server->local_list->servers);
173   silc_idcache_free(server->local_list->channels);
174   silc_idcache_free(server->global_list->clients);
175   silc_idcache_free(server->global_list->servers);
176   silc_idcache_free(server->global_list->channels);
177   silc_hash_table_free(server->watcher_list);
178
179   silc_hash_free(server->md5hash);
180   silc_hash_free(server->sha1hash);
181   silc_hmac_unregister_all();
182   silc_hash_unregister_all();
183   silc_cipher_unregister_all();
184   silc_pkcs_unregister_all();
185
186   silc_free(server->local_list);
187   silc_free(server->global_list);
188   silc_free(server->server_name);
189   silc_free(server->id_string);
190   silc_free(server->purge_i);
191   silc_free(server->purge_g);
192   silc_free(server);
193 }
194
195 /* Creates a new server listener. */
196
197 static bool silc_server_listen(SilcServer server, const char *server_ip,
198                                SilcUInt16 port, int *sock)
199 {
200   *sock = silc_net_create_server(port, server_ip);
201   if (*sock < 0) {
202     SILC_SERVER_LOG_ERROR(("Could not create server listener: %s on %hu",
203                         server_ip, port));
204     return FALSE;
205   }
206   return TRUE;
207 }
208
209 /* Adds a secondary listener. */
210
211 bool silc_server_init_secondary(SilcServer server)
212 {
213   int sock = 0, sock_list[server->config->param.connections_max];
214   SilcSocketConnection newsocket = NULL;
215   SilcServerConfigServerInfoInterface *interface;
216
217   for (interface = server->config->server_info->secondary; interface; 
218         interface = interface->next, sock++) {
219
220     if (!silc_server_listen(server,
221         interface->server_ip, interface->port, &sock_list[sock]))
222       goto err;
223
224     /* Set socket to non-blocking mode */
225     silc_net_set_socket_nonblock(sock_list[sock]);
226
227     /* Add ourselves also to the socket table. The entry allocated above
228        is sent as argument for fast referencing in the future. */
229     silc_socket_alloc(sock_list[sock],
230                       SILC_SOCKET_TYPE_SERVER, NULL, &newsocket);
231     server->sockets[sock_list[sock]] = newsocket;
232     SILC_SET_LISTENER(newsocket);
233
234     /* Perform name and address lookups to resolve the listenning address
235        and port. */
236     if (!silc_net_check_local_by_sock(sock_list[sock], &newsocket->hostname,
237                             &newsocket->ip)) {
238       if ((server->config->require_reverse_lookup && !newsocket->hostname) ||
239         !newsocket->ip) {
240         SILC_LOG_ERROR(("IP/DNS lookup failed for local host %s",
241                       newsocket->hostname ? newsocket->hostname :
242                       newsocket->ip ? newsocket->ip : ""));
243         server->stat.conn_failures++;
244         goto err;
245       }
246       if (!newsocket->hostname)
247         newsocket->hostname = strdup(newsocket->ip);
248     }
249     newsocket->port = silc_net_get_local_port(sock);
250
251     newsocket->user_data = (void *)server->id_entry;
252     silc_schedule_task_add(server->schedule, sock_list[sock],
253                            silc_server_accept_new_connection,
254                            (void *)server, 0, 0,
255                            SILC_TASK_FD,
256                            SILC_TASK_PRI_NORMAL);
257   }
258
259   return TRUE;
260
261  err:
262   do silc_net_close_server(sock_list[sock--]); while (sock >= 0);
263   return FALSE;
264 }
265
266 /* Initializes the entire SILC server. This is called always before running
267    the server. This is called only once at the initialization of the program.
268    This binds the server to its listenning port. After this function returns
269    one should call silc_server_run to start the server. This returns TRUE
270    when everything is ok to run the server. Configuration file must be
271    read and parsed before calling this. */
272
273 bool silc_server_init(SilcServer server)
274 {
275   int sock;
276   SilcServerID *id;
277   SilcServerEntry id_entry;
278   SilcIDListPurge purge;
279   SilcSocketConnection newsocket = NULL;
280
281   SILC_LOG_DEBUG(("Initializing server"));
282
283   server->starttime = time(NULL);
284
285   /* Take config object for us */
286   silc_server_config_ref(&server->config_ref, server->config,
287                          server->config);
288
289   /* Steal public and private key from the config object */
290   server->public_key = server->config->server_info->public_key;
291   server->private_key = server->config->server_info->private_key;
292   server->config->server_info->public_key = NULL;
293   server->config->server_info->private_key = NULL;
294
295   /* Register all configured ciphers, PKCS and hash functions. */
296   if (!silc_server_config_register_ciphers(server))
297     silc_cipher_register_default();
298   if (!silc_server_config_register_pkcs(server))
299     silc_pkcs_register_default();
300   if (!silc_server_config_register_hashfuncs(server))
301     silc_hash_register_default();
302   if (!silc_server_config_register_hmacs(server))
303     silc_hmac_register_default();
304
305   /* Initialize random number generator for the server. */
306   server->rng = silc_rng_alloc();
307   silc_rng_init(server->rng);
308   silc_rng_global_init(server->rng);
309
310   /* Initialize hash functions for server to use */
311   silc_hash_alloc("md5", &server->md5hash);
312   silc_hash_alloc("sha1", &server->sha1hash);
313
314   /* Allocate PKCS context for local public and private keys */
315   if (!silc_pkcs_alloc(server->public_key->name, &server->pkcs))
316     goto err;
317   silc_pkcs_public_key_set(server->pkcs, server->public_key);
318   silc_pkcs_private_key_set(server->pkcs, server->private_key);
319
320   /* Initialize the scheduler */
321   server->schedule = silc_schedule_init(server->config->param.connections_max,
322                                         server);
323   if (!server->schedule)
324     goto err;
325
326   /* First, register log files configuration for error output */
327   silc_server_config_setlogfiles(server);
328
329   /* Initialize ID caches */
330   server->local_list->clients =
331     silc_idcache_alloc(0, SILC_ID_CLIENT, silc_idlist_client_destructor);
332   server->local_list->servers = silc_idcache_alloc(0, SILC_ID_SERVER, NULL);
333   server->local_list->channels = silc_idcache_alloc(0, SILC_ID_CHANNEL, NULL);
334
335   /* These are allocated for normal server as well as these hold some
336      global information that the server has fetched from its router. For
337      router these are used as they are supposed to be used on router. */
338   server->global_list->clients =
339     silc_idcache_alloc(0, SILC_ID_CLIENT, silc_idlist_client_destructor);
340   server->global_list->servers = silc_idcache_alloc(0, SILC_ID_SERVER, NULL);
341   server->global_list->channels = silc_idcache_alloc(0, SILC_ID_CHANNEL, NULL);
342
343   /* Init watcher list */
344   server->watcher_list =
345     silc_hash_table_alloc(1, silc_hash_client_id_hash, NULL,
346                           silc_hash_data_compare, (void *)CLIENTID_HASH_LEN,
347                           NULL, NULL, TRUE);
348   if (!server->watcher_list)
349     goto err;
350
351   /* Create a listening server */
352   if (!silc_server_listen(server,
353                 server->config->server_info->primary == NULL ? NULL :
354                         server->config->server_info->primary->server_ip,
355                 server->config->server_info->primary == NULL ? 0 :
356                         server->config->server_info->primary->port,
357                 &sock))
358     goto err;
359
360   /* Set socket to non-blocking mode */
361   silc_net_set_socket_nonblock(sock);
362   server->sock = sock;
363
364   /* Allocate the entire socket list that is used in server. Eventually
365      all connections will have entry in this table (it is a table of
366      pointers to the actual object that is allocated individually
367      later). */
368   server->sockets = silc_calloc(server->config->param.connections_max,
369                                 sizeof(*server->sockets));
370   if (!server->sockets)
371     goto err;
372
373   /* Add ourselves also to the socket table. The entry allocated above
374      is sent as argument for fast referencing in the future. */
375   silc_socket_alloc(sock, SILC_SOCKET_TYPE_SERVER, NULL, &newsocket);
376   server->sockets[sock] = newsocket;
377   SILC_SET_LISTENER(newsocket);
378
379   /* Perform name and address lookups to resolve the listenning address
380      and port. */
381   if (!silc_net_check_local_by_sock(sock, &newsocket->hostname,
382                                     &newsocket->ip)) {
383     if ((server->config->require_reverse_lookup && !newsocket->hostname) ||
384         !newsocket->ip) {
385       SILC_LOG_ERROR(("IP/DNS lookup failed for local host %s",
386                       newsocket->hostname ? newsocket->hostname :
387                       newsocket->ip ? newsocket->ip : ""));
388       server->stat.conn_failures++;
389       goto err;
390     }
391     if (!newsocket->hostname)
392       newsocket->hostname = strdup(newsocket->ip);
393   }
394   newsocket->port = silc_net_get_local_port(sock);
395
396   /* Create a Server ID for the server. */
397   silc_id_create_server_id(newsocket->ip, newsocket->port, server->rng, &id);
398   if (!id)
399     goto err;
400
401   server->id = id;
402   server->id_string = silc_id_id2str(id, SILC_ID_SERVER);
403   server->id_string_len = silc_id_get_len(id, SILC_ID_SERVER);
404   server->server_name = server->config->server_info->server_name;
405   server->config->server_info->server_name = NULL;
406
407   /* Add ourselves to the server list. We don't have a router yet
408      beacuse we haven't established a route yet. It will be done later.
409      For now, NULL is sent as router. This allocates new entry to
410      the ID list. */
411   id_entry =
412     silc_idlist_add_server(server->local_list, strdup(server->server_name),
413                            server->server_type, server->id, NULL, NULL);
414   if (!id_entry) {
415     SILC_LOG_ERROR(("Could not add ourselves to cache"));
416     goto err;
417   }
418   id_entry->data.status |= SILC_IDLIST_STATUS_REGISTERED;
419
420   /* Put the allocated socket pointer also to the entry allocated above
421      for fast back-referencing to the socket list. */
422   newsocket->user_data = (void *)id_entry;
423   id_entry->connection = (void *)newsocket;
424   server->id_entry = id_entry;
425
426   /* Register protocols */
427   silc_server_protocols_register();
428
429   /* Add the first task to the scheduler. This is task that is executed by
430      timeout. It expires as soon as the caller calls silc_server_run. This
431      task performs authentication protocol and key exchange with our
432      primary router. */
433   silc_schedule_task_add(server->schedule, 0,
434                          silc_server_connect_to_router,
435                          (void *)server, 0, 1,
436                          SILC_TASK_TIMEOUT,
437                          SILC_TASK_PRI_NORMAL);
438
439   /* Add listener task to the scheduler. This task receives new connections
440      to the server. This task remains on the queue until the end of the
441      program. */
442   silc_schedule_task_add(server->schedule, sock,
443                          silc_server_accept_new_connection,
444                          (void *)server, 0, 0,
445                          SILC_TASK_FD,
446                          SILC_TASK_PRI_NORMAL);
447
448   if (silc_server_init_secondary(server) == FALSE)
449     goto err;
450   
451   server->listenning = TRUE;
452
453   /* If server connections has been configured then we must be router as
454      normal server cannot have server connections, only router connections. */
455   if (server->config->servers) {
456     SilcServerConfigServer *ptr = server->config->servers;
457
458     server->server_type = SILC_ROUTER;
459     while (ptr) {
460       if (ptr->backup_router) {
461         server->server_type = SILC_BACKUP_ROUTER;
462         server->backup_router = TRUE;
463         server->id_entry->server_type = SILC_BACKUP_ROUTER;
464         break;
465       }
466       ptr = ptr->next;
467     }
468   }
469
470   /* Register the ID Cache purge task. This periodically purges the ID cache
471      and removes the expired cache entries. */
472
473   /* Clients local list */
474   server->purge_i = purge = silc_calloc(1, sizeof(*purge));
475   purge->cache = server->local_list->clients;
476   purge->timeout = 600;
477   silc_schedule_task_add(server->schedule, 0, silc_idlist_purge,
478                          (void *)purge, purge->timeout, 0,
479                          SILC_TASK_TIMEOUT, SILC_TASK_PRI_LOW);
480
481   /* Clients global list */
482   server->purge_g = purge = silc_calloc(1, sizeof(*purge));
483   purge->cache = server->global_list->clients;
484   purge->timeout = 300;
485   silc_schedule_task_add(server->schedule, 0, silc_idlist_purge,
486                          (void *)purge, purge->timeout, 0,
487                          SILC_TASK_TIMEOUT, SILC_TASK_PRI_LOW);
488
489   /* If we are normal server we'll retrieve network statisticial information
490      once in a while from the router. */
491   if (server->server_type != SILC_ROUTER)
492     silc_schedule_task_add(server->schedule, 0, silc_server_get_stats,
493                            server, 10, 0, SILC_TASK_TIMEOUT,
494                            SILC_TASK_PRI_LOW);
495
496   if (server->server_type == SILC_ROUTER)
497     server->stat.routers++;
498
499   SILC_LOG_DEBUG(("Server initialized"));
500
501   /* We are done here, return succesfully */
502   return TRUE;
503
504  err:
505   silc_server_config_unref(&server->config_ref);
506   silc_net_close_server(sock);
507   return FALSE;
508 }
509
510 /* Task callback to close a socket connection after rehash */
511
512 SILC_TASK_CALLBACK(silc_server_rehash_close_connection)
513 {
514   SilcServer server = context;
515   SilcSocketConnection sock = server->sockets[fd];
516
517   if (!sock)
518     return;
519
520   SILC_LOG_INFO(("Connection %s:%d [%s] is unconfigured",
521                  sock->hostname, sock->port,
522                  (sock->type == SILC_SOCKET_TYPE_UNKNOWN ? "Unknown" :
523                   sock->type == SILC_SOCKET_TYPE_CLIENT ? "Client" :
524                   sock->type == SILC_SOCKET_TYPE_SERVER ? "Server" :
525                   "Router")));
526   silc_schedule_task_del_by_context(server->schedule, sock);
527   silc_server_disconnect_remote(server, sock,
528                                 SILC_STATUS_ERR_BANNED_FROM_SERVER,
529                                 "This connection is removed from "
530                                 "configuration");
531   if (sock->user_data)
532     silc_server_free_sock_user_data(server, sock, NULL);
533 }
534
535 /* This function basically reads the config file again and switches the config
536    object pointed by the server object. After that, we have to fix various
537    things such as the server_name and the listening ports.
538    Keep in mind that we no longer have the root privileges at this point. */
539
540 bool silc_server_rehash(SilcServer server)
541 {
542   SilcServerConfig newconfig;
543
544   SILC_LOG_INFO(("Rehashing server"));
545
546   /* Reset the logging system */
547   silc_log_quick = TRUE;
548   silc_log_flush_all();
549
550   /* Start the main rehash phase (read again the config file) */
551   newconfig = silc_server_config_alloc(server->config_file);
552   if (!newconfig) {
553     SILC_LOG_ERROR(("Rehash FAILED."));
554     return FALSE;
555   }
556
557   /* Reinit scheduler if necessary */
558   if (newconfig->param.connections_max > server->config->param.connections_max)
559     if (!silc_schedule_reinit(server->schedule, 
560                               newconfig->param.connections_max))
561       return FALSE;
562
563   /* Fix the server_name field */
564   if (strcmp(server->server_name, newconfig->server_info->server_name)) {
565     silc_free(server->server_name);
566     server->server_name = newconfig->server_info->server_name;
567     newconfig->server_info->server_name = NULL;
568
569     /* Update the idcache list with a fresh pointer */
570     silc_free(server->id_entry->server_name);
571     server->id_entry->server_name = strdup(server->server_name);
572     if (!silc_idcache_del_by_context(server->local_list->servers, 
573                                      server->id_entry))
574       return FALSE;
575     if (!silc_idcache_add(server->local_list->servers,
576                           server->id_entry->server_name,
577                           server->id_entry->id, server->id_entry, 0, NULL))
578       return FALSE;
579   }
580
581   /* Set logging */
582   silc_server_config_setlogfiles(server);
583
584   /* Change new key pair if necessary */
585   if (newconfig->server_info->public_key &&
586       !silc_pkcs_public_key_compare(server->public_key,
587                                     newconfig->server_info->public_key)) {
588     silc_pkcs_public_key_free(server->public_key);
589     silc_pkcs_private_key_free(server->private_key);
590     server->public_key = newconfig->server_info->public_key;
591     server->private_key = newconfig->server_info->private_key;
592     newconfig->server_info->public_key = NULL;
593     newconfig->server_info->private_key = NULL;
594
595     /* Allocate PKCS context for local public and private keys */
596     silc_pkcs_free(server->pkcs);
597     if (!silc_pkcs_alloc(server->public_key->name, &server->pkcs))
598       return FALSE;
599     silc_pkcs_public_key_set(server->pkcs, server->public_key);
600     silc_pkcs_private_key_set(server->pkcs, server->private_key);
601   }
602
603   /* Check for unconfigured server and router connections and close
604      connections that were unconfigured. */
605
606   if (server->config->routers) {
607     SilcServerConfigRouter *ptr;
608     SilcServerConfigRouter *newptr;
609     bool found;
610
611     for (ptr = server->config->routers; ptr; ptr = ptr->next) {
612       found = FALSE;
613
614       /* Check whether new config has this one too */
615       for (newptr = newconfig->routers; newptr; newptr = newptr->next) {
616         if (silc_string_compare(newptr->host, ptr->host) && 
617             newptr->port == ptr->port &&
618             newptr->initiator == ptr->initiator) {
619           found = TRUE;
620           break;
621         }
622       }
623
624       if (!found && ptr->host) {
625         /* Remove this connection */
626         SilcSocketConnection sock;
627         sock = silc_server_find_socket_by_host(server, SILC_SOCKET_TYPE_ROUTER,
628                                                ptr->host, ptr->port);
629         if (sock && !SILC_IS_LISTENER(sock))
630           silc_schedule_task_add(server->schedule, sock->sock,
631                                  silc_server_rehash_close_connection,
632                                  server, 0, 1, SILC_TASK_TIMEOUT,
633                                  SILC_TASK_PRI_NORMAL);
634       }
635     }
636   }
637
638   if (server->config->servers) {
639     SilcServerConfigServer *ptr;
640     SilcServerConfigServer *newptr;
641     bool found;
642
643     for (ptr = server->config->servers; ptr; ptr = ptr->next) {
644       found = FALSE;
645
646       /* Check whether new config has this one too */
647       for (newptr = newconfig->servers; newptr; newptr = newptr->next) {
648         if (silc_string_compare(newptr->host, ptr->host)) {
649           found = TRUE;
650           break;
651         }
652       }
653
654       if (!found && ptr->host) {
655         /* Remove this connection */
656         SilcSocketConnection sock;
657         sock = silc_server_find_socket_by_host(server, SILC_SOCKET_TYPE_SERVER,
658                                                ptr->host, 0);
659         if (sock && !SILC_IS_LISTENER(sock))
660           silc_schedule_task_add(server->schedule, sock->sock,
661                                  silc_server_rehash_close_connection,
662                                  server, 0, 1, SILC_TASK_TIMEOUT,
663                                  SILC_TASK_PRI_NORMAL);
664       }
665     }
666   }
667
668   if (server->config->clients) {
669     SilcServerConfigClient *ptr;
670     SilcServerConfigClient *newptr;
671     bool found;
672
673     for (ptr = server->config->clients; ptr; ptr = ptr->next) {
674       found = FALSE;
675
676       /* Check whether new config has this one too */
677       for (newptr = newconfig->clients; newptr; newptr = newptr->next) {
678         if (silc_string_compare(newptr->host, ptr->host)) {
679           found = TRUE;
680           break;
681         }
682       }
683
684       if (!found && ptr->host) {
685         /* Remove this connection */
686         SilcSocketConnection sock;
687         sock = silc_server_find_socket_by_host(server, SILC_SOCKET_TYPE_CLIENT,
688                                                ptr->host, 0);
689         if (sock)
690           silc_schedule_task_add(server->schedule, sock->sock,
691                                  silc_server_rehash_close_connection,
692                                  server, 0, 1, SILC_TASK_TIMEOUT,
693                                  SILC_TASK_PRI_NORMAL);
694       }
695     }
696   }
697
698   /* Go through all configured routers after rehash */
699   silc_schedule_task_add(server->schedule, 0,
700                          silc_server_connect_to_router,
701                          (void *)server, 0, 1,
702                          SILC_TASK_TIMEOUT,
703                          SILC_TASK_PRI_NORMAL);
704
705   /* Check whether our router status has changed */
706   if (newconfig->servers) {
707     SilcServerConfigServer *ptr = newconfig->servers;
708
709     server->server_type = SILC_ROUTER;
710     while (ptr) {
711       if (ptr->backup_router) {
712         server->server_type = SILC_BACKUP_ROUTER;
713         server->backup_router = TRUE;
714         server->id_entry->server_type = SILC_BACKUP_ROUTER;
715         break;
716       }
717       ptr = ptr->next;
718     }
719   }
720
721   /* Our old config is gone now. We'll unreference our reference made in
722      silc_server_init and then destroy it since we are destroying it
723      underneath the application (layer which called silc_server_init). */
724   silc_server_config_unref(&server->config_ref);
725   silc_server_config_destroy(server->config);
726
727   /* Take new config context */
728   server->config = newconfig;
729   silc_server_config_ref(&server->config_ref, server->config, server->config);
730
731   SILC_LOG_DEBUG(("Server rehashed"));
732
733   return TRUE;
734 }
735
736 /* The heart of the server. This runs the scheduler thus runs the server.
737    When this returns the server has been stopped and the program will
738    be terminated. */
739
740 void silc_server_run(SilcServer server)
741 {
742   SILC_LOG_INFO(("SILC Server started"));
743
744   /* Start the scheduler, the heart of the SILC server. When this returns
745      the program will be terminated. */
746   silc_schedule(server->schedule);
747 }
748
749 /* Stops the SILC server. This function is used to shutdown the server.
750    This is usually called after the scheduler has returned. After stopping
751    the server one should call silc_server_free. */
752
753 void silc_server_stop(SilcServer server)
754 {
755   SILC_LOG_INFO(("SILC Server shutting down"));
756
757   if (server->schedule) {
758     int i;
759
760     server->server_shutdown = TRUE;
761
762     /* Close all connections */
763     for (i = 0; i < server->config->param.connections_max; i++) {
764       if (!server->sockets[i])
765         continue;
766       if (!SILC_IS_LISTENER(server->sockets[i])) {
767         SilcSocketConnection sock = server->sockets[i];
768         SilcIDListData idata = sock->user_data;
769
770         if (idata)
771           idata->status &= ~SILC_IDLIST_STATUS_DISABLED;
772
773         silc_schedule_task_del_by_context(server->schedule,
774                                           server->sockets[i]);
775         silc_server_disconnect_remote(server, server->sockets[i], 
776                                       SILC_STATUS_OK, 
777                                       "Server is shutting down");
778         if (sock->user_data)
779           silc_server_free_sock_user_data(server, sock,
780                                           "Server is shutting down");
781         silc_socket_free(sock);
782       } else {
783         silc_socket_free(server->sockets[i]);
784         server->sockets[i] = NULL;
785       }
786     }
787
788     /* We are not connected to network anymore */
789     server->standalone = TRUE;
790
791     silc_schedule_stop(server->schedule);
792     silc_schedule_uninit(server->schedule);
793     server->schedule = NULL;
794
795     silc_free(server->sockets);
796     server->sockets = NULL;
797   }
798
799   silc_server_protocols_unregister();
800
801   SILC_LOG_DEBUG(("Server stopped"));
802 }
803
804 /* Function that is called when the network connection to a router has
805    been established.  This will continue with the key exchange protocol
806    with the remote router. */
807
808 void silc_server_start_key_exchange(SilcServer server,
809                                     SilcServerConnection sconn,
810                                     int sock)
811 {
812   SilcSocketConnection newsocket;
813   SilcProtocol protocol;
814   SilcServerKEInternalContext *proto_ctx;
815   SilcServerConfigRouter *conn =
816     (SilcServerConfigRouter *) sconn->conn.ref_ptr;
817   void *context;
818
819   /* Cancel any possible retry timeouts */
820   silc_schedule_task_del_by_callback(server->schedule,
821                                      silc_server_connect_to_router_retry);
822
823   /* Set socket options */
824   silc_net_set_socket_nonblock(sock);
825   silc_net_set_socket_opt(sock, SOL_SOCKET, SO_REUSEADDR, 1);
826
827   /* Create socket connection for the connection. Even though we
828      know that we are connecting to a router we will mark the socket
829      to be unknown connection until we have executed authentication
830      protocol. */
831   silc_socket_alloc(sock, SILC_SOCKET_TYPE_UNKNOWN, NULL, &newsocket);
832   server->sockets[sock] = newsocket;
833   newsocket->hostname = strdup(sconn->remote_host);
834   newsocket->ip = strdup(sconn->remote_host);
835   newsocket->port = sconn->remote_port;
836   sconn->sock = newsocket;
837
838   /* Allocate internal protocol context. This is sent as context
839      to the protocol. */
840   proto_ctx = silc_calloc(1, sizeof(*proto_ctx));
841   proto_ctx->server = (void *)server;
842   proto_ctx->context = (void *)sconn;
843   proto_ctx->sock = newsocket;
844   proto_ctx->rng = server->rng;
845   proto_ctx->responder = FALSE;
846
847   /* Set Key Exchange flags from configuration, but fall back to global
848      settings too. */
849   SILC_GET_SKE_FLAGS(conn, proto_ctx);
850   if (server->config->param.key_exchange_pfs)
851     proto_ctx->flags |= SILC_SKE_SP_FLAG_PFS;
852
853   /* Perform key exchange protocol. silc_server_connect_to_router_second
854      will be called after the protocol is finished. */
855   silc_protocol_alloc(SILC_PROTOCOL_SERVER_KEY_EXCHANGE,
856                       &protocol, proto_ctx,
857                       silc_server_connect_to_router_second);
858   newsocket->protocol = protocol;
859
860   /* Register a timeout task that will be executed if the protocol
861      is not executed within set limit. */
862   proto_ctx->timeout_task =
863     silc_schedule_task_add(server->schedule, sock,
864                            silc_server_timeout_remote,
865                            server, server->config->key_exchange_timeout, 0,
866                            SILC_TASK_TIMEOUT,
867                            SILC_TASK_PRI_LOW);
868
869   /* Register the connection for network input and output. This sets
870      that scheduler will listen for incoming packets for this connection
871      and sets that outgoing packets may be sent to this connection as
872      well. However, this doesn't set the scheduler for outgoing traffic,
873      it will be set separately by calling SILC_SET_CONNECTION_FOR_OUTPUT,
874      later when outgoing data is available. */
875   context = (void *)server;
876   SILC_REGISTER_CONNECTION_FOR_IO(sock);
877
878   /* Run the protocol */
879   silc_protocol_execute(protocol, server->schedule, 0, 0);
880 }
881
882 /* Timeout callback that will be called to retry connecting to remote
883    router. This is used by both normal and router server. This will wait
884    before retrying the connecting. The timeout is generated by exponential
885    backoff algorithm. */
886
887 SILC_TASK_CALLBACK(silc_server_connect_to_router_retry)
888 {
889   SilcServer server = app_context;
890   SilcServerConnection sconn = (SilcServerConnection)context;
891   SilcServerConfigRouter *conn = sconn->conn.ref_ptr;
892   SilcServerConfigConnParams *param =
893                 (conn->param ? conn->param : &server->config->param);
894
895   /* Don't retry if we are shutting down. */
896   if (server->server_shutdown) {
897     silc_server_config_unref(&sconn->conn);
898     silc_free(sconn->remote_host);
899     silc_free(sconn->backup_replace_ip);
900     silc_free(sconn);
901     return;
902   }
903
904   SILC_LOG_INFO(("Retrying connecting to a router"));
905
906   /* Calculate next timeout */
907   if (sconn->retry_count >= 1) {
908     sconn->retry_timeout = sconn->retry_timeout * SILC_SERVER_RETRY_MULTIPLIER;
909     if (sconn->retry_timeout > param->reconnect_interval_max)
910       sconn->retry_timeout = param->reconnect_interval_max;
911   } else {
912     sconn->retry_timeout = param->reconnect_interval;
913   }
914   sconn->retry_count++;
915   sconn->retry_timeout = sconn->retry_timeout +
916     silc_rng_get_rn32(server->rng) % SILC_SERVER_RETRY_RANDOMIZER;
917
918   /* If we've reached max retry count, give up. */
919   if ((sconn->retry_count > param->reconnect_count) &&
920       !param->reconnect_keep_trying) {
921     SILC_LOG_ERROR(("Could not connect to router, giving up"));
922     silc_server_config_unref(&sconn->conn);
923     silc_free(sconn->remote_host);
924     silc_free(sconn->backup_replace_ip);
925     silc_free(sconn);
926     return;
927   }
928
929   SILC_LOG_DEBUG(("Retrying connecting to a router in %d seconds",
930                   sconn->retry_timeout));
931
932   /* We will lookup a fresh pointer later */
933   silc_server_config_unref(&sconn->conn);
934
935   /* Wait one before retrying */
936   silc_schedule_task_add(server->schedule, 0, silc_server_connect_router,
937                          context, sconn->retry_timeout, 0,
938                          SILC_TASK_TIMEOUT, SILC_TASK_PRI_NORMAL);
939 }
940
941 /* Generic routine to use connect to a router. */
942
943 SILC_TASK_CALLBACK(silc_server_connect_router)
944 {
945   SilcServer server = app_context;
946   SilcServerConnection sconn = (SilcServerConnection)context;
947   SilcServerConfigRouter *rconn;
948   int sock;
949
950   /* Don't connect if we are shutting down. */
951   if (server->server_shutdown) {
952     silc_free(sconn->remote_host);
953     silc_free(sconn->backup_replace_ip);
954     silc_free(sconn);
955     return;
956   }
957
958   SILC_LOG_INFO(("Connecting to the %s %s on port %d",
959                  (sconn->backup ? "backup router" : "router"),
960                  sconn->remote_host, sconn->remote_port));
961
962   server->router_connect = time(NULL);
963   rconn = silc_server_config_find_router_conn(server, sconn->remote_host,
964                                               sconn->remote_port);
965   if (!rconn) {
966     SILC_LOG_INFO(("Unconfigured %s connection %s:%d, cannot connect",
967                    (sconn->backup ? "backup router" : "router"),
968                    sconn->remote_host, sconn->remote_port));
969     silc_free(sconn->remote_host);
970     silc_free(sconn->backup_replace_ip);
971     silc_free(sconn);
972     return;
973   }
974   silc_server_config_ref(&sconn->conn, server->config, (void *)rconn);
975
976   /* Connect to remote host */
977   sock = silc_net_create_connection(
978                  (!server->config->server_info->primary ? NULL :
979                   server->config->server_info->primary->server_ip),
980                  sconn->remote_port, sconn->remote_host);
981   if (sock < 0) {
982     SILC_LOG_ERROR(("Could not connect to router %s:%d",
983                     sconn->remote_host, sconn->remote_port));
984     if (!sconn->no_reconnect)
985       silc_schedule_task_add(server->schedule, 0,
986                              silc_server_connect_to_router_retry,
987                              context, 0, 1, SILC_TASK_TIMEOUT,
988                              SILC_TASK_PRI_NORMAL);
989     else {
990       silc_server_config_unref(&sconn->conn);
991       silc_free(sconn->remote_host);
992       silc_free(sconn->backup_replace_ip);
993       silc_free(sconn);
994     }
995     return;
996   }
997
998   /* Continue with key exchange protocol */
999   silc_server_start_key_exchange(server, sconn, sock);
1000 }
1001
1002 /* This function connects to our primary router or if we are a router this
1003    establishes all our primary routes. This is called at the start of the
1004    server to do authentication and key exchange with our router - called
1005    from schedule. */
1006
1007 SILC_TASK_CALLBACK_GLOBAL(silc_server_connect_to_router)
1008 {
1009   SilcServer server = (SilcServer)context;
1010   SilcServerConnection sconn;
1011   SilcServerConfigRouter *ptr;
1012
1013   /* Don't connect if we are shutting down. */
1014   if (server->server_shutdown)
1015     return;
1016
1017   SILC_LOG_DEBUG(("We are %s",
1018                   (server->server_type == SILC_SERVER ?
1019                    "normal server" : server->server_type == SILC_ROUTER ?
1020                    "router" : "backup router/normal server")));
1021
1022   if (!server->config->routers) {
1023     /* There wasn't a configured router, we will continue but we don't
1024        have a connection to outside world.  We will be standalone server. */
1025     SILC_LOG_DEBUG(("No router(s), we are standalone"));
1026     server->standalone = TRUE;
1027     return;
1028   }
1029
1030   /* Cancel any possible retry timeouts */
1031   silc_schedule_task_del_by_callback(server->schedule,
1032                                      silc_server_connect_router);
1033   silc_schedule_task_del_by_callback(server->schedule,
1034                                      silc_server_connect_to_router_retry);
1035
1036   /* Create the connections to all our routes */
1037   for (ptr = server->config->routers; ptr; ptr = ptr->next) {
1038
1039     SILC_LOG_DEBUG(("%s connection [%s] %s:%d",
1040                     ptr->backup_router ? "Backup router" : "Router",
1041                     ptr->initiator ? "Initiator" : "Responder",
1042                     ptr->host, ptr->port));
1043
1044     if (server->server_type == SILC_ROUTER && ptr->backup_router &&
1045         ptr->initiator == FALSE && !server->backup_router &&
1046         !silc_server_config_get_backup_router(server))
1047       server->wait_backup = TRUE;
1048
1049     if (ptr->initiator) {
1050       /* Check whether we are connected to this host already */
1051       if (silc_server_num_sockets_by_remote(server, 
1052                                             silc_net_is_ip(ptr->host) ?
1053                                             ptr->host : NULL,
1054                                             silc_net_is_ip(ptr->host) ?
1055                                             NULL : ptr->host, ptr->port,
1056                                             SILC_SOCKET_TYPE_ROUTER)) {
1057         SILC_LOG_DEBUG(("We are already connected to this router"));
1058         continue;
1059       }
1060
1061       /* Allocate connection object for hold connection specific stuff. */
1062       sconn = silc_calloc(1, sizeof(*sconn));
1063       sconn->remote_host = strdup(ptr->host);
1064       sconn->remote_port = ptr->port;
1065       sconn->backup = ptr->backup_router;
1066       if (sconn->backup) {
1067         sconn->backup_replace_ip = strdup(ptr->backup_replace_ip);
1068         sconn->backup_replace_port = ptr->backup_replace_port;
1069       }
1070
1071       if (!server->router_conn && !sconn->backup)
1072         server->router_conn = sconn;
1073
1074       silc_schedule_task_add(server->schedule, 0,
1075                              silc_server_connect_router,
1076                              (void *)sconn, 0, 1, SILC_TASK_TIMEOUT,
1077                              SILC_TASK_PRI_NORMAL);
1078     }
1079   }
1080 }
1081
1082 /* Second part of connecting to router(s). Key exchange protocol has been
1083    executed and now we will execute authentication protocol. */
1084
1085 SILC_TASK_CALLBACK(silc_server_connect_to_router_second)
1086 {
1087   SilcProtocol protocol = (SilcProtocol)context;
1088   SilcServerKEInternalContext *ctx =
1089     (SilcServerKEInternalContext *)protocol->context;
1090   SilcServer server = (SilcServer)ctx->server;
1091   SilcServerConnection sconn = (SilcServerConnection)ctx->context;
1092   SilcSocketConnection sock = ctx->sock;
1093   SilcServerConnAuthInternalContext *proto_ctx;
1094   SilcServerConfigRouter *conn = NULL;
1095
1096   SILC_LOG_DEBUG(("Start"));
1097
1098   if (protocol->state == SILC_PROTOCOL_STATE_ERROR ||
1099       protocol->state == SILC_PROTOCOL_STATE_FAILURE) {
1100     /* Error occured during protocol */
1101     silc_protocol_free(protocol);
1102     sock->protocol = NULL;
1103     silc_ske_free_key_material(ctx->keymat);
1104     if (ctx->packet)
1105       silc_packet_context_free(ctx->packet);
1106     if (ctx->ske)
1107       silc_ske_free(ctx->ske);
1108     silc_free(ctx->dest_id);
1109     silc_free(ctx);
1110     silc_server_disconnect_remote(server, sock, 
1111                                   SILC_STATUS_ERR_KEY_EXCHANGE_FAILED, NULL);
1112
1113     /* Try reconnecting if configuration wants it */
1114     if (!sconn->no_reconnect) {
1115       silc_schedule_task_add(server->schedule, 0,
1116                              silc_server_connect_to_router_retry,
1117                              sconn, 0, 1, SILC_TASK_TIMEOUT,
1118                              SILC_TASK_PRI_NORMAL);
1119       return;
1120     }
1121
1122     /* Call completion to indicate error */
1123     if (sconn->callback)
1124       (*sconn->callback)(server, NULL, sconn->callback_context);
1125
1126     silc_server_config_unref(&sconn->conn);
1127     silc_free(sconn->remote_host);
1128     silc_free(sconn->backup_replace_ip);
1129     silc_free(sconn);
1130     return;
1131   }
1132
1133   /* We now have the key material as the result of the key exchange
1134      protocol. Take the key material into use. Free the raw key material
1135      as soon as we've set them into use. */
1136   if (!silc_server_protocol_ke_set_keys(server, ctx->ske,
1137                                         ctx->sock, ctx->keymat,
1138                                         ctx->ske->prop->cipher,
1139                                         ctx->ske->prop->pkcs,
1140                                         ctx->ske->prop->hash,
1141                                         ctx->ske->prop->hmac,
1142                                         ctx->ske->prop->group,
1143                                         ctx->responder)) {
1144     silc_protocol_free(protocol);
1145     sock->protocol = NULL;
1146     silc_ske_free_key_material(ctx->keymat);
1147     if (ctx->packet)
1148       silc_packet_context_free(ctx->packet);
1149     if (ctx->ske)
1150       silc_ske_free(ctx->ske);
1151     silc_free(ctx->dest_id);
1152     silc_free(ctx);
1153     silc_server_disconnect_remote(server, sock, 
1154                                   SILC_STATUS_ERR_KEY_EXCHANGE_FAILED, NULL);
1155
1156     /* Try reconnecting if configuration wants it */
1157     if (!sconn->no_reconnect) {
1158       silc_schedule_task_add(server->schedule, 0,
1159                              silc_server_connect_to_router_retry,
1160                              sconn, 0, 1, SILC_TASK_TIMEOUT,
1161                              SILC_TASK_PRI_NORMAL);
1162       return;
1163     }
1164
1165     /* Call completion to indicate error */
1166     if (sconn->callback)
1167       (*sconn->callback)(server, NULL, sconn->callback_context);
1168
1169     silc_server_config_unref(&sconn->conn);
1170     silc_free(sconn->remote_host);
1171     silc_free(sconn->backup_replace_ip);
1172     silc_free(sconn);
1173     return;
1174   }
1175   silc_ske_free_key_material(ctx->keymat);
1176
1177   /* Allocate internal context for the authentication protocol. This
1178      is sent as context for the protocol. */
1179   proto_ctx = silc_calloc(1, sizeof(*proto_ctx));
1180   proto_ctx->server = (void *)server;
1181   proto_ctx->context = (void *)sconn;
1182   proto_ctx->sock = sock;
1183   proto_ctx->ske = ctx->ske;       /* Save SKE object from previous protocol */
1184   proto_ctx->dest_id_type = ctx->dest_id_type;
1185   proto_ctx->dest_id = ctx->dest_id;
1186
1187   /* Resolve the authentication method used in this connection. Check if
1188      we find a match from user configured connections */
1189   if (!sconn->conn.ref_ptr)
1190     conn = silc_server_config_find_router_conn(server, sock->hostname,
1191                                                sock->port);
1192   else
1193     conn = sconn->conn.ref_ptr;
1194
1195   if (conn) {
1196     /* Match found. Use the configured authentication method. Take only
1197        the passphrase, since for public key auth we automatically use
1198        our local key pair. */
1199     if (conn->passphrase) {
1200       if (conn->publickeys && !server->config->prefer_passphrase_auth) {
1201         proto_ctx->auth_meth = SILC_AUTH_PUBLIC_KEY;
1202       } else {
1203         proto_ctx->auth_data = strdup(conn->passphrase);
1204         proto_ctx->auth_data_len = strlen(conn->passphrase);
1205         proto_ctx->auth_meth = SILC_AUTH_PASSWORD;
1206       }
1207     } else if (conn->publickeys) {
1208       proto_ctx->auth_meth = SILC_AUTH_PUBLIC_KEY;
1209     } else {
1210       proto_ctx->auth_meth = SILC_AUTH_NONE;
1211     }
1212   } else {
1213     SILC_LOG_ERROR(("Could not find connection data for %s (%s) on port",
1214                     sock->hostname, sock->ip, sock->port));
1215     silc_protocol_free(protocol);
1216     sock->protocol = NULL;
1217     if (ctx->packet)
1218       silc_packet_context_free(ctx->packet);
1219     if (ctx->ske)
1220       silc_ske_free(ctx->ske);
1221     silc_free(ctx->dest_id);
1222     silc_free(ctx);
1223     silc_server_config_unref(&sconn->conn);
1224     silc_free(sconn->remote_host);
1225     silc_free(sconn->backup_replace_ip);
1226     silc_free(sconn);
1227     silc_server_disconnect_remote(server, sock, 
1228                                   SILC_STATUS_ERR_KEY_EXCHANGE_FAILED, NULL);
1229     return;
1230   }
1231
1232   /* Free old protocol as it is finished now */
1233   silc_protocol_free(protocol);
1234   if (ctx->packet)
1235     silc_packet_context_free(ctx->packet);
1236   silc_free(ctx);
1237   sock->protocol = NULL;
1238
1239   /* Allocate the authentication protocol. This is allocated here
1240      but we won't start it yet. We will be receiving party of this
1241      protocol thus we will wait that connecting party will make
1242      their first move. */
1243   silc_protocol_alloc(SILC_PROTOCOL_SERVER_CONNECTION_AUTH,
1244                       &sock->protocol, proto_ctx,
1245                       silc_server_connect_to_router_final);
1246
1247   /* Register timeout task. If the protocol is not executed inside
1248      this timelimit the connection will be terminated. */
1249   proto_ctx->timeout_task =
1250     silc_schedule_task_add(server->schedule, sock->sock,
1251                            silc_server_timeout_remote,
1252                            (void *)server,
1253                            server->config->conn_auth_timeout, 0,
1254                            SILC_TASK_TIMEOUT,
1255                            SILC_TASK_PRI_LOW);
1256
1257   /* Run the protocol */
1258   silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
1259 }
1260
1261 /* Finalizes the connection to router. Registers a server task to the
1262    queue so that we can accept new connections. */
1263
1264 SILC_TASK_CALLBACK(silc_server_connect_to_router_final)
1265 {
1266   SilcProtocol protocol = (SilcProtocol)context;
1267   SilcServerConnAuthInternalContext *ctx =
1268     (SilcServerConnAuthInternalContext *)protocol->context;
1269   SilcServer server = (SilcServer)ctx->server;
1270   SilcServerConnection sconn = (SilcServerConnection)ctx->context;
1271   SilcSocketConnection sock = ctx->sock;
1272   SilcServerEntry id_entry = NULL;
1273   SilcBuffer packet;
1274   unsigned char *id_string;
1275   SilcUInt32 id_len;
1276   SilcIDListData idata;
1277   SilcServerConfigRouter *conn = NULL;
1278   SilcServerConfigConnParams *param = NULL;
1279
1280   SILC_LOG_DEBUG(("Start"));
1281
1282   if (protocol->state == SILC_PROTOCOL_STATE_ERROR ||
1283       protocol->state == SILC_PROTOCOL_STATE_FAILURE) {
1284     /* Error occured during protocol */
1285     silc_free(ctx->dest_id);
1286     silc_server_disconnect_remote(server, sock, SILC_STATUS_ERR_AUTH_FAILED,
1287                                   NULL);
1288
1289     /* Try reconnecting if configuration wants it */
1290     if (!sconn->no_reconnect) {
1291       silc_schedule_task_add(server->schedule, 0,
1292                              silc_server_connect_to_router_retry,
1293                              sconn, 0, 1, SILC_TASK_TIMEOUT,
1294                              SILC_TASK_PRI_NORMAL);
1295       goto out2;
1296     }
1297
1298     goto out;
1299   }
1300
1301   /* Add a task to the queue. This task receives new connections to the
1302      server. This task remains on the queue until the end of the program. */
1303   if (!server->listenning && !sconn->backup) {
1304     silc_schedule_task_add(server->schedule, server->sock,
1305                            silc_server_accept_new_connection,
1306                            (void *)server, 0, 0,
1307                            SILC_TASK_FD,
1308                            SILC_TASK_PRI_NORMAL);
1309     server->listenning = TRUE;
1310   }
1311
1312   /* Send NEW_SERVER packet to the router. We will become registered
1313      to the SILC network after sending this packet. */
1314   id_string = silc_id_id2str(server->id, SILC_ID_SERVER);
1315   id_len = silc_id_get_len(server->id, SILC_ID_SERVER);
1316   packet = silc_buffer_alloc(2 + 2 + id_len + strlen(server->server_name));
1317   silc_buffer_pull_tail(packet, SILC_BUFFER_END(packet));
1318   silc_buffer_format(packet,
1319                      SILC_STR_UI_SHORT(id_len),
1320                      SILC_STR_UI_XNSTRING(id_string, id_len),
1321                      SILC_STR_UI_SHORT(strlen(server->server_name)),
1322                      SILC_STR_UI_XNSTRING(server->server_name,
1323                                           strlen(server->server_name)),
1324                      SILC_STR_END);
1325
1326   /* Send the packet */
1327   silc_server_packet_send(server, ctx->sock, SILC_PACKET_NEW_SERVER, 0,
1328                           packet->data, packet->len, TRUE);
1329   silc_buffer_free(packet);
1330   silc_free(id_string);
1331
1332   SILC_LOG_INFO(("Connected to router %s", sock->hostname));
1333
1334   /* Check that we do not have this ID already */
1335   id_entry = silc_idlist_find_server_by_id(server->local_list,
1336                                            ctx->dest_id, TRUE, NULL);
1337   if (id_entry) {
1338     silc_idcache_del_by_context(server->local_list->servers, id_entry);
1339   } else {
1340     id_entry = silc_idlist_find_server_by_id(server->global_list,
1341                                              ctx->dest_id, TRUE, NULL);
1342     if (id_entry)
1343       silc_idcache_del_by_context(server->global_list->servers, id_entry);
1344   }
1345
1346   SILC_LOG_DEBUG(("New server id(%s)",
1347                   silc_id_render(ctx->dest_id, SILC_ID_SERVER)));
1348
1349   /* Add the connected router to global server list.  Router is sent
1350      as NULL since it's local to us. */
1351   id_entry = silc_idlist_add_server(server->global_list,
1352                                     strdup(sock->hostname),
1353                                     SILC_ROUTER, ctx->dest_id, NULL, sock);
1354   if (!id_entry) {
1355     silc_free(ctx->dest_id);
1356     SILC_LOG_ERROR(("Cannot add new server entry to cache"));
1357     silc_server_disconnect_remote(server, sock, SILC_STATUS_ERR_AUTH_FAILED,
1358                                   NULL);
1359     goto out;
1360   }
1361
1362   silc_idlist_add_data(id_entry, (SilcIDListData)sock->user_data);
1363   silc_free(sock->user_data);
1364   sock->user_data = (void *)id_entry;
1365   sock->type = SILC_SOCKET_TYPE_ROUTER;
1366   idata = (SilcIDListData)sock->user_data;
1367   idata->status |= (SILC_IDLIST_STATUS_REGISTERED |
1368                     SILC_IDLIST_STATUS_LOCAL);
1369
1370   conn = sconn->conn.ref_ptr;
1371   param = &server->config->param;
1372   if (conn && conn->param)
1373     param = conn->param;
1374
1375   /* Perform keepalive. */
1376   silc_socket_set_heartbeat(sock, param->keepalive_secs, server,
1377                             silc_server_perform_heartbeat,
1378                             server->schedule);
1379
1380   /* Register re-key timeout */
1381   idata->rekey->timeout = param->key_exchange_rekey;
1382   silc_schedule_task_add(server->schedule, sock->sock,
1383                          silc_server_rekey_callback,
1384                          (void *)sock, idata->rekey->timeout, 0,
1385                          SILC_TASK_TIMEOUT, SILC_TASK_PRI_NORMAL);
1386
1387   if (!sconn->backup) {
1388     /* Mark this router our primary router if we're still standalone */
1389     if (server->standalone) {
1390       SILC_LOG_DEBUG(("This connection is our primary router"));
1391       server->id_entry->router = id_entry;
1392       server->router = id_entry;
1393       server->standalone = FALSE;
1394
1395       /* If we are router then announce our possible servers.  Backup
1396          router announces also global servers. */
1397       if (server->server_type == SILC_ROUTER)
1398         silc_server_announce_servers(server,
1399                                      server->backup_router ? TRUE : FALSE,
1400                                      0, SILC_PRIMARY_ROUTE(server));
1401
1402       /* Announce our clients and channels to the router */
1403       silc_server_announce_clients(server, 0, SILC_PRIMARY_ROUTE(server));
1404       silc_server_announce_channels(server, 0, SILC_PRIMARY_ROUTE(server));
1405
1406       /* If we are backup router then this primary router is whom we are
1407          backing up. */
1408       if (server->server_type == SILC_BACKUP_ROUTER)
1409         silc_server_backup_add(server, server->id_entry, sock->ip,
1410                                sconn->remote_port, TRUE);
1411     }
1412   } else {
1413     /* Add this server to be our backup router */
1414     silc_server_backup_add(server, id_entry, sconn->backup_replace_ip,
1415                            sconn->backup_replace_port, FALSE);
1416   }
1417
1418   sock->protocol = NULL;
1419
1420  out:
1421   /* Call the completion callback to indicate that we've connected to
1422      the router */
1423   if (sconn && sconn->callback)
1424     (*sconn->callback)(server, id_entry, sconn->callback_context);
1425
1426   /* Free the temporary connection data context */
1427   if (sconn) {
1428     silc_server_config_unref(&sconn->conn);
1429     silc_free(sconn->remote_host);
1430     silc_free(sconn->backup_replace_ip);
1431     silc_free(sconn);
1432   }
1433   if (sconn == server->router_conn)
1434     server->router_conn = NULL;
1435
1436  out2:
1437   /* Free the protocol object */
1438   if (sock->protocol == protocol)
1439     sock->protocol = NULL;
1440   silc_protocol_free(protocol);
1441   if (ctx->packet)
1442     silc_packet_context_free(ctx->packet);
1443   if (ctx->ske)
1444     silc_ske_free(ctx->ske);
1445   if (ctx->auth_meth == SILC_AUTH_PASSWORD)
1446     silc_free(ctx->auth_data);
1447   silc_free(ctx);
1448 }
1449
1450 /* Host lookup callback that is called after the incoming connection's
1451    IP and FQDN lookup is performed. This will actually check the acceptance
1452    of the incoming connection and will register the key exchange protocol
1453    for this connection. */
1454
1455 static void
1456 silc_server_accept_new_connection_lookup(SilcSocketConnection sock,
1457                                          void *context)
1458 {
1459   SilcServerKEInternalContext *proto_ctx =
1460     (SilcServerKEInternalContext *)context;
1461   SilcServer server = (SilcServer)proto_ctx->server;
1462   SilcServerConfigClient *cconfig = NULL;
1463   SilcServerConfigServer *sconfig = NULL;
1464   SilcServerConfigRouter *rconfig = NULL;
1465   SilcServerConfigDeny *deny;
1466   int port;
1467
1468   /* Check whether we could resolve both IP and FQDN. */
1469   if (!sock->ip || (!strcmp(sock->ip, sock->hostname) &&
1470                     server->config->require_reverse_lookup)) {
1471     SILC_LOG_ERROR(("IP/DNS lookup failed %s",
1472                     sock->hostname ? sock->hostname :
1473                     sock->ip ? sock->ip : ""));
1474     server->stat.conn_failures++;
1475     silc_server_disconnect_remote(server, sock,
1476                                   SILC_STATUS_ERR_INCOMPLETE_INFORMATION,
1477                                   "Unknown host or IP");
1478     silc_free(proto_ctx);
1479     return;
1480   }
1481
1482   /* Register the connection for network input and output. This sets
1483      that scheduler will listen for incoming packets for this connection
1484      and sets that outgoing packets may be sent to this connection as well.
1485      However, this doesn't set the scheduler for outgoing traffic, it
1486      will be set separately by calling SILC_SET_CONNECTION_FOR_OUTPUT,
1487      later when outgoing data is available. */
1488   context = (void *)server;
1489   SILC_REGISTER_CONNECTION_FOR_IO(sock->sock);
1490
1491   SILC_LOG_INFO(("Incoming connection %s (%s)", sock->hostname,
1492                  sock->ip));
1493
1494   /* Listenning port */
1495   if (!server->sockets[(SilcUInt32)proto_ctx->context]) {
1496     silc_server_disconnect_remote(server, sock,
1497                                   SILC_STATUS_ERR_RESOURCE_LIMIT,
1498                                   "Connection refused");
1499     server->stat.conn_failures++;
1500     silc_free(proto_ctx);
1501     return;
1502   }
1503   port = server->sockets[(SilcUInt32)proto_ctx->context]->port;
1504
1505   /* Check whether this connection is denied to connect to us. */
1506   deny = silc_server_config_find_denied(server, sock->ip);
1507   if (!deny)
1508     deny = silc_server_config_find_denied(server, sock->hostname);
1509   if (deny) {
1510     /* The connection is denied */
1511     SILC_LOG_INFO(("Connection %s (%s) is denied",
1512                    sock->hostname, sock->ip));
1513     silc_server_disconnect_remote(server, sock,
1514                                   SILC_STATUS_ERR_BANNED_FROM_SERVER,
1515                                   deny->reason);
1516     server->stat.conn_failures++;
1517     silc_free(proto_ctx);
1518     return;
1519   }
1520
1521   /* Check whether we have configured this sort of connection at all. We
1522      have to check all configurations since we don't know what type of
1523      connection this is. */
1524   if (!(cconfig = silc_server_config_find_client(server, sock->ip)))
1525     cconfig = silc_server_config_find_client(server, sock->hostname);
1526   if (!(sconfig = silc_server_config_find_server_conn(server, sock->ip)))
1527     sconfig = silc_server_config_find_server_conn(server, sock->hostname);
1528   if (server->server_type == SILC_ROUTER) {
1529     if (!(rconfig = silc_server_config_find_router_conn(server,
1530                                                         sock->ip, sock->port)))
1531       rconfig = silc_server_config_find_router_conn(server, sock->hostname,
1532                                                     sock->port);
1533   }
1534   if (!cconfig && !sconfig && !rconfig) {
1535     SILC_LOG_INFO(("Connection %s (%s) is not allowed", sock->hostname,
1536                    sock->ip));
1537     silc_server_disconnect_remote(server, sock,
1538                                   SILC_STATUS_ERR_BANNED_FROM_SERVER, NULL);
1539     server->stat.conn_failures++;
1540     silc_free(proto_ctx);
1541     return;
1542   }
1543
1544   /* The connection is allowed */
1545
1546   /* Set internal context for key exchange protocol. This is
1547      sent as context for the protocol. */
1548   proto_ctx->sock = sock;
1549   proto_ctx->rng = server->rng;
1550   proto_ctx->responder = TRUE;
1551   silc_server_config_ref(&proto_ctx->cconfig, server->config, cconfig);
1552   silc_server_config_ref(&proto_ctx->sconfig, server->config, sconfig);
1553   silc_server_config_ref(&proto_ctx->rconfig, server->config, rconfig);
1554
1555   /* Take flags for key exchange. Since we do not know what type of connection
1556      this is, we go through all found configurations and use the global ones
1557      as well. This will result always into strictest key exchange flags. */
1558   SILC_GET_SKE_FLAGS(cconfig, proto_ctx);
1559   SILC_GET_SKE_FLAGS(sconfig, proto_ctx);
1560   SILC_GET_SKE_FLAGS(rconfig, proto_ctx);
1561   if (server->config->param.key_exchange_pfs)
1562     proto_ctx->flags |= SILC_SKE_SP_FLAG_PFS;
1563
1564   /* Prepare the connection for key exchange protocol. We allocate the
1565      protocol but will not start it yet. The connector will be the
1566      initiator of the protocol thus we will wait for initiation from
1567      there before we start the protocol. */
1568   server->stat.auth_attempts++;
1569   SILC_LOG_DEBUG(("Starting key exchange protocol"));
1570   silc_protocol_alloc(SILC_PROTOCOL_SERVER_KEY_EXCHANGE,
1571                       &sock->protocol, proto_ctx,
1572                       silc_server_accept_new_connection_second);
1573
1574   /* Register a timeout task that will be executed if the connector
1575      will not start the key exchange protocol within specified timeout
1576      and the connection will be closed. */
1577   proto_ctx->timeout_task =
1578     silc_schedule_task_add(server->schedule, sock->sock,
1579                            silc_server_timeout_remote,
1580                            (void *)server,
1581                            server->config->key_exchange_timeout, 0,
1582                            SILC_TASK_TIMEOUT,
1583                            SILC_TASK_PRI_LOW);
1584 }
1585
1586 /* Accepts new connections to the server. Accepting new connections are
1587    done in three parts to make it async. */
1588
1589 SILC_TASK_CALLBACK(silc_server_accept_new_connection)
1590 {
1591   SilcServer server = (SilcServer)context;
1592   SilcSocketConnection newsocket;
1593   SilcServerKEInternalContext *proto_ctx;
1594   int sock;
1595
1596   SILC_LOG_DEBUG(("Accepting new connection"));
1597
1598   server->stat.conn_attempts++;
1599
1600   sock = silc_net_accept_connection(fd);
1601   if (sock < 0) {
1602     SILC_LOG_ERROR(("Could not accept new connection: %s", strerror(errno)));
1603     server->stat.conn_failures++;
1604     return;
1605   }
1606
1607   /* Check for maximum allowed connections */
1608   if (sock > server->config->param.connections_max) {
1609     SILC_LOG_ERROR(("Refusing connection, server is full"));
1610     server->stat.conn_failures++;
1611     silc_net_close_connection(sock);
1612     return;
1613   }
1614
1615   /* Set socket options */
1616   silc_net_set_socket_nonblock(sock);
1617   silc_net_set_socket_opt(sock, SOL_SOCKET, SO_REUSEADDR, 1);
1618
1619   /* We don't create a ID yet, since we don't know what type of connection
1620      this is yet. But, we do add the connection to the socket table. */
1621   silc_socket_alloc(sock, SILC_SOCKET_TYPE_UNKNOWN, NULL, &newsocket);
1622   server->sockets[sock] = newsocket;
1623
1624   /* Perform asynchronous host lookup. This will lookup the IP and the
1625      FQDN of the remote connection. After the lookup is done the connection
1626      is accepted further. */
1627   proto_ctx = silc_calloc(1, sizeof(*proto_ctx));
1628   proto_ctx->server = server;
1629   proto_ctx->context = (void *)fd;
1630   silc_socket_host_lookup(newsocket, TRUE,
1631                           silc_server_accept_new_connection_lookup,
1632                           (void *)proto_ctx, server->schedule);
1633 }
1634
1635 /* Second part of accepting new connection. Key exchange protocol has been
1636    performed and now it is time to do little connection authentication
1637    protocol to figure out whether this connection is client or server
1638    and whether it has right to access this server (especially server
1639    connections needs to be authenticated). */
1640
1641 SILC_TASK_CALLBACK(silc_server_accept_new_connection_second)
1642 {
1643   SilcProtocol protocol = (SilcProtocol)context;
1644   SilcServerKEInternalContext *ctx =
1645     (SilcServerKEInternalContext *)protocol->context;
1646   SilcServer server = (SilcServer)ctx->server;
1647   SilcSocketConnection sock = ctx->sock;
1648   SilcServerConnAuthInternalContext *proto_ctx;
1649
1650   SILC_LOG_DEBUG(("Start"));
1651
1652   if ((protocol->state == SILC_PROTOCOL_STATE_ERROR) ||
1653       (protocol->state == SILC_PROTOCOL_STATE_FAILURE)) {
1654     /* Error occured during protocol */
1655     SILC_LOG_DEBUG(("Error key exchange protocol"));
1656     silc_protocol_free(protocol);
1657     sock->protocol = NULL;
1658     silc_ske_free_key_material(ctx->keymat);
1659     if (ctx->packet)
1660       silc_packet_context_free(ctx->packet);
1661     if (ctx->ske)
1662       silc_ske_free(ctx->ske);
1663     silc_free(ctx->dest_id);
1664     silc_server_config_unref(&ctx->cconfig);
1665     silc_server_config_unref(&ctx->sconfig);
1666     silc_server_config_unref(&ctx->rconfig);
1667     silc_free(ctx);
1668     silc_server_disconnect_remote(server, sock, 
1669                                   SILC_STATUS_ERR_KEY_EXCHANGE_FAILED,
1670                                   NULL);
1671     server->stat.auth_failures++;
1672     return;
1673   }
1674
1675   /* We now have the key material as the result of the key exchange
1676      protocol. Take the key material into use. Free the raw key material
1677      as soon as we've set them into use. */
1678   if (!silc_server_protocol_ke_set_keys(server, ctx->ske,
1679                                         ctx->sock, ctx->keymat,
1680                                         ctx->ske->prop->cipher,
1681                                         ctx->ske->prop->pkcs,
1682                                         ctx->ske->prop->hash,
1683                                         ctx->ske->prop->hmac,
1684                                         ctx->ske->prop->group,
1685                                         ctx->responder)) {
1686     SILC_LOG_ERROR(("Error setting key material in use"));
1687     silc_protocol_free(protocol);
1688     sock->protocol = NULL;
1689     silc_ske_free_key_material(ctx->keymat);
1690     if (ctx->packet)
1691       silc_packet_context_free(ctx->packet);
1692     if (ctx->ske)
1693       silc_ske_free(ctx->ske);
1694     silc_free(ctx->dest_id);
1695     silc_server_config_unref(&ctx->cconfig);
1696     silc_server_config_unref(&ctx->sconfig);
1697     silc_server_config_unref(&ctx->rconfig);
1698     silc_free(ctx);
1699     silc_server_disconnect_remote(server, sock, 
1700                                   SILC_STATUS_ERR_KEY_EXCHANGE_FAILED, NULL);
1701     server->stat.auth_failures++;
1702     return;
1703   }
1704   silc_ske_free_key_material(ctx->keymat);
1705
1706   /* Allocate internal context for the authentication protocol. This
1707      is sent as context for the protocol. */
1708   proto_ctx = silc_calloc(1, sizeof(*proto_ctx));
1709   proto_ctx->server = (void *)server;
1710   proto_ctx->sock = sock;
1711   proto_ctx->ske = ctx->ske;    /* Save SKE object from previous protocol */
1712   proto_ctx->responder = TRUE;
1713   proto_ctx->dest_id_type = ctx->dest_id_type;
1714   proto_ctx->dest_id = ctx->dest_id;
1715   proto_ctx->cconfig = ctx->cconfig;
1716   proto_ctx->sconfig = ctx->sconfig;
1717   proto_ctx->rconfig = ctx->rconfig;
1718
1719   /* Free old protocol as it is finished now */
1720   silc_protocol_free(protocol);
1721   if (ctx->packet)
1722     silc_packet_context_free(ctx->packet);
1723   silc_free(ctx);
1724   sock->protocol = NULL;
1725
1726   /* Allocate the authentication protocol. This is allocated here
1727      but we won't start it yet. We will be receiving party of this
1728      protocol thus we will wait that connecting party will make
1729      their first move. */
1730   SILC_LOG_DEBUG(("Starting connection authentication protocol"));
1731   silc_protocol_alloc(SILC_PROTOCOL_SERVER_CONNECTION_AUTH,
1732                       &sock->protocol, proto_ctx,
1733                       silc_server_accept_new_connection_final);
1734
1735   /* Register timeout task. If the protocol is not executed inside
1736      this timelimit the connection will be terminated. */
1737   proto_ctx->timeout_task =
1738     silc_schedule_task_add(server->schedule, sock->sock,
1739                            silc_server_timeout_remote,
1740                            (void *)server,
1741                            server->config->conn_auth_timeout, 0,
1742                            SILC_TASK_TIMEOUT,
1743                            SILC_TASK_PRI_LOW);
1744 }
1745
1746 /* After this is called, server don't wait for backup router anymore.  
1747    This gets called automatically even after we have backup router
1748    connection established. */
1749
1750 SILC_TASK_CALLBACK(silc_server_backup_router_wait)
1751 {
1752   SilcServer server = context;
1753   server->wait_backup = FALSE;
1754 }
1755
1756 /* Final part of accepting new connection. The connection has now
1757    been authenticated and keys has been exchanged. We also know whether
1758    this is client or server connection. */
1759
1760 SILC_TASK_CALLBACK(silc_server_accept_new_connection_final)
1761 {
1762   SilcProtocol protocol = (SilcProtocol)context;
1763   SilcServerConnAuthInternalContext *ctx =
1764     (SilcServerConnAuthInternalContext *)protocol->context;
1765   SilcServer server = (SilcServer)ctx->server;
1766   SilcSocketConnection sock = ctx->sock;
1767   SilcUnknownEntry entry = (SilcUnknownEntry)sock->user_data;
1768   void *id_entry;
1769   SilcServerConfigConnParams *param = &server->config->param;
1770
1771   if (protocol->state == SILC_PROTOCOL_STATE_ERROR ||
1772       protocol->state == SILC_PROTOCOL_STATE_FAILURE) {
1773     /* Error occured during protocol */
1774     SILC_LOG_DEBUG(("Error during authentication protocol"));
1775     silc_protocol_free(protocol);
1776     sock->protocol = NULL;
1777     if (ctx->packet)
1778       silc_packet_context_free(ctx->packet);
1779     if (ctx->ske)
1780       silc_ske_free(ctx->ske);
1781     silc_free(ctx->dest_id);
1782     silc_server_config_unref(&ctx->cconfig);
1783     silc_server_config_unref(&ctx->sconfig);
1784     silc_server_config_unref(&ctx->rconfig);
1785     silc_free(ctx);
1786     silc_server_disconnect_remote(server, sock, SILC_STATUS_ERR_AUTH_FAILED,
1787                                   NULL);
1788     server->stat.auth_failures++;
1789     return;
1790   }
1791
1792   entry->data.last_receive = time(NULL);
1793
1794   switch (ctx->conn_type) {
1795   case SILC_SOCKET_TYPE_CLIENT:
1796     {
1797       SilcClientEntry client;
1798       SilcServerConfigClient *conn = ctx->cconfig.ref_ptr;
1799
1800       /* Verify whether this connection is after all allowed to connect */
1801       if (!silc_server_connection_allowed(server, sock, ctx->conn_type,
1802                                           &server->config->param,
1803                                           conn->param, ctx->ske)) {
1804         server->stat.auth_failures++;
1805         goto out;
1806       }
1807
1808       /* If we are primary router and we have backup router configured
1809          but it has not connected to use yet, do not accept any other
1810          connection. */
1811       if (server->wait_backup && server->server_type == SILC_ROUTER &&
1812           !server->backup_router) {
1813         SilcServerConfigRouter *router;
1814         router = silc_server_config_get_backup_router(server);
1815         if (router && strcmp(server->config->server_info->primary->server_ip,
1816                              sock->ip) &&
1817             silc_server_find_socket_by_host(server,
1818                                             SILC_SOCKET_TYPE_SERVER,
1819                                             router->backup_replace_ip, 0)) {
1820           SILC_LOG_INFO(("Will not accept connections because we do "
1821                          "not have backup router connection established"));
1822           silc_server_disconnect_remote(server, sock, 
1823                                         SILC_STATUS_ERR_PERM_DENIED,
1824                                         "We do not have connection to backup "
1825                                         "router established, try later");
1826           silc_free(sock->user_data);
1827           server->stat.auth_failures++;
1828
1829           /* From here on, wait 10 seconds for the backup router to appear. */
1830           silc_schedule_task_add(server->schedule, 0,
1831                                  silc_server_backup_router_wait,
1832                                  (void *)server, 10, 0,
1833                                  SILC_TASK_TIMEOUT, SILC_TASK_PRI_NORMAL);
1834           goto out;
1835         }
1836       }
1837
1838       SILC_LOG_DEBUG(("Remote host is client"));
1839       SILC_LOG_INFO(("Connection %s (%s) is client", sock->hostname,
1840                      sock->ip));
1841
1842       /* Add the client to the client ID cache. The nickname and Client ID
1843          and other information is created after we have received NEW_CLIENT
1844          packet from client. */
1845       client = silc_idlist_add_client(server->local_list,
1846                                       NULL, NULL, NULL, NULL, NULL, sock, 0);
1847       if (!client) {
1848         SILC_LOG_ERROR(("Could not add new client to cache"));
1849         silc_free(sock->user_data);
1850         silc_server_disconnect_remote(server, sock, 
1851                                       SILC_STATUS_ERR_AUTH_FAILED, NULL);
1852         server->stat.auth_failures++;
1853         goto out;
1854       }
1855       entry->data.status |= SILC_IDLIST_STATUS_LOCAL;
1856
1857       /* Statistics */
1858       server->stat.my_clients++;
1859       server->stat.clients++;
1860       server->stat.cell_clients++;
1861
1862       /* Get connection parameters */
1863       if (conn->param) {
1864         param = conn->param;
1865
1866         if (!param->keepalive_secs)
1867           param->keepalive_secs = server->config->param.keepalive_secs;
1868
1869         if (!param->qos && server->config->param.qos) {
1870           param->qos = server->config->param.qos;
1871           param->qos_rate_limit = server->config->param.qos_rate_limit;
1872           param->qos_bytes_limit = server->config->param.qos_bytes_limit;
1873           param->qos_limit_sec = server->config->param.qos_limit_sec;
1874           param->qos_limit_usec = server->config->param.qos_limit_usec;
1875         }
1876
1877         /* Check if to be anonymous connection */
1878         if (param->anonymous)
1879           client->mode |= SILC_UMODE_ANONYMOUS;
1880       }
1881
1882       id_entry = (void *)client;
1883       break;
1884     }
1885   case SILC_SOCKET_TYPE_SERVER:
1886   case SILC_SOCKET_TYPE_ROUTER:
1887     {
1888       SilcServerEntry new_server;
1889       bool initiator = FALSE;
1890       bool backup_local = FALSE;
1891       bool backup_router = FALSE;
1892       char *backup_replace_ip = NULL;
1893       SilcUInt16 backup_replace_port = 0;
1894       SilcServerConfigServer *sconn = ctx->sconfig.ref_ptr;
1895       SilcServerConfigRouter *rconn = ctx->rconfig.ref_ptr;
1896
1897       /* If we are backup router and this is incoming server connection
1898          and we do not have connection to primary router, do not allow
1899          the connection. */
1900       if (server->server_type == SILC_BACKUP_ROUTER &&
1901           ctx->conn_type == SILC_SOCKET_TYPE_SERVER &&
1902           !SILC_PRIMARY_ROUTE(server)) {
1903         SILC_LOG_INFO(("Will not accept server connection because we do "
1904                        "not have primary router connection established"));
1905         silc_server_disconnect_remote(server, sock, 
1906                                       SILC_STATUS_ERR_PERM_DENIED,
1907                                       "We do not have connection to primary "
1908                                       "router established, try later");
1909         silc_free(sock->user_data);
1910         server->stat.auth_failures++;
1911         goto out;
1912       }
1913
1914       if (ctx->conn_type == SILC_SOCKET_TYPE_ROUTER) {
1915         /* Verify whether this connection is after all allowed to connect */
1916         if (!silc_server_connection_allowed(server, sock, ctx->conn_type,
1917                                             &server->config->param,
1918                                             rconn ? rconn->param : NULL,
1919                                             ctx->ske)) {
1920           silc_free(sock->user_data);
1921           server->stat.auth_failures++;
1922           goto out;
1923         }
1924
1925         if (rconn) {
1926           if (rconn->param) {
1927             param = rconn->param;
1928
1929             if (!param->keepalive_secs)
1930               param->keepalive_secs = server->config->param.keepalive_secs;
1931
1932             if (!param->qos && server->config->param.qos) {
1933               param->qos = server->config->param.qos;
1934               param->qos_rate_limit = server->config->param.qos_rate_limit;
1935               param->qos_bytes_limit = server->config->param.qos_bytes_limit;
1936               param->qos_limit_sec = server->config->param.qos_limit_sec;
1937               param->qos_limit_usec = server->config->param.qos_limit_usec;
1938             }
1939           }
1940
1941           initiator = rconn->initiator;
1942           backup_local = rconn->backup_local;
1943           backup_router = rconn->backup_router;
1944           backup_replace_ip = rconn->backup_replace_ip;
1945           backup_replace_port = rconn->backup_replace_port;
1946         }
1947       }
1948
1949       if (ctx->conn_type == SILC_SOCKET_TYPE_SERVER) {
1950         /* Verify whether this connection is after all allowed to connect */
1951         if (!silc_server_connection_allowed(server, sock, ctx->conn_type,
1952                                             &server->config->param,
1953                                             sconn ? sconn->param : NULL,
1954                                             ctx->ske)) {
1955           silc_free(sock->user_data);
1956           server->stat.auth_failures++;
1957           goto out;
1958         }
1959         if (sconn) {
1960           if (sconn->param) {
1961             param = sconn->param;
1962
1963             if (!param->keepalive_secs)
1964               param->keepalive_secs = server->config->param.keepalive_secs;
1965
1966             if (!param->qos && server->config->param.qos) {
1967               param->qos = server->config->param.qos;
1968               param->qos_rate_limit = server->config->param.qos_rate_limit;
1969               param->qos_bytes_limit = server->config->param.qos_bytes_limit;
1970               param->qos_limit_sec = server->config->param.qos_limit_sec;
1971               param->qos_limit_usec = server->config->param.qos_limit_usec;
1972             }
1973           }
1974
1975           backup_router = sconn->backup_router;
1976         }
1977       }
1978
1979       /* If we are primary router and we have backup router configured
1980          but it has not connected to use yet, do not accept any other
1981          connection. */
1982       if (server->wait_backup && server->server_type == SILC_ROUTER &&
1983           !server->backup_router && !backup_router) {
1984         SilcServerConfigRouter *router;
1985         router = silc_server_config_get_backup_router(server);
1986         if (router && strcmp(server->config->server_info->primary->server_ip,
1987                              sock->ip) &&
1988             silc_server_find_socket_by_host(server,
1989                                             SILC_SOCKET_TYPE_SERVER,
1990                                             router->backup_replace_ip, 0)) {
1991           SILC_LOG_INFO(("Will not accept connections because we do "
1992                          "not have backup router connection established"));
1993           silc_server_disconnect_remote(server, sock, 
1994                                         SILC_STATUS_ERR_PERM_DENIED,
1995                                         "We do not have connection to backup "
1996                                         "router established, try later");
1997           silc_free(sock->user_data);
1998           server->stat.auth_failures++;
1999
2000           /* From here on, wait 10 seconds for the backup router to appear. */
2001           silc_schedule_task_add(server->schedule, 0,
2002                                  silc_server_backup_router_wait,
2003                                  (void *)server, 10, 0,
2004                                  SILC_TASK_TIMEOUT, SILC_TASK_PRI_NORMAL);
2005           goto out;
2006         }
2007       }
2008
2009       SILC_LOG_DEBUG(("Remote host is %s",
2010                       ctx->conn_type == SILC_SOCKET_TYPE_SERVER ?
2011                       "server" : (backup_router ?
2012                                   "backup router" : "router")));
2013       SILC_LOG_INFO(("Connection %s (%s) is %s", sock->hostname,
2014                      sock->ip, ctx->conn_type == SILC_SOCKET_TYPE_SERVER ?
2015                      "server" : (backup_router ?
2016                                  "backup router" : "router")));
2017
2018       /* Add the server into server cache. The server name and Server ID
2019          is updated after we have received NEW_SERVER packet from the
2020          server. We mark ourselves as router for this server if we really
2021          are router. */
2022       new_server =
2023         silc_idlist_add_server((ctx->conn_type == SILC_SOCKET_TYPE_SERVER ?
2024                                 server->local_list : (backup_router ?
2025                                                       server->local_list :
2026                                                       server->global_list)),
2027                                NULL,
2028                                (ctx->conn_type == SILC_SOCKET_TYPE_SERVER ?
2029                                 SILC_SERVER : SILC_ROUTER),
2030                                NULL,
2031                                (ctx->conn_type == SILC_SOCKET_TYPE_SERVER ?
2032                                 server->id_entry : (backup_router ?
2033                                                     server->id_entry : NULL)),
2034                                sock);
2035       if (!new_server) {
2036         SILC_LOG_ERROR(("Could not add new server to cache"));
2037         silc_free(sock->user_data);
2038         silc_server_disconnect_remote(server, sock, 
2039                                       SILC_STATUS_ERR_AUTH_FAILED, NULL);
2040         server->stat.auth_failures++;
2041         goto out;
2042       }
2043       entry->data.status |= SILC_IDLIST_STATUS_LOCAL;
2044
2045       id_entry = (void *)new_server;
2046
2047       /* If the incoming connection is router and marked as backup router
2048          then add it to be one of our backups */
2049       if (ctx->conn_type == SILC_SOCKET_TYPE_ROUTER && backup_router) {
2050         /* Change it back to SERVER type since that's what it really is. */
2051         if (backup_local)
2052           ctx->conn_type = SILC_SOCKET_TYPE_SERVER;
2053         new_server->server_type = SILC_BACKUP_ROUTER;
2054
2055         SILC_SERVER_SEND_OPERS(server, FALSE, TRUE, SILC_NOTIFY_TYPE_NONE,
2056                                ("Backup router %s is now online",
2057                                 sock->hostname));
2058
2059         /* Remove the backup waiting with timeout */
2060         silc_schedule_task_add(server->schedule, 0,
2061                                silc_server_backup_router_wait,
2062                                (void *)server, 5, 0,
2063                                SILC_TASK_TIMEOUT, SILC_TASK_PRI_NORMAL);
2064       }
2065
2066       /* Statistics */
2067       if (ctx->conn_type == SILC_SOCKET_TYPE_SERVER) {
2068         server->stat.my_servers++;
2069       } else {
2070         server->stat.my_routers++;
2071         server->stat.routers++;
2072       }
2073       server->stat.servers++;
2074
2075       /* Check whether this connection is to be our primary router connection
2076          if we do not already have the primary route. */
2077       if (!backup_router &&
2078           server->standalone && ctx->conn_type == SILC_SOCKET_TYPE_ROUTER) {
2079         if (silc_server_config_is_primary_route(server) && !initiator)
2080           break;
2081
2082         SILC_LOG_DEBUG(("We are not standalone server anymore"));
2083         server->standalone = FALSE;
2084         if (!server->id_entry->router) {
2085           server->id_entry->router = id_entry;
2086           server->router = id_entry;
2087         }
2088       }
2089
2090       break;
2091     }
2092   default:
2093     goto out;
2094     break;
2095   }
2096
2097   sock->type = ctx->conn_type;
2098
2099   /* Add the common data structure to the ID entry. */
2100   silc_idlist_add_data(id_entry, (SilcIDListData)sock->user_data);
2101
2102   /* Add to sockets internal pointer for fast referencing */
2103   silc_free(sock->user_data);
2104   sock->user_data = id_entry;
2105
2106   /* Connection has been fully established now. Everything is ok. */
2107   SILC_LOG_DEBUG(("New connection authenticated"));
2108
2109   /* Perform keepalive. */
2110   if (param->keepalive_secs)
2111     silc_socket_set_heartbeat(sock, param->keepalive_secs, server,
2112                               silc_server_perform_heartbeat,
2113                               server->schedule);
2114
2115   /* Perform Quality of Service */
2116   if (param->qos)
2117     silc_socket_set_qos(sock, param->qos_rate_limit, param->qos_bytes_limit,
2118                         param->qos_limit_sec, param->qos_limit_usec,
2119                         server->schedule);
2120
2121  out:
2122   silc_protocol_free(protocol);
2123   if (ctx->packet)
2124     silc_packet_context_free(ctx->packet);
2125   if (ctx->ske)
2126     silc_ske_free(ctx->ske);
2127   silc_free(ctx->dest_id);
2128   silc_server_config_unref(&ctx->cconfig);
2129   silc_server_config_unref(&ctx->sconfig);
2130   silc_server_config_unref(&ctx->rconfig);
2131   silc_free(ctx);
2132   sock->protocol = NULL;
2133 }
2134
2135 /* This function is used to read packets from network and send packets to
2136    network. This is usually a generic task. */
2137
2138 SILC_TASK_CALLBACK(silc_server_packet_process)
2139 {
2140   SilcServer server = (SilcServer)context;
2141   SilcSocketConnection sock = server->sockets[fd];
2142   SilcIDListData idata;
2143   SilcCipher cipher = NULL;
2144   SilcHmac hmac = NULL;
2145   SilcUInt32 sequence = 0;
2146   bool local_is_router;
2147   int ret;
2148
2149   if (!sock) {
2150     SILC_LOG_DEBUG(("Unknown socket connection"));
2151     return;
2152   }
2153
2154   /* Packet sending */
2155
2156   if (type == SILC_TASK_WRITE) {
2157     /* Do not send data to disconnected connection */
2158     if (SILC_IS_DISCONNECTED(sock)) {
2159       SILC_LOG_DEBUG(("Disconnected socket connection, cannot send"));
2160       return;
2161     }
2162
2163     server->stat.packets_sent++;
2164
2165     /* Send the packet */
2166     ret = silc_packet_send(sock, TRUE);
2167
2168     /* If returned -2 could not write to connection now, will do
2169        it later. */
2170     if (ret == -2)
2171       return;
2172
2173     /* The packet has been sent and now it is time to set the connection
2174        back to only for input. When there is again some outgoing data
2175        available for this connection it will be set for output as well.
2176        This call clears the output setting and sets it only for input. */
2177     SILC_SET_CONNECTION_FOR_INPUT(server->schedule, fd);
2178     SILC_UNSET_OUTBUF_PENDING(sock);
2179     silc_buffer_clear(sock->outbuf);
2180
2181     if (ret == -1) {
2182       SILC_LOG_ERROR(("Error sending packet to connection "
2183                       "%s:%d [%s]", sock->hostname, sock->port,
2184                       (sock->type == SILC_SOCKET_TYPE_UNKNOWN ? "Unknown" :
2185                        sock->type == SILC_SOCKET_TYPE_CLIENT ? "Client" :
2186                        sock->type == SILC_SOCKET_TYPE_SERVER ? "Server" :
2187                        "Router")));
2188
2189       SILC_SET_DISCONNECTING(sock);
2190       if (sock->user_data)
2191         silc_server_free_sock_user_data(server, sock, NULL);
2192       silc_server_close_connection(server, sock);
2193     }
2194     return;
2195   }
2196
2197   /* Packet receiving */
2198
2199   /* Read some data from connection */
2200   ret = silc_packet_receive(sock);
2201   if (ret < 0) {
2202
2203     if (ret == -1) {
2204       SILC_LOG_ERROR(("Error receiving packet from connection "
2205                       "%s:%d [%s] %s", sock->hostname, sock->port,
2206                       (sock->type == SILC_SOCKET_TYPE_UNKNOWN ? "Unknown" :
2207                        sock->type == SILC_SOCKET_TYPE_CLIENT ? "Client" :
2208                        sock->type == SILC_SOCKET_TYPE_SERVER ? "Server" :
2209                        "Router"), strerror(errno)));
2210
2211       SILC_SET_DISCONNECTING(sock);
2212       if (sock->user_data)
2213         silc_server_free_sock_user_data(server, sock, NULL);
2214       silc_server_close_connection(server, sock);
2215     }
2216     return;
2217   }
2218
2219   /* EOF */
2220   if (ret == 0) {
2221     SILC_LOG_DEBUG(("Read EOF"));
2222
2223     /* If connection is disconnecting already we will finally
2224        close the connection */
2225     if (SILC_IS_DISCONNECTING(sock)) {
2226       if (sock->user_data)
2227         silc_server_free_sock_user_data(server, sock, NULL);
2228       silc_server_close_connection(server, sock);
2229       return;
2230     }
2231
2232     SILC_LOG_DEBUG(("Premature EOF from connection %d", sock->sock));
2233     SILC_SET_DISCONNECTING(sock);
2234
2235     if (sock->user_data) {
2236       char tmp[128];
2237       if (silc_socket_get_error(sock, tmp, sizeof(tmp) - 1))
2238         silc_server_free_sock_user_data(server, sock, tmp);
2239       else
2240         silc_server_free_sock_user_data(server, sock, NULL);
2241     } else if (server->router_conn && server->router_conn->sock == sock &&
2242                !server->router && server->standalone)
2243       silc_schedule_task_add(server->schedule, 0,
2244                              silc_server_connect_to_router,
2245                              server, 1, 0,
2246                              SILC_TASK_TIMEOUT,
2247                              SILC_TASK_PRI_NORMAL);
2248
2249     silc_server_close_connection(server, sock);
2250     return;
2251   }
2252
2253   /* If connection is disconnecting or disconnected we will ignore
2254      what we read. */
2255   if (SILC_IS_DISCONNECTING(sock) || SILC_IS_DISCONNECTED(sock)) {
2256     SILC_LOG_DEBUG(("Ignoring read data from disconnected connection"));
2257     return;
2258   }
2259
2260   /* Get keys and stuff from ID entry */
2261   idata = (SilcIDListData)sock->user_data;
2262   if (idata) {
2263     cipher = idata->receive_key;
2264     hmac = idata->hmac_receive;
2265     sequence = idata->psn_receive;
2266   }
2267
2268   /* Then, process the packet. This will call the parser that will then
2269      decrypt and parse the packet. */
2270
2271   local_is_router = (server->server_type == SILC_ROUTER);
2272
2273   /* If socket connection is our primary, we are backup and we are doing
2274      backup resuming, we won't process the packet as being a router 
2275      (affects channel message decryption). */
2276   if (server->backup_router && SILC_SERVER_IS_BACKUP(sock) &&
2277       SILC_PRIMARY_ROUTE(server) == sock)
2278     local_is_router = FALSE;
2279
2280   ret = silc_packet_receive_process(sock, local_is_router,
2281                                     cipher, hmac, sequence,
2282                                     silc_server_packet_parse, server);
2283
2284   /* If processing failed the connection is closed. */
2285   if (!ret) {
2286     /* On packet processing errors we may close our primary router 
2287        connection but won't become primary router if we are the backup
2288        since this is local error condition. */
2289     if (SILC_PRIMARY_ROUTE(server) == sock && server->backup_router)
2290       server->backup_noswitch = TRUE;
2291
2292     if (sock->user_data)
2293       silc_server_free_sock_user_data(server, sock, NULL);
2294     silc_server_close_connection(server, sock);
2295   }
2296 }
2297
2298 /* Parses whole packet, received earlier. */
2299
2300 SILC_TASK_CALLBACK(silc_server_packet_parse_real)
2301 {
2302   SilcPacketParserContext *parse_ctx = (SilcPacketParserContext *)context;
2303   SilcServer server = (SilcServer)parse_ctx->context;
2304   SilcSocketConnection sock = parse_ctx->sock;
2305   SilcPacketContext *packet = parse_ctx->packet;
2306   SilcIDListData idata = (SilcIDListData)sock->user_data;
2307   int ret;
2308
2309   server->stat.packets_received++;
2310
2311   /* Parse the packet */
2312   if (parse_ctx->normal)
2313     ret = silc_packet_parse(packet, idata ? idata->receive_key : NULL);
2314   else
2315     ret = silc_packet_parse_special(packet, idata ? idata->receive_key : NULL);
2316
2317   /* If entry is disabled ignore what we got. */
2318   if (idata && idata->status & SILC_IDLIST_STATUS_DISABLED && 
2319       ret != SILC_PACKET_HEARTBEAT && ret != SILC_PACKET_RESUME_ROUTER &&
2320       ret != SILC_PACKET_REKEY && ret != SILC_PACKET_REKEY_DONE) {
2321     SILC_LOG_DEBUG(("Connection is disabled"));
2322     goto out;
2323   }
2324
2325   if (ret == SILC_PACKET_NONE) {
2326     SILC_LOG_DEBUG(("Error parsing packet"));
2327     goto out;
2328   }
2329
2330   /* Check that the the current client ID is same as in the client's packet. */
2331   if (sock->type == SILC_SOCKET_TYPE_CLIENT) {
2332     SilcClientEntry client = (SilcClientEntry)sock->user_data;
2333     if (client && client->id && packet->src_id) {
2334       void *id = silc_id_str2id(packet->src_id, packet->src_id_len,
2335                                 packet->src_id_type);
2336       if (!id || !SILC_ID_CLIENT_COMPARE(client->id, id)) {
2337         silc_free(id);
2338         SILC_LOG_DEBUG(("Packet source is not same as sender"));
2339         goto out;
2340       }
2341       silc_free(id);
2342     }
2343   }
2344
2345   if (server->server_type == SILC_ROUTER) {
2346     /* Route the packet if it is not destined to us. Other ID types but
2347        server are handled separately after processing them. */
2348     if (packet->dst_id && !(packet->flags & SILC_PACKET_FLAG_BROADCAST) &&
2349         packet->dst_id_type == SILC_ID_SERVER &&
2350         sock->type != SILC_SOCKET_TYPE_CLIENT &&
2351         memcmp(packet->dst_id, server->id_string, server->id_string_len)) {
2352
2353       /* Route the packet to fastest route for the destination ID */
2354       void *id = silc_id_str2id(packet->dst_id, packet->dst_id_len,
2355                                 packet->dst_id_type);
2356       if (!id)
2357         goto out;
2358       silc_server_packet_route(server,
2359                                silc_server_route_get(server, id,
2360                                                      packet->dst_id_type),
2361                                packet);
2362       silc_free(id);
2363       goto out;
2364     }
2365   }
2366
2367   /* Parse the incoming packet type */
2368   silc_server_packet_parse_type(server, sock, packet);
2369
2370   /* Broadcast packet if it is marked as broadcast packet and it is
2371      originated from router and we are router. */
2372   if (server->server_type == SILC_ROUTER &&
2373       sock->type == SILC_SOCKET_TYPE_ROUTER &&
2374       packet->flags & SILC_PACKET_FLAG_BROADCAST) {
2375     /* Broadcast to our primary route */
2376     silc_server_packet_broadcast(server, SILC_PRIMARY_ROUTE(server), packet);
2377
2378     /* If we have backup routers then we need to feed all broadcast
2379        data to those servers. */
2380     silc_server_backup_broadcast(server, sock, packet);
2381   }
2382
2383  out:
2384   silc_packet_context_free(packet);
2385   silc_free(parse_ctx);
2386 }
2387
2388 /* Parser callback called by silc_packet_receive_process. This merely
2389    registers timeout that will handle the actual parsing when appropriate. */
2390
2391 bool silc_server_packet_parse(SilcPacketParserContext *parser_context,
2392                               void *context)
2393 {
2394   SilcServer server = (SilcServer)context;
2395   SilcSocketConnection sock = parser_context->sock;
2396   SilcIDListData idata = (SilcIDListData)sock->user_data;
2397   bool ret;
2398
2399   if (idata)
2400     idata->psn_receive = parser_context->packet->sequence + 1;
2401
2402   /* If protocol for this connection is key exchange or rekey then we'll
2403      process all packets synchronously, since there might be packets in
2404      queue that we are not able to decrypt without first processing the
2405      packets before them. */
2406   if ((parser_context->packet->type == SILC_PACKET_REKEY ||
2407        parser_context->packet->type == SILC_PACKET_REKEY_DONE) ||
2408       (sock->protocol && sock->protocol->protocol &&
2409        (sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_KEY_EXCHANGE ||
2410         sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY))) {
2411     silc_server_packet_parse_real(server->schedule, server, 0, sock->sock,
2412                                   parser_context);
2413
2414     /* Reprocess data since we'll return FALSE here.  This is because
2415        the idata->receive_key might have become valid in the last packet
2416        and we want to call this processor with valid cipher. */
2417     if (idata)
2418       ret = silc_packet_receive_process(
2419                                   sock, server->server_type == SILC_ROUTER,
2420                                   idata->receive_key,
2421                                   idata->hmac_receive, idata->psn_receive,
2422                                   silc_server_packet_parse, server);
2423     else
2424       ret = silc_packet_receive_process(
2425                                   sock, server->server_type == SILC_ROUTER,
2426                                   NULL, NULL, 0,
2427                                   silc_server_packet_parse, server);
2428
2429     if (!ret) {
2430       /* On packet processing errors we may close our primary router 
2431          connection but won't become primary router if we are the backup
2432          since this is local error condition. */
2433       if (SILC_PRIMARY_ROUTE(server) == sock && server->backup_router)
2434         server->backup_noswitch = TRUE;
2435
2436       if (sock->user_data)
2437         silc_server_free_sock_user_data(server, sock, NULL);
2438       silc_server_close_connection(server, sock);
2439     }
2440
2441     return FALSE;
2442   }
2443
2444   switch (sock->type) {
2445   case SILC_SOCKET_TYPE_UNKNOWN:
2446   case SILC_SOCKET_TYPE_CLIENT:
2447     /* Parse the packet with timeout */
2448     silc_schedule_task_add(server->schedule, sock->sock,
2449                            silc_server_packet_parse_real,
2450                            (void *)parser_context, 0, 100000,
2451                            SILC_TASK_TIMEOUT,
2452                            SILC_TASK_PRI_NORMAL);
2453     break;
2454   case SILC_SOCKET_TYPE_SERVER:
2455   case SILC_SOCKET_TYPE_ROUTER:
2456     /* Packets from servers are parsed immediately */
2457     silc_server_packet_parse_real(server->schedule, server, 0, sock->sock,
2458                                   parser_context);
2459     break;
2460   default:
2461     return TRUE;
2462   }
2463
2464   return TRUE;
2465 }
2466
2467 /* Parses the packet type and calls what ever routines the packet type
2468    requires. This is done for all incoming packets. */
2469
2470 void silc_server_packet_parse_type(SilcServer server,
2471                                    SilcSocketConnection sock,
2472                                    SilcPacketContext *packet)
2473 {
2474   SilcPacketType type = packet->type;
2475   SilcIDListData idata = (SilcIDListData)sock->user_data;
2476
2477   SILC_LOG_DEBUG(("Received %s packet [flags %d]",
2478                   silc_get_packet_name(type), packet->flags));
2479
2480   /* Parse the packet type */
2481   switch (type) {
2482   case SILC_PACKET_DISCONNECT:
2483     {
2484       SilcStatus status;
2485       char *message = NULL;
2486
2487       if (packet->flags & SILC_PACKET_FLAG_LIST)
2488         break;
2489       if (packet->buffer->len < 1)
2490         break;
2491
2492       status = (SilcStatus)packet->buffer->data[0];
2493       if (packet->buffer->len > 1 &&
2494           silc_utf8_valid(packet->buffer->data + 1, packet->buffer->len - 1))
2495         message = silc_memdup(packet->buffer->data + 1,
2496                               packet->buffer->len - 1);
2497
2498       SILC_LOG_INFO(("Disconnected by %s (%s): %s (%d) %s", 
2499                      sock->ip, sock->hostname,
2500                      silc_get_status_message(status), status,
2501                      message ? message : ""));
2502       silc_free(message);
2503
2504       /* Handle the disconnection from our end too */
2505       if (sock->user_data && SILC_IS_LOCAL(sock->user_data))
2506         silc_server_free_sock_user_data(server, sock, NULL);
2507       silc_server_close_connection(server, sock);
2508     }
2509     break;
2510
2511   case SILC_PACKET_SUCCESS:
2512     /*
2513      * Success received for something. For now we can have only
2514      * one protocol for connection executing at once hence this
2515      * success message is for whatever protocol is executing currently.
2516      */
2517     if (packet->flags & SILC_PACKET_FLAG_LIST)
2518       break;
2519     if (sock->protocol)
2520       silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
2521     break;
2522
2523   case SILC_PACKET_FAILURE:
2524     /*
2525      * Failure received for something. For now we can have only
2526      * one protocol for connection executing at once hence this
2527      * failure message is for whatever protocol is executing currently.
2528      */
2529     if (packet->flags & SILC_PACKET_FLAG_LIST)
2530       break;
2531     if (sock->protocol) {
2532       sock->protocol->state = SILC_PROTOCOL_STATE_FAILURE;
2533       silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
2534     }
2535     break;
2536
2537   case SILC_PACKET_REJECT:
2538     if (packet->flags & SILC_PACKET_FLAG_LIST)
2539       break;
2540     return;
2541     break;
2542
2543   case SILC_PACKET_NOTIFY:
2544     /*
2545      * Received notify packet. Server can receive notify packets from
2546      * router. Server then relays the notify messages to clients if needed.
2547      */
2548     if (packet->flags & SILC_PACKET_FLAG_LIST)
2549       silc_server_notify_list(server, sock, packet);
2550     else
2551       silc_server_notify(server, sock, packet);
2552     break;
2553
2554     /*
2555      * Channel packets
2556      */
2557   case SILC_PACKET_CHANNEL_MESSAGE:
2558     /*
2559      * Received channel message. Channel messages are special packets
2560      * (although probably most common ones) thus they are handled
2561      * specially.
2562      */
2563     if (packet->flags & SILC_PACKET_FLAG_LIST)
2564       break;
2565     idata->last_receive = time(NULL);
2566     silc_server_channel_message(server, sock, packet);
2567     break;
2568
2569   case SILC_PACKET_CHANNEL_KEY:
2570     /*
2571      * Received key for channel. As channels are created by the router
2572      * the keys are as well. We will distribute the key to all of our
2573      * locally connected clients on the particular channel. Router
2574      * never receives this channel and thus is ignored.
2575      */
2576     if (packet->flags & SILC_PACKET_FLAG_LIST)
2577       break;
2578     silc_server_channel_key(server, sock, packet);
2579     break;
2580
2581     /*
2582      * Command packets
2583      */
2584   case SILC_PACKET_COMMAND:
2585     /*
2586      * Recived command. Processes the command request and allocates the
2587      * command context and calls the command.
2588      */
2589     if (packet->flags & SILC_PACKET_FLAG_LIST)
2590       break;
2591     silc_server_command_process(server, sock, packet);
2592     break;
2593
2594   case SILC_PACKET_COMMAND_REPLY:
2595     /*
2596      * Received command reply packet. Received command reply to command. It
2597      * may be reply to command sent by us or reply to command sent by client
2598      * that we've routed further.
2599      */
2600     if (packet->flags & SILC_PACKET_FLAG_LIST)
2601       break;
2602     silc_server_command_reply(server, sock, packet);
2603     break;
2604
2605     /*
2606      * Private Message packets
2607      */
2608   case SILC_PACKET_PRIVATE_MESSAGE:
2609     /*
2610      * Received private message packet. The packet is coming from either
2611      * client or server.
2612      */
2613     if (packet->flags & SILC_PACKET_FLAG_LIST)
2614       break;
2615     idata->last_receive = time(NULL);
2616     silc_server_private_message(server, sock, packet);
2617     break;
2618
2619   case SILC_PACKET_PRIVATE_MESSAGE_KEY:
2620     /*
2621      * Private message key packet.
2622      */
2623     if (packet->flags & SILC_PACKET_FLAG_LIST)
2624       break;
2625     silc_server_private_message_key(server, sock, packet);
2626     break;
2627
2628     /*
2629      * Key Exchange protocol packets
2630      */
2631   case SILC_PACKET_KEY_EXCHANGE:
2632     if (packet->flags & SILC_PACKET_FLAG_LIST)
2633       break;
2634
2635     if (sock->protocol && sock->protocol->protocol &&
2636         sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_KEY_EXCHANGE) {
2637       SilcServerKEInternalContext *proto_ctx =
2638         (SilcServerKEInternalContext *)sock->protocol->context;
2639
2640       proto_ctx->packet = silc_packet_context_dup(packet);
2641
2642       /* Let the protocol handle the packet */
2643       silc_protocol_execute(sock->protocol, server->schedule, 0, 100000);
2644     } else {
2645       SILC_LOG_ERROR(("Received Key Exchange packet but no key exchange "
2646                       "protocol active, packet dropped."));
2647     }
2648     break;
2649
2650   case SILC_PACKET_KEY_EXCHANGE_1:
2651     if (packet->flags & SILC_PACKET_FLAG_LIST)
2652       break;
2653
2654     if (sock->protocol && sock->protocol->protocol &&
2655         (sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_KEY_EXCHANGE ||
2656          sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY)) {
2657
2658       if (sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY) {
2659         SilcServerRekeyInternalContext *proto_ctx =
2660           (SilcServerRekeyInternalContext *)sock->protocol->context;
2661
2662         if (proto_ctx->packet)
2663           silc_packet_context_free(proto_ctx->packet);
2664
2665         proto_ctx->packet = silc_packet_context_dup(packet);
2666
2667         /* Let the protocol handle the packet */
2668         silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
2669       } else {
2670         SilcServerKEInternalContext *proto_ctx =
2671           (SilcServerKEInternalContext *)sock->protocol->context;
2672
2673         if (proto_ctx->packet)
2674           silc_packet_context_free(proto_ctx->packet);
2675
2676         proto_ctx->packet = silc_packet_context_dup(packet);
2677         proto_ctx->dest_id_type = packet->src_id_type;
2678         proto_ctx->dest_id = silc_id_str2id(packet->src_id, packet->src_id_len,
2679                                             packet->src_id_type);
2680         if (!proto_ctx->dest_id)
2681           break;
2682
2683         /* Let the protocol handle the packet */
2684         silc_protocol_execute(sock->protocol, server->schedule,
2685                               0, 100000);
2686       }
2687     } else {
2688       SILC_LOG_ERROR(("Received Key Exchange 1 packet but no key exchange "
2689                       "protocol active, packet dropped."));
2690     }
2691     break;
2692
2693   case SILC_PACKET_KEY_EXCHANGE_2:
2694     if (packet->flags & SILC_PACKET_FLAG_LIST)
2695       break;
2696
2697     if (sock->protocol && sock->protocol->protocol &&
2698         (sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_KEY_EXCHANGE ||
2699          sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY)) {
2700
2701       if (sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY) {
2702         SilcServerRekeyInternalContext *proto_ctx =
2703           (SilcServerRekeyInternalContext *)sock->protocol->context;
2704
2705         if (proto_ctx->packet)
2706           silc_packet_context_free(proto_ctx->packet);
2707
2708         proto_ctx->packet = silc_packet_context_dup(packet);
2709
2710         /* Let the protocol handle the packet */
2711         silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
2712       } else {
2713         SilcServerKEInternalContext *proto_ctx =
2714           (SilcServerKEInternalContext *)sock->protocol->context;
2715
2716         if (proto_ctx->packet)
2717           silc_packet_context_free(proto_ctx->packet);
2718
2719         proto_ctx->packet = silc_packet_context_dup(packet);
2720         proto_ctx->dest_id_type = packet->src_id_type;
2721         proto_ctx->dest_id = silc_id_str2id(packet->src_id, packet->src_id_len,
2722                                             packet->src_id_type);
2723         if (!proto_ctx->dest_id)
2724           break;
2725
2726         /* Let the protocol handle the packet */
2727         silc_protocol_execute(sock->protocol, server->schedule,
2728                               0, 100000);
2729       }
2730     } else {
2731       SILC_LOG_ERROR(("Received Key Exchange 2 packet but no key exchange "
2732                       "protocol active, packet dropped."));
2733     }
2734     break;
2735
2736   case SILC_PACKET_CONNECTION_AUTH_REQUEST:
2737     /*
2738      * Connection authentication request packet. When we receive this packet
2739      * we will send to the other end information about our mandatory
2740      * authentication method for the connection. This packet maybe received
2741      * at any time.
2742      */
2743     if (packet->flags & SILC_PACKET_FLAG_LIST)
2744       break;
2745     silc_server_connection_auth_request(server, sock, packet);
2746     break;
2747
2748     /*
2749      * Connection Authentication protocol packets
2750      */
2751   case SILC_PACKET_CONNECTION_AUTH:
2752     /* Start of the authentication protocol. We receive here the
2753        authentication data and will verify it. */
2754     if (packet->flags & SILC_PACKET_FLAG_LIST)
2755       break;
2756
2757     if (sock->protocol && sock->protocol->protocol->type
2758         == SILC_PROTOCOL_SERVER_CONNECTION_AUTH) {
2759
2760       SilcServerConnAuthInternalContext *proto_ctx =
2761         (SilcServerConnAuthInternalContext *)sock->protocol->context;
2762
2763       proto_ctx->packet = silc_packet_context_dup(packet);
2764
2765       /* Let the protocol handle the packet */
2766       silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
2767     } else {
2768       SILC_LOG_ERROR(("Received Connection Auth packet but no authentication "
2769                       "protocol active, packet dropped."));
2770     }
2771     break;
2772
2773   case SILC_PACKET_NEW_ID:
2774     /*
2775      * Received New ID packet. This includes some new ID that has been
2776      * created. It may be for client, server or channel. This is the way
2777      * to distribute information about new registered entities in the
2778      * SILC network.
2779      */
2780     if (packet->flags & SILC_PACKET_FLAG_LIST)
2781       silc_server_new_id_list(server, sock, packet);
2782     else
2783       silc_server_new_id(server, sock, packet);
2784     break;
2785
2786   case SILC_PACKET_NEW_CLIENT:
2787     /*
2788      * Received new client packet. This includes client information that
2789      * we will use to create initial client ID. After creating new
2790      * ID we will send it to the client.
2791      */
2792     if (packet->flags & SILC_PACKET_FLAG_LIST)
2793       break;
2794     silc_server_new_client(server, sock, packet);
2795     break;
2796
2797   case SILC_PACKET_NEW_SERVER:
2798     /*
2799      * Received new server packet. This includes Server ID and some other
2800      * information that we may save. This is received after server has
2801      * connected to us.
2802      */
2803     if (packet->flags & SILC_PACKET_FLAG_LIST)
2804       break;
2805     silc_server_new_server(server, sock, packet);
2806     break;
2807
2808   case SILC_PACKET_NEW_CHANNEL:
2809     /*
2810      * Received new channel packet. Information about new channel in the
2811      * network are distributed using this packet.
2812      */
2813     if (packet->flags & SILC_PACKET_FLAG_LIST)
2814       silc_server_new_channel_list(server, sock, packet);
2815     else
2816       silc_server_new_channel(server, sock, packet);
2817     break;
2818
2819   case SILC_PACKET_HEARTBEAT:
2820     /*
2821      * Received heartbeat.
2822      */
2823     if (packet->flags & SILC_PACKET_FLAG_LIST)
2824       break;
2825     break;
2826
2827   case SILC_PACKET_KEY_AGREEMENT:
2828     /*
2829      * Received heartbeat.
2830      */
2831     if (packet->flags & SILC_PACKET_FLAG_LIST)
2832       break;
2833     silc_server_key_agreement(server, sock, packet);
2834     break;
2835
2836   case SILC_PACKET_REKEY:
2837     /*
2838      * Received re-key packet. The sender wants to regenerate the session
2839      * keys.
2840      */
2841     if (packet->flags & SILC_PACKET_FLAG_LIST)
2842       break;
2843     silc_server_rekey(server, sock, packet);
2844     break;
2845
2846   case SILC_PACKET_REKEY_DONE:
2847     /*
2848      * The re-key is done.
2849      */
2850     if (packet->flags & SILC_PACKET_FLAG_LIST)
2851       break;
2852
2853     if (sock->protocol && sock->protocol->protocol &&
2854         sock->protocol->protocol->type == SILC_PROTOCOL_SERVER_REKEY) {
2855
2856       SilcServerRekeyInternalContext *proto_ctx =
2857         (SilcServerRekeyInternalContext *)sock->protocol->context;
2858
2859       if (proto_ctx->packet)
2860         silc_packet_context_free(proto_ctx->packet);
2861
2862       proto_ctx->packet = silc_packet_context_dup(packet);
2863
2864       /* Let the protocol handle the packet */
2865       silc_protocol_execute(sock->protocol, server->schedule, 0, 0);
2866     } else {
2867       SILC_LOG_ERROR(("Received Re-key done packet but no re-key "
2868                       "protocol active, packet dropped."));
2869     }
2870     break;
2871
2872   case SILC_PACKET_FTP:
2873     /* FTP packet */
2874     if (packet->flags & SILC_PACKET_FLAG_LIST)
2875       break;
2876     silc_server_ftp(server, sock, packet);
2877     break;
2878
2879   case SILC_PACKET_RESUME_CLIENT:
2880     /* Resume client */
2881     if (packet->flags & SILC_PACKET_FLAG_LIST)
2882       break;
2883     silc_server_resume_client(server, sock, packet);
2884     break;
2885
2886   case SILC_PACKET_RESUME_ROUTER:
2887     /* Resume router packet received. This packet is received for backup
2888        router resuming protocol. */
2889     if (packet->flags & SILC_PACKET_FLAG_LIST)
2890       break;
2891     silc_server_backup_resume_router(server, sock, packet);
2892     break;
2893
2894   default:
2895     SILC_LOG_ERROR(("Incorrect packet type %d, packet dropped", type));
2896     break;
2897   }
2898 }
2899
2900 /* Creates connection to a remote router. */
2901
2902 void silc_server_create_connection(SilcServer server,
2903                                    const char *remote_host, SilcUInt32 port)
2904 {
2905   SilcServerConnection sconn;
2906
2907   /* Allocate connection object for hold connection specific stuff. */
2908   sconn = silc_calloc(1, sizeof(*sconn));
2909   sconn->remote_host = strdup(remote_host);
2910   sconn->remote_port = port;
2911   sconn->no_reconnect = TRUE;
2912
2913   silc_schedule_task_add(server->schedule, 0,
2914                          silc_server_connect_router,
2915                          (void *)sconn, 0, 1, SILC_TASK_TIMEOUT,
2916                          SILC_TASK_PRI_NORMAL);
2917 }
2918
2919 SILC_TASK_CALLBACK(silc_server_close_connection_final)
2920 {
2921   silc_socket_free(context);
2922 }
2923
2924 /* Closes connection to socket connection */
2925
2926 void silc_server_close_connection(SilcServer server,
2927                                   SilcSocketConnection sock)
2928 {
2929   char tmp[128];
2930
2931   if (!server->sockets[sock->sock] && SILC_IS_DISCONNECTED(sock)) {
2932     silc_schedule_task_add(server->schedule, sock->sock,
2933                            silc_server_close_connection_final,
2934                            (void *)sock, 0, 1, SILC_TASK_TIMEOUT,
2935                            SILC_TASK_PRI_NORMAL);
2936     return;
2937   }
2938
2939   memset(tmp, 0, sizeof(tmp));
2940   silc_socket_get_error(sock, tmp, sizeof(tmp));
2941   SILC_LOG_INFO(("Closing connection %s:%d [%s] %s", sock->hostname,
2942                   sock->port,
2943                   (sock->type == SILC_SOCKET_TYPE_UNKNOWN ? "Unknown" :
2944                    sock->type == SILC_SOCKET_TYPE_CLIENT ? "Client" :
2945                    sock->type == SILC_SOCKET_TYPE_SERVER ? "Server" :
2946                    "Router"), tmp[0] ? tmp : ""));
2947
2948   /* We won't listen for this connection anymore */
2949   silc_schedule_unset_listen_fd(server->schedule, sock->sock);
2950
2951   /* Unregister all tasks */
2952   silc_schedule_task_del_by_fd(server->schedule, sock->sock);
2953
2954   /* Close the actual connection */
2955   silc_net_close_connection(sock->sock);
2956   server->sockets[sock->sock] = NULL;
2957
2958   /* If sock->user_data is NULL then we'll check for active protocols
2959      here since the silc_server_free_sock_user_data has not been called
2960      for this connection. */
2961   if (!sock->user_data) {
2962     /* If any protocol is active cancel its execution. It will call
2963        the final callback which will finalize the disconnection. */
2964     if (sock->protocol && sock->protocol->protocol &&
2965         sock->protocol->protocol->type != SILC_PROTOCOL_SERVER_BACKUP) {
2966       SILC_LOG_DEBUG(("Cancelling protocol, calling final callback"));
2967       silc_protocol_cancel(sock->protocol, server->schedule);
2968       sock->protocol->state = SILC_PROTOCOL_STATE_ERROR;
2969       silc_protocol_execute_final(sock->protocol, server->schedule);
2970       sock->protocol = NULL;
2971       return;
2972     }
2973   }
2974
2975   silc_schedule_task_add(server->schedule, sock->sock,
2976                          silc_server_close_connection_final,
2977                          (void *)sock, 0, 1, SILC_TASK_TIMEOUT,
2978                          SILC_TASK_PRI_NORMAL);
2979 }
2980
2981 /* Sends disconnect message to remote connection and disconnects the
2982    connection. */
2983
2984 void silc_server_disconnect_remote(SilcServer server,
2985                                    SilcSocketConnection sock,
2986                                    SilcStatus status, ...)
2987 {
2988   va_list ap;
2989   unsigned char buf[512];
2990   SilcBuffer buffer;
2991   char *cp;
2992   int len;
2993
2994   if (!sock || SILC_IS_DISCONNECTED(sock))
2995     return;
2996
2997   memset(buf, 0, sizeof(buf));
2998   va_start(ap, status);
2999   cp = va_arg(ap, char *);
3000   if (cp) {
3001     vsnprintf(buf, sizeof(buf) - 1, cp, ap);
3002     cp = buf;
3003   }
3004   va_end(ap);
3005
3006   SILC_LOG_DEBUG(("Disconnecting remote host"));
3007
3008   /* Notify remote end that the conversation is over. The notify message
3009      is tried to be sent immediately. */
3010
3011   len = 1;
3012   if (cp)
3013     len += silc_utf8_encoded_len(buf, strlen(buf), SILC_STRING_ASCII);
3014
3015   buffer = silc_buffer_alloc_size(len);
3016   if (!buffer)
3017     goto out;
3018
3019   buffer->data[0] = status;
3020   if (cp)
3021     silc_utf8_encode(buf, strlen(buf), SILC_STRING_ASCII, buffer->data + 1,
3022                      buffer->len - 1);
3023   silc_server_packet_send(server, sock, SILC_PACKET_DISCONNECT, 0,
3024                           buffer->data, buffer->len, TRUE);
3025   silc_buffer_free(buffer);
3026
3027  out:
3028   silc_server_packet_queue_purge(server, sock);
3029
3030   /* Mark the connection to be disconnected */
3031   SILC_SET_DISCONNECTED(sock);
3032   silc_server_close_connection(server, sock);
3033 }
3034
3035 SILC_TASK_CALLBACK(silc_server_free_client_data_timeout)
3036 {
3037   SilcServer server = app_context;
3038   SilcClientEntry client = context;
3039
3040   assert(!silc_hash_table_count(client->channels));
3041
3042   silc_idlist_del_data(client);
3043   silc_idcache_purge_by_context(server->local_list->clients, client);
3044 }
3045
3046 /* Frees client data and notifies about client's signoff. */
3047
3048 void silc_server_free_client_data(SilcServer server,
3049                                   SilcSocketConnection sock,
3050                                   SilcClientEntry client,
3051                                   int notify,
3052                                   const char *signoff)
3053 {
3054   SILC_LOG_DEBUG(("Freeing client data"));
3055
3056   /* If there is pending outgoing data for the client then purge it
3057      to the network before removing the client entry. */
3058   silc_server_packet_queue_purge(server, sock);
3059
3060   if (client->id) {
3061     /* Check if anyone is watching this nickname */
3062     if (server->server_type == SILC_ROUTER)
3063       silc_server_check_watcher_list(server, client, NULL,
3064                                      SILC_NOTIFY_TYPE_SIGNOFF);
3065
3066     /* Send SIGNOFF notify to routers. */
3067     if (notify)
3068       silc_server_send_notify_signoff(server, SILC_PRIMARY_ROUTE(server),
3069                                       SILC_BROADCAST(server), client->id,
3070                                       signoff);
3071   }
3072
3073   /* Remove client from all channels */
3074   if (notify)
3075     silc_server_remove_from_channels(server, NULL, client,
3076                                      TRUE, (char *)signoff, TRUE, FALSE);
3077   else
3078     silc_server_remove_from_channels(server, NULL, client,
3079                                      FALSE, NULL, FALSE, FALSE);
3080
3081   /* Remove this client from watcher list if it is */
3082   silc_server_del_from_watcher_list(server, client);
3083
3084   /* Update statistics */
3085   server->stat.my_clients--;
3086   server->stat.clients--;
3087   if (server->stat.cell_clients)
3088     server->stat.cell_clients--;
3089   SILC_OPER_STATS_UPDATE(client, server, SILC_UMODE_SERVER_OPERATOR);
3090   SILC_OPER_STATS_UPDATE(client, router, SILC_UMODE_ROUTER_OPERATOR);
3091   silc_schedule_task_del_by_context(server->schedule, client);
3092
3093   /* We will not delete the client entry right away. We will take it
3094      into history (for WHOWAS command) for 5 minutes, unless we're
3095      shutting down server. */
3096   if (!server->server_shutdown) {
3097     silc_schedule_task_add(server->schedule, 0,
3098                            silc_server_free_client_data_timeout,
3099                            client, 300, 0,
3100                            SILC_TASK_TIMEOUT, SILC_TASK_PRI_LOW);
3101     client->data.status &= ~SILC_IDLIST_STATUS_REGISTERED;
3102     client->data.status &= ~SILC_IDLIST_STATUS_LOCAL;
3103     client->mode = 0;
3104     client->router = NULL;
3105     client->connection = NULL;
3106   } else {
3107     /* Delete directly since we're shutting down server */
3108     silc_idlist_del_data(client);
3109     silc_idlist_del_client(server->local_list, client);
3110   }
3111 }
3112
3113 /* Frees user_data pointer from socket connection object. This also sends
3114    appropriate notify packets to the network to inform about leaving
3115    entities. */
3116
3117 void silc_server_free_sock_user_data(SilcServer server,
3118                                      SilcSocketConnection sock,
3119                                      const char *signoff_message)
3120 {
3121   switch (sock->type) {
3122   case SILC_SOCKET_TYPE_CLIENT:
3123     {
3124       SilcClientEntry user_data = (SilcClientEntry)sock->user_data;
3125       silc_server_free_client_data(server, sock, user_data, TRUE,
3126                                    signoff_message);
3127       break;
3128     }
3129   case SILC_SOCKET_TYPE_SERVER:
3130   case SILC_SOCKET_TYPE_ROUTER:
3131     {
3132       SilcServerEntry user_data = (SilcServerEntry)sock->user_data;
3133       SilcServerEntry backup_router = NULL;
3134
3135       SILC_LOG_DEBUG(("Freeing server data"));
3136
3137       if (user_data->id)
3138         backup_router = silc_server_backup_get(server, user_data->id);
3139
3140       if (!server->backup_router && server->server_type == SILC_ROUTER &&
3141           backup_router == server->id_entry &&
3142           sock->type != SILC_SOCKET_TYPE_ROUTER)
3143         backup_router = NULL;
3144
3145       if (server->server_shutdown || server->backup_noswitch)
3146         backup_router = NULL;
3147
3148       /* If this was our primary router connection then we're lost to
3149          the outside world. */
3150       if (server->router == user_data) {
3151         /* Check whether we have a backup router connection */
3152         if (!backup_router || backup_router == user_data) {
3153           silc_schedule_task_add(server->schedule, 0,
3154                                  silc_server_connect_to_router,
3155                                  server, 1, 0,
3156                                  SILC_TASK_TIMEOUT,
3157                                  SILC_TASK_PRI_NORMAL);
3158
3159           server->id_entry->router = NULL;
3160           server->router = NULL;
3161           server->standalone = TRUE;
3162           backup_router = NULL;
3163         } else {
3164           if (server->id_entry != backup_router) {
3165             SILC_LOG_INFO(("New primary router is backup router %s",
3166                            backup_router->server_name));
3167             server->id_entry->router = backup_router;
3168             server->router = backup_router;
3169             server->router_connect = time(0);
3170             server->backup_primary = TRUE;
3171           } else {
3172             SILC_LOG_INFO(("We are now new primary router in this cell"));
3173             server->id_entry->router = NULL;
3174             server->router = NULL;
3175             server->standalone = TRUE;
3176
3177             /* We stop here to take a breath */
3178             sleep(2);
3179           }
3180
3181           if (server->server_type == SILC_BACKUP_ROUTER) {
3182             server->server_type = SILC_ROUTER;
3183
3184             /* We'll need to constantly try to reconnect to the primary
3185                router so that we'll see when it comes back online. */
3186             silc_server_backup_reconnect(server, sock->ip, sock->port,
3187                                          silc_server_backup_connected,
3188                                          NULL);
3189           }
3190
3191           /* Mark this connection as replaced */
3192           silc_server_backup_replaced_add(server, user_data->id,
3193                                           backup_router);
3194         }
3195       } else if (backup_router) {
3196         SILC_LOG_INFO(("Enabling the use of backup router %s",
3197                        backup_router->server_name));
3198
3199         /* Mark this connection as replaced */
3200         silc_server_backup_replaced_add(server, user_data->id,
3201                                         backup_router);
3202       } else if (server->server_type == SILC_SERVER &&
3203                  sock->type == SILC_SOCKET_TYPE_ROUTER) {
3204         /* Reconnect to the router (backup) */
3205         silc_schedule_task_add(server->schedule, 0,
3206                                silc_server_connect_to_router,
3207                                server, 1, 0,
3208                                SILC_TASK_TIMEOUT,
3209                                SILC_TASK_PRI_NORMAL);
3210       }
3211
3212       if (!backup_router) {
3213         /* Remove all servers that are originated from this server, and
3214            remove the clients of those servers too. */
3215         silc_server_remove_servers_by_server(server, user_data, TRUE);
3216
3217         /* Remove the clients that this server owns as they will become
3218            invalid now too.  For backup router the server is actually
3219            coming from the primary router, so mark that as the owner
3220            of this entry. */
3221         if (server->server_type == SILC_BACKUP_ROUTER &&
3222             sock->type == SILC_SOCKET_TYPE_SERVER)
3223           silc_server_remove_clients_by_server(server, server->router,
3224                                                user_data, TRUE);
3225         else
3226           silc_server_remove_clients_by_server(server, user_data,
3227                                                user_data, TRUE);
3228
3229         /* Remove channels owned by this server */
3230         if (server->server_type == SILC_SERVER)
3231           silc_server_remove_channels_by_server(server, user_data);
3232       } else {
3233         /* Enable local server connections that may be disabled */
3234         silc_server_local_servers_toggle_enabled(server, TRUE);
3235
3236         /* Update the client entries of this server to the new backup
3237            router.  If we are the backup router we also resolve the real
3238            servers for the clients.  After updating is over this also
3239            removes the clients that this server explicitly owns. */
3240         silc_server_update_clients_by_server(server, user_data,
3241                                              backup_router, TRUE);
3242
3243         /* If we are router and just lost our primary router (now standlaone)
3244            we remove everything that was behind it, since we don't know
3245            any better. */
3246         if (server->server_type == SILC_ROUTER && server->standalone)
3247           /* Remove all servers that are originated from this server, and
3248              remove the clients of those servers too. */
3249           silc_server_remove_servers_by_server(server, user_data, TRUE);
3250
3251         /* Finally remove the clients that are explicitly owned by this
3252            server.  They go down with the server. */
3253         silc_server_remove_clients_by_server(server, user_data,
3254                                              user_data, TRUE);
3255
3256         /* Update our server cache to use the new backup router too. */
3257         silc_server_update_servers_by_server(server, user_data, backup_router);
3258         if (server->server_type == SILC_SERVER)
3259           silc_server_update_channels_by_server(server, user_data,
3260                                                 backup_router);
3261
3262         /* Send notify about primary router going down to local operators */
3263         if (server->backup_router)
3264           SILC_SERVER_SEND_OPERS(server, FALSE, TRUE,
3265                                  SILC_NOTIFY_TYPE_NONE,
3266                                  ("%s switched to backup router %s "
3267                                   "(we are primary router now)",
3268                                   server->server_name, server->server_name));
3269         else if (server->router)
3270           SILC_SERVER_SEND_OPERS(server, FALSE, TRUE,
3271                                  SILC_NOTIFY_TYPE_NONE,
3272                                  ("%s switched to backup router %s",
3273                                   server->server_name,
3274                                   server->router->server_name));
3275       }
3276       server->backup_noswitch = FALSE;
3277
3278       /* Free the server entry */
3279       silc_server_backup_del(server, user_data);
3280       silc_server_backup_replaced_del(server, user_data);
3281       silc_idlist_del_data(user_data);
3282       if (!silc_idlist_del_server(server->local_list, user_data))
3283         silc_idlist_del_server(server->global_list, user_data);
3284       if (sock->type == SILC_SOCKET_TYPE_SERVER) {
3285         server->stat.my_servers--;
3286       } else {
3287         server->stat.my_routers--;
3288         server->stat.routers--;
3289       }
3290       server->stat.servers--;
3291       if (server->server_type == SILC_ROUTER)
3292         server->stat.cell_servers--;
3293
3294       if (backup_router && backup_router != server->id_entry) {
3295         /* Announce all of our stuff that was created about 5 minutes ago.
3296            The backup router knows all the other stuff already. */
3297         if (server->server_type == SILC_ROUTER)
3298           silc_server_announce_servers(server, FALSE, time(0) - 300,
3299                                        backup_router->connection);
3300
3301         /* Announce our clients and channels to the router */
3302         silc_server_announce_clients(server, time(0) - 300,
3303                                      backup_router->connection);
3304         silc_server_announce_channels(server, time(0) - 300,
3305                                       backup_router->connection);
3306       }
3307       break;
3308     }
3309   default:
3310     {
3311       SilcUnknownEntry user_data = (SilcUnknownEntry)sock->user_data;
3312
3313       SILC_LOG_DEBUG(("Freeing unknown connection data"));
3314
3315       silc_idlist_del_data(user_data);
3316       silc_free(user_data);
3317       break;
3318     }
3319   }
3320
3321   /* If any protocol is active cancel its execution */
3322   if (sock->protocol && sock->protocol->protocol &&
3323       sock->protocol->protocol->type != SILC_PROTOCOL_SERVER_BACKUP) {
3324     SILC_LOG_DEBUG(("Cancelling protocol, calling final callback"));
3325     silc_protocol_cancel(sock->protocol, server->schedule);
3326     sock->protocol->state = SILC_PROTOCOL_STATE_ERROR;
3327     silc_protocol_execute_final(sock->protocol, server->schedule);
3328     sock->protocol = NULL;
3329   }
3330
3331   sock->user_data = NULL;
3332 }
3333
3334 /* Removes client from all channels it has joined. This is used when client
3335    connection is disconnected. If the client on a channel is last, the
3336    channel is removed as well. This sends the SIGNOFF notify types. */
3337
3338 void silc_server_remove_from_channels(SilcServer server,
3339                                       SilcSocketConnection sock,
3340                                       SilcClientEntry client,
3341                                       bool notify,
3342                                       const char *signoff_message,
3343                                       bool keygen,
3344                                       bool killed)
3345 {
3346   SilcChannelEntry channel;
3347   SilcChannelClientEntry chl;
3348   SilcHashTableList htl;
3349   SilcBuffer clidp = NULL;
3350
3351   if (!client)
3352     return;
3353
3354   SILC_LOG_DEBUG(("Removing client from joined channels"));
3355
3356   if (notify && !client->id)
3357     notify = FALSE;
3358
3359   if (notify) {
3360     clidp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
3361     if (!clidp)
3362       notify = FALSE;
3363   }
3364
3365   /* Remove the client from all channels. The client is removed from
3366      the channels' user list. */
3367   silc_hash_table_list(client->channels, &htl);
3368   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
3369     channel = chl->channel;
3370
3371     /* Remove channel if this is last client leaving the channel, unless
3372        the channel is permanent. */
3373     if (server->server_type != SILC_SERVER &&
3374         silc_hash_table_count(channel->user_list) < 2) {
3375       silc_server_channel_delete(server, channel);
3376       continue;
3377     }
3378
3379     silc_hash_table_del(client->channels, channel);
3380     silc_hash_table_del(channel->user_list, client);
3381     channel->user_count--;
3382
3383     /* If there is no global users on the channel anymore mark the channel
3384        as local channel. Do not check if the removed client is local client. */
3385     if (server->server_type == SILC_SERVER && channel->global_users &&
3386         chl->client->router && !silc_server_channel_has_global(channel))
3387       channel->global_users = FALSE;
3388
3389     memset(chl, 'A', sizeof(*chl));
3390     silc_free(chl);
3391
3392     /* Update statistics */
3393     if (SILC_IS_LOCAL(client))
3394       server->stat.my_chanclients--;
3395     if (server->server_type == SILC_ROUTER) {
3396       server->stat.cell_chanclients--;
3397       server->stat.chanclients--;
3398     }
3399
3400     /* If there is not at least one local user on the channel then we don't
3401        need the channel entry anymore, we can remove it safely, unless the
3402        channel is permanent channel */
3403     if (server->server_type == SILC_SERVER &&
3404         !silc_server_channel_has_local(channel)) {
3405       /* Notify about leaving client if this channel has global users. */
3406       if (notify && channel->global_users)
3407         silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
3408                                            SILC_NOTIFY_TYPE_SIGNOFF,
3409                                            signoff_message ? 2 : 1,
3410                                            clidp->data, clidp->len,
3411                                            signoff_message, signoff_message ?
3412                                            strlen(signoff_message) : 0);
3413
3414       silc_schedule_task_del_by_context(server->schedule, channel->rekey);
3415       silc_server_channel_delete(server, channel);
3416       continue;
3417     }
3418
3419     /* Send notify to channel about client leaving SILC and channel too */
3420     if (notify)
3421       silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
3422                                          SILC_NOTIFY_TYPE_SIGNOFF,
3423                                          signoff_message ? 2 : 1,
3424                                          clidp->data, clidp->len,
3425                                          signoff_message, signoff_message ?
3426                                          strlen(signoff_message) : 0);
3427
3428     if (killed && clidp) {
3429       /* Remove the client from channel's invite list */
3430       if (channel->invite_list &&
3431           silc_hash_table_count(channel->invite_list)) {
3432         SilcBuffer ab;
3433         SilcArgumentPayload iargs;
3434         ab = silc_argument_payload_encode_one(NULL, clidp->data,
3435                                               clidp->len, 3);
3436         iargs = silc_argument_payload_parse(ab->data, ab->len, 1);
3437         silc_server_inviteban_process(server, channel->invite_list, 1, iargs);
3438         silc_buffer_free(ab);
3439         silc_argument_payload_free(iargs);
3440       }
3441     }
3442
3443     /* Don't create keys if we are shutting down */
3444     if (server->server_shutdown)
3445       continue;
3446
3447     /* Re-generate channel key if needed */
3448     if (keygen && !(channel->mode & SILC_CHANNEL_MODE_PRIVKEY)) {
3449       if (!silc_server_create_channel_key(server, channel, 0))
3450         continue;
3451
3452       /* Send the channel key to the channel. The key of course is not sent
3453          to the client who was removed from the channel. */
3454       silc_server_send_channel_key(server, client->connection, channel,
3455                                    server->server_type == SILC_ROUTER ?
3456                                    FALSE : !server->standalone);
3457     }
3458   }
3459
3460   silc_hash_table_list_reset(&htl);
3461   if (clidp)
3462     silc_buffer_free(clidp);
3463 }
3464
3465 /* Removes client from one channel. This is used for example when client
3466    calls LEAVE command to remove itself from the channel. Returns TRUE
3467    if channel still exists and FALSE if the channel is removed when
3468    last client leaves the channel. If `notify' is FALSE notify messages
3469    are not sent. */
3470
3471 bool silc_server_remove_from_one_channel(SilcServer server,
3472                                          SilcSocketConnection sock,
3473                                          SilcChannelEntry channel,
3474                                          SilcClientEntry client,
3475                                          bool notify)
3476 {
3477   SilcChannelClientEntry chl;
3478   SilcBuffer clidp;
3479
3480   SILC_LOG_DEBUG(("Removing %s from channel %s",
3481                   silc_id_render(client->id, SILC_ID_CLIENT), 
3482                   channel->channel_name));
3483
3484   /* Get the entry to the channel, if this client is not on the channel
3485      then return Ok. */
3486   if (!silc_hash_table_find(client->channels, channel, NULL, (void *)&chl))
3487     return TRUE;
3488
3489   /* Remove channel if this is last client leaving the channel, unless
3490      the channel is permanent. */
3491   if (server->server_type != SILC_SERVER &&
3492       silc_hash_table_count(channel->user_list) < 2) {
3493     silc_server_channel_delete(server, channel);
3494     return FALSE;
3495   }
3496
3497   silc_hash_table_del(client->channels, channel);
3498   silc_hash_table_del(channel->user_list, client);
3499   channel->user_count--;
3500
3501   /* If there is no global users on the channel anymore mark the channel
3502      as local channel. Do not check if the client is local client. */
3503   if (server->server_type == SILC_SERVER && channel->global_users &&
3504       chl->client->router && !silc_server_channel_has_global(channel))
3505     channel->global_users = FALSE;
3506
3507   memset(chl, 'O', sizeof(*chl));
3508   silc_free(chl);
3509
3510   /* Update statistics */
3511   if (SILC_IS_LOCAL(client))
3512     server->stat.my_chanclients--;
3513   if (server->server_type == SILC_ROUTER) {
3514     server->stat.cell_chanclients--;
3515     server->stat.chanclients--;
3516   }
3517
3518   clidp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
3519   if (!clidp)
3520     notify = FALSE;
3521
3522   /* If there is not at least one local user on the channel then we don't
3523      need the channel entry anymore, we can remove it safely, unless the
3524      channel is permanent channel */
3525   if (server->server_type == SILC_SERVER &&
3526       !silc_server_channel_has_local(channel)) {
3527     /* Notify about leaving client if this channel has global users. */
3528     if (notify && channel->global_users)
3529       silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
3530                                          SILC_NOTIFY_TYPE_LEAVE, 1,
3531                                          clidp->data, clidp->len);
3532
3533     silc_schedule_task_del_by_context(server->schedule, channel->rekey);
3534     silc_server_channel_delete(server, channel);
3535     silc_buffer_free(clidp);
3536     return FALSE;
3537   }
3538
3539   /* Send notify to channel about client leaving the channel */
3540   if (notify)
3541     silc_server_send_notify_to_channel(server, NULL, channel, FALSE,
3542                                        SILC_NOTIFY_TYPE_LEAVE, 1,
3543                                        clidp->data, clidp->len);
3544
3545   silc_buffer_free(clidp);
3546   return TRUE;
3547 }
3548
3549 /* Timeout callback. This is called if connection is idle or for some
3550    other reason is not responding within some period of time. This
3551    disconnects the remote end. */
3552
3553 SILC_TASK_CALLBACK(silc_server_timeout_remote)
3554 {
3555   SilcServer server = (SilcServer)context;
3556   SilcSocketConnection sock = server->sockets[fd];
3557   SilcProtocolType protocol = 0;
3558
3559   SILC_LOG_DEBUG(("Start"));
3560
3561   if (!sock)
3562     return;
3563
3564   SILC_LOG_ERROR(("No response from %s (%s), Connection timeout",
3565                   sock->hostname, sock->ip));
3566
3567   /* If we have protocol active we must assure that we call the protocol's
3568      final callback so that all the memory is freed. */
3569   if (sock->protocol && sock->protocol->protocol &&
3570       sock->protocol->protocol->type != SILC_PROTOCOL_SERVER_BACKUP) {
3571     protocol = sock->protocol->protocol->type;
3572     silc_protocol_cancel(sock->protocol, server->schedule);
3573     sock->protocol->state = SILC_PROTOCOL_STATE_ERROR;
3574     silc_protocol_execute_final(sock->protocol, server->schedule);
3575     sock->protocol = NULL;
3576     return;
3577   }
3578
3579   silc_server_disconnect_remote(server, sock, 
3580                                 protocol == 
3581                                 SILC_PROTOCOL_SERVER_CONNECTION_AUTH ?
3582                                 SILC_STATUS_ERR_AUTH_FAILED :
3583                                 SILC_STATUS_ERR_KEY_EXCHANGE_FAILED,
3584                                 "Connection timeout");
3585
3586   if (sock->user_data)
3587     silc_server_free_sock_user_data(server, sock, NULL);
3588 }
3589
3590 /* Creates new channel. Sends NEW_CHANNEL packet to primary route. This
3591    function may be used only by router. In real SILC network all channels
3592    are created by routers thus this function is never used by normal
3593    server. */
3594
3595 SilcChannelEntry silc_server_create_new_channel(SilcServer server,
3596                                                 SilcServerID *router_id,
3597                                                 char *cipher,
3598                                                 char *hmac,
3599                                                 char *channel_name,
3600                                                 int broadcast)
3601 {
3602   SilcChannelID *channel_id;
3603   SilcChannelEntry entry;
3604   SilcCipher key;
3605   SilcHmac newhmac;
3606
3607   SILC_LOG_DEBUG(("Creating new channel %s", channel_name));
3608
3609   if (!cipher)
3610     cipher = SILC_DEFAULT_CIPHER;
3611   if (!hmac)
3612     hmac = SILC_DEFAULT_HMAC;
3613
3614   /* Allocate cipher */
3615   if (!silc_cipher_alloc(cipher, &key))
3616     return NULL;
3617
3618   /* Allocate hmac */
3619   if (!silc_hmac_alloc(hmac, NULL, &newhmac)) {
3620     silc_cipher_free(key);
3621     return NULL;
3622   }
3623
3624   channel_name = strdup(channel_name);
3625
3626   /* Create the channel ID */
3627   if (!silc_id_create_channel_id(server, router_id, server->rng,
3628                                  &channel_id)) {
3629     silc_free(channel_name);
3630     silc_cipher_free(key);
3631     silc_hmac_free(newhmac);
3632     return NULL;
3633   }
3634
3635   /* Create the channel */
3636   entry = silc_idlist_add_channel(server->local_list, channel_name,
3637                                   SILC_CHANNEL_MODE_NONE, channel_id,
3638                                   NULL, key, newhmac, 0);
3639   if (!entry) {
3640     silc_free(channel_name);
3641     silc_cipher_free(key);
3642     silc_hmac_free(newhmac);
3643     silc_free(channel_id);
3644     return NULL;
3645   }
3646
3647   entry->cipher = strdup(cipher);
3648   entry->hmac_name = strdup(hmac);
3649
3650   /* Now create the actual key material */
3651   if (!silc_server_create_channel_key(server, entry,
3652                                       silc_cipher_get_key_len(key) / 8)) {
3653     silc_idlist_del_channel(server->local_list, entry);
3654     return NULL;
3655   }
3656
3657   /* Notify other routers about the new channel. We send the packet
3658      to our primary route. */
3659   if (broadcast)
3660     silc_server_send_new_channel(server, SILC_PRIMARY_ROUTE(server), TRUE,
3661                                  channel_name, entry->id,
3662                                  silc_id_get_len(entry->id, SILC_ID_CHANNEL),
3663                                  entry->mode);
3664
3665   /* Distribute to backup routers */
3666   if (broadcast && server->server_type == SILC_ROUTER) {
3667     SilcBuffer packet;
3668     unsigned char *cid;
3669     SilcUInt32 name_len = strlen(channel_name);
3670     SilcUInt32 channel_id_len = silc_id_get_len(entry->id, SILC_ID_CHANNEL);
3671     cid = silc_id_id2str(entry->id, SILC_ID_CHANNEL);
3672
3673     packet = silc_channel_payload_encode(channel_name, name_len,
3674                                          cid, channel_id_len, entry->mode);
3675     silc_server_backup_send(server, NULL, SILC_PACKET_NEW_CHANNEL, 0,
3676                             packet->data, packet->len, FALSE, TRUE);
3677     silc_free(cid);
3678     silc_buffer_free(packet);
3679   }
3680
3681   server->stat.my_channels++;
3682   if (server->server_type == SILC_ROUTER) {
3683     server->stat.channels++;
3684     server->stat.cell_channels++;
3685     entry->users_resolved = TRUE;
3686   }
3687
3688   return entry;
3689 }
3690
3691 /* Same as above but creates the channel with Channel ID `channel_id. */
3692
3693 SilcChannelEntry
3694 silc_server_create_new_channel_with_id(SilcServer server,
3695                                        char *cipher,
3696                                        char *hmac,
3697                                        char *channel_name,
3698                                        SilcChannelID *channel_id,
3699                                        int broadcast)
3700 {
3701   SilcChannelEntry entry;
3702   SilcCipher key;
3703   SilcHmac newhmac;
3704
3705   SILC_LOG_DEBUG(("Creating new channel %s", channel_name));
3706
3707   if (!cipher)
3708     cipher = SILC_DEFAULT_CIPHER;
3709   if (!hmac)
3710     hmac = SILC_DEFAULT_HMAC;
3711
3712   /* Allocate cipher */
3713   if (!silc_cipher_alloc(cipher, &key))
3714     return NULL;
3715
3716   /* Allocate hmac */
3717   if (!silc_hmac_alloc(hmac, NULL, &newhmac)) {
3718     silc_cipher_free(key);
3719     return NULL;
3720   }
3721
3722   channel_name = strdup(channel_name);
3723
3724   /* Create the channel */
3725   entry = silc_idlist_add_channel(server->local_list, channel_name,
3726                                   SILC_CHANNEL_MODE_NONE, channel_id,
3727                                   NULL, key, newhmac, 0);
3728   if (!entry) {
3729     silc_cipher_free(key);
3730     silc_hmac_free(newhmac);
3731     silc_free(channel_name);
3732     return NULL;
3733   }
3734
3735   /* Now create the actual key material */
3736   if (!silc_server_create_channel_key(server, entry,
3737                                       silc_cipher_get_key_len(key) / 8)) {
3738     silc_idlist_del_channel(server->local_list, entry);
3739     return NULL;
3740   }
3741
3742   /* Notify other routers about the new channel. We send the packet
3743      to our primary route. */
3744   if (broadcast)
3745     silc_server_send_new_channel(server, SILC_PRIMARY_ROUTE(server), TRUE,
3746                                  channel_name, entry->id,
3747                                  silc_id_get_len(entry->id, SILC_ID_CHANNEL),
3748                                  entry->mode);
3749
3750   /* Distribute to backup routers */
3751   if (broadcast && server->server_type == SILC_ROUTER) {
3752     SilcBuffer packet;
3753     unsigned char *cid;
3754     SilcUInt32 name_len = strlen(channel_name);
3755     SilcUInt32 channel_id_len = silc_id_get_len(entry->id, SILC_ID_CHANNEL);
3756     cid = silc_id_id2str(entry->id, SILC_ID_CHANNEL);
3757
3758     packet = silc_channel_payload_encode(channel_name, name_len,
3759                                          cid, channel_id_len, entry->mode);
3760     silc_server_backup_send(server, NULL, SILC_PACKET_NEW_CHANNEL, 0,
3761                             packet->data, packet->len, FALSE, TRUE);
3762     silc_free(cid);
3763     silc_buffer_free(packet);
3764   }
3765
3766   server->stat.my_channels++;
3767   if (server->server_type == SILC_ROUTER) {
3768     server->stat.channels++;
3769     server->stat.cell_channels++;
3770     entry->users_resolved = TRUE;
3771   }
3772
3773   return entry;
3774 }
3775
3776 /* Channel's key re-key timeout callback. */
3777
3778 SILC_TASK_CALLBACK(silc_server_channel_key_rekey)
3779 {
3780   SilcServer server = app_context;
3781   SilcServerChannelRekey rekey = (SilcServerChannelRekey)context;
3782
3783   rekey->task = NULL;
3784
3785   /* Return now if we are shutting down */
3786   if (server->server_shutdown)
3787     return;
3788
3789   if (!silc_server_create_channel_key(server, rekey->channel, rekey->key_len))
3790     return;
3791
3792   silc_server_send_channel_key(server, NULL, rekey->channel, FALSE);
3793 }
3794
3795 /* Generates new channel key. This is used to create the initial channel key
3796    but also to re-generate new key for channel. If `key_len' is provided
3797    it is the bytes of the key length. */
3798
3799 bool silc_server_create_channel_key(SilcServer server,
3800                                     SilcChannelEntry channel,
3801                                     SilcUInt32 key_len)
3802 {
3803   int i;
3804   unsigned char channel_key[32], hash[32];
3805   SilcUInt32 len;
3806
3807   if (channel->mode & SILC_CHANNEL_MODE_PRIVKEY) {
3808     SILC_LOG_DEBUG(("Channel has private keys, will not generate new key"));
3809     return TRUE;
3810   }
3811
3812   SILC_LOG_DEBUG(("Generating channel %s key", channel->channel_name));
3813
3814   if (!channel->channel_key)
3815     if (!silc_cipher_alloc(SILC_DEFAULT_CIPHER, &channel->channel_key)) {
3816       channel->channel_key = NULL;
3817       return FALSE;
3818     }
3819
3820   if (key_len)
3821     len = key_len;
3822   else if (channel->key_len)
3823     len = channel->key_len / 8;
3824   else
3825     len = silc_cipher_get_key_len(channel->channel_key) / 8;
3826
3827   /* Create channel key */
3828   for (i = 0; i < len; i++) channel_key[i] = silc_rng_get_byte(server->rng);
3829
3830   /* Set the key */
3831   silc_cipher_set_key(channel->channel_key, channel_key, len * 8);
3832
3833   /* Remove old key if exists */
3834   if (channel->key) {
3835     memset(channel->key, 0, channel->key_len / 8);
3836     silc_free(channel->key);
3837   }
3838
3839   /* Save the key */
3840   channel->key_len = len * 8;
3841   channel->key = silc_memdup(channel_key, len);
3842   memset(channel_key, 0, sizeof(channel_key));
3843
3844   /* Generate HMAC key from the channel key data and set it */
3845   if (!channel->hmac)
3846     silc_hmac_alloc(SILC_DEFAULT_HMAC, NULL, &channel->hmac);
3847   silc_hash_make(silc_hmac_get_hash(channel->hmac), channel->key, len, hash);
3848   silc_hmac_set_key(channel->hmac, hash,
3849                     silc_hash_len(silc_hmac_get_hash(channel->hmac)));
3850   memset(hash, 0, sizeof(hash));
3851
3852   if (server->server_type == SILC_ROUTER) {
3853     if (!channel->rekey)
3854       channel->rekey = silc_calloc(1, sizeof(*channel->rekey));
3855     channel->rekey->channel = channel;
3856     channel->rekey->key_len = key_len;
3857     if (channel->rekey->task)
3858       silc_schedule_task_del(server->schedule, channel->rekey->task);
3859
3860     channel->rekey->task =
3861       silc_schedule_task_add(server->schedule, 0,
3862                              silc_server_channel_key_rekey,
3863                              (void *)channel->rekey,
3864                              server->config->channel_rekey_secs, 0,
3865                              SILC_TASK_TIMEOUT,
3866                              SILC_TASK_PRI_NORMAL);
3867   }
3868
3869   return TRUE;
3870 }
3871
3872 /* Saves the channel key found in the encoded `key_payload' buffer. This
3873    function is used when we receive Channel Key Payload and also when we're
3874    processing JOIN command reply. Returns entry to the channel. */
3875
3876 SilcChannelEntry silc_server_save_channel_key(SilcServer server,
3877                                               SilcBuffer key_payload,
3878                                               SilcChannelEntry channel)
3879 {
3880   SilcChannelKeyPayload payload = NULL;
3881   SilcChannelID *id = NULL;
3882   unsigned char *tmp, hash[32];
3883   SilcUInt32 tmp_len;
3884   char *cipher;
3885
3886   /* Decode channel key payload */
3887   payload = silc_channel_key_payload_parse(key_payload->data,
3888                                            key_payload->len);
3889   if (!payload) {
3890     SILC_LOG_ERROR(("Bad channel key payload received, dropped"));
3891     channel = NULL;
3892     goto out;
3893   }
3894
3895   /* Get the channel entry */
3896   if (!channel) {
3897
3898     /* Get channel ID */
3899     tmp = silc_channel_key_get_id(payload, &tmp_len);
3900     id = silc_id_str2id(tmp, tmp_len, SILC_ID_CHANNEL);
3901     if (!id) {
3902       channel = NULL;
3903       goto out;
3904     }
3905
3906     channel = silc_idlist_find_channel_by_id(server->local_list, id, NULL);
3907     if (!channel) {
3908       channel = silc_idlist_find_channel_by_id(server->global_list, id, NULL);
3909       if (!channel) {
3910         if (server->server_type == SILC_ROUTER)
3911           SILC_LOG_ERROR(("Received key for non-existent channel %s",
3912                           silc_id_render(id, SILC_ID_CHANNEL)));
3913         goto out;
3914       }
3915     }
3916   }
3917
3918   SILC_LOG_DEBUG(("Saving new channel %s key", channel->channel_name));
3919
3920   tmp = silc_channel_key_get_key(payload, &tmp_len);
3921   if (!tmp) {
3922     channel = NULL;
3923     goto out;
3924   }
3925
3926   cipher = silc_channel_key_get_cipher(payload, NULL);
3927   if (!cipher) {
3928     channel = NULL;
3929     goto out;
3930   }
3931
3932   /* Remove old key if exists */
3933   if (channel->key) {
3934     memset(channel->key, 0, channel->key_len / 8);
3935     silc_free(channel->key);
3936     silc_cipher_free(channel->channel_key);
3937   }
3938
3939   /* Create new cipher */
3940   if (!silc_cipher_alloc(cipher, &channel->channel_key)) {
3941     channel->channel_key = NULL;
3942     channel = NULL;
3943     goto out;
3944   }
3945
3946   if (channel->cipher)
3947     silc_free(channel->cipher);
3948   channel->cipher = strdup(cipher);
3949
3950   /* Save the key */
3951   channel->key_len = tmp_len * 8;
3952   channel->key = silc_memdup(tmp, tmp_len);
3953   silc_cipher_set_key(channel->channel_key, tmp, channel->key_len);
3954
3955   /* Generate HMAC key from the channel key data and set it */
3956   if (!channel->hmac)
3957     silc_hmac_alloc(SILC_DEFAULT_HMAC, NULL, &channel->hmac);
3958   silc_hash_make(silc_hmac_get_hash(channel->hmac), tmp, tmp_len, hash);
3959   silc_hmac_set_key(channel->hmac, hash,
3960                     silc_hash_len(silc_hmac_get_hash(channel->hmac)));
3961
3962   memset(hash, 0, sizeof(hash));
3963   memset(tmp, 0, tmp_len);
3964
3965   if (server->server_type == SILC_ROUTER) {
3966     if (!channel->rekey)
3967       channel->rekey = silc_calloc(1, sizeof(*channel->rekey));
3968     channel->rekey->channel = channel;
3969     if (channel->rekey->task)
3970       silc_schedule_task_del(server->schedule, channel->rekey->task);
3971
3972     channel->rekey->task =
3973       silc_schedule_task_add(server->schedule, 0,
3974                              silc_server_channel_key_rekey,
3975                              (void *)channel->rekey,
3976                              server->config->channel_rekey_secs, 0,
3977                              SILC_TASK_TIMEOUT,
3978                              SILC_TASK_PRI_NORMAL);
3979   }
3980
3981  out:
3982   silc_free(id);
3983   if (payload)
3984     silc_channel_key_payload_free(payload);
3985
3986   return channel;
3987 }
3988
3989 /* Heartbeat callback. This function is set as argument for the
3990    silc_socket_set_heartbeat function. The library will call this function
3991    at the set time interval. */
3992
3993 void silc_server_perform_heartbeat(SilcSocketConnection sock,
3994                                    void *hb_context)
3995 {
3996   SilcServer server = hb_context;
3997
3998   SILC_LOG_DEBUG(("Sending heartbeat to %s:%d (%s)", sock->hostname, 
3999                  sock->port, sock->ip));
4000
4001   /* Send the heartbeat */
4002   silc_server_send_heartbeat(server, sock);
4003 }
4004
4005 /* Returns assembled of all servers in the given ID list. The packet's
4006    form is dictated by the New ID payload. */
4007
4008 static void silc_server_announce_get_servers(SilcServer server,
4009                                              SilcServerEntry remote,
4010                                              SilcIDList id_list,
4011                                              SilcBuffer *servers,
4012                                              unsigned long creation_time)
4013 {
4014   SilcIDCacheList list;
4015   SilcIDCacheEntry id_cache;
4016   SilcServerEntry entry;
4017   SilcBuffer idp;
4018
4019   /* Go through all clients in the list */
4020   if (silc_idcache_get_all(id_list->servers, &list)) {
4021     if (silc_idcache_list_first(list, &id_cache)) {
4022       while (id_cache) {
4023         entry = (SilcServerEntry)id_cache->context;
4024
4025         /* Do not announce the one we've sending our announcements and
4026            do not announce ourself. Also check the creation time if it's
4027            provided. */
4028         if ((entry == remote) || (entry == server->id_entry) ||
4029             (creation_time && entry->data.created < creation_time)) {
4030           if (!silc_idcache_list_next(list, &id_cache))
4031             break;
4032           continue;
4033         }
4034
4035         idp = silc_id_payload_encode(entry->id, SILC_ID_SERVER);
4036
4037         *servers = silc_buffer_realloc(*servers,
4038                                        (*servers ?
4039                                         (*servers)->truelen + idp->len :
4040                                         idp->len));
4041         silc_buffer_pull_tail(*servers, ((*servers)->end - (*servers)->data));
4042         silc_buffer_put(*servers, idp->data, idp->len);
4043         silc_buffer_pull(*servers, idp->len);
4044         silc_buffer_free(idp);
4045
4046         if (!silc_idcache_list_next(list, &id_cache))
4047           break;
4048       }
4049     }
4050
4051     silc_idcache_list_free(list);
4052   }
4053 }
4054
4055 static SilcBuffer
4056 silc_server_announce_encode_notify(SilcNotifyType notify, SilcUInt32 argc, ...)
4057 {
4058   va_list ap;
4059   SilcBuffer p;
4060
4061   va_start(ap, argc);
4062   p = silc_notify_payload_encode(notify, argc, ap);
4063   va_end(ap);
4064
4065   return p;
4066 }
4067
4068 /* This function is used by router to announce existing servers to our
4069    primary router when we've connected to it. If `creation_time' is non-zero
4070    then only the servers that has been created after the `creation_time'
4071    will be announced. */
4072
4073 void silc_server_announce_servers(SilcServer server, bool global,
4074                                   unsigned long creation_time,
4075                                   SilcSocketConnection remote)
4076 {
4077   SilcBuffer servers = NULL;
4078
4079   SILC_LOG_DEBUG(("Announcing servers"));
4080
4081   /* Get servers in local list */
4082   silc_server_announce_get_servers(server, remote->user_data,
4083                                    server->local_list, &servers,
4084                                    creation_time);
4085
4086   if (global)
4087     /* Get servers in global list */
4088     silc_server_announce_get_servers(server, remote->user_data,
4089                                      server->global_list, &servers,
4090                                      creation_time);
4091
4092   if (servers) {
4093     silc_buffer_push(servers, servers->data - servers->head);
4094     SILC_LOG_HEXDUMP(("servers"), servers->data, servers->len);
4095
4096     /* Send the packet */
4097     silc_server_packet_send(server, remote,
4098                             SILC_PACKET_NEW_ID, SILC_PACKET_FLAG_LIST,
4099                             servers->data, servers->len, TRUE);
4100
4101     silc_buffer_free(servers);
4102   }
4103 }
4104
4105 /* Returns assembled packet of all clients in the given ID list. The
4106    packet's form is dictated by the New ID Payload. */
4107
4108 static void silc_server_announce_get_clients(SilcServer server,
4109                                              SilcIDList id_list,
4110                                              SilcBuffer *clients,
4111                                              SilcBuffer *umodes,
4112                                              unsigned long creation_time)
4113 {
4114   SilcIDCacheList list;
4115   SilcIDCacheEntry id_cache;
4116   SilcClientEntry client;
4117   SilcBuffer idp;
4118   SilcBuffer tmp;
4119   unsigned char mode[4];
4120
4121   /* Go through all clients in the list */
4122   if (silc_idcache_get_all(id_list->clients, &list)) {
4123     if (silc_idcache_list_first(list, &id_cache)) {
4124       while (id_cache) {
4125         client = (SilcClientEntry)id_cache->context;
4126
4127         if (creation_time && client->data.created < creation_time) {
4128           if (!silc_idcache_list_next(list, &id_cache))
4129             break;
4130           continue;
4131         }
4132         if (!(client->data.status & SILC_IDLIST_STATUS_REGISTERED) &&
4133             !client->connection && !client->router && !SILC_IS_LOCAL(client)) {
4134           if (!silc_idcache_list_next(list, &id_cache))
4135             break;
4136           continue;
4137         }
4138
4139         idp = silc_id_payload_encode(client->id, SILC_ID_CLIENT);
4140
4141         *clients = silc_buffer_realloc(*clients,
4142                                        (*clients ?
4143                                         (*clients)->truelen + idp->len :
4144                                         idp->len));
4145         silc_buffer_pull_tail(*clients, ((*clients)->end - (*clients)->data));
4146         silc_buffer_put(*clients, idp->data, idp->len);
4147         silc_buffer_pull(*clients, idp->len);
4148
4149         SILC_PUT32_MSB(client->mode, mode);
4150         tmp =
4151           silc_server_announce_encode_notify(SILC_NOTIFY_TYPE_UMODE_CHANGE,
4152                                              2, idp->data, idp->len,
4153                                              mode, 4);
4154         *umodes = silc_buffer_realloc(*umodes,
4155                                       (*umodes ?
4156                                        (*umodes)->truelen + tmp->len :
4157                                        tmp->len));
4158         silc_buffer_pull_tail(*umodes, ((*umodes)->end - (*umodes)->data));
4159         silc_buffer_put(*umodes, tmp->data, tmp->len);
4160         silc_buffer_pull(*umodes, tmp->len);
4161         silc_buffer_free(tmp);
4162
4163         silc_buffer_free(idp);
4164
4165         if (!silc_idcache_list_next(list, &id_cache))
4166           break;
4167       }
4168     }
4169
4170     silc_idcache_list_free(list);
4171   }
4172 }
4173
4174 /* This function is used to announce our existing clients to our router
4175    when we've connected to it. If `creation_time' is non-zero then only
4176    the clients that has been created after the `creation_time' will be
4177    announced. */
4178
4179 void silc_server_announce_clients(SilcServer server,
4180                                   unsigned long creation_time,
4181                                   SilcSocketConnection remote)
4182 {
4183   SilcBuffer clients = NULL;
4184   SilcBuffer umodes = NULL;
4185
4186   SILC_LOG_DEBUG(("Announcing clients"));
4187
4188   /* Get clients in local list */
4189   silc_server_announce_get_clients(server, server->local_list,
4190                                    &clients, &umodes, creation_time);
4191
4192   /* As router we announce our global list as well */
4193   if (server->server_type == SILC_ROUTER)
4194     silc_server_announce_get_clients(server, server->global_list,
4195                                      &clients, &umodes, creation_time);
4196
4197   if (clients) {
4198     silc_buffer_push(clients, clients->data - clients->head);
4199     SILC_LOG_HEXDUMP(("clients"), clients->data, clients->len);
4200
4201     /* Send the packet */
4202     silc_server_packet_send(server, remote,
4203                             SILC_PACKET_NEW_ID, SILC_PACKET_FLAG_LIST,
4204                             clients->data, clients->len, TRUE);
4205
4206     silc_buffer_free(clients);
4207   }
4208
4209   if (umodes) {
4210     silc_buffer_push(umodes, umodes->data - umodes->head);
4211     SILC_LOG_HEXDUMP(("umodes"), umodes->data, umodes->len);
4212
4213     /* Send the packet */
4214     silc_server_packet_send(server, remote,
4215                             SILC_PACKET_NOTIFY, SILC_PACKET_FLAG_LIST,
4216                             umodes->data, umodes->len, TRUE);
4217
4218     silc_buffer_free(umodes);
4219   }
4220 }
4221
4222 /* Returns channel's topic for announcing it */
4223
4224 void silc_server_announce_get_channel_topic(SilcServer server,
4225                                             SilcChannelEntry channel,
4226                                             SilcBuffer *topic)
4227 {
4228   SilcBuffer chidp;
4229
4230   if (channel->topic) {
4231     chidp = silc_id_payload_encode(channel->id, SILC_ID_CHANNEL);
4232     *topic = silc_server_announce_encode_notify(SILC_NOTIFY_TYPE_TOPIC_SET, 2,
4233                                                 chidp->data, chidp->len,
4234                                                 channel->topic,
4235                                                 strlen(channel->topic));
4236     silc_buffer_free(chidp);
4237   }
4238 }
4239
4240 /* Returns assembled packets for channel users of the `channel'. */
4241
4242 void silc_server_announce_get_channel_users(SilcServer server,
4243                                             SilcChannelEntry channel,
4244                                             SilcBuffer *channel_modes,
4245                                             SilcBuffer *channel_users,
4246                                             SilcBuffer *channel_users_modes)
4247 {
4248   SilcChannelClientEntry chl;
4249   SilcHashTableList htl;
4250   SilcBuffer chidp, clidp, csidp;
4251   SilcBuffer tmp, fkey = NULL;
4252   int len;
4253   unsigned char mode[4];
4254   char *hmac;
4255
4256   SILC_LOG_DEBUG(("Start"));
4257
4258   chidp = silc_id_payload_encode(channel->id, SILC_ID_CHANNEL);
4259   csidp = silc_id_payload_encode(server->id, SILC_ID_SERVER);
4260
4261   /* CMODE notify */
4262   SILC_PUT32_MSB(channel->mode, mode);
4263   hmac = channel->hmac ? (char *)silc_hmac_get_name(channel->hmac) : NULL;
4264   if (channel->founder_key)
4265     fkey = silc_pkcs_public_key_payload_encode(channel->founder_key);
4266   tmp = 
4267     silc_server_announce_encode_notify(SILC_NOTIFY_TYPE_CMODE_CHANGE,
4268                                        6, csidp->data, csidp->len,
4269                                        mode, sizeof(mode),
4270                                        NULL, 0,
4271                                        hmac, hmac ? strlen(hmac) : 0,
4272                                        channel->passphrase,
4273                                        channel->passphrase ?
4274                                        strlen(channel->passphrase) : 0,
4275                                        fkey ? fkey->data : NULL,
4276                                        fkey ? fkey->len : 0);
4277   len = tmp->len;
4278   *channel_modes =
4279     silc_buffer_realloc(*channel_modes,
4280                         (*channel_modes ?
4281                          (*channel_modes)->truelen + len : len));
4282   silc_buffer_pull_tail(*channel_modes,
4283                         ((*channel_modes)->end -
4284                          (*channel_modes)->data));
4285   silc_buffer_put(*channel_modes, tmp->data, tmp->len);
4286   silc_buffer_pull(*channel_modes, len);
4287   silc_buffer_free(tmp);
4288   silc_buffer_free(fkey);
4289   fkey = NULL;
4290
4291   /* Now find all users on the channel */
4292   silc_hash_table_list(channel->user_list, &htl);
4293   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
4294     clidp = silc_id_payload_encode(chl->client->id, SILC_ID_CLIENT);
4295
4296     /* JOIN Notify */
4297     tmp = silc_server_announce_encode_notify(SILC_NOTIFY_TYPE_JOIN, 2,
4298                                              clidp->data, clidp->len,
4299                                              chidp->data, chidp->len);
4300     len = tmp->len;
4301     *channel_users =
4302       silc_buffer_realloc(*channel_users,
4303                           (*channel_users ?
4304                            (*channel_users)->truelen + len : len));
4305     silc_buffer_pull_tail(*channel_users,
4306                           ((*channel_users)->end -
4307                            (*channel_users)->data));
4308
4309     silc_buffer_put(*channel_users, tmp->data, tmp->len);
4310     silc_buffer_pull(*channel_users, len);
4311     silc_buffer_free(tmp);
4312
4313     /* CUMODE notify for mode change on the channel */
4314     SILC_PUT32_MSB(chl->mode, mode);
4315     if (chl->mode & SILC_CHANNEL_UMODE_CHANFO && channel->founder_key)
4316       fkey = silc_pkcs_public_key_payload_encode(channel->founder_key);
4317     tmp = silc_server_announce_encode_notify(SILC_NOTIFY_TYPE_CUMODE_CHANGE,
4318                                              4, csidp->data, csidp->len,
4319                                              mode, sizeof(mode),
4320                                              clidp->data, clidp->len,
4321                                              fkey ? fkey->data : NULL,
4322                                              fkey ? fkey->len : 0);
4323     len = tmp->len;
4324     *channel_users_modes =
4325       silc_buffer_realloc(*channel_users_modes,
4326                           (*channel_users_modes ?
4327                            (*channel_users_modes)->truelen + len : len));
4328     silc_buffer_pull_tail(*channel_users_modes,
4329                           ((*channel_users_modes)->end -
4330                            (*channel_users_modes)->data));
4331
4332     silc_buffer_put(*channel_users_modes, tmp->data, tmp->len);
4333     silc_buffer_pull(*channel_users_modes, len);
4334     silc_buffer_free(tmp);
4335     silc_buffer_free(fkey);
4336     fkey = NULL;
4337     silc_buffer_free(clidp);
4338   }
4339   silc_hash_table_list_reset(&htl);
4340   silc_buffer_free(chidp);
4341   silc_buffer_free(csidp);
4342 }
4343
4344 /* Returns assembled packets for all channels and users on those channels
4345    from the given ID List. The packets are in the form dictated by the
4346    New Channel and New Channel User payloads. */
4347
4348 void silc_server_announce_get_channels(SilcServer server,
4349                                        SilcIDList id_list,
4350                                        SilcBuffer *channels,
4351                                        SilcBuffer **channel_modes,
4352                                        SilcBuffer *channel_users,
4353                                        SilcBuffer **channel_users_modes,
4354                                        SilcUInt32 *channel_users_modes_c,
4355                                        SilcBuffer **channel_topics,
4356                                        SilcChannelID ***channel_ids,
4357                                        unsigned long creation_time)
4358 {
4359   SilcIDCacheList list;
4360   SilcIDCacheEntry id_cache;
4361   SilcChannelEntry channel;
4362   unsigned char *cid;
4363   SilcUInt32 id_len;
4364   SilcUInt16 name_len;
4365   int len;
4366   int i = *channel_users_modes_c;
4367   bool announce;
4368
4369   SILC_LOG_DEBUG(("Start"));
4370
4371   /* Go through all channels in the list */
4372   if (silc_idcache_get_all(id_list->channels, &list)) {
4373     if (silc_idcache_list_first(list, &id_cache)) {
4374       while (id_cache) {
4375         channel = (SilcChannelEntry)id_cache->context;
4376
4377         if (creation_time && channel->created < creation_time)
4378           announce = FALSE;
4379         else
4380           announce = TRUE;
4381
4382         cid = silc_id_id2str(channel->id, SILC_ID_CHANNEL);
4383         id_len = silc_id_get_len(channel->id, SILC_ID_CHANNEL);
4384         name_len = strlen(channel->channel_name);
4385
4386         if (announce) {
4387           len = 4 + name_len + id_len + 4;
4388           *channels =
4389             silc_buffer_realloc(*channels,
4390                                 (*channels ? (*channels)->truelen +
4391                                  len : len));
4392           silc_buffer_pull_tail(*channels,
4393                                 ((*channels)->end - (*channels)->data));
4394           silc_buffer_format(*channels,
4395                              SILC_STR_UI_SHORT(name_len),
4396                              SILC_STR_UI_XNSTRING(channel->channel_name,
4397                                                   name_len),
4398                              SILC_STR_UI_SHORT(id_len),
4399                              SILC_STR_UI_XNSTRING(cid, id_len),
4400                              SILC_STR_UI_INT(channel->mode),
4401                              SILC_STR_END);
4402           silc_buffer_pull(*channels, len);
4403         }
4404
4405         if (creation_time && channel->updated < creation_time)
4406           announce = FALSE;
4407         else
4408           announce = TRUE;
4409
4410         if (announce) {
4411           /* Channel user modes */
4412           *channel_users_modes = silc_realloc(*channel_users_modes,
4413                                               sizeof(**channel_users_modes) *
4414                                               (i + 1));
4415           (*channel_users_modes)[i] = NULL;
4416           *channel_modes = silc_realloc(*channel_modes,
4417                                         sizeof(**channel_modes) * (i + 1));
4418           (*channel_modes)[i] = NULL;
4419           *channel_ids = silc_realloc(*channel_ids,
4420                                       sizeof(**channel_ids) * (i + 1));
4421           (*channel_ids)[i] = NULL;
4422           silc_server_announce_get_channel_users(server, channel,
4423                                                  &(*channel_modes)[i], 
4424                                                  channel_users,
4425                                                  &(*channel_users_modes)[i]);
4426           (*channel_ids)[i] = channel->id;
4427
4428           /* Channel's topic */
4429           *channel_topics = silc_realloc(*channel_topics,
4430                                          sizeof(**channel_topics) * (i + 1));
4431           (*channel_topics)[i] = NULL;
4432           silc_server_announce_get_channel_topic(server, channel,
4433                                                  &(*channel_topics)[i]);
4434           (*channel_users_modes_c)++;
4435
4436           silc_free(cid);
4437
4438           i++;
4439         }
4440
4441         if (!silc_idcache_list_next(list, &id_cache))
4442           break;
4443       }
4444     }
4445
4446     silc_idcache_list_free(list);
4447   }
4448 }
4449
4450 /* This function is used to announce our existing channels to our router
4451    when we've connected to it. This also announces the users on the
4452    channels to the router. If the `creation_time' is non-zero only the
4453    channels that was created after the `creation_time' are announced.
4454    Note that the channel users are still announced even if the `creation_time'
4455    was provided. */
4456
4457 void silc_server_announce_channels(SilcServer server,
4458                                    unsigned long creation_time,
4459                                    SilcSocketConnection remote)
4460 {
4461   SilcBuffer channels = NULL, *channel_modes = NULL, channel_users = NULL;
4462   SilcBuffer *channel_users_modes = NULL;
4463   SilcBuffer *channel_topics = NULL;
4464   SilcUInt32 channel_users_modes_c = 0;
4465   SilcChannelID **channel_ids = NULL;
4466
4467   SILC_LOG_DEBUG(("Announcing channels and channel users"));
4468
4469   /* Get channels and channel users in local list */
4470   silc_server_announce_get_channels(server, server->local_list,
4471                                     &channels, &channel_modes,
4472                                     &channel_users,
4473                                     &channel_users_modes,
4474                                     &channel_users_modes_c,
4475                                     &channel_topics,
4476                                     &channel_ids, creation_time);
4477
4478   /* Get channels and channel users in global list */
4479   if (server->server_type != SILC_SERVER)
4480     silc_server_announce_get_channels(server, server->global_list,
4481                                       &channels, &channel_modes,
4482                                       &channel_users,
4483                                       &channel_users_modes,
4484                                       &channel_users_modes_c,
4485                                       &channel_topics,
4486                                       &channel_ids, creation_time);
4487
4488   if (channels) {
4489     silc_buffer_push(channels, channels->data - channels->head);
4490     SILC_LOG_HEXDUMP(("channels"), channels->data, channels->len);
4491
4492     /* Send the packet */
4493     silc_server_packet_send(server, remote,
4494                             SILC_PACKET_NEW_CHANNEL, SILC_PACKET_FLAG_LIST,
4495                             channels->data, channels->len,
4496                             FALSE);
4497
4498     silc_buffer_free(channels);
4499   }
4500
4501   if (channel_users) {
4502     silc_buffer_push(channel_users, channel_users->data - channel_users->head);
4503     SILC_LOG_HEXDUMP(("channel users"), channel_users->data,
4504                      channel_users->len);
4505
4506     /* Send the packet */
4507     silc_server_packet_send(server, remote,
4508                             SILC_PACKET_NOTIFY, SILC_PACKET_FLAG_LIST,
4509                             channel_users->data, channel_users->len,
4510                             FALSE);
4511
4512     silc_buffer_free(channel_users);
4513   }
4514
4515   if (channel_modes) {
4516     int i;
4517
4518     for (i = 0; i < channel_users_modes_c; i++) {
4519       if (!channel_modes[i])
4520         continue;
4521       silc_buffer_push(channel_modes[i],
4522                        channel_modes[i]->data -
4523                        channel_modes[i]->head);
4524       SILC_LOG_HEXDUMP(("channel modes"), channel_modes[i]->data,
4525                        channel_modes[i]->len);
4526       silc_server_packet_send_dest(server, remote,
4527                                    SILC_PACKET_NOTIFY, SILC_PACKET_FLAG_LIST,
4528                                    channel_ids[i], SILC_ID_CHANNEL,
4529                                    channel_modes[i]->data,
4530                                    channel_modes[i]->len,
4531                                    FALSE);
4532       silc_buffer_free(channel_modes[i]);
4533     }
4534     silc_free(channel_modes);
4535   }
4536
4537   if (channel_users_modes) {
4538     int i;
4539
4540     for (i = 0; i < channel_users_modes_c; i++) {
4541       if (!channel_users_modes[i])
4542         continue;
4543       silc_buffer_push(channel_users_modes[i],
4544                        channel_users_modes[i]->data -
4545                        channel_users_modes[i]->head);
4546       SILC_LOG_HEXDUMP(("channel users modes"), channel_users_modes[i]->data,
4547                        channel_users_modes[i]->len);
4548       silc_server_packet_send_dest(server, remote,
4549                                    SILC_PACKET_NOTIFY, SILC_PACKET_FLAG_LIST,
4550                                    channel_ids[i], SILC_ID_CHANNEL,
4551                                    channel_users_modes[i]->data,
4552                                    channel_users_modes[i]->len,
4553                                    FALSE);
4554       silc_buffer_free(channel_users_modes[i]);
4555     }
4556     silc_free(channel_users_modes);
4557   }
4558
4559   if (channel_topics) {
4560     int i;
4561
4562     for (i = 0; i < channel_users_modes_c; i++) {
4563       if (!channel_topics[i])
4564         continue;
4565
4566       silc_buffer_push(channel_topics[i],
4567                        channel_topics[i]->data -
4568                        channel_topics[i]->head);
4569       SILC_LOG_HEXDUMP(("channel topic"), channel_topics[i]->data,
4570                        channel_topics[i]->len);
4571       silc_server_packet_send_dest(server, remote,
4572                                    SILC_PACKET_NOTIFY, SILC_PACKET_FLAG_LIST,
4573                                    channel_ids[i], SILC_ID_CHANNEL,
4574                                    channel_topics[i]->data,
4575                                    channel_topics[i]->len,
4576                                    FALSE);
4577       silc_buffer_free(channel_topics[i]);
4578     }
4579     silc_free(channel_topics);
4580   }
4581
4582   silc_free(channel_ids);
4583 }
4584
4585 /* Assembles user list and users mode list from the `channel'. */
4586
4587 bool silc_server_get_users_on_channel(SilcServer server,
4588                                       SilcChannelEntry channel,
4589                                       SilcBuffer *user_list,
4590                                       SilcBuffer *mode_list,
4591                                       SilcUInt32 *user_count)
4592 {
4593   SilcChannelClientEntry chl;
4594   SilcHashTableList htl;
4595   SilcBuffer client_id_list;
4596   SilcBuffer client_mode_list;
4597   SilcBuffer idp;
4598   SilcUInt32 list_count = 0, len = 0;
4599
4600   if (!silc_hash_table_count(channel->user_list))
4601     return FALSE;
4602
4603   silc_hash_table_list(channel->user_list, &htl);
4604   while (silc_hash_table_get(&htl, NULL, (void *)&chl))
4605     len += (silc_id_get_len(chl->client->id, SILC_ID_CLIENT) + 4);
4606   silc_hash_table_list_reset(&htl);
4607
4608   client_id_list = silc_buffer_alloc(len);
4609   client_mode_list =
4610     silc_buffer_alloc(4 * silc_hash_table_count(channel->user_list));
4611   silc_buffer_pull_tail(client_id_list, SILC_BUFFER_END(client_id_list));
4612   silc_buffer_pull_tail(client_mode_list, SILC_BUFFER_END(client_mode_list));
4613
4614   silc_hash_table_list(channel->user_list, &htl);
4615   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
4616     /* Client ID */
4617     idp = silc_id_payload_encode(chl->client->id, SILC_ID_CLIENT);
4618     silc_buffer_put(client_id_list, idp->data, idp->len);
4619     silc_buffer_pull(client_id_list, idp->len);
4620     silc_buffer_free(idp);
4621
4622     /* Client's mode on channel */
4623     SILC_PUT32_MSB(chl->mode, client_mode_list->data);
4624     silc_buffer_pull(client_mode_list, 4);
4625
4626     list_count++;
4627   }
4628   silc_hash_table_list_reset(&htl);
4629   silc_buffer_push(client_id_list,
4630                    client_id_list->data - client_id_list->head);
4631   silc_buffer_push(client_mode_list,
4632                    client_mode_list->data - client_mode_list->head);
4633
4634   *user_list = client_id_list;
4635   *mode_list = client_mode_list;
4636   *user_count = list_count;
4637   return TRUE;
4638 }
4639
4640 /* Saves users and their modes to the `channel'. */
4641
4642 void silc_server_save_users_on_channel(SilcServer server,
4643                                        SilcSocketConnection sock,
4644                                        SilcChannelEntry channel,
4645                                        SilcClientID *noadd,
4646                                        SilcBuffer user_list,
4647                                        SilcBuffer mode_list,
4648                                        SilcUInt32 user_count)
4649 {
4650   int i;
4651   SilcUInt16 idp_len;
4652   SilcUInt32 mode;
4653   SilcClientID *client_id;
4654   SilcClientEntry client;
4655   SilcIDCacheEntry cache;
4656   SilcChannelClientEntry chl;
4657
4658   SILC_LOG_DEBUG(("Saving %d users on %s channel", user_count,
4659                   channel->channel_name));
4660
4661   for (i = 0; i < user_count; i++) {
4662     /* Client ID */
4663     SILC_GET16_MSB(idp_len, user_list->data + 2);
4664     idp_len += 4;
4665     client_id = silc_id_payload_parse_id(user_list->data, idp_len, NULL);
4666     silc_buffer_pull(user_list, idp_len);
4667     if (!client_id)
4668       continue;
4669
4670     /* Mode */
4671     SILC_GET32_MSB(mode, mode_list->data);
4672     silc_buffer_pull(mode_list, 4);
4673
4674     if (noadd && SILC_ID_CLIENT_COMPARE(client_id, noadd)) {
4675       silc_free(client_id);
4676       continue;
4677     }
4678
4679     cache = NULL;
4680
4681     /* Check if we have this client cached already. */
4682     client = silc_idlist_find_client_by_id(server->local_list, client_id,
4683                                            server->server_type, &cache);
4684     if (!client)
4685       client = silc_idlist_find_client_by_id(server->global_list,
4686                                              client_id, server->server_type,
4687                                              &cache);
4688     if (!client) {
4689       /* If router did not find such Client ID in its lists then this must
4690          be bogus client or some router in the net is buggy. */
4691       if (server->server_type != SILC_SERVER) {
4692         silc_free(client_id);
4693         continue;
4694       }
4695
4696       /* We don't have that client anywhere, add it. The client is added
4697          to global list since server didn't have it in the lists so it must be
4698          global. */
4699       client = silc_idlist_add_client(server->global_list, NULL, NULL, NULL,
4700                                       silc_id_dup(client_id, SILC_ID_CLIENT),
4701                                       sock->user_data, NULL, 0);
4702       if (!client) {
4703         SILC_LOG_ERROR(("Could not add new client to the ID Cache"));
4704         silc_free(client_id);
4705         continue;
4706       }
4707
4708       client->data.status |= SILC_IDLIST_STATUS_REGISTERED;
4709     }
4710
4711     if (cache)
4712       cache->expire = 0;
4713     silc_free(client_id);
4714
4715     if (!(client->data.status & SILC_IDLIST_STATUS_REGISTERED)) {
4716       SILC_LOG_ERROR(("Attempting to add unregistered client to channel ",
4717                       "%s", channel->channel_name));
4718       continue;
4719     }
4720
4721     if (!silc_server_client_on_channel(client, channel, &chl)) {
4722       /* Client was not on the channel, add it. */
4723       chl = silc_calloc(1, sizeof(*chl));
4724       chl->client = client;
4725       chl->mode = mode;
4726       chl->channel = channel;
4727       silc_hash_table_add(channel->user_list, chl->client, chl);
4728       silc_hash_table_add(client->channels, chl->channel, chl);
4729       channel->user_count++;
4730     } else {
4731       /* Update mode */
4732       chl->mode = mode;
4733     }
4734   }
4735 }
4736
4737 /* Saves channels and channels user modes to the `client'.  Removes
4738    the client from those channels that are not sent in the list but
4739    it has joined. */
4740
4741 void silc_server_save_user_channels(SilcServer server,
4742                                     SilcSocketConnection sock,
4743                                     SilcClientEntry client,
4744                                     SilcBuffer channels,
4745                                     SilcBuffer channels_user_modes)
4746 {
4747   SilcDList ch;
4748   SilcUInt32 *chumodes;
4749   SilcChannelPayload entry;
4750   SilcChannelEntry channel;
4751   SilcChannelID *channel_id;
4752   SilcChannelClientEntry chl;
4753   SilcHashTable ht = NULL;
4754   SilcHashTableList htl;
4755   char *name;
4756   int i = 0;
4757
4758   if (!channels || !channels_user_modes ||
4759       !(client->data.status & SILC_IDLIST_STATUS_REGISTERED))
4760     goto out;
4761   
4762   ch = silc_channel_payload_parse_list(channels->data, channels->len);
4763   if (ch && silc_get_mode_list(channels_user_modes, silc_dlist_count(ch),
4764                                &chumodes)) {
4765     ht = silc_hash_table_alloc(0, silc_hash_ptr, NULL, NULL, 
4766                                NULL, NULL, NULL, TRUE);
4767     silc_dlist_start(ch);
4768     while ((entry = silc_dlist_get(ch)) != SILC_LIST_END) {
4769       /* Check if we have this channel, and add it if we don't have it.
4770          Also add the client on the channel unless it is there already. */
4771       channel_id = silc_channel_get_id_parse(entry);
4772       channel = silc_idlist_find_channel_by_id(server->local_list, 
4773                                                channel_id, NULL);
4774       if (!channel)
4775         channel = silc_idlist_find_channel_by_id(server->global_list,
4776                                                  channel_id, NULL);
4777       if (!channel) {
4778         if (server->server_type != SILC_SERVER) {
4779           silc_free(channel_id);
4780           i++;
4781           continue;
4782         }
4783         
4784         /* We don't have that channel anywhere, add it. */
4785         name = silc_channel_get_name(entry, NULL);
4786         channel = silc_idlist_add_channel(server->global_list, strdup(name), 0,
4787                                           channel_id, server->router,
4788                                           NULL, NULL, 0);
4789         if (!channel) {
4790           silc_free(channel_id);
4791           i++;
4792           continue;
4793         }
4794         channel_id = NULL;
4795       }
4796
4797       channel->mode = silc_channel_get_mode(entry);
4798
4799       /* Add the client on the channel */
4800       if (!silc_server_client_on_channel(client, channel, &chl)) {
4801         chl = silc_calloc(1, sizeof(*chl));
4802         chl->client = client;
4803         chl->mode = chumodes[i++];
4804         chl->channel = channel;
4805         silc_hash_table_add(channel->user_list, chl->client, chl);
4806         silc_hash_table_add(client->channels, chl->channel, chl);
4807         channel->user_count++;
4808       } else {
4809         /* Update mode */
4810         chl->mode = chumodes[i++];
4811       }
4812
4813       silc_hash_table_add(ht, channel, channel);
4814       silc_free(channel_id);
4815     }
4816     silc_channel_payload_list_free(ch);
4817     silc_free(chumodes);
4818   }
4819
4820  out:
4821   /* Go through the list again and remove client from channels that
4822      are no part of the list. */
4823   if (ht) {
4824     silc_hash_table_list(client->channels, &htl);
4825     while (silc_hash_table_get(&htl, NULL, (void **)&chl)) {
4826       if (!silc_hash_table_find(ht, chl->channel, NULL, NULL)) {
4827         silc_hash_table_del(chl->channel->user_list, chl->client);
4828         silc_hash_table_del(chl->client->channels, chl->channel);
4829         silc_free(chl);
4830       }
4831     }
4832     silc_hash_table_list_reset(&htl);
4833     silc_hash_table_free(ht);
4834   } else {
4835     silc_hash_table_list(client->channels, &htl);
4836     while (silc_hash_table_get(&htl, NULL, (void **)&chl)) {
4837       silc_hash_table_del(chl->channel->user_list, chl->client);
4838       silc_hash_table_del(chl->client->channels, chl->channel);
4839       silc_free(chl);
4840     }
4841     silc_hash_table_list_reset(&htl);
4842   }
4843 }
4844
4845 /* Lookups route to the client indicated by the `id_data'. The connection
4846    object and internal data object is returned. Returns NULL if route
4847    could not be found to the client. If the `client_id' is specified then
4848    it is used and the `id_data' is ignored. */
4849
4850 SilcSocketConnection
4851 silc_server_get_client_route(SilcServer server,
4852                              unsigned char *id_data,
4853                              SilcUInt32 id_len,
4854                              SilcClientID *client_id,
4855                              SilcIDListData *idata,
4856                              SilcClientEntry *client_entry)
4857 {
4858   SilcClientID *id;
4859   SilcClientEntry client;
4860
4861   SILC_LOG_DEBUG(("Start"));
4862
4863   if (client_entry)
4864     *client_entry = NULL;
4865
4866   /* Decode destination Client ID */
4867   if (!client_id) {
4868     id = silc_id_str2id(id_data, id_len, SILC_ID_CLIENT);
4869     if (!id) {
4870       SILC_LOG_ERROR(("Could not decode destination Client ID, dropped"));
4871       return NULL;
4872     }
4873   } else {
4874     id = silc_id_dup(client_id, SILC_ID_CLIENT);
4875   }
4876
4877   /* If the destination belongs to our server we don't have to route
4878      the packet anywhere but to send it to the local destination. */
4879   client = silc_idlist_find_client_by_id(server->local_list, id, TRUE, NULL);
4880   if (client) {
4881     silc_free(id);
4882
4883     /* If we are router and the client has router then the client is in
4884        our cell but not directly connected to us. */
4885     if (server->server_type == SILC_ROUTER && client->router) {
4886       /* We are of course in this case the client's router thus the route
4887          to the client is the server who owns the client. So, we will send
4888          the packet to that server. */
4889       if (idata)
4890         *idata = (SilcIDListData)client->router;
4891       return client->router->connection;
4892     }
4893
4894     /* Seems that client really is directly connected to us */
4895     if (idata)
4896       *idata = (SilcIDListData)client;
4897     if (client_entry)
4898       *client_entry = client;
4899     return client->connection;
4900   }
4901
4902   /* Destination belongs to someone not in this server. If we are normal
4903      server our action is to send the packet to our router. */
4904   if (server->server_type != SILC_ROUTER && !server->standalone) {
4905     silc_free(id);
4906     if (idata)
4907       *idata = (SilcIDListData)server->router;
4908     return SILC_PRIMARY_ROUTE(server);
4909   }
4910
4911   /* We are router and we will perform route lookup for the destination
4912      and send the packet to fastest route. */
4913   if (server->server_type == SILC_ROUTER && !server->standalone) {
4914     /* Check first that the ID is valid */
4915     client = silc_idlist_find_client_by_id(server->global_list, id,
4916                                            TRUE, NULL);
4917     if (client) {
4918       SilcSocketConnection dst_sock;
4919
4920       dst_sock = silc_server_route_get(server, id, SILC_ID_CLIENT);
4921
4922       silc_free(id);
4923       if (idata)
4924         *idata = (SilcIDListData)dst_sock->user_data;
4925       return dst_sock;
4926     }
4927   }
4928
4929   silc_free(id);
4930   return NULL;
4931 }
4932
4933 /* Encodes and returns channel list of channels the `client' has joined.
4934    Secret channels are not put to the list. */
4935
4936 SilcBuffer silc_server_get_client_channel_list(SilcServer server,
4937                                                SilcClientEntry client,
4938                                                bool get_private,
4939                                                bool get_secret,
4940                                                SilcBuffer *user_mode_list)
4941 {
4942   SilcBuffer buffer = NULL;
4943   SilcChannelEntry channel;
4944   SilcChannelClientEntry chl;
4945   SilcHashTableList htl;
4946   unsigned char *cid;
4947   SilcUInt32 id_len;
4948   SilcUInt16 name_len;
4949   int len;
4950
4951   if (user_mode_list)
4952     *user_mode_list = NULL;
4953
4954   silc_hash_table_list(client->channels, &htl);
4955   while (silc_hash_table_get(&htl, NULL, (void *)&chl)) {
4956     channel = chl->channel;
4957
4958     if (channel->mode & SILC_CHANNEL_MODE_SECRET && !get_secret)
4959       continue;
4960     if (channel->mode & SILC_CHANNEL_MODE_PRIVATE && !get_private)
4961       continue;
4962
4963     cid = silc_id_id2str(channel->id, SILC_ID_CHANNEL);
4964     id_len = silc_id_get_len(channel->id, SILC_ID_CHANNEL);
4965     name_len = strlen(channel->channel_name);
4966
4967     len = 4 + name_len + id_len + 4;
4968     buffer = silc_buffer_realloc(buffer,
4969                                  (buffer ? buffer->truelen + len : len));
4970     silc_buffer_pull_tail(buffer, (buffer->end - buffer->data));
4971     silc_buffer_format(buffer,
4972                        SILC_STR_UI_SHORT(name_len),
4973                        SILC_STR_UI_XNSTRING(channel->channel_name,
4974                                             name_len),
4975                        SILC_STR_UI_SHORT(id_len),
4976                        SILC_STR_UI_XNSTRING(cid, id_len),
4977                        SILC_STR_UI_INT(chl->channel->mode),
4978                        SILC_STR_END);
4979     silc_buffer_pull(buffer, len);
4980     silc_free(cid);
4981
4982     if (user_mode_list) {
4983       *user_mode_list = silc_buffer_realloc(*user_mode_list,
4984                                             (*user_mode_list ?
4985                                              (*user_mode_list)->truelen + 4 :
4986                                              4));
4987       silc_buffer_pull_tail(*user_mode_list, ((*user_mode_list)->end -
4988                                               (*user_mode_list)->data));
4989       SILC_PUT32_MSB(chl->mode, (*user_mode_list)->data);
4990       silc_buffer_pull(*user_mode_list, 4);
4991     }
4992   }
4993   silc_hash_table_list_reset(&htl);
4994
4995   if (buffer)
4996     silc_buffer_push(buffer, buffer->data - buffer->head);
4997   if (user_mode_list && *user_mode_list)
4998     silc_buffer_push(*user_mode_list, ((*user_mode_list)->data -
4999                                        (*user_mode_list)->head));
5000
5001   return buffer;
5002 }
5003
5004 /* A timeout callback for the re-key. We will be the initiator of the
5005    re-key protocol. */
5006
5007 SILC_TASK_CALLBACK_GLOBAL(silc_server_rekey_callback)
5008 {
5009   SilcServer server = app_context;
5010   SilcSocketConnection sock = (SilcSocketConnection)context;
5011   SilcIDListData idata = (SilcIDListData)sock->user_data;
5012   SilcProtocol protocol;
5013   SilcServerRekeyInternalContext *proto_ctx;
5014
5015   /* Allocate internal protocol context. This is sent as context
5016      to the protocol. */
5017   proto_ctx = silc_calloc(1, sizeof(*proto_ctx));
5018   proto_ctx->server = (void *)server;
5019   proto_ctx->sock = sock;
5020   proto_ctx->responder = FALSE;
5021   proto_ctx->pfs = idata->rekey->pfs;
5022
5023   /* Perform rekey protocol. Will call the final callback after the
5024      protocol is over. */
5025   silc_protocol_alloc(SILC_PROTOCOL_SERVER_REKEY,
5026                       &protocol, proto_ctx, silc_server_rekey_final);
5027   sock->protocol = protocol;
5028
5029   /* Run the protocol */
5030   silc_protocol_execute(protocol, server->schedule, 0, 0);
5031
5032   SILC_LOG_DEBUG(("Rekey protocol completed"));
5033
5034   /* Re-register re-key timeout */
5035   silc_schedule_task_add(server->schedule, sock->sock,
5036                          silc_server_rekey_callback,
5037                          context, idata->rekey->timeout, 0,
5038                          SILC_TASK_TIMEOUT, SILC_TASK_PRI_NORMAL);
5039 }
5040
5041 /* The final callback for the REKEY protocol. This will actually take the
5042    new key material into use. */
5043
5044 SILC_TASK_CALLBACK_GLOBAL(silc_server_rekey_final)
5045 {
5046   SilcProtocol protocol = (SilcProtocol)context;
5047   SilcServerRekeyInternalContext *ctx =
5048     (SilcServerRekeyInternalContext *)protocol->context;
5049   SilcServer server = (SilcServer)ctx->server;
5050   SilcSocketConnection sock = ctx->sock;
5051
5052   SILC_LOG_DEBUG(("Start"));
5053
5054   if (protocol->state == SILC_PROTOCOL_STATE_ERROR ||
5055       protocol->state == SILC_PROTOCOL_STATE_FAILURE) {
5056     /* Error occured during protocol */
5057     SILC_LOG_ERROR(("Error occurred during rekey protocol"));
5058     silc_protocol_cancel(protocol, server->schedule);
5059     silc_protocol_free(protocol);
5060     sock->protocol = NULL;
5061     if (ctx->packet)
5062       silc_packet_context_free(ctx->packet);
5063     if (ctx->ske)
5064       silc_ske_free(ctx->ske);
5065     silc_free(ctx);
5066     return;
5067   }
5068
5069   /* Purge the outgoing data queue to assure that all rekey packets really
5070      go to the network before we quit the protocol. */
5071   silc_server_packet_queue_purge(server, sock);
5072
5073   /* Cleanup */
5074   silc_protocol_free(protocol);
5075   sock->protocol = NULL;
5076   if (ctx->packet)
5077     silc_packet_context_free(ctx->packet);
5078   if (ctx->ske)
5079     silc_ske_free(ctx->ske);
5080   silc_free(ctx);
5081 }
5082
5083 /* Task callback used to retrieve network statistical information from
5084    router server once in a while. */
5085
5086 SILC_TASK_CALLBACK(silc_server_get_stats)
5087 {
5088   SilcServer server = (SilcServer)context;
5089   SilcBuffer idp, packet;
5090
5091   SILC_LOG_DEBUG(("Retrieving stats from router"));
5092
5093   if (!server->standalone) {
5094     idp = silc_id_payload_encode(server->router->id, SILC_ID_SERVER);
5095     packet = silc_command_payload_encode_va(SILC_COMMAND_STATS, 
5096                                             ++server->cmd_ident, 1,
5097                                             1, idp->data, idp->len);
5098     silc_server_packet_send(server, SILC_PRIMARY_ROUTE(server),
5099                             SILC_PACKET_COMMAND, 0, packet->data,
5100                             packet->len, FALSE);
5101     silc_buffer_free(packet);
5102     silc_buffer_free(idp);
5103   }
5104
5105   silc_schedule_task_add(server->schedule, 0, silc_server_get_stats,
5106                          server, 120, 0, SILC_TASK_TIMEOUT,
5107                          SILC_TASK_PRI_LOW);
5108 }