| /*****************************************************************************\ |
| * src/common/io_hdr.c - IO connection header functions |
| ***************************************************************************** |
| * Copyright (C) 2002 The Regents of the University of California. |
| * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). |
| * Written by Mark A. Grondona <mgrondona@llnl.gov>. |
| * CODE-OCEC-09-009. All rights reserved. |
| * |
| * This file is part of Slurm, a resource management program. |
| * For details, see <https://slurm.schedmd.com/>. |
| * Please also read the included file: DISCLAIMER. |
| * |
| * Slurm is free software; you can redistribute it and/or modify it under |
| * the terms of the GNU General Public License as published by the Free |
| * Software Foundation; either version 2 of the License, or (at your option) |
| * any later version. |
| * |
| * In addition, as a special exception, the copyright holders give permission |
| * to link the code of portions of this program with the OpenSSL library under |
| * certain conditions as described in each individual source file, and |
| * distribute linked combinations including the two. You must obey the GNU |
| * General Public License in all respects for all of the code used other than |
| * OpenSSL. If you modify file(s) with this exception, you may extend this |
| * exception to your version of the file(s), but you are not obligated to do |
| * so. If you do not wish to do so, delete this exception statement from your |
| * version. If you delete this exception statement from all source files in |
| * the program, then also delete it here. |
| * |
| * Slurm 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 for more |
| * details. |
| * |
| * You should have received a copy of the GNU General Public License along |
| * with Slurm; if not, write to the Free Software Foundation, Inc., |
| * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| \*****************************************************************************/ |
| |
| #include "src/common/fd.h" |
| #include "src/common/io_hdr.h" |
| #include "src/common/run_in_daemon.h" |
| #include "src/common/slurm_protocol_defs.h" |
| #include "src/common/xstring.h" |
| |
| #include "src/interfaces/conn.h" |
| |
| void io_hdr_pack(io_hdr_t *hdr, buf_t *buffer) |
| { |
| uint16_t type = hdr->type; |
| |
| /* Verify that the header packet size hasn't suddenly changed */ |
| xassert(IO_HDR_PACKET_BYTES == |
| (sizeof(uint32_t) + (3 * sizeof(uint16_t)))); |
| |
| /* If this function changes, IO_HDR_PACKET_BYTES must change. */ |
| pack16(type, buffer); |
| pack16(hdr->gtaskid, buffer); |
| pack16(hdr->ltaskid, buffer); |
| pack32(hdr->length, buffer); |
| } |
| |
| int io_hdr_unpack(io_hdr_t *hdr, buf_t *buffer) |
| { |
| uint16_t type; |
| |
| if (size_buf(buffer) < IO_HDR_PACKET_BYTES) { |
| debug3("%s: Unable to pack with only %u/%u bytes present in buffer", |
| __func__, IO_HDR_PACKET_BYTES, size_buf(buffer)); |
| return EAGAIN; |
| } |
| |
| /* If this function changes, IO_HDR_PACKET_BYTES must change. */ |
| safe_unpack16(&type, buffer); |
| hdr->type = type; |
| |
| if ((hdr->type <= SLURM_IO_INVALID) || |
| (hdr->type >= SLURM_IO_INVALID_MAX)) |
| goto unpack_error; |
| |
| safe_unpack16(&hdr->gtaskid, buffer); |
| safe_unpack16(&hdr->ltaskid, buffer); |
| safe_unpack32(&hdr->length, buffer); |
| return SLURM_SUCCESS; |
| |
| unpack_error: |
| error("%s: error: %m", __func__); |
| return SLURM_ERROR; |
| } |
| |
| /* |
| * Only return when the all of the bytes have been read, or an unignorable |
| * error has occurred. |
| */ |
| static int _full_read(int fd, void *tls_conn, void *buf, size_t count) |
| { |
| int n; |
| int left; |
| void *ptr; |
| |
| left = count; |
| ptr = buf; |
| while (left > 0) { |
| again: |
| if (tls_conn) { |
| n = conn_g_recv(tls_conn, (void *) ptr, left); |
| } else { |
| n = read(fd, (void *) ptr, left); |
| } |
| if (n < 0) { |
| if (errno == EINTR |
| || errno == EAGAIN |
| || errno == EWOULDBLOCK) |
| goto again; |
| debug3("Leaving _full_read on error!"); |
| return -1; |
| } else if (n == 0) { /* got eof */ |
| debug3(" _full_read (_client_read) got eof"); |
| return 0; |
| } |
| left -= n; |
| ptr += n; |
| } |
| |
| return count; |
| } |
| |
| /* |
| * Read and unpack an io_hdr_t from a file descriptor (socket). |
| */ |
| int io_hdr_read_fd(int fd, void *tls_conn, io_hdr_t *hdr) |
| { |
| int n = 0; |
| buf_t *buffer = init_buf(IO_HDR_PACKET_BYTES); |
| |
| debug3("Entering %s", __func__); |
| n = _full_read(fd, tls_conn, buffer->head, IO_HDR_PACKET_BYTES); |
| if (n <= 0) |
| goto fail; |
| if (io_hdr_unpack(hdr, buffer) == SLURM_ERROR) { |
| n = -1; |
| goto fail; |
| } |
| |
| fail: |
| debug3("Leaving %s", __func__); |
| FREE_NULL_BUFFER(buffer); |
| return n; |
| } |
| |
| extern int io_init_msg_validate(io_init_msg_t *msg, const char *sig) |
| { |
| debug2("Entering io_init_msg_validate"); |
| |
| debug3(" msg->version = %x", msg->version); |
| debug3(" msg->nodeid = %u", msg->nodeid); |
| |
| if (msg->version < SLURM_MIN_PROTOCOL_VERSION) { |
| error("Invalid IO init header version"); |
| return SLURM_ERROR; |
| } |
| |
| if (xstrcmp(msg->io_key, sig)) { |
| error("Invalid IO init header signature"); |
| return SLURM_ERROR; |
| } |
| |
| debug2("Leaving %s", __func__); |
| return SLURM_SUCCESS; |
| } |
| |
| |
| static int io_init_msg_pack(io_init_msg_t *hdr, buf_t *buffer) |
| { |
| if (hdr->version >= SLURM_MIN_PROTOCOL_VERSION) { |
| uint32_t top_offset, tail_offset; |
| uint32_t len = 0; |
| |
| top_offset = get_buf_offset(buffer); |
| |
| pack32(len, buffer); |
| pack16(hdr->version, buffer); |
| pack32(hdr->nodeid, buffer); |
| pack32(hdr->stdout_objs, buffer); |
| pack32(hdr->stderr_objs, buffer); |
| packstr(hdr->io_key, buffer); |
| |
| tail_offset = get_buf_offset(buffer); |
| len = tail_offset - top_offset - sizeof(len); |
| set_buf_offset(buffer, top_offset); |
| pack32(len, buffer); |
| set_buf_offset(buffer, tail_offset); |
| } else { |
| error("Invalid IO init header version"); |
| return SLURM_ERROR; |
| } |
| |
| return SLURM_SUCCESS; |
| } |
| |
| |
| static int io_init_msg_unpack(io_init_msg_t *hdr, buf_t *buffer) |
| { |
| safe_unpack16(&hdr->version, buffer); |
| if (hdr->version >= SLURM_MIN_PROTOCOL_VERSION) { |
| safe_unpack32(&hdr->nodeid, buffer); |
| safe_unpack32(&hdr->stdout_objs, buffer); |
| safe_unpack32(&hdr->stderr_objs, buffer); |
| safe_unpackstr(&hdr->io_key, buffer); |
| } else |
| goto unpack_error; |
| |
| return SLURM_SUCCESS; |
| |
| unpack_error: |
| error("%s: unpack error", __func__); |
| return SLURM_ERROR; |
| } |
| |
| |
| int |
| io_init_msg_write_to_fd(int fd, void *tls_conn, io_init_msg_t *msg) |
| { |
| int rc = SLURM_ERROR; |
| buf_t *buf = init_buf(0); |
| |
| xassert(msg); |
| |
| debug2("%s: entering", __func__); |
| debug2("%s: msg->nodeid = %d", __func__, msg->nodeid); |
| if (io_init_msg_pack(msg, buf) != SLURM_SUCCESS) |
| goto rwfail; |
| |
| if (tls_enabled()) { |
| conn_g_send(tls_conn, buf->head, get_buf_offset(buf)); |
| } else { |
| safe_write(fd, buf->head, get_buf_offset(buf)); |
| } |
| rc = SLURM_SUCCESS; |
| |
| rwfail: |
| FREE_NULL_BUFFER(buf); |
| debug2("%s: leaving", __func__); |
| return rc; |
| } |
| |
| extern int io_init_msg_read_from_fd(int fd, void *tls_conn, io_init_msg_t *msg) |
| { |
| buf_t *buf = NULL; |
| uint32_t len; |
| int rc; |
| |
| xassert(msg); |
| |
| debug2("Entering %s", __func__); |
| if (wait_fd_readable(fd, 300)) { |
| error_in_daemon("io_init_msg_read timed out"); |
| return SLURM_ERROR; |
| } |
| |
| if (tls_enabled()) { |
| conn_g_recv(tls_conn, &len, sizeof(uint32_t)); |
| } else { |
| safe_read(fd, &len, sizeof(uint32_t)); |
| } |
| len = ntohl(len); |
| buf = init_buf(len); |
| |
| if (tls_enabled()) { |
| conn_g_recv(tls_conn, buf->head, len); |
| } else { |
| safe_read(fd, buf->head, len); |
| } |
| |
| if ((rc = io_init_msg_unpack(msg, buf))) |
| error_in_daemon("%s: io_init_msg_unpack failed: rc=%d", |
| __func__, rc); |
| |
| FREE_NULL_BUFFER(buf); |
| debug2("Leaving %s", __func__); |
| return rc; |
| |
| rwfail: |
| FREE_NULL_BUFFER(buf); |
| error_in_daemon("%s: reading slurm_io_init_msg failed: %m",__func__); |
| return SLURM_ERROR; |
| } |