blob: cb50f4ae5eefa1f5cde720f43daaf6f19e9034eb [file] [log] [blame]
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -05001/*
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05002 * The Virtio 9p transport driver
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -05003 *
Eric Van Hensbergene2735b72008-02-06 19:25:58 -06004 * This is a block based transport driver based on the lguest block driver
5 * code.
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -05006 *
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -05007 * Copyright (C) 2007, 2008 Eric Van Hensbergen, IBM Corporation
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -05008 *
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>
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050042#include <net/9p/client.h>
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050043#include <net/9p/transport.h>
44#include <linux/scatterlist.h>
45#include <linux/virtio.h>
46#include <linux/virtio_9p.h>
47
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060048#define VIRTQUEUE_NUM 128
49
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050050/* a single mutex to manage channel initialization and attachment */
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -060051static DEFINE_MUTEX(virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050052/* global which tracks highest initialized channel */
53static int chan_index;
54
Eric Van Hensbergenee443992008-03-05 07:08:09 -060055/**
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
Abhishek Kulkarni0e155972009-07-19 13:41:55 -060060 * @client: client instance
Eric Van Hensbergenee443992008-03-05 07:08:09 -060061 * @vdev: virtio dev associated with this channel
62 * @vq: virtio queue associated with this channel
Eric Van Hensbergenee443992008-03-05 07:08:09 -060063 * @sg: scatter gather list which is used to pack a request (protected?)
64 *
65 * We keep all per-channel information in a structure.
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050066 * This structure is allocated within the devices dev->mem space.
67 * A pointer to the structure will get put in the transport private.
Eric Van Hensbergenee443992008-03-05 07:08:09 -060068 *
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050069 */
Eric Van Hensbergenee443992008-03-05 07:08:09 -060070
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050071static struct virtio_chan {
Eric Van Hensbergenee443992008-03-05 07:08:09 -060072 bool initialized;
73 bool inuse;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050074
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060075 spinlock_t lock;
76
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050077 struct p9_client *client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050078 struct virtio_device *vdev;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060079 struct virtqueue *vq;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050080
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060081 /* Scatterlist: can be too big for stack. */
82 struct scatterlist sg[VIRTQUEUE_NUM];
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050083} 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
Eric Van Hensbergenee443992008-03-05 07:08:09 -060091/**
92 * p9_virtio_close - reclaim resources of a channel
Abhishek Kulkarni0e155972009-07-19 13:41:55 -060093 * @client: client instance
Eric Van Hensbergenee443992008-03-05 07:08:09 -060094 *
95 * This reclaims a channel by freeing its resources and
96 * reseting its inuse flag.
97 *
98 */
99
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500100static void p9_virtio_close(struct p9_client *client)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500101{
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500102 struct virtio_chan *chan = client->trans;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500103
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600104 mutex_lock(&virtio_9p_lock);
Aneesh Kumar K.Vfb786102010-02-08 11:50:32 +0000105 if (chan)
106 chan->inuse = false;
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600107 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500108}
109
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600110/**
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
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600123static void req_done(struct virtqueue *vq)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500124{
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600125 struct virtio_chan *chan = vq->vdev->priv;
126 struct p9_fcall *rc;
127 unsigned int len;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600128 struct p9_req_t *req;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500129
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500130 P9_DPRINTK(P9_DEBUG_TRANS, ": request done\n");
131
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600132 while ((rc = chan->vq->vq_ops->get_buf(chan->vq, &len)) != NULL) {
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500133 P9_DPRINTK(P9_DEBUG_TRANS, ": rc %p\n", rc);
134 P9_DPRINTK(P9_DEBUG_TRANS, ": lookup tag %d\n", rc->tag);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500135 req = p9_tag_lookup(chan->client, rc->tag);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500136 req->status = REQ_STATUS_RCVD;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500137 p9_client_cb(chan->client, req);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600138 }
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500139}
140
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600141/**
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
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600155static 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;
Julia Lawalld6584f32008-02-17 18:42:53 -0800169 BUG_ON(index > limit);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600170 }
171
172 return index-start;
173}
174
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500175/* 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
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600181/**
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500182 * p9_virtio_request - issue a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600183 * @client: client instance issuing the request
184 * @req: request to be issued
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600185 *
186 */
187
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600188static int
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500189p9_virtio_request(struct p9_client *client, struct p9_req_t *req)
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600190{
191 int in, out;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500192 struct virtio_chan *chan = client->trans;
193 char *rdata = (char *)req->rc+sizeof(struct p9_fcall);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600194
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500195 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600196
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500197 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);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600201
202 req->status = REQ_STATUS_SENT;
203
Rusty Russell3c1b27d2009-09-23 22:26:31 -0600204 if (chan->vq->vq_ops->add_buf(chan->vq, chan->sg, out, in, req->tc) < 0) {
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600205 P9_DPRINTK(P9_DEBUG_TRANS,
206 "9p debug: virtio rpc add_buf returned failure");
207 return -EIO;
208 }
209
210 chan->vq->vq_ops->kick(chan->vq);
211
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500212 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request kicked\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600213 return 0;
214}
215
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600216/**
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
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600226static int p9_virtio_probe(struct virtio_device *vdev)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500227{
228 int err;
229 struct virtio_chan *chan;
230 int index;
231
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600232 mutex_lock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500233 index = chan_index++;
234 chan = &channels[index];
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600235 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500236
237 if (chan_index > MAX_9P_CHAN) {
238 printk(KERN_ERR "9p: virtio: Maximum channels exceeded\n");
239 BUG();
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500240 err = -ENOMEM;
241 goto fail;
242 }
243
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600244 chan->vdev = vdev;
245
246 /* We expect one virtqueue, for requests. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600247 chan->vq = virtio_find_single_vq(vdev, req_done, "requests");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600248 if (IS_ERR(chan->vq)) {
249 err = PTR_ERR(chan->vq);
250 goto out_free_vq;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500251 }
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600252 chan->vq->vdev->priv = chan;
253 spin_lock_init(&chan->lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500254
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600255 sg_init_table(chan->sg, VIRTQUEUE_NUM);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500256
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500257 chan->inuse = false;
258 chan->initialized = true;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500259 return 0;
260
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600261out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600262 vdev->config->del_vqs(vdev);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500263fail:
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600264 mutex_lock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500265 chan_index--;
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600266 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500267 return err;
268}
269
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600270
271/**
272 * p9_virtio_create - allocate a new virtio channel
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500273 * @client: client instance invoking this transport
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600274 * @devname: string identifying the channel to connect to (unused)
275 * @args: args passed from sys_mount() for per-transport options (unused)
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600276 *
277 * This sets up a transport channel for 9p communication. Right now
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500278 * 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
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600281 * 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
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500291static int
292p9_virtio_create(struct p9_client *client, const char *devname, char *args)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500293{
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500294 struct virtio_chan *chan = channels;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600295 int index = 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500296
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600297 mutex_lock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500298 while (index < MAX_9P_CHAN) {
299 if (chan->initialized && !chan->inuse) {
300 chan->inuse = true;
301 break;
302 } else {
303 index++;
304 chan = &channels[index];
305 }
306 }
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600307 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500308
309 if (index >= MAX_9P_CHAN) {
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600310 printk(KERN_ERR "9p: no channels available\n");
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500311 return -ENODEV;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500312 }
313
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500314 client->trans = (void *)chan;
Eric Van Hensbergen562ada62010-01-15 18:54:03 -0600315 client->status = Connected;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500316 chan->client = client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500317
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500318 return 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500319}
320
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600321/**
322 * p9_virtio_remove - clean up resources associated with a virtio device
323 * @vdev: virtio device to remove
324 *
325 */
326
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600327static void p9_virtio_remove(struct virtio_device *vdev)
328{
329 struct virtio_chan *chan = vdev->priv;
330
331 BUG_ON(chan->inuse);
332
333 if (chan->initialized) {
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600334 vdev->config->del_vqs(vdev);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600335 chan->initialized = false;
336 }
337}
338
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500339static struct virtio_device_id id_table[] = {
340 { VIRTIO_ID_9P, VIRTIO_DEV_ANY_ID },
341 { 0 },
342};
343
344/* The standard "struct lguest_driver": */
345static struct virtio_driver p9_virtio_drv = {
346 .driver.name = KBUILD_MODNAME,
347 .driver.owner = THIS_MODULE,
348 .id_table = id_table,
349 .probe = p9_virtio_probe,
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600350 .remove = p9_virtio_remove,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500351};
352
353static struct p9_trans_module p9_virtio_trans = {
354 .name = "virtio",
355 .create = p9_virtio_create,
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500356 .close = p9_virtio_close,
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500357 .request = p9_virtio_request,
358 .cancel = p9_virtio_cancel,
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600359 .maxsize = PAGE_SIZE*16,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500360 .def = 0,
Tejun Heo72029fe2008-09-24 16:22:23 -0500361 .owner = THIS_MODULE,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500362};
363
364/* The standard init function */
365static int __init p9_virtio_init(void)
366{
367 int count;
368
369 for (count = 0; count < MAX_9P_CHAN; count++)
370 channels[count].initialized = false;
371
372 v9fs_register_trans(&p9_virtio_trans);
373 return register_virtio_driver(&p9_virtio_drv);
374}
375
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600376static void __exit p9_virtio_cleanup(void)
377{
378 unregister_virtio_driver(&p9_virtio_drv);
Tejun Heo72029fe2008-09-24 16:22:23 -0500379 v9fs_unregister_trans(&p9_virtio_trans);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600380}
381
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500382module_init(p9_virtio_init);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600383module_exit(p9_virtio_cleanup);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500384
385MODULE_DEVICE_TABLE(virtio, id_table);
386MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
387MODULE_DESCRIPTION("Virtio 9p Transport");
388MODULE_LICENSE("GPL");