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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
|
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <strings.h>
#include <errno.h>
#include <netinet/in.h>
#include <netdb.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/select.h>
#include "imapfilter.h"
#include "session.h"
#ifndef NO_SSLTLS
#include <openssl/ssl.h>
#include <openssl/err.h>
#endif
/*
* Connect to mail server.
*/
int
open_connection(session *ssn, const char *server, const char *port,
const char *protocol)
{
struct addrinfo hints, *res, *ressave;
int n, sockfd;
#ifdef NO_SSLTLS
if (protocol) {
error("SSL not supported by this build\n");
return -1;
}
#endif
memset(&hints, 0, sizeof(struct addrinfo));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
n = getaddrinfo(server, port, &hints, &res);
if (n < 0) {
error("gettaddrinfo; %s\n", gai_strerror(n));
return -1;
}
ressave = res;
sockfd = -1;
while (res) {
sockfd = socket(res->ai_family, res->ai_socktype,
res->ai_protocol);
if (sockfd >= 0) {
if (connect(sockfd, res->ai_addr, res->ai_addrlen) == 0)
break;
sockfd = -1;
}
res = res->ai_next;
}
if (ressave)
freeaddrinfo(ressave);
if (sockfd == -1) {
error("error while initiating connection to %s at port %s\n",
server, port);
return -1;
}
ssn->socket = sockfd;
#ifndef NO_SSLTLS
if (protocol) {
if (open_secure_connection(ssn, server, port, protocol) == -1) {
close_connection(ssn);
return -1;
}
}
#endif
return ssn->socket;
}
#ifndef NO_SSLTLS
/*
* Initialize SSL/TLS connection.
*/
int
open_secure_connection(session *ssn, const char *server, const char *port,
const char *protocol)
{
int e;
SSL_CTX *ctx;
SSL_METHOD *method;
method = NULL;
if (!strncasecmp(protocol, "tls1", 4))
method = TLSv1_client_method();
else if (!strncasecmp(protocol, "ssl3", 4) ||
!strncasecmp(protocol, "ssl2", 4))
method = SSLv23_client_method();
if (!(ctx = SSL_CTX_new(method)))
goto fail;
if (!(ssn->ssl = SSL_new(ctx)))
goto fail;
SSL_set_fd(ssn->ssl, ssn->socket);
if ((e = SSL_connect(ssn->ssl)) <= 0) {
SSL_get_error(ssn->ssl, e);
error("initiating SSL connection to %s at port %s; %s\n",
server, port, ERR_error_string(ERR_get_error(), NULL));
goto fail;
}
if (get_cert(ssn) == -1)
goto fail;
SSL_CTX_free(ctx);
return 0;
fail:
ssn->ssl = NULL;
SSL_CTX_free(ctx);
return -1;
}
#endif /* NO_SSLTLS */
/*
* Disconnect from mail server.
*/
int
close_connection(session *ssn)
{
int r;
r = 0;
#ifndef NO_SSLTLS
close_secure_connection(ssn);
#endif
if (ssn->socket != -1) {
r = close(ssn->socket);
ssn->socket = -1;
if (r == -1)
error("closing socket; %s\n", strerror(errno));
}
return r;
}
#ifndef NO_SSLTLS
/*
* Shutdown SSL/TLS connection.
*/
int
close_secure_connection(session *ssn)
{
if (ssn->ssl) {
SSL_shutdown(ssn->ssl);
SSL_free(ssn->ssl);
ssn->ssl = NULL;
}
return 0;
}
#endif
/*
* Read data from socket.
*/
ssize_t
socket_read(session *ssn, char *buf, size_t len)
{
int s, t;
ssize_t r;
fd_set fds;
struct timeval tv;
struct timeval *tvp;
r = 0;
s = 1;
tvp = NULL;
memset(buf, 0, len + 1);
t = (int)(get_option_number("timeout"));
if (t > 0) {
tv.tv_sec = t;
tv.tv_usec = 0;
tvp = &tv;
}
FD_ZERO(&fds);
FD_SET(ssn->socket, &fds);
#ifndef NO_SSLTLS
if (ssn->ssl) {
if (SSL_pending(ssn->ssl) > 0 ||
((s = select(ssn->socket + 1, &fds, NULL, NULL, tvp)) > 0 &&
FD_ISSET(ssn->socket, &fds))) {
r = socket_secure_read(ssn, buf, len);
if (r <= 0)
goto fail;
}
} else
#endif
{
if ((s = select(ssn->socket + 1, &fds, NULL, NULL, tvp)) > 0 &&
FD_ISSET(ssn->socket, &fds)) {
r = read(ssn->socket, buf, len);
if (r == -1) {
error("reading data; %s\n", strerror(errno));
goto fail;
} else if (r == 0) {
goto fail;
}
}
}
if (s == -1) {
error("waiting to read from socket; %s\n", strerror(errno));
goto fail;
} else if (s == 0) {
error("timeout period expired while waiting to read data\n");
goto fail;
}
return r;
fail:
close_connection(ssn);
return -1;
}
#ifndef NO_SSLTLS
/*
* Read data from a TLS/SSL connection.
*/
ssize_t
socket_secure_read(session *ssn, char *buf, size_t len)
{
int r;
for (;;) {
r = (ssize_t) SSL_read(ssn->ssl, buf, len);
if (r > 0)
break;
switch (SSL_get_error(ssn->ssl, r)) {
case SSL_ERROR_WANT_READ:
case SSL_ERROR_WANT_WRITE:
continue;
case SSL_ERROR_ZERO_RETURN:
return 0;
case SSL_ERROR_SYSCALL:
case SSL_ERROR_SSL:
error("reading data; %s\n",
ERR_error_string(ERR_get_error(), NULL));
return -1;
default:
return -1;
}
}
return r;
}
#endif
/*
* Write data to socket.
*/
ssize_t
socket_write(session *ssn, const char *buf, size_t len)
{
int s, t;
ssize_t w, wt;
fd_set fds;
struct timeval tv;
struct timeval *tvp = NULL;
w = wt = 0;
s = 1;
t = (int)(get_option_number("timeout"));
if (t > 0)
tvp = &tv;
FD_ZERO(&fds);
FD_SET(ssn->socket, &fds);
while (len) {
if (t > 0) {
tv.tv_sec = t;
tv.tv_usec = 0;
}
if ((s = select(ssn->socket + 1, NULL, &fds, NULL, tvp) > 0 &&
FD_ISSET(ssn->socket, &fds))) {
#ifndef NO_SSLTLS
if (ssn->ssl) {
w = socket_secure_write(ssn, buf, len);
if (w <= 0)
goto fail;
} else
#endif
{
w = write(ssn->socket, buf, len);
if (w == -1) {
error("writing data; %s\n",
strerror(errno));
goto fail;
} else if (w == 0) {
goto fail;
}
}
if (w > 0) {
len -= w;
buf += w;
wt += w;
}
}
}
if (s == -1) {
error("waiting to write to socket; %s\n", strerror(errno));
goto fail;
} else if (s == 0) {
error("timeout period expired while waiting to write data\n");
goto fail;
}
return wt;
fail:
close_connection(ssn);
return -1;
}
#ifndef NO_SSLTLS
/*
* Write data to a TLS/SSL connection.
*/
ssize_t
socket_secure_write(session *ssn, const char *buf, size_t len)
{
int w;
for (;;) {
w = (ssize_t) SSL_write(ssn->ssl, buf, len);
if (w > 0)
break;
switch (SSL_get_error(ssn->ssl, w)) {
case SSL_ERROR_WANT_READ:
case SSL_ERROR_WANT_WRITE:
continue;
case SSL_ERROR_ZERO_RETURN:
return 0;
case SSL_ERROR_SYSCALL:
case SSL_ERROR_SSL:
error("writing data; %s\n",
ERR_error_string(ERR_get_error(), NULL));
return -1;
default:
return -1;
}
}
return w;
}
#endif
|