blob: d278ce03784c9354f7016ccab9c64835dac4e921 [file] [log] [blame]
Harald Welte8857f3b2022-11-18 13:54:44 +01001/*! \file osmo_io.h
2 * io(_uring) abstraction osmo fd compatibility
3 */
4
5#pragma once
6
7#include <osmocom/core/linuxlist.h>
8#include <osmocom/core/logging.h>
9#include <osmocom/core/msgb.h>
10#include <osmocom/core/socket.h>
11#include <osmocom/core/utils.h>
12
13
14#define LOGPIO(iofd, level, fmt, args...) \
15 LOGP(DLIO, level, "iofd(%s)" fmt, iofd->name, ## args)
16
17struct osmo_io_fd;
18
19enum osmo_io_fd_mode {
20 /*! use read() / write() calls */
21 OSMO_IO_FD_MODE_READ_WRITE,
22 /*! use recvfrom() / sendto() calls */
23 OSMO_IO_FD_MODE_RECVFROM_SENDTO,
24 /*! emulate sctp_recvmsg() and sctp_sendmsg() */
25 OSMO_IO_FD_MODE_SCTP_RECVMSG_SENDMSG,
26};
27
28enum osmo_io_backend {
29 OSMO_IO_BACKEND_POLL,
30};
31
32extern const struct value_string osmo_io_backend_names[];
33static inline const char *osmo_io_backend_name(enum osmo_io_backend val)
34{ return get_value_string(osmo_io_backend_names, val); }
35
36struct osmo_io_ops {
37 union {
38 /* mode OSMO_IO_FD_MODE_READ_WRITE: */
39 struct {
40 /*! call-back function when something was read from fd */
41 void (*read_cb)(struct osmo_io_fd *iofd, int res, struct msgb *msg);
42 /*! call-back function when write has completed on fd */
43 void (*write_cb)(struct osmo_io_fd *iofd, int res,
Daniel Willmann3ed87722023-06-06 11:34:14 +020044 struct msgb *msg);
Daniel Willmannd4d03702023-05-17 12:38:14 +020045 /*! call-back function to segment the data at message boundaries.
46 * Needs to return the size of the next message. If it returns
47 * -EAGAIN or a value larger than msgb_length() (message is incomplete)
48 * osmo_io will wait for more data to be read. Other negative values
49 * cause the msg to be discarded. */
50 int (*segmentation_cb)(struct msgb *msg);
Harald Welte8857f3b2022-11-18 13:54:44 +010051 };
52
53 /* mode OSMO_IO_FD_MODE_RECVFROM_SENDTO: */
54 struct {
Harald Welte8857f3b2022-11-18 13:54:44 +010055 /*! call-back function emulating recvfrom */
56 void (*recvfrom_cb)(struct osmo_io_fd *iofd, int res,
57 struct msgb *msg,
58 const struct osmo_sockaddr *saddr);
Daniel Willmann2dd8da62023-06-06 11:34:51 +020059 /*! call-back function emulating sendto */
60 void (*sendto_cb)(struct osmo_io_fd *iofd, int res,
Daniel Willmann3ed87722023-06-06 11:34:14 +020061 struct msgb *msg,
Daniel Willmann2dd8da62023-06-06 11:34:51 +020062 const struct osmo_sockaddr *daddr);
Harald Welte8857f3b2022-11-18 13:54:44 +010063 };
64 };
65};
66
67void osmo_io_init(void);
68
69struct osmo_io_fd *osmo_iofd_setup(const void *ctx, int fd, const char *name,
70 enum osmo_io_fd_mode mode, const struct osmo_io_ops *ioops, void *data);
71int osmo_iofd_register(struct osmo_io_fd *iofd, int fd);
72int osmo_iofd_unregister(struct osmo_io_fd *iofd);
73unsigned int osmo_iofd_txqueue_len(struct osmo_io_fd *iofd);
74void osmo_iofd_txqueue_clear(struct osmo_io_fd *iofd);
75int osmo_iofd_close(struct osmo_io_fd *iofd);
76void osmo_iofd_free(struct osmo_io_fd *iofd);
Harald Welte8857f3b2022-11-18 13:54:44 +010077
78int osmo_iofd_write_msgb(struct osmo_io_fd *iofd, struct msgb *msg);
79int osmo_iofd_sendto_msgb(struct osmo_io_fd *iofd, struct msgb *msg, int sendto_flags,
80 const struct osmo_sockaddr *dest);
81
82void osmo_iofd_set_alloc_info(struct osmo_io_fd *iofd, unsigned int size, unsigned int headroom);
83void *osmo_iofd_get_data(const struct osmo_io_fd *iofd);
84void osmo_iofd_set_data(struct osmo_io_fd *iofd, void *data);
85
86unsigned int osmo_iofd_get_priv_nr(const struct osmo_io_fd *iofd);
87void osmo_iofd_set_priv_nr(struct osmo_io_fd *iofd, unsigned int priv_nr);
88
89int osmo_iofd_get_fd(const struct osmo_io_fd *iofd);
90const char *osmo_iofd_get_name(const struct osmo_io_fd *iofd);
arehbein0c374c62023-05-14 21:43:11 +020091
92void osmo_iofd_set_ioops(struct osmo_io_fd *iofd, const struct osmo_io_ops *ioops);