17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 57c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 67c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 77c478bd9Sstevel@tonic-gate * with the License. 87c478bd9Sstevel@tonic-gate * 97c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 107c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 117c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 127c478bd9Sstevel@tonic-gate * and limitations under the License. 137c478bd9Sstevel@tonic-gate * 147c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 157c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 167c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 177c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 187c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 197c478bd9Sstevel@tonic-gate * 207c478bd9Sstevel@tonic-gate * CDDL HEADER END 217c478bd9Sstevel@tonic-gate */ 227c478bd9Sstevel@tonic-gate /* 23*e4506d67Smeem * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate * Use is subject to license terms. 257c478bd9Sstevel@tonic-gate */ 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */ 287c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gate /* 317c478bd9Sstevel@tonic-gate * Portions of this source code were derived from Berkeley 4.3 BSD 327c478bd9Sstevel@tonic-gate * under license from the Regents of the University of California. 337c478bd9Sstevel@tonic-gate */ 347c478bd9Sstevel@tonic-gate 357c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 367c478bd9Sstevel@tonic-gate 377c478bd9Sstevel@tonic-gate #include <sys/param.h> 387c478bd9Sstevel@tonic-gate #include <sys/isa_defs.h> 397c478bd9Sstevel@tonic-gate #include <sys/types.h> 407c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h> 417c478bd9Sstevel@tonic-gate #include <sys/user.h> 427c478bd9Sstevel@tonic-gate #include <sys/systm.h> 437c478bd9Sstevel@tonic-gate #include <sys/errno.h> 447c478bd9Sstevel@tonic-gate #include <sys/time.h> 457c478bd9Sstevel@tonic-gate #include <sys/vnode.h> 467c478bd9Sstevel@tonic-gate #include <sys/file.h> 477c478bd9Sstevel@tonic-gate #include <sys/mode.h> 487c478bd9Sstevel@tonic-gate #include <sys/proc.h> 497c478bd9Sstevel@tonic-gate #include <sys/uio.h> 507c478bd9Sstevel@tonic-gate #include <sys/poll_impl.h> 517c478bd9Sstevel@tonic-gate #include <sys/kmem.h> 527c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h> 537c478bd9Sstevel@tonic-gate #include <sys/debug.h> 547c478bd9Sstevel@tonic-gate #include <sys/bitmap.h> 557c478bd9Sstevel@tonic-gate #include <sys/kstat.h> 567c478bd9Sstevel@tonic-gate #include <sys/rctl.h> 577c478bd9Sstevel@tonic-gate #include <sys/port_kernel.h> 587c478bd9Sstevel@tonic-gate #include <sys/schedctl.h> 597c478bd9Sstevel@tonic-gate 607c478bd9Sstevel@tonic-gate #define NPHLOCKS 64 /* Number of locks; must be power of 2 */ 617c478bd9Sstevel@tonic-gate #define PHLOCKADDR(php) &plocks[(((uintptr_t)(php)) >> 8) & (NPHLOCKS - 1)] 627c478bd9Sstevel@tonic-gate #define PHLOCK(php) PHLOCKADDR(php).pp_lock 637c478bd9Sstevel@tonic-gate #define PH_ENTER(php) mutex_enter(PHLOCK(php)) 647c478bd9Sstevel@tonic-gate #define PH_EXIT(php) mutex_exit(PHLOCK(php)) 657c478bd9Sstevel@tonic-gate #define VALID_POLL_EVENTS (POLLIN | POLLPRI | POLLOUT | POLLRDNORM \ 667c478bd9Sstevel@tonic-gate | POLLRDBAND | POLLWRBAND | POLLHUP | POLLERR | POLLNVAL) 677c478bd9Sstevel@tonic-gate 687c478bd9Sstevel@tonic-gate /* 697c478bd9Sstevel@tonic-gate * global counters to collect some stats 707c478bd9Sstevel@tonic-gate */ 717c478bd9Sstevel@tonic-gate static struct { 727c478bd9Sstevel@tonic-gate kstat_named_t polllistmiss; /* failed to find a cached poll list */ 737c478bd9Sstevel@tonic-gate kstat_named_t pollcachehit; /* list matched 100% w/ cached one */ 747c478bd9Sstevel@tonic-gate kstat_named_t pollcachephit; /* list matched < 100% w/ cached one */ 757c478bd9Sstevel@tonic-gate kstat_named_t pollcachemiss; /* every list entry is dif from cache */ 767c478bd9Sstevel@tonic-gate } pollstats = { 777c478bd9Sstevel@tonic-gate { "polllistmiss", KSTAT_DATA_UINT64 }, 787c478bd9Sstevel@tonic-gate { "pollcachehit", KSTAT_DATA_UINT64 }, 797c478bd9Sstevel@tonic-gate { "pollcachephit", KSTAT_DATA_UINT64 }, 807c478bd9Sstevel@tonic-gate { "pollcachemiss", KSTAT_DATA_UINT64 } 817c478bd9Sstevel@tonic-gate }; 827c478bd9Sstevel@tonic-gate 837c478bd9Sstevel@tonic-gate kstat_named_t *pollstats_ptr = (kstat_named_t *)&pollstats; 847c478bd9Sstevel@tonic-gate uint_t pollstats_ndata = sizeof (pollstats) / sizeof (kstat_named_t); 857c478bd9Sstevel@tonic-gate 867c478bd9Sstevel@tonic-gate struct pplock { 877c478bd9Sstevel@tonic-gate kmutex_t pp_lock; 887c478bd9Sstevel@tonic-gate short pp_flag; 897c478bd9Sstevel@tonic-gate kcondvar_t pp_wait_cv; 907c478bd9Sstevel@tonic-gate int32_t pp_pad; /* to a nice round 16 bytes */ 917c478bd9Sstevel@tonic-gate }; 927c478bd9Sstevel@tonic-gate 937c478bd9Sstevel@tonic-gate static struct pplock plocks[NPHLOCKS]; /* Hash array of pollhead locks */ 947c478bd9Sstevel@tonic-gate 957c478bd9Sstevel@tonic-gate #ifdef DEBUG 967c478bd9Sstevel@tonic-gate static int pollchecksanity(pollstate_t *, nfds_t); 977c478bd9Sstevel@tonic-gate static int pollcheckxref(pollstate_t *, int); 987c478bd9Sstevel@tonic-gate static void pollcheckphlist(void); 997c478bd9Sstevel@tonic-gate static int pollcheckrevents(pollstate_t *, int, int, int); 1007c478bd9Sstevel@tonic-gate static void checkpolldat(pollstate_t *); 1017c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 1027c478bd9Sstevel@tonic-gate static int plist_chkdupfd(file_t *, polldat_t *, pollstate_t *, pollfd_t *, int, 1037c478bd9Sstevel@tonic-gate int *); 1047c478bd9Sstevel@tonic-gate 1057c478bd9Sstevel@tonic-gate /* 1067c478bd9Sstevel@tonic-gate * Data structure overview: 1077c478bd9Sstevel@tonic-gate * The per-thread poll state consists of 1087c478bd9Sstevel@tonic-gate * one pollstate_t 1097c478bd9Sstevel@tonic-gate * one pollcache_t 1107c478bd9Sstevel@tonic-gate * one bitmap with one event bit per fd 1117c478bd9Sstevel@tonic-gate * a (two-dimensional) hashed array of polldat_t structures - one entry 1127c478bd9Sstevel@tonic-gate * per fd 1137c478bd9Sstevel@tonic-gate * 1147c478bd9Sstevel@tonic-gate * This conglomerate of data structures interact with 1157c478bd9Sstevel@tonic-gate * the pollhead which is used by VOP_POLL and pollwakeup 1167c478bd9Sstevel@tonic-gate * (protected by the PHLOCK, cached array of plocks), and 1177c478bd9Sstevel@tonic-gate * the fpollinfo list hanging off the fi_list which is used to notify 1187c478bd9Sstevel@tonic-gate * poll when a cached fd is closed. This is protected by uf_lock. 1197c478bd9Sstevel@tonic-gate * 1207c478bd9Sstevel@tonic-gate * Invariants: 1217c478bd9Sstevel@tonic-gate * pd_php (pollhead pointer) is set iff (if and only if) the polldat 1227c478bd9Sstevel@tonic-gate * is on that pollhead. This is modified atomically under pc_lock. 1237c478bd9Sstevel@tonic-gate * 1247c478bd9Sstevel@tonic-gate * pd_fp (file_t pointer) is set iff the thread is on the fpollinfo 1257c478bd9Sstevel@tonic-gate * list for that open file. 1267c478bd9Sstevel@tonic-gate * This is modified atomically under pc_lock. 1277c478bd9Sstevel@tonic-gate * 1287c478bd9Sstevel@tonic-gate * pd_count is the sum (over all values of i) of pd_ref[i].xf_refcnt. 1297c478bd9Sstevel@tonic-gate * Iff pd_ref[i].xf_refcnt >= 1 then 1307c478bd9Sstevel@tonic-gate * ps_pcacheset[i].pcs_pollfd[pd_ref[i].xf_position].fd == pd_fd 1317c478bd9Sstevel@tonic-gate * Iff pd_ref[i].xf_refcnt > 1 then 1327c478bd9Sstevel@tonic-gate * In ps_pcacheset[i].pcs_pollfd between index 1337c478bd9Sstevel@tonic-gate * pd_ref[i].xf_position] and the end of the list 1347c478bd9Sstevel@tonic-gate * there are xf_refcnt entries with .fd == pd_fd 1357c478bd9Sstevel@tonic-gate * 1367c478bd9Sstevel@tonic-gate * Locking design: 1377c478bd9Sstevel@tonic-gate * Whenever possible the design relies on the fact that the poll cache state 1387c478bd9Sstevel@tonic-gate * is per thread thus for both poll and exit it is self-synchronizing. 1397c478bd9Sstevel@tonic-gate * Thus the key interactions where other threads access the state are: 1407c478bd9Sstevel@tonic-gate * pollwakeup (and polltime), and 1417c478bd9Sstevel@tonic-gate * close cleaning up the cached references to an open file 1427c478bd9Sstevel@tonic-gate * 1437c478bd9Sstevel@tonic-gate * The two key locks in poll proper is ps_lock and pc_lock. 1447c478bd9Sstevel@tonic-gate * 1457c478bd9Sstevel@tonic-gate * The ps_lock is used for synchronization between poll, (lwp_)exit and close 1467c478bd9Sstevel@tonic-gate * to ensure that modifications to pollcacheset structure are serialized. 1477c478bd9Sstevel@tonic-gate * This lock is held through most of poll() except where poll sleeps 1487c478bd9Sstevel@tonic-gate * since there is little need to handle closes concurrently with the execution 1497c478bd9Sstevel@tonic-gate * of poll. 1507c478bd9Sstevel@tonic-gate * The pc_lock protects most of the fields in pollcache structure and polldat 1517c478bd9Sstevel@tonic-gate * structures (which are accessed by poll, pollwakeup, and polltime) 1527c478bd9Sstevel@tonic-gate * with the exception of fields that are only modified when only one thread 1537c478bd9Sstevel@tonic-gate * can access this per-thread state. 1547c478bd9Sstevel@tonic-gate * Those exceptions occur in poll when first allocating the per-thread state, 1557c478bd9Sstevel@tonic-gate * when poll grows the number of polldat (never shrinks), and when 1567c478bd9Sstevel@tonic-gate * exit/pollcleanup has ensured that there are no references from either 1577c478bd9Sstevel@tonic-gate * pollheads or fpollinfo to the threads poll state. 1587c478bd9Sstevel@tonic-gate * 1597c478bd9Sstevel@tonic-gate * Poll(2) system call is the only path which ps_lock and pc_lock are both 1607c478bd9Sstevel@tonic-gate * held, in that order. It needs ps_lock to synchronize with close and 1617c478bd9Sstevel@tonic-gate * lwp_exit; and pc_lock with pollwakeup. 1627c478bd9Sstevel@tonic-gate * 1637c478bd9Sstevel@tonic-gate * The locking interaction between pc_lock and PHLOCK take into account 1647c478bd9Sstevel@tonic-gate * that poll acquires these locks in the order of pc_lock and then PHLOCK 1657c478bd9Sstevel@tonic-gate * while pollwakeup does it in the reverse order. Thus pollwakeup implements 1667c478bd9Sstevel@tonic-gate * deadlock avoidance by dropping the locks and reacquiring them in the 1677c478bd9Sstevel@tonic-gate * reverse order. For this to work pollwakeup needs to prevent the thread 1687c478bd9Sstevel@tonic-gate * from exiting and freeing all of the poll related state. Thus is done 1697c478bd9Sstevel@tonic-gate * using 1707c478bd9Sstevel@tonic-gate * the pc_no_exit lock 1717c478bd9Sstevel@tonic-gate * the pc_busy counter 1727c478bd9Sstevel@tonic-gate * the pc_busy_cv condition variable 1737c478bd9Sstevel@tonic-gate * 1747c478bd9Sstevel@tonic-gate * The locking interaction between pc_lock and uf_lock has similar 1757c478bd9Sstevel@tonic-gate * issues. Poll holds ps_lock and/or pc_lock across calls to getf/releasef 1767c478bd9Sstevel@tonic-gate * which acquire uf_lock. The poll cleanup in close needs to hold uf_lock 1777c478bd9Sstevel@tonic-gate * to prevent poll or exit from doing a delfpollinfo after which the thread 1787c478bd9Sstevel@tonic-gate * might exit. But the cleanup needs to acquire pc_lock when modifying 1797c478bd9Sstevel@tonic-gate * the poll cache state. The solution is to use pc_busy and do the close 1807c478bd9Sstevel@tonic-gate * cleanup in two phases: 1817c478bd9Sstevel@tonic-gate * First close calls pollblockexit which increments pc_busy. 1827c478bd9Sstevel@tonic-gate * This prevents the per-thread poll related state from being freed. 1837c478bd9Sstevel@tonic-gate * Then close drops uf_lock and calls pollcacheclean. 1847c478bd9Sstevel@tonic-gate * This routine can then acquire pc_lock and remove any references 1857c478bd9Sstevel@tonic-gate * to the closing fd (as well as recording that it has been closed 1867c478bd9Sstevel@tonic-gate * so that a POLLNVAL can be generated even if the fd is reused before 1877c478bd9Sstevel@tonic-gate * poll has been woken up and checked getf() again). 1887c478bd9Sstevel@tonic-gate * 1897c478bd9Sstevel@tonic-gate * When removing a polled fd from poll cache, the fd is always removed 1907c478bd9Sstevel@tonic-gate * from pollhead list first and then from fpollinfo list, i.e., 1917c478bd9Sstevel@tonic-gate * pollhead_delete() is called before delfpollinfo(). 1927c478bd9Sstevel@tonic-gate * 1937c478bd9Sstevel@tonic-gate * 1947c478bd9Sstevel@tonic-gate * Locking hierarchy: 1957c478bd9Sstevel@tonic-gate * pc_no_exit is a leaf level lock. 1967c478bd9Sstevel@tonic-gate * ps_lock is held when acquiring pc_lock (except when pollwakeup 1977c478bd9Sstevel@tonic-gate * acquires pc_lock). 1987c478bd9Sstevel@tonic-gate * pc_lock might be held when acquiring PHLOCK (pollhead_insert/ 1997c478bd9Sstevel@tonic-gate * pollhead_delete) 2007c478bd9Sstevel@tonic-gate * pc_lock is always held (but this is not required) 2017c478bd9Sstevel@tonic-gate * when acquiring PHLOCK (in polladd/pollhead_delete and pollwakeup called 2027c478bd9Sstevel@tonic-gate * from pcache_clean_entry). 2037c478bd9Sstevel@tonic-gate * pc_lock is held across addfpollinfo/delfpollinfo which acquire 2047c478bd9Sstevel@tonic-gate * uf_lock. 2057c478bd9Sstevel@tonic-gate * pc_lock is held across getf/releasef which acquire uf_lock. 2067c478bd9Sstevel@tonic-gate * ps_lock might be held across getf/releasef which acquire uf_lock. 2077c478bd9Sstevel@tonic-gate * pollwakeup tries to acquire pc_lock while holding PHLOCK 2087c478bd9Sstevel@tonic-gate * but drops the locks and reacquire them in reverse order to avoid 2097c478bd9Sstevel@tonic-gate * deadlock. 2107c478bd9Sstevel@tonic-gate * 2117c478bd9Sstevel@tonic-gate * Note also that there is deadlock avoidance support for VOP_POLL routines 2127c478bd9Sstevel@tonic-gate * and pollwakeup involving a file system or driver lock. 2137c478bd9Sstevel@tonic-gate * See below. 2147c478bd9Sstevel@tonic-gate */ 2157c478bd9Sstevel@tonic-gate 2167c478bd9Sstevel@tonic-gate /* 2177c478bd9Sstevel@tonic-gate * Deadlock avoidance support for VOP_POLL() routines. This is 2187c478bd9Sstevel@tonic-gate * sometimes necessary to prevent deadlock between polling threads 2197c478bd9Sstevel@tonic-gate * (which hold poll locks on entry to xx_poll(), then acquire foo) 2207c478bd9Sstevel@tonic-gate * and pollwakeup() threads (which hold foo, then acquire poll locks). 2217c478bd9Sstevel@tonic-gate * 2227c478bd9Sstevel@tonic-gate * pollunlock(void) releases whatever poll locks the current thread holds, 2237c478bd9Sstevel@tonic-gate * returning a cookie for use by pollrelock(); 2247c478bd9Sstevel@tonic-gate * 2257c478bd9Sstevel@tonic-gate * pollrelock(cookie) reacquires previously dropped poll locks; 2267c478bd9Sstevel@tonic-gate * 2277c478bd9Sstevel@tonic-gate * polllock(php, mutex) does the common case: pollunlock(), 2287c478bd9Sstevel@tonic-gate * acquire the problematic mutex, pollrelock(). 2297c478bd9Sstevel@tonic-gate */ 2307c478bd9Sstevel@tonic-gate int 2317c478bd9Sstevel@tonic-gate pollunlock(void) 2327c478bd9Sstevel@tonic-gate { 2337c478bd9Sstevel@tonic-gate pollcache_t *pcp; 2347c478bd9Sstevel@tonic-gate int lockstate = 0; 2357c478bd9Sstevel@tonic-gate 2367c478bd9Sstevel@tonic-gate /* 2377c478bd9Sstevel@tonic-gate * t_pollcache is set by /dev/poll and event ports (port_fd.c). 2387c478bd9Sstevel@tonic-gate * If the pollrelock/pollunlock is called as a result of poll(2), 2397c478bd9Sstevel@tonic-gate * the t_pollcache should be NULL. 2407c478bd9Sstevel@tonic-gate */ 2417c478bd9Sstevel@tonic-gate if (curthread->t_pollcache == NULL) 2427c478bd9Sstevel@tonic-gate pcp = curthread->t_pollstate->ps_pcache; 2437c478bd9Sstevel@tonic-gate else 2447c478bd9Sstevel@tonic-gate pcp = curthread->t_pollcache; 2457c478bd9Sstevel@tonic-gate 2467c478bd9Sstevel@tonic-gate if (mutex_owned(&pcp->pc_lock)) { 2477c478bd9Sstevel@tonic-gate lockstate = 1; 2487c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_lock); 2497c478bd9Sstevel@tonic-gate } 2507c478bd9Sstevel@tonic-gate return (lockstate); 2517c478bd9Sstevel@tonic-gate } 2527c478bd9Sstevel@tonic-gate 2537c478bd9Sstevel@tonic-gate void 2547c478bd9Sstevel@tonic-gate pollrelock(int lockstate) 2557c478bd9Sstevel@tonic-gate { 2567c478bd9Sstevel@tonic-gate pollcache_t *pcp; 2577c478bd9Sstevel@tonic-gate 2587c478bd9Sstevel@tonic-gate /* 2597c478bd9Sstevel@tonic-gate * t_pollcache is set by /dev/poll and event ports (port_fd.c). 2607c478bd9Sstevel@tonic-gate * If the pollrelock/pollunlock is called as a result of poll(2), 2617c478bd9Sstevel@tonic-gate * the t_pollcache should be NULL. 2627c478bd9Sstevel@tonic-gate */ 2637c478bd9Sstevel@tonic-gate if (curthread->t_pollcache == NULL) 2647c478bd9Sstevel@tonic-gate pcp = curthread->t_pollstate->ps_pcache; 2657c478bd9Sstevel@tonic-gate else 2667c478bd9Sstevel@tonic-gate pcp = curthread->t_pollcache; 2677c478bd9Sstevel@tonic-gate 2687c478bd9Sstevel@tonic-gate if (lockstate > 0) 2697c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_lock); 2707c478bd9Sstevel@tonic-gate } 2717c478bd9Sstevel@tonic-gate 2727c478bd9Sstevel@tonic-gate /* ARGSUSED */ 2737c478bd9Sstevel@tonic-gate void 2747c478bd9Sstevel@tonic-gate polllock(pollhead_t *php, kmutex_t *lp) 2757c478bd9Sstevel@tonic-gate { 2767c478bd9Sstevel@tonic-gate if (!mutex_tryenter(lp)) { 2777c478bd9Sstevel@tonic-gate int lockstate = pollunlock(); 2787c478bd9Sstevel@tonic-gate mutex_enter(lp); 2797c478bd9Sstevel@tonic-gate pollrelock(lockstate); 2807c478bd9Sstevel@tonic-gate } 2817c478bd9Sstevel@tonic-gate } 2827c478bd9Sstevel@tonic-gate 2837c478bd9Sstevel@tonic-gate static int 2847c478bd9Sstevel@tonic-gate poll_common(pollfd_t *fds, nfds_t nfds, timespec_t *tsp, k_sigset_t *ksetp) 2857c478bd9Sstevel@tonic-gate { 2867c478bd9Sstevel@tonic-gate kthread_t *t = curthread; 2877c478bd9Sstevel@tonic-gate klwp_t *lwp = ttolwp(t); 2887c478bd9Sstevel@tonic-gate proc_t *p = ttoproc(t); 2897c478bd9Sstevel@tonic-gate int fdcnt = 0; 2907c478bd9Sstevel@tonic-gate int rval; 2917c478bd9Sstevel@tonic-gate int i; 2927c478bd9Sstevel@tonic-gate timespec_t *rqtp = NULL; 2937c478bd9Sstevel@tonic-gate int timecheck = 0; 2947c478bd9Sstevel@tonic-gate int imm_timeout = 0; 2957c478bd9Sstevel@tonic-gate pollfd_t *pollfdp; 2967c478bd9Sstevel@tonic-gate pollstate_t *ps; 2977c478bd9Sstevel@tonic-gate pollcache_t *pcp; 2987c478bd9Sstevel@tonic-gate int error = 0; 2997c478bd9Sstevel@tonic-gate nfds_t old_nfds; 3007c478bd9Sstevel@tonic-gate int cacheindex = 0; /* which cache set is used */ 3017c478bd9Sstevel@tonic-gate 3027c478bd9Sstevel@tonic-gate /* 3037c478bd9Sstevel@tonic-gate * Determine the precise future time of the requested timeout, if any. 3047c478bd9Sstevel@tonic-gate */ 3057c478bd9Sstevel@tonic-gate if (tsp != NULL) { 3067c478bd9Sstevel@tonic-gate if (tsp->tv_sec == 0 && tsp->tv_nsec == 0) 3077c478bd9Sstevel@tonic-gate imm_timeout = 1; 3087c478bd9Sstevel@tonic-gate else { 3097c478bd9Sstevel@tonic-gate timespec_t now; 3107c478bd9Sstevel@tonic-gate timecheck = timechanged; 3117c478bd9Sstevel@tonic-gate gethrestime(&now); 3127c478bd9Sstevel@tonic-gate rqtp = tsp; 3137c478bd9Sstevel@tonic-gate timespecadd(rqtp, &now); 3147c478bd9Sstevel@tonic-gate } 3157c478bd9Sstevel@tonic-gate } 3167c478bd9Sstevel@tonic-gate 3177c478bd9Sstevel@tonic-gate /* 3187c478bd9Sstevel@tonic-gate * Reset our signal mask, if requested. 3197c478bd9Sstevel@tonic-gate */ 3207c478bd9Sstevel@tonic-gate if (ksetp != NULL) { 3217c478bd9Sstevel@tonic-gate mutex_enter(&p->p_lock); 3227c478bd9Sstevel@tonic-gate schedctl_finish_sigblock(t); 3237c478bd9Sstevel@tonic-gate lwp->lwp_sigoldmask = t->t_hold; 3247c478bd9Sstevel@tonic-gate t->t_hold = *ksetp; 3257c478bd9Sstevel@tonic-gate t->t_flag |= T_TOMASK; 3267c478bd9Sstevel@tonic-gate /* 3277c478bd9Sstevel@tonic-gate * Call cv_timedwait_sig() just to check for signals. 3287c478bd9Sstevel@tonic-gate * We will return immediately with either 0 or -1. 3297c478bd9Sstevel@tonic-gate */ 3307c478bd9Sstevel@tonic-gate if (!cv_timedwait_sig(&t->t_delay_cv, &p->p_lock, lbolt)) { 3317c478bd9Sstevel@tonic-gate mutex_exit(&p->p_lock); 3327c478bd9Sstevel@tonic-gate error = EINTR; 3337c478bd9Sstevel@tonic-gate goto pollout; 3347c478bd9Sstevel@tonic-gate } 3357c478bd9Sstevel@tonic-gate mutex_exit(&p->p_lock); 3367c478bd9Sstevel@tonic-gate } 3377c478bd9Sstevel@tonic-gate 3387c478bd9Sstevel@tonic-gate /* 3397c478bd9Sstevel@tonic-gate * Check to see if this guy just wants to use poll() as a timeout. 3407c478bd9Sstevel@tonic-gate * If yes then bypass all the other stuff and make him sleep. 3417c478bd9Sstevel@tonic-gate */ 3427c478bd9Sstevel@tonic-gate if (nfds == 0) { 3437c478bd9Sstevel@tonic-gate /* 3447c478bd9Sstevel@tonic-gate * Sleep until we have passed the requested future 3457c478bd9Sstevel@tonic-gate * time or until interrupted by a signal. 3467c478bd9Sstevel@tonic-gate * Do not check for signals if we have a zero timeout. 3477c478bd9Sstevel@tonic-gate */ 3487c478bd9Sstevel@tonic-gate if (!imm_timeout) { 3497c478bd9Sstevel@tonic-gate mutex_enter(&t->t_delay_lock); 3507c478bd9Sstevel@tonic-gate while ((rval = cv_waituntil_sig(&t->t_delay_cv, 3517c478bd9Sstevel@tonic-gate &t->t_delay_lock, rqtp, timecheck)) > 0) 3527c478bd9Sstevel@tonic-gate continue; 3537c478bd9Sstevel@tonic-gate mutex_exit(&t->t_delay_lock); 3547c478bd9Sstevel@tonic-gate if (rval == 0) 3557c478bd9Sstevel@tonic-gate error = EINTR; 3567c478bd9Sstevel@tonic-gate } 3577c478bd9Sstevel@tonic-gate goto pollout; 3587c478bd9Sstevel@tonic-gate } 3597c478bd9Sstevel@tonic-gate 360*e4506d67Smeem if (nfds >= p->p_fno_ctl) { 3617c478bd9Sstevel@tonic-gate mutex_enter(&p->p_lock); 3627c478bd9Sstevel@tonic-gate (void) rctl_action(rctlproc_legacy[RLIMIT_NOFILE], 3637c478bd9Sstevel@tonic-gate p->p_rctls, p, RCA_SAFE); 3647c478bd9Sstevel@tonic-gate mutex_exit(&p->p_lock); 3657c478bd9Sstevel@tonic-gate error = EINVAL; 3667c478bd9Sstevel@tonic-gate goto pollout; 3677c478bd9Sstevel@tonic-gate } 3687c478bd9Sstevel@tonic-gate 3697c478bd9Sstevel@tonic-gate /* 3707c478bd9Sstevel@tonic-gate * Need to allocate memory for pollstate before anything because 3717c478bd9Sstevel@tonic-gate * the mutex and cv are created in this space 3727c478bd9Sstevel@tonic-gate */ 3737c478bd9Sstevel@tonic-gate if ((ps = t->t_pollstate) == NULL) { 3747c478bd9Sstevel@tonic-gate t->t_pollstate = pollstate_create(); 3757c478bd9Sstevel@tonic-gate ps = t->t_pollstate; 3767c478bd9Sstevel@tonic-gate } 3777c478bd9Sstevel@tonic-gate 3787c478bd9Sstevel@tonic-gate if (ps->ps_pcache == NULL) 3797c478bd9Sstevel@tonic-gate ps->ps_pcache = pcache_alloc(); 3807c478bd9Sstevel@tonic-gate pcp = ps->ps_pcache; 3817c478bd9Sstevel@tonic-gate 3827c478bd9Sstevel@tonic-gate /* 3837c478bd9Sstevel@tonic-gate * NOTE: for performance, buffers are saved across poll() calls. 3847c478bd9Sstevel@tonic-gate * The theory is that if a process polls heavily, it tends to poll 3857c478bd9Sstevel@tonic-gate * on the same set of descriptors. Therefore, we only reallocate 3867c478bd9Sstevel@tonic-gate * buffers when nfds changes. There is no hysteresis control, 3877c478bd9Sstevel@tonic-gate * because there is no data to suggest that this is necessary; 3887c478bd9Sstevel@tonic-gate * the penalty of reallocating is not *that* great in any event. 3897c478bd9Sstevel@tonic-gate */ 3907c478bd9Sstevel@tonic-gate old_nfds = ps->ps_nfds; 3917c478bd9Sstevel@tonic-gate if (nfds != old_nfds) { 3927c478bd9Sstevel@tonic-gate 3937c478bd9Sstevel@tonic-gate kmem_free(ps->ps_pollfd, old_nfds * sizeof (pollfd_t)); 3947c478bd9Sstevel@tonic-gate pollfdp = kmem_alloc(nfds * sizeof (pollfd_t), KM_SLEEP); 3957c478bd9Sstevel@tonic-gate ps->ps_pollfd = pollfdp; 3967c478bd9Sstevel@tonic-gate ps->ps_nfds = nfds; 3977c478bd9Sstevel@tonic-gate } 3987c478bd9Sstevel@tonic-gate 3997c478bd9Sstevel@tonic-gate pollfdp = ps->ps_pollfd; 4007c478bd9Sstevel@tonic-gate if (copyin(fds, pollfdp, nfds * sizeof (pollfd_t))) { 4017c478bd9Sstevel@tonic-gate error = EFAULT; 4027c478bd9Sstevel@tonic-gate goto pollout; 4037c478bd9Sstevel@tonic-gate } 4047c478bd9Sstevel@tonic-gate 4057c478bd9Sstevel@tonic-gate if (fds == NULL) { 4067c478bd9Sstevel@tonic-gate /* 4077c478bd9Sstevel@tonic-gate * If the process has page 0 mapped, then the copyin() above 4087c478bd9Sstevel@tonic-gate * will succeed even if fds is NULL. However, our cached 4097c478bd9Sstevel@tonic-gate * poll lists are keyed by the address of the passed-in fds 4107c478bd9Sstevel@tonic-gate * structure, and we use the value NULL to indicate an unused 4117c478bd9Sstevel@tonic-gate * poll cache list entry. As such, we elect not to support 4127c478bd9Sstevel@tonic-gate * NULL as a valid (user) memory address and fail the poll() 4137c478bd9Sstevel@tonic-gate * call. 4147c478bd9Sstevel@tonic-gate */ 4157c478bd9Sstevel@tonic-gate error = EINVAL; 4167c478bd9Sstevel@tonic-gate goto pollout; 4177c478bd9Sstevel@tonic-gate } 4187c478bd9Sstevel@tonic-gate 4197c478bd9Sstevel@tonic-gate /* 4207c478bd9Sstevel@tonic-gate * If this thread polls for the first time, allocate ALL poll 4217c478bd9Sstevel@tonic-gate * cache data structures and cache the poll fd list. This 4227c478bd9Sstevel@tonic-gate * allocation is delayed till now because lwp's polling 0 fd 4237c478bd9Sstevel@tonic-gate * (i.e. using poll as timeout()) don't need this memory. 4247c478bd9Sstevel@tonic-gate */ 4257c478bd9Sstevel@tonic-gate mutex_enter(&ps->ps_lock); 4267c478bd9Sstevel@tonic-gate pcp = ps->ps_pcache; 4277c478bd9Sstevel@tonic-gate ASSERT(pcp != NULL); 4287c478bd9Sstevel@tonic-gate if (pcp->pc_bitmap == NULL) { 4297c478bd9Sstevel@tonic-gate pcache_create(pcp, nfds); 4307c478bd9Sstevel@tonic-gate /* 4317c478bd9Sstevel@tonic-gate * poll and cache this poll fd list in ps_pcacheset[0]. 4327c478bd9Sstevel@tonic-gate */ 4337c478bd9Sstevel@tonic-gate error = pcacheset_cache_list(ps, fds, &fdcnt, cacheindex); 4347c478bd9Sstevel@tonic-gate if (fdcnt || error) { 4357c478bd9Sstevel@tonic-gate mutex_exit(&ps->ps_lock); 4367c478bd9Sstevel@tonic-gate goto pollout; 4377c478bd9Sstevel@tonic-gate } 4387c478bd9Sstevel@tonic-gate } else { 4397c478bd9Sstevel@tonic-gate pollcacheset_t *pcset = ps->ps_pcacheset; 4407c478bd9Sstevel@tonic-gate 4417c478bd9Sstevel@tonic-gate /* 4427c478bd9Sstevel@tonic-gate * Not first time polling. Select a cached poll list by 4437c478bd9Sstevel@tonic-gate * matching user pollfd list buffer address. 4447c478bd9Sstevel@tonic-gate */ 4457c478bd9Sstevel@tonic-gate for (cacheindex = 0; cacheindex < ps->ps_nsets; cacheindex++) { 4467c478bd9Sstevel@tonic-gate if (pcset[cacheindex].pcs_usradr == (uintptr_t)fds) { 4477c478bd9Sstevel@tonic-gate if ((++pcset[cacheindex].pcs_count) == 0) { 4487c478bd9Sstevel@tonic-gate /* 4497c478bd9Sstevel@tonic-gate * counter is wrapping around. 4507c478bd9Sstevel@tonic-gate */ 4517c478bd9Sstevel@tonic-gate pcacheset_reset_count(ps, cacheindex); 4527c478bd9Sstevel@tonic-gate } 4537c478bd9Sstevel@tonic-gate /* 4547c478bd9Sstevel@tonic-gate * examine and resolve possible 4557c478bd9Sstevel@tonic-gate * difference of the current poll 4567c478bd9Sstevel@tonic-gate * list and previously cached one. 4577c478bd9Sstevel@tonic-gate * If there is an error during resolve(), 4587c478bd9Sstevel@tonic-gate * the callee will guarantee the consistency 4597c478bd9Sstevel@tonic-gate * of cached poll list and cache content. 4607c478bd9Sstevel@tonic-gate */ 4617c478bd9Sstevel@tonic-gate error = pcacheset_resolve(ps, nfds, &fdcnt, 4627c478bd9Sstevel@tonic-gate cacheindex); 4637c478bd9Sstevel@tonic-gate if (error) { 4647c478bd9Sstevel@tonic-gate mutex_exit(&ps->ps_lock); 4657c478bd9Sstevel@tonic-gate goto pollout; 4667c478bd9Sstevel@tonic-gate } 4677c478bd9Sstevel@tonic-gate break; 4687c478bd9Sstevel@tonic-gate } 4697c478bd9Sstevel@tonic-gate 4707c478bd9Sstevel@tonic-gate /* 4717c478bd9Sstevel@tonic-gate * Note that pcs_usradr field of an used entry won't be 4727c478bd9Sstevel@tonic-gate * NULL because it stores the address of passed-in fds, 4737c478bd9Sstevel@tonic-gate * and NULL fds will not be cached (Then it is either 4747c478bd9Sstevel@tonic-gate * the special timeout case when nfds is 0 or it returns 4757c478bd9Sstevel@tonic-gate * failure directly). 4767c478bd9Sstevel@tonic-gate */ 4777c478bd9Sstevel@tonic-gate if (pcset[cacheindex].pcs_usradr == NULL) { 4787c478bd9Sstevel@tonic-gate /* 4797c478bd9Sstevel@tonic-gate * found an unused entry. Use it to cache 4807c478bd9Sstevel@tonic-gate * this poll list. 4817c478bd9Sstevel@tonic-gate */ 4827c478bd9Sstevel@tonic-gate error = pcacheset_cache_list(ps, fds, &fdcnt, 4837c478bd9Sstevel@tonic-gate cacheindex); 4847c478bd9Sstevel@tonic-gate if (fdcnt || error) { 4857c478bd9Sstevel@tonic-gate mutex_exit(&ps->ps_lock); 4867c478bd9Sstevel@tonic-gate goto pollout; 4877c478bd9Sstevel@tonic-gate } 4887c478bd9Sstevel@tonic-gate break; 4897c478bd9Sstevel@tonic-gate } 4907c478bd9Sstevel@tonic-gate } 4917c478bd9Sstevel@tonic-gate if (cacheindex == ps->ps_nsets) { 4927c478bd9Sstevel@tonic-gate /* 4937c478bd9Sstevel@tonic-gate * We failed to find a matching cached poll fd list. 4947c478bd9Sstevel@tonic-gate * replace an old list. 4957c478bd9Sstevel@tonic-gate */ 4967c478bd9Sstevel@tonic-gate pollstats.polllistmiss.value.ui64++; 4977c478bd9Sstevel@tonic-gate cacheindex = pcacheset_replace(ps); 4987c478bd9Sstevel@tonic-gate ASSERT(cacheindex < ps->ps_nsets); 4997c478bd9Sstevel@tonic-gate pcset[cacheindex].pcs_usradr = (uintptr_t)fds; 5007c478bd9Sstevel@tonic-gate error = pcacheset_resolve(ps, nfds, &fdcnt, cacheindex); 5017c478bd9Sstevel@tonic-gate if (error) { 5027c478bd9Sstevel@tonic-gate mutex_exit(&ps->ps_lock); 5037c478bd9Sstevel@tonic-gate goto pollout; 5047c478bd9Sstevel@tonic-gate } 5057c478bd9Sstevel@tonic-gate } 5067c478bd9Sstevel@tonic-gate } 5077c478bd9Sstevel@tonic-gate 5087c478bd9Sstevel@tonic-gate /* 5097c478bd9Sstevel@tonic-gate * Always scan the bitmap with the lock on the pollcache held. 5107c478bd9Sstevel@tonic-gate * This is to make sure that a wakeup does not come undetected. 5117c478bd9Sstevel@tonic-gate * If the lock is not held, a pollwakeup could have come for an 5127c478bd9Sstevel@tonic-gate * fd we already checked but before this thread sleeps, in which 5137c478bd9Sstevel@tonic-gate * case the wakeup is missed. Now we hold the pcache lock and 5147c478bd9Sstevel@tonic-gate * check the bitmap again. This will prevent wakeup from happening 5157c478bd9Sstevel@tonic-gate * while we hold pcache lock since pollwakeup() will also lock 5167c478bd9Sstevel@tonic-gate * the pcache before updating poll bitmap. 5177c478bd9Sstevel@tonic-gate */ 5187c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_lock); 5197c478bd9Sstevel@tonic-gate for (;;) { 5207c478bd9Sstevel@tonic-gate pcp->pc_flag = 0; 5217c478bd9Sstevel@tonic-gate error = pcache_poll(pollfdp, ps, nfds, &fdcnt, cacheindex); 5227c478bd9Sstevel@tonic-gate if (fdcnt || error) { 5237c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_lock); 5247c478bd9Sstevel@tonic-gate mutex_exit(&ps->ps_lock); 5257c478bd9Sstevel@tonic-gate break; 5267c478bd9Sstevel@tonic-gate } 5277c478bd9Sstevel@tonic-gate 5287c478bd9Sstevel@tonic-gate /* 5297c478bd9Sstevel@tonic-gate * If T_POLLWAKE is set, a pollwakeup() was performed on 5307c478bd9Sstevel@tonic-gate * one of the file descriptors. This can happen only if 5317c478bd9Sstevel@tonic-gate * one of the VOP_POLL() functions dropped pcp->pc_lock. 5327c478bd9Sstevel@tonic-gate * The only current cases of this is in procfs (prpoll()) 5337c478bd9Sstevel@tonic-gate * and STREAMS (strpoll()). 5347c478bd9Sstevel@tonic-gate */ 5357c478bd9Sstevel@tonic-gate if (pcp->pc_flag & T_POLLWAKE) 5367c478bd9Sstevel@tonic-gate continue; 5377c478bd9Sstevel@tonic-gate 5387c478bd9Sstevel@tonic-gate /* 5397c478bd9Sstevel@tonic-gate * If you get here, the poll of fds was unsuccessful. 5407c478bd9Sstevel@tonic-gate * Wait until some fd becomes readable, writable, or gets 5417c478bd9Sstevel@tonic-gate * an exception, or until a signal or a timeout occurs. 5427c478bd9Sstevel@tonic-gate * Do not check for signals if we have a zero timeout. 5437c478bd9Sstevel@tonic-gate */ 5447c478bd9Sstevel@tonic-gate mutex_exit(&ps->ps_lock); 5457c478bd9Sstevel@tonic-gate if (imm_timeout) 5467c478bd9Sstevel@tonic-gate rval = -1; 5477c478bd9Sstevel@tonic-gate else 5487c478bd9Sstevel@tonic-gate rval = cv_waituntil_sig(&pcp->pc_cv, &pcp->pc_lock, 5497c478bd9Sstevel@tonic-gate rqtp, timecheck); 5507c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_lock); 5517c478bd9Sstevel@tonic-gate /* 5527c478bd9Sstevel@tonic-gate * If we have received a signal or timed out 5537c478bd9Sstevel@tonic-gate * then break out and return. 5547c478bd9Sstevel@tonic-gate */ 5557c478bd9Sstevel@tonic-gate if (rval <= 0) { 5567c478bd9Sstevel@tonic-gate if (rval == 0) 5577c478bd9Sstevel@tonic-gate error = EINTR; 5587c478bd9Sstevel@tonic-gate break; 5597c478bd9Sstevel@tonic-gate } 5607c478bd9Sstevel@tonic-gate /* 5617c478bd9Sstevel@tonic-gate * We have not received a signal or timed out. 5627c478bd9Sstevel@tonic-gate * Continue around and poll fds again. 5637c478bd9Sstevel@tonic-gate */ 5647c478bd9Sstevel@tonic-gate mutex_enter(&ps->ps_lock); 5657c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_lock); 5667c478bd9Sstevel@tonic-gate } 5677c478bd9Sstevel@tonic-gate 5687c478bd9Sstevel@tonic-gate pollout: 5697c478bd9Sstevel@tonic-gate /* 5707c478bd9Sstevel@tonic-gate * If we changed the signal mask but we received 5717c478bd9Sstevel@tonic-gate * no signal then restore the signal mask. 5727c478bd9Sstevel@tonic-gate * Otherwise psig() will deal with the signal mask. 5737c478bd9Sstevel@tonic-gate */ 5747c478bd9Sstevel@tonic-gate if (ksetp != NULL) { 5757c478bd9Sstevel@tonic-gate mutex_enter(&p->p_lock); 5767c478bd9Sstevel@tonic-gate if (lwp->lwp_cursig == 0) { 5777c478bd9Sstevel@tonic-gate t->t_hold = lwp->lwp_sigoldmask; 5787c478bd9Sstevel@tonic-gate t->t_flag &= ~T_TOMASK; 5797c478bd9Sstevel@tonic-gate } 5807c478bd9Sstevel@tonic-gate mutex_exit(&p->p_lock); 5817c478bd9Sstevel@tonic-gate } 5827c478bd9Sstevel@tonic-gate 5837c478bd9Sstevel@tonic-gate if (error) 5847c478bd9Sstevel@tonic-gate return (set_errno(error)); 5857c478bd9Sstevel@tonic-gate 5867c478bd9Sstevel@tonic-gate /* 5877c478bd9Sstevel@tonic-gate * Copy out the events and return the fdcnt to the user. 5887c478bd9Sstevel@tonic-gate */ 5897c478bd9Sstevel@tonic-gate if (nfds != 0 && 5907c478bd9Sstevel@tonic-gate copyout(pollfdp, fds, nfds * sizeof (pollfd_t))) 5917c478bd9Sstevel@tonic-gate return (set_errno(EFAULT)); 5927c478bd9Sstevel@tonic-gate 5937c478bd9Sstevel@tonic-gate #ifdef DEBUG 5947c478bd9Sstevel@tonic-gate /* 5957c478bd9Sstevel@tonic-gate * Another sanity check: 5967c478bd9Sstevel@tonic-gate */ 5977c478bd9Sstevel@tonic-gate if (fdcnt) { 5987c478bd9Sstevel@tonic-gate int reventcnt = 0; 5997c478bd9Sstevel@tonic-gate 6007c478bd9Sstevel@tonic-gate for (i = 0; i < nfds; i++) { 6017c478bd9Sstevel@tonic-gate if (pollfdp[i].fd < 0) { 6027c478bd9Sstevel@tonic-gate ASSERT(pollfdp[i].revents == 0); 6037c478bd9Sstevel@tonic-gate continue; 6047c478bd9Sstevel@tonic-gate } 6057c478bd9Sstevel@tonic-gate if (pollfdp[i].revents) { 6067c478bd9Sstevel@tonic-gate reventcnt++; 6077c478bd9Sstevel@tonic-gate } 6087c478bd9Sstevel@tonic-gate } 6097c478bd9Sstevel@tonic-gate ASSERT(fdcnt == reventcnt); 6107c478bd9Sstevel@tonic-gate } else { 6117c478bd9Sstevel@tonic-gate for (i = 0; i < nfds; i++) { 6127c478bd9Sstevel@tonic-gate ASSERT(pollfdp[i].revents == 0); 6137c478bd9Sstevel@tonic-gate } 6147c478bd9Sstevel@tonic-gate } 6157c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 6167c478bd9Sstevel@tonic-gate 6177c478bd9Sstevel@tonic-gate return (fdcnt); 6187c478bd9Sstevel@tonic-gate } 6197c478bd9Sstevel@tonic-gate 6207c478bd9Sstevel@tonic-gate /* 6217c478bd9Sstevel@tonic-gate * This system call trap exists solely for binary compatibility with 6227c478bd9Sstevel@tonic-gate * old statically-linked applications. It is not called from libc. 6237c478bd9Sstevel@tonic-gate * It should be removed in the next release. 6247c478bd9Sstevel@tonic-gate */ 6257c478bd9Sstevel@tonic-gate int 6267c478bd9Sstevel@tonic-gate poll(pollfd_t *fds, nfds_t nfds, int time_out) 6277c478bd9Sstevel@tonic-gate { 6287c478bd9Sstevel@tonic-gate timespec_t ts; 6297c478bd9Sstevel@tonic-gate timespec_t *tsp; 6307c478bd9Sstevel@tonic-gate 6317c478bd9Sstevel@tonic-gate if (time_out < 0) 6327c478bd9Sstevel@tonic-gate tsp = NULL; 6337c478bd9Sstevel@tonic-gate else { 6347c478bd9Sstevel@tonic-gate ts.tv_sec = time_out / MILLISEC; 6357c478bd9Sstevel@tonic-gate ts.tv_nsec = (time_out % MILLISEC) * MICROSEC; 6367c478bd9Sstevel@tonic-gate tsp = &ts; 6377c478bd9Sstevel@tonic-gate } 6387c478bd9Sstevel@tonic-gate 6397c478bd9Sstevel@tonic-gate return (poll_common(fds, nfds, tsp, NULL)); 6407c478bd9Sstevel@tonic-gate } 6417c478bd9Sstevel@tonic-gate 6427c478bd9Sstevel@tonic-gate /* 6437c478bd9Sstevel@tonic-gate * This is the system call trap that poll(), 6447c478bd9Sstevel@tonic-gate * select() and pselect() are built upon. 6457c478bd9Sstevel@tonic-gate * It is a private interface between libc and the kernel. 6467c478bd9Sstevel@tonic-gate */ 6477c478bd9Sstevel@tonic-gate int 6487c478bd9Sstevel@tonic-gate pollsys(pollfd_t *fds, nfds_t nfds, timespec_t *timeoutp, sigset_t *setp) 6497c478bd9Sstevel@tonic-gate { 6507c478bd9Sstevel@tonic-gate timespec_t ts; 6517c478bd9Sstevel@tonic-gate timespec_t *tsp; 6527c478bd9Sstevel@tonic-gate sigset_t set; 6537c478bd9Sstevel@tonic-gate k_sigset_t kset; 6547c478bd9Sstevel@tonic-gate k_sigset_t *ksetp; 6557c478bd9Sstevel@tonic-gate model_t datamodel = get_udatamodel(); 6567c478bd9Sstevel@tonic-gate 6577c478bd9Sstevel@tonic-gate if (timeoutp == NULL) 6587c478bd9Sstevel@tonic-gate tsp = NULL; 6597c478bd9Sstevel@tonic-gate else { 6607c478bd9Sstevel@tonic-gate if (datamodel == DATAMODEL_NATIVE) { 6617c478bd9Sstevel@tonic-gate if (copyin(timeoutp, &ts, sizeof (ts))) 6627c478bd9Sstevel@tonic-gate return (set_errno(EFAULT)); 6637c478bd9Sstevel@tonic-gate } else { 6647c478bd9Sstevel@tonic-gate timespec32_t ts32; 6657c478bd9Sstevel@tonic-gate 6667c478bd9Sstevel@tonic-gate if (copyin(timeoutp, &ts32, sizeof (ts32))) 6677c478bd9Sstevel@tonic-gate return (set_errno(EFAULT)); 6687c478bd9Sstevel@tonic-gate TIMESPEC32_TO_TIMESPEC(&ts, &ts32) 6697c478bd9Sstevel@tonic-gate } 6707c478bd9Sstevel@tonic-gate 6717c478bd9Sstevel@tonic-gate if (itimerspecfix(&ts)) 6727c478bd9Sstevel@tonic-gate return (set_errno(EINVAL)); 6737c478bd9Sstevel@tonic-gate tsp = &ts; 6747c478bd9Sstevel@tonic-gate } 6757c478bd9Sstevel@tonic-gate 6767c478bd9Sstevel@tonic-gate if (setp == NULL) 6777c478bd9Sstevel@tonic-gate ksetp = NULL; 6787c478bd9Sstevel@tonic-gate else { 6797c478bd9Sstevel@tonic-gate if (copyin(setp, &set, sizeof (set))) 6807c478bd9Sstevel@tonic-gate return (set_errno(EFAULT)); 6817c478bd9Sstevel@tonic-gate sigutok(&set, &kset); 6827c478bd9Sstevel@tonic-gate ksetp = &kset; 6837c478bd9Sstevel@tonic-gate } 6847c478bd9Sstevel@tonic-gate 6857c478bd9Sstevel@tonic-gate return (poll_common(fds, nfds, tsp, ksetp)); 6867c478bd9Sstevel@tonic-gate } 6877c478bd9Sstevel@tonic-gate 6887c478bd9Sstevel@tonic-gate /* 6897c478bd9Sstevel@tonic-gate * Clean up any state left around by poll(2). Called when a thread exits. 6907c478bd9Sstevel@tonic-gate */ 6917c478bd9Sstevel@tonic-gate void 6927c478bd9Sstevel@tonic-gate pollcleanup() 6937c478bd9Sstevel@tonic-gate { 6947c478bd9Sstevel@tonic-gate pollstate_t *ps = curthread->t_pollstate; 6957c478bd9Sstevel@tonic-gate pollcache_t *pcp; 6967c478bd9Sstevel@tonic-gate 6977c478bd9Sstevel@tonic-gate if (ps == NULL) 6987c478bd9Sstevel@tonic-gate return; 6997c478bd9Sstevel@tonic-gate pcp = ps->ps_pcache; 7007c478bd9Sstevel@tonic-gate /* 7017c478bd9Sstevel@tonic-gate * free up all cached poll fds 7027c478bd9Sstevel@tonic-gate */ 7037c478bd9Sstevel@tonic-gate if (pcp == NULL) { 7047c478bd9Sstevel@tonic-gate /* this pollstate is used by /dev/poll */ 7057c478bd9Sstevel@tonic-gate goto pollcleanout; 7067c478bd9Sstevel@tonic-gate } 7077c478bd9Sstevel@tonic-gate 7087c478bd9Sstevel@tonic-gate if (pcp->pc_bitmap != NULL) { 7097c478bd9Sstevel@tonic-gate ASSERT(MUTEX_NOT_HELD(&ps->ps_lock)); 7107c478bd9Sstevel@tonic-gate /* 7117c478bd9Sstevel@tonic-gate * a close lwp can race with us when cleaning up a polldat 7127c478bd9Sstevel@tonic-gate * entry. We hold the ps_lock when cleaning hash table. 7137c478bd9Sstevel@tonic-gate * Since this pollcache is going away anyway, there is no 7147c478bd9Sstevel@tonic-gate * need to hold the pc_lock. 7157c478bd9Sstevel@tonic-gate */ 7167c478bd9Sstevel@tonic-gate mutex_enter(&ps->ps_lock); 7177c478bd9Sstevel@tonic-gate pcache_clean(pcp); 7187c478bd9Sstevel@tonic-gate mutex_exit(&ps->ps_lock); 7197c478bd9Sstevel@tonic-gate #ifdef DEBUG 7207c478bd9Sstevel@tonic-gate /* 7217c478bd9Sstevel@tonic-gate * At this point, all fds cached by this lwp should be 7227c478bd9Sstevel@tonic-gate * cleaned up. There should be no fd in fi_list still 7237c478bd9Sstevel@tonic-gate * reference this thread. 7247c478bd9Sstevel@tonic-gate */ 7257c478bd9Sstevel@tonic-gate checkfpollinfo(); /* sanity check */ 7267c478bd9Sstevel@tonic-gate pollcheckphlist(); /* sanity check */ 7277c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 7287c478bd9Sstevel@tonic-gate } 7297c478bd9Sstevel@tonic-gate /* 7307c478bd9Sstevel@tonic-gate * Be sure no one is referencing thread before exiting 7317c478bd9Sstevel@tonic-gate */ 7327c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_no_exit); 7337c478bd9Sstevel@tonic-gate ASSERT(pcp->pc_busy >= 0); 7347c478bd9Sstevel@tonic-gate while (pcp->pc_busy > 0) 7357c478bd9Sstevel@tonic-gate cv_wait(&pcp->pc_busy_cv, &pcp->pc_no_exit); 7367c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_no_exit); 7377c478bd9Sstevel@tonic-gate pollcleanout: 7387c478bd9Sstevel@tonic-gate pollstate_destroy(ps); 7397c478bd9Sstevel@tonic-gate curthread->t_pollstate = NULL; 7407c478bd9Sstevel@tonic-gate } 7417c478bd9Sstevel@tonic-gate 7427c478bd9Sstevel@tonic-gate /* 7437c478bd9Sstevel@tonic-gate * pollwakeup() - poke threads waiting in poll() for some event 7447c478bd9Sstevel@tonic-gate * on a particular object. 7457c478bd9Sstevel@tonic-gate * 7467c478bd9Sstevel@tonic-gate * The threads hanging off of the specified pollhead structure are scanned. 7477c478bd9Sstevel@tonic-gate * If their event mask matches the specified event(s), then pollnotify() is 7487c478bd9Sstevel@tonic-gate * called to poke the thread. 7497c478bd9Sstevel@tonic-gate * 7507c478bd9Sstevel@tonic-gate * Multiple events may be specified. When POLLHUP or POLLERR are specified, 7517c478bd9Sstevel@tonic-gate * all waiting threads are poked. 7527c478bd9Sstevel@tonic-gate * 7537c478bd9Sstevel@tonic-gate * It is important that pollnotify() not drop the lock protecting the list 7547c478bd9Sstevel@tonic-gate * of threads. 7557c478bd9Sstevel@tonic-gate */ 7567c478bd9Sstevel@tonic-gate void 7577c478bd9Sstevel@tonic-gate pollwakeup(pollhead_t *php, short events_arg) 7587c478bd9Sstevel@tonic-gate { 7597c478bd9Sstevel@tonic-gate polldat_t *pdp; 7607c478bd9Sstevel@tonic-gate int events = (ushort_t)events_arg; 7617c478bd9Sstevel@tonic-gate 7627c478bd9Sstevel@tonic-gate retry: 7637c478bd9Sstevel@tonic-gate PH_ENTER(php); 7647c478bd9Sstevel@tonic-gate 7657c478bd9Sstevel@tonic-gate /* 7667c478bd9Sstevel@tonic-gate * About half of all pollwakeups don't do anything, because the 7677c478bd9Sstevel@tonic-gate * pollhead list is empty (i.e, nobody is interested in the event). 7687c478bd9Sstevel@tonic-gate * For this common case, we can optimize out locking overhead. 7697c478bd9Sstevel@tonic-gate */ 7707c478bd9Sstevel@tonic-gate if (php->ph_list == NULL) { 7717c478bd9Sstevel@tonic-gate PH_EXIT(php); 7727c478bd9Sstevel@tonic-gate return; 7737c478bd9Sstevel@tonic-gate } 7747c478bd9Sstevel@tonic-gate 7757c478bd9Sstevel@tonic-gate for (pdp = php->ph_list; pdp; pdp = pdp->pd_next) { 7767c478bd9Sstevel@tonic-gate if ((pdp->pd_events & events) || 7777c478bd9Sstevel@tonic-gate (events & (POLLHUP | POLLERR))) { 7787c478bd9Sstevel@tonic-gate 7797c478bd9Sstevel@tonic-gate pollcache_t *pcp; 7807c478bd9Sstevel@tonic-gate 7817c478bd9Sstevel@tonic-gate if (pdp->pd_portev != NULL) { 7827c478bd9Sstevel@tonic-gate port_kevent_t *pkevp = pdp->pd_portev; 7837c478bd9Sstevel@tonic-gate /* 7847c478bd9Sstevel@tonic-gate * Object (fd) is associated with an event port, 7857c478bd9Sstevel@tonic-gate * => send event notification to the port. 7867c478bd9Sstevel@tonic-gate */ 7877c478bd9Sstevel@tonic-gate pkevp->portkev_events |= events & 7887c478bd9Sstevel@tonic-gate (pdp->pd_events | POLLHUP | POLLERR); 7897c478bd9Sstevel@tonic-gate if (pkevp->portkev_flags & PORT_KEV_VALID) { 7907c478bd9Sstevel@tonic-gate pkevp->portkev_flags &= ~PORT_KEV_VALID; 7917c478bd9Sstevel@tonic-gate (void) port_send_event(pdp->pd_portev); 7927c478bd9Sstevel@tonic-gate } 7937c478bd9Sstevel@tonic-gate continue; 7947c478bd9Sstevel@tonic-gate } 7957c478bd9Sstevel@tonic-gate 7967c478bd9Sstevel@tonic-gate pcp = pdp->pd_pcache; 7977c478bd9Sstevel@tonic-gate 7987c478bd9Sstevel@tonic-gate /* 7997c478bd9Sstevel@tonic-gate * Try to grab the lock for this thread. If 8007c478bd9Sstevel@tonic-gate * we don't get it then we may deadlock so 8017c478bd9Sstevel@tonic-gate * back out and restart all over again. Note 8027c478bd9Sstevel@tonic-gate * that the failure rate is very very low. 8037c478bd9Sstevel@tonic-gate */ 8047c478bd9Sstevel@tonic-gate if (mutex_tryenter(&pcp->pc_lock)) { 8057c478bd9Sstevel@tonic-gate pollnotify(pcp, pdp->pd_fd); 8067c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_lock); 8077c478bd9Sstevel@tonic-gate } else { 8087c478bd9Sstevel@tonic-gate /* 8097c478bd9Sstevel@tonic-gate * We are here because: 8107c478bd9Sstevel@tonic-gate * 1) This thread has been woke up 8117c478bd9Sstevel@tonic-gate * and is trying to get out of poll(). 8127c478bd9Sstevel@tonic-gate * 2) Some other thread is also here 8137c478bd9Sstevel@tonic-gate * but with a different pollhead lock. 8147c478bd9Sstevel@tonic-gate * 8157c478bd9Sstevel@tonic-gate * So, we need to drop the lock on pollhead 8167c478bd9Sstevel@tonic-gate * because of (1) but we want to prevent 8177c478bd9Sstevel@tonic-gate * that thread from doing lwp_exit() or 8187c478bd9Sstevel@tonic-gate * devpoll close. We want to ensure that 8197c478bd9Sstevel@tonic-gate * the pollcache pointer is still invalid. 8207c478bd9Sstevel@tonic-gate * 8217c478bd9Sstevel@tonic-gate * Solution: Grab the pcp->pc_no_exit lock, 8227c478bd9Sstevel@tonic-gate * increment the pc_busy counter, drop every 8237c478bd9Sstevel@tonic-gate * lock in sight. Get out of the way and wait 8247c478bd9Sstevel@tonic-gate * for type (2) threads to finish. 8257c478bd9Sstevel@tonic-gate */ 8267c478bd9Sstevel@tonic-gate 8277c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_no_exit); 8287c478bd9Sstevel@tonic-gate pcp->pc_busy++; /* prevents exit()'s */ 8297c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_no_exit); 8307c478bd9Sstevel@tonic-gate 8317c478bd9Sstevel@tonic-gate PH_EXIT(php); 8327c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_lock); 8337c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_lock); 8347c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_no_exit); 8357c478bd9Sstevel@tonic-gate pcp->pc_busy--; 8367c478bd9Sstevel@tonic-gate if (pcp->pc_busy == 0) { 8377c478bd9Sstevel@tonic-gate /* 8387c478bd9Sstevel@tonic-gate * Wakeup the thread waiting in 8397c478bd9Sstevel@tonic-gate * thread_exit(). 8407c478bd9Sstevel@tonic-gate */ 8417c478bd9Sstevel@tonic-gate cv_signal(&pcp->pc_busy_cv); 8427c478bd9Sstevel@tonic-gate } 8437c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_no_exit); 8447c478bd9Sstevel@tonic-gate goto retry; 8457c478bd9Sstevel@tonic-gate } 8467c478bd9Sstevel@tonic-gate } 8477c478bd9Sstevel@tonic-gate } 8487c478bd9Sstevel@tonic-gate PH_EXIT(php); 8497c478bd9Sstevel@tonic-gate } 8507c478bd9Sstevel@tonic-gate 8517c478bd9Sstevel@tonic-gate /* 8527c478bd9Sstevel@tonic-gate * This function is called to inform a thread that 8537c478bd9Sstevel@tonic-gate * an event being polled for has occurred. 8547c478bd9Sstevel@tonic-gate * The pollstate lock on the thread should be held on entry. 8557c478bd9Sstevel@tonic-gate */ 8567c478bd9Sstevel@tonic-gate void 8577c478bd9Sstevel@tonic-gate pollnotify(pollcache_t *pcp, int fd) 8587c478bd9Sstevel@tonic-gate { 8597c478bd9Sstevel@tonic-gate ASSERT(fd < pcp->pc_mapsize); 8607c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&pcp->pc_lock)); 8617c478bd9Sstevel@tonic-gate BT_SET(pcp->pc_bitmap, fd); 8627c478bd9Sstevel@tonic-gate pcp->pc_flag |= T_POLLWAKE; 8637c478bd9Sstevel@tonic-gate cv_signal(&pcp->pc_cv); 8647c478bd9Sstevel@tonic-gate } 8657c478bd9Sstevel@tonic-gate 8667c478bd9Sstevel@tonic-gate /* 8677c478bd9Sstevel@tonic-gate * add a polldat entry to pollhead ph_list. The polldat struct is used 8687c478bd9Sstevel@tonic-gate * by pollwakeup to wake sleeping pollers when polled events has happened. 8697c478bd9Sstevel@tonic-gate */ 8707c478bd9Sstevel@tonic-gate void 8717c478bd9Sstevel@tonic-gate pollhead_insert(pollhead_t *php, polldat_t *pdp) 8727c478bd9Sstevel@tonic-gate { 8737c478bd9Sstevel@tonic-gate PH_ENTER(php); 8747c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_next == NULL); 8757c478bd9Sstevel@tonic-gate #ifdef DEBUG 8767c478bd9Sstevel@tonic-gate { 8777c478bd9Sstevel@tonic-gate /* 8787c478bd9Sstevel@tonic-gate * the polldat should not be already on the list 8797c478bd9Sstevel@tonic-gate */ 8807c478bd9Sstevel@tonic-gate polldat_t *wp; 8817c478bd9Sstevel@tonic-gate for (wp = php->ph_list; wp; wp = wp->pd_next) { 8827c478bd9Sstevel@tonic-gate ASSERT(wp != pdp); 8837c478bd9Sstevel@tonic-gate } 8847c478bd9Sstevel@tonic-gate } 8857c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 8867c478bd9Sstevel@tonic-gate pdp->pd_next = php->ph_list; 8877c478bd9Sstevel@tonic-gate php->ph_list = pdp; 8887c478bd9Sstevel@tonic-gate PH_EXIT(php); 8897c478bd9Sstevel@tonic-gate } 8907c478bd9Sstevel@tonic-gate 8917c478bd9Sstevel@tonic-gate /* 8927c478bd9Sstevel@tonic-gate * Delete the polldat entry from ph_list. 8937c478bd9Sstevel@tonic-gate */ 8947c478bd9Sstevel@tonic-gate void 8957c478bd9Sstevel@tonic-gate pollhead_delete(pollhead_t *php, polldat_t *pdp) 8967c478bd9Sstevel@tonic-gate { 8977c478bd9Sstevel@tonic-gate polldat_t *wp; 8987c478bd9Sstevel@tonic-gate polldat_t **wpp; 8997c478bd9Sstevel@tonic-gate 9007c478bd9Sstevel@tonic-gate PH_ENTER(php); 9017c478bd9Sstevel@tonic-gate for (wpp = &php->ph_list; (wp = *wpp) != NULL; wpp = &wp->pd_next) { 9027c478bd9Sstevel@tonic-gate if (wp == pdp) { 9037c478bd9Sstevel@tonic-gate *wpp = pdp->pd_next; 9047c478bd9Sstevel@tonic-gate pdp->pd_next = NULL; 9057c478bd9Sstevel@tonic-gate break; 9067c478bd9Sstevel@tonic-gate } 9077c478bd9Sstevel@tonic-gate } 9087c478bd9Sstevel@tonic-gate #ifdef DEBUG 9097c478bd9Sstevel@tonic-gate /* assert that pdp is no longer in the list */ 9107c478bd9Sstevel@tonic-gate for (wp = *wpp; wp; wp = wp->pd_next) { 9117c478bd9Sstevel@tonic-gate ASSERT(wp != pdp); 9127c478bd9Sstevel@tonic-gate } 9137c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 9147c478bd9Sstevel@tonic-gate PH_EXIT(php); 9157c478bd9Sstevel@tonic-gate } 9167c478bd9Sstevel@tonic-gate 9177c478bd9Sstevel@tonic-gate /* 9187c478bd9Sstevel@tonic-gate * walk through the poll fd lists to see if they are identical. This is an 9197c478bd9Sstevel@tonic-gate * expensive operation and should not be done more than once for each poll() 9207c478bd9Sstevel@tonic-gate * call. 9217c478bd9Sstevel@tonic-gate * 9227c478bd9Sstevel@tonic-gate * As an optimization (i.e., not having to go through the lists more than 9237c478bd9Sstevel@tonic-gate * once), this routine also clear the revents field of pollfd in 'current'. 9247c478bd9Sstevel@tonic-gate * Zeroing out the revents field of each entry in current poll list is 9257c478bd9Sstevel@tonic-gate * required by poll man page. 9267c478bd9Sstevel@tonic-gate * 9277c478bd9Sstevel@tonic-gate * Since the events field of cached list has illegal poll events filtered 9287c478bd9Sstevel@tonic-gate * out, the current list applies the same filtering before comparison. 9297c478bd9Sstevel@tonic-gate * 9307c478bd9Sstevel@tonic-gate * The routine stops when it detects a meaningful difference, or when it 9317c478bd9Sstevel@tonic-gate * exhausts the lists. 9327c478bd9Sstevel@tonic-gate */ 9337c478bd9Sstevel@tonic-gate int 9347c478bd9Sstevel@tonic-gate pcacheset_cmp(pollfd_t *current, pollfd_t *cached, pollfd_t *newlist, int n) 9357c478bd9Sstevel@tonic-gate { 9367c478bd9Sstevel@tonic-gate int ix; 9377c478bd9Sstevel@tonic-gate 9387c478bd9Sstevel@tonic-gate for (ix = 0; ix < n; ix++) { 9397c478bd9Sstevel@tonic-gate if (current[ix].fd == cached[ix].fd) { 9407c478bd9Sstevel@tonic-gate /* 9417c478bd9Sstevel@tonic-gate * Filter out invalid poll events while we are in 9427c478bd9Sstevel@tonic-gate * inside the loop. 9437c478bd9Sstevel@tonic-gate */ 9447c478bd9Sstevel@tonic-gate if (current[ix].events & ~VALID_POLL_EVENTS) { 9457c478bd9Sstevel@tonic-gate current[ix].events &= VALID_POLL_EVENTS; 9467c478bd9Sstevel@tonic-gate if (newlist != NULL) 9477c478bd9Sstevel@tonic-gate newlist[ix].events = current[ix].events; 9487c478bd9Sstevel@tonic-gate } 9497c478bd9Sstevel@tonic-gate if (current[ix].events == cached[ix].events) { 9507c478bd9Sstevel@tonic-gate current[ix].revents = 0; 9517c478bd9Sstevel@tonic-gate continue; 9527c478bd9Sstevel@tonic-gate } 9537c478bd9Sstevel@tonic-gate } 9547c478bd9Sstevel@tonic-gate if ((current[ix].fd < 0) && (cached[ix].fd < 0)) { 9557c478bd9Sstevel@tonic-gate current[ix].revents = 0; 9567c478bd9Sstevel@tonic-gate continue; 9577c478bd9Sstevel@tonic-gate } 9587c478bd9Sstevel@tonic-gate return (ix); 9597c478bd9Sstevel@tonic-gate } 9607c478bd9Sstevel@tonic-gate return (ix); 9617c478bd9Sstevel@tonic-gate } 9627c478bd9Sstevel@tonic-gate 9637c478bd9Sstevel@tonic-gate /* 9647c478bd9Sstevel@tonic-gate * This routine returns a pointer to a cached poll fd entry, or NULL if it 9657c478bd9Sstevel@tonic-gate * does not find it in the hash table. 9667c478bd9Sstevel@tonic-gate */ 9677c478bd9Sstevel@tonic-gate polldat_t * 9687c478bd9Sstevel@tonic-gate pcache_lookup_fd(pollcache_t *pcp, int fd) 9697c478bd9Sstevel@tonic-gate { 9707c478bd9Sstevel@tonic-gate int hashindex; 9717c478bd9Sstevel@tonic-gate polldat_t *pdp; 9727c478bd9Sstevel@tonic-gate 9737c478bd9Sstevel@tonic-gate hashindex = POLLHASH(pcp->pc_hashsize, fd); 9747c478bd9Sstevel@tonic-gate pdp = pcp->pc_hash[hashindex]; 9757c478bd9Sstevel@tonic-gate while (pdp != NULL) { 9767c478bd9Sstevel@tonic-gate if (pdp->pd_fd == fd) 9777c478bd9Sstevel@tonic-gate break; 9787c478bd9Sstevel@tonic-gate pdp = pdp->pd_hashnext; 9797c478bd9Sstevel@tonic-gate } 9807c478bd9Sstevel@tonic-gate return (pdp); 9817c478bd9Sstevel@tonic-gate } 9827c478bd9Sstevel@tonic-gate 9837c478bd9Sstevel@tonic-gate polldat_t * 9847c478bd9Sstevel@tonic-gate pcache_alloc_fd(int nsets) 9857c478bd9Sstevel@tonic-gate { 9867c478bd9Sstevel@tonic-gate polldat_t *pdp; 9877c478bd9Sstevel@tonic-gate 9887c478bd9Sstevel@tonic-gate pdp = kmem_zalloc(sizeof (polldat_t), KM_SLEEP); 9897c478bd9Sstevel@tonic-gate if (nsets > 0) { 9907c478bd9Sstevel@tonic-gate pdp->pd_ref = kmem_zalloc(sizeof (xref_t) * nsets, KM_SLEEP); 9917c478bd9Sstevel@tonic-gate pdp->pd_nsets = nsets; 9927c478bd9Sstevel@tonic-gate } 9937c478bd9Sstevel@tonic-gate return (pdp); 9947c478bd9Sstevel@tonic-gate } 9957c478bd9Sstevel@tonic-gate 9967c478bd9Sstevel@tonic-gate /* 9977c478bd9Sstevel@tonic-gate * This routine inserts a polldat into the pollcache's hash table. It 9987c478bd9Sstevel@tonic-gate * may be necessary to grow the size of the hash table. 9997c478bd9Sstevel@tonic-gate */ 10007c478bd9Sstevel@tonic-gate void 10017c478bd9Sstevel@tonic-gate pcache_insert_fd(pollcache_t *pcp, polldat_t *pdp, nfds_t nfds) 10027c478bd9Sstevel@tonic-gate { 10037c478bd9Sstevel@tonic-gate int hashindex; 10047c478bd9Sstevel@tonic-gate int fd; 10057c478bd9Sstevel@tonic-gate 10067c478bd9Sstevel@tonic-gate if ((pcp->pc_fdcount > pcp->pc_hashsize * POLLHASHTHRESHOLD) || 10077c478bd9Sstevel@tonic-gate (nfds > pcp->pc_hashsize * POLLHASHTHRESHOLD)) { 10087c478bd9Sstevel@tonic-gate pcache_grow_hashtbl(pcp, nfds); 10097c478bd9Sstevel@tonic-gate } 10107c478bd9Sstevel@tonic-gate fd = pdp->pd_fd; 10117c478bd9Sstevel@tonic-gate hashindex = POLLHASH(pcp->pc_hashsize, fd); 10127c478bd9Sstevel@tonic-gate pdp->pd_hashnext = pcp->pc_hash[hashindex]; 10137c478bd9Sstevel@tonic-gate pcp->pc_hash[hashindex] = pdp; 10147c478bd9Sstevel@tonic-gate pcp->pc_fdcount++; 10157c478bd9Sstevel@tonic-gate 10167c478bd9Sstevel@tonic-gate #ifdef DEBUG 10177c478bd9Sstevel@tonic-gate { 10187c478bd9Sstevel@tonic-gate /* 10197c478bd9Sstevel@tonic-gate * same fd should not appear on a hash list twice 10207c478bd9Sstevel@tonic-gate */ 10217c478bd9Sstevel@tonic-gate polldat_t *pdp1; 10227c478bd9Sstevel@tonic-gate for (pdp1 = pdp->pd_hashnext; pdp1; pdp1 = pdp1->pd_hashnext) { 10237c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_fd != pdp1->pd_fd); 10247c478bd9Sstevel@tonic-gate } 10257c478bd9Sstevel@tonic-gate } 10267c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 10277c478bd9Sstevel@tonic-gate } 10287c478bd9Sstevel@tonic-gate 10297c478bd9Sstevel@tonic-gate /* 10307c478bd9Sstevel@tonic-gate * Grow the hash table -- either double the table size or round it to the 10317c478bd9Sstevel@tonic-gate * nearest multiples of POLLHASHCHUNKSZ, whichever is bigger. Rehash all the 10327c478bd9Sstevel@tonic-gate * elements on the hash table. 10337c478bd9Sstevel@tonic-gate */ 10347c478bd9Sstevel@tonic-gate void 10357c478bd9Sstevel@tonic-gate pcache_grow_hashtbl(pollcache_t *pcp, nfds_t nfds) 10367c478bd9Sstevel@tonic-gate { 10377c478bd9Sstevel@tonic-gate int oldsize; 10387c478bd9Sstevel@tonic-gate polldat_t **oldtbl; 10397c478bd9Sstevel@tonic-gate polldat_t *pdp, *pdp1; 10407c478bd9Sstevel@tonic-gate int i; 10417c478bd9Sstevel@tonic-gate #ifdef DEBUG 10427c478bd9Sstevel@tonic-gate int count = 0; 10437c478bd9Sstevel@tonic-gate #endif 10447c478bd9Sstevel@tonic-gate 10457c478bd9Sstevel@tonic-gate ASSERT(pcp->pc_hashsize % POLLHASHCHUNKSZ == 0); 10467c478bd9Sstevel@tonic-gate oldsize = pcp->pc_hashsize; 10477c478bd9Sstevel@tonic-gate oldtbl = pcp->pc_hash; 10487c478bd9Sstevel@tonic-gate if (nfds > pcp->pc_hashsize * POLLHASHINC) { 10497c478bd9Sstevel@tonic-gate pcp->pc_hashsize = (nfds + POLLHASHCHUNKSZ - 1) & 10507c478bd9Sstevel@tonic-gate ~(POLLHASHCHUNKSZ - 1); 10517c478bd9Sstevel@tonic-gate } else { 10527c478bd9Sstevel@tonic-gate pcp->pc_hashsize = pcp->pc_hashsize * POLLHASHINC; 10537c478bd9Sstevel@tonic-gate } 10547c478bd9Sstevel@tonic-gate pcp->pc_hash = kmem_zalloc(pcp->pc_hashsize * sizeof (polldat_t *), 10557c478bd9Sstevel@tonic-gate KM_SLEEP); 10567c478bd9Sstevel@tonic-gate /* 10577c478bd9Sstevel@tonic-gate * rehash existing elements 10587c478bd9Sstevel@tonic-gate */ 10597c478bd9Sstevel@tonic-gate pcp->pc_fdcount = 0; 10607c478bd9Sstevel@tonic-gate for (i = 0; i < oldsize; i++) { 10617c478bd9Sstevel@tonic-gate pdp = oldtbl[i]; 10627c478bd9Sstevel@tonic-gate while (pdp != NULL) { 10637c478bd9Sstevel@tonic-gate pdp1 = pdp->pd_hashnext; 10647c478bd9Sstevel@tonic-gate pcache_insert_fd(pcp, pdp, nfds); 10657c478bd9Sstevel@tonic-gate pdp = pdp1; 10667c478bd9Sstevel@tonic-gate #ifdef DEBUG 10677c478bd9Sstevel@tonic-gate count++; 10687c478bd9Sstevel@tonic-gate #endif 10697c478bd9Sstevel@tonic-gate } 10707c478bd9Sstevel@tonic-gate } 10717c478bd9Sstevel@tonic-gate kmem_free(oldtbl, oldsize * sizeof (polldat_t *)); 10727c478bd9Sstevel@tonic-gate ASSERT(pcp->pc_fdcount == count); 10737c478bd9Sstevel@tonic-gate } 10747c478bd9Sstevel@tonic-gate 10757c478bd9Sstevel@tonic-gate void 10767c478bd9Sstevel@tonic-gate pcache_grow_map(pollcache_t *pcp, int fd) 10777c478bd9Sstevel@tonic-gate { 10787c478bd9Sstevel@tonic-gate int newsize; 10797c478bd9Sstevel@tonic-gate ulong_t *newmap; 10807c478bd9Sstevel@tonic-gate 10817c478bd9Sstevel@tonic-gate /* 10827c478bd9Sstevel@tonic-gate * grow to nearest multiple of POLLMAPCHUNK, assuming POLLMAPCHUNK is 10837c478bd9Sstevel@tonic-gate * power of 2. 10847c478bd9Sstevel@tonic-gate */ 10857c478bd9Sstevel@tonic-gate newsize = (fd + POLLMAPCHUNK) & ~(POLLMAPCHUNK - 1); 10867c478bd9Sstevel@tonic-gate newmap = kmem_zalloc((newsize / BT_NBIPUL) * sizeof (ulong_t), 10877c478bd9Sstevel@tonic-gate KM_SLEEP); 10887c478bd9Sstevel@tonic-gate /* 10897c478bd9Sstevel@tonic-gate * don't want pollwakeup to set a bit while growing the bitmap. 10907c478bd9Sstevel@tonic-gate */ 10917c478bd9Sstevel@tonic-gate ASSERT(mutex_owned(&pcp->pc_lock) == 0); 10927c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_lock); 10937c478bd9Sstevel@tonic-gate bcopy(pcp->pc_bitmap, newmap, 10947c478bd9Sstevel@tonic-gate (pcp->pc_mapsize / BT_NBIPUL) * sizeof (ulong_t)); 10957c478bd9Sstevel@tonic-gate kmem_free(pcp->pc_bitmap, 10967c478bd9Sstevel@tonic-gate (pcp->pc_mapsize /BT_NBIPUL) * sizeof (ulong_t)); 10977c478bd9Sstevel@tonic-gate pcp->pc_bitmap = newmap; 10987c478bd9Sstevel@tonic-gate pcp->pc_mapsize = newsize; 10997c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_lock); 11007c478bd9Sstevel@tonic-gate } 11017c478bd9Sstevel@tonic-gate 11027c478bd9Sstevel@tonic-gate /* 11037c478bd9Sstevel@tonic-gate * remove all the reference from pollhead list and fpollinfo lists. 11047c478bd9Sstevel@tonic-gate */ 11057c478bd9Sstevel@tonic-gate void 11067c478bd9Sstevel@tonic-gate pcache_clean(pollcache_t *pcp) 11077c478bd9Sstevel@tonic-gate { 11087c478bd9Sstevel@tonic-gate int i; 11097c478bd9Sstevel@tonic-gate polldat_t **hashtbl; 11107c478bd9Sstevel@tonic-gate polldat_t *pdp; 11117c478bd9Sstevel@tonic-gate 11127c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&curthread->t_pollstate->ps_lock)); 11137c478bd9Sstevel@tonic-gate hashtbl = pcp->pc_hash; 11147c478bd9Sstevel@tonic-gate for (i = 0; i < pcp->pc_hashsize; i++) { 11157c478bd9Sstevel@tonic-gate for (pdp = hashtbl[i]; pdp; pdp = pdp->pd_hashnext) { 11167c478bd9Sstevel@tonic-gate if (pdp->pd_php != NULL) { 11177c478bd9Sstevel@tonic-gate pollhead_delete(pdp->pd_php, pdp); 11187c478bd9Sstevel@tonic-gate pdp->pd_php = NULL; 11197c478bd9Sstevel@tonic-gate } 11207c478bd9Sstevel@tonic-gate if (pdp->pd_fp != NULL) { 11217c478bd9Sstevel@tonic-gate delfpollinfo(pdp->pd_fd); 11227c478bd9Sstevel@tonic-gate pdp->pd_fp = NULL; 11237c478bd9Sstevel@tonic-gate } 11247c478bd9Sstevel@tonic-gate } 11257c478bd9Sstevel@tonic-gate } 11267c478bd9Sstevel@tonic-gate } 11277c478bd9Sstevel@tonic-gate 11287c478bd9Sstevel@tonic-gate void 11297c478bd9Sstevel@tonic-gate pcacheset_invalidate(pollstate_t *ps, polldat_t *pdp) 11307c478bd9Sstevel@tonic-gate { 11317c478bd9Sstevel@tonic-gate int i; 11327c478bd9Sstevel@tonic-gate int fd = pdp->pd_fd; 11337c478bd9Sstevel@tonic-gate 11347c478bd9Sstevel@tonic-gate /* 11357c478bd9Sstevel@tonic-gate * we come here because an earlier close() on this cached poll fd. 11367c478bd9Sstevel@tonic-gate */ 11377c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_fp == NULL); 11387c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&ps->ps_lock)); 11397c478bd9Sstevel@tonic-gate pdp->pd_events = 0; 11407c478bd9Sstevel@tonic-gate for (i = 0; i < ps->ps_nsets; i++) { 11417c478bd9Sstevel@tonic-gate xref_t *refp; 11427c478bd9Sstevel@tonic-gate pollcacheset_t *pcsp; 11437c478bd9Sstevel@tonic-gate 11447c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_ref != NULL); 11457c478bd9Sstevel@tonic-gate refp = &pdp->pd_ref[i]; 11467c478bd9Sstevel@tonic-gate if (refp->xf_refcnt) { 11477c478bd9Sstevel@tonic-gate ASSERT(refp->xf_position >= 0); 11487c478bd9Sstevel@tonic-gate pcsp = &ps->ps_pcacheset[i]; 11497c478bd9Sstevel@tonic-gate if (refp->xf_refcnt == 1) { 11507c478bd9Sstevel@tonic-gate pcsp->pcs_pollfd[refp->xf_position].fd = -1; 11517c478bd9Sstevel@tonic-gate refp->xf_refcnt = 0; 11527c478bd9Sstevel@tonic-gate pdp->pd_count--; 11537c478bd9Sstevel@tonic-gate } else if (refp->xf_refcnt > 1) { 11547c478bd9Sstevel@tonic-gate int j; 11557c478bd9Sstevel@tonic-gate 11567c478bd9Sstevel@tonic-gate /* 11577c478bd9Sstevel@tonic-gate * turn off every appearance in pcs_pollfd list 11587c478bd9Sstevel@tonic-gate */ 11597c478bd9Sstevel@tonic-gate for (j = refp->xf_position; 11607c478bd9Sstevel@tonic-gate j < pcsp->pcs_nfds; j++) { 11617c478bd9Sstevel@tonic-gate if (pcsp->pcs_pollfd[j].fd == fd) { 11627c478bd9Sstevel@tonic-gate pcsp->pcs_pollfd[j].fd = -1; 11637c478bd9Sstevel@tonic-gate refp->xf_refcnt--; 11647c478bd9Sstevel@tonic-gate pdp->pd_count--; 11657c478bd9Sstevel@tonic-gate } 11667c478bd9Sstevel@tonic-gate } 11677c478bd9Sstevel@tonic-gate } 11687c478bd9Sstevel@tonic-gate ASSERT(refp->xf_refcnt == 0); 11697c478bd9Sstevel@tonic-gate refp->xf_position = POLLPOSINVAL; 11707c478bd9Sstevel@tonic-gate } 11717c478bd9Sstevel@tonic-gate } 11727c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_count == 0); 11737c478bd9Sstevel@tonic-gate } 11747c478bd9Sstevel@tonic-gate 11757c478bd9Sstevel@tonic-gate /* 11767c478bd9Sstevel@tonic-gate * Insert poll fd into the pollcache, and add poll registration. 11777c478bd9Sstevel@tonic-gate * This routine is called after getf() and before releasef(). So the vnode 11787c478bd9Sstevel@tonic-gate * can not disappear even if we block here. 11797c478bd9Sstevel@tonic-gate * If there is an error, the polled fd is not cached. 11807c478bd9Sstevel@tonic-gate */ 11817c478bd9Sstevel@tonic-gate int 11827c478bd9Sstevel@tonic-gate pcache_insert(pollstate_t *ps, file_t *fp, pollfd_t *pollfdp, int *fdcntp, 11837c478bd9Sstevel@tonic-gate ssize_t pos, int which) 11847c478bd9Sstevel@tonic-gate { 11857c478bd9Sstevel@tonic-gate pollcache_t *pcp = ps->ps_pcache; 11867c478bd9Sstevel@tonic-gate polldat_t *pdp; 11877c478bd9Sstevel@tonic-gate int error; 11887c478bd9Sstevel@tonic-gate int fd; 11897c478bd9Sstevel@tonic-gate pollhead_t *memphp = NULL; 11907c478bd9Sstevel@tonic-gate xref_t *refp; 11917c478bd9Sstevel@tonic-gate int newpollfd = 0; 11927c478bd9Sstevel@tonic-gate 11937c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&ps->ps_lock)); 11947c478bd9Sstevel@tonic-gate /* 11957c478bd9Sstevel@tonic-gate * The poll caching uses the existing VOP_POLL interface. If there 11967c478bd9Sstevel@tonic-gate * is no polled events, we want the polled device to set its "some 11977c478bd9Sstevel@tonic-gate * one is sleeping in poll" flag. When the polled events happen 11987c478bd9Sstevel@tonic-gate * later, the driver will call pollwakeup(). We achieve this by 11997c478bd9Sstevel@tonic-gate * always passing 0 in the third parameter ("anyyet") when calling 12007c478bd9Sstevel@tonic-gate * VOP_POLL. This parameter is not looked at by drivers when the 12017c478bd9Sstevel@tonic-gate * polled events exist. If a driver chooses to ignore this parameter 12027c478bd9Sstevel@tonic-gate * and call pollwakeup whenever the polled events happen, that will 12037c478bd9Sstevel@tonic-gate * be OK too. 12047c478bd9Sstevel@tonic-gate */ 12057c478bd9Sstevel@tonic-gate ASSERT(curthread->t_pollcache == NULL); 12067c478bd9Sstevel@tonic-gate error = VOP_POLL(fp->f_vnode, pollfdp->events, 0, &pollfdp->revents, 12077c478bd9Sstevel@tonic-gate &memphp); 12087c478bd9Sstevel@tonic-gate if (error) { 12097c478bd9Sstevel@tonic-gate return (error); 12107c478bd9Sstevel@tonic-gate } 12117c478bd9Sstevel@tonic-gate if (pollfdp->revents) { 12127c478bd9Sstevel@tonic-gate (*fdcntp)++; 12137c478bd9Sstevel@tonic-gate } 12147c478bd9Sstevel@tonic-gate /* 12157c478bd9Sstevel@tonic-gate * polling the underlying device succeeded. Now we can cache it. 12167c478bd9Sstevel@tonic-gate * A close can't come in here because we have not done a releasef() 12177c478bd9Sstevel@tonic-gate * yet. 12187c478bd9Sstevel@tonic-gate */ 12197c478bd9Sstevel@tonic-gate fd = pollfdp->fd; 12207c478bd9Sstevel@tonic-gate pdp = pcache_lookup_fd(pcp, fd); 12217c478bd9Sstevel@tonic-gate if (pdp == NULL) { 12227c478bd9Sstevel@tonic-gate ASSERT(ps->ps_nsets > 0); 12237c478bd9Sstevel@tonic-gate pdp = pcache_alloc_fd(ps->ps_nsets); 12247c478bd9Sstevel@tonic-gate newpollfd = 1; 12257c478bd9Sstevel@tonic-gate } 12267c478bd9Sstevel@tonic-gate /* 12277c478bd9Sstevel@tonic-gate * If this entry was used to cache a poll fd which was closed, and 12287c478bd9Sstevel@tonic-gate * this entry has not been cleaned, do it now. 12297c478bd9Sstevel@tonic-gate */ 12307c478bd9Sstevel@tonic-gate if ((pdp->pd_count > 0) && (pdp->pd_fp == NULL)) { 12317c478bd9Sstevel@tonic-gate pcacheset_invalidate(ps, pdp); 12327c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_next == NULL); 12337c478bd9Sstevel@tonic-gate } 12347c478bd9Sstevel@tonic-gate if (pdp->pd_count == 0) { 12357c478bd9Sstevel@tonic-gate pdp->pd_fd = fd; 12367c478bd9Sstevel@tonic-gate pdp->pd_fp = fp; 12377c478bd9Sstevel@tonic-gate addfpollinfo(fd); 12387c478bd9Sstevel@tonic-gate pdp->pd_thread = curthread; 12397c478bd9Sstevel@tonic-gate pdp->pd_pcache = pcp; 12407c478bd9Sstevel@tonic-gate /* 12417c478bd9Sstevel@tonic-gate * the entry is never used or cleared by removing a cached 12427c478bd9Sstevel@tonic-gate * pollfd (pcache_delete_fd). So all the fields should be clear. 12437c478bd9Sstevel@tonic-gate */ 12447c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_next == NULL); 12457c478bd9Sstevel@tonic-gate } 12467c478bd9Sstevel@tonic-gate 12477c478bd9Sstevel@tonic-gate /* 12487c478bd9Sstevel@tonic-gate * A polled fd is considered cached. So there should be a fpollinfo 12497c478bd9Sstevel@tonic-gate * entry on uf_fpollinfo list. 12507c478bd9Sstevel@tonic-gate */ 12517c478bd9Sstevel@tonic-gate ASSERT(infpollinfo(fd)); 12527c478bd9Sstevel@tonic-gate /* 12537c478bd9Sstevel@tonic-gate * If there is an inconsistency, we want to know it here. 12547c478bd9Sstevel@tonic-gate */ 12557c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_fp == fp); 12567c478bd9Sstevel@tonic-gate 12577c478bd9Sstevel@tonic-gate /* 12587c478bd9Sstevel@tonic-gate * XXX pd_events is a union of all polled events on this fd, possibly 12597c478bd9Sstevel@tonic-gate * by different threads. Unless this is a new first poll(), pd_events 12607c478bd9Sstevel@tonic-gate * never shrinks. If an event is no longer polled by a process, there 12617c478bd9Sstevel@tonic-gate * is no way to cancel that event. In that case, poll degrade to its 12627c478bd9Sstevel@tonic-gate * old form -- polling on this fd every time poll() is called. The 12637c478bd9Sstevel@tonic-gate * assumption is an app always polls the same type of events. 12647c478bd9Sstevel@tonic-gate */ 12657c478bd9Sstevel@tonic-gate pdp->pd_events |= pollfdp->events; 12667c478bd9Sstevel@tonic-gate 12677c478bd9Sstevel@tonic-gate pdp->pd_count++; 12687c478bd9Sstevel@tonic-gate /* 12697c478bd9Sstevel@tonic-gate * There is not much special handling for multiple appearances of 12707c478bd9Sstevel@tonic-gate * same fd other than xf_position always recording the first 12717c478bd9Sstevel@tonic-gate * appearance in poll list. If this is called from pcacheset_cache_list, 12727c478bd9Sstevel@tonic-gate * a VOP_POLL is called on every pollfd entry; therefore each 12737c478bd9Sstevel@tonic-gate * revents and fdcnt should be set correctly. If this is called from 12747c478bd9Sstevel@tonic-gate * pcacheset_resolve, we don't care about fdcnt here. Pollreadmap will 12757c478bd9Sstevel@tonic-gate * pick up the right count and handle revents field of each pollfd 12767c478bd9Sstevel@tonic-gate * entry. 12777c478bd9Sstevel@tonic-gate */ 12787c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_ref != NULL); 12797c478bd9Sstevel@tonic-gate refp = &pdp->pd_ref[which]; 12807c478bd9Sstevel@tonic-gate if (refp->xf_refcnt == 0) { 12817c478bd9Sstevel@tonic-gate refp->xf_position = pos; 12827c478bd9Sstevel@tonic-gate } else { 12837c478bd9Sstevel@tonic-gate /* 12847c478bd9Sstevel@tonic-gate * xf_position records the fd's first appearance in poll list 12857c478bd9Sstevel@tonic-gate */ 12867c478bd9Sstevel@tonic-gate if (pos < refp->xf_position) { 12877c478bd9Sstevel@tonic-gate refp->xf_position = pos; 12887c478bd9Sstevel@tonic-gate } 12897c478bd9Sstevel@tonic-gate } 12907c478bd9Sstevel@tonic-gate ASSERT(pollfdp->fd == ps->ps_pollfd[refp->xf_position].fd); 12917c478bd9Sstevel@tonic-gate refp->xf_refcnt++; 12927c478bd9Sstevel@tonic-gate if (fd >= pcp->pc_mapsize) { 12937c478bd9Sstevel@tonic-gate pcache_grow_map(pcp, fd); 12947c478bd9Sstevel@tonic-gate } 12957c478bd9Sstevel@tonic-gate if (fd > pcp->pc_mapend) { 12967c478bd9Sstevel@tonic-gate pcp->pc_mapend = fd; 12977c478bd9Sstevel@tonic-gate } 12987c478bd9Sstevel@tonic-gate if (newpollfd != 0) { 12997c478bd9Sstevel@tonic-gate pcache_insert_fd(ps->ps_pcache, pdp, ps->ps_nfds); 13007c478bd9Sstevel@tonic-gate } 13017c478bd9Sstevel@tonic-gate if (memphp) { 13027c478bd9Sstevel@tonic-gate if (pdp->pd_php == NULL) { 13037c478bd9Sstevel@tonic-gate pollhead_insert(memphp, pdp); 13047c478bd9Sstevel@tonic-gate pdp->pd_php = memphp; 13057c478bd9Sstevel@tonic-gate } else { 13067c478bd9Sstevel@tonic-gate if (memphp != pdp->pd_php) { 13077c478bd9Sstevel@tonic-gate /* 13087c478bd9Sstevel@tonic-gate * layered devices (e.g. console driver) 13097c478bd9Sstevel@tonic-gate * may change the vnode and thus the pollhead 13107c478bd9Sstevel@tonic-gate * pointer out from underneath us. 13117c478bd9Sstevel@tonic-gate */ 13127c478bd9Sstevel@tonic-gate pollhead_delete(pdp->pd_php, pdp); 13137c478bd9Sstevel@tonic-gate pollhead_insert(memphp, pdp); 13147c478bd9Sstevel@tonic-gate pdp->pd_php = memphp; 13157c478bd9Sstevel@tonic-gate } 13167c478bd9Sstevel@tonic-gate } 13177c478bd9Sstevel@tonic-gate } 13187c478bd9Sstevel@tonic-gate /* 13197c478bd9Sstevel@tonic-gate * Since there is a considerable window between VOP_POLL and when 13207c478bd9Sstevel@tonic-gate * we actually put the polldat struct on the pollhead list, we could 13217c478bd9Sstevel@tonic-gate * miss a pollwakeup. In the case of polling additional events, we 13227c478bd9Sstevel@tonic-gate * don't update the events until after VOP_POLL. So we could miss 13237c478bd9Sstevel@tonic-gate * pollwakeup there too. So we always set the bit here just to be 13247c478bd9Sstevel@tonic-gate * safe. The real performance gain is in subsequent pcache_poll. 13257c478bd9Sstevel@tonic-gate */ 13267c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_lock); 13277c478bd9Sstevel@tonic-gate BT_SET(pcp->pc_bitmap, fd); 13287c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_lock); 13297c478bd9Sstevel@tonic-gate return (0); 13307c478bd9Sstevel@tonic-gate } 13317c478bd9Sstevel@tonic-gate 13327c478bd9Sstevel@tonic-gate /* 13337c478bd9Sstevel@tonic-gate * The entry is not really deleted. The fields are cleared so that the 13347c478bd9Sstevel@tonic-gate * entry is no longer useful, but it will remain in the hash table for reuse 13357c478bd9Sstevel@tonic-gate * later. It will be freed when the polling lwp exits. 13367c478bd9Sstevel@tonic-gate */ 13377c478bd9Sstevel@tonic-gate int 13387c478bd9Sstevel@tonic-gate pcache_delete_fd(pollstate_t *ps, int fd, size_t pos, int which, uint_t cevent) 13397c478bd9Sstevel@tonic-gate { 13407c478bd9Sstevel@tonic-gate pollcache_t *pcp = ps->ps_pcache; 13417c478bd9Sstevel@tonic-gate polldat_t *pdp; 13427c478bd9Sstevel@tonic-gate xref_t *refp; 13437c478bd9Sstevel@tonic-gate 13447c478bd9Sstevel@tonic-gate ASSERT(fd < pcp->pc_mapsize); 13457c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&ps->ps_lock)); 13467c478bd9Sstevel@tonic-gate 13477c478bd9Sstevel@tonic-gate pdp = pcache_lookup_fd(pcp, fd); 13487c478bd9Sstevel@tonic-gate ASSERT(pdp != NULL); 13497c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_count > 0); 13507c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_ref != NULL); 13517c478bd9Sstevel@tonic-gate refp = &pdp->pd_ref[which]; 13527c478bd9Sstevel@tonic-gate if (pdp->pd_count == 1) { 13537c478bd9Sstevel@tonic-gate pdp->pd_events = 0; 13547c478bd9Sstevel@tonic-gate refp->xf_position = POLLPOSINVAL; 13557c478bd9Sstevel@tonic-gate ASSERT(refp->xf_refcnt == 1); 13567c478bd9Sstevel@tonic-gate refp->xf_refcnt = 0; 13577c478bd9Sstevel@tonic-gate if (pdp->pd_php) { 13587c478bd9Sstevel@tonic-gate /* 13597c478bd9Sstevel@tonic-gate * It is possible for a wakeup thread to get ahead 13607c478bd9Sstevel@tonic-gate * of the following pollhead_delete and set the bit in 13617c478bd9Sstevel@tonic-gate * bitmap. It is OK because the bit will be cleared 13627c478bd9Sstevel@tonic-gate * here anyway. 13637c478bd9Sstevel@tonic-gate */ 13647c478bd9Sstevel@tonic-gate pollhead_delete(pdp->pd_php, pdp); 13657c478bd9Sstevel@tonic-gate pdp->pd_php = NULL; 13667c478bd9Sstevel@tonic-gate } 13677c478bd9Sstevel@tonic-gate pdp->pd_count = 0; 13687c478bd9Sstevel@tonic-gate if (pdp->pd_fp != NULL) { 13697c478bd9Sstevel@tonic-gate pdp->pd_fp = NULL; 13707c478bd9Sstevel@tonic-gate delfpollinfo(fd); 13717c478bd9Sstevel@tonic-gate } 13727c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_lock); 13737c478bd9Sstevel@tonic-gate BT_CLEAR(pcp->pc_bitmap, fd); 13747c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_lock); 13757c478bd9Sstevel@tonic-gate return (0); 13767c478bd9Sstevel@tonic-gate } 13777c478bd9Sstevel@tonic-gate if ((cevent & POLLCLOSED) == POLLCLOSED) { 13787c478bd9Sstevel@tonic-gate /* 13797c478bd9Sstevel@tonic-gate * fd cached here has been closed. This is the first 13807c478bd9Sstevel@tonic-gate * pcache_delete_fd called after the close. Clean up the 13817c478bd9Sstevel@tonic-gate * entire entry. 13827c478bd9Sstevel@tonic-gate */ 13837c478bd9Sstevel@tonic-gate pcacheset_invalidate(ps, pdp); 13847c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_php == NULL); 13857c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_lock); 13867c478bd9Sstevel@tonic-gate BT_CLEAR(pcp->pc_bitmap, fd); 13877c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_lock); 13887c478bd9Sstevel@tonic-gate return (0); 13897c478bd9Sstevel@tonic-gate } 13907c478bd9Sstevel@tonic-gate #ifdef DEBUG 13917c478bd9Sstevel@tonic-gate if (getf(fd) != NULL) { 13927c478bd9Sstevel@tonic-gate ASSERT(infpollinfo(fd)); 13937c478bd9Sstevel@tonic-gate releasef(fd); 13947c478bd9Sstevel@tonic-gate } 13957c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 13967c478bd9Sstevel@tonic-gate pdp->pd_count--; 13977c478bd9Sstevel@tonic-gate ASSERT(refp->xf_refcnt > 0); 13987c478bd9Sstevel@tonic-gate if (--refp->xf_refcnt == 0) { 13997c478bd9Sstevel@tonic-gate refp->xf_position = POLLPOSINVAL; 14007c478bd9Sstevel@tonic-gate } else { 14017c478bd9Sstevel@tonic-gate ASSERT(pos >= refp->xf_position); 14027c478bd9Sstevel@tonic-gate if (pos == refp->xf_position) { 14037c478bd9Sstevel@tonic-gate /* 14047c478bd9Sstevel@tonic-gate * The xref position is no longer valid. 14057c478bd9Sstevel@tonic-gate * Reset it to a special value and let 14067c478bd9Sstevel@tonic-gate * caller know it needs to updatexref() 14077c478bd9Sstevel@tonic-gate * with a new xf_position value. 14087c478bd9Sstevel@tonic-gate */ 14097c478bd9Sstevel@tonic-gate refp->xf_position = POLLPOSTRANS; 14107c478bd9Sstevel@tonic-gate return (1); 14117c478bd9Sstevel@tonic-gate } 14127c478bd9Sstevel@tonic-gate } 14137c478bd9Sstevel@tonic-gate return (0); 14147c478bd9Sstevel@tonic-gate } 14157c478bd9Sstevel@tonic-gate 14167c478bd9Sstevel@tonic-gate void 14177c478bd9Sstevel@tonic-gate pcache_update_xref(pollcache_t *pcp, int fd, ssize_t pos, int which) 14187c478bd9Sstevel@tonic-gate { 14197c478bd9Sstevel@tonic-gate polldat_t *pdp; 14207c478bd9Sstevel@tonic-gate 14217c478bd9Sstevel@tonic-gate pdp = pcache_lookup_fd(pcp, fd); 14227c478bd9Sstevel@tonic-gate ASSERT(pdp != NULL); 14237c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_ref != NULL); 14247c478bd9Sstevel@tonic-gate pdp->pd_ref[which].xf_position = pos; 14257c478bd9Sstevel@tonic-gate } 14267c478bd9Sstevel@tonic-gate 14277c478bd9Sstevel@tonic-gate #ifdef DEBUG 14287c478bd9Sstevel@tonic-gate /* 14297c478bd9Sstevel@tonic-gate * For each polled fd, it's either in the bitmap or cached in 14307c478bd9Sstevel@tonic-gate * pcache hash table. If this routine returns 0, something is wrong. 14317c478bd9Sstevel@tonic-gate */ 14327c478bd9Sstevel@tonic-gate static int 14337c478bd9Sstevel@tonic-gate pollchecksanity(pollstate_t *ps, nfds_t nfds) 14347c478bd9Sstevel@tonic-gate { 14357c478bd9Sstevel@tonic-gate int i; 14367c478bd9Sstevel@tonic-gate int fd; 14377c478bd9Sstevel@tonic-gate pollcache_t *pcp = ps->ps_pcache; 14387c478bd9Sstevel@tonic-gate polldat_t *pdp; 14397c478bd9Sstevel@tonic-gate pollfd_t *pollfdp = ps->ps_pollfd; 14407c478bd9Sstevel@tonic-gate file_t *fp; 14417c478bd9Sstevel@tonic-gate 14427c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&ps->ps_lock)); 14437c478bd9Sstevel@tonic-gate for (i = 0; i < nfds; i++) { 14447c478bd9Sstevel@tonic-gate fd = pollfdp[i].fd; 14457c478bd9Sstevel@tonic-gate if (fd < 0) { 14467c478bd9Sstevel@tonic-gate ASSERT(pollfdp[i].revents == 0); 14477c478bd9Sstevel@tonic-gate continue; 14487c478bd9Sstevel@tonic-gate } 14497c478bd9Sstevel@tonic-gate if (pollfdp[i].revents == POLLNVAL) 14507c478bd9Sstevel@tonic-gate continue; 14517c478bd9Sstevel@tonic-gate if ((fp = getf(fd)) == NULL) 14527c478bd9Sstevel@tonic-gate continue; 14537c478bd9Sstevel@tonic-gate pdp = pcache_lookup_fd(pcp, fd); 14547c478bd9Sstevel@tonic-gate ASSERT(pdp != NULL); 14557c478bd9Sstevel@tonic-gate ASSERT(infpollinfo(fd)); 14567c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_fp == fp); 14577c478bd9Sstevel@tonic-gate releasef(fd); 14587c478bd9Sstevel@tonic-gate if (BT_TEST(pcp->pc_bitmap, fd)) 14597c478bd9Sstevel@tonic-gate continue; 14607c478bd9Sstevel@tonic-gate if (pdp->pd_php == NULL) 14617c478bd9Sstevel@tonic-gate return (0); 14627c478bd9Sstevel@tonic-gate } 14637c478bd9Sstevel@tonic-gate return (1); 14647c478bd9Sstevel@tonic-gate } 14657c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 14667c478bd9Sstevel@tonic-gate 14677c478bd9Sstevel@tonic-gate /* 14687c478bd9Sstevel@tonic-gate * resolve the difference between the current poll list and a cached one. 14697c478bd9Sstevel@tonic-gate */ 14707c478bd9Sstevel@tonic-gate int 14717c478bd9Sstevel@tonic-gate pcacheset_resolve(pollstate_t *ps, nfds_t nfds, int *fdcntp, int which) 14727c478bd9Sstevel@tonic-gate { 14737c478bd9Sstevel@tonic-gate int i; 14747c478bd9Sstevel@tonic-gate pollcache_t *pcp = ps->ps_pcache; 14757c478bd9Sstevel@tonic-gate pollfd_t *newlist = NULL; 14767c478bd9Sstevel@tonic-gate pollfd_t *current = ps->ps_pollfd; 14777c478bd9Sstevel@tonic-gate pollfd_t *cached; 14787c478bd9Sstevel@tonic-gate pollcacheset_t *pcsp; 14797c478bd9Sstevel@tonic-gate int common; 14807c478bd9Sstevel@tonic-gate int count = 0; 14817c478bd9Sstevel@tonic-gate int offset; 14827c478bd9Sstevel@tonic-gate int remain; 14837c478bd9Sstevel@tonic-gate int fd; 14847c478bd9Sstevel@tonic-gate file_t *fp; 14857c478bd9Sstevel@tonic-gate int fdcnt = 0; 14867c478bd9Sstevel@tonic-gate int cnt = 0; 14877c478bd9Sstevel@tonic-gate nfds_t old_nfds; 14887c478bd9Sstevel@tonic-gate int error = 0; 14897c478bd9Sstevel@tonic-gate int mismatch = 0; 14907c478bd9Sstevel@tonic-gate 14917c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&ps->ps_lock)); 14927c478bd9Sstevel@tonic-gate #ifdef DEBUG 14937c478bd9Sstevel@tonic-gate checkpolldat(ps); 14947c478bd9Sstevel@tonic-gate #endif 14957c478bd9Sstevel@tonic-gate pcsp = &ps->ps_pcacheset[which]; 14967c478bd9Sstevel@tonic-gate old_nfds = pcsp->pcs_nfds; 14977c478bd9Sstevel@tonic-gate common = (nfds > old_nfds) ? old_nfds : nfds; 14987c478bd9Sstevel@tonic-gate if (nfds != old_nfds) { 14997c478bd9Sstevel@tonic-gate /* 15007c478bd9Sstevel@tonic-gate * the length of poll list has changed. allocate a new 15017c478bd9Sstevel@tonic-gate * pollfd list. 15027c478bd9Sstevel@tonic-gate */ 15037c478bd9Sstevel@tonic-gate newlist = kmem_alloc(nfds * sizeof (pollfd_t), KM_SLEEP); 15047c478bd9Sstevel@tonic-gate bcopy(current, newlist, sizeof (pollfd_t) * nfds); 15057c478bd9Sstevel@tonic-gate } 15067c478bd9Sstevel@tonic-gate /* 15077c478bd9Sstevel@tonic-gate * Compare the overlapping part of the current fd list with the 15087c478bd9Sstevel@tonic-gate * cached one. Whenever a difference is found, resolve it. 15097c478bd9Sstevel@tonic-gate * The comparison is done on the current poll list and the 15107c478bd9Sstevel@tonic-gate * cached list. But we may be setting up the newlist to be the 15117c478bd9Sstevel@tonic-gate * cached list for next poll. 15127c478bd9Sstevel@tonic-gate */ 15137c478bd9Sstevel@tonic-gate cached = pcsp->pcs_pollfd; 15147c478bd9Sstevel@tonic-gate remain = common; 15157c478bd9Sstevel@tonic-gate 15167c478bd9Sstevel@tonic-gate while (count < common) { 15177c478bd9Sstevel@tonic-gate int tmpfd; 15187c478bd9Sstevel@tonic-gate pollfd_t *np; 15197c478bd9Sstevel@tonic-gate 15207c478bd9Sstevel@tonic-gate np = (newlist != NULL) ? &newlist[count] : NULL; 15217c478bd9Sstevel@tonic-gate offset = pcacheset_cmp(¤t[count], &cached[count], np, 15227c478bd9Sstevel@tonic-gate remain); 15237c478bd9Sstevel@tonic-gate /* 15247c478bd9Sstevel@tonic-gate * Collect stats. If lists are completed the first time, 15257c478bd9Sstevel@tonic-gate * it's a hit. Otherwise, it's a partial hit or miss. 15267c478bd9Sstevel@tonic-gate */ 15277c478bd9Sstevel@tonic-gate if ((count == 0) && (offset == common)) { 15287c478bd9Sstevel@tonic-gate pollstats.pollcachehit.value.ui64++; 15297c478bd9Sstevel@tonic-gate } else { 15307c478bd9Sstevel@tonic-gate mismatch++; 15317c478bd9Sstevel@tonic-gate } 15327c478bd9Sstevel@tonic-gate count += offset; 15337c478bd9Sstevel@tonic-gate if (offset < remain) { 15347c478bd9Sstevel@tonic-gate ASSERT(count < common); 15357c478bd9Sstevel@tonic-gate ASSERT((current[count].fd != cached[count].fd) || 15367c478bd9Sstevel@tonic-gate (current[count].events != cached[count].events)); 15377c478bd9Sstevel@tonic-gate /* 15387c478bd9Sstevel@tonic-gate * Filter out invalid events. 15397c478bd9Sstevel@tonic-gate */ 15407c478bd9Sstevel@tonic-gate if (current[count].events & ~VALID_POLL_EVENTS) { 15417c478bd9Sstevel@tonic-gate if (newlist != NULL) { 15427c478bd9Sstevel@tonic-gate newlist[count].events = 15437c478bd9Sstevel@tonic-gate current[count].events &= 15447c478bd9Sstevel@tonic-gate VALID_POLL_EVENTS; 15457c478bd9Sstevel@tonic-gate } else { 15467c478bd9Sstevel@tonic-gate current[count].events &= 15477c478bd9Sstevel@tonic-gate VALID_POLL_EVENTS; 15487c478bd9Sstevel@tonic-gate } 15497c478bd9Sstevel@tonic-gate } 15507c478bd9Sstevel@tonic-gate /* 15517c478bd9Sstevel@tonic-gate * when resolving a difference, we always remove the 15527c478bd9Sstevel@tonic-gate * fd from cache before inserting one into cache. 15537c478bd9Sstevel@tonic-gate */ 15547c478bd9Sstevel@tonic-gate if (cached[count].fd >= 0) { 15557c478bd9Sstevel@tonic-gate tmpfd = cached[count].fd; 15567c478bd9Sstevel@tonic-gate if (pcache_delete_fd(ps, tmpfd, count, which, 15577c478bd9Sstevel@tonic-gate (uint_t)cached[count].events)) { 15587c478bd9Sstevel@tonic-gate /* 15597c478bd9Sstevel@tonic-gate * This should be rare but needed for 15607c478bd9Sstevel@tonic-gate * correctness. 15617c478bd9Sstevel@tonic-gate * 15627c478bd9Sstevel@tonic-gate * The first appearance in cached list 15637c478bd9Sstevel@tonic-gate * is being "turned off". The same fd 15647c478bd9Sstevel@tonic-gate * appear more than once in the cached 15657c478bd9Sstevel@tonic-gate * poll list. Find the next one on the 15667c478bd9Sstevel@tonic-gate * list and update the cached 15677c478bd9Sstevel@tonic-gate * xf_position field. 15687c478bd9Sstevel@tonic-gate */ 15697c478bd9Sstevel@tonic-gate for (i = count + 1; i < old_nfds; i++) { 15707c478bd9Sstevel@tonic-gate if (cached[i].fd == tmpfd) { 15717c478bd9Sstevel@tonic-gate pcache_update_xref(pcp, 15727c478bd9Sstevel@tonic-gate tmpfd, (ssize_t)i, 15737c478bd9Sstevel@tonic-gate which); 15747c478bd9Sstevel@tonic-gate break; 15757c478bd9Sstevel@tonic-gate } 15767c478bd9Sstevel@tonic-gate } 15777c478bd9Sstevel@tonic-gate ASSERT(i <= old_nfds); 15787c478bd9Sstevel@tonic-gate } 15797c478bd9Sstevel@tonic-gate /* 15807c478bd9Sstevel@tonic-gate * In case a new cache list is allocated, 15817c478bd9Sstevel@tonic-gate * need to keep both cache lists in sync 15827c478bd9Sstevel@tonic-gate * b/c the new one can be freed if we have 15837c478bd9Sstevel@tonic-gate * an error later. 15847c478bd9Sstevel@tonic-gate */ 15857c478bd9Sstevel@tonic-gate cached[count].fd = -1; 15867c478bd9Sstevel@tonic-gate if (newlist != NULL) { 15877c478bd9Sstevel@tonic-gate newlist[count].fd = -1; 15887c478bd9Sstevel@tonic-gate } 15897c478bd9Sstevel@tonic-gate } 15907c478bd9Sstevel@tonic-gate if ((tmpfd = current[count].fd) >= 0) { 15917c478bd9Sstevel@tonic-gate /* 15927c478bd9Sstevel@tonic-gate * add to the cached fd tbl and bitmap. 15937c478bd9Sstevel@tonic-gate */ 15947c478bd9Sstevel@tonic-gate if ((fp = getf(tmpfd)) == NULL) { 15957c478bd9Sstevel@tonic-gate current[count].revents = POLLNVAL; 15967c478bd9Sstevel@tonic-gate if (newlist != NULL) { 15977c478bd9Sstevel@tonic-gate newlist[count].fd = -1; 15987c478bd9Sstevel@tonic-gate } 15997c478bd9Sstevel@tonic-gate cached[count].fd = -1; 16007c478bd9Sstevel@tonic-gate fdcnt++; 16017c478bd9Sstevel@tonic-gate } else { 16027c478bd9Sstevel@tonic-gate /* 16037c478bd9Sstevel@tonic-gate * Here we don't care about the 16047c478bd9Sstevel@tonic-gate * fdcnt. We will examine the bitmap 16057c478bd9Sstevel@tonic-gate * later and pick up the correct 16067c478bd9Sstevel@tonic-gate * fdcnt there. So we never bother 16077c478bd9Sstevel@tonic-gate * to check value of 'cnt'. 16087c478bd9Sstevel@tonic-gate */ 16097c478bd9Sstevel@tonic-gate error = pcache_insert(ps, fp, 16107c478bd9Sstevel@tonic-gate ¤t[count], &cnt, 16117c478bd9Sstevel@tonic-gate (ssize_t)count, which); 16127c478bd9Sstevel@tonic-gate /* 16137c478bd9Sstevel@tonic-gate * if no error, we want to do releasef 16147c478bd9Sstevel@tonic-gate * after we updated cache poll list 16157c478bd9Sstevel@tonic-gate * entry so that close() won't race 16167c478bd9Sstevel@tonic-gate * us. 16177c478bd9Sstevel@tonic-gate */ 16187c478bd9Sstevel@tonic-gate if (error) { 16197c478bd9Sstevel@tonic-gate /* 16207c478bd9Sstevel@tonic-gate * If we encountered an error, 16217c478bd9Sstevel@tonic-gate * we have invalidated an 16227c478bd9Sstevel@tonic-gate * entry in cached poll list 16237c478bd9Sstevel@tonic-gate * (in pcache_delete_fd() above) 16247c478bd9Sstevel@tonic-gate * but failed to add one here. 16257c478bd9Sstevel@tonic-gate * This is OK b/c what's in the 16267c478bd9Sstevel@tonic-gate * cached list is consistent 16277c478bd9Sstevel@tonic-gate * with content of cache. 16287c478bd9Sstevel@tonic-gate * It will not have any ill 16297c478bd9Sstevel@tonic-gate * effect on next poll(). 16307c478bd9Sstevel@tonic-gate */ 16317c478bd9Sstevel@tonic-gate releasef(tmpfd); 16327c478bd9Sstevel@tonic-gate if (newlist != NULL) { 16337c478bd9Sstevel@tonic-gate kmem_free(newlist, 16347c478bd9Sstevel@tonic-gate nfds * 16357c478bd9Sstevel@tonic-gate sizeof (pollfd_t)); 16367c478bd9Sstevel@tonic-gate } 16377c478bd9Sstevel@tonic-gate return (error); 16387c478bd9Sstevel@tonic-gate } 16397c478bd9Sstevel@tonic-gate /* 16407c478bd9Sstevel@tonic-gate * If we have allocated a new(temp) 16417c478bd9Sstevel@tonic-gate * cache list, we need to keep both 16427c478bd9Sstevel@tonic-gate * in sync b/c the new one can be freed 16437c478bd9Sstevel@tonic-gate * if we have an error later. 16447c478bd9Sstevel@tonic-gate */ 16457c478bd9Sstevel@tonic-gate if (newlist != NULL) { 16467c478bd9Sstevel@tonic-gate newlist[count].fd = 16477c478bd9Sstevel@tonic-gate current[count].fd; 16487c478bd9Sstevel@tonic-gate newlist[count].events = 16497c478bd9Sstevel@tonic-gate current[count].events; 16507c478bd9Sstevel@tonic-gate } 16517c478bd9Sstevel@tonic-gate cached[count].fd = current[count].fd; 16527c478bd9Sstevel@tonic-gate cached[count].events = 16537c478bd9Sstevel@tonic-gate current[count].events; 16547c478bd9Sstevel@tonic-gate releasef(tmpfd); 16557c478bd9Sstevel@tonic-gate } 16567c478bd9Sstevel@tonic-gate } else { 16577c478bd9Sstevel@tonic-gate current[count].revents = 0; 16587c478bd9Sstevel@tonic-gate } 16597c478bd9Sstevel@tonic-gate count++; 16607c478bd9Sstevel@tonic-gate remain = common - count; 16617c478bd9Sstevel@tonic-gate } 16627c478bd9Sstevel@tonic-gate } 16637c478bd9Sstevel@tonic-gate if (mismatch != 0) { 16647c478bd9Sstevel@tonic-gate if (mismatch == common) { 16657c478bd9Sstevel@tonic-gate pollstats.pollcachemiss.value.ui64++; 16667c478bd9Sstevel@tonic-gate } else { 16677c478bd9Sstevel@tonic-gate pollstats.pollcachephit.value.ui64++; 16687c478bd9Sstevel@tonic-gate } 16697c478bd9Sstevel@tonic-gate } 16707c478bd9Sstevel@tonic-gate /* 16717c478bd9Sstevel@tonic-gate * take care of the non overlapping part of a list 16727c478bd9Sstevel@tonic-gate */ 16737c478bd9Sstevel@tonic-gate if (nfds > old_nfds) { 16747c478bd9Sstevel@tonic-gate ASSERT(newlist != NULL); 16757c478bd9Sstevel@tonic-gate for (i = old_nfds; i < nfds; i++) { 16767c478bd9Sstevel@tonic-gate /* filter out invalid events */ 16777c478bd9Sstevel@tonic-gate if (current[i].events & ~VALID_POLL_EVENTS) { 16787c478bd9Sstevel@tonic-gate newlist[i].events = current[i].events = 16797c478bd9Sstevel@tonic-gate current[i].events & VALID_POLL_EVENTS; 16807c478bd9Sstevel@tonic-gate } 16817c478bd9Sstevel@tonic-gate if ((fd = current[i].fd) < 0) { 16827c478bd9Sstevel@tonic-gate current[i].revents = 0; 16837c478bd9Sstevel@tonic-gate continue; 16847c478bd9Sstevel@tonic-gate } 16857c478bd9Sstevel@tonic-gate /* 16867c478bd9Sstevel@tonic-gate * add to the cached fd tbl and bitmap. 16877c478bd9Sstevel@tonic-gate */ 16887c478bd9Sstevel@tonic-gate if ((fp = getf(fd)) == NULL) { 16897c478bd9Sstevel@tonic-gate current[i].revents = POLLNVAL; 16907c478bd9Sstevel@tonic-gate newlist[i].fd = -1; 16917c478bd9Sstevel@tonic-gate fdcnt++; 16927c478bd9Sstevel@tonic-gate continue; 16937c478bd9Sstevel@tonic-gate } 16947c478bd9Sstevel@tonic-gate /* 16957c478bd9Sstevel@tonic-gate * Here we don't care about the 16967c478bd9Sstevel@tonic-gate * fdcnt. We will examine the bitmap 16977c478bd9Sstevel@tonic-gate * later and pick up the correct 16987c478bd9Sstevel@tonic-gate * fdcnt there. So we never bother to 16997c478bd9Sstevel@tonic-gate * check 'cnt'. 17007c478bd9Sstevel@tonic-gate */ 17017c478bd9Sstevel@tonic-gate error = pcache_insert(ps, fp, ¤t[i], &cnt, 17027c478bd9Sstevel@tonic-gate (ssize_t)i, which); 17037c478bd9Sstevel@tonic-gate releasef(fd); 17047c478bd9Sstevel@tonic-gate if (error) { 17057c478bd9Sstevel@tonic-gate /* 17067c478bd9Sstevel@tonic-gate * Here we are half way through adding newly 17077c478bd9Sstevel@tonic-gate * polled fd. Undo enough to keep the cache 17087c478bd9Sstevel@tonic-gate * list consistent with the cache content. 17097c478bd9Sstevel@tonic-gate */ 17107c478bd9Sstevel@tonic-gate pcacheset_remove_list(ps, current, old_nfds, 17117c478bd9Sstevel@tonic-gate i, which, 0); 17127c478bd9Sstevel@tonic-gate kmem_free(newlist, nfds * sizeof (pollfd_t)); 17137c478bd9Sstevel@tonic-gate return (error); 17147c478bd9Sstevel@tonic-gate } 17157c478bd9Sstevel@tonic-gate } 17167c478bd9Sstevel@tonic-gate } 17177c478bd9Sstevel@tonic-gate if (old_nfds > nfds) { 17187c478bd9Sstevel@tonic-gate /* 17197c478bd9Sstevel@tonic-gate * remove the fd's which are no longer polled. 17207c478bd9Sstevel@tonic-gate */ 17217c478bd9Sstevel@tonic-gate pcacheset_remove_list(ps, pcsp->pcs_pollfd, nfds, old_nfds, 17227c478bd9Sstevel@tonic-gate which, 1); 17237c478bd9Sstevel@tonic-gate } 17247c478bd9Sstevel@tonic-gate /* 17257c478bd9Sstevel@tonic-gate * set difference resolved. update nfds and cachedlist 17267c478bd9Sstevel@tonic-gate * in pollstate struct. 17277c478bd9Sstevel@tonic-gate */ 17287c478bd9Sstevel@tonic-gate if (newlist != NULL) { 17297c478bd9Sstevel@tonic-gate kmem_free(pcsp->pcs_pollfd, old_nfds * sizeof (pollfd_t)); 17307c478bd9Sstevel@tonic-gate /* 17317c478bd9Sstevel@tonic-gate * By now, the pollfd.revents field should 17327c478bd9Sstevel@tonic-gate * all be zeroed. 17337c478bd9Sstevel@tonic-gate */ 17347c478bd9Sstevel@tonic-gate pcsp->pcs_pollfd = newlist; 17357c478bd9Sstevel@tonic-gate pcsp->pcs_nfds = nfds; 17367c478bd9Sstevel@tonic-gate } 17377c478bd9Sstevel@tonic-gate ASSERT(*fdcntp == 0); 17387c478bd9Sstevel@tonic-gate *fdcntp = fdcnt; 17397c478bd9Sstevel@tonic-gate /* 17407c478bd9Sstevel@tonic-gate * By now for every fd in pollfdp, one of the following should be 17417c478bd9Sstevel@tonic-gate * true. Otherwise we will miss a polled event. 17427c478bd9Sstevel@tonic-gate * 17437c478bd9Sstevel@tonic-gate * 1. the bit corresponding to the fd in bitmap is set. So VOP_POLL 17447c478bd9Sstevel@tonic-gate * will be called on this fd in next poll. 17457c478bd9Sstevel@tonic-gate * 2. the fd is cached in the pcache (i.e. pd_php is set). So 17467c478bd9Sstevel@tonic-gate * pollnotify will happen. 17477c478bd9Sstevel@tonic-gate */ 17487c478bd9Sstevel@tonic-gate ASSERT(pollchecksanity(ps, nfds)); 17497c478bd9Sstevel@tonic-gate /* 17507c478bd9Sstevel@tonic-gate * make sure cross reference between cached poll lists and cached 17517c478bd9Sstevel@tonic-gate * poll fds are correct. 17527c478bd9Sstevel@tonic-gate */ 17537c478bd9Sstevel@tonic-gate ASSERT(pollcheckxref(ps, which)); 17547c478bd9Sstevel@tonic-gate /* 17557c478bd9Sstevel@tonic-gate * ensure each polldat in pollcache reference a polled fd in 17567c478bd9Sstevel@tonic-gate * pollcacheset. 17577c478bd9Sstevel@tonic-gate */ 17587c478bd9Sstevel@tonic-gate #ifdef DEBUG 17597c478bd9Sstevel@tonic-gate checkpolldat(ps); 17607c478bd9Sstevel@tonic-gate #endif 17617c478bd9Sstevel@tonic-gate return (0); 17627c478bd9Sstevel@tonic-gate } 17637c478bd9Sstevel@tonic-gate 17647c478bd9Sstevel@tonic-gate #ifdef DEBUG 17657c478bd9Sstevel@tonic-gate static int 17667c478bd9Sstevel@tonic-gate pollscanrevents(pollcache_t *pcp, pollfd_t *pollfdp, nfds_t nfds) 17677c478bd9Sstevel@tonic-gate { 17687c478bd9Sstevel@tonic-gate int i; 17697c478bd9Sstevel@tonic-gate int reventcnt = 0; 17707c478bd9Sstevel@tonic-gate 17717c478bd9Sstevel@tonic-gate for (i = 0; i < nfds; i++) { 17727c478bd9Sstevel@tonic-gate if (pollfdp[i].fd < 0) { 17737c478bd9Sstevel@tonic-gate ASSERT(pollfdp[i].revents == 0); 17747c478bd9Sstevel@tonic-gate continue; 17757c478bd9Sstevel@tonic-gate } 17767c478bd9Sstevel@tonic-gate if (pollfdp[i].revents) { 17777c478bd9Sstevel@tonic-gate reventcnt++; 17787c478bd9Sstevel@tonic-gate } 17797c478bd9Sstevel@tonic-gate if (pollfdp[i].revents && (pollfdp[i].revents != POLLNVAL)) { 17807c478bd9Sstevel@tonic-gate ASSERT(BT_TEST(pcp->pc_bitmap, pollfdp[i].fd)); 17817c478bd9Sstevel@tonic-gate } 17827c478bd9Sstevel@tonic-gate } 17837c478bd9Sstevel@tonic-gate return (reventcnt); 17847c478bd9Sstevel@tonic-gate } 17857c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 17867c478bd9Sstevel@tonic-gate 17877c478bd9Sstevel@tonic-gate /* 17887c478bd9Sstevel@tonic-gate * read the bitmap and poll on fds corresponding to the '1' bits. The ps_lock 17897c478bd9Sstevel@tonic-gate * is held upon entry. 17907c478bd9Sstevel@tonic-gate */ 17917c478bd9Sstevel@tonic-gate int 17927c478bd9Sstevel@tonic-gate pcache_poll(pollfd_t *pollfdp, pollstate_t *ps, nfds_t nfds, int *fdcntp, 17937c478bd9Sstevel@tonic-gate int which) 17947c478bd9Sstevel@tonic-gate { 17957c478bd9Sstevel@tonic-gate int i; 17967c478bd9Sstevel@tonic-gate pollcache_t *pcp; 17977c478bd9Sstevel@tonic-gate int fd; 17987c478bd9Sstevel@tonic-gate int begin, end, done; 17997c478bd9Sstevel@tonic-gate pollhead_t *php; 18007c478bd9Sstevel@tonic-gate int fdcnt; 18017c478bd9Sstevel@tonic-gate int error = 0; 18027c478bd9Sstevel@tonic-gate file_t *fp; 18037c478bd9Sstevel@tonic-gate polldat_t *pdp; 18047c478bd9Sstevel@tonic-gate xref_t *refp; 18057c478bd9Sstevel@tonic-gate int entry; 18067c478bd9Sstevel@tonic-gate 18077c478bd9Sstevel@tonic-gate pcp = ps->ps_pcache; 18087c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&ps->ps_lock)); 18097c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&pcp->pc_lock)); 18107c478bd9Sstevel@tonic-gate retry: 18117c478bd9Sstevel@tonic-gate done = 0; 18127c478bd9Sstevel@tonic-gate begin = 0; 18137c478bd9Sstevel@tonic-gate fdcnt = 0; 18147c478bd9Sstevel@tonic-gate end = pcp->pc_mapend; 18157c478bd9Sstevel@tonic-gate while ((fdcnt < nfds) && !done) { 18167c478bd9Sstevel@tonic-gate php = NULL; 18177c478bd9Sstevel@tonic-gate /* 18187c478bd9Sstevel@tonic-gate * only poll fds which may have events 18197c478bd9Sstevel@tonic-gate */ 18207c478bd9Sstevel@tonic-gate fd = bt_getlowbit(pcp->pc_bitmap, begin, end); 18217c478bd9Sstevel@tonic-gate ASSERT(fd <= end); 18227c478bd9Sstevel@tonic-gate if (fd >= 0) { 18237c478bd9Sstevel@tonic-gate ASSERT(pollcheckrevents(ps, begin, fd, which)); 18247c478bd9Sstevel@tonic-gate /* 18257c478bd9Sstevel@tonic-gate * adjust map pointers for next round 18267c478bd9Sstevel@tonic-gate */ 18277c478bd9Sstevel@tonic-gate if (fd == end) { 18287c478bd9Sstevel@tonic-gate done = 1; 18297c478bd9Sstevel@tonic-gate } else { 18307c478bd9Sstevel@tonic-gate begin = fd + 1; 18317c478bd9Sstevel@tonic-gate } 18327c478bd9Sstevel@tonic-gate /* 18337c478bd9Sstevel@tonic-gate * A bitmap caches poll state information of 18347c478bd9Sstevel@tonic-gate * multiple poll lists. Call VOP_POLL only if 18357c478bd9Sstevel@tonic-gate * the bit corresponds to an fd in this poll 18367c478bd9Sstevel@tonic-gate * list. 18377c478bd9Sstevel@tonic-gate */ 18387c478bd9Sstevel@tonic-gate pdp = pcache_lookup_fd(pcp, fd); 18397c478bd9Sstevel@tonic-gate ASSERT(pdp != NULL); 18407c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_ref != NULL); 18417c478bd9Sstevel@tonic-gate refp = &pdp->pd_ref[which]; 18427c478bd9Sstevel@tonic-gate if (refp->xf_refcnt == 0) 18437c478bd9Sstevel@tonic-gate continue; 18447c478bd9Sstevel@tonic-gate entry = refp->xf_position; 18457c478bd9Sstevel@tonic-gate ASSERT((entry >= 0) && (entry < nfds)); 18467c478bd9Sstevel@tonic-gate ASSERT(pollfdp[entry].fd == fd); 18477c478bd9Sstevel@tonic-gate /* 18487c478bd9Sstevel@tonic-gate * we are in this routine implies that we have 18497c478bd9Sstevel@tonic-gate * successfully polled this fd in the past. 18507c478bd9Sstevel@tonic-gate * Check to see this fd is closed while we are 18517c478bd9Sstevel@tonic-gate * blocked in poll. This ensures that we don't 18527c478bd9Sstevel@tonic-gate * miss a close on the fd in the case this fd is 18537c478bd9Sstevel@tonic-gate * reused. 18547c478bd9Sstevel@tonic-gate */ 18557c478bd9Sstevel@tonic-gate if (pdp->pd_fp == NULL) { 18567c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_count > 0); 18577c478bd9Sstevel@tonic-gate pollfdp[entry].revents = POLLNVAL; 18587c478bd9Sstevel@tonic-gate fdcnt++; 18597c478bd9Sstevel@tonic-gate if (refp->xf_refcnt > 1) { 18607c478bd9Sstevel@tonic-gate /* 18617c478bd9Sstevel@tonic-gate * this fd appeared multiple time 18627c478bd9Sstevel@tonic-gate * in the poll list. Find all of them. 18637c478bd9Sstevel@tonic-gate */ 18647c478bd9Sstevel@tonic-gate for (i = entry + 1; i < nfds; i++) { 18657c478bd9Sstevel@tonic-gate if (pollfdp[i].fd == fd) { 18667c478bd9Sstevel@tonic-gate pollfdp[i].revents = 18677c478bd9Sstevel@tonic-gate POLLNVAL; 18687c478bd9Sstevel@tonic-gate fdcnt++; 18697c478bd9Sstevel@tonic-gate } 18707c478bd9Sstevel@tonic-gate } 18717c478bd9Sstevel@tonic-gate } 18727c478bd9Sstevel@tonic-gate pcacheset_invalidate(ps, pdp); 18737c478bd9Sstevel@tonic-gate continue; 18747c478bd9Sstevel@tonic-gate } 18757c478bd9Sstevel@tonic-gate /* 18767c478bd9Sstevel@tonic-gate * We can be here polling a device that is being 18777c478bd9Sstevel@tonic-gate * closed (i.e. the file pointer is set to NULL, 18787c478bd9Sstevel@tonic-gate * but pollcacheclean has not happened yet). 18797c478bd9Sstevel@tonic-gate */ 18807c478bd9Sstevel@tonic-gate if ((fp = getf(fd)) == NULL) { 18817c478bd9Sstevel@tonic-gate pollfdp[entry].revents = POLLNVAL; 18827c478bd9Sstevel@tonic-gate fdcnt++; 18837c478bd9Sstevel@tonic-gate if (refp->xf_refcnt > 1) { 18847c478bd9Sstevel@tonic-gate /* 18857c478bd9Sstevel@tonic-gate * this fd appeared multiple time 18867c478bd9Sstevel@tonic-gate * in the poll list. Find all of them. 18877c478bd9Sstevel@tonic-gate */ 18887c478bd9Sstevel@tonic-gate for (i = entry + 1; i < nfds; i++) { 18897c478bd9Sstevel@tonic-gate if (pollfdp[i].fd == fd) { 18907c478bd9Sstevel@tonic-gate pollfdp[i].revents = 18917c478bd9Sstevel@tonic-gate POLLNVAL; 18927c478bd9Sstevel@tonic-gate fdcnt++; 18937c478bd9Sstevel@tonic-gate } 18947c478bd9Sstevel@tonic-gate } 18957c478bd9Sstevel@tonic-gate } 18967c478bd9Sstevel@tonic-gate continue; 18977c478bd9Sstevel@tonic-gate } 18987c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_fp == fp); 18997c478bd9Sstevel@tonic-gate ASSERT(infpollinfo(fd)); 19007c478bd9Sstevel@tonic-gate /* 19017c478bd9Sstevel@tonic-gate * Since we no longer hold poll head lock across 19027c478bd9Sstevel@tonic-gate * VOP_POLL, pollunlock logic can be simplifed. 19037c478bd9Sstevel@tonic-gate */ 19047c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_php == NULL || 19057c478bd9Sstevel@tonic-gate MUTEX_NOT_HELD(PHLOCK(pdp->pd_php))); 19067c478bd9Sstevel@tonic-gate /* 19077c478bd9Sstevel@tonic-gate * underlying file systems may set a "pollpending" 19087c478bd9Sstevel@tonic-gate * flag when it sees the poll may block. Pollwakeup() 19097c478bd9Sstevel@tonic-gate * is called by wakeup thread if pollpending is set. 19107c478bd9Sstevel@tonic-gate * Pass a 0 fdcnt so that the underlying file system 19117c478bd9Sstevel@tonic-gate * will set the "pollpending" flag set when there is 19127c478bd9Sstevel@tonic-gate * no polled events. 19137c478bd9Sstevel@tonic-gate * 19147c478bd9Sstevel@tonic-gate * Use pollfdp[].events for actual polling because 19157c478bd9Sstevel@tonic-gate * the pd_events is union of all cached poll events 19167c478bd9Sstevel@tonic-gate * on this fd. The events parameter also affects 19177c478bd9Sstevel@tonic-gate * how the polled device sets the "poll pending" 19187c478bd9Sstevel@tonic-gate * flag. 19197c478bd9Sstevel@tonic-gate */ 19207c478bd9Sstevel@tonic-gate ASSERT(curthread->t_pollcache == NULL); 19217c478bd9Sstevel@tonic-gate error = VOP_POLL(fp->f_vnode, pollfdp[entry].events, 0, 19227c478bd9Sstevel@tonic-gate &pollfdp[entry].revents, &php); 19237c478bd9Sstevel@tonic-gate /* 19247c478bd9Sstevel@tonic-gate * releasef after completely done with this cached 19257c478bd9Sstevel@tonic-gate * poll entry. To prevent close() coming in to clear 19267c478bd9Sstevel@tonic-gate * this entry. 19277c478bd9Sstevel@tonic-gate */ 19287c478bd9Sstevel@tonic-gate if (error) { 19297c478bd9Sstevel@tonic-gate releasef(fd); 19307c478bd9Sstevel@tonic-gate break; 19317c478bd9Sstevel@tonic-gate } 19327c478bd9Sstevel@tonic-gate /* 19337c478bd9Sstevel@tonic-gate * layered devices (e.g. console driver) 19347c478bd9Sstevel@tonic-gate * may change the vnode and thus the pollhead 19357c478bd9Sstevel@tonic-gate * pointer out from underneath us. 19367c478bd9Sstevel@tonic-gate */ 19377c478bd9Sstevel@tonic-gate if (php != NULL && pdp->pd_php != NULL && 19387c478bd9Sstevel@tonic-gate php != pdp->pd_php) { 19397c478bd9Sstevel@tonic-gate releasef(fd); 19407c478bd9Sstevel@tonic-gate pollhead_delete(pdp->pd_php, pdp); 19417c478bd9Sstevel@tonic-gate pdp->pd_php = php; 19427c478bd9Sstevel@tonic-gate pollhead_insert(php, pdp); 19437c478bd9Sstevel@tonic-gate /* 19447c478bd9Sstevel@tonic-gate * We could have missed a wakeup on the new 19457c478bd9Sstevel@tonic-gate * target device. Make sure the new target 19467c478bd9Sstevel@tonic-gate * gets polled once. 19477c478bd9Sstevel@tonic-gate */ 19487c478bd9Sstevel@tonic-gate BT_SET(pcp->pc_bitmap, fd); 19497c478bd9Sstevel@tonic-gate goto retry; 19507c478bd9Sstevel@tonic-gate } 19517c478bd9Sstevel@tonic-gate 19527c478bd9Sstevel@tonic-gate if (pollfdp[entry].revents) { 19537c478bd9Sstevel@tonic-gate ASSERT(refp->xf_refcnt >= 1); 19547c478bd9Sstevel@tonic-gate fdcnt++; 19557c478bd9Sstevel@tonic-gate if (refp->xf_refcnt > 1) { 19567c478bd9Sstevel@tonic-gate /* 19577c478bd9Sstevel@tonic-gate * this fd appeared multiple time 19587c478bd9Sstevel@tonic-gate * in the poll list. This is rare but 19597c478bd9Sstevel@tonic-gate * we have to look at all of them for 19607c478bd9Sstevel@tonic-gate * correctness. 19617c478bd9Sstevel@tonic-gate */ 19627c478bd9Sstevel@tonic-gate error = plist_chkdupfd(fp, pdp, ps, 19637c478bd9Sstevel@tonic-gate pollfdp, entry, &fdcnt); 19647c478bd9Sstevel@tonic-gate if (error > 0) { 19657c478bd9Sstevel@tonic-gate releasef(fd); 19667c478bd9Sstevel@tonic-gate break; 19677c478bd9Sstevel@tonic-gate } 19687c478bd9Sstevel@tonic-gate if (error < 0) { 19697c478bd9Sstevel@tonic-gate goto retry; 19707c478bd9Sstevel@tonic-gate } 19717c478bd9Sstevel@tonic-gate } 19727c478bd9Sstevel@tonic-gate releasef(fd); 19737c478bd9Sstevel@tonic-gate } else { 19747c478bd9Sstevel@tonic-gate /* 19757c478bd9Sstevel@tonic-gate * VOP_POLL didn't return any revents. We can 19767c478bd9Sstevel@tonic-gate * clear the bit in bitmap only if we have the 19777c478bd9Sstevel@tonic-gate * pollhead ptr cached and no other cached 19787c478bd9Sstevel@tonic-gate * entry is polling different events on this fd. 19797c478bd9Sstevel@tonic-gate * VOP_POLL may have dropped the ps_lock. Make 19807c478bd9Sstevel@tonic-gate * sure pollwakeup has not happened before clear 19817c478bd9Sstevel@tonic-gate * the bit. 19827c478bd9Sstevel@tonic-gate */ 19837c478bd9Sstevel@tonic-gate if ((pdp->pd_php != NULL) && 19847c478bd9Sstevel@tonic-gate (pollfdp[entry].events == pdp->pd_events) && 19857c478bd9Sstevel@tonic-gate ((pcp->pc_flag & T_POLLWAKE) == 0)) { 19867c478bd9Sstevel@tonic-gate BT_CLEAR(pcp->pc_bitmap, fd); 19877c478bd9Sstevel@tonic-gate } 19887c478bd9Sstevel@tonic-gate /* 19897c478bd9Sstevel@tonic-gate * if the fd can be cached now but not before, 19907c478bd9Sstevel@tonic-gate * do it now. 19917c478bd9Sstevel@tonic-gate */ 19927c478bd9Sstevel@tonic-gate if ((pdp->pd_php == NULL) && (php != NULL)) { 19937c478bd9Sstevel@tonic-gate pdp->pd_php = php; 19947c478bd9Sstevel@tonic-gate pollhead_insert(php, pdp); 19957c478bd9Sstevel@tonic-gate /* 19967c478bd9Sstevel@tonic-gate * We are inserting a polldat struct for 19977c478bd9Sstevel@tonic-gate * the first time. We may have missed a 19987c478bd9Sstevel@tonic-gate * wakeup on this device. Re-poll once. 19997c478bd9Sstevel@tonic-gate * This should be a rare event. 20007c478bd9Sstevel@tonic-gate */ 20017c478bd9Sstevel@tonic-gate releasef(fd); 20027c478bd9Sstevel@tonic-gate goto retry; 20037c478bd9Sstevel@tonic-gate } 20047c478bd9Sstevel@tonic-gate if (refp->xf_refcnt > 1) { 20057c478bd9Sstevel@tonic-gate /* 20067c478bd9Sstevel@tonic-gate * this fd appeared multiple time 20077c478bd9Sstevel@tonic-gate * in the poll list. This is rare but 20087c478bd9Sstevel@tonic-gate * we have to look at all of them for 20097c478bd9Sstevel@tonic-gate * correctness. 20107c478bd9Sstevel@tonic-gate */ 20117c478bd9Sstevel@tonic-gate error = plist_chkdupfd(fp, pdp, ps, 20127c478bd9Sstevel@tonic-gate pollfdp, entry, &fdcnt); 20137c478bd9Sstevel@tonic-gate if (error > 0) { 20147c478bd9Sstevel@tonic-gate releasef(fd); 20157c478bd9Sstevel@tonic-gate break; 20167c478bd9Sstevel@tonic-gate } 20177c478bd9Sstevel@tonic-gate if (error < 0) { 20187c478bd9Sstevel@tonic-gate goto retry; 20197c478bd9Sstevel@tonic-gate } 20207c478bd9Sstevel@tonic-gate } 20217c478bd9Sstevel@tonic-gate releasef(fd); 20227c478bd9Sstevel@tonic-gate } 20237c478bd9Sstevel@tonic-gate } else { 20247c478bd9Sstevel@tonic-gate done = 1; 20257c478bd9Sstevel@tonic-gate ASSERT(pollcheckrevents(ps, begin, end + 1, which)); 20267c478bd9Sstevel@tonic-gate } 20277c478bd9Sstevel@tonic-gate } 20287c478bd9Sstevel@tonic-gate if (!error) { 20297c478bd9Sstevel@tonic-gate ASSERT(*fdcntp + fdcnt == pollscanrevents(pcp, pollfdp, nfds)); 20307c478bd9Sstevel@tonic-gate *fdcntp += fdcnt; 20317c478bd9Sstevel@tonic-gate } 20327c478bd9Sstevel@tonic-gate return (error); 20337c478bd9Sstevel@tonic-gate } 20347c478bd9Sstevel@tonic-gate 20357c478bd9Sstevel@tonic-gate /* 20367c478bd9Sstevel@tonic-gate * Going through the poll list without much locking. Poll all fds and 20377c478bd9Sstevel@tonic-gate * cache all valid fds in the pollcache. 20387c478bd9Sstevel@tonic-gate */ 20397c478bd9Sstevel@tonic-gate int 20407c478bd9Sstevel@tonic-gate pcacheset_cache_list(pollstate_t *ps, pollfd_t *fds, int *fdcntp, int which) 20417c478bd9Sstevel@tonic-gate { 20427c478bd9Sstevel@tonic-gate pollfd_t *pollfdp = ps->ps_pollfd; 20437c478bd9Sstevel@tonic-gate pollcacheset_t *pcacheset = ps->ps_pcacheset; 20447c478bd9Sstevel@tonic-gate pollfd_t *newfdlist; 20457c478bd9Sstevel@tonic-gate int i; 20467c478bd9Sstevel@tonic-gate int fd; 20477c478bd9Sstevel@tonic-gate file_t *fp; 20487c478bd9Sstevel@tonic-gate int error = 0; 20497c478bd9Sstevel@tonic-gate 20507c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&ps->ps_lock)); 20517c478bd9Sstevel@tonic-gate ASSERT(which < ps->ps_nsets); 20527c478bd9Sstevel@tonic-gate ASSERT(pcacheset != NULL); 20537c478bd9Sstevel@tonic-gate ASSERT(pcacheset[which].pcs_pollfd == NULL); 20547c478bd9Sstevel@tonic-gate newfdlist = kmem_alloc(ps->ps_nfds * sizeof (pollfd_t), KM_SLEEP); 20557c478bd9Sstevel@tonic-gate /* 20567c478bd9Sstevel@tonic-gate * cache the new poll list in pollcachset. 20577c478bd9Sstevel@tonic-gate */ 20587c478bd9Sstevel@tonic-gate bcopy(pollfdp, newfdlist, sizeof (pollfd_t) * ps->ps_nfds); 20597c478bd9Sstevel@tonic-gate 20607c478bd9Sstevel@tonic-gate pcacheset[which].pcs_pollfd = newfdlist; 20617c478bd9Sstevel@tonic-gate pcacheset[which].pcs_nfds = ps->ps_nfds; 20627c478bd9Sstevel@tonic-gate pcacheset[which].pcs_usradr = (uintptr_t)fds; 20637c478bd9Sstevel@tonic-gate 20647c478bd9Sstevel@tonic-gate /* 20657c478bd9Sstevel@tonic-gate * We have saved a copy of current poll fd list in one pollcacheset. 20667c478bd9Sstevel@tonic-gate * The 'revents' field of the new list is not yet set to 0. Loop 20677c478bd9Sstevel@tonic-gate * through the new list just to do that is expensive. We do that 20687c478bd9Sstevel@tonic-gate * while polling the list. 20697c478bd9Sstevel@tonic-gate */ 20707c478bd9Sstevel@tonic-gate for (i = 0; i < ps->ps_nfds; i++) { 20717c478bd9Sstevel@tonic-gate fd = pollfdp[i].fd; 20727c478bd9Sstevel@tonic-gate /* 20737c478bd9Sstevel@tonic-gate * We also filter out the illegal poll events in the event 20747c478bd9Sstevel@tonic-gate * field for the cached poll list/set. 20757c478bd9Sstevel@tonic-gate */ 20767c478bd9Sstevel@tonic-gate if (pollfdp[i].events & ~VALID_POLL_EVENTS) { 20777c478bd9Sstevel@tonic-gate newfdlist[i].events = pollfdp[i].events = 20787c478bd9Sstevel@tonic-gate pollfdp[i].events & VALID_POLL_EVENTS; 20797c478bd9Sstevel@tonic-gate } 20807c478bd9Sstevel@tonic-gate if (fd < 0) { 20817c478bd9Sstevel@tonic-gate pollfdp[i].revents = 0; 20827c478bd9Sstevel@tonic-gate continue; 20837c478bd9Sstevel@tonic-gate } 20847c478bd9Sstevel@tonic-gate if ((fp = getf(fd)) == NULL) { 20857c478bd9Sstevel@tonic-gate pollfdp[i].revents = POLLNVAL; 20867c478bd9Sstevel@tonic-gate /* 20877c478bd9Sstevel@tonic-gate * invalidate this cache entry in the cached poll list 20887c478bd9Sstevel@tonic-gate */ 20897c478bd9Sstevel@tonic-gate newfdlist[i].fd = -1; 20907c478bd9Sstevel@tonic-gate (*fdcntp)++; 20917c478bd9Sstevel@tonic-gate continue; 20927c478bd9Sstevel@tonic-gate } 20937c478bd9Sstevel@tonic-gate /* 20947c478bd9Sstevel@tonic-gate * cache this fd. 20957c478bd9Sstevel@tonic-gate */ 20967c478bd9Sstevel@tonic-gate error = pcache_insert(ps, fp, &pollfdp[i], fdcntp, (ssize_t)i, 20977c478bd9Sstevel@tonic-gate which); 20987c478bd9Sstevel@tonic-gate releasef(fd); 20997c478bd9Sstevel@tonic-gate if (error) { 21007c478bd9Sstevel@tonic-gate /* 21017c478bd9Sstevel@tonic-gate * Here we are half way through caching a new 21027c478bd9Sstevel@tonic-gate * poll list. Undo every thing. 21037c478bd9Sstevel@tonic-gate */ 21047c478bd9Sstevel@tonic-gate pcacheset_remove_list(ps, pollfdp, 0, i, which, 0); 21057c478bd9Sstevel@tonic-gate kmem_free(newfdlist, ps->ps_nfds * sizeof (pollfd_t)); 21067c478bd9Sstevel@tonic-gate pcacheset[which].pcs_pollfd = NULL; 21077c478bd9Sstevel@tonic-gate pcacheset[which].pcs_usradr = NULL; 21087c478bd9Sstevel@tonic-gate break; 21097c478bd9Sstevel@tonic-gate } 21107c478bd9Sstevel@tonic-gate } 21117c478bd9Sstevel@tonic-gate return (error); 21127c478bd9Sstevel@tonic-gate } 21137c478bd9Sstevel@tonic-gate 21147c478bd9Sstevel@tonic-gate /* 21157c478bd9Sstevel@tonic-gate * called by pollcacheclean() to set the fp NULL. It also sets polled events 21167c478bd9Sstevel@tonic-gate * in pcacheset entries to a special events 'POLLCLOSED'. Do a pollwakeup to 21177c478bd9Sstevel@tonic-gate * wake any sleeping poller, then remove the polldat from the driver. 21187c478bd9Sstevel@tonic-gate * The routine is called with ps_pcachelock held. 21197c478bd9Sstevel@tonic-gate */ 21207c478bd9Sstevel@tonic-gate void 21217c478bd9Sstevel@tonic-gate pcache_clean_entry(pollstate_t *ps, int fd) 21227c478bd9Sstevel@tonic-gate { 21237c478bd9Sstevel@tonic-gate pollcache_t *pcp; 21247c478bd9Sstevel@tonic-gate polldat_t *pdp; 21257c478bd9Sstevel@tonic-gate int i; 21267c478bd9Sstevel@tonic-gate 21277c478bd9Sstevel@tonic-gate ASSERT(ps != NULL); 21287c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&ps->ps_lock)); 21297c478bd9Sstevel@tonic-gate pcp = ps->ps_pcache; 21307c478bd9Sstevel@tonic-gate ASSERT(pcp); 21317c478bd9Sstevel@tonic-gate pdp = pcache_lookup_fd(pcp, fd); 21327c478bd9Sstevel@tonic-gate ASSERT(pdp != NULL); 21337c478bd9Sstevel@tonic-gate /* 21347c478bd9Sstevel@tonic-gate * the corresponding fpollinfo in fi_list has been removed by 21357c478bd9Sstevel@tonic-gate * a close on this fd. Reset the cached fp ptr here. 21367c478bd9Sstevel@tonic-gate */ 21377c478bd9Sstevel@tonic-gate pdp->pd_fp = NULL; 21387c478bd9Sstevel@tonic-gate /* 21397c478bd9Sstevel@tonic-gate * XXX - This routine also touches data in pcacheset struct. 21407c478bd9Sstevel@tonic-gate * 21417c478bd9Sstevel@tonic-gate * set the event in cached poll lists to POLLCLOSED. This invalidate 21427c478bd9Sstevel@tonic-gate * the cached poll fd entry in that poll list, which will force a 21437c478bd9Sstevel@tonic-gate * removal of this cached entry in next poll(). The cleanup is done 21447c478bd9Sstevel@tonic-gate * at the removal time. 21457c478bd9Sstevel@tonic-gate */ 21467c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_ref != NULL); 21477c478bd9Sstevel@tonic-gate for (i = 0; i < ps->ps_nsets; i++) { 21487c478bd9Sstevel@tonic-gate xref_t *refp; 21497c478bd9Sstevel@tonic-gate pollcacheset_t *pcsp; 21507c478bd9Sstevel@tonic-gate 21517c478bd9Sstevel@tonic-gate refp = &pdp->pd_ref[i]; 21527c478bd9Sstevel@tonic-gate if (refp->xf_refcnt) { 21537c478bd9Sstevel@tonic-gate ASSERT(refp->xf_position >= 0); 21547c478bd9Sstevel@tonic-gate pcsp = &ps->ps_pcacheset[i]; 21557c478bd9Sstevel@tonic-gate if (refp->xf_refcnt == 1) { 21567c478bd9Sstevel@tonic-gate pcsp->pcs_pollfd[refp->xf_position].events = 21577c478bd9Sstevel@tonic-gate (short)POLLCLOSED; 21587c478bd9Sstevel@tonic-gate } 21597c478bd9Sstevel@tonic-gate if (refp->xf_refcnt > 1) { 21607c478bd9Sstevel@tonic-gate int j; 21617c478bd9Sstevel@tonic-gate /* 21627c478bd9Sstevel@tonic-gate * mark every matching entry in pcs_pollfd 21637c478bd9Sstevel@tonic-gate */ 21647c478bd9Sstevel@tonic-gate for (j = refp->xf_position; 21657c478bd9Sstevel@tonic-gate j < pcsp->pcs_nfds; j++) { 21667c478bd9Sstevel@tonic-gate if (pcsp->pcs_pollfd[j].fd == fd) { 21677c478bd9Sstevel@tonic-gate pcsp->pcs_pollfd[j].events = 21687c478bd9Sstevel@tonic-gate (short)POLLCLOSED; 21697c478bd9Sstevel@tonic-gate } 21707c478bd9Sstevel@tonic-gate } 21717c478bd9Sstevel@tonic-gate } 21727c478bd9Sstevel@tonic-gate } 21737c478bd9Sstevel@tonic-gate } 21747c478bd9Sstevel@tonic-gate if (pdp->pd_php) { 21757c478bd9Sstevel@tonic-gate pollwakeup(pdp->pd_php, POLLHUP); 21767c478bd9Sstevel@tonic-gate pollhead_delete(pdp->pd_php, pdp); 21777c478bd9Sstevel@tonic-gate pdp->pd_php = NULL; 21787c478bd9Sstevel@tonic-gate } 21797c478bd9Sstevel@tonic-gate } 21807c478bd9Sstevel@tonic-gate 21817c478bd9Sstevel@tonic-gate /* 21827c478bd9Sstevel@tonic-gate * This is the first time this thread has ever polled, 21837c478bd9Sstevel@tonic-gate * so we have to create its pollstate structure. 21847c478bd9Sstevel@tonic-gate * This will persist for the life of the thread, 21857c478bd9Sstevel@tonic-gate * until it calls pollcleanup(). 21867c478bd9Sstevel@tonic-gate */ 21877c478bd9Sstevel@tonic-gate pollstate_t * 21887c478bd9Sstevel@tonic-gate pollstate_create(void) 21897c478bd9Sstevel@tonic-gate { 21907c478bd9Sstevel@tonic-gate pollstate_t *ps; 21917c478bd9Sstevel@tonic-gate 21927c478bd9Sstevel@tonic-gate ps = kmem_zalloc(sizeof (pollstate_t), KM_SLEEP); 21937c478bd9Sstevel@tonic-gate ps->ps_nsets = POLLFDSETS; 21947c478bd9Sstevel@tonic-gate ps->ps_pcacheset = pcacheset_create(ps->ps_nsets); 21957c478bd9Sstevel@tonic-gate return (ps); 21967c478bd9Sstevel@tonic-gate } 21977c478bd9Sstevel@tonic-gate 21987c478bd9Sstevel@tonic-gate void 21997c478bd9Sstevel@tonic-gate pollstate_destroy(pollstate_t *ps) 22007c478bd9Sstevel@tonic-gate { 22017c478bd9Sstevel@tonic-gate if (ps->ps_pollfd != NULL) { 22027c478bd9Sstevel@tonic-gate kmem_free(ps->ps_pollfd, ps->ps_nfds * sizeof (pollfd_t)); 22037c478bd9Sstevel@tonic-gate ps->ps_pollfd = NULL; 22047c478bd9Sstevel@tonic-gate } 22057c478bd9Sstevel@tonic-gate if (ps->ps_pcache != NULL) { 22067c478bd9Sstevel@tonic-gate pcache_destroy(ps->ps_pcache); 22077c478bd9Sstevel@tonic-gate ps->ps_pcache = NULL; 22087c478bd9Sstevel@tonic-gate } 22097c478bd9Sstevel@tonic-gate pcacheset_destroy(ps->ps_pcacheset, ps->ps_nsets); 22107c478bd9Sstevel@tonic-gate ps->ps_pcacheset = NULL; 22117c478bd9Sstevel@tonic-gate if (ps->ps_dpbuf != NULL) { 22127c478bd9Sstevel@tonic-gate kmem_free(ps->ps_dpbuf, ps->ps_dpbufsize * sizeof (pollfd_t)); 22137c478bd9Sstevel@tonic-gate ps->ps_dpbuf = NULL; 22147c478bd9Sstevel@tonic-gate } 22157c478bd9Sstevel@tonic-gate mutex_destroy(&ps->ps_lock); 22167c478bd9Sstevel@tonic-gate kmem_free(ps, sizeof (pollstate_t)); 22177c478bd9Sstevel@tonic-gate } 22187c478bd9Sstevel@tonic-gate 22197c478bd9Sstevel@tonic-gate /* 22207c478bd9Sstevel@tonic-gate * We are holding the appropriate uf_lock entering this routine. 22217c478bd9Sstevel@tonic-gate * Bump up the ps_busy count to prevent the thread from exiting. 22227c478bd9Sstevel@tonic-gate */ 22237c478bd9Sstevel@tonic-gate void 22247c478bd9Sstevel@tonic-gate pollblockexit(fpollinfo_t *fpip) 22257c478bd9Sstevel@tonic-gate { 22267c478bd9Sstevel@tonic-gate for (; fpip; fpip = fpip->fp_next) { 22277c478bd9Sstevel@tonic-gate pollcache_t *pcp = fpip->fp_thread->t_pollstate->ps_pcache; 22287c478bd9Sstevel@tonic-gate 22297c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_no_exit); 22307c478bd9Sstevel@tonic-gate pcp->pc_busy++; /* prevents exit()'s */ 22317c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_no_exit); 22327c478bd9Sstevel@tonic-gate } 22337c478bd9Sstevel@tonic-gate } 22347c478bd9Sstevel@tonic-gate 22357c478bd9Sstevel@tonic-gate /* 22367c478bd9Sstevel@tonic-gate * Complete phase 2 of cached poll fd cleanup. Call pcache_clean_entry to mark 22377c478bd9Sstevel@tonic-gate * the pcacheset events field POLLCLOSED to force the next poll() to remove 22387c478bd9Sstevel@tonic-gate * this cache entry. We can't clean the polldat entry clean up here because 22397c478bd9Sstevel@tonic-gate * lwp block in poll() needs the info to return. Wakeup anyone blocked in 22407c478bd9Sstevel@tonic-gate * poll and let exiting lwp go. No lock is help upon entry. So it's OK for 22417c478bd9Sstevel@tonic-gate * pcache_clean_entry to call pollwakeup(). 22427c478bd9Sstevel@tonic-gate */ 22437c478bd9Sstevel@tonic-gate void 22447c478bd9Sstevel@tonic-gate pollcacheclean(fpollinfo_t *fip, int fd) 22457c478bd9Sstevel@tonic-gate { 22467c478bd9Sstevel@tonic-gate struct fpollinfo *fpip, *fpip2; 22477c478bd9Sstevel@tonic-gate 22487c478bd9Sstevel@tonic-gate fpip = fip; 22497c478bd9Sstevel@tonic-gate while (fpip) { 22507c478bd9Sstevel@tonic-gate pollstate_t *ps = fpip->fp_thread->t_pollstate; 22517c478bd9Sstevel@tonic-gate pollcache_t *pcp = ps->ps_pcache; 22527c478bd9Sstevel@tonic-gate 22537c478bd9Sstevel@tonic-gate mutex_enter(&ps->ps_lock); 22547c478bd9Sstevel@tonic-gate pcache_clean_entry(ps, fd); 22557c478bd9Sstevel@tonic-gate mutex_exit(&ps->ps_lock); 22567c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_no_exit); 22577c478bd9Sstevel@tonic-gate pcp->pc_busy--; 22587c478bd9Sstevel@tonic-gate if (pcp->pc_busy == 0) { 22597c478bd9Sstevel@tonic-gate /* 22607c478bd9Sstevel@tonic-gate * Wakeup the thread waiting in 22617c478bd9Sstevel@tonic-gate * thread_exit(). 22627c478bd9Sstevel@tonic-gate */ 22637c478bd9Sstevel@tonic-gate cv_signal(&pcp->pc_busy_cv); 22647c478bd9Sstevel@tonic-gate } 22657c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_no_exit); 22667c478bd9Sstevel@tonic-gate 22677c478bd9Sstevel@tonic-gate fpip2 = fpip; 22687c478bd9Sstevel@tonic-gate fpip = fpip->fp_next; 22697c478bd9Sstevel@tonic-gate kmem_free(fpip2, sizeof (fpollinfo_t)); 22707c478bd9Sstevel@tonic-gate } 22717c478bd9Sstevel@tonic-gate } 22727c478bd9Sstevel@tonic-gate 22737c478bd9Sstevel@tonic-gate /* 22747c478bd9Sstevel@tonic-gate * one of the cache line's counter is wrapping around. Reset all cache line 22757c478bd9Sstevel@tonic-gate * counters to zero except one. This is simplistic, but probably works 22767c478bd9Sstevel@tonic-gate * effectively. 22777c478bd9Sstevel@tonic-gate */ 22787c478bd9Sstevel@tonic-gate void 22797c478bd9Sstevel@tonic-gate pcacheset_reset_count(pollstate_t *ps, int index) 22807c478bd9Sstevel@tonic-gate { 22817c478bd9Sstevel@tonic-gate int i; 22827c478bd9Sstevel@tonic-gate 22837c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&ps->ps_lock)); 22847c478bd9Sstevel@tonic-gate for (i = 0; i < ps->ps_nsets; i++) { 22857c478bd9Sstevel@tonic-gate if (ps->ps_pcacheset[i].pcs_pollfd != NULL) { 22867c478bd9Sstevel@tonic-gate ps->ps_pcacheset[i].pcs_count = 0; 22877c478bd9Sstevel@tonic-gate } 22887c478bd9Sstevel@tonic-gate } 22897c478bd9Sstevel@tonic-gate ps->ps_pcacheset[index].pcs_count = 1; 22907c478bd9Sstevel@tonic-gate } 22917c478bd9Sstevel@tonic-gate 22927c478bd9Sstevel@tonic-gate /* 22937c478bd9Sstevel@tonic-gate * this routine implements poll cache list replacement policy. 22947c478bd9Sstevel@tonic-gate * It is currently choose the "least used". 22957c478bd9Sstevel@tonic-gate */ 22967c478bd9Sstevel@tonic-gate int 22977c478bd9Sstevel@tonic-gate pcacheset_replace(pollstate_t *ps) 22987c478bd9Sstevel@tonic-gate { 22997c478bd9Sstevel@tonic-gate int i; 23007c478bd9Sstevel@tonic-gate int index = 0; 23017c478bd9Sstevel@tonic-gate 23027c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&ps->ps_lock)); 23037c478bd9Sstevel@tonic-gate for (i = 1; i < ps->ps_nsets; i++) { 23047c478bd9Sstevel@tonic-gate if (ps->ps_pcacheset[index].pcs_count > 23057c478bd9Sstevel@tonic-gate ps->ps_pcacheset[i].pcs_count) { 23067c478bd9Sstevel@tonic-gate index = i; 23077c478bd9Sstevel@tonic-gate } 23087c478bd9Sstevel@tonic-gate } 23097c478bd9Sstevel@tonic-gate ps->ps_pcacheset[index].pcs_count = 0; 23107c478bd9Sstevel@tonic-gate return (index); 23117c478bd9Sstevel@tonic-gate } 23127c478bd9Sstevel@tonic-gate 23137c478bd9Sstevel@tonic-gate /* 23147c478bd9Sstevel@tonic-gate * this routine is called by strclose to remove remaining polldat struct on 23157c478bd9Sstevel@tonic-gate * the pollhead list of the device being closed. There are two reasons as why 23167c478bd9Sstevel@tonic-gate * the polldat structures still remain on the pollhead list: 23177c478bd9Sstevel@tonic-gate * 23187c478bd9Sstevel@tonic-gate * (1) The layered device(e.g.the console driver). 23197c478bd9Sstevel@tonic-gate * In this case, the existence of a polldat implies that the thread putting 23207c478bd9Sstevel@tonic-gate * the polldat on this list has not exited yet. Before the thread exits, it 23217c478bd9Sstevel@tonic-gate * will have to hold this pollhead lock to remove the polldat. So holding the 23227c478bd9Sstevel@tonic-gate * pollhead lock here effectively prevents the thread which put the polldat 23237c478bd9Sstevel@tonic-gate * on this list from exiting. 23247c478bd9Sstevel@tonic-gate * 23257c478bd9Sstevel@tonic-gate * (2) /dev/poll. 23267c478bd9Sstevel@tonic-gate * When a polled fd is cached in /dev/poll, its polldat will remain on the 23277c478bd9Sstevel@tonic-gate * pollhead list if the process has not done a POLLREMOVE before closing the 23287c478bd9Sstevel@tonic-gate * polled fd. We just unlink it here. 23297c478bd9Sstevel@tonic-gate */ 23307c478bd9Sstevel@tonic-gate void 23317c478bd9Sstevel@tonic-gate pollhead_clean(pollhead_t *php) 23327c478bd9Sstevel@tonic-gate { 23337c478bd9Sstevel@tonic-gate polldat_t *pdp; 23347c478bd9Sstevel@tonic-gate 23357c478bd9Sstevel@tonic-gate /* 23367c478bd9Sstevel@tonic-gate * In case(1), while we must prevent the thread in question from 23377c478bd9Sstevel@tonic-gate * exiting, we must also obey the proper locking order, i.e. 23387c478bd9Sstevel@tonic-gate * (ps_lock -> phlock). 23397c478bd9Sstevel@tonic-gate */ 23407c478bd9Sstevel@tonic-gate PH_ENTER(php); 23417c478bd9Sstevel@tonic-gate while (php->ph_list != NULL) { 23427c478bd9Sstevel@tonic-gate pollstate_t *ps; 23437c478bd9Sstevel@tonic-gate pollcache_t *pcp; 23447c478bd9Sstevel@tonic-gate 23457c478bd9Sstevel@tonic-gate pdp = php->ph_list; 23467c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_php == php); 23477c478bd9Sstevel@tonic-gate if (pdp->pd_thread == NULL) { 23487c478bd9Sstevel@tonic-gate /* 23497c478bd9Sstevel@tonic-gate * This is case(2). Since the ph_lock is sufficient 23507c478bd9Sstevel@tonic-gate * to synchronize this lwp with any other /dev/poll 23517c478bd9Sstevel@tonic-gate * lwp, just unlink the polldat. 23527c478bd9Sstevel@tonic-gate */ 23537c478bd9Sstevel@tonic-gate php->ph_list = pdp->pd_next; 23547c478bd9Sstevel@tonic-gate pdp->pd_php = NULL; 23557c478bd9Sstevel@tonic-gate pdp->pd_next = NULL; 23567c478bd9Sstevel@tonic-gate continue; 23577c478bd9Sstevel@tonic-gate } 23587c478bd9Sstevel@tonic-gate ps = pdp->pd_thread->t_pollstate; 23597c478bd9Sstevel@tonic-gate ASSERT(ps != NULL); 23607c478bd9Sstevel@tonic-gate pcp = pdp->pd_pcache; 23617c478bd9Sstevel@tonic-gate ASSERT(pcp != NULL); 23627c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_no_exit); 23637c478bd9Sstevel@tonic-gate pcp->pc_busy++; /* prevents exit()'s */ 23647c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_no_exit); 23657c478bd9Sstevel@tonic-gate /* 23667c478bd9Sstevel@tonic-gate * Now get the locks in proper order to avoid deadlock. 23677c478bd9Sstevel@tonic-gate */ 23687c478bd9Sstevel@tonic-gate PH_EXIT(php); 23697c478bd9Sstevel@tonic-gate mutex_enter(&ps->ps_lock); 23707c478bd9Sstevel@tonic-gate /* 23717c478bd9Sstevel@tonic-gate * while we dropped the pollhead lock, the element could be 23727c478bd9Sstevel@tonic-gate * taken off the list already. 23737c478bd9Sstevel@tonic-gate */ 23747c478bd9Sstevel@tonic-gate PH_ENTER(php); 23757c478bd9Sstevel@tonic-gate if (pdp->pd_php == php) { 23767c478bd9Sstevel@tonic-gate ASSERT(pdp == php->ph_list); 23777c478bd9Sstevel@tonic-gate php->ph_list = pdp->pd_next; 23787c478bd9Sstevel@tonic-gate pdp->pd_php = NULL; 23797c478bd9Sstevel@tonic-gate pdp->pd_next = NULL; 23807c478bd9Sstevel@tonic-gate } 23817c478bd9Sstevel@tonic-gate PH_EXIT(php); 23827c478bd9Sstevel@tonic-gate mutex_exit(&ps->ps_lock); 23837c478bd9Sstevel@tonic-gate mutex_enter(&pcp->pc_no_exit); 23847c478bd9Sstevel@tonic-gate pcp->pc_busy--; 23857c478bd9Sstevel@tonic-gate if (pcp->pc_busy == 0) { 23867c478bd9Sstevel@tonic-gate /* 23877c478bd9Sstevel@tonic-gate * Wakeup the thread waiting in 23887c478bd9Sstevel@tonic-gate * thread_exit(). 23897c478bd9Sstevel@tonic-gate */ 23907c478bd9Sstevel@tonic-gate cv_signal(&pcp->pc_busy_cv); 23917c478bd9Sstevel@tonic-gate } 23927c478bd9Sstevel@tonic-gate mutex_exit(&pcp->pc_no_exit); 23937c478bd9Sstevel@tonic-gate PH_ENTER(php); 23947c478bd9Sstevel@tonic-gate } 23957c478bd9Sstevel@tonic-gate PH_EXIT(php); 23967c478bd9Sstevel@tonic-gate } 23977c478bd9Sstevel@tonic-gate 23987c478bd9Sstevel@tonic-gate /* 23997c478bd9Sstevel@tonic-gate * The remove_list is called to cleanup a partially cached 'current' list or 24007c478bd9Sstevel@tonic-gate * to remove a partial list which is no longer cached. The flag value of 1 24017c478bd9Sstevel@tonic-gate * indicates the second case. 24027c478bd9Sstevel@tonic-gate */ 24037c478bd9Sstevel@tonic-gate void 24047c478bd9Sstevel@tonic-gate pcacheset_remove_list(pollstate_t *ps, pollfd_t *pollfdp, int start, int end, 24057c478bd9Sstevel@tonic-gate int cacheindex, int flag) 24067c478bd9Sstevel@tonic-gate { 24077c478bd9Sstevel@tonic-gate int i; 24087c478bd9Sstevel@tonic-gate 24097c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&ps->ps_lock)); 24107c478bd9Sstevel@tonic-gate for (i = start; i < end; i++) { 24117c478bd9Sstevel@tonic-gate if ((pollfdp[i].fd >= 0) && 24127c478bd9Sstevel@tonic-gate (flag || !(pollfdp[i].revents & POLLNVAL))) { 24137c478bd9Sstevel@tonic-gate if (pcache_delete_fd(ps, pollfdp[i].fd, i, cacheindex, 24147c478bd9Sstevel@tonic-gate (uint_t)pollfdp[i].events)) { 24157c478bd9Sstevel@tonic-gate int j; 24167c478bd9Sstevel@tonic-gate int fd = pollfdp[i].fd; 24177c478bd9Sstevel@tonic-gate 24187c478bd9Sstevel@tonic-gate for (j = i + 1; j < end; j++) { 24197c478bd9Sstevel@tonic-gate if (pollfdp[j].fd == fd) { 24207c478bd9Sstevel@tonic-gate pcache_update_xref( 24217c478bd9Sstevel@tonic-gate ps->ps_pcache, fd, 24227c478bd9Sstevel@tonic-gate (ssize_t)j, cacheindex); 24237c478bd9Sstevel@tonic-gate break; 24247c478bd9Sstevel@tonic-gate } 24257c478bd9Sstevel@tonic-gate } 24267c478bd9Sstevel@tonic-gate ASSERT(j <= end); 24277c478bd9Sstevel@tonic-gate } 24287c478bd9Sstevel@tonic-gate } 24297c478bd9Sstevel@tonic-gate } 24307c478bd9Sstevel@tonic-gate } 24317c478bd9Sstevel@tonic-gate 24327c478bd9Sstevel@tonic-gate #ifdef DEBUG 24337c478bd9Sstevel@tonic-gate 24347c478bd9Sstevel@tonic-gate #include<sys/strsubr.h> 24357c478bd9Sstevel@tonic-gate /* 24367c478bd9Sstevel@tonic-gate * make sure curthread is not on anyone's pollhead list any more. 24377c478bd9Sstevel@tonic-gate */ 24387c478bd9Sstevel@tonic-gate static void 24397c478bd9Sstevel@tonic-gate pollcheckphlist() 24407c478bd9Sstevel@tonic-gate { 24417c478bd9Sstevel@tonic-gate int i; 24427c478bd9Sstevel@tonic-gate file_t *fp; 24437c478bd9Sstevel@tonic-gate uf_entry_t *ufp; 24447c478bd9Sstevel@tonic-gate uf_info_t *fip = P_FINFO(curproc); 24457c478bd9Sstevel@tonic-gate struct stdata *stp; 24467c478bd9Sstevel@tonic-gate polldat_t *pdp; 24477c478bd9Sstevel@tonic-gate 24487c478bd9Sstevel@tonic-gate mutex_enter(&fip->fi_lock); 24497c478bd9Sstevel@tonic-gate for (i = 0; i < fip->fi_nfiles; i++) { 24507c478bd9Sstevel@tonic-gate UF_ENTER(ufp, fip, i); 24517c478bd9Sstevel@tonic-gate if ((fp = ufp->uf_file) != NULL) { 24527c478bd9Sstevel@tonic-gate if ((stp = fp->f_vnode->v_stream) != NULL) { 24537c478bd9Sstevel@tonic-gate PH_ENTER(&stp->sd_pollist); 24547c478bd9Sstevel@tonic-gate pdp = stp->sd_pollist.ph_list; 24557c478bd9Sstevel@tonic-gate while (pdp) { 24567c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_thread != curthread); 24577c478bd9Sstevel@tonic-gate pdp = pdp->pd_next; 24587c478bd9Sstevel@tonic-gate } 24597c478bd9Sstevel@tonic-gate PH_EXIT(&stp->sd_pollist); 24607c478bd9Sstevel@tonic-gate } 24617c478bd9Sstevel@tonic-gate } 24627c478bd9Sstevel@tonic-gate UF_EXIT(ufp); 24637c478bd9Sstevel@tonic-gate } 24647c478bd9Sstevel@tonic-gate mutex_exit(&fip->fi_lock); 24657c478bd9Sstevel@tonic-gate } 24667c478bd9Sstevel@tonic-gate 24677c478bd9Sstevel@tonic-gate /* 24687c478bd9Sstevel@tonic-gate * for resolved set poll list, the xref info in the pcache should be 24697c478bd9Sstevel@tonic-gate * consistent with this poll list. 24707c478bd9Sstevel@tonic-gate */ 24717c478bd9Sstevel@tonic-gate static int 24727c478bd9Sstevel@tonic-gate pollcheckxref(pollstate_t *ps, int cacheindex) 24737c478bd9Sstevel@tonic-gate { 24747c478bd9Sstevel@tonic-gate pollfd_t *pollfdp = ps->ps_pcacheset[cacheindex].pcs_pollfd; 24757c478bd9Sstevel@tonic-gate pollcache_t *pcp = ps->ps_pcache; 24767c478bd9Sstevel@tonic-gate polldat_t *pdp; 24777c478bd9Sstevel@tonic-gate int i; 24787c478bd9Sstevel@tonic-gate xref_t *refp; 24797c478bd9Sstevel@tonic-gate 24807c478bd9Sstevel@tonic-gate for (i = 0; i < ps->ps_pcacheset[cacheindex].pcs_nfds; i++) { 24817c478bd9Sstevel@tonic-gate if (pollfdp[i].fd < 0) { 24827c478bd9Sstevel@tonic-gate continue; 24837c478bd9Sstevel@tonic-gate } 24847c478bd9Sstevel@tonic-gate pdp = pcache_lookup_fd(pcp, pollfdp[i].fd); 24857c478bd9Sstevel@tonic-gate ASSERT(pdp != NULL); 24867c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_ref != NULL); 24877c478bd9Sstevel@tonic-gate refp = &pdp->pd_ref[cacheindex]; 24887c478bd9Sstevel@tonic-gate if (refp->xf_position >= 0) { 24897c478bd9Sstevel@tonic-gate ASSERT(refp->xf_refcnt >= 1); 24907c478bd9Sstevel@tonic-gate ASSERT(pollfdp[refp->xf_position].fd == pdp->pd_fd); 24917c478bd9Sstevel@tonic-gate if (refp->xf_refcnt > 1) { 24927c478bd9Sstevel@tonic-gate int j; 24937c478bd9Sstevel@tonic-gate int count = 0; 24947c478bd9Sstevel@tonic-gate 24957c478bd9Sstevel@tonic-gate for (j = refp->xf_position; 24967c478bd9Sstevel@tonic-gate j < ps->ps_pcacheset[cacheindex].pcs_nfds; 24977c478bd9Sstevel@tonic-gate j++) { 24987c478bd9Sstevel@tonic-gate if (pollfdp[j].fd == pdp->pd_fd) { 24997c478bd9Sstevel@tonic-gate count++; 25007c478bd9Sstevel@tonic-gate } 25017c478bd9Sstevel@tonic-gate } 25027c478bd9Sstevel@tonic-gate ASSERT(count == refp->xf_refcnt); 25037c478bd9Sstevel@tonic-gate } 25047c478bd9Sstevel@tonic-gate } 25057c478bd9Sstevel@tonic-gate } 25067c478bd9Sstevel@tonic-gate return (1); 25077c478bd9Sstevel@tonic-gate } 25087c478bd9Sstevel@tonic-gate 25097c478bd9Sstevel@tonic-gate /* 25107c478bd9Sstevel@tonic-gate * For every cached pollfd, its polldat struct should be consistent with 25117c478bd9Sstevel@tonic-gate * what is in the pcacheset lists. 25127c478bd9Sstevel@tonic-gate */ 25137c478bd9Sstevel@tonic-gate static void 25147c478bd9Sstevel@tonic-gate checkpolldat(pollstate_t *ps) 25157c478bd9Sstevel@tonic-gate { 25167c478bd9Sstevel@tonic-gate pollcache_t *pcp = ps->ps_pcache; 25177c478bd9Sstevel@tonic-gate polldat_t **hashtbl; 25187c478bd9Sstevel@tonic-gate int i; 25197c478bd9Sstevel@tonic-gate 25207c478bd9Sstevel@tonic-gate hashtbl = pcp->pc_hash; 25217c478bd9Sstevel@tonic-gate for (i = 0; i < pcp->pc_hashsize; i++) { 25227c478bd9Sstevel@tonic-gate polldat_t *pdp; 25237c478bd9Sstevel@tonic-gate 25247c478bd9Sstevel@tonic-gate for (pdp = hashtbl[i]; pdp; pdp = pdp->pd_hashnext) { 25257c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_ref != NULL); 25267c478bd9Sstevel@tonic-gate if (pdp->pd_count > 0) { 25277c478bd9Sstevel@tonic-gate xref_t *refp; 25287c478bd9Sstevel@tonic-gate int j; 25297c478bd9Sstevel@tonic-gate pollcacheset_t *pcsp; 25307c478bd9Sstevel@tonic-gate pollfd_t *pollfd; 25317c478bd9Sstevel@tonic-gate 25327c478bd9Sstevel@tonic-gate for (j = 0; j < ps->ps_nsets; j++) { 25337c478bd9Sstevel@tonic-gate refp = &pdp->pd_ref[j]; 25347c478bd9Sstevel@tonic-gate if (refp->xf_refcnt > 0) { 25357c478bd9Sstevel@tonic-gate pcsp = &ps->ps_pcacheset[j]; 25367c478bd9Sstevel@tonic-gate ASSERT(refp->xf_position < pcsp->pcs_nfds); 25377c478bd9Sstevel@tonic-gate pollfd = pcsp->pcs_pollfd; 25387c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_fd == pollfd[refp->xf_position].fd); 25397c478bd9Sstevel@tonic-gate } 25407c478bd9Sstevel@tonic-gate } 25417c478bd9Sstevel@tonic-gate } 25427c478bd9Sstevel@tonic-gate } 25437c478bd9Sstevel@tonic-gate } 25447c478bd9Sstevel@tonic-gate } 25457c478bd9Sstevel@tonic-gate 25467c478bd9Sstevel@tonic-gate /* 25477c478bd9Sstevel@tonic-gate * every wfd element on ph_list must have a corresponding fpollinfo on the 25487c478bd9Sstevel@tonic-gate * uf_fpollinfo list. This is a variation of infpollinfo() w/o holding locks. 25497c478bd9Sstevel@tonic-gate */ 25507c478bd9Sstevel@tonic-gate void 25517c478bd9Sstevel@tonic-gate checkwfdlist(vnode_t *vp, fpollinfo_t *fpip) 25527c478bd9Sstevel@tonic-gate { 25537c478bd9Sstevel@tonic-gate stdata_t *stp; 25547c478bd9Sstevel@tonic-gate polldat_t *pdp; 25557c478bd9Sstevel@tonic-gate fpollinfo_t *fpip2; 25567c478bd9Sstevel@tonic-gate 25577c478bd9Sstevel@tonic-gate if ((stp = vp->v_stream) == NULL) { 25587c478bd9Sstevel@tonic-gate return; 25597c478bd9Sstevel@tonic-gate } 25607c478bd9Sstevel@tonic-gate PH_ENTER(&stp->sd_pollist); 25617c478bd9Sstevel@tonic-gate for (pdp = stp->sd_pollist.ph_list; pdp; pdp = pdp->pd_next) { 25627c478bd9Sstevel@tonic-gate if (pdp->pd_thread->t_procp == curthread->t_procp) { 25637c478bd9Sstevel@tonic-gate for (fpip2 = fpip; fpip2; fpip2 = fpip2->fp_next) { 25647c478bd9Sstevel@tonic-gate if (pdp->pd_thread == fpip2->fp_thread) { 25657c478bd9Sstevel@tonic-gate break; 25667c478bd9Sstevel@tonic-gate } 25677c478bd9Sstevel@tonic-gate } 25687c478bd9Sstevel@tonic-gate ASSERT(fpip2 != NULL); 25697c478bd9Sstevel@tonic-gate } 25707c478bd9Sstevel@tonic-gate } 25717c478bd9Sstevel@tonic-gate PH_EXIT(&stp->sd_pollist); 25727c478bd9Sstevel@tonic-gate } 25737c478bd9Sstevel@tonic-gate 25747c478bd9Sstevel@tonic-gate /* 25757c478bd9Sstevel@tonic-gate * For each cached fd whose bit is not set in bitmap, its revents field in 25767c478bd9Sstevel@tonic-gate * current poll list should be 0. 25777c478bd9Sstevel@tonic-gate */ 25787c478bd9Sstevel@tonic-gate static int 25797c478bd9Sstevel@tonic-gate pollcheckrevents(pollstate_t *ps, int begin, int end, int cacheindex) 25807c478bd9Sstevel@tonic-gate { 25817c478bd9Sstevel@tonic-gate pollcache_t *pcp = ps->ps_pcache; 25827c478bd9Sstevel@tonic-gate pollfd_t *pollfdp = ps->ps_pollfd; 25837c478bd9Sstevel@tonic-gate int i; 25847c478bd9Sstevel@tonic-gate 25857c478bd9Sstevel@tonic-gate for (i = begin; i < end; i++) { 25867c478bd9Sstevel@tonic-gate polldat_t *pdp; 25877c478bd9Sstevel@tonic-gate 25887c478bd9Sstevel@tonic-gate ASSERT(!BT_TEST(pcp->pc_bitmap, i)); 25897c478bd9Sstevel@tonic-gate pdp = pcache_lookup_fd(pcp, i); 25907c478bd9Sstevel@tonic-gate if (pdp && pdp->pd_fp != NULL) { 25917c478bd9Sstevel@tonic-gate xref_t *refp; 25927c478bd9Sstevel@tonic-gate int entry; 25937c478bd9Sstevel@tonic-gate 25947c478bd9Sstevel@tonic-gate ASSERT(pdp->pd_ref != NULL); 25957c478bd9Sstevel@tonic-gate refp = &pdp->pd_ref[cacheindex]; 25967c478bd9Sstevel@tonic-gate if (refp->xf_refcnt == 0) { 25977c478bd9Sstevel@tonic-gate continue; 25987c478bd9Sstevel@tonic-gate } 25997c478bd9Sstevel@tonic-gate entry = refp->xf_position; 26007c478bd9Sstevel@tonic-gate ASSERT(entry >= 0); 26017c478bd9Sstevel@tonic-gate ASSERT(pollfdp[entry].revents == 0); 26027c478bd9Sstevel@tonic-gate if (refp->xf_refcnt > 1) { 26037c478bd9Sstevel@tonic-gate int j; 26047c478bd9Sstevel@tonic-gate 26057c478bd9Sstevel@tonic-gate for (j = entry + 1; j < ps->ps_nfds; j++) { 26067c478bd9Sstevel@tonic-gate if (pollfdp[j].fd == i) { 26077c478bd9Sstevel@tonic-gate ASSERT(pollfdp[j].revents == 0); 26087c478bd9Sstevel@tonic-gate } 26097c478bd9Sstevel@tonic-gate } 26107c478bd9Sstevel@tonic-gate } 26117c478bd9Sstevel@tonic-gate } 26127c478bd9Sstevel@tonic-gate } 26137c478bd9Sstevel@tonic-gate return (1); 26147c478bd9Sstevel@tonic-gate } 26157c478bd9Sstevel@tonic-gate 26167c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 26177c478bd9Sstevel@tonic-gate 26187c478bd9Sstevel@tonic-gate pollcache_t * 26197c478bd9Sstevel@tonic-gate pcache_alloc() 26207c478bd9Sstevel@tonic-gate { 26217c478bd9Sstevel@tonic-gate return (kmem_zalloc(sizeof (pollcache_t), KM_SLEEP)); 26227c478bd9Sstevel@tonic-gate } 26237c478bd9Sstevel@tonic-gate 26247c478bd9Sstevel@tonic-gate void 26257c478bd9Sstevel@tonic-gate pcache_create(pollcache_t *pcp, nfds_t nfds) 26267c478bd9Sstevel@tonic-gate { 26277c478bd9Sstevel@tonic-gate size_t mapsize; 26287c478bd9Sstevel@tonic-gate 26297c478bd9Sstevel@tonic-gate /* 26307c478bd9Sstevel@tonic-gate * allocate enough bits for the poll fd list 26317c478bd9Sstevel@tonic-gate */ 26327c478bd9Sstevel@tonic-gate if ((mapsize = POLLMAPCHUNK) <= nfds) { 26337c478bd9Sstevel@tonic-gate mapsize = (nfds + POLLMAPCHUNK - 1) & ~(POLLMAPCHUNK - 1); 26347c478bd9Sstevel@tonic-gate } 26357c478bd9Sstevel@tonic-gate pcp->pc_bitmap = kmem_zalloc((mapsize / BT_NBIPUL) * sizeof (ulong_t), 26367c478bd9Sstevel@tonic-gate KM_SLEEP); 26377c478bd9Sstevel@tonic-gate pcp->pc_mapsize = mapsize; 26387c478bd9Sstevel@tonic-gate /* 26397c478bd9Sstevel@tonic-gate * The hash size is at least POLLHASHCHUNKSZ. If user polls a large 26407c478bd9Sstevel@tonic-gate * number of fd to start with, allocate a bigger hash table (to the 26417c478bd9Sstevel@tonic-gate * nearest multiple of POLLHASHCHUNKSZ) because dynamically growing a 26427c478bd9Sstevel@tonic-gate * hash table is expensive. 26437c478bd9Sstevel@tonic-gate */ 26447c478bd9Sstevel@tonic-gate if (nfds < POLLHASHCHUNKSZ) { 26457c478bd9Sstevel@tonic-gate pcp->pc_hashsize = POLLHASHCHUNKSZ; 26467c478bd9Sstevel@tonic-gate } else { 26477c478bd9Sstevel@tonic-gate pcp->pc_hashsize = (nfds + POLLHASHCHUNKSZ - 1) & 26487c478bd9Sstevel@tonic-gate ~(POLLHASHCHUNKSZ - 1); 26497c478bd9Sstevel@tonic-gate } 26507c478bd9Sstevel@tonic-gate pcp->pc_hash = kmem_zalloc(pcp->pc_hashsize * sizeof (polldat_t *), 26517c478bd9Sstevel@tonic-gate KM_SLEEP); 26527c478bd9Sstevel@tonic-gate } 26537c478bd9Sstevel@tonic-gate 26547c478bd9Sstevel@tonic-gate void 26557c478bd9Sstevel@tonic-gate pcache_destroy(pollcache_t *pcp) 26567c478bd9Sstevel@tonic-gate { 26577c478bd9Sstevel@tonic-gate polldat_t **hashtbl; 26587c478bd9Sstevel@tonic-gate int i; 26597c478bd9Sstevel@tonic-gate 26607c478bd9Sstevel@tonic-gate hashtbl = pcp->pc_hash; 26617c478bd9Sstevel@tonic-gate for (i = 0; i < pcp->pc_hashsize; i++) { 26627c478bd9Sstevel@tonic-gate if (hashtbl[i] != NULL) { 26637c478bd9Sstevel@tonic-gate polldat_t *pdp, *pdp2; 26647c478bd9Sstevel@tonic-gate 26657c478bd9Sstevel@tonic-gate pdp = hashtbl[i]; 26667c478bd9Sstevel@tonic-gate while (pdp != NULL) { 26677c478bd9Sstevel@tonic-gate pdp2 = pdp->pd_hashnext; 26687c478bd9Sstevel@tonic-gate if (pdp->pd_ref != NULL) { 26697c478bd9Sstevel@tonic-gate kmem_free(pdp->pd_ref, sizeof (xref_t) * 26707c478bd9Sstevel@tonic-gate pdp->pd_nsets); 26717c478bd9Sstevel@tonic-gate } 26727c478bd9Sstevel@tonic-gate kmem_free(pdp, sizeof (polldat_t)); 26737c478bd9Sstevel@tonic-gate pdp = pdp2; 26747c478bd9Sstevel@tonic-gate pcp->pc_fdcount--; 26757c478bd9Sstevel@tonic-gate } 26767c478bd9Sstevel@tonic-gate } 26777c478bd9Sstevel@tonic-gate } 26787c478bd9Sstevel@tonic-gate ASSERT(pcp->pc_fdcount == 0); 26797c478bd9Sstevel@tonic-gate kmem_free(pcp->pc_hash, sizeof (polldat_t *) * pcp->pc_hashsize); 26807c478bd9Sstevel@tonic-gate kmem_free(pcp->pc_bitmap, 26817c478bd9Sstevel@tonic-gate sizeof (ulong_t) * (pcp->pc_mapsize/BT_NBIPUL)); 26827c478bd9Sstevel@tonic-gate mutex_destroy(&pcp->pc_no_exit); 26837c478bd9Sstevel@tonic-gate mutex_destroy(&pcp->pc_lock); 26847c478bd9Sstevel@tonic-gate cv_destroy(&pcp->pc_cv); 26857c478bd9Sstevel@tonic-gate cv_destroy(&pcp->pc_busy_cv); 26867c478bd9Sstevel@tonic-gate kmem_free(pcp, sizeof (pollcache_t)); 26877c478bd9Sstevel@tonic-gate } 26887c478bd9Sstevel@tonic-gate 26897c478bd9Sstevel@tonic-gate pollcacheset_t * 26907c478bd9Sstevel@tonic-gate pcacheset_create(int nsets) 26917c478bd9Sstevel@tonic-gate { 26927c478bd9Sstevel@tonic-gate return (kmem_zalloc(sizeof (pollcacheset_t) * nsets, KM_SLEEP)); 26937c478bd9Sstevel@tonic-gate } 26947c478bd9Sstevel@tonic-gate 26957c478bd9Sstevel@tonic-gate void 26967c478bd9Sstevel@tonic-gate pcacheset_destroy(pollcacheset_t *pcsp, int nsets) 26977c478bd9Sstevel@tonic-gate { 26987c478bd9Sstevel@tonic-gate int i; 26997c478bd9Sstevel@tonic-gate 27007c478bd9Sstevel@tonic-gate for (i = 0; i < nsets; i++) { 27017c478bd9Sstevel@tonic-gate if (pcsp[i].pcs_pollfd != NULL) { 27027c478bd9Sstevel@tonic-gate kmem_free(pcsp[i].pcs_pollfd, pcsp[i].pcs_nfds * 27037c478bd9Sstevel@tonic-gate sizeof (pollfd_t)); 27047c478bd9Sstevel@tonic-gate } 27057c478bd9Sstevel@tonic-gate } 27067c478bd9Sstevel@tonic-gate kmem_free(pcsp, sizeof (pollcacheset_t) * nsets); 27077c478bd9Sstevel@tonic-gate } 27087c478bd9Sstevel@tonic-gate 27097c478bd9Sstevel@tonic-gate /* 27107c478bd9Sstevel@tonic-gate * Check each duplicated poll fd in the poll list. It may be necessary to 27117c478bd9Sstevel@tonic-gate * VOP_POLL the same fd again using different poll events. getf() has been 27127c478bd9Sstevel@tonic-gate * done by caller. This routine returns 0 if it can sucessfully process the 27137c478bd9Sstevel@tonic-gate * entire poll fd list. It returns -1 if underlying vnode has changed during 27147c478bd9Sstevel@tonic-gate * a VOP_POLL, in which case the caller has to repoll. It returns a positive 27157c478bd9Sstevel@tonic-gate * value if VOP_POLL failed. 27167c478bd9Sstevel@tonic-gate */ 27177c478bd9Sstevel@tonic-gate static int 27187c478bd9Sstevel@tonic-gate plist_chkdupfd(file_t *fp, polldat_t *pdp, pollstate_t *psp, pollfd_t *pollfdp, 27197c478bd9Sstevel@tonic-gate int entry, int *fdcntp) 27207c478bd9Sstevel@tonic-gate { 27217c478bd9Sstevel@tonic-gate int i; 27227c478bd9Sstevel@tonic-gate int fd; 27237c478bd9Sstevel@tonic-gate nfds_t nfds = psp->ps_nfds; 27247c478bd9Sstevel@tonic-gate 27257c478bd9Sstevel@tonic-gate fd = pollfdp[entry].fd; 27267c478bd9Sstevel@tonic-gate for (i = entry + 1; i < nfds; i++) { 27277c478bd9Sstevel@tonic-gate if (pollfdp[i].fd == fd) { 27287c478bd9Sstevel@tonic-gate if (pollfdp[i].events == pollfdp[entry].events) { 27297c478bd9Sstevel@tonic-gate if ((pollfdp[i].revents = 27307c478bd9Sstevel@tonic-gate pollfdp[entry].revents) != 0) { 27317c478bd9Sstevel@tonic-gate (*fdcntp)++; 27327c478bd9Sstevel@tonic-gate } 27337c478bd9Sstevel@tonic-gate } else { 27347c478bd9Sstevel@tonic-gate 27357c478bd9Sstevel@tonic-gate int error; 27367c478bd9Sstevel@tonic-gate pollhead_t *php; 27377c478bd9Sstevel@tonic-gate pollcache_t *pcp = psp->ps_pcache; 27387c478bd9Sstevel@tonic-gate 27397c478bd9Sstevel@tonic-gate /* 27407c478bd9Sstevel@tonic-gate * the events are different. VOP_POLL on this 27417c478bd9Sstevel@tonic-gate * fd so that we don't miss any revents. 27427c478bd9Sstevel@tonic-gate */ 27437c478bd9Sstevel@tonic-gate php = NULL; 27447c478bd9Sstevel@tonic-gate ASSERT(curthread->t_pollcache == NULL); 27457c478bd9Sstevel@tonic-gate error = VOP_POLL(fp->f_vnode, 27467c478bd9Sstevel@tonic-gate pollfdp[i].events, 0, 27477c478bd9Sstevel@tonic-gate &pollfdp[i].revents, &php); 27487c478bd9Sstevel@tonic-gate if (error) { 27497c478bd9Sstevel@tonic-gate return (error); 27507c478bd9Sstevel@tonic-gate } 27517c478bd9Sstevel@tonic-gate /* 27527c478bd9Sstevel@tonic-gate * layered devices(e.g. console driver) 27537c478bd9Sstevel@tonic-gate * may change the vnode and thus the pollhead 27547c478bd9Sstevel@tonic-gate * pointer out from underneath us. 27557c478bd9Sstevel@tonic-gate */ 27567c478bd9Sstevel@tonic-gate if (php != NULL && pdp->pd_php != NULL && 27577c478bd9Sstevel@tonic-gate php != pdp->pd_php) { 27587c478bd9Sstevel@tonic-gate pollhead_delete(pdp->pd_php, pdp); 27597c478bd9Sstevel@tonic-gate pdp->pd_php = php; 27607c478bd9Sstevel@tonic-gate pollhead_insert(php, pdp); 27617c478bd9Sstevel@tonic-gate /* 27627c478bd9Sstevel@tonic-gate * We could have missed a wakeup on the 27637c478bd9Sstevel@tonic-gate * new target device. Make sure the new 27647c478bd9Sstevel@tonic-gate * target gets polled once. 27657c478bd9Sstevel@tonic-gate */ 27667c478bd9Sstevel@tonic-gate BT_SET(pcp->pc_bitmap, fd); 27677c478bd9Sstevel@tonic-gate return (-1); 27687c478bd9Sstevel@tonic-gate } 27697c478bd9Sstevel@tonic-gate if (pollfdp[i].revents) { 27707c478bd9Sstevel@tonic-gate (*fdcntp)++; 27717c478bd9Sstevel@tonic-gate } 27727c478bd9Sstevel@tonic-gate } 27737c478bd9Sstevel@tonic-gate } 27747c478bd9Sstevel@tonic-gate } 27757c478bd9Sstevel@tonic-gate return (0); 27767c478bd9Sstevel@tonic-gate } 2777