| [d384787] | 1 | //
 | 
|---|
 | 2 | // Cforall Version 1.0.0 Copyright (C) 2020 University of Waterloo
 | 
|---|
 | 3 | //
 | 
|---|
 | 4 | // The contents of this file are covered under the licence agreement in the
 | 
|---|
 | 5 | // file "LICENCE" distributed with Cforall.
 | 
|---|
 | 6 | //
 | 
|---|
 | 7 | // iofwd.hfa --
 | 
|---|
 | 8 | //
 | 
|---|
 | 9 | // Author           : Thierry Delisle
 | 
|---|
 | 10 | // Created On       : Thu Apr 23 17:31:00 2020
 | 
|---|
 | 11 | // Last Modified By :
 | 
|---|
 | 12 | // Last Modified On :
 | 
|---|
 | 13 | // Update Count     :
 | 
|---|
 | 14 | //
 | 
|---|
 | 15 | 
 | 
|---|
 | 16 | #pragma once
 | 
|---|
 | 17 | 
 | 
|---|
| [519f11c] | 18 | #include <unistd.h>
 | 
|---|
| [e1801fc] | 19 | extern "C" {
 | 
|---|
 | 20 |         #include <sys/types.h>
 | 
|---|
| [f00b26d4] | 21 |         #if CFA_HAVE_LINUX_IO_URING_H
 | 
|---|
 | 22 |                 #include <linux/io_uring.h>
 | 
|---|
 | 23 |         #endif
 | 
|---|
| [e1801fc] | 24 | }
 | 
|---|
| [519f11c] | 25 | #include "bits/defs.hfa"
 | 
|---|
| [f00b26d4] | 26 | #include "time.hfa"
 | 
|---|
 | 27 | 
 | 
|---|
 | 28 | #if defined(CFA_HAVE_IOSQE_FIXED_FILE)
 | 
|---|
 | 29 |         #define CFA_IO_FIXED_FD1 IOSQE_FIXED_FILE
 | 
|---|
 | 30 | #endif
 | 
|---|
 | 31 | #if defined(CFA_HAVE_SPLICE_F_FD_IN_FIXED)
 | 
|---|
 | 32 |         #define CFA_IO_FIXED_FD2 SPLICE_F_FD_IN_FIXED
 | 
|---|
 | 33 | #endif
 | 
|---|
 | 34 | #if defined(CFA_HAVE_IOSQE_IO_DRAIN)
 | 
|---|
 | 35 |         #define CFA_IO_DRAIN IOSQE_IO_DRAIN
 | 
|---|
 | 36 | #endif
 | 
|---|
 | 37 | #if defined(CFA_HAVE_IOSQE_ASYNC)
 | 
|---|
 | 38 |         #define CFA_IO_ASYNC IOSQE_ASYNC
 | 
|---|
 | 39 | #endif
 | 
|---|
 | 40 | 
 | 
|---|
 | 41 | struct cluster;
 | 
|---|
| [c402739f] | 42 | struct io_future_t;
 | 
|---|
| [f00b26d4] | 43 | struct io_context;
 | 
|---|
 | 44 | struct io_cancellation;
 | 
|---|
| [519f11c] | 45 | 
 | 
|---|
 | 46 | struct iovec;
 | 
|---|
 | 47 | struct msghdr;
 | 
|---|
 | 48 | struct sockaddr;
 | 
|---|
 | 49 | struct statx;
 | 
|---|
| [e1801fc] | 50 | 
 | 
|---|
| [c402739f] | 51 | //----------
 | 
|---|
 | 52 | // synchronous calls
 | 
|---|
 | 53 | #if defined(CFA_HAVE_PREADV2)
 | 
|---|
 | 54 |         extern ssize_t cfa_preadv2(int fd, const struct iovec *iov, int iovcnt, off_t offset, int flags, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 55 | #endif
 | 
|---|
 | 56 | #if defined(CFA_HAVE_PWRITEV2)
 | 
|---|
 | 57 |         extern ssize_t cfa_pwritev2(int fd, const struct iovec *iov, int iovcnt, off_t offset, int flags, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 58 | #endif
 | 
|---|
 | 59 | extern int cfa_fsync(int fd, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 60 | extern int cfa_epoll_ctl(int epfd, int op, int fd, struct epoll_event *event, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 61 | extern int cfa_sync_file_range(int fd, off64_t offset, off64_t nbytes, unsigned int flags, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 62 | extern  ssize_t cfa_sendmsg(int sockfd, const struct msghdr *msg, int flags, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 63 | extern ssize_t cfa_recvmsg(int sockfd, struct msghdr *msg, int flags, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 64 | extern ssize_t cfa_send(int sockfd, const void *buf, size_t len, int flags, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 65 | extern ssize_t cfa_recv(int sockfd, void *buf, size_t len, int flags, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 66 | extern int cfa_accept4(int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 67 | extern int cfa_connect(int sockfd, const struct sockaddr *addr, socklen_t addrlen, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 68 | extern int cfa_fallocate(int fd, int mode, off_t offset, off_t len, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 69 | extern int cfa_posix_fadvise(int fd, off_t offset, off_t len, int advice, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 70 | extern int cfa_madvise(void *addr, size_t length, int advice, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 71 | extern int cfa_openat(int dirfd, const char *pathname, int flags, mode_t mode, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 72 | #if defined(CFA_HAVE_OPENAT2)
 | 
|---|
 | 73 |         extern int cfa_openat2(int dirfd, const char *pathname, struct open_how * how, size_t size, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 74 | #endif
 | 
|---|
 | 75 | extern int cfa_close(int fd, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 76 | #if defined(CFA_HAVE_STATX)
 | 
|---|
 | 77 |         extern int cfa_statx(int dirfd, const char *pathname, int flags, unsigned int mask, struct statx *statxbuf, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 78 | #endif
 | 
|---|
 | 79 | extern ssize_t cfa_read(int fd, void * buf, size_t count, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 80 | extern ssize_t cfa_write(int fd, void * buf, size_t count, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 81 | extern ssize_t cfa_splice(int fd_in, loff_t *off_in, int fd_out, loff_t *off_out, size_t len, unsigned int flags, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 82 | extern ssize_t cfa_tee(int fd_in, int fd_out, size_t len, unsigned int flags, int submit_flags, Duration timeout, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 83 | 
 | 
|---|
 | 84 | //----------
 | 
|---|
 | 85 | // asynchronous calls
 | 
|---|
 | 86 | #if defined(CFA_HAVE_PREADV2)
 | 
|---|
 | 87 |         extern void async_preadv2(io_future_t & future, int fd, const struct iovec *iov, int iovcnt, off_t offset, int flags, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 88 | #endif
 | 
|---|
 | 89 | #if defined(CFA_HAVE_PWRITEV2)
 | 
|---|
 | 90 |         extern void async_pwritev2(io_future_t & future, int fd, const struct iovec *iov, int iovcnt, off_t offset, int flags, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 91 | #endif
 | 
|---|
 | 92 | extern void async_fsync(io_future_t & future, int fd, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 93 | extern void async_epoll_ctl(io_future_t & future, int epfd, int op, int fd, struct epoll_event *event, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 94 | extern void async_sync_file_range(io_future_t & future, int fd, off64_t offset, off64_t nbytes, unsigned int flags, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 95 | extern void async_sendmsg(io_future_t & future, int sockfd, const struct msghdr *msg, int flags, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 96 | extern void async_recvmsg(io_future_t & future, int sockfd, struct msghdr *msg, int flags, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 97 | extern void async_send(io_future_t & future, int sockfd, const void *buf, size_t len, int flags, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 98 | extern void async_recv(io_future_t & future, int sockfd, void *buf, size_t len, int flags, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 99 | extern void async_accept4(io_future_t & future, int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 100 | extern void async_connect(io_future_t & future, int sockfd, const struct sockaddr *addr, socklen_t addrlen, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 101 | extern void async_fallocate(io_future_t & future, int fd, int mode, off_t offset, off_t len, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 102 | extern void async_posix_fadvise(io_future_t & future, int fd, off_t offset, off_t len, int advice, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 103 | extern void async_madvise(io_future_t & future, void *addr, size_t length, int advice, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 104 | extern void async_openat(io_future_t & future, int dirfd, const char *pathname, int flags, mode_t mode, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 105 | #if defined(CFA_HAVE_OPENAT2)
 | 
|---|
 | 106 |         extern void async_openat2(io_future_t & future, int dirfd, const char *pathname, struct open_how * how, size_t size, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 107 | #endif
 | 
|---|
 | 108 | extern void async_close(io_future_t & future, int fd, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 109 | #if defined(CFA_HAVE_STATX)
 | 
|---|
 | 110 |         extern void async_statx(io_future_t & future, int dirfd, const char *pathname, int flags, unsigned int mask, struct statx *statxbuf, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 111 | #endif
 | 
|---|
 | 112 | void async_read(io_future_t & future, int fd, void * buf, size_t count, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 113 | extern void async_write(io_future_t & future, int fd, void * buf, size_t count, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 114 | extern void async_splice(io_future_t & future, int fd_in, loff_t *off_in, int fd_out, loff_t *off_out, size_t len, unsigned int flags, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 115 | extern void async_tee(io_future_t & future, int fd_in, int fd_out, size_t len, unsigned int flags, int submit_flags, io_cancellation * cancellation, io_context * context);
 | 
|---|
 | 116 | 
 | 
|---|
| [d384787] | 117 | 
 | 
|---|
 | 118 | //-----------------------------------------------------------------------------
 | 
|---|
 | 119 | // Check if a function is blocks a only the user thread
 | 
|---|
| [f00b26d4] | 120 | bool has_user_level_blocking( fptr_t func );
 | 
|---|
 | 121 | 
 | 
|---|
 | 122 | //-----------------------------------------------------------------------------
 | 
|---|
 | 123 | void register_fixed_files( io_context & ctx , int * files, unsigned count );
 | 
|---|
 | 124 | void register_fixed_files( cluster    & cltr, int * files, unsigned count );
 | 
|---|