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 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
|
/* SPDX-FileCopyrightText: 2009-2023 Greenbone AG
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
/**
* @file
* @brief GnuTLS based functions for server communication.
*
* This library supplies low-level communication functions for communication
* with a server over GnuTLS.
*/
#define _GNU_SOURCE
#include "serverutils.h"
#include "../base/hosts.h" /* for is_hostname, is_ipv4_address, is_ipv6_add.. */
#include <arpa/inet.h>
#include <errno.h> /* for errno, ENOTCONN, EAGAIN */
#include <fcntl.h> /* for fcntl, F_SETFL, O_NONBLOCK */
#include <gcrypt.h> /* for gcry_control */
#include <glib.h> /* for g_warning, g_free, g_debug, gchar, g_markup... */
#include <gnutls/x509.h> /* for gnutls_x509_crt_..., gnutls_x509_privkey_... */
#include <netdb.h> /* for addrinfo, freeaddrinfo, gai_strerror, getad... */
#include <signal.h> /* for sigaction, SIGPIPE, sigemptyset, SIG_IGN */
#include <stdio.h> /* for fclose, FILE, SEEK_END, SEEK_SET */
#include <string.h> /* for strerror, strlen, memset */
#include <sys/socket.h> /* for shutdown, connect, socket, SHUT_RDWR, SOCK_... */
#include <sys/types.h>
#include <unistd.h> /* for close, ssize_t, usleep */
#undef G_LOG_DOMAIN
/**
* @brief GLib logging domain.
*/
#define G_LOG_DOMAIN "libgvm util"
static int
server_attach_internal (int, gnutls_session_t *, const char *, int);
static int
server_new_internal (unsigned int, const char *, const gchar *, const gchar *,
const gchar *, gnutls_session_t *,
gnutls_certificate_credentials_t *);
/* Connections. */
/**
* @brief Close UNIX socket connection.
*
* @param[in] client_connection Client connection.
*
* @return 0 success, -1 error.
*/
static int
close_unix (gvm_connection_t *client_connection)
{
/* Turn off blocking. */
if (fcntl (client_connection->socket, F_SETFL, O_NONBLOCK) == -1)
{
g_warning ("%s: failed to set server socket flag: %s\n", __func__,
strerror (errno));
return -1;
}
if (shutdown (client_connection->socket, SHUT_RDWR) == -1)
{
if (errno == ENOTCONN)
return 0;
g_warning ("%s: failed to shutdown server socket: %s\n", __func__,
strerror (errno));
return -1;
}
if (close (client_connection->socket) == -1)
{
g_warning ("%s: failed to close server socket: %s\n", __func__,
strerror (errno));
return -1;
}
return 0;
}
/**
* @brief Free connection.
*
* @param[in] client_connection Connection.
*/
void
gvm_connection_free (gvm_connection_t *client_connection)
{
if (client_connection->tls)
gvm_server_free (client_connection->socket, client_connection->session,
client_connection->credentials);
else
close_unix (client_connection);
}
/* Certificate verification. */
/**
* @brief Verify certificate.
*
* @param[in] session Pointer to GNUTLS session.
*
* @return 0 on success, 1 on failure, -1 on error.
*/
int
gvm_server_verify (gnutls_session_t session)
{
unsigned int status;
int ret;
ret = gnutls_certificate_verify_peers2 (session, &status);
if (ret < 0)
{
g_warning ("%s: failed to verify peers: %s", __func__,
gnutls_strerror (ret));
return -1;
}
if (status & GNUTLS_CERT_INVALID)
g_warning ("%s: the certificate is not trusted", __func__);
if (status & GNUTLS_CERT_SIGNER_NOT_CA)
g_warning ("%s: the certificate's issuer is not a CA", __func__);
if (status & GNUTLS_CERT_INSECURE_ALGORITHM)
g_warning ("%s: the certificate was signed using an insecure algorithm",
__func__);
if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
g_warning ("%s: the certificate hasn't got a known issuer", __func__);
if (status & GNUTLS_CERT_REVOKED)
g_warning ("%s: the certificate has been revoked", __func__);
if (status & GNUTLS_CERT_EXPIRED)
g_warning ("%s: the certificate has expired", __func__);
if (status & GNUTLS_CERT_NOT_ACTIVATED)
g_warning ("%s: the certificate is not yet activated", __func__);
if (status)
return 1;
return 0;
}
/**
* @brief Loads a file's data into gnutls_datum_t struct.
*
* @param[in] file File to load.
* @param[out] loaded_file Destination to load file into.
*
* @return 0 if success, -1 if error.
*/
int
load_gnutls_file (const char *file, gnutls_datum_t *loaded_file)
{
FILE *f = NULL;
int64_t filelen;
void *ptr;
if (!(f = fopen (file, "r")) || fseek (f, 0, SEEK_END) != 0
|| (filelen = ftell (f)) < 0 || fseek (f, 0, SEEK_SET) != 0
|| !(ptr = g_malloc0 ((size_t) filelen))
|| fread (ptr, 1, (size_t) filelen, f) < (size_t) filelen)
{
if (f)
fclose (f);
return -1;
}
loaded_file->data = ptr;
loaded_file->size = filelen;
fclose (f);
return 0;
}
/**
* @brief Unloads a gnutls_datum_t struct's data.
*
* @param[in] data Pointer to gnutls_datum_t struct to be unloaded.
*/
void
unload_gnutls_file (gnutls_datum_t *data)
{
if (data)
g_free (data->data);
}
static char *cert_pub_mem = NULL;
static char *cert_priv_mem = NULL;
/**
* @brief Save cert_pub_mem with public certificate.
*
* @param[in] data The DER or PEM encoded certificate.
*/
static void
set_cert_pub_mem (const char *data)
{
if (cert_pub_mem)
g_free (cert_pub_mem);
cert_pub_mem = g_strdup (data);
}
/**
* @brief Save cert_priv_mem with private certificate.
*
* @param[in] data The DER or PEM encoded certificate.
*/
static void
set_cert_priv_mem (const char *data)
{
if (cert_priv_mem)
g_free (cert_priv_mem);
cert_priv_mem = g_strdup (data);
}
/**
* @brief Get private certificate from @ref cert_priv_mem.
*
* @return The DER or PEM encoded certificate.
*/
static const char *
get_cert_priv_mem ()
{
return cert_priv_mem;
}
/**
* @brief Get public certificate from @ref cert_pub_mem.
*
* @return The DER or PEM encoded certificate.
*/
static const char *
get_cert_pub_mem ()
{
return cert_pub_mem;
}
/**
* @brief Callback function to be called in order to retrieve the
* certificate to be used in the handshake.
*
* @param[in] session Pointer to GNUTLS session. Not in used. Can be NULL.
* @param[in] req_ca_rdn Contains a list with the CA names that
* the server considers trusted. Not in used. Can be NULL.
* @param[in] nreqs Number of CA requested. Not in used. Can be NULL.
* @param[in] sign_algos contains a list with server's acceptable public key
* algorithms. Not in used. Can be NULL.
* @param[in] sign_algos_length Algos list length. Not in used. Can be NULL.
* @param[out] st Should contain the certificates and private keys
*
* @return 0 on success, non-null otherwise.
*/
static int
client_cert_callback (gnutls_session_t session,
const gnutls_datum_t *req_ca_rdn, int nreqs,
const gnutls_pk_algorithm_t *sign_algos,
int sign_algos_length, gnutls_retr2_st *st)
{
int ret;
gnutls_datum_t data;
static gnutls_x509_crt_t crt;
static gnutls_x509_privkey_t key;
(void) session;
(void) req_ca_rdn;
(void) nreqs;
(void) sign_algos;
(void) sign_algos_length;
data.data = (unsigned char *) g_strdup (get_cert_pub_mem ());
data.size = strlen (get_cert_pub_mem ());
gnutls_x509_crt_init (&crt);
ret = gnutls_x509_crt_import (crt, &data, GNUTLS_X509_FMT_PEM);
g_free (data.data);
if (ret)
return ret;
st->cert.x509 = &crt;
st->cert_type = GNUTLS_CRT_X509;
st->ncerts = 1;
data.data = (unsigned char *) g_strdup (get_cert_priv_mem ());
data.size = strlen (get_cert_priv_mem ());
gnutls_x509_privkey_init (&key);
ret = gnutls_x509_privkey_import (key, &data, GNUTLS_X509_FMT_PEM);
g_free (data.data);
if (ret)
return ret;
st->key.x509 = key;
st->key_type = GNUTLS_PRIVKEY_X509;
return 0;
}
/**
* @brief Connect to the server using a given host, port and cert.
*
* @param[in] session Pointer to GNUTLS session.
* @param[in] host Host to connect to.
* @param[in] port Port to connect to.
* @param[in] ca_mem CA cert.
* @param[in] pub_mem Public key.
* @param[in] priv_mem Private key.
* @param[in] verify Whether to verify.
*
* @return 0 on success, -1 on error.
*/
int
gvm_server_open_verify (gnutls_session_t *session, const char *host, int port,
const char *ca_mem, const char *pub_mem,
const char *priv_mem, int verify)
{
int ret;
int server_socket;
struct addrinfo address_hints;
struct addrinfo *addresses, *address;
gchar *port_string;
int host_type;
gnutls_certificate_credentials_t credentials;
/* Ensure that host and port have sane values. */
if (port < 1 || port > 65535)
{
g_warning ("Failed to create client TLS session. "
"Invalid port %d",
port);
return -1;
}
host_type = gvm_get_host_type (host);
if (!(host_type == HOST_TYPE_NAME || host_type == HOST_TYPE_IPV4
|| host_type == HOST_TYPE_IPV6))
{
g_warning ("Failed to create client TLS session. Invalid host %s", host);
return -1;
}
/** @warning On success we are leaking the credentials. We can't free
them because the session only makes a shallow copy. */
if (gvm_server_new_mem (GNUTLS_CLIENT, ca_mem, pub_mem, priv_mem, session,
&credentials))
{
g_warning ("Failed to create client TLS session.");
return -1;
}
if (ca_mem && pub_mem && priv_mem)
{
set_cert_pub_mem (pub_mem);
set_cert_priv_mem (priv_mem);
gnutls_certificate_set_retrieve_function (credentials,
client_cert_callback);
}
/* Create the port string. */
port_string = g_strdup_printf ("%i", port);
/* Get all possible addresses. */
memset (&address_hints, 0, sizeof (address_hints));
address_hints.ai_family = AF_UNSPEC; /* IPv4 or IPv6. */
address_hints.ai_socktype = SOCK_STREAM;
address_hints.ai_protocol = 0;
if (getaddrinfo (host, port_string, &address_hints, &addresses))
{
g_free (port_string);
g_warning ("Failed to get server addresses for %s: %s", host,
gai_strerror (errno));
gnutls_deinit (*session);
gnutls_certificate_free_credentials (credentials);
return -1;
}
g_free (port_string);
/* Try to connect to each address in turn. */
for (address = addresses; address; address = address->ai_next)
{
/* Make server socket. */
if (address->ai_family == AF_INET6)
server_socket = socket (PF_INET6, SOCK_STREAM, 0);
else
server_socket = socket (PF_INET, SOCK_STREAM, 0);
if (server_socket == -1)
{
g_warning ("Failed to create server socket");
freeaddrinfo (addresses);
gnutls_deinit (*session);
gnutls_certificate_free_credentials (credentials);
return -1;
}
/* Connect to server. */
if (connect (server_socket, address->ai_addr, address->ai_addrlen) == -1)
{
close (server_socket);
continue;
}
break;
}
freeaddrinfo (addresses);
if (address == NULL)
{
g_warning ("Failed to connect to server");
gnutls_deinit (*session);
gnutls_certificate_free_credentials (credentials);
return -1;
}
g_debug (" Connected to server '%s' port %d.", host, port);
/* Complete setup of server session. */
ret = server_attach_internal (server_socket, session, host, port);
if (ret)
{
if (ret == -2)
{
close (server_socket);
gnutls_deinit (*session);
gnutls_certificate_free_credentials (credentials);
}
close (server_socket);
return -1;
}
if (verify && gvm_server_verify (*session))
{
close (server_socket);
return -1;
}
return server_socket;
}
/**
* @brief Connect to the server using a given host, port and cert.
*
* Verify if all cert args are given.
*
* @param[in] session Pointer to GNUTLS session.
* @param[in] host Host to connect to.
* @param[in] port Port to connect to.
* @param[in] ca_mem CA cert.
* @param[in] pub_mem Public key.
* @param[in] priv_mem Private key.
*
* @return 0 on success, -1 on error.
*/
int
gvm_server_open_with_cert (gnutls_session_t *session, const char *host,
int port, const char *ca_mem, const char *pub_mem,
const char *priv_mem)
{
return gvm_server_open_verify (session, host, port, ca_mem, pub_mem, priv_mem,
ca_mem && pub_mem && priv_mem);
}
/**
* @brief Connect to the server using a given host and port.
*
* @param[in] session Pointer to GNUTLS session.
* @param[in] host Host to connect to.
* @param[in] port Port to connect to.
*
* @return 0 on success, -1 on error.
*/
int
gvm_server_open (gnutls_session_t *session, const char *host, int port)
{
return gvm_server_open_with_cert (session, host, port, NULL, NULL, NULL);
}
/**
* @brief Close a server connection and its socket.
*
* @param[in] socket Socket connected to server.
* @param[in] session GNUTLS session with server.
*
* @return 0 on success, -1 on error.
*/
int
gvm_server_close (int socket, gnutls_session_t session)
{
return gvm_server_free (socket, session, NULL);
}
/**
* @brief Close a server connection and its socket.
*
* @param[in] connection Connection.
*/
void
gvm_connection_close (gvm_connection_t *connection)
{
gvm_connection_free (connection);
}
/**
* @brief Attach a socket to a session, and shake hands with the peer.
*
* @param[in] socket Socket.
* @param[in] session Pointer to GNUTLS session.
* @param[in] host NULL or the name of the host for diagnostics
* @param[in] port Port number for diagnostics; only used
* if \a host is not NULL
*
* @return 0 on success, -1 on general error, -2 if the TLS handshake failed.
*/
static int
server_attach_internal (int socket, gnutls_session_t *session, const char *host,
int port)
{
unsigned int retries;
gnutls_transport_set_ptr (*session,
(gnutls_transport_ptr_t) GSIZE_TO_POINTER (socket));
retries = 0;
while (1)
{
int ret = gnutls_handshake (*session);
if (ret >= 0)
break;
if (ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED)
{
if (retries > 10)
usleep (MIN ((retries - 10) * 10000, 5000000));
retries++;
continue;
}
if (host)
g_debug ("Failed to shake hands with server '%s' port %d: %s", host,
port, gnutls_strerror (ret));
else
g_debug ("Failed to shake hands with peer: %s", gnutls_strerror (ret));
if (shutdown (socket, SHUT_RDWR) == -1)
g_debug ("Failed to shutdown server socket");
return -2;
}
if (host)
g_debug (" Shook hands with server '%s' port %d.", host, port);
else
g_debug (" Shook hands with peer.");
return 0;
}
/**
* @brief Attach a socket to a session, and shake hands with the peer.
*
* @param[in] socket Socket.
* @param[in] session Pointer to GNUTLS session.
* FIXME: Why is this a pointer to a session?
*
* @return 0 on success, -1 on error.
*/
int
gvm_server_attach (int socket, gnutls_session_t *session)
{
int ret;
ret = server_attach_internal (socket, session, NULL, 0);
return ret ? -1 : 0;
}
/**
* @brief Send a string to the server.
*
* @param[in] session Pointer to GNUTLS session.
* @param[in] fmt Format of string to send.
* @param[in] ap Args for fmt.
* @param[in] quiet Whether to log debug and info messages. Useful for
* hiding passwords.
*
* @return 0 on success, 1 if server closed connection, -1 on error.
*/
static int
gvm_server_vsendf_internal (gnutls_session_t *session, const char *fmt,
va_list ap, int quiet)
{
char *sref, *string;
int rc = 0, left;
left = vasprintf (&string, fmt, ap);
if (left == -1)
string = NULL;
sref = string;
while (left > 0)
{
ssize_t count;
if (quiet == 0)
g_debug (" send %d from %.*s[...]", left, left < 30 ? left : 30,
string);
count = gnutls_record_send (*session, string, left);
if (count < 0)
{
if (count == GNUTLS_E_INTERRUPTED)
/* Interrupted, try write again. */
continue;
if (count == GNUTLS_E_REHANDSHAKE)
{
/* \todo Rehandshake. */
if (quiet == 0)
g_message (" %s rehandshake", __func__);
continue;
}
g_warning ("Failed to write to server: %s", gnutls_strerror (count));
rc = -1;
goto out;
}
if (count == 0)
{
/* Server closed connection. */
if (quiet == 0)
g_debug ("= server closed");
rc = 1;
goto out;
}
if (quiet == 0)
g_debug ("=> %.*s", (int) count, string);
string += count;
left -= count;
}
if (quiet == 0)
g_debug ("=> done");
out:
g_free (sref);
return rc;
}
/**
* @brief Send a string to the server.
*
* @param[in] socket Socket.
* @param[in] fmt Format of string to send.
* @param[in] ap Args for fmt.
* @param[in] quiet Whether to log debug and info messages. Useful for
* hiding passwords.
*
* @return 0 on success, 1 if server closed connection, -1 on error.
*/
static int
unix_vsendf_internal (int socket, const char *fmt, va_list ap, int quiet)
{
char *string_start, *string;
int rc = 0, left;
left = vasprintf (&string, fmt, ap);
if (left == -1)
string = NULL;
string_start = string;
while (left > 0)
{
ssize_t count;
if (quiet == 0)
g_debug (" send %d from %.*s[...]", left, left < 30 ? left : 30,
string);
count = write (socket, string, left);
if (count < 0)
{
if (errno == EINTR || errno == EAGAIN)
continue;
g_warning ("Failed to write to server: %s", strerror (errno));
rc = -1;
goto out;
}
if (quiet == 0)
g_debug ("=> %.*s", (int) count, string);
string += count;
left -= count;
}
if (quiet == 0)
g_debug ("=> done");
out:
g_free (string_start);
return rc;
}
/**
* @brief Send a string to the connection.
*
* @param[in] connection Connection.
* @param[in] fmt Format of string to send.
* @param[in] ap Args for fmt.
* @param[in] quiet Whether to log debug and info messages. Useful for
* hiding passwords.
*
* @return 0 on success, 1 if server closed connection, -1 on error.
*/
static int
gvm_connection_vsendf_internal (gvm_connection_t *connection, const char *fmt,
va_list ap, int quiet)
{
if (connection->tls)
return gvm_server_vsendf_internal (&connection->session, fmt, ap, quiet);
return unix_vsendf_internal (connection->socket, fmt, ap, quiet);
}
/**
* @brief Send a string to the server.
*
* @param[in] session Pointer to GNUTLS session.
* @param[in] fmt Format of string to send.
* @param[in] ap Args for fmt.
*
* @return 0 on success, 1 if server closed connection, -1 on error.
*/
int
gvm_server_vsendf (gnutls_session_t *session, const char *fmt, va_list ap)
{
return gvm_server_vsendf_internal (session, fmt, ap, 0);
}
/**
* @brief Send a string to the server.
*
* @param[in] socket Socket to send string through.
* @param[in] fmt Format of string to send.
* @param[in] ap Args for fmt.
*
* @return 0 on success, 1 if server closed connection, -1 on error.
*/
int
gvm_socket_vsendf (int socket, const char *fmt, va_list ap)
{
return unix_vsendf_internal (socket, fmt, ap, 0);
}
/**
* @brief Send a string to the server.
*
* @param[in] connection Connection.
* @param[in] fmt Format of string to send.
* @param[in] ap Args for fmt.
*
* @return 0 on success, 1 if server closed connection, -1 on error.
*/
static int
gvm_connection_vsendf (gvm_connection_t *connection, const char *fmt,
va_list ap)
{
return gvm_connection_vsendf_internal (connection, fmt, ap, 0);
}
/**
* @brief Send a string to the server, refraining from logging besides warnings.
*
* @param[in] session Pointer to GNUTLS session.
* @param[in] fmt Format of string to send.
* @param[in] ap Args for fmt.
*
* @return 0 on success, 1 if server closed connection, -1 on error.
*/
static int
gvm_server_vsendf_quiet (gnutls_session_t *session, const char *fmt, va_list ap)
{
return gvm_server_vsendf_internal (session, fmt, ap, 1);
}
/**
* @brief Send a string to the server, refraining from logging besides warnings.
*
* @param[in] connection Connection.
* @param[in] fmt Format of string to send.
* @param[in] ap Args for fmt.
*
* @return 0 on success, 1 if server closed connection, -1 on error.
*/
static int
gvm_connection_vsendf_quiet (gvm_connection_t *connection, const char *fmt,
va_list ap)
{
return gvm_connection_vsendf_internal (connection, fmt, ap, 1);
}
/**
* @brief Format and send a string to the server.
*
* @param[in] session Pointer to GNUTLS session.
* @param[in] format printf-style format string for message.
*
* @return 0 on success, -1 on error.
*/
int
gvm_server_sendf (gnutls_session_t *session, const char *format, ...)
{
va_list ap;
int rc;
va_start (ap, format);
rc = gvm_server_vsendf (session, format, ap);
va_end (ap);
return rc;
}
/**
* @brief Format and send a string to the server.
*
* @param[in] connection Connection.
* @param[in] format printf-style format string for message.
*
* @return 0 on success, -1 on error.
*/
int
gvm_connection_sendf (gvm_connection_t *connection, const char *format, ...)
{
va_list ap;
int rc;
va_start (ap, format);
rc = gvm_connection_vsendf (connection, format, ap);
va_end (ap);
return rc;
}
/**
* @brief Format and send a string to the server.
*
* @param[in] session Pointer to GNUTLS session.
* @param[in] format printf-style format string for message.
*
* @return 0 on success, -1 on error.
*/
static int
gvm_server_sendf_quiet (gnutls_session_t *session, const char *format, ...)
{
va_list ap;
int rc;
va_start (ap, format);
rc = gvm_server_vsendf_quiet (session, format, ap);
va_end (ap);
return rc;
}
/**
* @brief Format and send a string to the server.
*
* @param[in] connection Connection.
* @param[in] format printf-style format string for message.
*
* @return 0 on success, -1 on error.
*/
static int
gvm_connection_sendf_quiet (gvm_connection_t *connection, const char *format,
...)
{
va_list ap;
int rc;
va_start (ap, format);
rc = gvm_connection_vsendf_quiet (connection, format, ap);
va_end (ap);
return rc;
}
/**
* @brief Format and send an XML string to the server.
*
* Escape XML in string and character args.
*
* @param[in] session Pointer to GNUTLS session.
* @param[in] format printf-style format string for message.
*
* @return 0 on success, -1 on error.
*/
int
gvm_server_sendf_xml (gnutls_session_t *session, const char *format, ...)
{
va_list ap;
gchar *msg;
int rc;
va_start (ap, format);
msg = g_markup_vprintf_escaped (format, ap);
rc = gvm_server_sendf (session, "%s", msg);
g_free (msg);
va_end (ap);
return rc;
}
/**
* @brief Format and send an XML string to the server.
*
* Escape XML in string and character args.
*
* @param[in] connection Connection.
* @param[in] format printf-style format string for message.
*
* @return 0 on success, -1 on error.
*/
int
gvm_connection_sendf_xml (gvm_connection_t *connection, const char *format, ...)
{
va_list ap;
gchar *msg;
int rc;
va_start (ap, format);
msg = g_markup_vprintf_escaped (format, ap);
rc = gvm_connection_sendf (connection, "%s", msg);
g_free (msg);
va_end (ap);
return rc;
}
/**
* @brief Format and send an XML string to the server.
*
* Escape XML in string and character args.
*
* Quiet version, only logs warnings.
*
* @param[in] session Pointer to GNUTLS session.
* @param[in] format printf-style format string for message.
*
* @return 0 on success, -1 on error.
*/
int
gvm_server_sendf_xml_quiet (gnutls_session_t *session, const char *format, ...)
{
va_list ap;
gchar *msg;
int rc;
va_start (ap, format);
msg = g_markup_vprintf_escaped (format, ap);
rc = gvm_server_sendf_quiet (session, "%s", msg);
g_free (msg);
va_end (ap);
return rc;
}
/**
* @brief Format and send an XML string to the server.
*
* Escape XML in string and character args.
*
* Quiet version, only logs warnings.
*
* @param[in] connection Connection.
* @param[in] format printf-style format string for message.
*
* @return 0 on success, -1 on error.
*/
int
gvm_connection_sendf_xml_quiet (gvm_connection_t *connection,
const char *format, ...)
{
va_list ap;
gchar *msg;
int rc;
va_start (ap, format);
msg = g_markup_vprintf_escaped (format, ap);
rc = gvm_connection_sendf_quiet (connection, "%s", msg);
g_free (msg);
va_end (ap);
return rc;
}
/**
* @brief Initialize a server session.
*
* @param[in] server_credentials Credentials to be allocated.
*
* @return 0 on success, -1 on error.
*/
static int
server_new_gnutls_init (gnutls_certificate_credentials_t *server_credentials)
{
/* Turn off use of /dev/random, as this can block. */
gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0);
/* Initialize security library. */
if (gnutls_global_init ())
{
g_warning ("Failed to initialize GNUTLS.");
return -1;
}
/* Setup server session. */
if (gnutls_certificate_allocate_credentials (server_credentials))
{
g_warning ("%s: failed to allocate server credentials\n", __func__);
return -1;
}
return 0;
}
/**
* @brief Set the server credentials.
*
* @param[in] end_type Connection end type.
* @param[in] priority TLS priority to be set. If no one is given, NORMAL is
* default.
* @param[in] server_session GNUTLS session.
* @param[in] server_credentials Credentials to be set.
*
* @return 0 on success, -1 on error.
*/
static int
server_new_gnutls_set (unsigned int end_type, const char *priority,
gnutls_session_t *server_session,
gnutls_certificate_credentials_t *server_credentials)
{
int err;
if (gnutls_init (server_session, end_type))
{
g_warning ("%s: failed to initialise server session\n", __func__);
return -1;
}
/* Depending on gnutls version different priority strings are
possible. At least from 3.0 this is an option:
"NONE:+VERS-TLS1.0:+CIPHER-ALL:+COMP-ALL:+RSA:+DHE-RSA:+DHE-DSS:+MAC-ALL"
But in fact this function is only for internal
purposes, not for scanning abilities. So, the conservative "NORMAL"
is chosen.
*/
err = gnutls_priority_set_direct (*server_session,
priority ? priority : "NORMAL", NULL);
if (err)
{
g_warning ("%s: failed to set tls priorities: %s\n", __func__,
gnutls_strerror (err));
gnutls_deinit (*server_session);
return -1;
}
if (gnutls_credentials_set (*server_session, GNUTLS_CRD_CERTIFICATE,
*server_credentials))
{
g_warning ("%s: failed to set server credentials\n", __func__);
gnutls_deinit (*server_session);
return -1;
}
if (end_type == GNUTLS_SERVER)
gnutls_certificate_server_set_request (*server_session,
GNUTLS_CERT_REQUEST);
return 0;
}
/**
* @brief Make a session for connecting to a server.
*
* @param[in] end_type Connection end type (GNUTLS_SERVER or
* GNUTLS_CLIENT).
* @param[in] priority Custom priority string or NULL.
* @param[in] ca_cert_file Certificate authority file.
* @param[in] cert_file Certificate file.
* @param[in] key_file Key file.
* @param[out] server_session The session with the server.
* @param[out] server_credentials Server credentials.
*
* @return 0 on success, -1 on error.
*/
static int
server_new_internal (unsigned int end_type, const char *priority,
const gchar *ca_cert_file, const gchar *cert_file,
const gchar *key_file, gnutls_session_t *server_session,
gnutls_certificate_credentials_t *server_credentials)
{
if (server_new_gnutls_init (server_credentials))
return -1;
if (cert_file && key_file)
{
int ret;
ret = gnutls_certificate_set_x509_key_file (
*server_credentials, cert_file, key_file, GNUTLS_X509_FMT_PEM);
if (ret < 0)
{
g_warning ("%s: failed to set credentials key file: %s\n", __func__,
gnutls_strerror (ret));
g_warning ("%s: cert file: %s\n", __func__, cert_file);
g_warning ("%s: key file : %s\n", __func__, key_file);
gnutls_certificate_free_credentials (*server_credentials);
return -1;
}
}
if (ca_cert_file)
{
int ret;
ret = gnutls_certificate_set_x509_trust_file (
*server_credentials, ca_cert_file, GNUTLS_X509_FMT_PEM);
if (ret < 0)
{
g_warning ("%s: failed to set credentials trust file: %s\n", __func__,
gnutls_strerror (ret));
g_warning ("%s: trust file: %s\n", __func__, ca_cert_file);
gnutls_certificate_free_credentials (*server_credentials);
return -1;
}
}
if (server_new_gnutls_set (end_type, priority, server_session,
server_credentials))
{
gnutls_certificate_free_credentials (*server_credentials);
return -1;
}
return 0;
}
/**
* @brief Make a session for connecting to a server.
*
* @param[in] end_type Connection end type (GNUTLS_SERVER or
* GNUTLS_CLIENT).
* @param[in] ca_cert_file Certificate authority file.
* @param[in] cert_file Certificate file.
* @param[in] key_file Key file.
* @param[out] server_session The session with the server.
* @param[out] server_credentials Server credentials.
*
* @return 0 on success, -1 on error.
*/
int
gvm_server_new (unsigned int end_type, gchar *ca_cert_file, gchar *cert_file,
gchar *key_file, gnutls_session_t *server_session,
gnutls_certificate_credentials_t *server_credentials)
{
return server_new_internal (end_type, NULL, ca_cert_file, cert_file, key_file,
server_session, server_credentials);
}
/**
* @brief Make a session for connecting to a server, with certificates stored
* in memory.
*
* @param[in] end_type Connection end type: GNUTLS_SERVER or GNUTLS_CLIENT.
* @param[in] ca_cert Certificate authority public key.
* @param[in] pub_key Public key.
* @param[in] priv_key Private key.
* @param[out] session The session with the server.
* @param[out] credentials Server credentials.
*
* @return 0 on success, -1 on error.
*/
int
gvm_server_new_mem (unsigned int end_type, const char *ca_cert,
const char *pub_key, const char *priv_key,
gnutls_session_t *session,
gnutls_certificate_credentials_t *credentials)
{
if (server_new_gnutls_init (credentials))
return -1;
if (pub_key && priv_key)
{
int ret;
gnutls_datum_t pub, priv;
pub.data = (void *) pub_key;
pub.size = strlen (pub_key);
priv.data = (void *) priv_key;
priv.size = strlen (priv_key);
ret = gnutls_certificate_set_x509_key_mem (*credentials, &pub, &priv,
GNUTLS_X509_FMT_PEM);
if (ret < 0)
{
g_warning ("%s: %s\n", __func__, gnutls_strerror (ret));
return -1;
}
}
if (ca_cert)
{
int ret;
gnutls_datum_t data;
data.data = (void *) ca_cert;
data.size = strlen (ca_cert);
ret = gnutls_certificate_set_x509_trust_mem (*credentials, &data,
GNUTLS_X509_FMT_PEM);
if (ret < 0)
{
g_warning ("%s: %s\n", __func__, gnutls_strerror (ret));
gnutls_certificate_free_credentials (*credentials);
return -1;
}
}
if (server_new_gnutls_set (end_type, NULL, session, credentials))
{
gnutls_certificate_free_credentials (*credentials);
return -1;
}
return 0;
}
/**
* @brief Set a gnutls session's Diffie-Hellman parameters.
*
* @param[in] creds GnuTLS credentials.
* @param[in] dhparams_file Path to PEM file containing the DH parameters.
*
* @return 0 on success, -1 on error.
*/
int
set_gnutls_dhparams (gnutls_certificate_credentials_t creds,
const char *dhparams_file)
{
int ret;
gnutls_datum_t data;
if (!creds || !dhparams_file)
return -1;
if (load_gnutls_file (dhparams_file, &data))
return -1;
/* Disable false positive warning about potential leak of memory */
#ifndef __clang_analyzer__
gnutls_dh_params_t params = g_malloc0 (sizeof (gnutls_dh_params_t));
ret = gnutls_dh_params_import_pkcs3 (params, &data, GNUTLS_X509_FMT_PEM);
unload_gnutls_file (&data);
if (ret)
{
g_free (params);
return -1;
}
else
gnutls_certificate_set_dh_params (creds, params);
return 0;
#endif
}
/**
* @brief Cleanup a server session.
*
* This shuts down the TLS session, closes the socket and releases the
* TLS resources.
*
* @param[in] server_socket The socket connected to the server.
* @param[in] server_session The session with the server.
* @param[in] server_credentials Credentials or NULL.
*
* @return 0 success, -1 error.
*/
int
gvm_server_free (int server_socket, gnutls_session_t server_session,
gnutls_certificate_credentials_t server_credentials)
{
/* Turn off blocking. */
// FIX get flags first
if (fcntl (server_socket, F_SETFL, O_NONBLOCK) == -1)
{
g_warning ("%s: failed to set server socket flag: %s\n", __func__,
strerror (errno));
return -1;
}
while (1)
{
int ret = gnutls_bye (server_session, GNUTLS_SHUT_WR);
if (ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED)
{
continue;
}
if (ret)
{
g_debug (" Failed to gnutls_bye: %s\n",
gnutls_strerror ((int) ret));
/* Carry on successfully anyway, as this often fails, perhaps
* because the server is closing the connection first. */
break;
}
break;
}
/* The former separate code in gvm_server_close and here
differed in the order the TLS session and socket was closed. The
way we do it here seems to be the right thing but for full
backward compatibility we do it for calls from
gvm_server_close in the old way. We can distinguish the two
modes by the existence of server_credentials. */
if (server_credentials)
{
if (close (server_socket) == -1)
{
g_warning ("%s: failed to close server socket: %s\n", __func__,
strerror (errno));
return -1;
}
gnutls_deinit (server_session);
gnutls_certificate_free_credentials (server_credentials);
}
else
{
gnutls_deinit (server_session);
close (server_socket);
}
gnutls_global_deinit ();
return 0;
}
|