summaryrefslogtreecommitdiff
path: root/src/stls/stls_handshake.c
blob: 989a1670ccb454fbcf28e39f951ef2e689d60bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ISC license. */

#include <signal.h>
#include <unistd.h>

#include <tls.h>

#include <skalibs/alarm.h>
#include <skalibs/strerr2.h>

#include "stls-internal.h"

#define diectx(e, ctx, s) strerr_diefu3x(e, (s), ": ", tls_error(ctx))

static void alrm_handler (int sig)
{
  strerr_dief1x(98, "handshake timed out") ;
}

void stls_handshake (struct tls *ctx, tain_t const *tto)
{
  struct sigaction saold ;
  struct sigaction sanew = { .sa_handler = &alrm_handler, .sa_flags = SA_RESTART, .sa_sigaction = 0 } ;
  sigfillset(&sanew.sa_mask) ;
  if (sigaction(SIGALRM, &sanew, &saold) < 0) strerr_diefu1sys(111, "sigaction") ;
  if (!alarm_timeout(tto)) strerr_diefu1sys(111, "set an alarm") ;
  if (tls_handshake(ctx) < 0) diectx(97, ctx, "tls_handshake") ;
  alarm_disable() ;
  sigaction(SIGALRM, &saold, 0) ;
}