Fixed completion sending.
[silc.git] / lib / silcske / silcconnauth.c
1 /*
2
3   silcconnauth.c
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 2005 - 2007 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 "silcconnauth.h"
22
23 /************************** Types and definitions ***************************/
24
25 static SilcBool silc_connauth_packet_receive(SilcPacketEngine engine,
26                                              SilcPacketStream stream,
27                                              SilcPacket packet,
28                                              void *callback_context,
29                                              void *app_context);
30
31 /* Connection authentication context */
32 struct SilcConnAuthStruct {
33   SilcSKE ske;
34   SilcFSM fsm;
35   SilcAsyncOperationStruct op;
36   SilcConnectionType conn_type;
37   SilcAuthMethod auth_method;
38   void *auth_data;
39   SilcUInt32 auth_data_len;
40   SilcConnAuthCompletion completion;
41   SilcConnAuthGetAuthData get_auth_data;
42   void *context;
43   SilcDList public_keys;
44   SilcSKRStatus skr_status;
45   SilcUInt32 timeout_secs;
46   SilcPacket packet;
47   unsigned int aborted   : 1;
48   unsigned int success   : 1;
49 };
50
51 /* Packet stream callbacks */
52 static SilcPacketCallbacks silc_connauth_stream_cbs =
53 {
54   silc_connauth_packet_receive, NULL, NULL
55 };
56
57
58 /************************ Static utility functions **************************/
59
60 /* Packet callback */
61
62 static SilcBool silc_connauth_packet_receive(SilcPacketEngine engine,
63                                              SilcPacketStream stream,
64                                              SilcPacket packet,
65                                              void *callback_context,
66                                              void *app_context)
67 {
68   SilcConnAuth connauth = callback_context;
69   connauth->packet = packet;
70   silc_fsm_continue(connauth->fsm);
71   return TRUE;
72 }
73
74 /* Async operation abortion callback */
75
76 static void silc_connauth_abort(SilcAsyncOperation op, void *context)
77 {
78   SilcConnAuth connauth = context;
79   connauth->aborted = TRUE;
80 }
81
82 /* Generates signature for public key based authentication */
83
84 static SilcBool silc_connauth_get_signature(SilcConnAuth connauth,
85                                             unsigned char **auth_data,
86                                             SilcUInt32 *auth_data_len)
87 {
88   int len;
89   SilcSKE ske;
90   SilcPrivateKey private_key;
91   SilcBuffer auth;
92
93   SILC_LOG_DEBUG(("Compute signature"));
94
95   ske = connauth->ske;
96   private_key = connauth->auth_data;
97
98   /* Make the authentication data. Protocol says it is HASH plus
99      KE Start Payload. */
100   len = ske->hash_len + silc_buffer_len(ske->start_payload_copy);
101   auth = silc_buffer_alloc_size(len);
102   if (!auth)
103     return FALSE;
104   silc_buffer_format(auth,
105                      SILC_STR_UI_XNSTRING(ske->hash, ske->hash_len),
106                      SILC_STR_UI_XNSTRING(
107                                ske->start_payload_copy->data,
108                                silc_buffer_len(ske->start_payload_copy)),
109                      SILC_STR_END);
110
111   len = ((silc_pkcs_private_key_get_len(private_key) + 7) / 8) + 1;
112   *auth_data = silc_calloc(len, sizeof(**auth_data));
113   if (*auth_data == NULL) {
114     silc_buffer_free(auth);
115     return FALSE;
116   }
117
118   /* Compute signature */
119   if (!silc_pkcs_sign(private_key, auth->data, silc_buffer_len(auth),
120                       *auth_data, len, auth_data_len, TRUE, ske->prop->hash)) {
121     silc_free(*auth_data);
122     silc_buffer_free(auth);
123     return FALSE;
124   }
125
126   silc_buffer_free(auth);
127   return TRUE;
128 }
129
130 /* Verifies digital signature */
131
132 static SilcBool silc_connauth_verify_signature(SilcConnAuth connauth,
133                                                SilcPublicKey pub_key,
134                                                unsigned char *sign,
135                                                SilcUInt32 sign_len)
136 {
137   int len;
138   SilcBuffer auth;
139   SilcSKE ske = connauth->ske;
140
141   if (!pub_key || !sign)
142     return FALSE;
143
144   /* Make the authentication data. Protocol says it is HASH plus
145      KE Start Payload. */
146   len = ske->hash_len + silc_buffer_len(ske->start_payload_copy);
147   auth = silc_buffer_alloc_size(len);
148   if (!auth)
149     return FALSE;
150   silc_buffer_format(auth,
151                      SILC_STR_UI_XNSTRING(ske->hash, ske->hash_len),
152                      SILC_STR_UI_XNSTRING(
153                                   ske->start_payload_copy->data,
154                                   silc_buffer_len(ske->start_payload_copy)),
155                      SILC_STR_END);
156
157   /* Verify signature */
158   if (!silc_pkcs_verify(pub_key, sign, sign_len, auth->data,
159                         silc_buffer_len(auth), ske->prop->hash)) {
160     silc_buffer_free(auth);
161     return FALSE;
162   }
163
164   silc_buffer_free(auth);
165
166   return TRUE;
167 }
168
169 /* Timeout */
170
171 SILC_TASK_CALLBACK(silc_connauth_timeout)
172 {
173   SilcConnAuth connauth = context;
174   SILC_LOG_DEBUG(("Protocol timeout"));
175   connauth->aborted = TRUE;
176   silc_fsm_continue_sync(connauth->fsm);
177 }
178
179 /* SKR callback */
180
181 static void silc_connauth_skr_callback(SilcSKR skr, SilcSKRFind find,
182                                        SilcSKRStatus status,
183                                        SilcDList results, void *context)
184 {
185   SilcConnAuth connauth = context;
186
187   silc_skr_find_free(find);
188
189   connauth->public_keys = results;
190   connauth->skr_status = status;
191
192   SILC_FSM_CALL_CONTINUE(connauth->fsm);
193 }
194
195 /* FSM destructor */
196
197 static void silc_connauth_fsm_destructor(SilcFSM fsm, void *fsm_context,
198                                          void *destructor_context)
199 {
200   silc_fsm_free(fsm);
201 }
202
203
204 /******************************* Protocol API *******************************/
205
206 /* Allocate connection authentication context */
207
208 SilcConnAuth silc_connauth_alloc(SilcSchedule schedule,
209                                  SilcSKE ske,
210                                  SilcUInt32 timeout_secs)
211 {
212   SilcConnAuth connauth;
213
214   if (!schedule || !ske)
215     return NULL;
216
217   connauth = silc_calloc(1, sizeof(*connauth));
218   if (!connauth)
219     return NULL;
220
221   connauth->fsm = silc_fsm_alloc(connauth, silc_connauth_fsm_destructor,
222                                  NULL, schedule);
223   if (!connauth->fsm) {
224     silc_connauth_free(connauth);
225     return NULL;
226   }
227
228   connauth->timeout_secs = timeout_secs;
229   connauth->ske = ske;
230   ske->refcnt++;
231
232   return connauth;
233 }
234
235 /* Free connection authentication context */
236
237 void silc_connauth_free(SilcConnAuth connauth)
238 {
239   if (connauth->public_keys)
240     silc_dlist_uninit(connauth->public_keys);
241
242   /* Free reference */
243   silc_ske_free(connauth->ske);
244
245   silc_free(connauth);
246 }
247
248 /* Return associated SKE context */
249
250 SilcSKE silc_connauth_get_ske(SilcConnAuth connauth)
251 {
252   return connauth->ske;
253 }
254
255
256 /******************************** Initiator *********************************/
257
258 SILC_FSM_STATE(silc_connauth_st_initiator_start);
259 SILC_FSM_STATE(silc_connauth_st_initiator_result);
260 SILC_FSM_STATE(silc_connauth_st_initiator_failure);
261
262 SILC_FSM_STATE(silc_connauth_st_initiator_start)
263 {
264   SilcConnAuth connauth = fsm_context;
265   SilcBuffer packet;
266   int payload_len = 0;
267   unsigned char *auth_data = NULL;
268   SilcUInt32 auth_data_len = 0;
269   SilcPacketFlags flags = 0;
270
271   SILC_LOG_DEBUG(("Start"));
272
273   if (connauth->aborted) {
274     /** Aborted */
275     silc_fsm_next(fsm, silc_connauth_st_initiator_failure);
276     return SILC_FSM_CONTINUE;
277   }
278
279   /* Start timeout */
280   if (connauth->timeout_secs)
281     silc_schedule_task_add_timeout(silc_fsm_get_schedule(fsm),
282                                    silc_connauth_timeout, connauth,
283                                    connauth->timeout_secs, 0);
284
285   switch (connauth->auth_method) {
286   case SILC_AUTH_NONE:
287     /* No authentication required */
288     break;
289
290   case SILC_AUTH_PASSWORD:
291     auth_data = silc_memdup(connauth->auth_data, connauth->auth_data_len);
292     if (!auth_data) {
293       /** Out of memory */
294       silc_fsm_next(fsm, silc_connauth_st_initiator_failure);
295       return SILC_FSM_CONTINUE;
296     }
297     auth_data_len = connauth->auth_data_len;
298     flags = SILC_PACKET_FLAG_LONG_PAD;
299     break;
300
301   case SILC_AUTH_PUBLIC_KEY:
302     if (!silc_connauth_get_signature(connauth, &auth_data, &auth_data_len)) {
303       /** Error computing signature */
304       silc_fsm_next(fsm, silc_connauth_st_initiator_failure);
305       return SILC_FSM_CONTINUE;
306     }
307     break;
308   }
309
310   payload_len = 4 + auth_data_len;
311   packet = silc_buffer_alloc_size(payload_len);
312   if (!packet) {
313     /** Out of memory */
314     silc_fsm_next(fsm, silc_connauth_st_initiator_failure);
315     return SILC_FSM_CONTINUE;
316   }
317
318   silc_buffer_format(packet,
319                      SILC_STR_UI_SHORT(payload_len),
320                      SILC_STR_UI_SHORT(connauth->conn_type),
321                      SILC_STR_UI_XNSTRING(auth_data, auth_data_len),
322                      SILC_STR_END);
323
324   /* Send the packet */
325   if (!silc_packet_send(connauth->ske->stream, SILC_PACKET_CONNECTION_AUTH,
326                         flags, packet->data, silc_buffer_len(packet))) {
327     /** Error sending packet */
328     silc_fsm_next(fsm, silc_connauth_st_initiator_failure);
329     return SILC_FSM_CONTINUE;
330   }
331
332   if (auth_data) {
333     memset(auth_data, 0, auth_data_len);
334     silc_free(auth_data);
335   }
336   silc_buffer_free(packet);
337
338   /** Wait for responder */
339   silc_fsm_next(fsm, silc_connauth_st_initiator_result);
340   return SILC_FSM_WAIT;
341 }
342
343 SILC_FSM_STATE(silc_connauth_st_initiator_result)
344 {
345   SilcConnAuth connauth = fsm_context;
346
347   SILC_LOG_DEBUG(("Start"));
348
349   if (connauth->aborted) {
350     /** Aborted */
351     silc_fsm_next(fsm, silc_connauth_st_initiator_failure);
352     return SILC_FSM_CONTINUE;
353   }
354
355   /* Check the status of authentication */
356   if (connauth->packet->type == SILC_PACKET_SUCCESS) {
357     SILC_LOG_DEBUG(("Authentication successful"));
358     connauth->success = TRUE;
359   } else {
360     SILC_LOG_DEBUG(("Authentication failed"));
361     connauth->success = FALSE;
362   }
363   silc_packet_free(connauth->packet);
364
365   silc_packet_stream_unlink(connauth->ske->stream,
366                             &silc_connauth_stream_cbs, connauth);
367   silc_schedule_task_del_by_context(silc_fsm_get_schedule(fsm), connauth);
368
369   /* Call completion callback */
370   connauth->completion(connauth, connauth->success, connauth->context);
371
372   return SILC_FSM_FINISH;
373 }
374
375 SILC_FSM_STATE(silc_connauth_st_initiator_failure)
376 {
377   SilcConnAuth connauth = fsm_context;
378   unsigned char error[4];
379
380   SILC_LOG_DEBUG(("Start"));
381
382   if (!connauth->aborted) {
383     /* Send FAILURE packet */
384     SILC_PUT32_MSB(SILC_AUTH_FAILED, error);
385     silc_packet_send(connauth->ske->stream, SILC_PACKET_FAILURE, 0, error, 4);
386
387     silc_packet_stream_unlink(connauth->ske->stream,
388                               &silc_connauth_stream_cbs, connauth);
389     silc_schedule_task_del_by_context(silc_fsm_get_schedule(fsm), connauth);
390
391     /* Call completion callback */
392     connauth->completion(connauth, FALSE, connauth->context);
393     return SILC_FSM_FINISH;
394   }
395
396   silc_packet_stream_unlink(connauth->ske->stream,
397                             &silc_connauth_stream_cbs, connauth);
398   silc_schedule_task_del_by_context(silc_fsm_get_schedule(fsm), connauth);
399
400   return SILC_FSM_FINISH;
401 }
402
403 SilcAsyncOperation
404 silc_connauth_initiator(SilcConnAuth connauth,
405                         SilcConnectionType conn_type,
406                         SilcAuthMethod auth_method, void *auth_data,
407                         SilcUInt32 auth_data_len,
408                         SilcConnAuthCompletion completion,
409                         void *context)
410 {
411   SILC_LOG_DEBUG(("Connection authentication as initiator"));
412
413   if (auth_method == SILC_AUTH_PASSWORD && !auth_data) {
414     completion(connauth, FALSE, context);
415     return NULL;
416   }
417
418   if (auth_method == SILC_AUTH_PUBLIC_KEY && !auth_data) {
419     completion(connauth, FALSE, context);
420     return NULL;
421   }
422
423   connauth->conn_type = conn_type;
424   connauth->auth_method = auth_method;
425   connauth->auth_data = auth_data;
426   connauth->auth_data_len = auth_data_len;
427   connauth->completion = completion;
428   connauth->context = context;
429
430   /* Link to packet stream to get packets */
431   silc_packet_stream_link(connauth->ske->stream,
432                           &silc_connauth_stream_cbs, connauth, 1000000,
433                           SILC_PACKET_SUCCESS,
434                           SILC_PACKET_FAILURE, -1);
435
436   /* Start the protocol */
437   silc_async_init(&connauth->op, silc_connauth_abort, NULL, connauth);
438   silc_fsm_start(connauth->fsm, silc_connauth_st_initiator_start);
439
440   return &connauth->op;
441 }
442
443
444 /******************************** Responder *********************************/
445
446 SILC_FSM_STATE(silc_connauth_st_responder_start);
447 SILC_FSM_STATE(silc_connauth_st_responder_authenticate);
448 SILC_FSM_STATE(silc_connauth_st_responder_authenticate_pk);
449 SILC_FSM_STATE(silc_connauth_st_responder_success);
450 SILC_FSM_STATE(silc_connauth_st_responder_failure);
451
452 SILC_FSM_STATE(silc_connauth_st_responder_start)
453 {
454   SilcConnAuth connauth = fsm_context;
455
456   SILC_LOG_DEBUG(("Start"));
457
458   if (connauth->aborted) {
459     /** Aborted */
460     silc_fsm_next(fsm, silc_connauth_st_responder_failure);
461     return SILC_FSM_CONTINUE;
462   }
463
464   /* Start timeout */
465   if (connauth->timeout_secs)
466     silc_schedule_task_add_timeout(silc_fsm_get_schedule(fsm),
467                                    silc_connauth_timeout, connauth,
468                                    connauth->timeout_secs, 0);
469
470   /** Wait for initiator */
471   silc_fsm_next(fsm, silc_connauth_st_responder_authenticate);
472   return SILC_FSM_WAIT;
473 }
474
475 SILC_FSM_STATE(silc_connauth_st_responder_authenticate)
476 {
477   SilcConnAuth connauth = fsm_context;
478   SilcUInt16 payload_len;
479   SilcUInt16 conn_type;
480   unsigned char *auth_data = NULL, *passphrase = NULL;
481   SilcUInt32 passphrase_len;
482   SilcSKR repository = NULL;
483   int ret;
484
485   SILC_LOG_DEBUG(("Start"));
486
487   if (connauth->aborted) {
488     /** Aborted */
489     silc_packet_free(connauth->packet);
490     silc_fsm_next(fsm, silc_connauth_st_responder_failure);
491     return SILC_FSM_CONTINUE;
492   }
493
494   if (connauth->packet->type != SILC_PACKET_CONNECTION_AUTH) {
495     /** Protocol failure */
496     silc_packet_free(connauth->packet);
497     silc_fsm_next(fsm, silc_connauth_st_responder_failure);
498     return SILC_FSM_CONTINUE;
499   }
500
501   /* Parse the received authentication data packet. The received
502      payload is Connection Auth Payload. */
503   ret = silc_buffer_unformat(&connauth->packet->buffer,
504                              SILC_STR_UI_SHORT(&payload_len),
505                              SILC_STR_UI_SHORT(&conn_type),
506                              SILC_STR_END);
507   if (ret == -1) {
508     /** Bad payload */
509     SILC_LOG_ERROR(("Bad payload in authentication packet"));
510     silc_packet_free(connauth->packet);
511     silc_fsm_next(fsm, silc_connauth_st_responder_failure);
512     return SILC_FSM_CONTINUE;
513   }
514
515   if (payload_len != silc_buffer_len(&connauth->packet->buffer)) {
516     /** Bad payload length */
517     SILC_LOG_ERROR(("Bad payload length in authentication packet"));
518     silc_packet_free(connauth->packet);
519     silc_fsm_next(fsm, silc_connauth_st_responder_failure);
520     return SILC_FSM_CONTINUE;
521   }
522
523   payload_len -= 4;
524
525   if (conn_type < SILC_CONN_CLIENT || conn_type > SILC_CONN_ROUTER) {
526     /** Bad connection type */
527     SILC_LOG_ERROR(("Bad connection type (%d) in authentication packet",
528                     conn_type));
529     silc_packet_free(connauth->packet);
530     silc_fsm_next(fsm, silc_connauth_st_responder_failure);
531     return SILC_FSM_CONTINUE;
532   }
533
534   if (payload_len > 0) {
535     /* Get authentication data */
536     ret = silc_buffer_unformat(&connauth->packet->buffer,
537                                SILC_STR_OFFSET(4),
538                                SILC_STR_UI_XNSTRING(&auth_data,
539                                                     payload_len),
540                                SILC_STR_END);
541     if (ret == -1) {
542       /** Bad payload */
543       SILC_LOG_DEBUG(("Bad payload in authentication payload"));
544       silc_packet_free(connauth->packet);
545       silc_fsm_next(fsm, silc_connauth_st_responder_failure);
546       return SILC_FSM_CONTINUE;
547     }
548   }
549   silc_packet_free(connauth->packet);
550
551   SILC_LOG_DEBUG(("Remote connection type %d", conn_type));
552
553   /* Get authentication data */
554   if (!connauth->get_auth_data(connauth, conn_type, &passphrase,
555                                &passphrase_len, &repository,
556                                connauth->context)) {
557     /** Connection not configured */
558     SILC_LOG_ERROR(("Remote connection not configured"));
559     silc_fsm_next(fsm, silc_connauth_st_responder_failure);
560     return SILC_FSM_CONTINUE;
561   }
562
563   /* Verify */
564
565   /* Passphrase authentication */
566   if (passphrase && passphrase_len) {
567     SILC_LOG_DEBUG(("Passphrase authentication"));
568     if (!memcmp(auth_data, passphrase, passphrase_len)) {
569       /** Authentication failed */
570       silc_fsm_next(fsm, silc_connauth_st_responder_failure);
571       return SILC_FSM_CONTINUE;
572     }
573   } else if (repository) {
574     /* Digital signature */
575     SilcSKRFind find;
576
577     SILC_LOG_DEBUG(("Digital signature authentication"));
578
579     connauth->auth_data = silc_memdup(auth_data, payload_len);
580     connauth->auth_data_len = payload_len;
581
582     /* Allocate search constraints for finding the key */
583     find = silc_skr_find_alloc();
584
585     if (!find || !connauth->auth_data) {
586       /** Out of memory */
587       silc_fsm_next(fsm, silc_connauth_st_responder_failure);
588       return SILC_FSM_CONTINUE;
589     }
590
591     silc_skr_find_set_pkcs_type(find, connauth->ske->pk_type);
592     silc_skr_find_set_public_key(find, connauth->ske->public_key);
593     silc_skr_find_set_usage(find, (SILC_SKR_USAGE_AUTH |
594                                    SILC_SKR_USAGE_KEY_AGREEMENT));
595
596     /** Find public key */
597     silc_fsm_next(fsm, silc_connauth_st_responder_authenticate_pk);
598     SILC_FSM_CALL(silc_skr_find(repository, silc_fsm_get_schedule(fsm),
599                                 find, silc_connauth_skr_callback,
600                                 connauth));
601     /* NOT REACHED */
602   }
603
604   /* Passphrase auth Ok, or no authentication required */
605
606   /** Authentication successful */
607   silc_fsm_next(fsm, silc_connauth_st_responder_success);
608   return SILC_FSM_CONTINUE;
609 }
610
611 SILC_FSM_STATE(silc_connauth_st_responder_authenticate_pk)
612 {
613   SilcConnAuth connauth = fsm_context;
614   SilcSKRKey key;
615
616   if (connauth->aborted) {
617     /** Aborted */
618     silc_fsm_next(fsm, silc_connauth_st_responder_failure);
619     return SILC_FSM_CONTINUE;
620   }
621
622   if (connauth->skr_status != SILC_SKR_OK) {
623     /** Public key not found */
624     SILC_LOG_DEBUG(("Public key not found, error %d", connauth->skr_status));
625     silc_fsm_next(fsm, silc_connauth_st_responder_failure);
626     return SILC_FSM_CONTINUE;
627   }
628
629   SILC_LOG_DEBUG(("Found %d public keys",
630                   silc_dlist_count(connauth->public_keys)));
631
632   /* Verify signature */
633   key = silc_dlist_get(connauth->public_keys);
634   if (!silc_connauth_verify_signature(connauth, key->key,
635                                       connauth->auth_data,
636                                       connauth->auth_data_len)) {
637     /** Invalid signature */
638     SILC_LOG_DEBUG(("Invalid signature"));
639     silc_free(connauth->auth_data);
640     silc_fsm_next(fsm, silc_connauth_st_responder_failure);
641     return SILC_FSM_CONTINUE;
642   }
643
644   silc_free(connauth->auth_data);
645
646   /** Authentication successful */
647   silc_fsm_next(fsm, silc_connauth_st_responder_success);
648   return SILC_FSM_CONTINUE;
649 }
650
651 SILC_FSM_STATE(silc_connauth_st_responder_success)
652 {
653   SilcConnAuth connauth = fsm_context;
654   unsigned char tmp[4];
655
656   SILC_LOG_DEBUG(("Authentication successful"));
657
658   /* Send FAILURE packet */
659   SILC_PUT32_MSB(SILC_AUTH_OK, tmp);
660   silc_packet_send(connauth->ske->stream, SILC_PACKET_SUCCESS, 0, tmp, 4);
661
662   silc_packet_stream_unlink(connauth->ske->stream,
663                             &silc_connauth_stream_cbs, connauth);
664   silc_schedule_task_del_by_context(silc_fsm_get_schedule(fsm), connauth);
665
666   /* Call completion callback */
667   connauth->completion(connauth, TRUE, connauth->context);
668
669   return SILC_FSM_FINISH;
670 }
671
672 SILC_FSM_STATE(silc_connauth_st_responder_failure)
673 {
674   SilcConnAuth connauth = fsm_context;
675   unsigned char error[4];
676
677   SILC_LOG_ERROR(("Authentication failed"));
678
679   if (!connauth->aborted) {
680     /* Send FAILURE packet */
681     SILC_PUT32_MSB(SILC_AUTH_FAILED, error);
682     silc_packet_send(connauth->ske->stream, SILC_PACKET_FAILURE, 0, error, 4);
683
684     silc_packet_stream_unlink(connauth->ske->stream,
685                               &silc_connauth_stream_cbs, connauth);
686     silc_schedule_task_del_by_context(silc_fsm_get_schedule(fsm), connauth);
687
688     /* Call completion callback */
689     connauth->completion(connauth, FALSE, connauth->context);
690
691     return SILC_FSM_FINISH;
692   }
693
694   silc_packet_stream_unlink(connauth->ske->stream,
695                             &silc_connauth_stream_cbs, connauth);
696   silc_schedule_task_del_by_context(silc_fsm_get_schedule(fsm), connauth);
697
698   return SILC_FSM_FINISH;
699 }
700
701 SilcAsyncOperation
702 silc_connauth_responder(SilcConnAuth connauth,
703                         SilcConnAuthGetAuthData get_auth_data,
704                         SilcConnAuthCompletion completion,
705                         void *context)
706 {
707   SILC_LOG_DEBUG(("Connection authentication as responder"));
708
709   connauth->get_auth_data = get_auth_data;
710   connauth->completion = completion;
711   connauth->context = context;
712
713   /* Link to packet stream to get packets */
714   silc_packet_stream_link(connauth->ske->stream,
715                           &silc_connauth_stream_cbs, connauth, 1000000,
716                           SILC_PACKET_CONNECTION_AUTH,
717                           SILC_PACKET_FAILURE, -1);
718
719   /* Start the protocol */
720   silc_async_init(&connauth->op, silc_connauth_abort, NULL, connauth);
721   silc_fsm_start(connauth->fsm, silc_connauth_st_responder_start);
722
723   return &connauth->op;
724 }