133346ed6SMatt Macy.\" 233346ed6SMatt Macy.\" Copyright (C) 2018 Matthew Macy <mmacy@FreeBSD.org>. 333346ed6SMatt Macy.\" 433346ed6SMatt Macy.\" Redistribution and use in source and binary forms, with or without 533346ed6SMatt Macy.\" modification, are permitted provided that the following conditions 633346ed6SMatt Macy.\" are met: 733346ed6SMatt Macy.\" 1. Redistributions of source code must retain the above copyright 833346ed6SMatt Macy.\" notice(s), this list of conditions and the following disclaimer as 933346ed6SMatt Macy.\" the first lines of this file unmodified other than the possible 1033346ed6SMatt Macy.\" addition of one or more copyright notices. 1133346ed6SMatt Macy.\" 2. Redistributions in binary form must reproduce the above copyright 1233346ed6SMatt Macy.\" notice(s), this list of conditions and the following disclaimer in the 1333346ed6SMatt Macy.\" documentation and/or other materials provided with the distribution. 1433346ed6SMatt Macy.\" 1533346ed6SMatt Macy.\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY 1633346ed6SMatt Macy.\" EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 1733346ed6SMatt Macy.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 1833346ed6SMatt Macy.\" DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY 1933346ed6SMatt Macy.\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 2033346ed6SMatt Macy.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 2133346ed6SMatt Macy.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 2233346ed6SMatt Macy.\" CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2333346ed6SMatt Macy.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2433346ed6SMatt Macy.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 2533346ed6SMatt Macy.\" DAMAGE. 2633346ed6SMatt Macy.\" 2733346ed6SMatt Macy.\" $FreeBSD$ 2833346ed6SMatt Macy.\" 297739f6e5SEd Schouten.Dd June 25, 2018 3033346ed6SMatt Macy.Dt EPOCH 9 3133346ed6SMatt Macy.Os 3233346ed6SMatt Macy.Sh NAME 3333346ed6SMatt Macy.Nm epoch , 3433346ed6SMatt Macy.Nm epoch_context , 3533346ed6SMatt Macy.Nm epoch_alloc , 3633346ed6SMatt Macy.Nm epoch_free , 3733346ed6SMatt Macy.Nm epoch_enter , 3833346ed6SMatt Macy.Nm epoch_exit , 3933346ed6SMatt Macy.Nm epoch_wait , 4033346ed6SMatt Macy.Nm epoch_call , 4133346ed6SMatt Macy.Nm in_epoch , 427739f6e5SEd Schouten.Nd kernel epoch based reclamation 4333346ed6SMatt Macy.Sh SYNOPSIS 4433346ed6SMatt Macy.In sys/param.h 4533346ed6SMatt Macy.In sys/proc.h 4633346ed6SMatt Macy.In sys/epoch.h 4733346ed6SMatt Macy.Ft epoch_t 486e36248fSMatt Macy.Fn epoch_alloc "int flags" 4933346ed6SMatt Macy.Ft void 5033346ed6SMatt Macy.Fn epoch_enter "epoch_t epoch" 5133346ed6SMatt Macy.Ft void 5268195696SMatt Macy.Fn epoch_enter_preempt "epoch_t epoch" "epoch_tracker_t et" 536e36248fSMatt Macy.Ft void 5433346ed6SMatt Macy.Fn epoch_exit "epoch_t epoch" 5533346ed6SMatt Macy.Ft void 5668195696SMatt Macy.Fn epoch_exit_preempt "epoch_t epoch" "epoch_tracker_t et" 576e36248fSMatt Macy.Ft void 5833346ed6SMatt Macy.Fn epoch_wait "epoch_t epoch" 5933346ed6SMatt Macy.Ft void 6070398c2fSMatt Macy.Fn epoch_wait_preempt "epoch_t epoch" 616e36248fSMatt Macy.Ft void 6233346ed6SMatt Macy.Fn epoch_call "epoch_t epoch" "epoch_context_t ctx" "void (*callback) (epoch_context_t)" 6333346ed6SMatt Macy.Ft int 64*4619bce8SMatt Macy.Fn in_epoch "epoch_t epoch" 6533346ed6SMatt Macy.Sh DESCRIPTION 6633346ed6SMatt MacyEpochs are used to guarantee liveness and immutability of data by 6733346ed6SMatt Macydeferring reclamation and mutation until a grace period has elapsed. 687d9389b0SEitan AdlerEpochs do not have any lock ordering issues. 697d9389b0SEitan AdlerEntering and leaving an epoch section will never block. 7033346ed6SMatt Macy.Pp 7133346ed6SMatt MacyEpochs are allocated with 7233346ed6SMatt Macy.Fn epoch_alloc 7333346ed6SMatt Macyand freed with 7433346ed6SMatt Macy.Fn epoch_free . 756e36248fSMatt MacyThe flags passed to epoch_alloc determine whether preemption is 767d9389b0SEitan Adlerallowed during a section or not (the default), as specified by 7770398c2fSMatt MacyEPOCH_PREEMPT. 7833346ed6SMatt MacyThreads indicate the start of an epoch critical section by calling 7933346ed6SMatt Macy.Fn epoch_enter . 8033346ed6SMatt MacyThe end of a critical section is indicated by calling 8133346ed6SMatt Macy.Fn epoch_exit . 8270398c2fSMatt MacyThe _preempt variants can be used around code which requires preemption. 8333346ed6SMatt MacyA thread can wait until a grace period has elapsed 8433346ed6SMatt Macysince any threads have entered 8533346ed6SMatt Macythe epoch by calling 8670398c2fSMatt Macy.Fn epoch_wait 8770398c2fSMatt Macyor 8870398c2fSMatt Macy.Fn epoch_wait_preempt , 8970398c2fSMatt Macydepending on the epoch_type. 9070398c2fSMatt MacyThe use of a default epoch type allows one to use 9170398c2fSMatt Macy.Fn epoch_wait 926e36248fSMatt Macywhich is guaranteed to have much shorter completion times since 936e36248fSMatt Macywe know that none of the threads in an epoch section will be preempted 946e36248fSMatt Macybefore completing its section. 9533346ed6SMatt MacyIf the thread can't sleep or is otherwise in a performance sensitive 9633346ed6SMatt Macypath it can ensure that a grace period has elapsed by calling 9733346ed6SMatt Macy.Fn epoch_call 9833346ed6SMatt Macywith a callback with any work that needs to wait for an epoch to elapse. 9933346ed6SMatt MacyOnly non-sleepable locks can be acquired during a section protected by 10070398c2fSMatt Macy.Fn epoch_enter_preempt 10133346ed6SMatt Macyand 10270398c2fSMatt Macy.Fn epoch_exit_preempt . 10333346ed6SMatt MacyINVARIANTS can assert that a thread is in an epoch by using 10433346ed6SMatt Macy.Fn in_epoch . 10533346ed6SMatt Macy.Pp 10670398c2fSMatt MacyThe epoch API currently does not support sleeping in epoch_preempt sections. 1077d9389b0SEitan AdlerA caller should never call 10833346ed6SMatt Macy.Fn epoch_wait 10968195696SMatt Macyin the middle of an epoch section for the same epoch as this will lead to a deadlock. 11033346ed6SMatt Macy.Pp 11168195696SMatt MacyBe default mutexes cannot be held across 11268195696SMatt Macy.Fn epoch_wait_preempt . 11368195696SMatt MacyTo permit this the epoch must be allocated with 114*4619bce8SMatt MacyEPOCH_LOCKED. 11568195696SMatt MacyWhen doing this one must be cautious of creating a situation where a deadlock is 11668195696SMatt Macypossible. Note that epochs are not a straight replacement for read locks. 1177d9389b0SEitan AdlerCallers must use safe list and tailq traversal routines in an epoch (see ck_queue). 11833346ed6SMatt MacyWhen modifying a list referenced from an epoch section safe removal 11933346ed6SMatt Macyroutines must be used and the caller can no longer modify a list entry 1207d9389b0SEitan Adlerin place. 1217d9389b0SEitan AdlerAn item to be modified must be handled with copy on write 12233346ed6SMatt Macyand frees must be deferred until after a grace period has elapsed. 12333346ed6SMatt Macy.Sh RETURN VALUES 124*4619bce8SMatt Macy.Fn in_epoch curepoch 125*4619bce8SMatt Macywill return 1 if curthread is in curepoch, 0 otherwise. 12670398c2fSMatt Macy.Sh CAVEATS 12770398c2fSMatt MacyOne must be cautious when using 12870398c2fSMatt Macy.Fn epoch_wait_preempt 12970398c2fSMatt Macythreads are pinned during epoch sections so if a thread in a section is then 13070398c2fSMatt Macypreempted by a higher priority compute bound thread on that CPU it can be 1317d9389b0SEitan Adlerprevented from leaving the section. 1327d9389b0SEitan AdlerThus the wait time for the waiter is 13370398c2fSMatt Macypotentially unbounded. 13433346ed6SMatt Macy.Sh EXAMPLES 13533346ed6SMatt MacyAsync free example: 13633346ed6SMatt MacyThread 1: 13733346ed6SMatt Macy.Bd -literal 1386e36248fSMatt Macyint 1396e36248fSMatt Macyin_pcbladdr(struct inpcb *inp, struct in_addr *faddr, struct in_laddr *laddr, 1406e36248fSMatt Macy struct ucred *cred) 14133346ed6SMatt Macy{ 1426e36248fSMatt Macy /* ... */ 14333346ed6SMatt Macy epoch_enter(net_epoch); 14433346ed6SMatt Macy CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 14533346ed6SMatt Macy sa = ifa->ifa_addr; 14633346ed6SMatt Macy if (sa->sa_family != AF_INET) 14733346ed6SMatt Macy continue; 14833346ed6SMatt Macy sin = (struct sockaddr_in *)sa; 14933346ed6SMatt Macy if (prison_check_ip4(cred, &sin->sin_addr) == 0) { 15033346ed6SMatt Macy ia = (struct in_ifaddr *)ifa; 15133346ed6SMatt Macy break; 15233346ed6SMatt Macy } 15333346ed6SMatt Macy } 15433346ed6SMatt Macy epoch_exit(net_epoch); 1556e36248fSMatt Macy /* ... */ 15633346ed6SMatt Macy} 15733346ed6SMatt Macy.Ed 15833346ed6SMatt MacyThread 2: 15933346ed6SMatt Macy.Bd -literal 16033346ed6SMatt Macyvoid 16133346ed6SMatt Macyifa_free(struct ifaddr *ifa) 16233346ed6SMatt Macy{ 16333346ed6SMatt Macy 16433346ed6SMatt Macy if (refcount_release(&ifa->ifa_refcnt)) 16533346ed6SMatt Macy epoch_call(net_epoch, &ifa->ifa_epoch_ctx, ifa_destroy); 16633346ed6SMatt Macy} 16733346ed6SMatt Macy 1686e36248fSMatt Macyvoid 1696e36248fSMatt Macyif_purgeaddrs(struct ifnet *ifp) 17033346ed6SMatt Macy{ 17133346ed6SMatt Macy 1727d9389b0SEitan Adler /* .... * 17333346ed6SMatt Macy IF_ADDR_WLOCK(ifp); 17433346ed6SMatt Macy CK_STAILQ_REMOVE(&ifp->if_addrhead, ifa, ifaddr, ifa_link); 17533346ed6SMatt Macy IF_ADDR_WUNLOCK(ifp); 17633346ed6SMatt Macy ifa_free(ifa); 17733346ed6SMatt Macy} 17833346ed6SMatt Macy.Ed 17933346ed6SMatt Macy.Pp 1807d9389b0SEitan AdlerThread 1 traverses the ifaddr list in an epoch. 1817d9389b0SEitan AdlerThread 2 unlinks with the corresponding epoch safe macro, marks as logically free, 1827d9389b0SEitan Adlerand then defers deletion. 1837d9389b0SEitan AdlerMore general mutation or a synchronous 1847d9389b0SEitan Adlerfree would have to follow a call to 18533346ed6SMatt Macy.Fn epoch_wait . 18633346ed6SMatt Macy.Sh ERRORS 18733346ed6SMatt MacyNone. 18833346ed6SMatt Macy.El 18933346ed6SMatt Macy.Sh SEE ALSO 19033346ed6SMatt Macy.Xr locking 9 , 19133346ed6SMatt Macy.Xr mtx_pool 9 , 19233346ed6SMatt Macy.Xr mutex 9 , 19333346ed6SMatt Macy.Xr rwlock 9 , 19433346ed6SMatt Macy.Xr sema 9 , 19533346ed6SMatt Macy.Xr sleep 9 , 19633346ed6SMatt Macy.Xr sx 9 , 19733346ed6SMatt Macy.Xr timeout 9 198