blob: cb98af9367ab356e0299f5e1c89123741628e19f [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050041#include <net/9p/9p.h>
42#include <linux/parser.h>
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050043#include <net/9p/client.h>
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050044#include <net/9p/transport.h>
45#include <linux/scatterlist.h>
46#include <linux/virtio.h>
47#include <linux/virtio_9p.h>
Venkateswararao Jujjuri (JV)40388662011-01-28 15:22:36 -080048#include "trans_common.h"
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050049
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060050#define VIRTQUEUE_NUM 128
51
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050052/* a single mutex to manage channel initialization and attachment */
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -060053static DEFINE_MUTEX(virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050054
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
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +000071struct virtio_chan {
Eric Van Hensbergenee443992008-03-05 07:08:09 -060072 bool inuse;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050073
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060074 spinlock_t lock;
75
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050076 struct p9_client *client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050077 struct virtio_device *vdev;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060078 struct virtqueue *vq;
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -070079 int ring_bufs_avail;
80 wait_queue_head_t *vc_wq;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050081
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060082 /* Scatterlist: can be too big for stack. */
83 struct scatterlist sg[VIRTQUEUE_NUM];
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +000084
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +000085 int tag_len;
86 /*
87 * tag name to identify a mount Non-null terminated
88 */
89 char *tag;
90
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +000091 struct list_head chan_list;
92};
93
94static struct list_head virtio_chan_list;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050095
96/* How many bytes left in this page. */
97static unsigned int rest_of_page(void *data)
98{
99 return PAGE_SIZE - ((unsigned long)data % PAGE_SIZE);
100}
101
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600102/**
103 * p9_virtio_close - reclaim resources of a channel
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600104 * @client: client instance
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600105 *
106 * This reclaims a channel by freeing its resources and
107 * reseting its inuse flag.
108 *
109 */
110
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500111static void p9_virtio_close(struct p9_client *client)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500112{
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500113 struct virtio_chan *chan = client->trans;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500114
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600115 mutex_lock(&virtio_9p_lock);
Aneesh Kumar K.Vfb786102010-02-08 11:50:32 +0000116 if (chan)
117 chan->inuse = false;
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600118 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500119}
120
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600121/**
122 * req_done - callback which signals activity from the server
123 * @vq: virtio queue activity was received on
124 *
125 * This notifies us that the server has triggered some activity
126 * on the virtio channel - most likely a response to request we
127 * sent. Figure out which requests now have responses and wake up
128 * those threads.
129 *
130 * Bugs: could do with some additional sanity checking, but appears to work.
131 *
132 */
133
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600134static void req_done(struct virtqueue *vq)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500135{
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600136 struct virtio_chan *chan = vq->vdev->priv;
137 struct p9_fcall *rc;
138 unsigned int len;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600139 struct p9_req_t *req;
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700140 unsigned long flags;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500141
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500142 P9_DPRINTK(P9_DEBUG_TRANS, ": request done\n");
143
Venkateswararao Jujjuri (JV)a01a9842011-03-14 14:12:49 -0700144 while (1) {
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700145 spin_lock_irqsave(&chan->lock, flags);
146 rc = virtqueue_get_buf(chan->vq, &len);
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700147
Venkateswararao Jujjuri (JV)a01a9842011-03-14 14:12:49 -0700148 if (rc == NULL) {
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700149 spin_unlock_irqrestore(&chan->lock, flags);
Venkateswararao Jujjuri (JV)a01a9842011-03-14 14:12:49 -0700150 break;
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700151 }
Venkateswararao Jujjuri (JV)a01a9842011-03-14 14:12:49 -0700152
153 chan->ring_bufs_avail = 1;
154 spin_unlock_irqrestore(&chan->lock, flags);
155 /* Wakeup if anyone waiting for VirtIO ring space. */
156 wake_up(chan->vc_wq);
157 P9_DPRINTK(P9_DEBUG_TRANS, ": rc %p\n", rc);
158 P9_DPRINTK(P9_DEBUG_TRANS, ": lookup tag %d\n", rc->tag);
159 req = p9_tag_lookup(chan->client, rc->tag);
160 if (req->tc->private) {
161 struct trans_rpage_info *rp = req->tc->private;
162 /*Release pages */
163 p9_release_req_pages(rp);
164 if (rp->rp_alloc)
165 kfree(rp);
166 req->tc->private = NULL;
167 }
168 req->status = REQ_STATUS_RCVD;
169 p9_client_cb(chan->client, req);
170 }
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500171}
172
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600173/**
174 * pack_sg_list - pack a scatter gather list from a linear buffer
175 * @sg: scatter/gather list to pack into
176 * @start: which segment of the sg_list to start at
177 * @limit: maximum segment to pack data to
178 * @data: data to pack into scatter/gather list
179 * @count: amount of data to pack into the scatter/gather list
180 *
181 * sg_lists have multiple segments of various sizes. This will pack
182 * arbitrary data into an existing scatter gather list, segmenting the
183 * data as necessary within constraints.
184 *
185 */
186
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600187static int
188pack_sg_list(struct scatterlist *sg, int start, int limit, char *data,
189 int count)
190{
191 int s;
192 int index = start;
193
194 while (count) {
195 s = rest_of_page(data);
196 if (s > count)
197 s = count;
198 sg_set_buf(&sg[index++], data, s);
199 count -= s;
200 data += s;
Julia Lawalld6584f32008-02-17 18:42:53 -0800201 BUG_ON(index > limit);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600202 }
203
204 return index-start;
205}
206
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500207/* We don't currently allow canceling of virtio requests */
208static int p9_virtio_cancel(struct p9_client *client, struct p9_req_t *req)
209{
210 return 1;
211}
212
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600213/**
Venkateswararao Jujjuri (JV)40388662011-01-28 15:22:36 -0800214 * pack_sg_list_p - Just like pack_sg_list. Instead of taking a buffer,
215 * this takes a list of pages.
216 * @sg: scatter/gather list to pack into
217 * @start: which segment of the sg_list to start at
218 * @pdata_off: Offset into the first page
219 * @**pdata: a list of pages to add into sg.
220 * @count: amount of data to pack into the scatter/gather list
221 */
222static int
223pack_sg_list_p(struct scatterlist *sg, int start, int limit, size_t pdata_off,
224 struct page **pdata, int count)
225{
226 int s;
227 int i = 0;
228 int index = start;
229
230 if (pdata_off) {
231 s = min((int)(PAGE_SIZE - pdata_off), count);
232 sg_set_page(&sg[index++], pdata[i++], s, pdata_off);
233 count -= s;
234 }
235
236 while (count) {
237 BUG_ON(index > limit);
238 s = min((int)PAGE_SIZE, count);
239 sg_set_page(&sg[index++], pdata[i++], s, 0);
240 count -= s;
241 }
242 return index-start;
243}
244
245/**
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500246 * p9_virtio_request - issue a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600247 * @client: client instance issuing the request
248 * @req: request to be issued
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600249 *
250 */
251
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600252static int
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500253p9_virtio_request(struct p9_client *client, struct p9_req_t *req)
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600254{
Venkateswararao Jujjuri (JV)40388662011-01-28 15:22:36 -0800255 int in, out, inp, outp;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500256 struct virtio_chan *chan = client->trans;
257 char *rdata = (char *)req->rc+sizeof(struct p9_fcall);
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700258 unsigned long flags;
Venkateswararao Jujjuri (JV)40388662011-01-28 15:22:36 -0800259 size_t pdata_off = 0;
260 struct trans_rpage_info *rpinfo = NULL;
261 int err, pdata_len = 0;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600262
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500263 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600264
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700265req_retry:
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700266 req->status = REQ_STATUS_SENT;
267
Venkateswararao Jujjuri (JV)40388662011-01-28 15:22:36 -0800268 if (req->tc->pbuf_size && (req->tc->pubuf && P9_IS_USER_CONTEXT)) {
269 int nr_pages = p9_nr_pages(req);
270 int rpinfo_size = sizeof(struct trans_rpage_info) +
271 sizeof(struct page *) * nr_pages;
272
273 if (rpinfo_size <= (req->tc->capacity - req->tc->size)) {
274 /* We can use sdata */
275 req->tc->private = req->tc->sdata + req->tc->size;
276 rpinfo = (struct trans_rpage_info *)req->tc->private;
277 rpinfo->rp_alloc = 0;
278 } else {
279 req->tc->private = kmalloc(rpinfo_size, GFP_NOFS);
280 if (!req->tc->private) {
281 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: "
282 "private kmalloc returned NULL");
283 return -ENOMEM;
284 }
285 rpinfo = (struct trans_rpage_info *)req->tc->private;
286 rpinfo->rp_alloc = 1;
287 }
288
289 err = p9_payload_gup(req, &pdata_off, &pdata_len, nr_pages,
290 req->tc->id == P9_TREAD ? 1 : 0);
291 if (err < 0) {
292 if (rpinfo->rp_alloc)
293 kfree(rpinfo);
294 return err;
295 }
296 }
297
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700298 spin_lock_irqsave(&chan->lock, flags);
Venkateswararao Jujjuri (JV)40388662011-01-28 15:22:36 -0800299
300 /* Handle out VirtIO ring buffers */
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500301 out = pack_sg_list(chan->sg, 0, VIRTQUEUE_NUM, req->tc->sdata,
Venkateswararao Jujjuri (JV)40388662011-01-28 15:22:36 -0800302 req->tc->size);
303
304 if (req->tc->pbuf_size && (req->tc->id == P9_TWRITE)) {
305 /* We have additional write payload buffer to take care */
306 if (req->tc->pubuf && P9_IS_USER_CONTEXT) {
307 outp = pack_sg_list_p(chan->sg, out, VIRTQUEUE_NUM,
308 pdata_off, rpinfo->rp_data, pdata_len);
309 } else {
310 char *pbuf = req->tc->pubuf ? req->tc->pubuf :
311 req->tc->pkbuf;
312 outp = pack_sg_list(chan->sg, out, VIRTQUEUE_NUM, pbuf,
313 req->tc->pbuf_size);
314 }
315 out += outp;
316 }
317
318 /* Handle in VirtIO ring buffers */
319 if (req->tc->pbuf_size &&
320 ((req->tc->id == P9_TREAD) || (req->tc->id == P9_TREADDIR))) {
321 /*
322 * Take care of additional Read payload.
323 * 11 is the read/write header = PDU Header(7) + IO Size (4).
324 * Arrange in such a way that server places header in the
325 * alloced memory and payload onto the user buffer.
326 */
327 inp = pack_sg_list(chan->sg, out, VIRTQUEUE_NUM, rdata, 11);
328 /*
329 * Running executables in the filesystem may result in
330 * a read request with kernel buffer as opposed to user buffer.
331 */
332 if (req->tc->pubuf && P9_IS_USER_CONTEXT) {
333 in = pack_sg_list_p(chan->sg, out+inp, VIRTQUEUE_NUM,
334 pdata_off, rpinfo->rp_data, pdata_len);
335 } else {
336 char *pbuf = req->tc->pubuf ? req->tc->pubuf :
337 req->tc->pkbuf;
338 in = pack_sg_list(chan->sg, out+inp, VIRTQUEUE_NUM,
339 pbuf, req->tc->pbuf_size);
340 }
341 in += inp;
342 } else {
343 in = pack_sg_list(chan->sg, out, VIRTQUEUE_NUM, rdata,
344 client->msize);
345 }
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600346
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700347 err = virtqueue_add_buf(chan->vq, chan->sg, out, in, req->tc);
348 if (err < 0) {
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700349 if (err == -ENOSPC) {
350 chan->ring_bufs_avail = 0;
351 spin_unlock_irqrestore(&chan->lock, flags);
352 err = wait_event_interruptible(*chan->vc_wq,
353 chan->ring_bufs_avail);
354 if (err == -ERESTARTSYS)
355 return err;
356
357 P9_DPRINTK(P9_DEBUG_TRANS, "9p:Retry virtio request\n");
358 goto req_retry;
359 } else {
360 spin_unlock_irqrestore(&chan->lock, flags);
361 P9_DPRINTK(P9_DEBUG_TRANS,
362 "9p debug: "
363 "virtio rpc add_buf returned failure");
Venkateswararao Jujjuri (JV)40388662011-01-28 15:22:36 -0800364 if (rpinfo && rpinfo->rp_alloc)
365 kfree(rpinfo);
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700366 return -EIO;
367 }
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600368 }
369
Michael S. Tsirkindc3f5e62010-04-13 16:11:50 +0300370 virtqueue_kick(chan->vq);
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700371 spin_unlock_irqrestore(&chan->lock, flags);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600372
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500373 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request kicked\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600374 return 0;
375}
376
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000377static ssize_t p9_mount_tag_show(struct device *dev,
378 struct device_attribute *attr, char *buf)
379{
380 struct virtio_chan *chan;
381 struct virtio_device *vdev;
382
383 vdev = dev_to_virtio(dev);
384 chan = vdev->priv;
385
386 return snprintf(buf, chan->tag_len + 1, "%s", chan->tag);
387}
388
389static DEVICE_ATTR(mount_tag, 0444, p9_mount_tag_show, NULL);
390
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600391/**
392 * p9_virtio_probe - probe for existence of 9P virtio channels
393 * @vdev: virtio device to probe
394 *
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000395 * This probes for existing virtio channels.
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600396 *
397 */
398
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600399static int p9_virtio_probe(struct virtio_device *vdev)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500400{
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000401 __u16 tag_len;
402 char *tag;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500403 int err;
404 struct virtio_chan *chan;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500405
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000406 chan = kmalloc(sizeof(struct virtio_chan), GFP_KERNEL);
407 if (!chan) {
408 printk(KERN_ERR "9p: Failed to allocate virtio 9P channel\n");
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500409 err = -ENOMEM;
410 goto fail;
411 }
412
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600413 chan->vdev = vdev;
414
415 /* We expect one virtqueue, for requests. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600416 chan->vq = virtio_find_single_vq(vdev, req_done, "requests");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600417 if (IS_ERR(chan->vq)) {
418 err = PTR_ERR(chan->vq);
419 goto out_free_vq;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500420 }
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600421 chan->vq->vdev->priv = chan;
422 spin_lock_init(&chan->lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500423
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600424 sg_init_table(chan->sg, VIRTQUEUE_NUM);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500425
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500426 chan->inuse = false;
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000427 if (virtio_has_feature(vdev, VIRTIO_9P_MOUNT_TAG)) {
428 vdev->config->get(vdev,
429 offsetof(struct virtio_9p_config, tag_len),
430 &tag_len, sizeof(tag_len));
431 } else {
432 err = -EINVAL;
433 goto out_free_vq;
434 }
435 tag = kmalloc(tag_len, GFP_KERNEL);
436 if (!tag) {
437 err = -ENOMEM;
438 goto out_free_vq;
439 }
440 vdev->config->get(vdev, offsetof(struct virtio_9p_config, tag),
441 tag, tag_len);
442 chan->tag = tag;
443 chan->tag_len = tag_len;
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000444 err = sysfs_create_file(&(vdev->dev.kobj), &dev_attr_mount_tag.attr);
445 if (err) {
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700446 goto out_free_tag;
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000447 }
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700448 chan->vc_wq = kmalloc(sizeof(wait_queue_head_t), GFP_KERNEL);
449 if (!chan->vc_wq) {
450 err = -ENOMEM;
451 goto out_free_tag;
452 }
453 init_waitqueue_head(chan->vc_wq);
454 chan->ring_bufs_avail = 1;
455
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000456 mutex_lock(&virtio_9p_lock);
457 list_add_tail(&chan->chan_list, &virtio_chan_list);
458 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500459 return 0;
460
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700461out_free_tag:
462 kfree(tag);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600463out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600464 vdev->config->del_vqs(vdev);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000465 kfree(chan);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500466fail:
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500467 return err;
468}
469
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600470
471/**
472 * p9_virtio_create - allocate a new virtio channel
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500473 * @client: client instance invoking this transport
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600474 * @devname: string identifying the channel to connect to (unused)
475 * @args: args passed from sys_mount() for per-transport options (unused)
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600476 *
477 * This sets up a transport channel for 9p communication. Right now
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500478 * we only match the first available channel, but eventually we couldlook up
479 * alternate channels by matching devname versus a virtio_config entry.
480 * We use a simple reference count mechanism to ensure that only a single
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600481 * mount has a channel open at a time.
482 *
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600483 */
484
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500485static int
486p9_virtio_create(struct p9_client *client, const char *devname, char *args)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500487{
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000488 struct virtio_chan *chan;
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000489 int ret = -ENOENT;
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000490 int found = 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500491
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600492 mutex_lock(&virtio_9p_lock);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000493 list_for_each_entry(chan, &virtio_chan_list, chan_list) {
Sven Eckelmann0b204062010-09-27 15:54:44 -0700494 if (!strncmp(devname, chan->tag, chan->tag_len) &&
495 strlen(devname) == chan->tag_len) {
Aneesh Kumar K.Vf75580c2010-02-15 17:27:00 +0000496 if (!chan->inuse) {
497 chan->inuse = true;
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000498 found = 1;
Aneesh Kumar K.Vf75580c2010-02-15 17:27:00 +0000499 break;
500 }
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000501 ret = -EBUSY;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500502 }
503 }
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600504 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500505
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000506 if (!found) {
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600507 printk(KERN_ERR "9p: no channels available\n");
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000508 return ret;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500509 }
510
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500511 client->trans = (void *)chan;
Eric Van Hensbergen562ada62010-01-15 18:54:03 -0600512 client->status = Connected;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500513 chan->client = client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500514
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500515 return 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500516}
517
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600518/**
519 * p9_virtio_remove - clean up resources associated with a virtio device
520 * @vdev: virtio device to remove
521 *
522 */
523
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600524static void p9_virtio_remove(struct virtio_device *vdev)
525{
526 struct virtio_chan *chan = vdev->priv;
527
528 BUG_ON(chan->inuse);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000529 vdev->config->del_vqs(vdev);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600530
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000531 mutex_lock(&virtio_9p_lock);
532 list_del(&chan->chan_list);
533 mutex_unlock(&virtio_9p_lock);
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000534 sysfs_remove_file(&(vdev->dev.kobj), &dev_attr_mount_tag.attr);
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000535 kfree(chan->tag);
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700536 kfree(chan->vc_wq);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000537 kfree(chan);
538
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600539}
540
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500541static struct virtio_device_id id_table[] = {
542 { VIRTIO_ID_9P, VIRTIO_DEV_ANY_ID },
543 { 0 },
544};
545
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000546static unsigned int features[] = {
547 VIRTIO_9P_MOUNT_TAG,
548};
549
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500550/* The standard "struct lguest_driver": */
551static struct virtio_driver p9_virtio_drv = {
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000552 .feature_table = features,
553 .feature_table_size = ARRAY_SIZE(features),
554 .driver.name = KBUILD_MODNAME,
555 .driver.owner = THIS_MODULE,
556 .id_table = id_table,
557 .probe = p9_virtio_probe,
558 .remove = p9_virtio_remove,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500559};
560
561static struct p9_trans_module p9_virtio_trans = {
562 .name = "virtio",
563 .create = p9_virtio_create,
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500564 .close = p9_virtio_close,
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500565 .request = p9_virtio_request,
566 .cancel = p9_virtio_cancel,
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600567 .maxsize = PAGE_SIZE*16,
Venkateswararao Jujjuri (JV)6f69c392011-02-06 12:08:01 -0800568 .pref = P9_TRANS_PREF_PAYLOAD_SEP,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500569 .def = 0,
Tejun Heo72029fe2008-09-24 16:22:23 -0500570 .owner = THIS_MODULE,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500571};
572
573/* The standard init function */
574static int __init p9_virtio_init(void)
575{
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000576 INIT_LIST_HEAD(&virtio_chan_list);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500577
578 v9fs_register_trans(&p9_virtio_trans);
579 return register_virtio_driver(&p9_virtio_drv);
580}
581
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600582static void __exit p9_virtio_cleanup(void)
583{
584 unregister_virtio_driver(&p9_virtio_drv);
Tejun Heo72029fe2008-09-24 16:22:23 -0500585 v9fs_unregister_trans(&p9_virtio_trans);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600586}
587
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500588module_init(p9_virtio_init);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600589module_exit(p9_virtio_cleanup);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500590
591MODULE_DEVICE_TABLE(virtio, id_table);
592MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
593MODULE_DESCRIPTION("Virtio 9p Transport");
594MODULE_LICENSE("GPL");