summaryrefslogtreecommitdiff
path: root/vchat-connection.c
blob: c0648c8ac2c58141cc368ff955de448543758d03 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/*
 * vchat-client - alpha version
 * vchat-connection.c - handling of server connection and tls library dispatch
 *
 * Copyright (C) 2022 Dirk Engling <erdgeist@erdgeist.org>
 *
 * This program is free software. It can be redistributed and/or modified,
 * provided that this copyright notice is kept intact. This program is
 * distributed in the hope that it will be useful, but without any warranty;
 * without even the implied warranty of merchantability or fitness for a
 * particular purpose. In no event shall the copyright holder be liable for
 * any direct, indirect, incidental or special damages arising in any way out
 * of the use of this software. 
 *
 */

#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <netdb.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>

/* For tilde_expand */
#include <readline/readline.h>

#include "vchat.h"
#include "vchat-connection.h"
#include "vchat-tls.h"

static int serverfd = -1;
unsigned int want_tcp_keepalive = 0;

/* TODO: NEEDS TO GO. status-variable from vchat-client.c
 * eventloop is done as long as this is true */
extern int status;

/* Generic tcp connector, blocking */
static int connect_tcp_socket( const char *server, const char *port ) {
  struct addrinfo hints, *res, *res0;
  int s, error;

  memset(&hints, 0, sizeof(hints));
  hints.ai_family = PF_UNSPEC;
  hints.ai_socktype = SOCK_STREAM;
  error = getaddrinfo( server, port, &hints, &res0 );
  if (error) return -1;
  s = -1;
  for (res = res0; res; res = res->ai_next) {
    s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
    if (s < 0) continue;
    if (connect(s, res->ai_addr, res->ai_addrlen) < 0) {
      close(s);
      s = -1;
      continue;
    }
    break;  /* okay we got one */
  }
  freeaddrinfo(res0);

  if (want_tcp_keepalive) {
    int one=1;
    setsockopt(s,SOL_SOCKET,SO_KEEPALIVE,&one,sizeof(one));
  }
  return s;
}

/* Return a tilde expanded path in a malloced buffer or NULL */
static char *get_tilde_expanded(confopt opt) {
  char *str = getstroption (opt);
  if (!str)
    return str;
  if (str[0] == '~')
    return tilde_expand (str);
  return strdup(str);
}

/* connects to server */
int
vc_connect (const char *server, const char *port)
{
  /* vchat connection x509 store */
  vc_x509store_t vc_store;

  /* pointer to tilde-expanded certificate/keyfile-names */
  char *certfile, *cafile;

  /* Connect to the server */
  serverfd = connect_tcp_socket( server, port );
  if( serverfd < 0 ) {
    /* inform user */
    snprintf (tmpstr, TMPSTRSIZE, getformatstr(FS_CANTCONNECT), server, port );
    writechan (tmpstr);
    return -1;
  }

  if (!getintoption(CF_USESSL))
    return 0;

  /* If SSL is requested, get our ssl-BIO running */
  vc_init_x509store(&vc_store);

  /* get name of certificate file */
  certfile = get_tilde_expanded (CF_CERTFILE);
  /* do we have a certificate file? */
  if (certfile) {
    /* get name of key file */
    char *keyfile = get_tilde_expanded (CF_KEYFILE);

    vc_x509store_setcertfile(&vc_store, certfile);
    vc_x509store_set_pkeycb(&vc_store, (vc_askpass_cb_t)passprompt);

    /* if we don't have a key file, the key may be in the cert file */
    vc_x509store_setkeyfile(&vc_store, keyfile ? keyfile : certfile);

    free(keyfile);
    free(certfile);
  }

  /* get name of ca file */
  cafile = get_tilde_expanded (CF_CAFILE);
  if (cafile && !access(cafile, F_OK))
    vc_x509store_setcafile(&vc_store, cafile);
  free(cafile);

  /* upgrade our plain BIO to ssl */
  int result = vc_tls_connect( serverfd, &vc_store );
  vc_cleanup_x509store(&vc_store);

  if (result) {
    close(serverfd);
    serverfd = -1;
    errno = EIO;
    snprintf (tmpstr, TMPSTRSIZE, getformatstr(FS_CANTCONNECT), server, port );
    writechan (tmpstr);
    return -1;
  }

  /* inform user */
  snprintf (tmpstr, TMPSTRSIZE, getformatstr(FS_CONNECTED), server, port);
  writechan (tmpstr);

#ifdef DEBUG
  dumpfile = fopen( "dumpfile", "a");
#endif

  /* if we didn't fail until now, we've got a connection. */
  return 0;
}

/* Poll for activity on the socket or stdin */
int vc_poll (int timeout_seconds) {
  fd_set readfds;
  FD_ZERO (&readfds);
  FD_SET (0, &readfds);
  if (serverfd != -1)
    FD_SET (serverfd, &readfds);
  struct timeval tv = { timeout_seconds, 0};
  int result = select (serverfd + 2, &readfds, NULL, NULL, &tv);
  if (result <= 0)
    return result;
  result = FD_ISSET (0, &readfds) ? 1 : 0;
  if (serverfd != -1)
    result += FD_ISSET (serverfd, &readfds) ? 2 : 0;
  return result;
}

/* disconnect from server */
void
vc_disconnect () {
  if (serverfd > 0) {
    close(serverfd);
    serverfd = -1;
  }
  vc_tls_cleanup();
  loggedin = 0;
}

#define STAGINGSIZE 16384
static char _staging[STAGINGSIZE];
void
vc_sendmessage (const char *msg)
{
  size_t sent, len = snprintf(_staging, sizeof(_staging), "%s\r\n", msg);
#ifdef DEBUG
  /* debugging? log network output! */
  fprintf (dumpfile, ">| (%zd) %s\n", len - 2, msg);
#endif

  if (getintoption(CF_USESSL))
    sent = vc_tls_sendmessage (_staging, len);
  else
    sent = write (serverfd, _staging, len);
  if (sent != len)
    writecf (FS_ERR,"Message sending fuzzy.");
}

/* offset in buffer (for linebreaks at packet borders) */
#define BUFSIZE 4096
static char _buf[BUFSIZE];
static size_t _buf_fill;

/* get data from servers connection */
void
vc_receive (void)
{
  char *endmsg;
  size_t freebytes = BUFSIZE - _buf_fill;
  ssize_t bytes;

  if (!getintoption(CF_USESSL))
    bytes = read(serverfd, _buf + _buf_fill, freebytes);
  else
    bytes = vc_tls_receivemessage(_buf + _buf_fill, freebytes);

  /* Our tls functions may require retries with handshakes etc, this is signalled by -2 */
  if (bytes == -2)
    return;

  /* Error on the socket read? raise error message, bail out */
  if (bytes == -1) {
      snprintf (tmpstr, TMPSTRSIZE, "Receive fails, %s.", strerror(errno));
      snprintf (errstr, ERRSTRSIZE, "Receive fails, %s.\n", strerror(errno));
      writecf (FS_ERR,tmpstr);
      status = 0;
      return;
  }

  /* end of file from server? */
  if (bytes == 0) {
      /* inform user, bail out */
      writecf (FS_SERV, "* EOF from server.");
      snprintf (errstr, ERRSTRSIZE, "* EOF from server.\n");
      status = 0;
      return;
  }

  _buf_fill += bytes;

  /* as long as there are lines .. */
  while ((endmsg = memchr(_buf, '\n', _buf_fill)) != NULL) {
    if (endmsg > _buf) {
      /* Zero terminate message, optionally chomp CR */
      endmsg[0] = 0;
      if (endmsg[-1] == '\r')
        endmsg[-1] = 0;
      /* If terminating and chomping left us with a message, give it to line handler */
      if (_buf[0]) {
#ifdef DEBUG
        /* debugging? log network input! */
        fprintf (stderr, "<| %s\n", _buf);
#endif
        protocol_parsemsg (_buf);
      }
    }
    _buf_fill -= 1 + endmsg - _buf;
    memmove(_buf, endmsg + 1, _buf_fill);
  }
}