uipc_domain.c revision 1.52.2.5 1 1.52.2.5 yamt /* $NetBSD: uipc_domain.c,v 1.52.2.5 2007/10/27 11:35:38 yamt Exp $ */
2 1.12 cgd
3 1.1 cgd /*
4 1.11 mycroft * Copyright (c) 1982, 1986, 1993
5 1.11 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.43 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 cgd * may be used to endorse or promote products derived from this software
17 1.1 cgd * without specific prior written permission.
18 1.1 cgd *
19 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 cgd * SUCH DAMAGE.
30 1.1 cgd *
31 1.18 fvdl * @(#)uipc_domain.c 8.3 (Berkeley) 2/14/95
32 1.1 cgd */
33 1.36 lukem
34 1.36 lukem #include <sys/cdefs.h>
35 1.52.2.5 yamt __KERNEL_RCSID(0, "$NetBSD: uipc_domain.c,v 1.52.2.5 2007/10/27 11:35:38 yamt Exp $");
36 1.1 cgd
37 1.5 mycroft #include <sys/param.h>
38 1.5 mycroft #include <sys/socket.h>
39 1.50 atatat #include <sys/socketvar.h>
40 1.5 mycroft #include <sys/protosw.h>
41 1.5 mycroft #include <sys/domain.h>
42 1.5 mycroft #include <sys/mbuf.h>
43 1.5 mycroft #include <sys/time.h>
44 1.5 mycroft #include <sys/kernel.h>
45 1.11 mycroft #include <sys/systm.h>
46 1.30 thorpej #include <sys/callout.h>
47 1.49 matt #include <sys/queue.h>
48 1.10 cgd #include <sys/proc.h>
49 1.10 cgd #include <sys/sysctl.h>
50 1.50 atatat #include <sys/un.h>
51 1.50 atatat #include <sys/unpcb.h>
52 1.50 atatat #include <sys/file.h>
53 1.52.2.1 yamt #include <sys/kauth.h>
54 1.13 christos
55 1.52.2.4 yamt MALLOC_DECLARE(M_SOCKADDR);
56 1.52.2.4 yamt
57 1.52.2.4 yamt MALLOC_DEFINE(M_SOCKADDR, "sockaddr", "socket endpoints");
58 1.52.2.4 yamt
59 1.45 junyoung void pffasttimo(void *);
60 1.45 junyoung void pfslowtimo(void *);
61 1.37 matt
62 1.49 matt struct domainhead domains = STAILQ_HEAD_INITIALIZER(domains);
63 1.52.2.4 yamt static struct domain *domain_array[AF_MAX];
64 1.11 mycroft
65 1.52.2.4 yamt callout_t pffasttimo_ch, pfslowtimo_ch;
66 1.30 thorpej
67 1.19 thorpej /*
68 1.19 thorpej * Current time values for fast and slow timeouts. We can use u_int
69 1.19 thorpej * relatively safely. The fast timer will roll over in 27 years and
70 1.19 thorpej * the slow timer in 68 years.
71 1.19 thorpej */
72 1.19 thorpej u_int pfslowtimo_now;
73 1.19 thorpej u_int pffasttimo_now;
74 1.19 thorpej
75 1.49 matt void
76 1.52.2.1 yamt domaininit(void)
77 1.49 matt {
78 1.49 matt __link_set_decl(domains, struct domain);
79 1.49 matt struct domain * const * dpp;
80 1.49 matt struct domain *rt_domain = NULL;
81 1.49 matt
82 1.49 matt /*
83 1.49 matt * Add all of the domains. Make sure the PF_ROUTE
84 1.49 matt * domain is added last.
85 1.49 matt */
86 1.49 matt __link_set_foreach(dpp, domains) {
87 1.49 matt if ((*dpp)->dom_family == PF_ROUTE)
88 1.49 matt rt_domain = *dpp;
89 1.49 matt else
90 1.49 matt domain_attach(*dpp);
91 1.49 matt }
92 1.49 matt if (rt_domain)
93 1.49 matt domain_attach(rt_domain);
94 1.49 matt
95 1.52.2.4 yamt callout_init(&pffasttimo_ch, 0);
96 1.52.2.4 yamt callout_init(&pfslowtimo_ch, 0);
97 1.49 matt
98 1.49 matt callout_reset(&pffasttimo_ch, 1, pffasttimo, NULL);
99 1.49 matt callout_reset(&pfslowtimo_ch, 1, pfslowtimo, NULL);
100 1.1 cgd }
101 1.1 cgd
102 1.4 andrew void
103 1.49 matt domain_attach(struct domain *dp)
104 1.1 cgd {
105 1.47 matt const struct protosw *pr;
106 1.1 cgd
107 1.49 matt STAILQ_INSERT_TAIL(&domains, dp, dom_link);
108 1.52.2.4 yamt if (dp->dom_family < __arraycount(domain_array))
109 1.52.2.4 yamt domain_array[dp->dom_family] = dp;
110 1.49 matt
111 1.49 matt if (dp->dom_init)
112 1.49 matt (*dp->dom_init)();
113 1.1 cgd
114 1.38 matt #ifdef MBUFTRACE
115 1.49 matt if (dp->dom_mowner.mo_name[0] == '\0') {
116 1.49 matt strncpy(dp->dom_mowner.mo_name, dp->dom_name,
117 1.49 matt sizeof(dp->dom_mowner.mo_name));
118 1.49 matt MOWNER_ATTACH(&dp->dom_mowner);
119 1.49 matt }
120 1.38 matt #endif
121 1.49 matt for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++) {
122 1.49 matt if (pr->pr_init)
123 1.49 matt (*pr->pr_init)();
124 1.1 cgd }
125 1.1 cgd
126 1.16 explorer if (max_linkhdr < 16) /* XXX */
127 1.16 explorer max_linkhdr = 16;
128 1.1 cgd max_hdr = max_linkhdr + max_protohdr;
129 1.1 cgd max_datalen = MHLEN - max_hdr;
130 1.1 cgd }
131 1.1 cgd
132 1.29 thorpej struct domain *
133 1.49 matt pffinddomain(int family)
134 1.29 thorpej {
135 1.29 thorpej struct domain *dp;
136 1.29 thorpej
137 1.52.2.4 yamt if (family < __arraycount(domain_array) && domain_array[family] != NULL)
138 1.52.2.4 yamt return domain_array[family];
139 1.52.2.4 yamt
140 1.49 matt DOMAIN_FOREACH(dp)
141 1.29 thorpej if (dp->dom_family == family)
142 1.29 thorpej return (dp);
143 1.29 thorpej return (NULL);
144 1.29 thorpej }
145 1.29 thorpej
146 1.47 matt const struct protosw *
147 1.49 matt pffindtype(int family, int type)
148 1.1 cgd {
149 1.29 thorpej struct domain *dp;
150 1.47 matt const struct protosw *pr;
151 1.29 thorpej
152 1.29 thorpej dp = pffinddomain(family);
153 1.29 thorpej if (dp == NULL)
154 1.29 thorpej return (NULL);
155 1.1 cgd
156 1.1 cgd for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
157 1.1 cgd if (pr->pr_type && pr->pr_type == type)
158 1.1 cgd return (pr);
159 1.29 thorpej
160 1.29 thorpej return (NULL);
161 1.1 cgd }
162 1.1 cgd
163 1.47 matt const struct protosw *
164 1.49 matt pffindproto(int family, int protocol, int type)
165 1.1 cgd {
166 1.29 thorpej struct domain *dp;
167 1.47 matt const struct protosw *pr;
168 1.47 matt const struct protosw *maybe = NULL;
169 1.1 cgd
170 1.1 cgd if (family == 0)
171 1.29 thorpej return (NULL);
172 1.29 thorpej
173 1.29 thorpej dp = pffinddomain(family);
174 1.29 thorpej if (dp == NULL)
175 1.29 thorpej return (NULL);
176 1.29 thorpej
177 1.1 cgd for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++) {
178 1.1 cgd if ((pr->pr_protocol == protocol) && (pr->pr_type == type))
179 1.1 cgd return (pr);
180 1.1 cgd
181 1.1 cgd if (type == SOCK_RAW && pr->pr_type == SOCK_RAW &&
182 1.29 thorpej pr->pr_protocol == 0 && maybe == NULL)
183 1.1 cgd maybe = pr;
184 1.1 cgd }
185 1.1 cgd return (maybe);
186 1.10 cgd }
187 1.10 cgd
188 1.52.2.5 yamt void *
189 1.52.2.5 yamt sockaddr_addr(struct sockaddr *sa, socklen_t *slenp)
190 1.52.2.5 yamt {
191 1.52.2.5 yamt const struct domain *dom;
192 1.52.2.5 yamt
193 1.52.2.5 yamt if ((dom = pffinddomain(sa->sa_family)) == NULL ||
194 1.52.2.5 yamt dom->dom_sockaddr_addr == NULL)
195 1.52.2.5 yamt return NULL;
196 1.52.2.5 yamt
197 1.52.2.5 yamt return (*dom->dom_sockaddr_addr)(sa, slenp);
198 1.52.2.5 yamt }
199 1.52.2.5 yamt
200 1.52.2.5 yamt const void *
201 1.52.2.5 yamt sockaddr_const_addr(const struct sockaddr *sa, socklen_t *slenp)
202 1.52.2.5 yamt {
203 1.52.2.5 yamt const struct domain *dom;
204 1.52.2.5 yamt
205 1.52.2.5 yamt if ((dom = pffinddomain(sa->sa_family)) == NULL ||
206 1.52.2.5 yamt dom->dom_sockaddr_const_addr == NULL)
207 1.52.2.5 yamt return NULL;
208 1.52.2.5 yamt
209 1.52.2.5 yamt return (*dom->dom_sockaddr_const_addr)(sa, slenp);
210 1.52.2.5 yamt }
211 1.52.2.5 yamt
212 1.52.2.5 yamt const struct sockaddr *
213 1.52.2.5 yamt sockaddr_any(const struct sockaddr *sa)
214 1.52.2.5 yamt {
215 1.52.2.5 yamt const struct domain *dom;
216 1.52.2.5 yamt
217 1.52.2.5 yamt if ((dom = pffinddomain(sa->sa_family)) == NULL)
218 1.52.2.5 yamt return NULL;
219 1.52.2.5 yamt
220 1.52.2.5 yamt return dom->dom_sa_any;
221 1.52.2.5 yamt }
222 1.52.2.5 yamt
223 1.52.2.5 yamt const void *
224 1.52.2.5 yamt sockaddr_anyaddr(const struct sockaddr *sa, socklen_t *slenp)
225 1.52.2.5 yamt {
226 1.52.2.5 yamt const struct sockaddr *any;
227 1.52.2.5 yamt
228 1.52.2.5 yamt if ((any = sockaddr_any(sa)) == NULL)
229 1.52.2.5 yamt return NULL;
230 1.52.2.5 yamt
231 1.52.2.5 yamt return sockaddr_const_addr(any, slenp);
232 1.52.2.5 yamt }
233 1.52.2.5 yamt
234 1.52.2.4 yamt struct sockaddr *
235 1.52.2.4 yamt sockaddr_alloc(sa_family_t af, socklen_t socklen, int flags)
236 1.52.2.4 yamt {
237 1.52.2.4 yamt struct sockaddr *sa;
238 1.52.2.4 yamt socklen_t reallen = MAX(socklen, offsetof(struct sockaddr, sa_data[0]));
239 1.52.2.4 yamt
240 1.52.2.4 yamt if ((sa = malloc(reallen, M_SOCKADDR, flags)) == NULL)
241 1.52.2.4 yamt return NULL;
242 1.52.2.4 yamt
243 1.52.2.4 yamt sa->sa_family = af;
244 1.52.2.4 yamt sa->sa_len = reallen;
245 1.52.2.4 yamt return sa;
246 1.52.2.4 yamt }
247 1.52.2.4 yamt
248 1.52.2.4 yamt struct sockaddr *
249 1.52.2.4 yamt sockaddr_copy(struct sockaddr *dst, socklen_t socklen,
250 1.52.2.4 yamt const struct sockaddr *src)
251 1.52.2.4 yamt {
252 1.52.2.4 yamt if (__predict_false(socklen < src->sa_len)) {
253 1.52.2.4 yamt panic("%s: source too long, %d < %d bytes", __func__, socklen,
254 1.52.2.4 yamt src->sa_len);
255 1.52.2.4 yamt }
256 1.52.2.4 yamt return memcpy(dst, src, src->sa_len);
257 1.52.2.4 yamt }
258 1.52.2.4 yamt
259 1.52.2.4 yamt int
260 1.52.2.4 yamt sockaddr_cmp(const struct sockaddr *sa1, const struct sockaddr *sa2)
261 1.52.2.4 yamt {
262 1.52.2.4 yamt int len, rc;
263 1.52.2.4 yamt struct domain *dom;
264 1.52.2.4 yamt
265 1.52.2.4 yamt if (sa1->sa_family != sa2->sa_family)
266 1.52.2.4 yamt return sa1->sa_family - sa2->sa_family;
267 1.52.2.4 yamt
268 1.52.2.4 yamt dom = pffinddomain(sa1->sa_family);
269 1.52.2.4 yamt
270 1.52.2.4 yamt if (dom != NULL && dom->dom_sockaddr_cmp != NULL)
271 1.52.2.4 yamt return (*dom->dom_sockaddr_cmp)(sa1, sa2);
272 1.52.2.4 yamt
273 1.52.2.4 yamt len = MIN(sa1->sa_len, sa2->sa_len);
274 1.52.2.4 yamt
275 1.52.2.4 yamt if (dom == NULL || dom->dom_sa_cmplen == 0) {
276 1.52.2.4 yamt if ((rc = memcmp(sa1, sa2, len)) != 0)
277 1.52.2.4 yamt return rc;
278 1.52.2.4 yamt return sa1->sa_len - sa2->sa_len;
279 1.52.2.4 yamt }
280 1.52.2.4 yamt
281 1.52.2.4 yamt if ((rc = memcmp((const char *)sa1 + dom->dom_sa_cmpofs,
282 1.52.2.4 yamt (const char *)sa2 + dom->dom_sa_cmpofs,
283 1.52.2.4 yamt MIN(dom->dom_sa_cmplen,
284 1.52.2.4 yamt len - MIN(len, dom->dom_sa_cmpofs)))) != 0)
285 1.52.2.4 yamt return rc;
286 1.52.2.4 yamt
287 1.52.2.4 yamt return MIN(dom->dom_sa_cmplen + dom->dom_sa_cmpofs, sa1->sa_len) -
288 1.52.2.4 yamt MIN(dom->dom_sa_cmplen + dom->dom_sa_cmpofs, sa2->sa_len);
289 1.52.2.4 yamt }
290 1.52.2.4 yamt
291 1.52.2.4 yamt struct sockaddr *
292 1.52.2.4 yamt sockaddr_dup(const struct sockaddr *src, int flags)
293 1.52.2.4 yamt {
294 1.52.2.4 yamt struct sockaddr *dst;
295 1.52.2.4 yamt
296 1.52.2.4 yamt if ((dst = sockaddr_alloc(src->sa_family, src->sa_len, flags)) == NULL)
297 1.52.2.4 yamt return NULL;
298 1.52.2.4 yamt
299 1.52.2.4 yamt return sockaddr_copy(dst, dst->sa_len, src);
300 1.52.2.4 yamt }
301 1.52.2.4 yamt
302 1.52.2.4 yamt void
303 1.52.2.4 yamt sockaddr_free(struct sockaddr *sa)
304 1.52.2.4 yamt {
305 1.52.2.4 yamt free(sa, M_SOCKADDR);
306 1.52.2.4 yamt }
307 1.52.2.4 yamt
308 1.50 atatat /*
309 1.50 atatat * sysctl helper to stuff PF_LOCAL pcbs into sysctl structures
310 1.50 atatat */
311 1.50 atatat static void
312 1.50 atatat sysctl_dounpcb(struct kinfo_pcb *pcb, const struct socket *so)
313 1.50 atatat {
314 1.50 atatat struct unpcb *unp = sotounpcb(so);
315 1.50 atatat struct sockaddr_un *un = unp->unp_addr;
316 1.50 atatat
317 1.50 atatat memset(pcb, 0, sizeof(*pcb));
318 1.50 atatat
319 1.50 atatat pcb->ki_family = so->so_proto->pr_domain->dom_family;
320 1.50 atatat pcb->ki_type = so->so_proto->pr_type;
321 1.50 atatat pcb->ki_protocol = so->so_proto->pr_protocol;
322 1.50 atatat pcb->ki_pflags = unp->unp_flags;
323 1.50 atatat
324 1.50 atatat pcb->ki_pcbaddr = PTRTOUINT64(unp);
325 1.50 atatat /* pcb->ki_ppcbaddr = unp has no ppcb... */
326 1.50 atatat pcb->ki_sockaddr = PTRTOUINT64(so);
327 1.50 atatat
328 1.50 atatat pcb->ki_sostate = so->so_state;
329 1.50 atatat /* pcb->ki_prstate = unp has no state... */
330 1.50 atatat
331 1.50 atatat pcb->ki_rcvq = so->so_rcv.sb_cc;
332 1.50 atatat pcb->ki_sndq = so->so_snd.sb_cc;
333 1.50 atatat
334 1.50 atatat un = (struct sockaddr_un *)&pcb->ki_src;
335 1.50 atatat /*
336 1.50 atatat * local domain sockets may bind without having a local
337 1.50 atatat * endpoint. bleah!
338 1.50 atatat */
339 1.50 atatat if (unp->unp_addr != NULL) {
340 1.50 atatat un->sun_len = unp->unp_addr->sun_len;
341 1.50 atatat un->sun_family = unp->unp_addr->sun_family;
342 1.50 atatat strlcpy(un->sun_path, unp->unp_addr->sun_path,
343 1.50 atatat sizeof(pcb->ki_s));
344 1.50 atatat }
345 1.50 atatat else {
346 1.50 atatat un->sun_len = offsetof(struct sockaddr_un, sun_path);
347 1.50 atatat un->sun_family = pcb->ki_family;
348 1.50 atatat }
349 1.50 atatat if (unp->unp_conn != NULL) {
350 1.50 atatat un = (struct sockaddr_un *)&pcb->ki_dst;
351 1.50 atatat if (unp->unp_conn->unp_addr != NULL) {
352 1.50 atatat un->sun_len = unp->unp_conn->unp_addr->sun_len;
353 1.50 atatat un->sun_family = unp->unp_conn->unp_addr->sun_family;
354 1.50 atatat un->sun_family = unp->unp_conn->unp_addr->sun_family;
355 1.50 atatat strlcpy(un->sun_path, unp->unp_conn->unp_addr->sun_path,
356 1.50 atatat sizeof(pcb->ki_d));
357 1.50 atatat }
358 1.50 atatat else {
359 1.50 atatat un->sun_len = offsetof(struct sockaddr_un, sun_path);
360 1.50 atatat un->sun_family = pcb->ki_family;
361 1.50 atatat }
362 1.50 atatat }
363 1.50 atatat
364 1.50 atatat pcb->ki_inode = unp->unp_ino;
365 1.50 atatat pcb->ki_vnode = PTRTOUINT64(unp->unp_vnode);
366 1.50 atatat pcb->ki_conn = PTRTOUINT64(unp->unp_conn);
367 1.50 atatat pcb->ki_refs = PTRTOUINT64(unp->unp_refs);
368 1.50 atatat pcb->ki_nextref = PTRTOUINT64(unp->unp_nextref);
369 1.50 atatat }
370 1.50 atatat
371 1.50 atatat static int
372 1.50 atatat sysctl_unpcblist(SYSCTLFN_ARGS)
373 1.50 atatat {
374 1.50 atatat struct file *fp;
375 1.50 atatat struct socket *so;
376 1.50 atatat struct kinfo_pcb pcb;
377 1.50 atatat char *dp;
378 1.50 atatat u_int op, arg;
379 1.50 atatat size_t len, needed, elem_size, out_size;
380 1.50 atatat int error, elem_count, pf, type, pf2;
381 1.50 atatat
382 1.50 atatat if (namelen == 1 && name[0] == CTL_QUERY)
383 1.52 atatat return (sysctl_query(SYSCTLFN_CALL(rnode)));
384 1.50 atatat
385 1.50 atatat if (namelen != 4)
386 1.50 atatat return (EINVAL);
387 1.50 atatat
388 1.52.2.1 yamt if (oldp != NULL) {
389 1.52.2.1 yamt len = *oldlenp;
390 1.52.2.1 yamt elem_size = name[2];
391 1.52.2.1 yamt elem_count = name[3];
392 1.52.2.1 yamt if (elem_size != sizeof(pcb))
393 1.52.2.1 yamt return EINVAL;
394 1.52.2.1 yamt } else {
395 1.52.2.1 yamt len = 0;
396 1.52.2.1 yamt elem_size = sizeof(pcb);
397 1.52.2.1 yamt elem_count = INT_MAX;
398 1.52.2.1 yamt }
399 1.50 atatat error = 0;
400 1.50 atatat dp = oldp;
401 1.50 atatat op = name[0];
402 1.50 atatat arg = name[1];
403 1.52.2.1 yamt out_size = elem_size;
404 1.50 atatat needed = 0;
405 1.50 atatat
406 1.50 atatat if (name - oname != 4)
407 1.50 atatat return (EINVAL);
408 1.50 atatat
409 1.50 atatat pf = oname[1];
410 1.50 atatat type = oname[2];
411 1.50 atatat pf2 = (oldp == NULL) ? 0 : pf;
412 1.50 atatat
413 1.50 atatat /*
414 1.50 atatat * there's no "list" of local domain sockets, so we have
415 1.50 atatat * to walk the file list looking for them. :-/
416 1.50 atatat */
417 1.50 atatat LIST_FOREACH(fp, &filehead, f_list) {
418 1.52.2.2 yamt if (kauth_authorize_generic(l->l_cred,
419 1.52.2.2 yamt KAUTH_GENERIC_CANSEE, fp->f_cred) != 0)
420 1.52.2.1 yamt continue;
421 1.50 atatat if (fp->f_type != DTYPE_SOCKET)
422 1.50 atatat continue;
423 1.50 atatat so = (struct socket *)fp->f_data;
424 1.50 atatat if (so->so_type != type)
425 1.50 atatat continue;
426 1.50 atatat if (so->so_proto->pr_domain->dom_family != pf)
427 1.50 atatat continue;
428 1.50 atatat if (len >= elem_size && elem_count > 0) {
429 1.50 atatat sysctl_dounpcb(&pcb, so);
430 1.50 atatat error = copyout(&pcb, dp, out_size);
431 1.50 atatat if (error)
432 1.50 atatat break;
433 1.50 atatat dp += elem_size;
434 1.50 atatat len -= elem_size;
435 1.50 atatat }
436 1.50 atatat if (elem_count > 0) {
437 1.50 atatat needed += elem_size;
438 1.50 atatat if (elem_count != INT_MAX)
439 1.50 atatat elem_count--;
440 1.50 atatat }
441 1.50 atatat }
442 1.50 atatat
443 1.50 atatat *oldlenp = needed;
444 1.50 atatat if (oldp == NULL)
445 1.50 atatat *oldlenp += PCB_SLOP * sizeof(struct kinfo_pcb);
446 1.50 atatat
447 1.50 atatat return (error);
448 1.50 atatat }
449 1.50 atatat
450 1.44 atatat SYSCTL_SETUP(sysctl_net_setup, "sysctl net subtree setup")
451 1.10 cgd {
452 1.46 atatat sysctl_createv(clog, 0, NULL, NULL,
453 1.46 atatat CTLFLAG_PERMANENT,
454 1.44 atatat CTLTYPE_NODE, "net", NULL,
455 1.44 atatat NULL, 0, NULL, 0,
456 1.44 atatat CTL_NET, CTL_EOL);
457 1.46 atatat sysctl_createv(clog, 0, NULL, NULL,
458 1.46 atatat CTLFLAG_PERMANENT,
459 1.48 atatat CTLTYPE_NODE, "local",
460 1.48 atatat SYSCTL_DESCR("PF_LOCAL related settings"),
461 1.44 atatat NULL, 0, NULL, 0,
462 1.44 atatat CTL_NET, PF_LOCAL, CTL_EOL);
463 1.50 atatat sysctl_createv(clog, 0, NULL, NULL,
464 1.50 atatat CTLFLAG_PERMANENT,
465 1.50 atatat CTLTYPE_NODE, "stream",
466 1.50 atatat SYSCTL_DESCR("SOCK_STREAM settings"),
467 1.50 atatat NULL, 0, NULL, 0,
468 1.50 atatat CTL_NET, PF_LOCAL, SOCK_STREAM, CTL_EOL);
469 1.50 atatat sysctl_createv(clog, 0, NULL, NULL,
470 1.50 atatat CTLFLAG_PERMANENT,
471 1.50 atatat CTLTYPE_NODE, "dgram",
472 1.50 atatat SYSCTL_DESCR("SOCK_DGRAM settings"),
473 1.50 atatat NULL, 0, NULL, 0,
474 1.50 atatat CTL_NET, PF_LOCAL, SOCK_DGRAM, CTL_EOL);
475 1.10 cgd
476 1.50 atatat sysctl_createv(clog, 0, NULL, NULL,
477 1.50 atatat CTLFLAG_PERMANENT,
478 1.50 atatat CTLTYPE_STRUCT, "pcblist",
479 1.50 atatat SYSCTL_DESCR("SOCK_STREAM protocol control block list"),
480 1.50 atatat sysctl_unpcblist, 0, NULL, 0,
481 1.50 atatat CTL_NET, PF_LOCAL, SOCK_STREAM, CTL_CREATE, CTL_EOL);
482 1.50 atatat sysctl_createv(clog, 0, NULL, NULL,
483 1.50 atatat CTLFLAG_PERMANENT,
484 1.50 atatat CTLTYPE_STRUCT, "pcblist",
485 1.50 atatat SYSCTL_DESCR("SOCK_DGRAM protocol control block list"),
486 1.50 atatat sysctl_unpcblist, 0, NULL, 0,
487 1.50 atatat CTL_NET, PF_LOCAL, SOCK_DGRAM, CTL_CREATE, CTL_EOL);
488 1.1 cgd }
489 1.1 cgd
490 1.4 andrew void
491 1.52.2.3 yamt pfctlinput(int cmd, const struct sockaddr *sa)
492 1.1 cgd {
493 1.31 augustss struct domain *dp;
494 1.47 matt const struct protosw *pr;
495 1.1 cgd
496 1.52.2.3 yamt DOMAIN_FOREACH(dp) {
497 1.52.2.3 yamt for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++) {
498 1.52.2.3 yamt if (pr->pr_ctlinput != NULL)
499 1.13 christos (*pr->pr_ctlinput)(cmd, sa, NULL);
500 1.52.2.3 yamt }
501 1.52.2.3 yamt }
502 1.34 itojun }
503 1.34 itojun
504 1.34 itojun void
505 1.52.2.3 yamt pfctlinput2(int cmd, const struct sockaddr *sa, void *ctlparam)
506 1.34 itojun {
507 1.34 itojun struct domain *dp;
508 1.47 matt const struct protosw *pr;
509 1.34 itojun
510 1.52.2.3 yamt if (sa == NULL)
511 1.34 itojun return;
512 1.49 matt
513 1.49 matt DOMAIN_FOREACH(dp) {
514 1.34 itojun /*
515 1.34 itojun * the check must be made by xx_ctlinput() anyways, to
516 1.34 itojun * make sure we use data item pointed to by ctlparam in
517 1.34 itojun * correct way. the following check is made just for safety.
518 1.34 itojun */
519 1.34 itojun if (dp->dom_family != sa->sa_family)
520 1.34 itojun continue;
521 1.34 itojun
522 1.52.2.3 yamt for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++) {
523 1.52.2.3 yamt if (pr->pr_ctlinput != NULL)
524 1.34 itojun (*pr->pr_ctlinput)(cmd, sa, ctlparam);
525 1.52.2.3 yamt }
526 1.34 itojun }
527 1.1 cgd }
528 1.1 cgd
529 1.4 andrew void
530 1.49 matt pfslowtimo(void *arg)
531 1.1 cgd {
532 1.31 augustss struct domain *dp;
533 1.47 matt const struct protosw *pr;
534 1.1 cgd
535 1.19 thorpej pfslowtimo_now++;
536 1.19 thorpej
537 1.49 matt DOMAIN_FOREACH(dp) {
538 1.1 cgd for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
539 1.1 cgd if (pr->pr_slowtimo)
540 1.1 cgd (*pr->pr_slowtimo)();
541 1.49 matt }
542 1.30 thorpej callout_reset(&pfslowtimo_ch, hz / 2, pfslowtimo, NULL);
543 1.1 cgd }
544 1.1 cgd
545 1.4 andrew void
546 1.49 matt pffasttimo(void *arg)
547 1.1 cgd {
548 1.31 augustss struct domain *dp;
549 1.47 matt const struct protosw *pr;
550 1.19 thorpej
551 1.19 thorpej pffasttimo_now++;
552 1.1 cgd
553 1.49 matt DOMAIN_FOREACH(dp) {
554 1.1 cgd for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++)
555 1.1 cgd if (pr->pr_fasttimo)
556 1.1 cgd (*pr->pr_fasttimo)();
557 1.49 matt }
558 1.30 thorpej callout_reset(&pffasttimo_ch, hz / 5, pffasttimo, NULL);
559 1.1 cgd }
560