]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/kern_poll.c
Fix missing pfctl(8) tunable.
[FreeBSD/FreeBSD.git] / sys / kern / kern_poll.c
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/kthread.h>
37 #include <sys/proc.h>
38 #include <sys/eventhandler.h>
39 #include <sys/resourcevar.h>
40 #include <sys/socket.h>                 /* needed by net/if.h           */
41 #include <sys/sockio.h>
42 #include <sys/sysctl.h>
43 #include <sys/syslog.h>
44
45 #include <net/if.h>
46 #include <net/if_var.h>
47 #include <net/netisr.h>                 /* for NETISR_POLL              */
48 #include <net/vnet.h>
49
50 void hardclock_device_poll(void);       /* hook from hardclock          */
51
52 static struct mtx       poll_mtx;
53
54 /*
55  * Polling support for [network] device drivers.
56  *
57  * Drivers which support this feature can register with the
58  * polling code.
59  *
60  * If registration is successful, the driver must disable interrupts,
61  * and further I/O is performed through the handler, which is invoked
62  * (at least once per clock tick) with 3 arguments: the "arg" passed at
63  * register time (a struct ifnet pointer), a command, and a "count" limit.
64  *
65  * The command can be one of the following:
66  *  POLL_ONLY: quick move of "count" packets from input/output queues.
67  *  POLL_AND_CHECK_STATUS: as above, plus check status registers or do
68  *      other more expensive operations. This command is issued periodically
69  *      but less frequently than POLL_ONLY.
70  *
71  * The count limit specifies how much work the handler can do during the
72  * call -- typically this is the number of packets to be received, or
73  * transmitted, etc. (drivers are free to interpret this number, as long
74  * as the max time spent in the function grows roughly linearly with the
75  * count).
76  *
77  * Polling is enabled and disabled via setting IFCAP_POLLING flag on
78  * the interface. The driver ioctl handler should register interface
79  * with polling and disable interrupts, if registration was successful.
80  *
81  * A second variable controls the sharing of CPU between polling/kernel
82  * network processing, and other activities (typically userlevel tasks):
83  * kern.polling.user_frac (between 0 and 100, default 50) sets the share
84  * of CPU allocated to user tasks. CPU is allocated proportionally to the
85  * shares, by dynamically adjusting the "count" (poll_burst).
86  *
87  * Other parameters can should be left to their default values.
88  * The following constraints hold
89  *
90  *      1 <= poll_each_burst <= poll_burst <= poll_burst_max
91  *      MIN_POLL_BURST_MAX <= poll_burst_max <= MAX_POLL_BURST_MAX
92  */
93
94 #define MIN_POLL_BURST_MAX      10
95 #define MAX_POLL_BURST_MAX      20000
96
97 static uint32_t poll_burst = 5;
98 static uint32_t poll_burst_max = 150;   /* good for 100Mbit net and HZ=1000 */
99 static uint32_t poll_each_burst = 5;
100
101 static SYSCTL_NODE(_kern, OID_AUTO, polling, CTLFLAG_RW, 0,
102         "Device polling parameters");
103
104 SYSCTL_UINT(_kern_polling, OID_AUTO, burst, CTLFLAG_RD,
105         &poll_burst, 0, "Current polling burst size");
106
107 static int      netisr_poll_scheduled;
108 static int      netisr_pollmore_scheduled;
109 static int      poll_shutting_down;
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, 0, 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, 0, 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, 0, req);
171         if (error || !req->newptr )
172                 return (error);
173         if (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, 0, 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 uint32_t phase;
232 SYSCTL_UINT(_kern_polling, OID_AUTO, phase, CTLFLAG_RD,
233         &phase, 0, "Polling phase");
234
235 static uint32_t suspect;
236 SYSCTL_UINT(_kern_polling, OID_AUTO, suspect, CTLFLAG_RD,
237         &suspect, 0, "suspect event");
238
239 static uint32_t stalled;
240 SYSCTL_UINT(_kern_polling, OID_AUTO, stalled, CTLFLAG_RD,
241         &stalled, 0, "potential stalls");
242
243 static uint32_t idlepoll_sleeping; /* idlepoll is sleeping */
244 SYSCTL_UINT(_kern_polling, OID_AUTO, idlepoll_sleeping, CTLFLAG_RD,
245         &idlepoll_sleeping, 0, "idlepoll is sleeping");
246
247
248 #define POLL_LIST_LEN  128
249 struct pollrec {
250         poll_handler_t  *handler;
251         struct ifnet    *ifp;
252 };
253
254 static struct pollrec pr[POLL_LIST_LEN];
255
256 static void
257 poll_shutdown(void *arg, int howto)
258 {
259
260         poll_shutting_down = 1;
261 }
262
263 static void
264 init_device_poll(void)
265 {
266
267         mtx_init(&poll_mtx, "polling", NULL, MTX_DEF);
268         EVENTHANDLER_REGISTER(shutdown_post_sync, poll_shutdown, NULL,
269             SHUTDOWN_PRI_LAST);
270 }
271 SYSINIT(device_poll, SI_SUB_SOFTINTR, SI_ORDER_MIDDLE, init_device_poll, NULL);
272
273
274 /*
275  * Hook from hardclock. Tries to schedule a netisr, but keeps track
276  * of lost ticks due to the previous handler taking too long.
277  * Normally, this should not happen, because polling handler should
278  * run for a short time. However, in some cases (e.g. when there are
279  * changes in link status etc.) the drivers take a very long time
280  * (even in the order of milliseconds) to reset and reconfigure the
281  * device, causing apparent lost polls.
282  *
283  * The first part of the code is just for debugging purposes, and tries
284  * to count how often hardclock ticks are shorter than they should,
285  * meaning either stray interrupts or delayed events.
286  */
287 void
288 hardclock_device_poll(void)
289 {
290         static struct timeval prev_t, t;
291         int delta;
292
293         if (poll_handlers == 0 || poll_shutting_down)
294                 return;
295
296         microuptime(&t);
297         delta = (t.tv_usec - prev_t.tv_usec) +
298                 (t.tv_sec - prev_t.tv_sec)*1000000;
299         if (delta * hz < 500000)
300                 short_ticks++;
301         else
302                 prev_t = t;
303
304         if (pending_polls > 100) {
305                 /*
306                  * Too much, assume it has stalled (not always true
307                  * see comment above).
308                  */
309                 stalled++;
310                 pending_polls = 0;
311                 phase = 0;
312         }
313
314         if (phase <= 2) {
315                 if (phase != 0)
316                         suspect++;
317                 phase = 1;
318                 netisr_poll_scheduled = 1;
319                 netisr_pollmore_scheduled = 1;
320                 netisr_sched_poll();
321                 phase = 2;
322         }
323         if (pending_polls++ > 0)
324                 lost_polls++;
325 }
326
327 /*
328  * ether_poll is called from the idle loop.
329  */
330 static void
331 ether_poll(int count)
332 {
333         int i;
334
335         mtx_lock(&poll_mtx);
336
337         if (count > poll_each_burst)
338                 count = poll_each_burst;
339
340         for (i = 0 ; i < poll_handlers ; i++)
341                 pr[i].handler(pr[i].ifp, POLL_ONLY, count);
342
343         mtx_unlock(&poll_mtx);
344 }
345
346 /*
347  * netisr_pollmore is called after other netisr's, possibly scheduling
348  * another NETISR_POLL call, or adapting the burst size for the next cycle.
349  *
350  * It is very bad to fetch large bursts of packets from a single card at once,
351  * because the burst could take a long time to be completely processed, or
352  * could saturate the intermediate queue (ipintrq or similar) leading to
353  * losses or unfairness. To reduce the problem, and also to account better for
354  * time spent in network-related processing, we split the burst in smaller
355  * chunks of fixed size, giving control to the other netisr's between chunks.
356  * This helps in improving the fairness, reducing livelock (because we
357  * emulate more closely the "process to completion" that we have with
358  * fastforwarding) and accounting for the work performed in low level
359  * handling and forwarding.
360  */
361
362 static struct timeval poll_start_t;
363
364 void
365 netisr_pollmore()
366 {
367         struct timeval t;
368         int kern_load;
369
370         if (poll_handlers == 0)
371                 return;
372
373         mtx_lock(&poll_mtx);
374         if (!netisr_pollmore_scheduled) {
375                 mtx_unlock(&poll_mtx);
376                 return;
377         }
378         netisr_pollmore_scheduled = 0;
379         phase = 5;
380         if (residual_burst > 0) {
381                 netisr_poll_scheduled = 1;
382                 netisr_pollmore_scheduled = 1;
383                 netisr_sched_poll();
384                 mtx_unlock(&poll_mtx);
385                 /* will run immediately on return, followed by netisrs */
386                 return;
387         }
388         /* here we can account time spent in netisr's in this tick */
389         microuptime(&t);
390         kern_load = (t.tv_usec - poll_start_t.tv_usec) +
391                 (t.tv_sec - poll_start_t.tv_sec)*1000000;       /* us */
392         kern_load = (kern_load * hz) / 10000;                   /* 0..100 */
393         if (kern_load > (100 - user_frac)) { /* try decrease ticks */
394                 if (poll_burst > 1)
395                         poll_burst--;
396         } else {
397                 if (poll_burst < poll_burst_max)
398                         poll_burst++;
399         }
400
401         pending_polls--;
402         if (pending_polls == 0) /* we are done */
403                 phase = 0;
404         else {
405                 /*
406                  * Last cycle was long and caused us to miss one or more
407                  * hardclock ticks. Restart processing again, but slightly
408                  * reduce the burst size to prevent that this happens again.
409                  */
410                 poll_burst -= (poll_burst / 8);
411                 if (poll_burst < 1)
412                         poll_burst = 1;
413                 netisr_poll_scheduled = 1;
414                 netisr_pollmore_scheduled = 1;
415                 netisr_sched_poll();
416                 phase = 6;
417         }
418         mtx_unlock(&poll_mtx);
419 }
420
421 /*
422  * netisr_poll is typically scheduled once per tick.
423  */
424 void
425 netisr_poll(void)
426 {
427         int i, cycles;
428         enum poll_cmd arg = POLL_ONLY;
429
430         if (poll_handlers == 0)
431                 return;
432
433         mtx_lock(&poll_mtx);
434         if (!netisr_poll_scheduled) {
435                 mtx_unlock(&poll_mtx);
436                 return;
437         }
438         netisr_poll_scheduled = 0;
439         phase = 3;
440         if (residual_burst == 0) { /* first call in this tick */
441                 microuptime(&poll_start_t);
442                 if (++reg_frac_count == reg_frac) {
443                         arg = POLL_AND_CHECK_STATUS;
444                         reg_frac_count = 0;
445                 }
446
447                 residual_burst = poll_burst;
448         }
449         cycles = (residual_burst < poll_each_burst) ?
450                 residual_burst : poll_each_burst;
451         residual_burst -= cycles;
452
453         for (i = 0 ; i < poll_handlers ; i++)
454                 pr[i].handler(pr[i].ifp, arg, cycles);
455
456         phase = 4;
457         mtx_unlock(&poll_mtx);
458 }
459
460 /*
461  * Try to register routine for polling. Returns 0 if successful
462  * (and polling should be enabled), error code otherwise.
463  * A device is not supposed to register itself multiple times.
464  *
465  * This is called from within the *_ioctl() functions.
466  */
467 int
468 ether_poll_register(poll_handler_t *h, if_t ifp)
469 {
470         int i;
471
472         KASSERT(h != NULL, ("%s: handler is NULL", __func__));
473         KASSERT(ifp != NULL, ("%s: ifp is NULL", __func__));
474
475         mtx_lock(&poll_mtx);
476         if (poll_handlers >= POLL_LIST_LEN) {
477                 /*
478                  * List full, cannot register more entries.
479                  * This should never happen; if it does, it is probably a
480                  * broken driver trying to register multiple times. Checking
481                  * this at runtime is expensive, and won't solve the problem
482                  * anyways, so just report a few times and then give up.
483                  */
484                 static int verbose = 10 ;
485                 if (verbose >0) {
486                         log(LOG_ERR, "poll handlers list full, "
487                             "maybe a broken driver ?\n");
488                         verbose--;
489                 }
490                 mtx_unlock(&poll_mtx);
491                 return (ENOMEM); /* no polling for you */
492         }
493
494         for (i = 0 ; i < poll_handlers ; i++)
495                 if (pr[i].ifp == ifp && pr[i].handler != NULL) {
496                         mtx_unlock(&poll_mtx);
497                         log(LOG_DEBUG, "ether_poll_register: %s: handler"
498                             " already registered\n", ifp->if_xname);
499                         return (EEXIST);
500                 }
501
502         pr[poll_handlers].handler = h;
503         pr[poll_handlers].ifp = ifp;
504         poll_handlers++;
505         mtx_unlock(&poll_mtx);
506         if (idlepoll_sleeping)
507                 wakeup(&idlepoll_sleeping);
508         return (0);
509 }
510
511 /*
512  * Remove interface from the polling list. Called from *_ioctl(), too.
513  */
514 int
515 ether_poll_deregister(if_t ifp)
516 {
517         int i;
518
519         KASSERT(ifp != NULL, ("%s: ifp is NULL", __func__));
520
521         mtx_lock(&poll_mtx);
522
523         for (i = 0 ; i < poll_handlers ; i++)
524                 if (pr[i].ifp == ifp) /* found it */
525                         break;
526         if (i == poll_handlers) {
527                 log(LOG_DEBUG, "ether_poll_deregister: %s: not found!\n",
528                     ifp->if_xname);
529                 mtx_unlock(&poll_mtx);
530                 return (ENOENT);
531         }
532         poll_handlers--;
533         if (i < poll_handlers) { /* Last entry replaces this one. */
534                 pr[i].handler = pr[poll_handlers].handler;
535                 pr[i].ifp = pr[poll_handlers].ifp;
536         }
537         mtx_unlock(&poll_mtx);
538         return (0);
539 }
540
541 static void
542 poll_idle(void)
543 {
544         struct thread *td = curthread;
545         struct rtprio rtp;
546
547         rtp.prio = RTP_PRIO_MAX;        /* lowest priority */
548         rtp.type = RTP_PRIO_IDLE;
549         PROC_SLOCK(td->td_proc);
550         rtp_to_pri(&rtp, td);
551         PROC_SUNLOCK(td->td_proc);
552
553         for (;;) {
554                 if (poll_in_idle_loop && poll_handlers > 0) {
555                         idlepoll_sleeping = 0;
556                         ether_poll(poll_each_burst);
557                         thread_lock(td);
558                         mi_switch(SW_VOL, NULL);
559                         thread_unlock(td);
560                 } else {
561                         idlepoll_sleeping = 1;
562                         tsleep(&idlepoll_sleeping, 0, "pollid", hz * 3);
563                 }
564         }
565 }
566
567 static struct proc *idlepoll;
568 static struct kproc_desc idlepoll_kp = {
569          "idlepoll",
570          poll_idle,
571          &idlepoll
572 };
573 SYSINIT(idlepoll, SI_SUB_KTHREAD_VM, SI_ORDER_ANY, kproc_start,
574     &idlepoll_kp);