blob: 05918d3cb40de7fce1bd14bc503dff458541ed97 [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
Eric Van Hensbergenee443992008-03-05 07:08:09 -060053/**
54 * struct virtio_chan - per-instance transport information
55 * @initialized: whether the channel is initialized
56 * @inuse: whether the channel is in use
57 * @lock: protects multiple elements within this structure
Abhishek Kulkarni0e155972009-07-19 13:41:55 -060058 * @client: client instance
Eric Van Hensbergenee443992008-03-05 07:08:09 -060059 * @vdev: virtio dev associated with this channel
60 * @vq: virtio queue associated with this channel
Eric Van Hensbergenee443992008-03-05 07:08:09 -060061 * @sg: scatter gather list which is used to pack a request (protected?)
62 *
63 * We keep all per-channel information in a structure.
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050064 * This structure is allocated within the devices dev->mem space.
65 * A pointer to the structure will get put in the transport private.
Eric Van Hensbergenee443992008-03-05 07:08:09 -060066 *
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050067 */
Eric Van Hensbergenee443992008-03-05 07:08:09 -060068
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +000069struct virtio_chan {
Eric Van Hensbergenee443992008-03-05 07:08:09 -060070 bool inuse;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050071
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060072 spinlock_t lock;
73
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050074 struct p9_client *client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050075 struct virtio_device *vdev;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060076 struct virtqueue *vq;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050077
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060078 /* Scatterlist: can be too big for stack. */
79 struct scatterlist sg[VIRTQUEUE_NUM];
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +000080
81 struct list_head chan_list;
82};
83
84static struct list_head virtio_chan_list;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050085
86/* How many bytes left in this page. */
87static unsigned int rest_of_page(void *data)
88{
89 return PAGE_SIZE - ((unsigned long)data % PAGE_SIZE);
90}
91
Eric Van Hensbergenee443992008-03-05 07:08:09 -060092/**
93 * p9_virtio_close - reclaim resources of a channel
Abhishek Kulkarni0e155972009-07-19 13:41:55 -060094 * @client: client instance
Eric Van Hensbergenee443992008-03-05 07:08:09 -060095 *
96 * This reclaims a channel by freeing its resources and
97 * reseting its inuse flag.
98 *
99 */
100
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500101static void p9_virtio_close(struct p9_client *client)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500102{
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500103 struct virtio_chan *chan = client->trans;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500104
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600105 mutex_lock(&virtio_9p_lock);
Aneesh Kumar K.Vfb786102010-02-08 11:50:32 +0000106 if (chan)
107 chan->inuse = false;
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600108 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500109}
110
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600111/**
112 * req_done - callback which signals activity from the server
113 * @vq: virtio queue activity was received on
114 *
115 * This notifies us that the server has triggered some activity
116 * on the virtio channel - most likely a response to request we
117 * sent. Figure out which requests now have responses and wake up
118 * those threads.
119 *
120 * Bugs: could do with some additional sanity checking, but appears to work.
121 *
122 */
123
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600124static void req_done(struct virtqueue *vq)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500125{
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600126 struct virtio_chan *chan = vq->vdev->priv;
127 struct p9_fcall *rc;
128 unsigned int len;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600129 struct p9_req_t *req;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500130
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500131 P9_DPRINTK(P9_DEBUG_TRANS, ": request done\n");
132
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600133 while ((rc = chan->vq->vq_ops->get_buf(chan->vq, &len)) != NULL) {
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500134 P9_DPRINTK(P9_DEBUG_TRANS, ": rc %p\n", rc);
135 P9_DPRINTK(P9_DEBUG_TRANS, ": lookup tag %d\n", rc->tag);
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500136 req = p9_tag_lookup(chan->client, rc->tag);
Latchesar Ionkov1bab88b2009-04-05 16:28:59 -0500137 req->status = REQ_STATUS_RCVD;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500138 p9_client_cb(chan->client, req);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600139 }
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500140}
141
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600142/**
143 * pack_sg_list - pack a scatter gather list from a linear buffer
144 * @sg: scatter/gather list to pack into
145 * @start: which segment of the sg_list to start at
146 * @limit: maximum segment to pack data to
147 * @data: data to pack into scatter/gather list
148 * @count: amount of data to pack into the scatter/gather list
149 *
150 * sg_lists have multiple segments of various sizes. This will pack
151 * arbitrary data into an existing scatter gather list, segmenting the
152 * data as necessary within constraints.
153 *
154 */
155
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600156static int
157pack_sg_list(struct scatterlist *sg, int start, int limit, char *data,
158 int count)
159{
160 int s;
161 int index = start;
162
163 while (count) {
164 s = rest_of_page(data);
165 if (s > count)
166 s = count;
167 sg_set_buf(&sg[index++], data, s);
168 count -= s;
169 data += s;
Julia Lawalld6584f32008-02-17 18:42:53 -0800170 BUG_ON(index > limit);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600171 }
172
173 return index-start;
174}
175
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500176/* We don't currently allow canceling of virtio requests */
177static int p9_virtio_cancel(struct p9_client *client, struct p9_req_t *req)
178{
179 return 1;
180}
181
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600182/**
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500183 * p9_virtio_request - issue a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600184 * @client: client instance issuing the request
185 * @req: request to be issued
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600186 *
187 */
188
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600189static int
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500190p9_virtio_request(struct p9_client *client, struct p9_req_t *req)
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600191{
192 int in, out;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500193 struct virtio_chan *chan = client->trans;
194 char *rdata = (char *)req->rc+sizeof(struct p9_fcall);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600195
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500196 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600197
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500198 out = pack_sg_list(chan->sg, 0, VIRTQUEUE_NUM, req->tc->sdata,
199 req->tc->size);
200 in = pack_sg_list(chan->sg, out, VIRTQUEUE_NUM-out, rdata,
201 client->msize);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600202
203 req->status = REQ_STATUS_SENT;
204
Rusty Russell3c1b27d2009-09-23 22:26:31 -0600205 if (chan->vq->vq_ops->add_buf(chan->vq, chan->sg, out, in, req->tc) < 0) {
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600206 P9_DPRINTK(P9_DEBUG_TRANS,
207 "9p debug: virtio rpc add_buf returned failure");
208 return -EIO;
209 }
210
211 chan->vq->vq_ops->kick(chan->vq);
212
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500213 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request kicked\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600214 return 0;
215}
216
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600217/**
218 * p9_virtio_probe - probe for existence of 9P virtio channels
219 * @vdev: virtio device to probe
220 *
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000221 * This probes for existing virtio channels.
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600222 *
223 */
224
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600225static int p9_virtio_probe(struct virtio_device *vdev)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500226{
227 int err;
228 struct virtio_chan *chan;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500229
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000230 chan = kmalloc(sizeof(struct virtio_chan), GFP_KERNEL);
231 if (!chan) {
232 printk(KERN_ERR "9p: Failed to allocate virtio 9P channel\n");
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500233 err = -ENOMEM;
234 goto fail;
235 }
236
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600237 chan->vdev = vdev;
238
239 /* We expect one virtqueue, for requests. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600240 chan->vq = virtio_find_single_vq(vdev, req_done, "requests");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600241 if (IS_ERR(chan->vq)) {
242 err = PTR_ERR(chan->vq);
243 goto out_free_vq;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500244 }
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600245 chan->vq->vdev->priv = chan;
246 spin_lock_init(&chan->lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500247
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600248 sg_init_table(chan->sg, VIRTQUEUE_NUM);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500249
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500250 chan->inuse = false;
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000251 mutex_lock(&virtio_9p_lock);
252 list_add_tail(&chan->chan_list, &virtio_chan_list);
253 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500254 return 0;
255
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600256out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600257 vdev->config->del_vqs(vdev);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000258 kfree(chan);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500259fail:
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500260 return err;
261}
262
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600263
264/**
265 * p9_virtio_create - allocate a new virtio channel
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500266 * @client: client instance invoking this transport
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600267 * @devname: string identifying the channel to connect to (unused)
268 * @args: args passed from sys_mount() for per-transport options (unused)
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600269 *
270 * This sets up a transport channel for 9p communication. Right now
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500271 * we only match the first available channel, but eventually we couldlook up
272 * alternate channels by matching devname versus a virtio_config entry.
273 * We use a simple reference count mechanism to ensure that only a single
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600274 * mount has a channel open at a time.
275 *
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600276 */
277
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500278static int
279p9_virtio_create(struct p9_client *client, const char *devname, char *args)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500280{
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000281 struct virtio_chan *chan;
282 int found = 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500283
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600284 mutex_lock(&virtio_9p_lock);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000285 list_for_each_entry(chan, &virtio_chan_list, chan_list) {
286 if (!strcmp(devname, dev_name(&chan->vdev->dev))) {
Aneesh Kumar K.Vf75580c2010-02-15 17:27:00 +0000287 if (!chan->inuse) {
288 chan->inuse = true;
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000289 found = 1;
Aneesh Kumar K.Vf75580c2010-02-15 17:27:00 +0000290 break;
291 }
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500292 }
293 }
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600294 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500295
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000296 if (!found) {
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600297 printk(KERN_ERR "9p: no channels available\n");
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500298 return -ENODEV;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500299 }
300
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500301 client->trans = (void *)chan;
Eric Van Hensbergen562ada62010-01-15 18:54:03 -0600302 client->status = Connected;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500303 chan->client = client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500304
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500305 return 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500306}
307
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600308/**
309 * p9_virtio_remove - clean up resources associated with a virtio device
310 * @vdev: virtio device to remove
311 *
312 */
313
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600314static void p9_virtio_remove(struct virtio_device *vdev)
315{
316 struct virtio_chan *chan = vdev->priv;
317
318 BUG_ON(chan->inuse);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000319 vdev->config->del_vqs(vdev);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600320
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000321 mutex_lock(&virtio_9p_lock);
322 list_del(&chan->chan_list);
323 mutex_unlock(&virtio_9p_lock);
324 kfree(chan);
325
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600326}
327
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500328static struct virtio_device_id id_table[] = {
329 { VIRTIO_ID_9P, VIRTIO_DEV_ANY_ID },
330 { 0 },
331};
332
333/* The standard "struct lguest_driver": */
334static struct virtio_driver p9_virtio_drv = {
335 .driver.name = KBUILD_MODNAME,
336 .driver.owner = THIS_MODULE,
337 .id_table = id_table,
338 .probe = p9_virtio_probe,
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600339 .remove = p9_virtio_remove,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500340};
341
342static struct p9_trans_module p9_virtio_trans = {
343 .name = "virtio",
344 .create = p9_virtio_create,
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500345 .close = p9_virtio_close,
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500346 .request = p9_virtio_request,
347 .cancel = p9_virtio_cancel,
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600348 .maxsize = PAGE_SIZE*16,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500349 .def = 0,
Tejun Heo72029fe2008-09-24 16:22:23 -0500350 .owner = THIS_MODULE,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500351};
352
353/* The standard init function */
354static int __init p9_virtio_init(void)
355{
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000356 INIT_LIST_HEAD(&virtio_chan_list);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500357
358 v9fs_register_trans(&p9_virtio_trans);
359 return register_virtio_driver(&p9_virtio_drv);
360}
361
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600362static void __exit p9_virtio_cleanup(void)
363{
364 unregister_virtio_driver(&p9_virtio_drv);
Tejun Heo72029fe2008-09-24 16:22:23 -0500365 v9fs_unregister_trans(&p9_virtio_trans);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600366}
367
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500368module_init(p9_virtio_init);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600369module_exit(p9_virtio_cleanup);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500370
371MODULE_DEVICE_TABLE(virtio, id_table);
372MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
373MODULE_DESCRIPTION("Virtio 9p Transport");
374MODULE_LICENSE("GPL");