net/9p: Add multi channel support.
[deliverable/linux.git] / net / 9p / trans_virtio.c
CommitLineData
b530cc79 1/*
fea511a6 2 * The Virtio 9p transport driver
b530cc79 3 *
e2735b77
EVH
4 * This is a block based transport driver based on the lguest block driver
5 * code.
b530cc79 6 *
fea511a6 7 * Copyright (C) 2007, 2008 Eric Van Hensbergen, IBM Corporation
b530cc79
EVH
8 *
9 * Based on virtio console driver
10 * Copyright (C) 2006, 2007 Rusty Russell, IBM Corporation
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2
14 * as published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to:
23 * Free Software Foundation
24 * 51 Franklin Street, Fifth Floor
25 * Boston, MA 02111-1301 USA
26 *
27 */
28
29#include <linux/in.h>
30#include <linux/module.h>
31#include <linux/net.h>
32#include <linux/ipv6.h>
33#include <linux/errno.h>
34#include <linux/kernel.h>
35#include <linux/un.h>
36#include <linux/uaccess.h>
37#include <linux/inet.h>
38#include <linux/idr.h>
39#include <linux/file.h>
40#include <net/9p/9p.h>
41#include <linux/parser.h>
8b81ef58 42#include <net/9p/client.h>
b530cc79
EVH
43#include <net/9p/transport.h>
44#include <linux/scatterlist.h>
45#include <linux/virtio.h>
46#include <linux/virtio_9p.h>
47
e2735b77
EVH
48#define VIRTQUEUE_NUM 128
49
b530cc79 50/* a single mutex to manage channel initialization and attachment */
c1549497 51static DEFINE_MUTEX(virtio_9p_lock);
b530cc79
EVH
52/* global which tracks highest initialized channel */
53static int chan_index;
54
ee443996
EVH
55/**
56 * struct virtio_chan - per-instance transport information
57 * @initialized: whether the channel is initialized
58 * @inuse: whether the channel is in use
59 * @lock: protects multiple elements within this structure
0e15597e 60 * @client: client instance
ee443996
EVH
61 * @vdev: virtio dev associated with this channel
62 * @vq: virtio queue associated with this channel
ee443996
EVH
63 * @sg: scatter gather list which is used to pack a request (protected?)
64 *
65 * We keep all per-channel information in a structure.
b530cc79
EVH
66 * This structure is allocated within the devices dev->mem space.
67 * A pointer to the structure will get put in the transport private.
ee443996 68 *
b530cc79 69 */
ee443996 70
b530cc79 71static struct virtio_chan {
ee443996
EVH
72 bool initialized;
73 bool inuse;
b530cc79 74
e2735b77
EVH
75 spinlock_t lock;
76
fea511a6 77 struct p9_client *client;
b530cc79 78 struct virtio_device *vdev;
e2735b77 79 struct virtqueue *vq;
b530cc79 80
e2735b77
EVH
81 /* Scatterlist: can be too big for stack. */
82 struct scatterlist sg[VIRTQUEUE_NUM];
b530cc79
EVH
83} channels[MAX_9P_CHAN];
84
85/* How many bytes left in this page. */
86static unsigned int rest_of_page(void *data)
87{
88 return PAGE_SIZE - ((unsigned long)data % PAGE_SIZE);
89}
90
ee443996
EVH
91/**
92 * p9_virtio_close - reclaim resources of a channel
0e15597e 93 * @client: client instance
ee443996
EVH
94 *
95 * This reclaims a channel by freeing its resources and
96 * reseting its inuse flag.
97 *
98 */
99
8b81ef58 100static void p9_virtio_close(struct p9_client *client)
e2735b77 101{
8b81ef58 102 struct virtio_chan *chan = client->trans;
b530cc79 103
c1549497 104 mutex_lock(&virtio_9p_lock);
fb786100
AK
105 if (chan)
106 chan->inuse = false;
c1549497 107 mutex_unlock(&virtio_9p_lock);
b530cc79
EVH
108}
109
ee443996
EVH
110/**
111 * req_done - callback which signals activity from the server
112 * @vq: virtio queue activity was received on
113 *
114 * This notifies us that the server has triggered some activity
115 * on the virtio channel - most likely a response to request we
116 * sent. Figure out which requests now have responses and wake up
117 * those threads.
118 *
119 * Bugs: could do with some additional sanity checking, but appears to work.
120 *
121 */
122
e2735b77 123static void req_done(struct virtqueue *vq)
b530cc79 124{
e2735b77
EVH
125 struct virtio_chan *chan = vq->vdev->priv;
126 struct p9_fcall *rc;
127 unsigned int len;
e2735b77
EVH
128 struct p9_req_t *req;
129
91b8534f
EVH
130 P9_DPRINTK(P9_DEBUG_TRANS, ": request done\n");
131
e2735b77 132 while ((rc = chan->vq->vq_ops->get_buf(chan->vq, &len)) != NULL) {
91b8534f
EVH
133 P9_DPRINTK(P9_DEBUG_TRANS, ": rc %p\n", rc);
134 P9_DPRINTK(P9_DEBUG_TRANS, ": lookup tag %d\n", rc->tag);
fea511a6 135 req = p9_tag_lookup(chan->client, rc->tag);
1bab88b2 136 req->status = REQ_STATUS_RCVD;
91b8534f 137 p9_client_cb(chan->client, req);
e2735b77 138 }
e2735b77 139}
b530cc79 140
ee443996
EVH
141/**
142 * pack_sg_list - pack a scatter gather list from a linear buffer
143 * @sg: scatter/gather list to pack into
144 * @start: which segment of the sg_list to start at
145 * @limit: maximum segment to pack data to
146 * @data: data to pack into scatter/gather list
147 * @count: amount of data to pack into the scatter/gather list
148 *
149 * sg_lists have multiple segments of various sizes. This will pack
150 * arbitrary data into an existing scatter gather list, segmenting the
151 * data as necessary within constraints.
152 *
153 */
154
e2735b77
EVH
155static int
156pack_sg_list(struct scatterlist *sg, int start, int limit, char *data,
157 int count)
158{
159 int s;
160 int index = start;
161
162 while (count) {
163 s = rest_of_page(data);
164 if (s > count)
165 s = count;
166 sg_set_buf(&sg[index++], data, s);
167 count -= s;
168 data += s;
d6584f3a 169 BUG_ON(index > limit);
e2735b77 170 }
b530cc79 171
e2735b77 172 return index-start;
b530cc79
EVH
173}
174
91b8534f
EVH
175/* We don't currently allow canceling of virtio requests */
176static int p9_virtio_cancel(struct p9_client *client, struct p9_req_t *req)
177{
178 return 1;
179}
180
ee443996 181/**
91b8534f 182 * p9_virtio_request - issue a request
0e15597e
AK
183 * @client: client instance issuing the request
184 * @req: request to be issued
ee443996
EVH
185 *
186 */
187
e2735b77 188static int
91b8534f 189p9_virtio_request(struct p9_client *client, struct p9_req_t *req)
b530cc79 190{
e2735b77 191 int in, out;
91b8534f
EVH
192 struct virtio_chan *chan = client->trans;
193 char *rdata = (char *)req->rc+sizeof(struct p9_fcall);
b530cc79 194
91b8534f 195 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request\n");
b530cc79 196
91b8534f
EVH
197 out = pack_sg_list(chan->sg, 0, VIRTQUEUE_NUM, req->tc->sdata,
198 req->tc->size);
199 in = pack_sg_list(chan->sg, out, VIRTQUEUE_NUM-out, rdata,
200 client->msize);
b530cc79 201
e2735b77 202 req->status = REQ_STATUS_SENT;
b530cc79 203
3c1b27d5 204 if (chan->vq->vq_ops->add_buf(chan->vq, chan->sg, out, in, req->tc) < 0) {
e2735b77
EVH
205 P9_DPRINTK(P9_DEBUG_TRANS,
206 "9p debug: virtio rpc add_buf returned failure");
207 return -EIO;
208 }
b530cc79 209
e2735b77 210 chan->vq->vq_ops->kick(chan->vq);
b530cc79 211
91b8534f 212 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request kicked\n");
e2735b77 213 return 0;
b530cc79
EVH
214}
215
ee443996
EVH
216/**
217 * p9_virtio_probe - probe for existence of 9P virtio channels
218 * @vdev: virtio device to probe
219 *
220 * This probes for existing virtio channels. At present only
221 * a single channel is in use, so in the future more work may need
222 * to be done here.
223 *
224 */
225
e2735b77 226static int p9_virtio_probe(struct virtio_device *vdev)
b530cc79
EVH
227{
228 int err;
229 struct virtio_chan *chan;
230 int index;
231
c1549497 232 mutex_lock(&virtio_9p_lock);
b530cc79
EVH
233 index = chan_index++;
234 chan = &channels[index];
c1549497 235 mutex_unlock(&virtio_9p_lock);
b530cc79
EVH
236
237 if (chan_index > MAX_9P_CHAN) {
238 printk(KERN_ERR "9p: virtio: Maximum channels exceeded\n");
239 BUG();
b530cc79
EVH
240 err = -ENOMEM;
241 goto fail;
242 }
243
e2735b77 244 chan->vdev = vdev;
b530cc79 245
e2735b77 246 /* We expect one virtqueue, for requests. */
d2a7ddda 247 chan->vq = virtio_find_single_vq(vdev, req_done, "requests");
e2735b77
EVH
248 if (IS_ERR(chan->vq)) {
249 err = PTR_ERR(chan->vq);
250 goto out_free_vq;
b530cc79 251 }
e2735b77
EVH
252 chan->vq->vdev->priv = chan;
253 spin_lock_init(&chan->lock);
b530cc79 254
e2735b77 255 sg_init_table(chan->sg, VIRTQUEUE_NUM);
b530cc79 256
b530cc79
EVH
257 chan->inuse = false;
258 chan->initialized = true;
b530cc79
EVH
259 return 0;
260
e2735b77 261out_free_vq:
d2a7ddda 262 vdev->config->del_vqs(vdev);
b530cc79 263fail:
c1549497 264 mutex_lock(&virtio_9p_lock);
b530cc79 265 chan_index--;
c1549497 266 mutex_unlock(&virtio_9p_lock);
b530cc79
EVH
267 return err;
268}
269
ee443996
EVH
270
271/**
272 * p9_virtio_create - allocate a new virtio channel
8b81ef58 273 * @client: client instance invoking this transport
ee443996
EVH
274 * @devname: string identifying the channel to connect to (unused)
275 * @args: args passed from sys_mount() for per-transport options (unused)
ee443996
EVH
276 *
277 * This sets up a transport channel for 9p communication. Right now
b530cc79
EVH
278 * we only match the first available channel, but eventually we couldlook up
279 * alternate channels by matching devname versus a virtio_config entry.
280 * We use a simple reference count mechanism to ensure that only a single
ee443996
EVH
281 * mount has a channel open at a time.
282 *
283 * Bugs: doesn't allow identification of a specific channel
284 * to allocate, channels are allocated sequentially. This was
285 * a pragmatic decision to get things rolling, but ideally some
286 * way of identifying the channel to attach to would be nice
287 * if we are going to support multiple channels.
288 *
289 */
290
8b81ef58
EVH
291static int
292p9_virtio_create(struct p9_client *client, const char *devname, char *args)
b530cc79 293{
b530cc79 294 struct virtio_chan *chan = channels;
e2735b77 295 int index = 0;
b530cc79 296
c1549497 297 mutex_lock(&virtio_9p_lock);
b530cc79 298 while (index < MAX_9P_CHAN) {
f75580c4
AK
299 if (chan->initialized &&
300 !strcmp(devname, dev_name(&chan->vdev->dev))) {
301 if (!chan->inuse) {
302 chan->inuse = true;
303 break;
304 }
b530cc79 305 }
f75580c4
AK
306 index++;
307 chan = &channels[index];
b530cc79 308 }
c1549497 309 mutex_unlock(&virtio_9p_lock);
b530cc79
EVH
310
311 if (index >= MAX_9P_CHAN) {
e2735b77 312 printk(KERN_ERR "9p: no channels available\n");
8b81ef58 313 return -ENODEV;
e2735b77
EVH
314 }
315
8b81ef58 316 client->trans = (void *)chan;
562ada61 317 client->status = Connected;
fea511a6 318 chan->client = client;
b530cc79 319
8b81ef58 320 return 0;
b530cc79
EVH
321}
322
ee443996
EVH
323/**
324 * p9_virtio_remove - clean up resources associated with a virtio device
325 * @vdev: virtio device to remove
326 *
327 */
328
f3933545
EVH
329static void p9_virtio_remove(struct virtio_device *vdev)
330{
331 struct virtio_chan *chan = vdev->priv;
332
333 BUG_ON(chan->inuse);
334
335 if (chan->initialized) {
d2a7ddda 336 vdev->config->del_vqs(vdev);
f3933545
EVH
337 chan->initialized = false;
338 }
339}
340
b530cc79
EVH
341static struct virtio_device_id id_table[] = {
342 { VIRTIO_ID_9P, VIRTIO_DEV_ANY_ID },
343 { 0 },
344};
345
346/* The standard "struct lguest_driver": */
347static struct virtio_driver p9_virtio_drv = {
348 .driver.name = KBUILD_MODNAME,
349 .driver.owner = THIS_MODULE,
350 .id_table = id_table,
351 .probe = p9_virtio_probe,
f3933545 352 .remove = p9_virtio_remove,
b530cc79
EVH
353};
354
355static struct p9_trans_module p9_virtio_trans = {
356 .name = "virtio",
357 .create = p9_virtio_create,
8b81ef58 358 .close = p9_virtio_close,
91b8534f
EVH
359 .request = p9_virtio_request,
360 .cancel = p9_virtio_cancel,
e2735b77 361 .maxsize = PAGE_SIZE*16,
b530cc79 362 .def = 0,
72029fe8 363 .owner = THIS_MODULE,
b530cc79
EVH
364};
365
366/* The standard init function */
367static int __init p9_virtio_init(void)
368{
369 int count;
370
371 for (count = 0; count < MAX_9P_CHAN; count++)
372 channels[count].initialized = false;
373
374 v9fs_register_trans(&p9_virtio_trans);
375 return register_virtio_driver(&p9_virtio_drv);
376}
377
f3933545
EVH
378static void __exit p9_virtio_cleanup(void)
379{
380 unregister_virtio_driver(&p9_virtio_drv);
72029fe8 381 v9fs_unregister_trans(&p9_virtio_trans);
f3933545
EVH
382}
383
b530cc79 384module_init(p9_virtio_init);
f3933545 385module_exit(p9_virtio_cleanup);
b530cc79
EVH
386
387MODULE_DEVICE_TABLE(virtio, id_table);
388MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
389MODULE_DESCRIPTION("Virtio 9p Transport");
390MODULE_LICENSE("GPL");
This page took 0.202694 seconds and 5 git commands to generate.