source: libcfa/src/concurrency/io.cfa @ 059ad16

ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
Last change on this file since 059ad16 was 059ad16, checked in by Thierry Delisle <tdelisle@…>, 2 years ago

Flush now supports blocking until at least one I/O op terminates.

  • Property mode set to 100644
File size: 15.2 KB
RevLine 
[ecf6b46]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// io.cfa --
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
[3e2b9c9]16#define __cforall_thread__
[43784ac]17#define _GNU_SOURCE
[3e2b9c9]18
[20ab637]19#if defined(__CFA_DEBUG__)
[d60d30e]20        // #define __CFA_DEBUG_PRINT_IO__
21        // #define __CFA_DEBUG_PRINT_IO_CORE__
[20ab637]22#endif
[4069faad]23
[f6660520]24
[3e2b9c9]25#if defined(CFA_HAVE_LINUX_IO_URING_H)
[31bb2e1]26        #include <errno.h>
[3e2b9c9]27        #include <signal.h>
[31bb2e1]28        #include <stdint.h>
29        #include <string.h>
30        #include <unistd.h>
31
[92976d9]32        extern "C" {
33                #include <sys/syscall.h>
[dddb3dd0]34                #include <sys/eventfd.h>
[92976d9]35
36                #include <linux/io_uring.h>
37        }
38
[3e2b9c9]39        #include "stats.hfa"
40        #include "kernel.hfa"
41        #include "kernel/fwd.hfa"
[e9c0b4c]42        #include "kernel_private.hfa"
[3e2b9c9]43        #include "io/types.hfa"
[185efe6]44
[2fab24e3]45        __attribute__((unused)) static const char * opcodes[] = {
[426f60c]46                "OP_NOP",
47                "OP_READV",
48                "OP_WRITEV",
49                "OP_FSYNC",
50                "OP_READ_FIXED",
51                "OP_WRITE_FIXED",
52                "OP_POLL_ADD",
53                "OP_POLL_REMOVE",
54                "OP_SYNC_FILE_RANGE",
55                "OP_SENDMSG",
56                "OP_RECVMSG",
57                "OP_TIMEOUT",
58                "OP_TIMEOUT_REMOVE",
59                "OP_ACCEPT",
60                "OP_ASYNC_CANCEL",
61                "OP_LINK_TIMEOUT",
62                "OP_CONNECT",
63                "OP_FALLOCATE",
64                "OP_OPENAT",
65                "OP_CLOSE",
66                "OP_FILES_UPDATE",
67                "OP_STATX",
68                "OP_READ",
69                "OP_WRITE",
70                "OP_FADVISE",
71                "OP_MADVISE",
72                "OP_SEND",
73                "OP_RECV",
74                "OP_OPENAT2",
75                "OP_EPOLL_CTL",
76                "OP_SPLICE",
77                "OP_PROVIDE_BUFFERS",
78                "OP_REMOVE_BUFFERS",
79                "OP_TEE",
80                "INVALID_OP"
81        };
82
[11054eb]83        static $io_context * __ioarbiter_allocate( $io_arbiter & this, __u32 idxs[], __u32 want );
84        static void __ioarbiter_submit( $io_context * , __u32 idxs[], __u32 have, bool lazy );
85        static void __ioarbiter_flush ( $io_context & );
[dddb3dd0]86        static inline void __ioarbiter_notify( $io_context & ctx );
[92976d9]87//=============================================================================================
88// I/O Polling
89//=============================================================================================
[78da4ab]90        static inline unsigned __flush( struct $io_context & );
91        static inline __u32 __release_sqes( struct $io_context & );
[24e321c]92        extern void __kernel_unpark( thread$ * thrd, unpark_hint );
[1d5e4711]93
[c1c95b1]94        bool __cfa_io_drain( processor * proc ) {
[dddb3dd0]95                /* paranoid */ verify( ! __preemption_enabled() );
[e9c0b4c]96                /* paranoid */ verify( ready_schedule_islocked() );
[dddb3dd0]97                /* paranoid */ verify( proc );
98                /* paranoid */ verify( proc->io.ctx );
[6f121b8]99
[d384787]100                // Drain the queue
[dddb3dd0]101                $io_context * ctx = proc->io.ctx;
102                unsigned head = *ctx->cq.head;
103                unsigned tail = *ctx->cq.tail;
104                const __u32 mask = *ctx->cq.mask;
[92976d9]105
[4998155]106                __u32 count = tail - head;
[dddb3dd0]107                __STATS__( false, io.calls.drain++; io.calls.completed += count; )
[d60d30e]108
[c1c95b1]109                if(count == 0) return false;
110
[d384787]111                for(i; count) {
[6f121b8]112                        unsigned idx = (head + i) & mask;
[dddb3dd0]113                        volatile struct io_uring_cqe & cqe = ctx->cq.cqes[idx];
[92976d9]114
[d384787]115                        /* paranoid */ verify(&cqe);
[92976d9]116
[78da4ab]117                        struct io_future_t * future = (struct io_future_t *)(uintptr_t)cqe.user_data;
118                        __cfadbg_print_safe( io, "Kernel I/O : Syscall completed : cqe %p, result %d for %p\n", &cqe, cqe.res, future );
119
[24e321c]120                        __kernel_unpark( fulfil( *future, cqe.res, false ), UNPARK_LOCAL );
[78da4ab]121                }
122
[dddb3dd0]123                __cfadbg_print_safe(io, "Kernel I/O : %u completed\n", count);
[2d8f7b0]124
[92976d9]125                // Mark to the kernel that the cqe has been seen
126                // Ensure that the kernel only sees the new value of the head index after the CQEs have been read.
[dddb3dd0]127                __atomic_store_n( ctx->cq.head, head + count, __ATOMIC_SEQ_CST );
[92976d9]128
[e9c0b4c]129                /* paranoid */ verify( ready_schedule_islocked() );
[dddb3dd0]130                /* paranoid */ verify( ! __preemption_enabled() );
131
[c1c95b1]132                return true;
[92976d9]133        }
134
[059ad16]135        bool __cfa_io_flush( processor * proc, bool wait ) {
[dddb3dd0]136                /* paranoid */ verify( ! __preemption_enabled() );
137                /* paranoid */ verify( proc );
138                /* paranoid */ verify( proc->io.ctx );
[1539bbd]139
[d36bac7]140                __attribute__((unused)) cluster * cltr = proc->cltr;
[dddb3dd0]141                $io_context & ctx = *proc->io.ctx;
[78da4ab]142
[11054eb]143                __ioarbiter_flush( ctx );
[3c039b0]144
[dddb3dd0]145                __STATS__( true, io.calls.flush++; )
[059ad16]146                int ret = syscall( __NR_io_uring_enter, ctx.fd, ctx.sq.to_submit, wait ? 1 : 0, 0, (sigset_t *)0p, _NSIG / 8);
[dddb3dd0]147                if( ret < 0 ) {
148                        switch((int)errno) {
149                        case EAGAIN:
150                        case EINTR:
151                        case EBUSY:
152                                // Update statistics
153                                __STATS__( false, io.calls.errors.busy ++; )
[059ad16]154                                return false;
[dddb3dd0]155                        default:
156                                abort( "KERNEL ERROR: IO_URING SYSCALL - (%d) %s\n", (int)errno, strerror(errno) );
[61dd73d]157                        }
[dddb3dd0]158                }
[ece0e80]159
[dddb3dd0]160                __cfadbg_print_safe(io, "Kernel I/O : %u submitted to io_uring %d\n", ret, ctx.fd);
161                __STATS__( true, io.calls.submitted += ret; )
162                /* paranoid */ verify( ctx.sq.to_submit <= *ctx.sq.num );
163                /* paranoid */ verify( ctx.sq.to_submit >= ret );
164
165                ctx.sq.to_submit -= ret;
[ece0e80]166
[dddb3dd0]167                /* paranoid */ verify( ctx.sq.to_submit <= *ctx.sq.num );
[5dadc9b]168
[dddb3dd0]169                // Release the consumed SQEs
170                __release_sqes( ctx );
[ece0e80]171
[dddb3dd0]172                /* paranoid */ verify( ! __preemption_enabled() );
[61dd73d]173
[dddb3dd0]174                ctx.proc->io.pending = false;
[d36bac7]175
[059ad16]176                return __cfa_io_drain( proc );
[61dd73d]177        }
[f6660520]178
[92976d9]179//=============================================================================================
180// I/O Submissions
181//=============================================================================================
182
[2d8f7b0]183// Submition steps :
[e46c753]184// 1 - Allocate a queue entry. The ring already has memory for all entries but only the ones
[2d8f7b0]185//     listed in sq.array are visible by the kernel. For those not listed, the kernel does not
186//     offer any assurance that an entry is not being filled by multiple flags. Therefore, we
187//     need to write an allocator that allows allocating concurrently.
188//
[e46c753]189// 2 - Actually fill the submit entry, this is the only simple and straightforward step.
[2d8f7b0]190//
[e46c753]191// 3 - Append the entry index to the array and adjust the tail accordingly. This operation
[2d8f7b0]192//     needs to arrive to two concensus at the same time:
193//     A - The order in which entries are listed in the array: no two threads must pick the
194//         same index for their entries
195//     B - When can the tail be update for the kernel. EVERY entries in the array between
196//         head and tail must be fully filled and shouldn't ever be touched again.
197//
[78da4ab]198        //=============================================================================================
199        // Allocation
200        // for user's convenience fill the sqes from the indexes
201        static inline void __fill(struct io_uring_sqe * out_sqes[], __u32 want, __u32 idxs[], struct $io_context * ctx)  {
202                struct io_uring_sqe * sqes = ctx->sq.sqes;
203                for(i; want) {
[dddb3dd0]204                        __cfadbg_print_safe(io, "Kernel I/O : filling loop\n");
[78da4ab]205                        out_sqes[i] = &sqes[idxs[i]];
206                }
207        }
[2489d31]208
[78da4ab]209        // Try to directly allocate from the a given context
210        // Not thread-safe
211        static inline bool __alloc(struct $io_context * ctx, __u32 idxs[], __u32 want) {
212                __sub_ring_t & sq = ctx->sq;
213                const __u32 mask  = *sq.mask;
214                __u32 fhead = sq.free_ring.head;    // get the current head of the queue
215                __u32 ftail = sq.free_ring.tail;    // get the current tail of the queue
[2489d31]216
[78da4ab]217                // If we don't have enough sqes, fail
218                if((ftail - fhead) < want) { return false; }
[426f60c]219
[78da4ab]220                // copy all the indexes we want from the available list
221                for(i; want) {
[dddb3dd0]222                        __cfadbg_print_safe(io, "Kernel I/O : allocating loop\n");
[78da4ab]223                        idxs[i] = sq.free_ring.array[(fhead + i) & mask];
[6f121b8]224                }
[2489d31]225
[78da4ab]226                // Advance the head to mark the indexes as consumed
227                __atomic_store_n(&sq.free_ring.head, fhead + want, __ATOMIC_RELEASE);
[df40a56]228
[78da4ab]229                // return success
230                return true;
231        }
[df40a56]232
[78da4ab]233        // Allocate an submit queue entry.
234        // The kernel cannot see these entries until they are submitted, but other threads must be
235        // able to see which entries can be used and which are already un used by an other thread
236        // for convenience, return both the index and the pointer to the sqe
237        // sqe == &sqes[idx]
238        struct $io_context * cfa_io_allocate(struct io_uring_sqe * sqes[], __u32 idxs[], __u32 want) {
239                __cfadbg_print_safe(io, "Kernel I/O : attempting to allocate %u\n", want);
[df40a56]240
[78da4ab]241                disable_interrupts();
242                processor * proc = __cfaabi_tls.this_processor;
[dddb3dd0]243                $io_context * ctx = proc->io.ctx;
[78da4ab]244                /* paranoid */ verify( __cfaabi_tls.this_processor );
[dddb3dd0]245                /* paranoid */ verify( ctx );
[78da4ab]246
[dddb3dd0]247                __cfadbg_print_safe(io, "Kernel I/O : attempting to fast allocation\n");
[78da4ab]248
[dddb3dd0]249                // We can proceed to the fast path
250                if( __alloc(ctx, idxs, want) ) {
251                        // Allocation was successful
252                        __STATS__( true, io.alloc.fast += 1; )
[a3821fa]253                        enable_interrupts();
[df40a56]254
[dddb3dd0]255                        __cfadbg_print_safe(io, "Kernel I/O : fast allocation successful from ring %d\n", ctx->fd);
[2fafe7e]256
[dddb3dd0]257                        __fill( sqes, want, idxs, ctx );
258                        return ctx;
[df40a56]259                }
[dddb3dd0]260                // The fast path failed, fallback
261                __STATS__( true, io.alloc.fail += 1; )
[df40a56]262
[78da4ab]263                // Fast path failed, fallback on arbitration
[d60d30e]264                __STATS__( true, io.alloc.slow += 1; )
[a3821fa]265                enable_interrupts();
[78da4ab]266
[dddb3dd0]267                $io_arbiter * ioarb = proc->cltr->io.arbiter;
268                /* paranoid */ verify( ioarb );
269
[78da4ab]270                __cfadbg_print_safe(io, "Kernel I/O : falling back on arbiter for allocation\n");
271
[11054eb]272                struct $io_context * ret = __ioarbiter_allocate(*ioarb, idxs, want);
[78da4ab]273
[dddb3dd0]274                __cfadbg_print_safe(io, "Kernel I/O : slow allocation completed from ring %d\n", ret->fd);
[df40a56]275
[78da4ab]276                __fill( sqes, want, idxs,ret );
277                return ret;
[df40a56]278        }
279
[426f60c]280
[78da4ab]281        //=============================================================================================
282        // submission
[dddb3dd0]283        static inline void __submit( struct $io_context * ctx, __u32 idxs[], __u32 have, bool lazy) {
[78da4ab]284                // We can proceed to the fast path
285                // Get the right objects
286                __sub_ring_t & sq = ctx->sq;
287                const __u32 mask  = *sq.mask;
[dddb3dd0]288                __u32 tail = *sq.kring.tail;
[78da4ab]289
290                // Add the sqes to the array
291                for( i; have ) {
[dddb3dd0]292                        __cfadbg_print_safe(io, "Kernel I/O : __submit loop\n");
[78da4ab]293                        sq.kring.array[ (tail + i) & mask ] = idxs[i];
[426f60c]294                }
295
[78da4ab]296                // Make the sqes visible to the submitter
[dddb3dd0]297                __atomic_store_n(sq.kring.tail, tail + have, __ATOMIC_RELEASE);
[e8ac228]298                sq.to_submit += have;
[426f60c]299
[dddb3dd0]300                ctx->proc->io.pending = true;
301                ctx->proc->io.dirty   = true;
302                if(sq.to_submit > 30 || !lazy) {
[45c9441]303                        ready_schedule_lock();
[059ad16]304                        __cfa_io_flush( ctx->proc, false );
[45c9441]305                        ready_schedule_unlock();
[dddb3dd0]306                }
[78da4ab]307        }
[2489d31]308
[dddb3dd0]309        void cfa_io_submit( struct $io_context * inctx, __u32 idxs[], __u32 have, bool lazy ) __attribute__((nonnull (1))) {
310                __cfadbg_print_safe(io, "Kernel I/O : attempting to submit %u (%s)\n", have, lazy ? "lazy" : "eager");
[5dadc9b]311
[78da4ab]312                disable_interrupts();
313                processor * proc = __cfaabi_tls.this_processor;
314                $io_context * ctx = proc->io.ctx;
[dddb3dd0]315                /* paranoid */ verify( __cfaabi_tls.this_processor );
316                /* paranoid */ verify( ctx );
[e46c753]317
[78da4ab]318                // Can we proceed to the fast path
[dddb3dd0]319                if( ctx == inctx )              // We have the right instance?
[78da4ab]320                {
[dddb3dd0]321                        __submit(ctx, idxs, have, lazy);
[e46c753]322
[78da4ab]323                        // Mark the instance as no longer in-use, re-enable interrupts and return
[d60d30e]324                        __STATS__( true, io.submit.fast += 1; )
[a3821fa]325                        enable_interrupts();
[ece0e80]326
[78da4ab]327                        __cfadbg_print_safe(io, "Kernel I/O : submitted on fast path\n");
328                        return;
[e46c753]329                }
[d384787]330
[78da4ab]331                // Fast path failed, fallback on arbitration
[d60d30e]332                __STATS__( true, io.submit.slow += 1; )
[a3821fa]333                enable_interrupts();
[5dadc9b]334
[78da4ab]335                __cfadbg_print_safe(io, "Kernel I/O : falling back on arbiter for submission\n");
[426f60c]336
[11054eb]337                __ioarbiter_submit(inctx, idxs, have, lazy);
[78da4ab]338        }
[2fab24e3]339
[78da4ab]340        //=============================================================================================
341        // Flushing
[426f60c]342        // Go through the ring's submit queue and release everything that has already been consumed
343        // by io_uring
[78da4ab]344        // This cannot be done by multiple threads
345        static __u32 __release_sqes( struct $io_context & ctx ) {
346                const __u32 mask = *ctx.sq.mask;
[732b406]347
[426f60c]348                __attribute__((unused))
[78da4ab]349                __u32 ctail = *ctx.sq.kring.tail;    // get the current tail of the queue
350                __u32 chead = *ctx.sq.kring.head;        // get the current head of the queue
351                __u32 phead = ctx.sq.kring.released; // get the head the last time we were here
352
353                __u32 ftail = ctx.sq.free_ring.tail;  // get the current tail of the queue
[732b406]354
[426f60c]355                // the 3 fields are organized like this diagram
356                // except it's are ring
357                // ---+--------+--------+----
358                // ---+--------+--------+----
359                //    ^        ^        ^
360                // phead    chead    ctail
361
362                // make sure ctail doesn't wrap around and reach phead
363                /* paranoid */ verify(
364                           (ctail >= chead && chead >= phead)
365                        || (chead >= phead && phead >= ctail)
366                        || (phead >= ctail && ctail >= chead)
367                );
368
369                // find the range we need to clear
[4998155]370                __u32 count = chead - phead;
[426f60c]371
[78da4ab]372                if(count == 0) {
373                        return 0;
374                }
375
[426f60c]376                // We acquired an previous-head/current-head range
377                // go through the range and release the sqes
[34b61882]378                for( i; count ) {
[dddb3dd0]379                        __cfadbg_print_safe(io, "Kernel I/O : release loop\n");
[78da4ab]380                        __u32 idx = ctx.sq.kring.array[ (phead + i) & mask ];
381                        ctx.sq.free_ring.array[ (ftail + i) & mask ] = idx;
[34b61882]382                }
[78da4ab]383
384                ctx.sq.kring.released = chead;          // note up to were we processed
385                __atomic_store_n(&ctx.sq.free_ring.tail, ftail + count, __ATOMIC_SEQ_CST);
386
387                __ioarbiter_notify(ctx);
388
[34b61882]389                return count;
390        }
[35285fd]391
[78da4ab]392//=============================================================================================
393// I/O Arbiter
394//=============================================================================================
[11054eb]395        static inline void block(__outstanding_io_queue & queue, __outstanding_io & item) {
396                // Lock the list, it's not thread safe
397                lock( queue.lock __cfaabi_dbg_ctx2 );
398                {
399                        // Add our request to the list
400                        add( queue.queue, item );
401
402                        // Mark as pending
403                        __atomic_store_n( &queue.empty, false, __ATOMIC_SEQ_CST );
404                }
405                unlock( queue.lock );
406
407                wait( item.sem );
408        }
409
410        static inline bool empty(__outstanding_io_queue & queue ) {
411                return __atomic_load_n( &queue.empty, __ATOMIC_SEQ_CST);
412        }
413
414        static $io_context * __ioarbiter_allocate( $io_arbiter & this, __u32 idxs[], __u32 want ) {
[78da4ab]415                __cfadbg_print_safe(io, "Kernel I/O : arbiter allocating\n");
416
[d60d30e]417                __STATS__( false, io.alloc.block += 1; )
418
[78da4ab]419                // No one has any resources left, wait for something to finish
[11054eb]420                // We need to add ourself to a list of pending allocs and wait for an answer
421                __pending_alloc pa;
422                pa.idxs = idxs;
423                pa.want = want;
[78da4ab]424
[11054eb]425                block(this.pending, (__outstanding_io&)pa);
[78da4ab]426
[11054eb]427                return pa.ctx;
[dddb3dd0]428
[78da4ab]429        }
430
[11054eb]431        static void __ioarbiter_notify( $io_arbiter & this, $io_context * ctx ) {
432                /* paranoid */ verify( !empty(this.pending.queue) );
[78da4ab]433
[11054eb]434                lock( this.pending.lock __cfaabi_dbg_ctx2 );
435                {
436                        while( !empty(this.pending.queue) ) {
437                                __cfadbg_print_safe(io, "Kernel I/O : notifying\n");
438                                __u32 have = ctx->sq.free_ring.tail - ctx->sq.free_ring.head;
439                                __pending_alloc & pa = (__pending_alloc&)head( this.pending.queue );
[78da4ab]440
[11054eb]441                                if( have > pa.want ) goto DONE;
442                                drop( this.pending.queue );
[78da4ab]443
[11054eb]444                                /* paranoid */__attribute__((unused)) bool ret =
[78da4ab]445
[11054eb]446                                __alloc(ctx, pa.idxs, pa.want);
447
448                                /* paranoid */ verify( ret );
449
450                                pa.ctx = ctx;
451
452                                post( pa.sem );
453                        }
454
455                        this.pending.empty = true;
456                        DONE:;
457                }
458                unlock( this.pending.lock );
[78da4ab]459        }
460
461        static void __ioarbiter_notify( $io_context & ctx ) {
[11054eb]462                if(!empty( ctx.arbiter->pending )) {
[78da4ab]463                        __ioarbiter_notify( *ctx.arbiter, &ctx );
464                }
465        }
466
467        // Simply append to the pending
[11054eb]468        static void __ioarbiter_submit( $io_context * ctx, __u32 idxs[], __u32 have, bool lazy ) {
[78da4ab]469                __cfadbg_print_safe(io, "Kernel I/O : submitting %u from the arbiter to context %u\n", have, ctx->fd);
470
471                __cfadbg_print_safe(io, "Kernel I/O : waiting to submit %u\n", have);
472
[11054eb]473                __external_io ei;
474                ei.idxs = idxs;
475                ei.have = have;
476                ei.lazy = lazy;
[78da4ab]477
[11054eb]478                block(ctx->ext_sq, (__outstanding_io&)ei);
[78da4ab]479
480                __cfadbg_print_safe(io, "Kernel I/O : %u submitted from arbiter\n", have);
481        }
482
[11054eb]483        static void __ioarbiter_flush( $io_context & ctx ) {
484                if(!empty( ctx.ext_sq )) {
485                        __STATS__( false, io.flush.external += 1; )
[78da4ab]486
[11054eb]487                        __cfadbg_print_safe(io, "Kernel I/O : arbiter flushing\n");
[d60d30e]488
[11054eb]489                        lock( ctx.ext_sq.lock __cfaabi_dbg_ctx2 );
490                        {
491                                while( !empty(ctx.ext_sq.queue) ) {
492                                        __external_io & ei = (__external_io&)drop( ctx.ext_sq.queue );
[78da4ab]493
[11054eb]494                                        __submit(&ctx, ei.idxs, ei.have, ei.lazy);
[78da4ab]495
[11054eb]496                                        post( ei.sem );
497                                }
498
499                                ctx.ext_sq.empty = true;
500                        }
501                        unlock(ctx.ext_sq.lock );
502                }
[78da4ab]503        }
[47746a2]504#endif
Note: See TracBrowser for help on using the repository browser.