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
|
/* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
Without limiting anything contained in the foregoing, this file,
which is part of C Driver for MySQL (Connector/C), is also subject to the
Universal FOSS Exception, version 1.0, a copy of which can be found at
http://oss.oracle.com/licenses/universal-foss-exception.
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. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/*
Note that we can't have assertion on file descriptors; The reason for
this is that during mysql shutdown, another thread can close a file
we are working on. In this case we should just return read errors from
the file descriptor.
*/
#include <sys/types.h>
#include <new>
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_io.h"
#include "my_psi_config.h"
#include "mysql/psi/mysql_memory.h"
#include "mysql/psi/mysql_socket.h"
#include "mysql/psi/psi_memory.h" // IWYU pragma: keep
#include "mysql/service_mysql_alloc.h"
#include "template_utils.h"
#include "vio/vio_priv.h"
PSI_memory_key key_memory_vio_ssl_fd;
PSI_memory_key key_memory_vio;
PSI_memory_key key_memory_vio_read_buffer;
#ifdef HAVE_PSI_INTERFACE
static PSI_memory_info all_vio_memory[] = {
{&key_memory_vio_ssl_fd, "ssl_fd", 0, 0, PSI_DOCUMENT_ME},
{&key_memory_vio, "vio", 0, 0, PSI_DOCUMENT_ME},
{&key_memory_vio_read_buffer, "read_buffer", 0, 0, PSI_DOCUMENT_ME},
};
void init_vio_psi_keys() {
const char *category = "vio";
int count;
count = array_elements(all_vio_memory);
mysql_memory_register(category, all_vio_memory, count);
}
#endif
Vio *internal_vio_create(uint flags);
void internal_vio_delete(Vio *vio);
#ifdef _WIN32
/**
Stub io_wait method that defaults to indicate that
requested I/O event is ready.
Used for named pipe and shared memory VIO types.
@param vio Unused.
@param event Unused.
@param timeout Unused.
@retval 1 The requested I/O event has occurred.
*/
static int no_io_wait(Vio *vio [[maybe_unused]],
enum enum_vio_io_event event [[maybe_unused]],
int timeout [[maybe_unused]]) {
return 1;
}
#endif
extern "C" {
static bool has_no_data(Vio *vio [[maybe_unused]]) { return false; }
} // extern "C"
Vio::Vio(uint flags) {
mysql_socket = MYSQL_INVALID_SOCKET;
local = sockaddr_storage();
remote = sockaddr_storage();
#ifdef USE_PPOLL_IN_VIO
sigemptyset(&signal_mask);
#elif defined(HAVE_KQUEUE)
kq_fd = -1;
#endif
if (flags & VIO_BUFFERED_READ)
read_buffer = (char *)my_malloc(key_memory_vio_read_buffer,
VIO_READ_BUFFER_SIZE, MYF(MY_WME));
}
Vio::~Vio() {
my_free(read_buffer);
read_buffer = nullptr;
#ifdef HAVE_KQUEUE
if (kq_fd != -1) close(kq_fd);
#endif
}
Vio &Vio::operator=(Vio &&vio) {
this->~Vio();
mysql_socket = vio.mysql_socket;
localhost = vio.localhost;
type = vio.type;
read_timeout = vio.read_timeout;
write_timeout = vio.write_timeout;
retry_count = vio.retry_count;
inactive = vio.inactive;
local = vio.local;
remote = vio.remote;
addrLen = vio.addrLen;
read_buffer = vio.read_buffer;
read_pos = vio.read_pos;
read_end = vio.read_end;
is_blocking_flag = vio.is_blocking_flag;
#ifdef USE_PPOLL_IN_VIO
thread_id = vio.thread_id;
signal_mask = vio.signal_mask;
if (vio.poll_shutdown_flag.test_and_set())
poll_shutdown_flag.test_and_set();
else
poll_shutdown_flag.clear();
#elif defined(HAVE_KQUEUE)
kq_fd = vio.kq_fd;
if (vio.kevent_wakeup_flag.test_and_set())
kevent_wakeup_flag.test_and_set();
else
kevent_wakeup_flag.clear();
#endif
viodelete = vio.viodelete;
vioerrno = vio.vioerrno;
read = vio.read;
write = vio.write;
timeout = vio.timeout;
viokeepalive = vio.viokeepalive;
fastsend = vio.fastsend;
peer_addr = vio.peer_addr;
in_addr = vio.in_addr;
should_retry = vio.should_retry;
was_timeout = vio.was_timeout;
vioshutdown = vio.vioshutdown;
is_connected = vio.is_connected;
has_data = vio.has_data;
io_wait = vio.io_wait;
connect = vio.connect;
is_blocking = vio.is_blocking;
set_blocking = vio.set_blocking;
#ifdef _WIN32
overlapped = vio.overlapped;
hPipe = vio.hPipe;
#endif
ssl_arg = vio.ssl_arg;
#ifdef _WIN32
handle_file_map = vio.handle_file_map;
handle_map = vio.handle_map;
event_server_wrote = vio.event_client_wrote;
event_server_read = vio.event_server_read;
event_client_wrote = vio.event_client_wrote;
event_client_read = vio.event_client_read;
event_conn_closed = vio.event_conn_closed;
shared_memory_remain = vio.shared_memory_remain;
shared_memory_pos = vio.shared_memory_pos;
#endif
// These are the only elements touched by the destructor.
vio.read_buffer = nullptr;
#ifdef HAVE_KQUEUE
vio.kq_fd = -1;
#endif
return *this;
}
/*
* Helper to fill most of the Vio* with defaults.
*/
static bool vio_init(Vio *vio, enum enum_vio_type type, my_socket sd,
uint flags) {
DBUG_PRINT("enter vio_init", ("type: %d sd: %d flags: %d", type, sd, flags));
mysql_socket_setfd(&vio->mysql_socket, sd);
vio->localhost = flags & VIO_LOCALHOST;
vio->type = type;
#ifdef HAVE_SETNS
vio->network_namespace[0] = '\0';
#endif
switch (type) {
#ifdef _WIN32
case VIO_TYPE_NAMEDPIPE:
vio->viodelete = vio_delete;
vio->vioerrno = vio_errno;
vio->read = vio_read_pipe;
vio->write = vio_write_pipe;
vio->fastsend = vio_fastsend;
vio->viokeepalive = vio_keepalive;
vio->should_retry = vio_should_retry;
vio->was_timeout = vio_was_timeout;
vio->vioshutdown = vio_shutdown_pipe;
vio->peer_addr = vio_peer_addr;
vio->io_wait = no_io_wait;
vio->is_connected = vio_is_connected_pipe;
vio->has_data = has_no_data;
vio->is_blocking = vio_is_blocking;
vio->set_blocking = vio_set_blocking;
vio->set_blocking_flag = vio_set_blocking_flag;
vio->is_blocking_flag = true;
break;
case VIO_TYPE_SHARED_MEMORY:
vio->viodelete = vio_delete_shared_memory;
vio->vioerrno = vio_errno;
vio->read = vio_read_shared_memory;
vio->write = vio_write_shared_memory;
vio->fastsend = vio_fastsend;
vio->viokeepalive = vio_keepalive;
vio->should_retry = vio_should_retry;
vio->was_timeout = vio_was_timeout;
vio->vioshutdown = vio_shutdown_shared_memory;
vio->peer_addr = vio_peer_addr;
vio->io_wait = no_io_wait;
vio->is_connected = vio_is_connected_shared_memory;
vio->has_data = has_no_data;
vio->is_blocking = vio_is_blocking;
vio->set_blocking = vio_set_blocking;
vio->set_blocking_flag = vio_set_blocking_flag;
vio->is_blocking_flag = true;
break;
#endif /* _WIN32 */
case VIO_TYPE_SSL:
vio->viodelete = vio_ssl_delete;
vio->vioerrno = vio_errno;
vio->read = vio_ssl_read;
vio->write = vio_ssl_write;
vio->fastsend = vio_fastsend;
vio->viokeepalive = vio_keepalive;
vio->should_retry = vio_should_retry;
vio->was_timeout = vio_was_timeout;
vio->vioshutdown = vio_ssl_shutdown;
vio->peer_addr = vio_peer_addr;
vio->io_wait = vio_io_wait;
vio->is_connected = vio_is_connected;
vio->has_data = vio_ssl_has_data;
vio->timeout = vio_socket_timeout;
vio->is_blocking = vio_is_blocking;
vio->set_blocking = vio_set_blocking;
vio->set_blocking_flag = vio_set_blocking_flag;
vio->is_blocking_flag = true;
break;
default:
vio->viodelete = vio_delete;
vio->vioerrno = vio_errno;
vio->read = vio->read_buffer ? vio_read_buff : vio_read;
vio->write = vio_write;
vio->fastsend = vio_fastsend;
vio->viokeepalive = vio_keepalive;
vio->should_retry = vio_should_retry;
vio->was_timeout = vio_was_timeout;
vio->vioshutdown = vio_shutdown;
vio->peer_addr = vio_peer_addr;
vio->io_wait = vio_io_wait;
vio->is_connected = vio_is_connected;
vio->timeout = vio_socket_timeout;
vio->has_data = vio->read_buffer ? vio_buff_has_data : has_no_data;
vio->is_blocking = vio_is_blocking;
vio->set_blocking = vio_set_blocking;
vio->set_blocking_flag = vio_set_blocking_flag;
vio->is_blocking_flag = true;
break;
}
DBUG_EXECUTE_IF("vio_init_returns_error", { return true; });
#ifdef HAVE_KQUEUE
assert(type == VIO_TYPE_TCPIP || type == VIO_TYPE_SOCKET ||
type == VIO_TYPE_SSL);
vio->kq_fd = kqueue();
if (vio->kq_fd == -1) {
DBUG_PRINT("vio_init", ("kqueue failed with errno: %d", errno));
return true;
}
#endif
return false;
}
/**
Reinitialize an existing Vio object.
@remark Used to rebind an initialized socket-based Vio object
to another socket-based transport type. For example,
rebind a TCP/IP transport to SSL.
@remark If new socket handle passed to vio_reset() is not equal
to the socket handle stored in Vio then socket handle will
be closed before storing new value. If handles are equal
then old socket is not closed. This is important for
vio_reset() usage in ssl_do().
@remark If any error occurs then Vio members won't be altered thus
preserving socket handle stored in Vio and not taking
ownership over socket handle passed as parameter.
@param vio A VIO object.
@param type A socket-based transport type.
@param sd The socket.
@param ssl An optional SSL structure.
@param flags Flags passed to new_vio.
@return Return value is zero on success.
*/
bool vio_reset(Vio *vio, enum enum_vio_type type, my_socket sd,
void *ssl [[maybe_unused]], uint flags) {
int ret = false;
Vio new_vio(flags);
DBUG_TRACE;
/* The only supported rebind is from a socket-based transport type. */
assert(vio->type == VIO_TYPE_TCPIP || vio->type == VIO_TYPE_SOCKET);
if (vio_init(&new_vio, type, sd, flags)) return true;
#ifdef USE_PPOLL_IN_VIO
/* Preserve thread_id & signal_mask for this connection */
new_vio.thread_id = vio->thread_id;
new_vio.signal_mask = vio->signal_mask;
#endif /* USE_PPOLL_IN_VIO */
/* Preserve perfschema info for this connection */
new_vio.mysql_socket.m_psi = vio->mysql_socket.m_psi;
new_vio.ssl_arg = ssl;
/*
Propagate the timeout values. Necessary to also propagate
the underlying proprieties associated with the timeout,
such as the socket blocking mode.
*/
if (vio->read_timeout >= 0)
ret |= vio_timeout(&new_vio, 0, vio->read_timeout / 1000);
if (vio->write_timeout >= 0)
ret |= vio_timeout(&new_vio, 1, vio->write_timeout / 1000);
if (!ret) {
/*
vio_reset() succeeded
free old resources and then overwrite VIO structure
*/
/*
Close socket only when it is not equal to the new one.
*/
if (sd != mysql_socket_getfd(vio->mysql_socket)) {
if (vio->inactive == false) vio->vioshutdown(vio);
}
#ifdef HAVE_KQUEUE
else {
/*
Must set the fd to -1, otherwise the destructor would
close it again possibly closing socket or file opened
by other threads concurrently.
*/
close(vio->kq_fd);
vio->kq_fd = -1;
}
#endif
/*
Overwrite existing Vio structure
*/
*vio = std::move(new_vio);
}
return ret;
}
Vio *internal_vio_create(uint flags) {
void *rawmem = my_malloc(key_memory_vio, sizeof(Vio), MYF(MY_WME));
if (rawmem == nullptr) return nullptr;
return new (rawmem) Vio(flags);
}
/* Create a new VIO for socket or TCP/IP connection. */
Vio *mysql_socket_vio_new(MYSQL_SOCKET mysql_socket, enum_vio_type type,
uint flags) {
Vio *vio;
my_socket sd = mysql_socket_getfd(mysql_socket);
DBUG_TRACE;
DBUG_PRINT("enter", ("sd: %d", sd));
if ((vio = internal_vio_create(flags))) {
if (vio_init(vio, type, sd, flags)) {
internal_vio_delete(vio);
return nullptr;
}
vio->mysql_socket = mysql_socket;
}
return vio;
}
/* Open the socket or TCP/IP connection and read the fnctl() status */
Vio *vio_new(my_socket sd, enum enum_vio_type type, uint flags) {
Vio *vio;
MYSQL_SOCKET mysql_socket = MYSQL_INVALID_SOCKET;
DBUG_TRACE;
DBUG_PRINT("enter", ("sd: %d", sd));
mysql_socket_setfd(&mysql_socket, sd);
vio = mysql_socket_vio_new(mysql_socket, type, flags);
return vio;
}
#ifdef _WIN32
Vio *vio_new_win32pipe(HANDLE hPipe) {
Vio *vio;
DBUG_TRACE;
if ((vio = internal_vio_create(VIO_LOCALHOST))) {
if (vio_init(vio, VIO_TYPE_NAMEDPIPE, 0, VIO_LOCALHOST)) {
internal_vio_delete(vio);
return nullptr;
}
/* Create an object for event notification. */
vio->overlapped.hEvent = CreateEvent(NULL, false, false, NULL);
if (vio->overlapped.hEvent == NULL) {
internal_vio_delete(vio);
return NULL;
}
vio->hPipe = hPipe;
}
return vio;
}
Vio *vio_new_win32shared_memory(HANDLE handle_file_map, HANDLE handle_map,
HANDLE event_server_wrote,
HANDLE event_server_read,
HANDLE event_client_wrote,
HANDLE event_client_read,
HANDLE event_conn_closed) {
Vio *vio;
DBUG_TRACE;
if ((vio = internal_vio_create(VIO_LOCALHOST))) {
if (vio_init(vio, VIO_TYPE_SHARED_MEMORY, 0, VIO_LOCALHOST)) {
internal_vio_delete(vio);
return nullptr;
}
vio->handle_file_map = handle_file_map;
vio->handle_map = reinterpret_cast<char *>(handle_map);
vio->event_server_wrote = event_server_wrote;
vio->event_server_read = event_server_read;
vio->event_client_wrote = event_client_wrote;
vio->event_client_read = event_client_read;
vio->event_conn_closed = event_conn_closed;
vio->shared_memory_remain = 0;
vio->shared_memory_pos = reinterpret_cast<char *>(handle_map);
}
return vio;
}
#endif
/**
Set timeout for a network send or receive operation.
@note A non-infinite timeout causes the socket to be
set to non-blocking mode. On infinite timeouts,
the socket is set to blocking mode.
@note A negative timeout means an infinite timeout.
@param vio A VIO object.
@param which Whether timeout is for send (1) or receive (0).
@param timeout_sec Timeout interval in seconds.
@return false on success, true otherwise.
*/
int vio_timeout(Vio *vio, uint which, int timeout_sec) {
int timeout_ms;
bool old_mode;
/*
Vio timeouts are measured in milliseconds. Check for a possible
overflow. In case of overflow, set to infinite.
*/
if (timeout_sec > INT_MAX / 1000)
timeout_ms = -1;
else
timeout_ms = (int)(timeout_sec * 1000);
/* Deduce the current timeout status mode. */
old_mode = vio->write_timeout < 0 && vio->read_timeout < 0;
if (which)
vio->write_timeout = timeout_ms;
else
vio->read_timeout = timeout_ms;
/* VIO-specific timeout handling. Might change the blocking mode. */
return vio->timeout ? vio->timeout(vio, which, old_mode) : 0;
}
void internal_vio_delete(Vio *vio) {
if (!vio) return; /* It must be safe to delete null pointers. */
if (vio->inactive == false) vio->vioshutdown(vio);
vio->~Vio();
my_free(vio);
}
void vio_delete(Vio *vio) { internal_vio_delete(vio); }
/*
Cleanup memory allocated by vio or the
components below it when application finish
*/
void vio_end() { vio_ssl_end(); }
struct vio_string {
const char *m_str;
int m_len;
};
/**
Names for each VIO TYPE.
Indexed by enum_vio_type.
If you add more, please update audit_log.cc
*/
static const vio_string vio_type_names[] = {{"", 0},
{STRING_WITH_LEN("TCP/IP")},
{STRING_WITH_LEN("Socket")},
{STRING_WITH_LEN("Named Pipe")},
{STRING_WITH_LEN("SSL/TLS")},
{STRING_WITH_LEN("Shared Memory")},
{STRING_WITH_LEN("Internal")},
{STRING_WITH_LEN("Plugin")}};
void get_vio_type_name(enum enum_vio_type vio_type, const char **str,
int *len) {
int index;
if ((vio_type >= FIRST_VIO_TYPE) && (vio_type <= LAST_VIO_TYPE)) {
index = vio_type;
} else {
index = 0;
}
*str = vio_type_names[index].m_str;
*len = vio_type_names[index].m_len;
}
|