fd0e546222c70a7dda14cc2673e0bdd566485927
[silc.git] / lib / silcclient / client_connect.c
1 /*
2
3   client_st_connect.c
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 2006 - 2014 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 #include "silc.h"
21 #include "silcclient.h"
22 #include "client_internal.h"
23
24 /************************ Static utility functions **************************/
25
26 /* Callback called after connected to remote host */
27
28 static void silc_client_connect_callback(SilcNetStatus status,
29                                          SilcStream stream, void *context)
30 {
31   SilcFSMThread fsm = context;
32   SilcClientConnection conn = silc_fsm_get_context(fsm);
33   SilcClient client = conn->client;
34
35   conn->internal->op = NULL;
36   if (conn->internal->verbose) {
37     switch (status) {
38     case SILC_NET_OK:
39       break;
40     case SILC_NET_UNKNOWN_IP:
41       client->internal->ops->say(
42                    client, conn, SILC_CLIENT_MESSAGE_ERROR,
43                    "Could not connect to host %s: unknown IP address",
44                    conn->remote_host);
45       break;
46     case SILC_NET_UNKNOWN_HOST:
47       client->internal->ops->say(
48                    client, conn, SILC_CLIENT_MESSAGE_ERROR,
49                    "Could not connect to host %s: unknown host name",
50                    conn->remote_host);
51       break;
52     case SILC_NET_HOST_UNREACHABLE:
53       client->internal->ops->say(
54                    client, conn, SILC_CLIENT_MESSAGE_ERROR,
55                    "Could not connect to host %s: network unreachable",
56                    conn->remote_host);
57       break;
58     case SILC_NET_CONNECTION_REFUSED:
59       client->internal->ops->say(
60                    client, conn, SILC_CLIENT_MESSAGE_ERROR,
61                    "Could not connect to host %s: connection refused",
62                    conn->remote_host);
63       break;
64     case SILC_NET_CONNECTION_TIMEOUT:
65       client->internal->ops->say(
66                    client, conn, SILC_CLIENT_MESSAGE_ERROR,
67                    "Could not connect to host %s: connection timeout",
68                    conn->remote_host);
69       break;
70     default:
71       client->internal->ops->say(
72                    client, conn, SILC_CLIENT_MESSAGE_ERROR,
73                    "Could not connect to host %s",
74                    conn->remote_host);
75       break;
76     }
77   }
78
79   if (status != SILC_NET_OK) {
80     /* Notify application of failure */
81     SILC_LOG_DEBUG(("Connecting failed"));
82     conn->internal->status = SILC_CLIENT_CONN_ERROR;
83     silc_fsm_next(fsm, silc_client_st_connect_error);
84     SILC_FSM_CALL_CONTINUE(fsm);
85     return;
86   }
87
88   /* Connection created successfully */
89   SILC_LOG_DEBUG(("Connected"));
90   conn->internal->user_stream = stream;
91   SILC_FSM_CALL_CONTINUE(fsm);
92 }
93
94 /* Called after application has verified remote host's public key */
95
96 static void silc_client_ke_verify_key_cb(SilcBool success, void *context)
97 {
98   SilcVerifyKeyContext verify = context;
99
100   SILC_LOG_DEBUG(("Start"));
101
102   /* Call the completion callback back to the SKE */
103   verify->completion(verify->ske, success ? SILC_SKE_STATUS_OK :
104                      SILC_SKE_STATUS_UNSUPPORTED_PUBLIC_KEY,
105                      verify->completion_context);
106
107   silc_free(verify);
108 }
109
110 /* Verify remote host's public key */
111
112 static void silc_client_ke_verify_key(SilcSKE ske,
113                                       SilcPublicKey public_key,
114                                       void *context,
115                                       SilcSKEVerifyCbCompletion completion,
116                                       void *completion_context)
117 {
118   SilcFSMThread fsm = context;
119   SilcClientConnection conn = silc_fsm_get_context(fsm);
120   SilcClient client = conn->client;
121   SilcVerifyKeyContext verify;
122
123   /* If we provided repository for SKE and we got here the key was not
124      found from the repository. */
125   if (conn->internal->params.repository &&
126       !conn->internal->params.verify_notfound) {
127     completion(ske, SILC_SKE_STATUS_UNSUPPORTED_PUBLIC_KEY,
128                completion_context);
129     return;
130   }
131
132   SILC_LOG_DEBUG(("Verify remote public key"));
133
134   verify = silc_calloc(1, sizeof(*verify));
135   if (!verify) {
136     completion(ske, SILC_SKE_STATUS_UNSUPPORTED_PUBLIC_KEY,
137                completion_context);
138     return;
139   }
140   verify->ske = ske;
141   verify->completion = completion;
142   verify->completion_context = completion_context;
143
144   /* Verify public key in application */
145   client->internal->ops->verify_public_key(client, conn,
146                                            conn->type, public_key,
147                                            silc_client_ke_verify_key_cb,
148                                            verify);
149 }
150
151 /* Key exchange protocol completion callback */
152
153 static void silc_client_ke_completion(SilcSKE ske,
154                                       SilcSKEStatus status,
155                                       SilcSKESecurityProperties prop,
156                                       SilcSKEKeyMaterial keymat,
157                                       SilcSKERekeyMaterial rekey,
158                                       void *context)
159 {
160   SilcFSMThread fsm = context;
161   SilcClientConnection conn = silc_fsm_get_context(fsm);
162   SilcClient client = conn->client;
163   SilcCipher send_key, receive_key;
164   SilcHmac hmac_send, hmac_receive;
165
166   conn->internal->op = NULL;
167   if (status != SILC_SKE_STATUS_OK) {
168     /* Key exchange failed */
169     SILC_LOG_DEBUG(("Error during key exchange with %s: %s (%d)",
170                     conn->remote_host, silc_ske_map_status(status), status));
171
172     if (conn->internal->verbose)
173       client->internal->ops->say(client, conn, SILC_CLIENT_MESSAGE_ERROR,
174                                  "Error during key exchange with %s: %s",
175                                  conn->remote_host,
176                                  silc_ske_map_status(status));
177
178     conn->internal->status = SILC_CLIENT_CONN_ERROR_KE;
179     silc_ske_free_rekey_material(rekey);
180
181     silc_fsm_next(fsm, silc_client_st_connect_error);
182     SILC_FSM_CALL_CONTINUE_SYNC(fsm);
183     return;
184   }
185
186   SILC_LOG_DEBUG(("Setting keys into use"));
187
188   /* Allocate the cipher and HMAC contexts */
189   if (!silc_ske_set_keys(ske, keymat, prop, &send_key, &receive_key,
190                          &hmac_send, &hmac_receive, &conn->internal->hash)) {
191     /* Error setting keys */
192     SILC_LOG_DEBUG(("Could not set keys into use"));
193
194     if (conn->internal->verbose)
195       client->internal->ops->say(
196                        client, conn, SILC_CLIENT_MESSAGE_ERROR,
197                        "Error during key exchange with %s: cannot use keys",
198                        conn->remote_host);
199
200     conn->internal->status = SILC_CLIENT_CONN_ERROR_KE;
201     silc_ske_free_rekey_material(rekey);
202
203     silc_fsm_next(fsm, silc_client_st_connect_error);
204     SILC_FSM_CALL_CONTINUE_SYNC(fsm);
205     return;
206   }
207
208   /* Set the keys into the packet stream.  After this call packets will be
209      encrypted with these keys. */
210   if (!silc_packet_set_keys(conn->stream, send_key, receive_key, hmac_send,
211                             hmac_receive, FALSE)) {
212     /* Error setting keys */
213     SILC_LOG_DEBUG(("Could not set keys into use"));
214
215     if (conn->internal->verbose)
216       client->internal->ops->say(
217                        client, conn, SILC_CLIENT_MESSAGE_ERROR,
218                        "Error during key exchange with %s: cannot use keys",
219                        conn->remote_host);
220
221     conn->internal->status = SILC_CLIENT_CONN_ERROR_KE;
222     silc_ske_free_rekey_material(rekey);
223
224     silc_fsm_next(fsm, silc_client_st_connect_error);
225     SILC_FSM_CALL_CONTINUE_SYNC(fsm);
226     return;
227   }
228
229   conn->internal->rekey = rekey;
230
231   SILC_LOG_DEBUG(("Key Exchange completed"));
232
233   /* Key exchange done */
234   SILC_FSM_CALL_CONTINUE_SYNC(fsm);
235 }
236
237 /* Rekey protocol completion callback */
238
239 static void silc_client_rekey_completion(SilcSKE ske,
240                                          SilcSKEStatus status,
241                                          SilcSKESecurityProperties prop,
242                                          SilcSKEKeyMaterial keymat,
243                                          SilcSKERekeyMaterial rekey,
244                                          void *context)
245 {
246   SilcFSMThread fsm = context;
247   SilcClientConnection conn = silc_fsm_get_context(fsm);
248   SilcClient client = conn->client;
249
250   conn->internal->op = NULL;
251   if (status != SILC_SKE_STATUS_OK) {
252     /* Rekey failed */
253     SILC_LOG_DEBUG(("Error during rekey with %s: %s (%d)",
254                     conn->remote_host, silc_ske_map_status(status), status));
255
256     if (conn->internal->verbose)
257       client->internal->ops->say(client, conn, SILC_CLIENT_MESSAGE_ERROR,
258                                  "Error during rekey with %s: %s",
259                                  conn->remote_host,
260                                  silc_ske_map_status(status));
261
262     silc_ske_free(conn->internal->ske);
263     conn->internal->ske = NULL;
264     silc_fsm_finish(fsm);
265
266     /* Close connection */
267     silc_client_close_connection(client, conn);
268     return;
269   }
270
271   silc_ske_free_rekey_material(conn->internal->rekey);
272   conn->internal->rekey = rekey;
273
274   silc_ske_free(conn->internal->ske);
275   conn->internal->ske = NULL;
276
277   SILC_LOG_DEBUG(("Rekey completed conn %p", conn));
278
279   /* Rekey done */
280   silc_fsm_finish(fsm);
281 }
282
283 /* Callback called by application to return authentication data */
284
285 static void silc_client_connect_auth_method(SilcAuthMethod auth_meth,
286                                             const void *auth,
287                                             SilcUInt32 auth_len,
288                                             void *context)
289 {
290   SilcFSMThread fsm = context;
291   SilcClientConnection conn = silc_fsm_get_context(fsm);
292
293   conn->internal->params.auth_method = auth_meth;
294   if (auth_meth == SILC_AUTH_PASSWORD)
295     conn->internal->params.auth = silc_memdup(auth, auth_len);
296   else
297     conn->internal->params.auth = (void *)auth;
298   conn->internal->params.auth_len = auth_len;
299
300   SILC_FSM_CALL_CONTINUE(fsm);
301 }
302
303 /* Connection authentication completion callback */
304
305 static void silc_client_connect_auth_completion(SilcConnAuth connauth,
306                                                 SilcBool success,
307                                                 void *context)
308 {
309   SilcFSMThread fsm = context;
310   SilcClientConnection conn = silc_fsm_get_context(fsm);
311   SilcClient client = conn->client;
312
313   conn->internal->op = NULL;
314   silc_connauth_free(connauth);
315
316   if (!success) {
317     if (conn->internal->verbose)
318         client->internal->ops->say(
319                         client, conn, SILC_CLIENT_MESSAGE_ERROR,
320                         "Authentication failed");
321
322     conn->internal->status = SILC_CLIENT_CONN_ERROR_AUTH;
323     conn->internal->error = SILC_STATUS_ERR_AUTH_FAILED;
324     silc_fsm_next(fsm, silc_client_st_connect_error);
325   }
326
327   SILC_FSM_CALL_CONTINUE_SYNC(fsm);
328 }
329
330 /********************** CONNECTION_AUTH_REQUEST packet **********************/
331
332 /* Received connection authentication request packet.  We get the
333    required authentication method here. */
334
335 SILC_FSM_STATE(silc_client_connect_auth_request)
336 {
337   SilcClientConnection conn = fsm_context;
338   SilcPacket packet = state_context;
339   SilcUInt16 conn_type, auth_meth;
340
341   if (!conn->internal->auth_request) {
342     silc_packet_free(packet);
343     return SILC_FSM_FINISH;
344   }
345
346   /* Parse the payload */
347   if (silc_buffer_unformat(&packet->buffer,
348                            SILC_STR_UI_SHORT(&conn_type),
349                            SILC_STR_UI_SHORT(&auth_meth),
350                            SILC_STR_END) < 0)
351     auth_meth = SILC_AUTH_NONE;
352
353   silc_packet_free(packet);
354
355   SILC_LOG_DEBUG(("Resolved authentication method: %s",
356                   (auth_meth == SILC_AUTH_NONE ? "none" :
357                    auth_meth == SILC_AUTH_PASSWORD ? "passphrase" :
358                    "public key")));
359   conn->internal->params.auth_method = auth_meth;
360
361   /* Continue authentication */
362   silc_fsm_continue_sync(&conn->internal->event_thread);
363   return SILC_FSM_FINISH;
364 }
365
366 /*************************** Connect remote host ****************************/
367
368 /* Connection timeout callback */
369
370 SILC_TASK_CALLBACK(silc_client_connect_timeout)
371 {
372   SilcClientConnection conn = context;
373
374   SILC_LOG_DEBUG(("Connection timeout"));
375
376   conn->internal->status = SILC_CLIENT_CONN_ERROR_TIMEOUT;
377   conn->internal->error = SILC_STATUS_ERR_TIMEDOUT;
378
379   silc_fsm_next(&conn->internal->event_thread, silc_client_st_connect_error);
380   silc_fsm_continue_sync(&conn->internal->event_thread);
381 }
382
383 /* Creates a connection to remote host */
384
385 SILC_FSM_STATE(silc_client_st_connect)
386 {
387   SilcClientConnection conn = fsm_context;
388
389   SILC_LOG_DEBUG(("Connecting to %s:%d", conn->remote_host,
390                   conn->remote_port));
391
392   /** Connect */
393   silc_fsm_next(fsm, silc_client_st_connect_set_stream);
394
395   /* Add connection timeout */
396   if (conn->internal->params.timeout_secs)
397     silc_schedule_task_add_timeout(conn->internal->schedule,
398                                    silc_client_connect_timeout, conn,
399                                    conn->internal->params.timeout_secs, 0);
400
401   if (conn->internal->params.udp) {
402     SilcStream stream;
403
404     if (!conn->internal->params.local_ip) {
405       /** IP address not given */
406       SILC_LOG_ERROR(("Local UDP IP address not specified"));
407       conn->internal->status = SILC_CLIENT_CONN_ERROR;
408       silc_fsm_next(fsm, silc_client_st_connect_error);
409       return SILC_FSM_CONTINUE;
410     }
411
412     /* Connect (UDP) */
413     stream = silc_net_udp_connect(conn->internal->params.bind_ip ?
414                                   conn->internal->params.bind_ip :
415                                   conn->internal->params.local_ip,
416                                   conn->internal->params.local_port,
417                                   conn->remote_host, conn->remote_port,
418                                   conn->internal->schedule);
419
420     SILC_FSM_CALL(silc_client_connect_callback(stream ? SILC_NET_OK :
421                                                SILC_NET_HOST_UNREACHABLE,
422                                                stream, fsm));
423   } else {
424     /* Connect (TCP) */
425     SILC_FSM_CALL(conn->internal->op = silc_net_tcp_connect(
426                                        NULL, conn->remote_host,
427                                        conn->remote_port,
428                                        conn->internal->schedule,
429                                        silc_client_connect_callback, fsm));
430   }
431 }
432
433 /* Sets the new connection stream into use and creates packet stream */
434
435 SILC_FSM_STATE(silc_client_st_connect_set_stream)
436 {
437   SilcClientConnection conn = fsm_context;
438   SilcClient client = conn->client;
439
440   if (conn->internal->disconnected) {
441     /** Disconnected */
442     silc_fsm_next(fsm, silc_client_st_connect_error);
443     return SILC_FSM_CONTINUE;
444   }
445
446   /* Create packet stream */
447   conn->stream = silc_packet_stream_create(client->internal->packet_engine,
448                                            conn->internal->schedule,
449                                            conn->internal->user_stream);
450   if (!conn->stream) {
451     /** Cannot create packet stream */
452     SILC_LOG_DEBUG(("Could not create packet stream"));
453     conn->internal->status = SILC_CLIENT_CONN_ERROR;
454     silc_fsm_next(fsm, silc_client_st_connect_error);
455     return SILC_FSM_CONTINUE;
456   }
457
458   silc_packet_set_context(conn->stream, conn);
459
460   /** Start key exchange */
461   silc_fsm_next(fsm, silc_client_st_connect_key_exchange);
462   return SILC_FSM_CONTINUE;
463 }
464
465 /* Starts key exchange protocol with remote host */
466
467 SILC_FSM_STATE(silc_client_st_connect_key_exchange)
468 {
469   SilcClientConnection conn = fsm_context;
470   SilcClient client = conn->client;
471   SilcSKEParamsStruct params;
472   SilcClientID cid;
473
474   SILC_LOG_DEBUG(("Starting key exchange protocol"));
475
476   /* Allocate SKE */
477   conn->internal->ske =
478     silc_ske_alloc(client->rng, conn->internal->schedule,
479                    conn->internal->params.repository,
480                    conn->public_key, conn->private_key, fsm);
481   if (!conn->internal->ske) {
482     /** Out of memory */
483     conn->internal->status = SILC_CLIENT_CONN_ERROR_KE;
484     silc_fsm_next(fsm, silc_client_st_connect_error);
485     return SILC_FSM_CONTINUE;
486   }
487
488   /* Set SKE callbacks */
489   silc_ske_set_callbacks(conn->internal->ske, silc_client_ke_verify_key,
490                          silc_client_ke_completion, fsm);
491
492   /* Set up key exchange parameters */
493   params.version = client->internal->silc_client_version;
494   params.timeout_secs = conn->internal->params.timeout_secs;
495   params.flags = SILC_SKE_SP_FLAG_MUTUAL;
496   if (conn->internal->params.pfs)
497     params.flags |= SILC_SKE_SP_FLAG_PFS;
498   if (conn->internal->params.udp) {
499     params.flags |= SILC_SKE_SP_FLAG_IV_INCLUDED;
500     params.session_port = conn->internal->params.local_port;
501   }
502
503   if (conn->internal->params.no_authentication)
504     /** Run key exchange (no auth) */
505     silc_fsm_next(fsm, silc_client_st_connected);
506   else if (conn->internal->params.udp)
507     /** Run key exchange (UDP)*/
508     silc_fsm_next(fsm, silc_client_st_connect_setup_udp);
509   else
510     /** Run key exchange (TCP) */
511     silc_fsm_next(fsm, silc_client_st_connect_auth_resolve);
512
513   SILC_FSM_CALL(conn->internal->op = silc_ske_initiator(conn->internal->ske,
514                                                         conn->stream,
515                                                         &params, NULL));
516 }
517
518 /* For UDP/IP connections, set up the UDP session after successful key
519    exchange protocol */
520
521 SILC_FSM_STATE(silc_client_st_connect_setup_udp)
522 {
523   SilcClientConnection conn = fsm_context;
524   SilcStream stream, old;
525   SilcSKESecurityProperties prop;
526
527   SILC_LOG_DEBUG(("Setup UDP SILC session"));
528
529   if (conn->internal->disconnected) {
530     /** Disconnected */
531     silc_fsm_next(fsm, silc_client_st_connect_error);
532     return SILC_FSM_CONTINUE;
533   }
534
535   /* Create new UDP stream */
536   prop = silc_ske_get_security_properties(conn->internal->ske);
537   stream = silc_net_udp_connect(conn->internal->params.local_ip,
538                                 conn->internal->params.local_port,
539                                 conn->remote_host, prop->remote_port,
540                                 conn->internal->schedule);
541   if (!stream) {
542     /** Cannot create UDP stream */
543     conn->internal->status = SILC_CLIENT_CONN_ERROR;
544     silc_fsm_next(fsm, silc_client_st_connect_error);
545     return SILC_FSM_CONTINUE;
546   }
547
548   /* Set the new stream to packet stream */
549   old = silc_packet_stream_get_stream(conn->stream);
550   silc_packet_stream_set_stream(conn->stream, stream);
551   silc_packet_stream_set_iv_included(conn->stream);
552   silc_packet_set_sid(conn->stream, 0);
553
554   /* Delete the old stream */
555   silc_stream_destroy(old);
556
557   /** Start authentication */
558   silc_fsm_next(fsm, silc_client_st_connect_auth_resolve);
559   return SILC_FSM_CONTINUE;
560 }
561
562 /* Resolve authentication method to be used in authentication protocol */
563
564 SILC_FSM_STATE(silc_client_st_connect_auth_resolve)
565 {
566   SilcClientConnection conn = fsm_context;
567
568   SILC_LOG_DEBUG(("Resolve authentication method"));
569
570   if (conn->internal->disconnected) {
571     /** Disconnected */
572     silc_fsm_next(fsm, silc_client_st_connect_error);
573     return SILC_FSM_CONTINUE;
574   }
575
576   /* If authentication method and data is set, use them */
577   if (conn->internal->params.auth_set) {
578     /** Got authentication data */
579     silc_fsm_next(fsm, silc_client_st_connect_auth_start);
580     return SILC_FSM_CONTINUE;
581   }
582
583   /* Send connection authentication request packet */
584   silc_packet_send_va(conn->stream,
585                       SILC_PACKET_CONNECTION_AUTH_REQUEST, 0,
586                       SILC_STR_UI_SHORT(SILC_CONN_CLIENT),
587                       SILC_STR_UI_SHORT(SILC_AUTH_NONE),
588                       SILC_STR_END);
589
590   /** Wait for authentication method */
591   conn->internal->auth_request = TRUE;
592   conn->internal->params.auth_method = SILC_AUTH_NONE;
593   silc_fsm_next_later(fsm, silc_client_st_connect_auth_data, 2, 0);
594   return SILC_FSM_WAIT;
595 }
596
597 /* Get authentication data to be used in authentication protocol */
598
599 SILC_FSM_STATE(silc_client_st_connect_auth_data)
600 {
601   SilcClientConnection conn = fsm_context;
602   SilcClient client = conn->client;
603
604   SILC_LOG_DEBUG(("Get authentication data"));
605
606   if (conn->internal->disconnected) {
607     /** Disconnected */
608     silc_fsm_next(fsm, silc_client_st_connect_error);
609     return SILC_FSM_CONTINUE;
610   }
611
612   conn->internal->auth_request = FALSE;
613
614   /** Get authentication data */
615   silc_fsm_next(fsm, silc_client_st_connect_auth_start);
616   SILC_FSM_CALL(client->internal->ops->get_auth_method(
617                                     client, conn,
618                                     conn->remote_host,
619                                     conn->remote_port,
620                                     conn->internal->params.auth_method,
621                                     silc_client_connect_auth_method, fsm));
622 }
623
624 /* Start connection authentication with remote host */
625
626 SILC_FSM_STATE(silc_client_st_connect_auth_start)
627 {
628   SilcClientConnection conn = fsm_context;
629   SilcConnAuth connauth;
630
631   SILC_LOG_DEBUG(("Starting connection authentication protocol"));
632
633   if (conn->internal->disconnected) {
634     /** Disconnected */
635     silc_fsm_next(fsm, silc_client_st_connect_error);
636     return SILC_FSM_CONTINUE;
637   }
638
639   /* We always use the same key for connection authentication and SKE */
640   if (conn->internal->params.auth_method == SILC_AUTH_PUBLIC_KEY)
641     conn->internal->params.auth = conn->private_key;
642
643   /* Allocate connection authentication protocol */
644   connauth = silc_connauth_alloc(conn->internal->schedule,
645                                  conn->internal->ske,
646                                  conn->internal->params.rekey_secs);
647   if (!connauth) {
648     /** Out of memory */
649     conn->internal->status = SILC_CLIENT_CONN_ERROR_AUTH;
650     conn->internal->error = SILC_STATUS_ERR_AUTH_FAILED;
651     silc_fsm_next(fsm, silc_client_st_connect_error);
652     return SILC_FSM_CONTINUE;
653   }
654
655   /** Start connection authentication */
656   silc_fsm_next(fsm, silc_client_st_connected);
657   SILC_FSM_CALL(conn->internal->op = silc_connauth_initiator(
658                                         connauth, SILC_CONN_CLIENT,
659                                         conn->internal->params.auth_method,
660                                         conn->internal->params.auth,
661                                         conn->internal->params.auth_len,
662                                         silc_client_connect_auth_completion,
663                                         fsm));
664 }
665
666 /* Connection fully established */
667
668 SILC_FSM_STATE(silc_client_st_connected)
669 {
670   SilcClientConnection conn = fsm_context;
671   SilcClient client = conn->client;
672
673   /* Get SILC protocol version remote supports */
674   silc_ske_parse_version(conn->internal->ske, &conn->internal->remote_version,
675                          NULL, NULL, NULL, NULL);
676
677   silc_ske_free(conn->internal->ske);
678   conn->internal->ske = NULL;
679
680   if (!conn->internal->params.auth_set &&
681       conn->internal->params.auth_method == SILC_AUTH_PASSWORD &&
682       conn->internal->params.auth) {
683     silc_free(conn->internal->params.auth);
684     conn->internal->params.auth = NULL;
685   }
686
687   if (conn->internal->disconnected) {
688     /** Disconnected */
689     silc_fsm_next(fsm, silc_client_st_connect_error);
690     return SILC_FSM_CONTINUE;
691   }
692
693   SILC_LOG_DEBUG(("Connection established"));
694
695   /* Install rekey timer */
696   if (conn->type != SILC_CONN_CLIENT)
697     silc_schedule_task_add_timeout(conn->internal->schedule,
698                                    silc_client_rekey_timer, conn,
699                                    conn->internal->params.rekey_secs, 0);
700
701   /* If we connected to server, now register to network. */
702   if (conn->type == SILC_CONN_SERVER &&
703       !conn->internal->params.no_authentication) {
704
705     /* If detach data is provided, resume the session. */
706     if (conn->internal->params.detach_data &&
707         conn->internal->params.detach_data_len) {
708       /** Resume detached session */
709       silc_fsm_next(fsm, silc_client_st_resume);
710     } else {
711       /** Register to network */
712       silc_fsm_next(fsm, silc_client_st_register);
713     }
714
715     return SILC_FSM_CONTINUE;
716   }
717
718   silc_schedule_task_del_by_all(conn->internal->schedule, 0,
719                                 silc_client_connect_timeout, conn);
720
721   /* Call connection callback */
722   conn->callback(client, conn, SILC_CLIENT_CONN_SUCCESS, 0, NULL,
723                  conn->callback_context);
724
725   silc_async_free(conn->internal->cop);
726   conn->internal->cop = NULL;
727
728   return SILC_FSM_FINISH;
729 }
730
731 /* Error during connecting */
732
733 SILC_FSM_STATE(silc_client_st_connect_error)
734 {
735   SilcClientConnection conn = fsm_context;
736
737   if (conn->internal->ske) {
738     silc_ske_free(conn->internal->ske);
739     conn->internal->ske = NULL;
740   }
741
742   /* Signal to close connection */
743   if (!conn->internal->disconnected) {
744     conn->internal->disconnected = TRUE;
745     SILC_FSM_EVENT_SIGNAL(&conn->internal->wait_event);
746   }
747
748   silc_schedule_task_del_by_all(conn->internal->schedule, 0,
749                                 silc_client_connect_timeout, conn);
750
751   return SILC_FSM_FINISH;
752 }
753
754 /****************************** Connect rekey *******************************/
755
756 /* Connection rekey timer callback */
757
758 SILC_TASK_CALLBACK(silc_client_rekey_timer)
759 {
760   SilcClientConnection conn = context;
761
762   /* Signal to start rekey */
763   if (!silc_fsm_is_started(&conn->internal->event_thread)) {
764     conn->internal->rekey_responder = FALSE;
765     conn->internal->rekeying = TRUE;
766     SILC_FSM_EVENT_SIGNAL(&conn->internal->wait_event);
767   }
768
769   /* Reinstall rekey timer */
770   silc_schedule_task_add_timeout(conn->internal->schedule,
771                                  silc_client_rekey_timer, conn,
772                                  conn->internal->params.rekey_secs, 0);
773 }
774
775 /* Performs rekey */
776
777 SILC_FSM_STATE(silc_client_st_rekey)
778 {
779   SilcClientConnection conn = fsm_context;
780   SilcClient client = conn->client;
781
782   SILC_LOG_DEBUG(("Rekey conn %p", conn));
783
784   if (conn->internal->disconnected)
785     return SILC_FSM_FINISH;
786
787   /* Allocate SKE */
788   conn->internal->ske =
789     silc_ske_alloc(client->rng, conn->internal->schedule, NULL,
790                    conn->public_key, NULL, fsm);
791   if (!conn->internal->ske)
792     return SILC_FSM_FINISH;
793
794   /* Set SKE callbacks */
795   silc_ske_set_callbacks(conn->internal->ske, NULL,
796                          silc_client_rekey_completion, fsm);
797
798   /** Perform rekey */
799   if (!conn->internal->rekey_responder)
800     SILC_FSM_CALL(conn->internal->op = silc_ske_rekey_initiator(
801                                                     conn->internal->ske,
802                                                     conn->stream,
803                                                     conn->internal->rekey));
804   else
805     SILC_FSM_CALL(conn->internal->op = silc_ske_rekey_responder(
806                                                     conn->internal->ske,
807                                                     conn->stream,
808                                                     conn->internal->rekey,
809                                                     NULL));
810 }