libosmocore 1.13.1.12-8e6ea
Osmocom core library
osmo_io.h
Go to the documentation of this file.
1
5#pragma once
6
9#include <osmocom/core/msgb.h>
10#include <osmocom/core/socket.h>
11#include <osmocom/core/utils.h>
12
13/* struct msghdr is defined in sys/socket.h but that header may not be available.
14 * We only really need a forward declaration here: */
15struct msghdr;
16
59#define LOGPIO(iofd, level, fmt, args...) \
60 LOGP(DLIO, level, "iofd(%s) " fmt, iofd->name, ## args)
61
62struct osmo_io_fd;
63
73};
74
81};
82
90};
91
93
94extern const struct value_string osmo_io_backend_names[];
96static inline const char *osmo_io_backend_name(enum osmo_io_backend val)
98
99extern const struct value_string osmo_iofd_mode_names[];
101static inline const char *osmo_iofd_mode_name(enum osmo_io_fd_mode val)
103
106 /* mode OSMO_IO_FD_MODE_READ_WRITE: */
107 struct {
118 void (*read_cb)(struct osmo_io_fd *iofd, int res, struct msgb *msg);
119
126 void (*write_cb)(struct osmo_io_fd *iofd, int res,
127 struct msgb *msg);
128
148 int (*segmentation_cb)(struct msgb *msg);
149
163 int (*segmentation_cb2)(struct osmo_io_fd *iofd, struct msgb *msg);
164 };
165
166 /* mode OSMO_IO_FD_MODE_RECVFROM_SENDTO: */
167 struct {
175 void (*recvfrom_cb)(struct osmo_io_fd *iofd, int res,
176 struct msgb *msg,
177 const struct osmo_sockaddr *saddr);
185 void (*sendto_cb)(struct osmo_io_fd *iofd, int res,
186 struct msgb *msg,
187 const struct osmo_sockaddr *daddr);
188 };
189
190 /* mode OSMO_IO_FD_MODE_RECVMSG_SENDMSG: */
191 struct {
200 void (*recvmsg_cb)(struct osmo_io_fd *iofd, int res,
201 struct msgb *msg, const struct msghdr *msgh);
208 void (*sendmsg_cb)(struct osmo_io_fd *iofd, int res, struct msgb *msg);
209 };
210};
211
212void osmo_iofd_init(void);
213
214struct osmo_io_fd *osmo_iofd_setup(const void *ctx, int fd, const char *name,
215 enum osmo_io_fd_mode mode, const struct osmo_io_ops *ioops, void *data);
216int osmo_iofd_set_cmsg_size(struct osmo_io_fd *iofd, size_t cmsg_size);
217int osmo_iofd_set_io_buffers(struct osmo_io_fd *iofd, enum osmo_io_op op, uint8_t buffers);
218int osmo_iofd_set_sqes(struct osmo_io_fd *iofd, enum osmo_io_op op, uint8_t sqes);
219int osmo_iofd_register(struct osmo_io_fd *iofd, int fd);
220int osmo_iofd_unregister(struct osmo_io_fd *iofd);
221unsigned int osmo_iofd_txqueue_len(struct osmo_io_fd *iofd);
222void osmo_iofd_txqueue_clear(struct osmo_io_fd *iofd);
223int osmo_iofd_close(struct osmo_io_fd *iofd);
224void osmo_iofd_free(struct osmo_io_fd *iofd);
225
226void osmo_iofd_notify_connected(struct osmo_io_fd *iofd);
227
228int osmo_iofd_write_msgb(struct osmo_io_fd *iofd, struct msgb *msg);
229int osmo_iofd_sendto_msgb(struct osmo_io_fd *iofd, struct msgb *msg, int sendto_flags,
230 const struct osmo_sockaddr *dest);
231int osmo_iofd_sendmsg_msgb(struct osmo_io_fd *iofd, struct msgb *msg, int sendmsg_flags,
232 const struct msghdr *msgh);
233
234void osmo_iofd_set_alloc_info(struct osmo_io_fd *iofd, unsigned int size, unsigned int headroom);
235void osmo_iofd_set_txqueue_max_length(struct osmo_io_fd *iofd, unsigned int size);
236unsigned int osmo_iofd_get_txqueue_max_length(const struct osmo_io_fd *iofd);
237void *osmo_iofd_get_data(const struct osmo_io_fd *iofd);
238void osmo_iofd_set_data(struct osmo_io_fd *iofd, void *data);
239
240unsigned int osmo_iofd_get_priv_nr(const struct osmo_io_fd *iofd);
241void osmo_iofd_set_priv_nr(struct osmo_io_fd *iofd, unsigned int priv_nr);
242
243int osmo_iofd_get_fd(const struct osmo_io_fd *iofd);
244const char *osmo_iofd_get_name(const struct osmo_io_fd *iofd);
245void osmo_iofd_set_name(struct osmo_io_fd *iofd, const char *name);
246void osmo_iofd_set_name_f(struct osmo_io_fd *iofd, const char *fmt, ...);
247
248int osmo_iofd_set_ioops(struct osmo_io_fd *iofd, const struct osmo_io_ops *ioops);
249void osmo_iofd_get_ioops(struct osmo_io_fd *iofd, struct osmo_io_ops *ioops);
250
const char * name
uint8_t res[16]
uint8_t data[0]
void osmo_iofd_set_data(struct osmo_io_fd *iofd, void *data)
Set the associated user-data from an osmo_io_fd.
Definition: osmo_io.c:1225
int osmo_iofd_write_msgb(struct osmo_io_fd *iofd, struct msgb *msg)
Write a message to a file descriptor / connected socket.
Definition: osmo_io.c:639
int osmo_iofd_set_sqes(struct osmo_io_fd *iofd, enum osmo_io_op op, uint8_t sqes)
Set the number of SQEs that are submitted to an io_unring before completion is received.
Definition: osmo_io.c:996
osmo_io_fd_mode
The mode of an osmo_io_fd determines if read/write, recvfrom/sendmsg or recvmsg/sendmsg semantics are...
Definition: osmo_io.h:66
int osmo_iofd_set_io_buffers(struct osmo_io_fd *iofd, enum osmo_io_op op, uint8_t buffers)
Set the number of buffers that can be used in a single read or write operation.
Definition: osmo_io.c:961
void osmo_iofd_get_ioops(struct osmo_io_fd *iofd, struct osmo_io_ops *ioops)
Retrieve the osmo_io_ops for an iofd.
Definition: osmo_io.c:1340
int osmo_iofd_set_ioops(struct osmo_io_fd *iofd, const struct osmo_io_ops *ioops)
Set the osmo_io_ops calbacks for an osmo_io_fd.
Definition: osmo_io.c:1301
static const char * osmo_iofd_mode_name(enum osmo_io_fd_mode val)
return the string name of an osmo_io_mode
Definition: osmo_io.h:101
int osmo_iofd_unregister(struct osmo_io_fd *iofd)
Unregister the given osmo_io_fd from osmo_io.
Definition: osmo_io.c:1079
static const char * osmo_io_backend_name(enum osmo_io_backend val)
return the string name of an osmo_io_backend
Definition: osmo_io.h:96
void osmo_iofd_notify_connected(struct osmo_io_fd *iofd)
Request notification of the user if/when a client socket is connected.
Definition: osmo_io.c:1364
void osmo_iofd_set_priv_nr(struct osmo_io_fd *iofd, unsigned int priv_nr)
Set the private number of an osmo_io_fd.
Definition: osmo_io.c:1246
osmo_io_backend
The back-end used by osmo_io.
Definition: osmo_io.h:85
void osmo_iofd_set_txqueue_max_length(struct osmo_io_fd *iofd, unsigned int size)
Set the maximum number of messages enqueued for sending.
Definition: osmo_io.c:1189
void osmo_iofd_txqueue_clear(struct osmo_io_fd *iofd)
Clear the transmit queue of the given osmo_io_fd.
Definition: osmo_io.c:1105
void osmo_iofd_set_name(struct osmo_io_fd *iofd, const char *name)
Set the human-readable name of the file descriptor.
Definition: osmo_io.c:1271
int osmo_iofd_get_fd(const struct osmo_io_fd *iofd)
Retrieve the underlying file descriptor from an osmo_io_fd.
Definition: osmo_io.c:1254
void osmo_iofd_free(struct osmo_io_fd *iofd)
Free the given osmo_io_fd.
Definition: osmo_io.c:1126
const struct value_string osmo_io_backend_names[]
Definition: osmo_io.c:54
unsigned int osmo_iofd_get_txqueue_max_length(const struct osmo_io_fd *iofd)
Get the maximum number of messages enqueued for sending.
Definition: osmo_io.c:1199
enum osmo_io_backend osmo_io_get_backend(void)
Obtain the osmo_io_backend in use by the process.
Definition: osmo_io.c:131
struct osmo_io_fd * osmo_iofd_setup(const void *ctx, int fd, const char *name, enum osmo_io_fd_mode mode, const struct osmo_io_ops *ioops, void *data)
Allocate and setup a new iofd.
Definition: osmo_io.c:871
int osmo_iofd_register(struct osmo_io_fd *iofd, int fd)
Register the osmo_io_fd for active I/O.
Definition: osmo_io.c:1030
int osmo_iofd_sendmsg_msgb(struct osmo_io_fd *iofd, struct msgb *msg, int sendmsg_flags, const struct msghdr *msgh)
osmo_io equivalent of the sendmsg(2) socket API call.
Definition: osmo_io.c:753
unsigned int osmo_iofd_txqueue_len(struct osmo_io_fd *iofd)
Retrieve the number of messages pending in the transmit queue.
Definition: osmo_io.c:1095
void osmo_iofd_init(void)
initialize osmo_io for the current thread
Definition: osmo_io.c:75
const struct value_string osmo_iofd_mode_names[]
Definition: osmo_io.c:60
const char * osmo_iofd_get_name(const struct osmo_io_fd *iofd)
Retrieve the human-readable name of the given osmo_io_fd.
Definition: osmo_io.c:1262
void osmo_iofd_set_alloc_info(struct osmo_io_fd *iofd, unsigned int size, unsigned int headroom)
Set the size and headroom of the msgb allocated when receiving messages.
Definition: osmo_io.c:1178
void osmo_iofd_set_name_f(struct osmo_io_fd *iofd, const char *fmt,...)
Set the human-readable name of the file descriptor using arguments like printf()
Definition: osmo_io.c:1279
void * osmo_iofd_get_data(const struct osmo_io_fd *iofd)
Retrieve the associated user-data from an osmo_io_fd.
Definition: osmo_io.c:1212
unsigned int osmo_iofd_get_priv_nr(const struct osmo_io_fd *iofd)
Retrieve the private number from an osmo_io_fd.
Definition: osmo_io.c:1235
int osmo_iofd_close(struct osmo_io_fd *iofd)
Close the given osmo_io_fd.
Definition: osmo_io.c:1149
int osmo_iofd_sendto_msgb(struct osmo_io_fd *iofd, struct msgb *msg, int sendto_flags, const struct osmo_sockaddr *dest)
Send a message through an unconnected socket.
Definition: osmo_io.c:702
osmo_io_op
The operation of an osmo_io_fd determines if read or write operation are to be configured used.
Definition: osmo_io.h:76
int osmo_iofd_set_cmsg_size(struct osmo_io_fd *iofd, size_t cmsg_size)
Set the size of the control message buffer allocated when submitting recvmsg.
Definition: osmo_io.c:937
@ OSMO_IO_FD_MODE_RECVFROM_SENDTO
use recvfrom() / sendto() semantics with recvfrom_cb/sendto_cb in osmo_io_ops
Definition: osmo_io.h:70
@ OSMO_IO_FD_MODE_RECVMSG_SENDMSG
emulate recvmsg() / sendmsg() semantics with recvmsg_cb/sendto_cb in osmo_io_ops
Definition: osmo_io.h:72
@ OSMO_IO_FD_MODE_READ_WRITE
use read() / write() semantics with read_cb/write_cb in osmo_io_ops
Definition: osmo_io.h:68
@ OSMO_IO_BACKEND_POLL
classic back-end using poll(2) and direct read/write/recvfrom/sendto/recvmsg/sendmsg syscalls
Definition: osmo_io.h:87
@ OSMO_IO_BACKEND_IO_URING
back-end using io_uring to perform efficient I/O and reduce syscall overhead
Definition: osmo_io.h:89
@ OSMO_IO_OP_READ
change parameters for read()
Definition: osmo_io.h:78
@ OSMO_IO_OP_WRITE
change parameters for write()
Definition: osmo_io.h:80
const char * get_value_string(const struct value_string *vs, uint32_t val)
get human-readable string for given value
Definition: utils.c:63
uint8_t msg[0]
Simple doubly linked list implementation.
Osmocom socket convenience functions.
Osmocom message buffer.
Definition: msgb.h:31
Definition: osmo_io_internal.h:56
enum osmo_io_fd_mode mode
type of read/write mode to use
Definition: osmo_io_internal.h:62
size_t cmsg_size
size of iofd_msghdr.cmsg[] when allocated in recvmsg path
Definition: osmo_io_internal.h:81
unsigned int headroom
headroom to allocate when allocating msgb's
Definition: osmo_io_internal.h:95
unsigned int size
size of msgb to allocate (excluding headroom)
Definition: osmo_io_internal.h:93
void * msghdr[IOFD_MSGHDR_MAX_READ_SQES]
array of simultaneously submitted read SQEs
Definition: osmo_io_internal.h:118
int fd
actual operating-system level file decriptor
Definition: osmo_io_internal.h:60
const void * ctx
talloc context from which to allocate msgb when reading
Definition: osmo_io_internal.h:91
unsigned int priv_nr
private number, extending data
Definition: osmo_io_internal.h:78
I/O operations (call-back functions) related to an osmo_io_fd.
Definition: osmo_io.h:105
void(* read_cb)(struct osmo_io_fd *iofd, int res, struct msgb *msg)
completion call-back function when something was read from fd.
Definition: osmo_io.h:118
void(* recvfrom_cb)(struct osmo_io_fd *iofd, int res, struct msgb *msg, const struct osmo_sockaddr *saddr)
completion call-back function when recvfrom(2) has completed.
Definition: osmo_io.h:175
int(* segmentation_cb2)(struct osmo_io_fd *iofd, struct msgb *msg)
optional call-back function to segment the data at message boundaries.
Definition: osmo_io.h:163
void(* write_cb)(struct osmo_io_fd *iofd, int res, struct msgb *msg)
completion call-back function when write issued via osmo_iofd_write_msgb() has completed on fd.
Definition: osmo_io.h:126
void(* sendto_cb)(struct osmo_io_fd *iofd, int res, struct msgb *msg, const struct osmo_sockaddr *daddr)
completion call-back function when sendto() issued via osmo_iofd_sendto_msgb() has completed on fd.
Definition: osmo_io.h:185
void(* sendmsg_cb)(struct osmo_io_fd *iofd, int res, struct msgb *msg)
completion call-back function when sendmsg() issued via osmo_iofd_sendmsg_msgb() has completed on fd.
Definition: osmo_io.h:208
void(* recvmsg_cb)(struct osmo_io_fd *iofd, int res, struct msgb *msg, const struct msghdr *msgh)
completion call-back function when recvmsg(2) has completed.
Definition: osmo_io.h:200
int(* segmentation_cb)(struct msgb *msg)
optional call-back function to segment the data at message boundaries.
Definition: osmo_io.h:148
Definition: socket.h:33
A mapping between human-readable string and numeric value.
Definition: utils.h:51