blob: db1b5adf5d7d0603269961cc166a831674ff1f46 [file] [log] [blame]
Harald Welte8857f3b2022-11-18 13:54:44 +01001/*! \file osmo_io.c
2 * New osmocom async I/O API.
3 *
4 * (C) 2022 by Harald Welte <laforge@osmocom.org>
5 * (C) 2022-2023 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
6 * Author: Daniel Willmann <dwillmann@sysmocom.de>
7 *
8 * All Rights Reserved.
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 */
22
23#include "../config.h"
24#if defined(__linux__)
25
26#include <fcntl.h>
27#include <stdio.h>
28#include <stdlib.h>
29#include <talloc.h>
30#include <unistd.h>
31#include <string.h>
32#include <stdbool.h>
33#include <errno.h>
34
35#include <osmocom/core/osmo_io.h>
36#include <osmocom/core/linuxlist.h>
37#include <osmocom/core/logging.h>
38#include <osmocom/core/msgb.h>
39#include <osmocom/core/socket.h>
40#include <osmocom/core/talloc.h>
41#include <osmocom/core/utils.h>
42
43#include "osmo_io_internal.h"
44
45/*! This environment variable can be set to manually set the backend used in osmo_io */
46#define OSMO_IO_BACKEND_ENV "LIBOSMO_IO_BACKEND"
47
48const struct value_string osmo_io_backend_names[] = {
49 { OSMO_IO_BACKEND_POLL, "poll" },
50 { 0, NULL }
51};
52
53static enum osmo_io_backend g_io_backend;
54
55/* Used by some tests, can't be static */
56struct iofd_backend_ops osmo_iofd_ops;
57
58/*! initialize osmo_io for the current thread */
59void osmo_iofd_init(void)
60{
61 switch (g_io_backend) {
62 case OSMO_IO_BACKEND_POLL:
63 break;
64 default:
65 OSMO_ASSERT(0);
66 break;
67 }
68}
69
70/* ensure main thread always has pre-initialized osmo_io
71 * priority 103: run after on_dso_load_select */
72static __attribute__((constructor(103))) void on_dso_load_osmo_io(void)
73{
74 char *backend = getenv(OSMO_IO_BACKEND_ENV);
75 if (backend == NULL)
76 backend = OSMO_IO_BACKEND_DEFAULT;
77
78 if (!strcmp("POLL", backend)) {
79 g_io_backend = OSMO_IO_BACKEND_POLL;
80 osmo_iofd_ops = iofd_poll_ops;
81 } else {
82 fprintf(stderr, "Invalid osmo_io backend requested: \"%s\"\nCheck the environment variable %s\n", backend, OSMO_IO_BACKEND_ENV);
83 exit(1);
84 }
85
86 osmo_iofd_init();
87}
88
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +020089/*! Allocate the msghdr.
Harald Welte8857f3b2022-11-18 13:54:44 +010090 * \param[in] iofd the osmo_io file structure
91 * \param[in] action the action this msg(hdr) is for (read, write, ..)
92 * \param[in] msg the msg buffer to use. Will allocate a new one if NULL
93 * \returns the newly allocated msghdr or NULL in case of error */
94struct iofd_msghdr *iofd_msghdr_alloc(struct osmo_io_fd *iofd, enum iofd_msg_action action, struct msgb *msg)
95{
96 struct iofd_msghdr *hdr = talloc_zero(iofd, struct iofd_msghdr);
97 if (!hdr)
98 return NULL;
99 if (!msg) {
100 msg = iofd_msgb_alloc(iofd);
101 if (!msg) {
102 talloc_free(hdr);
103 return NULL;
104 }
Daniel Willmannf0833822023-07-27 18:00:32 +0200105 } else {
106 talloc_steal(iofd->msgb_alloc.ctx, msg);
Harald Welte8857f3b2022-11-18 13:54:44 +0100107 }
108
109 hdr->action = action;
110 hdr->iofd = iofd;
111 hdr->msg = msg;
112
113 return hdr;
114}
115
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200116/*! Free the msghdr.
Harald Welte8857f3b2022-11-18 13:54:44 +0100117 * \param[in] msghdr the msghdr to free
118 */
119void iofd_msghdr_free(struct iofd_msghdr *msghdr)
120{
121 /* msghdr->msg is never owned by msghdr, it will either be freed in the send path or
122 * or passed on to the read callback which takes ownership. */
123 talloc_free(msghdr);
124}
125
126/*! convenience wrapper to call msgb_alloc with parameters from osmo_io_fd */
127struct msgb *iofd_msgb_alloc(struct osmo_io_fd *iofd)
128{
129 uint16_t headroom = iofd->msgb_alloc.headroom;
130
131 OSMO_ASSERT(iofd->msgb_alloc.size < 0xffff - headroom);
132 return msgb_alloc_headroom_c(iofd->msgb_alloc.ctx,
Pau Espin Pedrol63e45e62023-06-16 16:19:45 +0200133 iofd->msgb_alloc.size + headroom, headroom,
134 iofd->name ? : "iofd_msgb");
Harald Welte8857f3b2022-11-18 13:54:44 +0100135}
136
137/*! return the pending msgb in iofd or NULL if there is none*/
138struct msgb *iofd_msgb_pending(struct osmo_io_fd *iofd)
139{
140 struct msgb *msg = NULL;
141
142 msg = iofd->pending;
143 iofd->pending = NULL;
144
145 return msg;
146}
147
148/*! Return the pending msgb or allocate and return a new one */
149struct msgb *iofd_msgb_pending_or_alloc(struct osmo_io_fd *iofd)
150{
151 struct msgb *msg = NULL;
152
153 msg = iofd_msgb_pending(iofd);
154 if (!msg)
155 msg = iofd_msgb_alloc(iofd);
156
157 return msg;
158}
159
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200160/*! Enqueue a message to be sent.
Harald Welte8857f3b2022-11-18 13:54:44 +0100161 *
162 * Enqueues the message at the back of the queue provided there is enough space.
163 * \param[in] iofd the file descriptor
164 * \param[in] msghdr the message to enqueue
165 * \returns 0 if the message was enqueued succcessfully,
166 * -ENOSPC if the queue already contains the maximum number of messages
167 */
168int iofd_txqueue_enqueue(struct osmo_io_fd *iofd, struct iofd_msghdr *msghdr)
169{
170 if (iofd->tx_queue.current_length >= iofd->tx_queue.max_length)
171 return -ENOSPC;
172
173 llist_add_tail(&msghdr->list, &iofd->tx_queue.msg_queue);
174 iofd->tx_queue.current_length++;
175
Daniel Willmanne4ecd992023-06-30 10:52:11 +0200176 if (iofd->tx_queue.current_length == 1 && !IOFD_FLAG_ISSET(iofd, IOFD_FLAG_CLOSED))
Harald Welte8857f3b2022-11-18 13:54:44 +0100177 osmo_iofd_ops.write_enable(iofd);
178
179 return 0;
180}
181
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200182/*! Enqueue a message at the front.
Harald Welte8857f3b2022-11-18 13:54:44 +0100183 *
184 * Used to enqueue a msgb from a partial send again. This function will always
185 * enqueue the message, even if the maximum number of messages is reached.
186 * \param[in] iofd the file descriptor
187 * \param[in] msghdr the message to enqueue
188 */
189void iofd_txqueue_enqueue_front(struct osmo_io_fd *iofd, struct iofd_msghdr *msghdr)
190{
191 llist_add(&msghdr->list, &iofd->tx_queue.msg_queue);
192 iofd->tx_queue.current_length++;
Daniel Willmanne4ecd992023-06-30 10:52:11 +0200193
194 if (iofd->tx_queue.current_length == 1 && !IOFD_FLAG_ISSET(iofd, IOFD_FLAG_CLOSED))
195 osmo_iofd_ops.write_enable(iofd);
Harald Welte8857f3b2022-11-18 13:54:44 +0100196}
197
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200198/*! Dequeue a message from the front.
Harald Welte8857f3b2022-11-18 13:54:44 +0100199 *
200 * \param[in] iofd the file descriptor
201 * \returns the msghdr from the front of the queue or NULL if the queue is empty
202 */
203struct iofd_msghdr *iofd_txqueue_dequeue(struct osmo_io_fd *iofd)
204{
205 struct llist_head *lh;
206
207 if (iofd->tx_queue.current_length == 0)
208 return NULL;
209
210 lh = iofd->tx_queue.msg_queue.next;
211
212 OSMO_ASSERT(lh);
213 iofd->tx_queue.current_length--;
214 llist_del(lh);
215
216 if (iofd->tx_queue.current_length == 0)
217 osmo_iofd_ops.write_disable(iofd);
218
219 return llist_entry(lh, struct iofd_msghdr, list);
220}
221
222/*! Handle segmentation of the msg. If this function returns *_HANDLE_ONE or MORE then the data in msg will contain
223 * one complete message.
224 * If there are bytes left over, *pending_out will point to a msgb with the remaining data.
225*/
226static enum iofd_seg_act iofd_handle_segmentation(struct osmo_io_fd *iofd, struct msgb *msg, struct msgb **pending_out)
227{
arehbeinc0aa4bd2023-06-16 22:31:32 +0200228 int extra_len, received_len;
Harald Welte8857f3b2022-11-18 13:54:44 +0100229 struct msgb *msg_pending;
230
Daniel Willmann7b59bab2023-07-07 11:17:59 +0200231 /* Save the start of message before segmentation_cb (which could change it) */
232 uint8_t *data = msg->data;
233
arehbeinc0aa4bd2023-06-16 22:31:32 +0200234 received_len = msgb_length(msg);
Harald Welte8857f3b2022-11-18 13:54:44 +0100235
236 if (!iofd->io_ops.segmentation_cb) {
237 *pending_out = NULL;
238 return IOFD_SEG_ACT_HANDLE_ONE;
239 }
240
arehbeinc0aa4bd2023-06-16 22:31:32 +0200241 int expected_len = iofd->io_ops.segmentation_cb(msg);
242 if (expected_len == -EAGAIN) {
Daniel Willmannd4d03702023-05-17 12:38:14 +0200243 goto defer;
arehbeinc0aa4bd2023-06-16 22:31:32 +0200244 } else if (expected_len < 0) {
Daniel Willmannd4d03702023-05-17 12:38:14 +0200245 /* Something is wrong, skip this msgb */
arehbeinc0aa4bd2023-06-16 22:31:32 +0200246 LOGPIO(iofd, LOGL_ERROR, "segmentation_cb returned error (%d), skipping msg of size %d\n",
247 expected_len, received_len);
Harald Welte8857f3b2022-11-18 13:54:44 +0100248 *pending_out = NULL;
Daniel Willmannd4d03702023-05-17 12:38:14 +0200249 msgb_free(msg);
Harald Welte8857f3b2022-11-18 13:54:44 +0100250 return IOFD_SEG_ACT_DEFER;
251 }
252
arehbeinc0aa4bd2023-06-16 22:31:32 +0200253 extra_len = received_len - expected_len;
Daniel Willmannd4d03702023-05-17 12:38:14 +0200254 /* No segmentation needed, return the whole msgb */
255 if (extra_len == 0) {
256 *pending_out = NULL;
257 return IOFD_SEG_ACT_HANDLE_ONE;
258 /* segment is incomplete */
259 } else if (extra_len < 0) {
260 goto defer;
261 }
262
263 /* msgb contains more than one segment */
264 /* Copy the trailing data over */
Harald Welte8857f3b2022-11-18 13:54:44 +0100265 msg_pending = iofd_msgb_alloc(iofd);
Daniel Willmann7b59bab2023-07-07 11:17:59 +0200266 memcpy(msgb_data(msg_pending), data + expected_len, extra_len);
Daniel Willmannd4d03702023-05-17 12:38:14 +0200267 msgb_put(msg_pending, extra_len);
Harald Welte8857f3b2022-11-18 13:54:44 +0100268 *pending_out = msg_pending;
269
Daniel Willmann7b59bab2023-07-07 11:17:59 +0200270 /* Trim the original msgb to size. Don't use msgb_trim because we need to reference
271 * msg->data from before it might have been modified by the segmentation_cb(). */
Daniel Willmann7b59bab2023-07-07 11:17:59 +0200272 msg->tail = data + expected_len;
Daniel Willmann97d21442023-07-18 09:46:27 +0200273 msg->len = msg->tail - msg->data;
Harald Welte8857f3b2022-11-18 13:54:44 +0100274 return IOFD_SEG_ACT_HANDLE_MORE;
Daniel Willmannd4d03702023-05-17 12:38:14 +0200275
276defer:
277 *pending_out = msg;
278 return IOFD_SEG_ACT_DEFER;
Harald Welte8857f3b2022-11-18 13:54:44 +0100279}
280
281/*! Restore message boundaries on read() and pass individual messages to the read callback
282 */
283void iofd_handle_segmented_read(struct osmo_io_fd *iofd, struct msgb *msg, int rc)
284{
285 int res;
286 struct msgb *pending = NULL;
287
288 if (rc <= 0) {
289 iofd->io_ops.read_cb(iofd, rc, msg);
290 return;
291 }
292
293 do {
294 res = iofd_handle_segmentation(iofd, msg, &pending);
295 if (res != IOFD_SEG_ACT_DEFER || rc < 0)
296 iofd->io_ops.read_cb(iofd, rc, msg);
297 if (res == IOFD_SEG_ACT_HANDLE_MORE)
298 msg = pending;
299 } while (res == IOFD_SEG_ACT_HANDLE_MORE);
300
301 OSMO_ASSERT(iofd->pending == NULL);
302 iofd->pending = pending;
303}
304
305/* Public functions */
306
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200307/*! Send a message through a connected socket.
Harald Welte8857f3b2022-11-18 13:54:44 +0100308 *
309 * Appends the message to the internal transmit queue.
310 * If the function returns success (0) it will take ownership of the msgb and
311 * internally call msgb_free() after the write request completes.
312 * In case of an error the msgb needs to be freed by the caller.
313 * \param[in] iofd file descriptor to write to
314 * \param[in] msg message buffer to write
315 * \returns 0 in case of success; a negative value in case of error
316 */
317int osmo_iofd_write_msgb(struct osmo_io_fd *iofd, struct msgb *msg)
318{
319 int rc;
320 struct iofd_msghdr *msghdr = iofd_msghdr_alloc(iofd, IOFD_ACT_WRITE, msg);
321 if (!msghdr)
322 return -ENOMEM;
323
Daniel Willmann92efac22023-08-01 09:55:13 +0200324 msghdr->flags = MSG_NOSIGNAL;
Harald Welte8857f3b2022-11-18 13:54:44 +0100325 msghdr->iov[0].iov_base = msgb_data(msghdr->msg);
326 msghdr->iov[0].iov_len = msgb_length(msghdr->msg);
327 msghdr->hdr.msg_iov = &msghdr->iov[0];
328 msghdr->hdr.msg_iovlen = 1;
329
330 rc = iofd_txqueue_enqueue(iofd, msghdr);
331 if (rc < 0) {
332 iofd_msghdr_free(msghdr);
333 LOGPIO(iofd, LOGL_ERROR, "enqueueing message failed (%d). Rejecting msgb\n", rc);
334 return rc;
335 }
336
337 return 0;
338}
339
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200340/*! Send a message through an unconnected socket.
Harald Welte8857f3b2022-11-18 13:54:44 +0100341 *
342 * Appends the message to the internal transmit queue.
343 * If the function returns success (0), it will take ownership of the msgb and
344 * internally call msgb_free() after the write request completes.
345 * In case of an error the msgb needs to be freed by the caller.
346 * \param[in] iofd file descriptor to write to
347 * \param[in] msg message buffer to send
348 * \param[in] sendto_flags Flags to pass to the send call
349 * \param[in] dest destination address to send the message to
350 * \returns 0 in case of success; a negative value in case of error
351 */
352int osmo_iofd_sendto_msgb(struct osmo_io_fd *iofd, struct msgb *msg, int sendto_flags, const struct osmo_sockaddr *dest)
353{
354 int rc;
355
356 OSMO_ASSERT(iofd->mode == OSMO_IO_FD_MODE_RECVFROM_SENDTO);
357
358 struct iofd_msghdr *msghdr = iofd_msghdr_alloc(iofd, IOFD_ACT_SENDTO, msg);
359 if (!msghdr)
360 return -ENOMEM;
361
362 if (dest) {
363 msghdr->osa = *dest;
364 msghdr->hdr.msg_name = &msghdr->osa.u.sa;
365 msghdr->hdr.msg_namelen = osmo_sockaddr_size(&msghdr->osa);
366 }
367 msghdr->flags = sendto_flags;
368 msghdr->iov[0].iov_base = msgb_data(msghdr->msg);
369 msghdr->iov[0].iov_len = msgb_length(msghdr->msg);
370 msghdr->hdr.msg_iov = &msghdr->iov[0];
371 msghdr->hdr.msg_iovlen = 1;
372
373 rc = iofd_txqueue_enqueue(iofd, msghdr);
374 if (rc < 0) {
375 iofd_msghdr_free(msghdr);
376 LOGPIO(iofd, LOGL_ERROR, "enqueueing message failed (%d). Rejecting msgb\n", rc);
377 return rc;
378 }
379
380 return 0;
381}
382
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200383/*! Allocate and setup a new iofd.
Harald Welte8857f3b2022-11-18 13:54:44 +0100384 * \param[in] ctx the parent context from which to allocate
385 * \param[in] fd the underlying system file descriptor
386 * \param[in] name the name of the iofd
387 * \param[in] mode the mode of the iofd, whether it should use read()/write(), sendto()/recvfrom()
388 * \param[in] ioops structure with read/write/send/recv callbacks
389 * \param[in] data user data pointer accessible by the ioops callbacks
390 * \returns The newly allocated osmo_io_fd struct or NULL on failure
391 */
392struct osmo_io_fd *osmo_iofd_setup(const void *ctx, int fd, const char *name, enum osmo_io_fd_mode mode,
393 const struct osmo_io_ops *ioops, void *data)
394{
395 struct osmo_io_fd *iofd = talloc_zero(ctx, struct osmo_io_fd);
396 if (!iofd)
397 return NULL;
398
399 iofd->fd = fd;
400 iofd->mode = mode;
Daniel Willmannf89162f2023-06-26 19:24:46 +0200401 IOFD_FLAG_SET(iofd, IOFD_FLAG_CLOSED);
Harald Welte8857f3b2022-11-18 13:54:44 +0100402
Pau Espin Pedrol63e45e62023-06-16 16:19:45 +0200403 if (name)
404 iofd->name = talloc_strdup(iofd, name);
Harald Welte8857f3b2022-11-18 13:54:44 +0100405
406 if (ioops)
407 iofd->io_ops = *ioops;
408
409 iofd->pending = NULL;
410
411 iofd->data = data;
412
413 iofd->msgb_alloc.ctx = ctx;
414 iofd->msgb_alloc.size = OSMO_IO_DEFAULT_MSGB_SIZE;
415 iofd->msgb_alloc.headroom = OSMO_IO_DEFAULT_MSGB_HEADROOM;
416
417 iofd->tx_queue.max_length = 32;
418 INIT_LLIST_HEAD(&iofd->tx_queue.msg_queue);
419
420 return iofd;
421}
422
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200423/*! Register the fd with the underlying backend.
Harald Welte8857f3b2022-11-18 13:54:44 +0100424 *
425 * \param[in] iofd the iofd file descriptor
426 * \param[in] fd the system fd number that will be registeres. If negative will use the one already set.
427 * \returns zero on success, a negative value on error
428*/
429int osmo_iofd_register(struct osmo_io_fd *iofd, int fd)
430{
Daniel Willmanneb9edba2023-06-06 16:53:38 +0200431 int rc = 0;
432
Harald Welte8857f3b2022-11-18 13:54:44 +0100433 if (fd >= 0)
434 iofd->fd = fd;
Harald Welte8857f3b2022-11-18 13:54:44 +0100435
436 if (osmo_iofd_ops.register_fd)
Daniel Willmanneb9edba2023-06-06 16:53:38 +0200437 rc = osmo_iofd_ops.register_fd(iofd);
Daniel Willmannacb97762023-06-07 17:02:31 +0200438 if (rc)
439 return rc;
Harald Welte8857f3b2022-11-18 13:54:44 +0100440
Daniel Willmannf89162f2023-06-26 19:24:46 +0200441 IOFD_FLAG_UNSET(iofd, IOFD_FLAG_CLOSED);
Daniel Willmanneb9edba2023-06-06 16:53:38 +0200442 osmo_iofd_ops.read_enable(iofd);
Daniel Willmanne2a8dc42023-06-30 10:51:53 +0200443
444 if (iofd->tx_queue.current_length > 0)
445 osmo_iofd_ops.write_enable(iofd);
Daniel Willmanneb9edba2023-06-06 16:53:38 +0200446
447 return rc;
Harald Welte8857f3b2022-11-18 13:54:44 +0100448}
449
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200450/*! Unregister the fd from the underlying backend.
Harald Welte8857f3b2022-11-18 13:54:44 +0100451 *
452 * \param[in] iofd the file descriptor
453 * \returns zero on success, a negative value on error
454 */
455int osmo_iofd_unregister(struct osmo_io_fd *iofd)
456{
457 if (osmo_iofd_ops.unregister_fd)
458 return osmo_iofd_ops.unregister_fd(iofd);
Daniel Willmannf89162f2023-06-26 19:24:46 +0200459 IOFD_FLAG_SET(iofd, IOFD_FLAG_CLOSED);
Harald Welte8857f3b2022-11-18 13:54:44 +0100460
461 return 0;
462}
463
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200464/*! Get the number of messages in the tx queue.
Harald Welte8857f3b2022-11-18 13:54:44 +0100465 *
466 * \param[in] iofd the file descriptor
467 */
468unsigned int osmo_iofd_txqueue_len(struct osmo_io_fd *iofd)
469{
470 return iofd->tx_queue.current_length;
471}
472
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200473/*! Clear the transmit queue of the the iofd.
Harald Welte8857f3b2022-11-18 13:54:44 +0100474 *
475 * This function frees all messages currently pending in the transmit queue
476 * \param[in] iofd the file descriptor
477 */
478void osmo_iofd_txqueue_clear(struct osmo_io_fd *iofd)
479{
480 struct iofd_msghdr *hdr;
481 while ((hdr = iofd_txqueue_dequeue(iofd))) {
482 msgb_free(hdr->msg);
483 iofd_msghdr_free(hdr);
484 }
485}
486
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200487/*! Free the iofd.
Harald Welte8857f3b2022-11-18 13:54:44 +0100488 *
489 * This function is safe to use in the read/write callbacks and will defer freeing it until safe to do so.
490 * The iofd will be closed before.
491 * \param[in] iofd the file descriptor
492 */
493void osmo_iofd_free(struct osmo_io_fd *iofd)
494{
495 if (!iofd)
496 return;
497
498 osmo_iofd_close(iofd);
499
Daniel Willmannf89162f2023-06-26 19:24:46 +0200500 if (!IOFD_FLAG_ISSET(iofd, IOFD_FLAG_IN_CALLBACK)) {
Harald Welte8857f3b2022-11-18 13:54:44 +0100501 talloc_free(iofd);
502 } else {
503 /* Prevent our parent context from freeing us prematurely */
504 talloc_steal(NULL, iofd);
Daniel Willmannf89162f2023-06-26 19:24:46 +0200505 IOFD_FLAG_SET(iofd, IOFD_FLAG_TO_FREE);
Harald Welte8857f3b2022-11-18 13:54:44 +0100506 }
507}
508
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200509/*! Close the iofd.
Harald Welte8857f3b2022-11-18 13:54:44 +0100510 *
511 * This function closes the underlying fd and clears any messages in the tx queue
512 * The iofd is not freed and can be assigned a new file descriptor with osmo_iofd_register()
513 * \param[in] iofd the file descriptor
514 * \ returns 0 on success, a negative value otherwise
515 */
516int osmo_iofd_close(struct osmo_io_fd *iofd)
517{
518 int rc = 0;
519
Daniel Willmannf89162f2023-06-26 19:24:46 +0200520 if (IOFD_FLAG_ISSET(iofd, IOFD_FLAG_CLOSED))
Harald Welte8857f3b2022-11-18 13:54:44 +0100521 return rc;
522
Daniel Willmannf89162f2023-06-26 19:24:46 +0200523 IOFD_FLAG_SET(iofd, IOFD_FLAG_CLOSED);
Harald Welte8857f3b2022-11-18 13:54:44 +0100524
525 /* Free pending msgs in tx queue */
526 osmo_iofd_txqueue_clear(iofd);
527 msgb_free(iofd->pending);
528
529 iofd->pending = NULL;
530
531 if (osmo_iofd_ops.close)
532 rc = osmo_iofd_ops.close(iofd);
533 iofd->fd = -1;
534 return rc;
535}
536
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200537/*! Set the size and headroom of the msgb allocated when receiving messages.
Daniel Willmann4731e712023-07-07 11:21:15 +0200538 * \param[in] iofd the file descriptor
Harald Welte8857f3b2022-11-18 13:54:44 +0100539 * \param[in] size the size of the msgb when receiving data
540 * \param[in] headroom the headroom of the msgb when receiving data
541 */
542void osmo_iofd_set_alloc_info(struct osmo_io_fd *iofd, unsigned int size, unsigned int headroom)
543{
544 iofd->msgb_alloc.headroom = headroom;
545 iofd->msgb_alloc.size = size;
546}
547
Daniel Willmanna9303f32023-07-07 11:20:48 +0200548/*! Set the maximum number of messages enqueued for sending.
549 * \param[in] iofd the file descriptor
550 * \param[in] size the maximum size of the transmit queue
551 */
552void osmo_iofd_set_txqueue_max_length(struct osmo_io_fd *iofd, unsigned int max_length)
553{
554 iofd->tx_queue.max_length = max_length;
555}
556
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200557/*! Get the associated user-data from an iofd.
Harald Welte8857f3b2022-11-18 13:54:44 +0100558 * \param[in] iofd the file descriptor
559 * \returns the data that was previously set with \ref osmo_iofd_setup()
560 */
561void *osmo_iofd_get_data(const struct osmo_io_fd *iofd)
562{
563 return iofd->data;
564}
565
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200566/*! Set the associated user-data from an iofd.
Harald Welte8857f3b2022-11-18 13:54:44 +0100567 * \param[in] iofd the file descriptor
568 * \param[in] data the data to set
569 */
570void osmo_iofd_set_data(struct osmo_io_fd *iofd, void *data)
571{
572 iofd->data = data;
573}
574
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200575/*! Get the private number from an iofd.
Harald Welte8857f3b2022-11-18 13:54:44 +0100576 * \param[in] iofd the file descriptor
577 * \returns the private number that was previously set with \ref osmo_iofd_set_priv_nr()
578 */
579unsigned int osmo_iofd_get_priv_nr(const struct osmo_io_fd *iofd)
580{
581 return iofd->priv_nr;
582}
583
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200584/*! Set the private number from an iofd.
Harald Welte8857f3b2022-11-18 13:54:44 +0100585 * \param[in] iofd the file descriptor
586 * \param[in] priv_nr the private number to set
587 */
588void osmo_iofd_set_priv_nr(struct osmo_io_fd *iofd, unsigned int priv_nr)
589{
590 iofd->priv_nr = priv_nr;
591}
592
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200593/*! Get the underlying file descriptor from an iofd.
Harald Welte8857f3b2022-11-18 13:54:44 +0100594 * \param[in] iofd the file descriptor
595 * \returns the underlying file descriptor number */
596int osmo_iofd_get_fd(const struct osmo_io_fd *iofd)
597{
598 return iofd->fd;
599}
600
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200601/*! Get the name of the file descriptor.
Harald Welte8857f3b2022-11-18 13:54:44 +0100602 * \param[in] iofd the file descriptor
603 * \returns the name of the iofd as given in \ref osmo_iofd_setup() */
604const char *osmo_iofd_get_name(const struct osmo_io_fd *iofd)
605{
606 return iofd->name;
607}
608
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200609/*! Set the name of the file descriptor.
Pau Espin Pedrol63e45e62023-06-16 16:19:45 +0200610 * \param[in] iofd the file descriptor
611 * \param[in] name the name to set on the file descriptor */
612void osmo_iofd_set_name(struct osmo_io_fd *iofd, const char *name)
613{
614 osmo_talloc_replace_string(iofd, &iofd->name, name);
615}
616
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200617/*! Set the osmo_io_ops for an iofd.
arehbein0c374c62023-05-14 21:43:11 +0200618 * \param[in] iofd Target iofd file descriptor
619 * \param[in] ioops osmo_io_ops structure to be set */
620void osmo_iofd_set_ioops(struct osmo_io_fd *iofd, const struct osmo_io_ops *ioops)
621{
622 iofd->io_ops = *ioops;
623}
624
Daniel Willmannd0d9ecb2023-07-12 11:55:52 +0200625/*! Notify the user if/when the socket is connected.
Daniel Willmanne2a8dc42023-06-30 10:51:53 +0200626 * When the socket is connected the write_cb will be called.
627 * \param[in] iofd the file descriptor */
628void osmo_iofd_notify_connected(struct osmo_io_fd *iofd)
629{
630 OSMO_ASSERT(iofd->mode == OSMO_IO_FD_MODE_READ_WRITE);
631 osmo_iofd_ops.write_enable(iofd);
632}
633
634
Harald Welte8857f3b2022-11-18 13:54:44 +0100635#endif /* defined(__linux__) */