xref: /freebsd/sys/kern/kern_poll.c (revision f0a75d274af375d15b97b830966b99a02b7db911)
1 /*-
2  * Copyright (c) 2001-2002 Luigi Rizzo
3  *
4  * Supported by: the Xorp Project (www.xorp.org)
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30 
31 #include "opt_device_polling.h"
32 
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/kernel.h>
36 #include <sys/socket.h>			/* needed by net/if.h		*/
37 #include <sys/sockio.h>
38 #include <sys/sysctl.h>
39 #include <sys/syslog.h>
40 
41 #include <net/if.h>			/* for IFF_* flags		*/
42 #include <net/netisr.h>			/* for NETISR_POLL		*/
43 
44 #include <sys/proc.h>
45 #include <sys/resourcevar.h>
46 #include <sys/kthread.h>
47 
48 static void netisr_poll(void);		/* the two netisr handlers      */
49 static void netisr_pollmore(void);
50 static int poll_switch(SYSCTL_HANDLER_ARGS);
51 
52 void hardclock_device_poll(void);	/* hook from hardclock		*/
53 void ether_poll(int);			/* polling in idle loop		*/
54 
55 static struct mtx	poll_mtx;
56 
57 /*
58  * Polling support for [network] device drivers.
59  *
60  * Drivers which support this feature can register with the
61  * polling code.
62  *
63  * If registration is successful, the driver must disable interrupts,
64  * and further I/O is performed through the handler, which is invoked
65  * (at least once per clock tick) with 3 arguments: the "arg" passed at
66  * register time (a struct ifnet pointer), a command, and a "count" limit.
67  *
68  * The command can be one of the following:
69  *  POLL_ONLY: quick move of "count" packets from input/output queues.
70  *  POLL_AND_CHECK_STATUS: as above, plus check status registers or do
71  *	other more expensive operations. This command is issued periodically
72  *	but less frequently than POLL_ONLY.
73  *
74  * The count limit specifies how much work the handler can do during the
75  * call -- typically this is the number of packets to be received, or
76  * transmitted, etc. (drivers are free to interpret this number, as long
77  * as the max time spent in the function grows roughly linearly with the
78  * count).
79  *
80  * Polling is enabled and disabled via setting IFCAP_POLLING flag on
81  * the interface. The driver ioctl handler should register interface
82  * with polling and disable interrupts, if registration was successful.
83  *
84  * A second variable controls the sharing of CPU between polling/kernel
85  * network processing, and other activities (typically userlevel tasks):
86  * kern.polling.user_frac (between 0 and 100, default 50) sets the share
87  * of CPU allocated to user tasks. CPU is allocated proportionally to the
88  * shares, by dynamically adjusting the "count" (poll_burst).
89  *
90  * Other parameters can should be left to their default values.
91  * The following constraints hold
92  *
93  *	1 <= poll_each_burst <= poll_burst <= poll_burst_max
94  *	0 <= poll_each_burst
95  *	MIN_POLL_BURST_MAX <= poll_burst_max <= MAX_POLL_BURST_MAX
96  */
97 
98 #define MIN_POLL_BURST_MAX	10
99 #define MAX_POLL_BURST_MAX	1000
100 
101 static uint32_t poll_burst = 5;
102 static uint32_t poll_burst_max = 150;	/* good for 100Mbit net and HZ=1000 */
103 static uint32_t poll_each_burst = 5;
104 
105 SYSCTL_NODE(_kern, OID_AUTO, polling, CTLFLAG_RW, 0,
106 	"Device polling parameters");
107 
108 SYSCTL_UINT(_kern_polling, OID_AUTO, burst, CTLFLAG_RD,
109 	&poll_burst, 0, "Current polling burst size");
110 
111 static int poll_burst_max_sysctl(SYSCTL_HANDLER_ARGS)
112 {
113 	uint32_t val = poll_burst_max;
114 	int error;
115 
116 	error = sysctl_handle_int(oidp, &val, sizeof(int), req);
117 	if (error || !req->newptr )
118 		return (error);
119 	if (val < MIN_POLL_BURST_MAX || val > MAX_POLL_BURST_MAX)
120 		return (EINVAL);
121 
122 	mtx_lock(&poll_mtx);
123 	poll_burst_max = val;
124 	if (poll_burst > poll_burst_max)
125 		poll_burst = poll_burst_max;
126 	if (poll_each_burst > poll_burst_max)
127 		poll_each_burst = MIN_POLL_BURST_MAX;
128 	mtx_unlock(&poll_mtx);
129 
130 	return (0);
131 }
132 SYSCTL_PROC(_kern_polling, OID_AUTO, burst_max, CTLTYPE_UINT | CTLFLAG_RW,
133 	0, sizeof(uint32_t), poll_burst_max_sysctl, "I", "Max Polling burst size");
134 
135 static int poll_each_burst_sysctl(SYSCTL_HANDLER_ARGS)
136 {
137 	uint32_t val = poll_each_burst;
138 	int error;
139 
140 	error = sysctl_handle_int(oidp, &val, sizeof(int), req);
141 	if (error || !req->newptr )
142 		return (error);
143 	if (val < 1)
144 		return (EINVAL);
145 
146 	mtx_lock(&poll_mtx);
147 	if (val > poll_burst_max) {
148 		mtx_unlock(&poll_mtx);
149 		return (EINVAL);
150 	}
151 	poll_each_burst = val;
152 	mtx_unlock(&poll_mtx);
153 
154 	return (0);
155 }
156 SYSCTL_PROC(_kern_polling, OID_AUTO, each_burst, CTLTYPE_UINT | CTLFLAG_RW,
157 	0, sizeof(uint32_t), poll_each_burst_sysctl, "I",
158 	"Max size of each burst");
159 
160 static uint32_t poll_in_idle_loop=0;	/* do we poll in idle loop ? */
161 SYSCTL_UINT(_kern_polling, OID_AUTO, idle_poll, CTLFLAG_RW,
162 	&poll_in_idle_loop, 0, "Enable device polling in idle loop");
163 
164 static uint32_t user_frac = 50;
165 static int user_frac_sysctl(SYSCTL_HANDLER_ARGS)
166 {
167 	uint32_t val = user_frac;
168 	int error;
169 
170 	error = sysctl_handle_int(oidp, &val, sizeof(int), req);
171 	if (error || !req->newptr )
172 		return (error);
173 	if (val < 0 || val > 99)
174 		return (EINVAL);
175 
176 	mtx_lock(&poll_mtx);
177 	user_frac = val;
178 	mtx_unlock(&poll_mtx);
179 
180 	return (0);
181 }
182 SYSCTL_PROC(_kern_polling, OID_AUTO, user_frac, CTLTYPE_UINT | CTLFLAG_RW,
183 	0, sizeof(uint32_t), user_frac_sysctl, "I",
184 	"Desired user fraction of cpu time");
185 
186 static uint32_t reg_frac_count = 0;
187 static uint32_t reg_frac = 20 ;
188 static int reg_frac_sysctl(SYSCTL_HANDLER_ARGS)
189 {
190 	uint32_t val = reg_frac;
191 	int error;
192 
193 	error = sysctl_handle_int(oidp, &val, sizeof(int), req);
194 	if (error || !req->newptr )
195 		return (error);
196 	if (val < 1 || val > hz)
197 		return (EINVAL);
198 
199 	mtx_lock(&poll_mtx);
200 	reg_frac = val;
201 	if (reg_frac_count >= reg_frac)
202 		reg_frac_count = 0;
203 	mtx_unlock(&poll_mtx);
204 
205 	return (0);
206 }
207 SYSCTL_PROC(_kern_polling, OID_AUTO, reg_frac, CTLTYPE_UINT | CTLFLAG_RW,
208 	0, sizeof(uint32_t), reg_frac_sysctl, "I",
209 	"Every this many cycles check registers");
210 
211 static uint32_t short_ticks;
212 SYSCTL_UINT(_kern_polling, OID_AUTO, short_ticks, CTLFLAG_RD,
213 	&short_ticks, 0, "Hardclock ticks shorter than they should be");
214 
215 static uint32_t lost_polls;
216 SYSCTL_UINT(_kern_polling, OID_AUTO, lost_polls, CTLFLAG_RD,
217 	&lost_polls, 0, "How many times we would have lost a poll tick");
218 
219 static uint32_t pending_polls;
220 SYSCTL_UINT(_kern_polling, OID_AUTO, pending_polls, CTLFLAG_RD,
221 	&pending_polls, 0, "Do we need to poll again");
222 
223 static int residual_burst = 0;
224 SYSCTL_INT(_kern_polling, OID_AUTO, residual_burst, CTLFLAG_RD,
225 	&residual_burst, 0, "# of residual cycles in burst");
226 
227 static uint32_t poll_handlers; /* next free entry in pr[]. */
228 SYSCTL_UINT(_kern_polling, OID_AUTO, handlers, CTLFLAG_RD,
229 	&poll_handlers, 0, "Number of registered poll handlers");
230 
231 static int polling = 0;
232 SYSCTL_PROC(_kern_polling, OID_AUTO, enable, CTLTYPE_UINT | CTLFLAG_RW,
233 	0, sizeof(int), poll_switch, "I", "Switch polling for all interfaces");
234 
235 static uint32_t phase;
236 SYSCTL_UINT(_kern_polling, OID_AUTO, phase, CTLFLAG_RD,
237 	&phase, 0, "Polling phase");
238 
239 static uint32_t suspect;
240 SYSCTL_UINT(_kern_polling, OID_AUTO, suspect, CTLFLAG_RD,
241 	&suspect, 0, "suspect event");
242 
243 static uint32_t stalled;
244 SYSCTL_UINT(_kern_polling, OID_AUTO, stalled, CTLFLAG_RD,
245 	&stalled, 0, "potential stalls");
246 
247 static uint32_t idlepoll_sleeping; /* idlepoll is sleeping */
248 SYSCTL_UINT(_kern_polling, OID_AUTO, idlepoll_sleeping, CTLFLAG_RD,
249 	&idlepoll_sleeping, 0, "idlepoll is sleeping");
250 
251 
252 #define POLL_LIST_LEN  128
253 struct pollrec {
254 	poll_handler_t	*handler;
255 	struct ifnet	*ifp;
256 };
257 
258 static struct pollrec pr[POLL_LIST_LEN];
259 
260 static void
261 init_device_poll(void)
262 {
263 
264 	mtx_init(&poll_mtx, "polling", NULL, MTX_DEF);
265 	netisr_register(NETISR_POLL, (netisr_t *)netisr_poll, NULL,
266 	    NETISR_MPSAFE);
267 	netisr_register(NETISR_POLLMORE, (netisr_t *)netisr_pollmore, NULL,
268 	    NETISR_MPSAFE);
269 }
270 SYSINIT(device_poll, SI_SUB_CLOCKS, SI_ORDER_MIDDLE, init_device_poll, NULL)
271 
272 
273 /*
274  * Hook from hardclock. Tries to schedule a netisr, but keeps track
275  * of lost ticks due to the previous handler taking too long.
276  * Normally, this should not happen, because polling handler should
277  * run for a short time. However, in some cases (e.g. when there are
278  * changes in link status etc.) the drivers take a very long time
279  * (even in the order of milliseconds) to reset and reconfigure the
280  * device, causing apparent lost polls.
281  *
282  * The first part of the code is just for debugging purposes, and tries
283  * to count how often hardclock ticks are shorter than they should,
284  * meaning either stray interrupts or delayed events.
285  */
286 void
287 hardclock_device_poll(void)
288 {
289 	static struct timeval prev_t, t;
290 	int delta;
291 
292 	if (poll_handlers == 0)
293 		return;
294 
295 	microuptime(&t);
296 	delta = (t.tv_usec - prev_t.tv_usec) +
297 		(t.tv_sec - prev_t.tv_sec)*1000000;
298 	if (delta * hz < 500000)
299 		short_ticks++;
300 	else
301 		prev_t = t;
302 
303 	if (pending_polls > 100) {
304 		/*
305 		 * Too much, assume it has stalled (not always true
306 		 * see comment above).
307 		 */
308 		stalled++;
309 		pending_polls = 0;
310 		phase = 0;
311 	}
312 
313 	if (phase <= 2) {
314 		if (phase != 0)
315 			suspect++;
316 		phase = 1;
317 		schednetisrbits(1 << NETISR_POLL | 1 << NETISR_POLLMORE);
318 		phase = 2;
319 	}
320 	if (pending_polls++ > 0)
321 		lost_polls++;
322 }
323 
324 /*
325  * ether_poll is called from the idle loop.
326  */
327 void
328 ether_poll(int count)
329 {
330 	int i;
331 
332 	NET_LOCK_GIANT();
333 	mtx_lock(&poll_mtx);
334 
335 	if (count > poll_each_burst)
336 		count = poll_each_burst;
337 
338 	for (i = 0 ; i < poll_handlers ; i++)
339 		pr[i].handler(pr[i].ifp, POLL_ONLY, count);
340 
341 	mtx_unlock(&poll_mtx);
342 	NET_UNLOCK_GIANT();
343 }
344 
345 /*
346  * netisr_pollmore is called after other netisr's, possibly scheduling
347  * another NETISR_POLL call, or adapting the burst size for the next cycle.
348  *
349  * It is very bad to fetch large bursts of packets from a single card at once,
350  * because the burst could take a long time to be completely processed, or
351  * could saturate the intermediate queue (ipintrq or similar) leading to
352  * losses or unfairness. To reduce the problem, and also to account better for
353  * time spent in network-related processing, we split the burst in smaller
354  * chunks of fixed size, giving control to the other netisr's between chunks.
355  * This helps in improving the fairness, reducing livelock (because we
356  * emulate more closely the "process to completion" that we have with
357  * fastforwarding) and accounting for the work performed in low level
358  * handling and forwarding.
359  */
360 
361 static struct timeval poll_start_t;
362 
363 void
364 netisr_pollmore()
365 {
366 	struct timeval t;
367 	int kern_load;
368 
369 	NET_ASSERT_GIANT();
370 
371 	mtx_lock(&poll_mtx);
372 	phase = 5;
373 	if (residual_burst > 0) {
374 		schednetisrbits(1 << NETISR_POLL | 1 << NETISR_POLLMORE);
375 		mtx_unlock(&poll_mtx);
376 		/* will run immediately on return, followed by netisrs */
377 		return;
378 	}
379 	/* here we can account time spent in netisr's in this tick */
380 	microuptime(&t);
381 	kern_load = (t.tv_usec - poll_start_t.tv_usec) +
382 		(t.tv_sec - poll_start_t.tv_sec)*1000000;	/* us */
383 	kern_load = (kern_load * hz) / 10000;			/* 0..100 */
384 	if (kern_load > (100 - user_frac)) { /* try decrease ticks */
385 		if (poll_burst > 1)
386 			poll_burst--;
387 	} else {
388 		if (poll_burst < poll_burst_max)
389 			poll_burst++;
390 	}
391 
392 	pending_polls--;
393 	if (pending_polls == 0) /* we are done */
394 		phase = 0;
395 	else {
396 		/*
397 		 * Last cycle was long and caused us to miss one or more
398 		 * hardclock ticks. Restart processing again, but slightly
399 		 * reduce the burst size to prevent that this happens again.
400 		 */
401 		poll_burst -= (poll_burst / 8);
402 		if (poll_burst < 1)
403 			poll_burst = 1;
404 		schednetisrbits(1 << NETISR_POLL | 1 << NETISR_POLLMORE);
405 		phase = 6;
406 	}
407 	mtx_unlock(&poll_mtx);
408 }
409 
410 /*
411  * netisr_poll is scheduled by schednetisr when appropriate, typically once
412  * per tick.
413  */
414 static void
415 netisr_poll(void)
416 {
417 	int i, cycles;
418 	enum poll_cmd arg = POLL_ONLY;
419 
420 	NET_ASSERT_GIANT();
421 
422 	mtx_lock(&poll_mtx);
423 	phase = 3;
424 	if (residual_burst == 0) { /* first call in this tick */
425 		microuptime(&poll_start_t);
426 		if (++reg_frac_count == reg_frac) {
427 			arg = POLL_AND_CHECK_STATUS;
428 			reg_frac_count = 0;
429 		}
430 
431 		residual_burst = poll_burst;
432 	}
433 	cycles = (residual_burst < poll_each_burst) ?
434 		residual_burst : poll_each_burst;
435 	residual_burst -= cycles;
436 
437 	for (i = 0 ; i < poll_handlers ; i++)
438 		pr[i].handler(pr[i].ifp, arg, cycles);
439 
440 	phase = 4;
441 	mtx_unlock(&poll_mtx);
442 }
443 
444 /*
445  * Try to register routine for polling. Returns 0 if successful
446  * (and polling should be enabled), error code otherwise.
447  * A device is not supposed to register itself multiple times.
448  *
449  * This is called from within the *_ioctl() functions.
450  */
451 int
452 ether_poll_register(poll_handler_t *h, struct ifnet *ifp)
453 {
454 	int i;
455 
456 	KASSERT(h != NULL, ("%s: handler is NULL", __func__));
457 	KASSERT(ifp != NULL, ("%s: ifp is NULL", __func__));
458 
459 	NET_ASSERT_GIANT();
460 
461 	mtx_lock(&poll_mtx);
462 	if (poll_handlers >= POLL_LIST_LEN) {
463 		/*
464 		 * List full, cannot register more entries.
465 		 * This should never happen; if it does, it is probably a
466 		 * broken driver trying to register multiple times. Checking
467 		 * this at runtime is expensive, and won't solve the problem
468 		 * anyways, so just report a few times and then give up.
469 		 */
470 		static int verbose = 10 ;
471 		if (verbose >0) {
472 			log(LOG_ERR, "poll handlers list full, "
473 			    "maybe a broken driver ?\n");
474 			verbose--;
475 		}
476 		mtx_unlock(&poll_mtx);
477 		return (ENOMEM); /* no polling for you */
478 	}
479 
480 	for (i = 0 ; i < poll_handlers ; i++)
481 		if (pr[i].ifp == ifp && pr[i].handler != NULL) {
482 			mtx_unlock(&poll_mtx);
483 			log(LOG_DEBUG, "ether_poll_register: %s: handler"
484 			    " already registered\n", ifp->if_xname);
485 			return (EEXIST);
486 		}
487 
488 	pr[poll_handlers].handler = h;
489 	pr[poll_handlers].ifp = ifp;
490 	poll_handlers++;
491 	mtx_unlock(&poll_mtx);
492 	if (idlepoll_sleeping)
493 		wakeup(&idlepoll_sleeping);
494 	return (0);
495 }
496 
497 /*
498  * Remove interface from the polling list. Called from *_ioctl(), too.
499  */
500 int
501 ether_poll_deregister(struct ifnet *ifp)
502 {
503 	int i;
504 
505 	KASSERT(ifp != NULL, ("%s: ifp is NULL", __func__));
506 
507 	NET_ASSERT_GIANT();
508 	mtx_lock(&poll_mtx);
509 
510 	for (i = 0 ; i < poll_handlers ; i++)
511 		if (pr[i].ifp == ifp) /* found it */
512 			break;
513 	if (i == poll_handlers) {
514 		log(LOG_DEBUG, "ether_poll_deregister: %s: not found!\n",
515 		    ifp->if_xname);
516 		mtx_unlock(&poll_mtx);
517 		return (ENOENT);
518 	}
519 	poll_handlers--;
520 	if (i < poll_handlers) { /* Last entry replaces this one. */
521 		pr[i].handler = pr[poll_handlers].handler;
522 		pr[i].ifp = pr[poll_handlers].ifp;
523 	}
524 	mtx_unlock(&poll_mtx);
525 	return (0);
526 }
527 
528 /*
529  * Legacy interface for turning polling on all interfaces at one time.
530  */
531 static int
532 poll_switch(SYSCTL_HANDLER_ARGS)
533 {
534 	struct ifnet *ifp;
535 	int error;
536 	int val = polling;
537 
538 	error = sysctl_handle_int(oidp, &val, sizeof(int), req);
539 	if (error || !req->newptr )
540 		return (error);
541 
542 	if (val == polling)
543 		return (0);
544 
545 	if (val < 0 || val > 1)
546 		return (EINVAL);
547 
548 	polling = val;
549 
550 	NET_LOCK_GIANT();
551 	IFNET_RLOCK();
552 	TAILQ_FOREACH(ifp, &ifnet, if_link) {
553 		if (ifp->if_capabilities & IFCAP_POLLING) {
554 			struct ifreq ifr;
555 
556 			if (val == 1)
557 				ifr.ifr_reqcap =
558 				    ifp->if_capenable | IFCAP_POLLING;
559 			else
560 				ifr.ifr_reqcap =
561 				    ifp->if_capenable & ~IFCAP_POLLING;
562 			IFF_LOCKGIANT(ifp);	/* LOR here */
563 			(void) (*ifp->if_ioctl)(ifp, SIOCSIFCAP, (caddr_t)&ifr);
564 			IFF_UNLOCKGIANT(ifp);
565 		}
566 	}
567 	IFNET_RUNLOCK();
568 	NET_UNLOCK_GIANT();
569 
570 	log(LOG_ERR, "kern.polling.enable is deprecated. Use ifconfig(8)");
571 
572 	return (0);
573 }
574 
575 static void
576 poll_idle(void)
577 {
578 	struct thread *td = curthread;
579 	struct rtprio rtp;
580 
581 	rtp.prio = RTP_PRIO_MAX;	/* lowest priority */
582 	rtp.type = RTP_PRIO_IDLE;
583 	mtx_lock_spin(&sched_lock);
584 	rtp_to_pri(&rtp, td);
585 	mtx_unlock_spin(&sched_lock);
586 
587 	for (;;) {
588 		if (poll_in_idle_loop && poll_handlers > 0) {
589 			idlepoll_sleeping = 0;
590 			ether_poll(poll_each_burst);
591 			mtx_lock_spin(&sched_lock);
592 			mi_switch(SW_VOL, NULL);
593 			mtx_unlock_spin(&sched_lock);
594 		} else {
595 			idlepoll_sleeping = 1;
596 			tsleep(&idlepoll_sleeping, 0, "pollid", hz * 3);
597 		}
598 	}
599 }
600 
601 static struct proc *idlepoll;
602 static struct kproc_desc idlepoll_kp = {
603 	 "idlepoll",
604 	 poll_idle,
605 	 &idlepoll
606 };
607 SYSINIT(idlepoll, SI_SUB_KTHREAD_VM, SI_ORDER_ANY, kproc_start, &idlepoll_kp)
608