puffs_msgif.c revision 1.10 1 1.10 pooka /* $NetBSD: puffs_msgif.c,v 1.10 2006/12/05 23:41:24 pooka Exp $ */
2 1.1 pooka
3 1.1 pooka /*
4 1.1 pooka * Copyright (c) 2005, 2006 Antti Kantee. All Rights Reserved.
5 1.1 pooka *
6 1.1 pooka * Development of this software was supported by the
7 1.1 pooka * Google Summer of Code program and the Ulla Tuominen Foundation.
8 1.1 pooka * The Google SoC project was mentored by Bill Studenmund.
9 1.1 pooka *
10 1.1 pooka * Redistribution and use in source and binary forms, with or without
11 1.1 pooka * modification, are permitted provided that the following conditions
12 1.1 pooka * are met:
13 1.1 pooka * 1. Redistributions of source code must retain the above copyright
14 1.1 pooka * notice, this list of conditions and the following disclaimer.
15 1.1 pooka * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 pooka * notice, this list of conditions and the following disclaimer in the
17 1.1 pooka * documentation and/or other materials provided with the distribution.
18 1.1 pooka * 3. The name of the company nor the name of the author may be used to
19 1.1 pooka * endorse or promote products derived from this software without specific
20 1.1 pooka * prior written permission.
21 1.1 pooka *
22 1.1 pooka * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
23 1.1 pooka * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 1.1 pooka * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 1.1 pooka * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
26 1.1 pooka * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 pooka * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28 1.1 pooka * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 pooka * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 pooka * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 pooka * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 pooka * SUCH DAMAGE.
33 1.1 pooka */
34 1.1 pooka
35 1.1 pooka #include <sys/cdefs.h>
36 1.10 pooka __KERNEL_RCSID(0, "$NetBSD: puffs_msgif.c,v 1.10 2006/12/05 23:41:24 pooka Exp $");
37 1.1 pooka
38 1.1 pooka #include <sys/param.h>
39 1.1 pooka #include <sys/malloc.h>
40 1.1 pooka #include <sys/mount.h>
41 1.1 pooka #include <sys/vnode.h>
42 1.1 pooka #include <sys/lock.h>
43 1.1 pooka
44 1.1 pooka #include <fs/puffs/puffs_msgif.h>
45 1.1 pooka #include <fs/puffs/puffs_sys.h>
46 1.1 pooka
47 1.1 pooka
48 1.1 pooka /*
49 1.1 pooka * kernel-user-kernel waitqueues
50 1.1 pooka */
51 1.1 pooka
52 1.4 pooka static int touser(struct puffs_mount *, struct puffs_park *, uint64_t,
53 1.1 pooka struct vnode *, struct vnode *);
54 1.1 pooka
55 1.4 pooka uint64_t
56 1.1 pooka puffs_getreqid(struct puffs_mount *pmp)
57 1.1 pooka {
58 1.1 pooka unsigned int rv;
59 1.1 pooka
60 1.1 pooka simple_lock(&pmp->pmp_lock);
61 1.1 pooka rv = pmp->pmp_nextreq++;
62 1.1 pooka simple_unlock(&pmp->pmp_lock);
63 1.1 pooka
64 1.1 pooka return rv;
65 1.1 pooka }
66 1.1 pooka
67 1.1 pooka /* vfs request */
68 1.1 pooka int
69 1.1 pooka puffs_vfstouser(struct puffs_mount *pmp, int optype, void *kbuf, size_t buflen)
70 1.1 pooka {
71 1.1 pooka struct puffs_park park;
72 1.1 pooka
73 1.9 pooka park.park_preq = kbuf;
74 1.1 pooka
75 1.9 pooka park.park_preq->preq_opclass = PUFFSOP_VFS;
76 1.9 pooka park.park_preq->preq_optype = optype;
77 1.1 pooka
78 1.9 pooka park.park_maxlen = park.park_copylen = buflen;
79 1.1 pooka
80 1.1 pooka return touser(pmp, &park, puffs_getreqid(pmp), NULL, NULL);
81 1.1 pooka }
82 1.1 pooka
83 1.1 pooka /*
84 1.1 pooka * vnode level request
85 1.1 pooka */
86 1.1 pooka int
87 1.1 pooka puffs_vntouser(struct puffs_mount *pmp, int optype,
88 1.1 pooka void *kbuf, size_t buflen, void *cookie,
89 1.1 pooka struct vnode *vp1, struct vnode *vp2)
90 1.1 pooka {
91 1.1 pooka struct puffs_park park;
92 1.1 pooka
93 1.9 pooka park.park_preq = kbuf;
94 1.1 pooka
95 1.9 pooka park.park_preq->preq_opclass = PUFFSOP_VN;
96 1.9 pooka park.park_preq->preq_optype = optype;
97 1.9 pooka park.park_preq->preq_cookie = cookie;
98 1.9 pooka
99 1.9 pooka park.park_maxlen = park.park_copylen = buflen;
100 1.1 pooka
101 1.1 pooka return touser(pmp, &park, puffs_getreqid(pmp), vp1, vp2);
102 1.1 pooka }
103 1.1 pooka
104 1.1 pooka /*
105 1.1 pooka * vnode level request, caller-controller req id
106 1.1 pooka */
107 1.1 pooka int
108 1.1 pooka puffs_vntouser_req(struct puffs_mount *pmp, int optype,
109 1.4 pooka void *kbuf, size_t buflen, void *cookie, uint64_t reqid,
110 1.1 pooka struct vnode *vp1, struct vnode *vp2)
111 1.1 pooka {
112 1.1 pooka struct puffs_park park;
113 1.1 pooka
114 1.9 pooka park.park_preq = kbuf;
115 1.9 pooka
116 1.9 pooka park.park_preq->preq_opclass = PUFFSOP_VN;
117 1.9 pooka park.park_preq->preq_optype = optype;
118 1.9 pooka park.park_preq->preq_cookie = cookie;
119 1.1 pooka
120 1.9 pooka park.park_maxlen = park.park_copylen = buflen;
121 1.1 pooka
122 1.1 pooka return touser(pmp, &park, reqid, vp1, vp2);
123 1.1 pooka }
124 1.1 pooka
125 1.1 pooka /*
126 1.9 pooka * vnode level request, copy routines can adjust "kernbuf".
127 1.9 pooka * We overload park_copylen != park_maxlen to signal that the park
128 1.9 pooka * in question is of adjusting type.
129 1.1 pooka */
130 1.1 pooka int
131 1.1 pooka puffs_vntouser_adjbuf(struct puffs_mount *pmp, int optype,
132 1.9 pooka void **kbuf, size_t *buflen, size_t maxdelta,
133 1.9 pooka void *cookie, struct vnode *vp1, struct vnode *vp2)
134 1.1 pooka {
135 1.1 pooka struct puffs_park park;
136 1.1 pooka int error;
137 1.1 pooka
138 1.9 pooka park.park_preq = *kbuf;
139 1.1 pooka
140 1.9 pooka park.park_preq->preq_opclass = PUFFSOP_VN;
141 1.9 pooka park.park_preq->preq_optype = optype;
142 1.9 pooka park.park_preq->preq_cookie = cookie;
143 1.9 pooka
144 1.9 pooka park.park_copylen = *buflen;
145 1.9 pooka park.park_maxlen = maxdelta + *buflen;
146 1.1 pooka
147 1.1 pooka error = touser(pmp, &park, puffs_getreqid(pmp), vp1, vp2);
148 1.9 pooka
149 1.9 pooka *kbuf = park.park_preq;
150 1.9 pooka *buflen = park.park_copylen;
151 1.1 pooka
152 1.1 pooka return error;
153 1.1 pooka }
154 1.1 pooka
155 1.1 pooka /*
156 1.4 pooka * Notice: kbuf will be free'd later. I must be allocated from the
157 1.4 pooka * kernel heap and it's ownership is shifted to this function from
158 1.4 pooka * now on, i.e. the caller is not allowed to use it anymore!
159 1.4 pooka */
160 1.4 pooka void
161 1.4 pooka puffs_vntouser_faf(struct puffs_mount *pmp, int optype,
162 1.4 pooka void *kbuf, size_t buflen, void *cookie)
163 1.4 pooka {
164 1.4 pooka struct puffs_park *ppark;
165 1.4 pooka
166 1.4 pooka /* XXX: is it allowable to sleep here? */
167 1.4 pooka ppark = malloc(sizeof(struct puffs_park), M_PUFFS, M_NOWAIT | M_ZERO);
168 1.4 pooka if (ppark == NULL)
169 1.4 pooka return; /* 2bad */
170 1.4 pooka
171 1.9 pooka ppark->park_preq = kbuf;
172 1.9 pooka
173 1.9 pooka ppark->park_preq->preq_opclass = PUFFSOP_VN | PUFFSOPFLAG_FAF;
174 1.9 pooka ppark->park_preq->preq_optype = optype;
175 1.9 pooka ppark->park_preq->preq_cookie = cookie;
176 1.9 pooka
177 1.9 pooka ppark->park_maxlen = ppark->park_copylen = buflen;
178 1.4 pooka
179 1.4 pooka (void)touser(pmp, ppark, 0, NULL, NULL);
180 1.4 pooka }
181 1.4 pooka
182 1.4 pooka /*
183 1.1 pooka * Wait for the userspace ping-pong game in calling process context.
184 1.1 pooka *
185 1.1 pooka * This unlocks vnodes if they are supplied. vp1 is the vnode
186 1.1 pooka * before in the locking order, i.e. the one which must be locked
187 1.1 pooka * before accessing vp2. This is done here so that operations are
188 1.1 pooka * already ordered in the queue when vnodes are unlocked (I'm not
189 1.1 pooka * sure if that's really necessary, but it can't hurt). Okok, maybe
190 1.1 pooka * there's a slight ugly-factor also, but let's not worry about that.
191 1.1 pooka */
192 1.1 pooka static int
193 1.4 pooka touser(struct puffs_mount *pmp, struct puffs_park *ppark, uint64_t reqid,
194 1.1 pooka struct vnode *vp1, struct vnode *vp2)
195 1.1 pooka {
196 1.9 pooka struct puffs_req *preq;
197 1.1 pooka
198 1.1 pooka simple_lock(&pmp->pmp_lock);
199 1.1 pooka if (pmp->pmp_status != PUFFSTAT_RUNNING
200 1.1 pooka && pmp->pmp_status != PUFFSTAT_MOUNTING) {
201 1.1 pooka simple_unlock(&pmp->pmp_lock);
202 1.1 pooka return ENXIO;
203 1.1 pooka }
204 1.1 pooka
205 1.9 pooka preq = ppark->park_preq;
206 1.9 pooka preq->preq_id = reqid;
207 1.9 pooka preq->preq_buflen = ALIGN(ppark->park_maxlen);
208 1.1 pooka
209 1.4 pooka TAILQ_INSERT_TAIL(&pmp->pmp_req_touser, ppark, park_entries);
210 1.1 pooka pmp->pmp_req_touser_waiters++;
211 1.1 pooka
212 1.1 pooka /*
213 1.1 pooka * Don't do unlock-relock dance yet. There are a couple of
214 1.1 pooka * unsolved issues with it. If we don't unlock, we can have
215 1.1 pooka * processes wanting vn_lock in case userspace hangs. But
216 1.1 pooka * that can be "solved" by killing the userspace process. It
217 1.1 pooka * would of course be nicer to have antilocking in the userspace
218 1.1 pooka * interface protocol itself.. your patience will be rewarded.
219 1.1 pooka */
220 1.1 pooka #if 0
221 1.1 pooka /* unlock */
222 1.1 pooka if (vp2)
223 1.1 pooka VOP_UNLOCK(vp2, 0);
224 1.1 pooka if (vp1)
225 1.1 pooka VOP_UNLOCK(vp1, 0);
226 1.1 pooka #endif
227 1.1 pooka
228 1.1 pooka /*
229 1.1 pooka * XXX: does releasing the lock here cause trouble? Can't hold
230 1.1 pooka * it, because otherwise the below would cause locking against
231 1.4 pooka * oneself-problems in the kqueue stuff. yes, it is a
232 1.4 pooka * theoretical race, so it must be solved
233 1.1 pooka */
234 1.1 pooka simple_unlock(&pmp->pmp_lock);
235 1.1 pooka
236 1.1 pooka wakeup(&pmp->pmp_req_touser);
237 1.1 pooka selnotify(pmp->pmp_sel, 0);
238 1.1 pooka
239 1.9 pooka if (PUFFSOP_WANTREPLY(ppark->park_preq->preq_opclass))
240 1.4 pooka ltsleep(ppark, PUSER, "puffs1", 0, NULL);
241 1.1 pooka
242 1.1 pooka #if 0
243 1.1 pooka /* relock */
244 1.1 pooka if (vp1)
245 1.1 pooka KASSERT(vn_lock(vp1, LK_EXCLUSIVE | LK_RETRY) == 0);
246 1.1 pooka if (vp2)
247 1.1 pooka KASSERT(vn_lock(vp2, LK_EXCLUSIVE | LK_RETRY) == 0);
248 1.1 pooka #endif
249 1.1 pooka
250 1.9 pooka return ppark->park_preq->preq_rv;
251 1.1 pooka }
252 1.1 pooka
253 1.1 pooka
254 1.9 pooka /*
255 1.9 pooka * getop: scan through queued requests until:
256 1.9 pooka * 1) max number of requests satisfied
257 1.9 pooka * OR
258 1.9 pooka * 2) buffer runs out of space
259 1.9 pooka * OR
260 1.9 pooka * 3) nonblocking is set AND there are no operations available
261 1.9 pooka * OR
262 1.9 pooka * 4) at least one operation was transferred AND there are no more waiting
263 1.9 pooka */
264 1.10 pooka int
265 1.10 pooka puffs_getop(struct puffs_mount *pmp, struct puffs_reqh_get *phg, int nonblock)
266 1.1 pooka {
267 1.1 pooka struct puffs_park *park;
268 1.9 pooka struct puffs_req *preq;
269 1.9 pooka uint8_t *bufpos;
270 1.9 pooka int error, donesome;
271 1.9 pooka
272 1.9 pooka donesome = error = 0;
273 1.9 pooka bufpos = phg->phg_buf;
274 1.1 pooka
275 1.1 pooka simple_lock(&pmp->pmp_lock);
276 1.9 pooka while (phg->phg_nops == 0 || donesome != phg->phg_nops) {
277 1.1 pooka again:
278 1.9 pooka if (pmp->pmp_status != PUFFSTAT_RUNNING) {
279 1.9 pooka /* if we got some, they don't really matter anymore */
280 1.9 pooka error = ENXIO;
281 1.9 pooka goto out;
282 1.9 pooka }
283 1.9 pooka if (TAILQ_EMPTY(&pmp->pmp_req_touser)) {
284 1.9 pooka if (nonblock || donesome) {
285 1.9 pooka if (nonblock)
286 1.9 pooka error = EWOULDBLOCK;
287 1.9 pooka goto out;
288 1.9 pooka }
289 1.9 pooka
290 1.9 pooka ltsleep(&pmp->pmp_req_touser, PUSER, "puffs2", 0,
291 1.9 pooka &pmp->pmp_lock);
292 1.9 pooka goto again;
293 1.9 pooka }
294 1.9 pooka
295 1.9 pooka park = TAILQ_FIRST(&pmp->pmp_req_touser);
296 1.9 pooka preq = park->park_preq;
297 1.9 pooka
298 1.9 pooka if (phg->phg_buflen < preq->preq_buflen) {
299 1.9 pooka if (!donesome)
300 1.9 pooka error = E2BIG;
301 1.9 pooka goto out;
302 1.9 pooka }
303 1.9 pooka TAILQ_REMOVE(&pmp->pmp_req_touser, park, park_entries);
304 1.9 pooka
305 1.1 pooka simple_unlock(&pmp->pmp_lock);
306 1.9 pooka DPRINTF(("puffsgetop: get op %" PRIu64 " (%d.), from %p "
307 1.9 pooka "len %zu (buflen %zu), target %p\n", preq->preq_id,
308 1.9 pooka donesome, preq, park->park_copylen, preq->preq_buflen,
309 1.9 pooka bufpos));
310 1.9 pooka
311 1.9 pooka if ((error = copyout(preq, bufpos, park->park_copylen)) != 0) {
312 1.9 pooka DPRINTF((" FAILED %d\n", error));
313 1.9 pooka /*
314 1.9 pooka * ok, user server is probably trying to cheat.
315 1.9 pooka * stuff op back & return error to user
316 1.9 pooka */
317 1.9 pooka simple_lock(&pmp->pmp_lock);
318 1.9 pooka TAILQ_INSERT_HEAD(&pmp->pmp_req_touser, park,
319 1.9 pooka park_entries);
320 1.9 pooka
321 1.9 pooka if (donesome)
322 1.9 pooka error = 0;
323 1.9 pooka goto out;
324 1.9 pooka }
325 1.9 pooka bufpos += preq->preq_buflen;
326 1.9 pooka phg->phg_buflen -= preq->preq_buflen;
327 1.9 pooka donesome++;
328 1.9 pooka
329 1.9 pooka simple_lock(&pmp->pmp_lock);
330 1.9 pooka pmp->pmp_req_touser_waiters--;
331 1.9 pooka
332 1.9 pooka if (PUFFSOP_WANTREPLY(preq->preq_opclass)) {
333 1.9 pooka TAILQ_INSERT_TAIL(&pmp->pmp_req_replywait, park,
334 1.9 pooka park_entries);
335 1.9 pooka } else {
336 1.1 pooka simple_unlock(&pmp->pmp_lock);
337 1.9 pooka free(preq, M_PUFFS);
338 1.9 pooka free(park, M_PUFFS);
339 1.9 pooka simple_lock(&pmp->pmp_lock);
340 1.1 pooka }
341 1.1 pooka }
342 1.1 pooka
343 1.9 pooka out:
344 1.9 pooka phg->phg_more = pmp->pmp_req_touser_waiters;
345 1.1 pooka simple_unlock(&pmp->pmp_lock);
346 1.1 pooka
347 1.9 pooka phg->phg_nops = donesome;
348 1.4 pooka
349 1.9 pooka return error;
350 1.1 pooka }
351 1.1 pooka
352 1.10 pooka int
353 1.10 pooka puffs_putop(struct puffs_mount *pmp, struct puffs_reqh_put *php)
354 1.1 pooka {
355 1.1 pooka struct puffs_park *park;
356 1.9 pooka void *userbuf;
357 1.9 pooka uint64_t id;
358 1.9 pooka size_t reqlen;
359 1.1 pooka int error;
360 1.9 pooka int donesome;
361 1.9 pooka
362 1.9 pooka donesome = error = 0;
363 1.9 pooka
364 1.9 pooka id = php->php_id;
365 1.9 pooka userbuf = php->php_buf;
366 1.9 pooka reqlen = php->php_buflen;
367 1.1 pooka
368 1.1 pooka simple_lock(&pmp->pmp_lock);
369 1.9 pooka while (donesome != php->php_nops) {
370 1.9 pooka #ifdef DEBUG
371 1.9 pooka simple_unlock(&pmp->pmp_lock);
372 1.9 pooka DPRINTF(("puffsputop: searching for %" PRIu64 ", ubuf: %p, "
373 1.9 pooka "len %zu\n", id, userbuf, reqlen));
374 1.9 pooka simple_lock(&pmp->pmp_lock);
375 1.9 pooka #endif
376 1.9 pooka TAILQ_FOREACH(park, &pmp->pmp_req_replywait, park_entries) {
377 1.9 pooka if (park->park_preq->preq_id == id)
378 1.9 pooka break;
379 1.9 pooka }
380 1.9 pooka
381 1.9 pooka if (park == NULL) {
382 1.9 pooka error = EINVAL;
383 1.1 pooka break;
384 1.1 pooka }
385 1.9 pooka TAILQ_REMOVE(&pmp->pmp_req_replywait, park, park_entries);
386 1.9 pooka simple_unlock(&pmp->pmp_lock);
387 1.9 pooka
388 1.9 pooka if (park->park_maxlen != park->park_copylen) {
389 1.9 pooka /* sanitycheck size of incoming transmission. */
390 1.9 pooka if (reqlen > pmp->pmp_req_maxsize) {
391 1.9 pooka DPRINTF(("puffsputop: outrageous user buf "
392 1.9 pooka "size: %zu\n", reqlen));
393 1.9 pooka error = EINVAL;
394 1.9 pooka goto loopout;
395 1.9 pooka }
396 1.1 pooka
397 1.9 pooka if (reqlen > park->park_copylen) {
398 1.9 pooka if (reqlen > park->park_maxlen) {
399 1.9 pooka DPRINTF(("puffsputop: adj copysize "
400 1.9 pooka "> max size, %zu vs %zu\n",
401 1.9 pooka reqlen, park->park_maxlen));
402 1.9 pooka error = EINVAL;
403 1.9 pooka goto loopout;
404 1.9 pooka }
405 1.9 pooka free(park->park_preq, M_PUFFS);
406 1.9 pooka park->park_preq = malloc(reqlen,
407 1.9 pooka M_PUFFS, M_WAITOK);
408 1.9 pooka
409 1.9 pooka park->park_copylen = reqlen;
410 1.9 pooka DPRINTF(("puffsputop: adjbuf, new addr %p, "
411 1.9 pooka "len %zu\n", park->park_preq, reqlen));
412 1.9 pooka }
413 1.9 pooka } else {
414 1.9 pooka if (reqlen == 0 || reqlen > park->park_copylen) {
415 1.9 pooka reqlen = park->park_copylen;
416 1.9 pooka DPRINTF(("puffsputop: kernel bufsize override: "
417 1.9 pooka "%zu\n", reqlen));
418 1.9 pooka }
419 1.9 pooka }
420 1.1 pooka
421 1.9 pooka DPRINTF(("puffsputpop: copyin from %p to %p, len %zu\n",
422 1.9 pooka userbuf, park->park_preq, reqlen));
423 1.9 pooka error = copyin(userbuf, park->park_preq, reqlen);
424 1.9 pooka if (error)
425 1.9 pooka goto loopout;
426 1.9 pooka
427 1.9 pooka /* all's well, prepare for next op */
428 1.9 pooka id = park->park_preq->preq_id;
429 1.9 pooka reqlen = park->park_preq->preq_buflen;
430 1.9 pooka userbuf = park->park_preq->preq_nextbuf;
431 1.9 pooka donesome++;
432 1.9 pooka
433 1.9 pooka loopout:
434 1.9 pooka if (error)
435 1.9 pooka park->park_preq->preq_rv = error;
436 1.9 pooka wakeup(park);
437 1.1 pooka
438 1.9 pooka simple_lock(&pmp->pmp_lock);
439 1.9 pooka if (error)
440 1.9 pooka break;
441 1.1 pooka }
442 1.1 pooka
443 1.9 pooka simple_unlock(&pmp->pmp_lock);
444 1.9 pooka php->php_nops -= donesome;
445 1.1 pooka
446 1.1 pooka return error;
447 1.1 pooka }
448 1.1 pooka
449 1.1 pooka /* this is probably going to die away at some point? */
450 1.9 pooka /*
451 1.9 pooka * XXX: currently bitrotted
452 1.9 pooka */
453 1.9 pooka #if 0
454 1.1 pooka static int
455 1.1 pooka puffssizeop(struct puffs_mount *pmp, struct puffs_sizeop *psop_user)
456 1.1 pooka {
457 1.1 pooka struct puffs_sizepark *pspark;
458 1.1 pooka void *kernbuf;
459 1.1 pooka size_t copylen;
460 1.1 pooka int error;
461 1.1 pooka
462 1.1 pooka /* locate correct op */
463 1.1 pooka simple_lock(&pmp->pmp_lock);
464 1.1 pooka TAILQ_FOREACH(pspark, &pmp->pmp_req_sizepark, pkso_entries) {
465 1.1 pooka if (pspark->pkso_reqid == psop_user->pso_reqid) {
466 1.1 pooka TAILQ_REMOVE(&pmp->pmp_req_sizepark, pspark,
467 1.1 pooka pkso_entries);
468 1.1 pooka break;
469 1.1 pooka }
470 1.1 pooka }
471 1.1 pooka simple_unlock(&pmp->pmp_lock);
472 1.1 pooka
473 1.1 pooka if (pspark == NULL)
474 1.1 pooka return EINVAL;
475 1.1 pooka
476 1.1 pooka error = 0;
477 1.1 pooka copylen = MIN(pspark->pkso_bufsize, psop_user->pso_bufsize);
478 1.1 pooka
479 1.1 pooka /*
480 1.1 pooka * XXX: uvm stuff to avoid bouncy-bouncy copying?
481 1.1 pooka */
482 1.1 pooka if (PUFFS_SIZEOP_UIO(pspark->pkso_reqtype)) {
483 1.1 pooka kernbuf = malloc(copylen, M_PUFFS, M_WAITOK | M_ZERO);
484 1.1 pooka if (pspark->pkso_reqtype == PUFFS_SIZEOPREQ_UIO_IN) {
485 1.1 pooka error = copyin(psop_user->pso_userbuf,
486 1.1 pooka kernbuf, copylen);
487 1.1 pooka if (error) {
488 1.1 pooka printf("psop ERROR1 %d\n", error);
489 1.1 pooka goto escape;
490 1.1 pooka }
491 1.1 pooka }
492 1.1 pooka error = uiomove(kernbuf, copylen, pspark->pkso_uio);
493 1.1 pooka if (error) {
494 1.1 pooka printf("uiomove from kernel %p, len %d failed: %d\n",
495 1.1 pooka kernbuf, (int)copylen, error);
496 1.1 pooka goto escape;
497 1.1 pooka }
498 1.1 pooka
499 1.1 pooka if (pspark->pkso_reqtype == PUFFS_SIZEOPREQ_UIO_OUT) {
500 1.1 pooka error = copyout(kernbuf,
501 1.1 pooka psop_user->pso_userbuf, copylen);
502 1.1 pooka if (error) {
503 1.1 pooka printf("psop ERROR2 %d\n", error);
504 1.1 pooka goto escape;
505 1.1 pooka }
506 1.1 pooka }
507 1.1 pooka escape:
508 1.1 pooka free(kernbuf, M_PUFFS);
509 1.1 pooka } else if (PUFFS_SIZEOP_BUF(pspark->pkso_reqtype)) {
510 1.1 pooka copylen = MAX(pspark->pkso_bufsize, psop_user->pso_bufsize);
511 1.1 pooka if (pspark->pkso_reqtype == PUFFS_SIZEOPREQ_BUF_IN) {
512 1.1 pooka error = copyin(psop_user->pso_userbuf,
513 1.1 pooka pspark->pkso_copybuf, copylen);
514 1.1 pooka } else {
515 1.1 pooka error = copyout(pspark->pkso_copybuf,
516 1.1 pooka psop_user->pso_userbuf, copylen);
517 1.1 pooka }
518 1.1 pooka }
519 1.1 pooka #ifdef DIAGNOSTIC
520 1.1 pooka else
521 1.1 pooka panic("puffssizeop: invalid reqtype %d\n",
522 1.1 pooka pspark->pkso_reqtype);
523 1.1 pooka #endif /* DIAGNOSTIC */
524 1.1 pooka
525 1.1 pooka return error;
526 1.1 pooka }
527 1.9 pooka #endif
528