puffs_msgif.c revision 1.14 1 1.14 pooka /* $NetBSD: puffs_msgif.c,v 1.14 2007/01/15 23:29:08 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.14 pooka __KERNEL_RCSID(0, "$NetBSD: puffs_msgif.c,v 1.14 2007/01/15 23:29:08 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.14 pooka uint64_t 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.13 pooka if (pmp->pmp_status != PUFFSTAT_RUNNING) {
200 1.1 pooka simple_unlock(&pmp->pmp_lock);
201 1.1 pooka return ENXIO;
202 1.1 pooka }
203 1.1 pooka
204 1.9 pooka preq = ppark->park_preq;
205 1.9 pooka preq->preq_id = reqid;
206 1.9 pooka preq->preq_buflen = ALIGN(ppark->park_maxlen);
207 1.1 pooka
208 1.4 pooka TAILQ_INSERT_TAIL(&pmp->pmp_req_touser, ppark, park_entries);
209 1.1 pooka pmp->pmp_req_touser_waiters++;
210 1.1 pooka
211 1.1 pooka /*
212 1.1 pooka * Don't do unlock-relock dance yet. There are a couple of
213 1.1 pooka * unsolved issues with it. If we don't unlock, we can have
214 1.1 pooka * processes wanting vn_lock in case userspace hangs. But
215 1.1 pooka * that can be "solved" by killing the userspace process. It
216 1.1 pooka * would of course be nicer to have antilocking in the userspace
217 1.1 pooka * interface protocol itself.. your patience will be rewarded.
218 1.1 pooka */
219 1.1 pooka #if 0
220 1.1 pooka /* unlock */
221 1.1 pooka if (vp2)
222 1.1 pooka VOP_UNLOCK(vp2, 0);
223 1.1 pooka if (vp1)
224 1.1 pooka VOP_UNLOCK(vp1, 0);
225 1.1 pooka #endif
226 1.1 pooka
227 1.1 pooka /*
228 1.1 pooka * XXX: does releasing the lock here cause trouble? Can't hold
229 1.1 pooka * it, because otherwise the below would cause locking against
230 1.4 pooka * oneself-problems in the kqueue stuff. yes, it is a
231 1.4 pooka * theoretical race, so it must be solved
232 1.1 pooka */
233 1.1 pooka simple_unlock(&pmp->pmp_lock);
234 1.1 pooka
235 1.1 pooka wakeup(&pmp->pmp_req_touser);
236 1.1 pooka selnotify(pmp->pmp_sel, 0);
237 1.1 pooka
238 1.9 pooka if (PUFFSOP_WANTREPLY(ppark->park_preq->preq_opclass))
239 1.4 pooka ltsleep(ppark, PUSER, "puffs1", 0, NULL);
240 1.1 pooka
241 1.1 pooka #if 0
242 1.1 pooka /* relock */
243 1.1 pooka if (vp1)
244 1.1 pooka KASSERT(vn_lock(vp1, LK_EXCLUSIVE | LK_RETRY) == 0);
245 1.1 pooka if (vp2)
246 1.1 pooka KASSERT(vn_lock(vp2, LK_EXCLUSIVE | LK_RETRY) == 0);
247 1.1 pooka #endif
248 1.1 pooka
249 1.9 pooka return ppark->park_preq->preq_rv;
250 1.1 pooka }
251 1.1 pooka
252 1.1 pooka
253 1.9 pooka /*
254 1.9 pooka * getop: scan through queued requests until:
255 1.9 pooka * 1) max number of requests satisfied
256 1.9 pooka * OR
257 1.9 pooka * 2) buffer runs out of space
258 1.9 pooka * OR
259 1.9 pooka * 3) nonblocking is set AND there are no operations available
260 1.9 pooka * OR
261 1.9 pooka * 4) at least one operation was transferred AND there are no more waiting
262 1.9 pooka */
263 1.10 pooka int
264 1.10 pooka puffs_getop(struct puffs_mount *pmp, struct puffs_reqh_get *phg, int nonblock)
265 1.1 pooka {
266 1.1 pooka struct puffs_park *park;
267 1.9 pooka struct puffs_req *preq;
268 1.9 pooka uint8_t *bufpos;
269 1.9 pooka int error, donesome;
270 1.9 pooka
271 1.9 pooka donesome = error = 0;
272 1.9 pooka bufpos = phg->phg_buf;
273 1.1 pooka
274 1.1 pooka simple_lock(&pmp->pmp_lock);
275 1.9 pooka while (phg->phg_nops == 0 || donesome != phg->phg_nops) {
276 1.1 pooka again:
277 1.9 pooka if (pmp->pmp_status != PUFFSTAT_RUNNING) {
278 1.9 pooka /* if we got some, they don't really matter anymore */
279 1.9 pooka error = ENXIO;
280 1.9 pooka goto out;
281 1.9 pooka }
282 1.9 pooka if (TAILQ_EMPTY(&pmp->pmp_req_touser)) {
283 1.12 pooka if (donesome)
284 1.12 pooka goto out;
285 1.12 pooka
286 1.12 pooka if (nonblock) {
287 1.12 pooka error = EWOULDBLOCK;
288 1.9 pooka goto out;
289 1.9 pooka }
290 1.9 pooka
291 1.11 pooka error = ltsleep(&pmp->pmp_req_touser, PUSER | PCATCH,
292 1.11 pooka "puffs2", 0, &pmp->pmp_lock);
293 1.11 pooka if (error)
294 1.11 pooka goto out;
295 1.11 pooka else
296 1.11 pooka goto again;
297 1.9 pooka }
298 1.9 pooka
299 1.9 pooka park = TAILQ_FIRST(&pmp->pmp_req_touser);
300 1.9 pooka preq = park->park_preq;
301 1.9 pooka
302 1.9 pooka if (phg->phg_buflen < preq->preq_buflen) {
303 1.9 pooka if (!donesome)
304 1.9 pooka error = E2BIG;
305 1.9 pooka goto out;
306 1.9 pooka }
307 1.9 pooka TAILQ_REMOVE(&pmp->pmp_req_touser, park, park_entries);
308 1.9 pooka
309 1.1 pooka simple_unlock(&pmp->pmp_lock);
310 1.9 pooka DPRINTF(("puffsgetop: get op %" PRIu64 " (%d.), from %p "
311 1.9 pooka "len %zu (buflen %zu), target %p\n", preq->preq_id,
312 1.9 pooka donesome, preq, park->park_copylen, preq->preq_buflen,
313 1.9 pooka bufpos));
314 1.9 pooka
315 1.9 pooka if ((error = copyout(preq, bufpos, park->park_copylen)) != 0) {
316 1.9 pooka DPRINTF((" FAILED %d\n", error));
317 1.9 pooka /*
318 1.9 pooka * ok, user server is probably trying to cheat.
319 1.9 pooka * stuff op back & return error to user
320 1.9 pooka */
321 1.9 pooka simple_lock(&pmp->pmp_lock);
322 1.9 pooka TAILQ_INSERT_HEAD(&pmp->pmp_req_touser, park,
323 1.9 pooka park_entries);
324 1.9 pooka
325 1.9 pooka if (donesome)
326 1.9 pooka error = 0;
327 1.9 pooka goto out;
328 1.9 pooka }
329 1.9 pooka bufpos += preq->preq_buflen;
330 1.9 pooka phg->phg_buflen -= preq->preq_buflen;
331 1.9 pooka donesome++;
332 1.9 pooka
333 1.9 pooka simple_lock(&pmp->pmp_lock);
334 1.9 pooka pmp->pmp_req_touser_waiters--;
335 1.9 pooka
336 1.9 pooka if (PUFFSOP_WANTREPLY(preq->preq_opclass)) {
337 1.9 pooka TAILQ_INSERT_TAIL(&pmp->pmp_req_replywait, park,
338 1.9 pooka park_entries);
339 1.9 pooka } else {
340 1.1 pooka simple_unlock(&pmp->pmp_lock);
341 1.9 pooka free(preq, M_PUFFS);
342 1.9 pooka free(park, M_PUFFS);
343 1.9 pooka simple_lock(&pmp->pmp_lock);
344 1.1 pooka }
345 1.1 pooka }
346 1.1 pooka
347 1.9 pooka out:
348 1.9 pooka phg->phg_more = pmp->pmp_req_touser_waiters;
349 1.1 pooka simple_unlock(&pmp->pmp_lock);
350 1.1 pooka
351 1.9 pooka phg->phg_nops = donesome;
352 1.4 pooka
353 1.9 pooka return error;
354 1.1 pooka }
355 1.1 pooka
356 1.10 pooka int
357 1.10 pooka puffs_putop(struct puffs_mount *pmp, struct puffs_reqh_put *php)
358 1.1 pooka {
359 1.1 pooka struct puffs_park *park;
360 1.9 pooka void *userbuf;
361 1.9 pooka uint64_t id;
362 1.9 pooka size_t reqlen;
363 1.1 pooka int error;
364 1.9 pooka int donesome;
365 1.9 pooka
366 1.9 pooka donesome = error = 0;
367 1.9 pooka
368 1.9 pooka id = php->php_id;
369 1.9 pooka userbuf = php->php_buf;
370 1.9 pooka reqlen = php->php_buflen;
371 1.1 pooka
372 1.1 pooka simple_lock(&pmp->pmp_lock);
373 1.9 pooka while (donesome != php->php_nops) {
374 1.9 pooka #ifdef DEBUG
375 1.9 pooka simple_unlock(&pmp->pmp_lock);
376 1.9 pooka DPRINTF(("puffsputop: searching for %" PRIu64 ", ubuf: %p, "
377 1.9 pooka "len %zu\n", id, userbuf, reqlen));
378 1.9 pooka simple_lock(&pmp->pmp_lock);
379 1.9 pooka #endif
380 1.9 pooka TAILQ_FOREACH(park, &pmp->pmp_req_replywait, park_entries) {
381 1.9 pooka if (park->park_preq->preq_id == id)
382 1.9 pooka break;
383 1.9 pooka }
384 1.9 pooka
385 1.9 pooka if (park == NULL) {
386 1.9 pooka error = EINVAL;
387 1.1 pooka break;
388 1.1 pooka }
389 1.9 pooka TAILQ_REMOVE(&pmp->pmp_req_replywait, park, park_entries);
390 1.9 pooka simple_unlock(&pmp->pmp_lock);
391 1.9 pooka
392 1.9 pooka if (park->park_maxlen != park->park_copylen) {
393 1.9 pooka /* sanitycheck size of incoming transmission. */
394 1.9 pooka if (reqlen > pmp->pmp_req_maxsize) {
395 1.9 pooka DPRINTF(("puffsputop: outrageous user buf "
396 1.9 pooka "size: %zu\n", reqlen));
397 1.9 pooka error = EINVAL;
398 1.9 pooka goto loopout;
399 1.9 pooka }
400 1.1 pooka
401 1.9 pooka if (reqlen > park->park_copylen) {
402 1.9 pooka if (reqlen > park->park_maxlen) {
403 1.9 pooka DPRINTF(("puffsputop: adj copysize "
404 1.9 pooka "> max size, %zu vs %zu\n",
405 1.9 pooka reqlen, park->park_maxlen));
406 1.9 pooka error = EINVAL;
407 1.9 pooka goto loopout;
408 1.9 pooka }
409 1.9 pooka free(park->park_preq, M_PUFFS);
410 1.9 pooka park->park_preq = malloc(reqlen,
411 1.9 pooka M_PUFFS, M_WAITOK);
412 1.9 pooka
413 1.9 pooka park->park_copylen = reqlen;
414 1.9 pooka DPRINTF(("puffsputop: adjbuf, new addr %p, "
415 1.9 pooka "len %zu\n", park->park_preq, reqlen));
416 1.9 pooka }
417 1.9 pooka } else {
418 1.9 pooka if (reqlen == 0 || reqlen > park->park_copylen) {
419 1.9 pooka reqlen = park->park_copylen;
420 1.9 pooka DPRINTF(("puffsputop: kernel bufsize override: "
421 1.9 pooka "%zu\n", reqlen));
422 1.9 pooka }
423 1.9 pooka }
424 1.1 pooka
425 1.9 pooka DPRINTF(("puffsputpop: copyin from %p to %p, len %zu\n",
426 1.9 pooka userbuf, park->park_preq, reqlen));
427 1.9 pooka error = copyin(userbuf, park->park_preq, reqlen);
428 1.9 pooka if (error)
429 1.9 pooka goto loopout;
430 1.9 pooka
431 1.9 pooka /* all's well, prepare for next op */
432 1.9 pooka id = park->park_preq->preq_id;
433 1.9 pooka reqlen = park->park_preq->preq_buflen;
434 1.9 pooka userbuf = park->park_preq->preq_nextbuf;
435 1.9 pooka donesome++;
436 1.9 pooka
437 1.9 pooka loopout:
438 1.9 pooka if (error)
439 1.9 pooka park->park_preq->preq_rv = error;
440 1.9 pooka wakeup(park);
441 1.1 pooka
442 1.9 pooka simple_lock(&pmp->pmp_lock);
443 1.9 pooka if (error)
444 1.9 pooka break;
445 1.1 pooka }
446 1.1 pooka
447 1.9 pooka simple_unlock(&pmp->pmp_lock);
448 1.9 pooka php->php_nops -= donesome;
449 1.1 pooka
450 1.1 pooka return error;
451 1.1 pooka }
452 1.1 pooka
453 1.1 pooka /* this is probably going to die away at some point? */
454 1.9 pooka /*
455 1.9 pooka * XXX: currently bitrotted
456 1.9 pooka */
457 1.9 pooka #if 0
458 1.1 pooka static int
459 1.1 pooka puffssizeop(struct puffs_mount *pmp, struct puffs_sizeop *psop_user)
460 1.1 pooka {
461 1.1 pooka struct puffs_sizepark *pspark;
462 1.1 pooka void *kernbuf;
463 1.1 pooka size_t copylen;
464 1.1 pooka int error;
465 1.1 pooka
466 1.1 pooka /* locate correct op */
467 1.1 pooka simple_lock(&pmp->pmp_lock);
468 1.1 pooka TAILQ_FOREACH(pspark, &pmp->pmp_req_sizepark, pkso_entries) {
469 1.1 pooka if (pspark->pkso_reqid == psop_user->pso_reqid) {
470 1.1 pooka TAILQ_REMOVE(&pmp->pmp_req_sizepark, pspark,
471 1.1 pooka pkso_entries);
472 1.1 pooka break;
473 1.1 pooka }
474 1.1 pooka }
475 1.1 pooka simple_unlock(&pmp->pmp_lock);
476 1.1 pooka
477 1.1 pooka if (pspark == NULL)
478 1.1 pooka return EINVAL;
479 1.1 pooka
480 1.1 pooka error = 0;
481 1.1 pooka copylen = MIN(pspark->pkso_bufsize, psop_user->pso_bufsize);
482 1.1 pooka
483 1.1 pooka /*
484 1.1 pooka * XXX: uvm stuff to avoid bouncy-bouncy copying?
485 1.1 pooka */
486 1.1 pooka if (PUFFS_SIZEOP_UIO(pspark->pkso_reqtype)) {
487 1.1 pooka kernbuf = malloc(copylen, M_PUFFS, M_WAITOK | M_ZERO);
488 1.1 pooka if (pspark->pkso_reqtype == PUFFS_SIZEOPREQ_UIO_IN) {
489 1.1 pooka error = copyin(psop_user->pso_userbuf,
490 1.1 pooka kernbuf, copylen);
491 1.1 pooka if (error) {
492 1.1 pooka printf("psop ERROR1 %d\n", error);
493 1.1 pooka goto escape;
494 1.1 pooka }
495 1.1 pooka }
496 1.1 pooka error = uiomove(kernbuf, copylen, pspark->pkso_uio);
497 1.1 pooka if (error) {
498 1.1 pooka printf("uiomove from kernel %p, len %d failed: %d\n",
499 1.1 pooka kernbuf, (int)copylen, error);
500 1.1 pooka goto escape;
501 1.1 pooka }
502 1.1 pooka
503 1.1 pooka if (pspark->pkso_reqtype == PUFFS_SIZEOPREQ_UIO_OUT) {
504 1.1 pooka error = copyout(kernbuf,
505 1.1 pooka psop_user->pso_userbuf, copylen);
506 1.1 pooka if (error) {
507 1.1 pooka printf("psop ERROR2 %d\n", error);
508 1.1 pooka goto escape;
509 1.1 pooka }
510 1.1 pooka }
511 1.1 pooka escape:
512 1.1 pooka free(kernbuf, M_PUFFS);
513 1.1 pooka } else if (PUFFS_SIZEOP_BUF(pspark->pkso_reqtype)) {
514 1.1 pooka copylen = MAX(pspark->pkso_bufsize, psop_user->pso_bufsize);
515 1.1 pooka if (pspark->pkso_reqtype == PUFFS_SIZEOPREQ_BUF_IN) {
516 1.1 pooka error = copyin(psop_user->pso_userbuf,
517 1.1 pooka pspark->pkso_copybuf, copylen);
518 1.1 pooka } else {
519 1.1 pooka error = copyout(pspark->pkso_copybuf,
520 1.1 pooka psop_user->pso_userbuf, copylen);
521 1.1 pooka }
522 1.1 pooka }
523 1.1 pooka #ifdef DIAGNOSTIC
524 1.1 pooka else
525 1.1 pooka panic("puffssizeop: invalid reqtype %d\n",
526 1.1 pooka pspark->pkso_reqtype);
527 1.1 pooka #endif /* DIAGNOSTIC */
528 1.1 pooka
529 1.1 pooka return error;
530 1.1 pooka }
531 1.9 pooka #endif
532