osmo_io: Move notify_connected function to backend

This relocation is necessary as the backend (osmo_io_fd or
osmo_io_uring) requires a different approach in handling connect
notifications. As a result, a function call has been introduced to
struct iofd_backend_ops.

In a subsequent patch, the process for the osmo_io_uring backend will
be modified to handle SCTP connect notifications using poll/select.

If connect notification is requested using poll/select, the file
descriptior must be registered to osmo_fd, using osmo_fd_register. If
read / write notification is requested by application, the file
descriptior must be registered also. A flag is used prevent calling
osmo_fd_register / osmo_fd_unregister multiple times, which would cause
a crash.

Change-Id: I905ec85210570aff8addadfc9603335d04eb057a
Related: OS#5751
This commit is contained in:
Andreas Eversberg 2024-02-09 12:38:17 +01:00 committed by Harald Welte
parent b365b1d094
commit 3ecc733147
4 changed files with 29 additions and 2 deletions

View File

@ -781,7 +781,8 @@ int osmo_iofd_set_ioops(struct osmo_io_fd *iofd, const struct osmo_io_ops *ioops
void osmo_iofd_notify_connected(struct osmo_io_fd *iofd) void osmo_iofd_notify_connected(struct osmo_io_fd *iofd)
{ {
OSMO_ASSERT(iofd->mode == OSMO_IO_FD_MODE_READ_WRITE); OSMO_ASSERT(iofd->mode == OSMO_IO_FD_MODE_READ_WRITE);
osmo_iofd_ops.write_enable(iofd); OSMO_ASSERT(osmo_iofd_ops.notify_connected);
osmo_iofd_ops.notify_connected(iofd);
} }

View File

@ -31,12 +31,14 @@ struct iofd_backend_ops {
void (*write_disable)(struct osmo_io_fd *iofd); void (*write_disable)(struct osmo_io_fd *iofd);
void (*read_enable)(struct osmo_io_fd *iofd); void (*read_enable)(struct osmo_io_fd *iofd);
void (*read_disable)(struct osmo_io_fd *iofd); void (*read_disable)(struct osmo_io_fd *iofd);
void (*notify_connected)(struct osmo_io_fd *iofd);
}; };
#define IOFD_FLAG_CLOSED (1<<0) #define IOFD_FLAG_CLOSED (1<<0)
#define IOFD_FLAG_IN_CALLBACK (1<<1) #define IOFD_FLAG_IN_CALLBACK (1<<1)
#define IOFD_FLAG_TO_FREE (1<<2) #define IOFD_FLAG_TO_FREE (1<<2)
#define IOFD_FLAG_NOTIFY_CONNECTED (1<<3) #define IOFD_FLAG_NOTIFY_CONNECTED (1<<3)
#define IOFD_FLAG_FD_REGISTERED (1<<4)
#define IOFD_FLAG_SET(iofd, flag) \ #define IOFD_FLAG_SET(iofd, flag) \
(iofd)->flags |= (flag) (iofd)->flags |= (flag)

View File

@ -119,20 +119,32 @@ static int iofd_poll_ofd_cb_dispatch(struct osmo_fd *ofd, unsigned int what)
int iofd_poll_register(struct osmo_io_fd *iofd) int iofd_poll_register(struct osmo_io_fd *iofd)
{ {
struct osmo_fd *ofd = &iofd->u.poll.ofd; struct osmo_fd *ofd = &iofd->u.poll.ofd;
int rc;
if (IOFD_FLAG_ISSET(iofd, IOFD_FLAG_FD_REGISTERED))
return 0;
osmo_fd_setup(ofd, iofd->fd, 0, &iofd_poll_ofd_cb_dispatch, iofd, 0); osmo_fd_setup(ofd, iofd->fd, 0, &iofd_poll_ofd_cb_dispatch, iofd, 0);
return osmo_fd_register(ofd); rc = osmo_fd_register(ofd);
if (!rc)
IOFD_FLAG_SET(iofd, IOFD_FLAG_FD_REGISTERED);
return rc;
} }
int iofd_poll_unregister(struct osmo_io_fd *iofd) int iofd_poll_unregister(struct osmo_io_fd *iofd)
{ {
struct osmo_fd *ofd = &iofd->u.poll.ofd; struct osmo_fd *ofd = &iofd->u.poll.ofd;
if (!IOFD_FLAG_ISSET(iofd, IOFD_FLAG_FD_REGISTERED))
return 0;
osmo_fd_unregister(ofd); osmo_fd_unregister(ofd);
IOFD_FLAG_UNSET(iofd, IOFD_FLAG_FD_REGISTERED);
return 0; return 0;
} }
int iofd_poll_close(struct osmo_io_fd *iofd) int iofd_poll_close(struct osmo_io_fd *iofd)
{ {
iofd_poll_unregister(iofd);
osmo_fd_close(&iofd->u.poll.ofd); osmo_fd_close(&iofd->u.poll.ofd);
return 0; return 0;
@ -158,6 +170,16 @@ void iofd_poll_write_disable(struct osmo_io_fd *iofd)
osmo_fd_write_disable(&iofd->u.poll.ofd); osmo_fd_write_disable(&iofd->u.poll.ofd);
} }
void iofd_poll_notify_connected(struct osmo_io_fd *iofd)
{
int rc;
rc = iofd_poll_register(iofd);
if (rc < 0)
return;
osmo_fd_write_enable(&iofd->u.poll.ofd);
}
const struct iofd_backend_ops iofd_poll_ops = { const struct iofd_backend_ops iofd_poll_ops = {
.register_fd = iofd_poll_register, .register_fd = iofd_poll_register,
.unregister_fd = iofd_poll_unregister, .unregister_fd = iofd_poll_unregister,
@ -166,6 +188,7 @@ const struct iofd_backend_ops iofd_poll_ops = {
.write_disable = iofd_poll_write_disable, .write_disable = iofd_poll_write_disable,
.read_enable = iofd_poll_read_enable, .read_enable = iofd_poll_read_enable,
.read_disable = iofd_poll_read_disable, .read_disable = iofd_poll_read_disable,
.notify_connected = iofd_poll_notify_connected,
}; };
#endif /* defined(__linux__) */ #endif /* defined(__linux__) */

View File

@ -402,6 +402,7 @@ const struct iofd_backend_ops iofd_uring_ops = {
.write_disable = iofd_uring_write_disable, .write_disable = iofd_uring_write_disable,
.read_enable = iofd_uring_read_enable, .read_enable = iofd_uring_read_enable,
.read_disable = iofd_uring_read_disable, .read_disable = iofd_uring_read_disable,
.notify_connected = iofd_uring_write_enable,
}; };
#endif /* defined(__linux__) */ #endif /* defined(__linux__) */