blob: c8f3f72ab20e7c3aa2b7162f6a451b07cfadd455 [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>
48
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060049#define VIRTQUEUE_NUM 128
50
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050051/* a single mutex to manage channel initialization and attachment */
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -060052static DEFINE_MUTEX(virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050053
Eric Van Hensbergenee443992008-03-05 07:08:09 -060054/**
55 * struct virtio_chan - per-instance transport information
56 * @initialized: whether the channel is initialized
57 * @inuse: whether the channel is in use
58 * @lock: protects multiple elements within this structure
Abhishek Kulkarni0e155972009-07-19 13:41:55 -060059 * @client: client instance
Eric Van Hensbergenee443992008-03-05 07:08:09 -060060 * @vdev: virtio dev associated with this channel
61 * @vq: virtio queue associated with this channel
Eric Van Hensbergenee443992008-03-05 07:08:09 -060062 * @sg: scatter gather list which is used to pack a request (protected?)
63 *
64 * We keep all per-channel information in a structure.
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050065 * This structure is allocated within the devices dev->mem space.
66 * A pointer to the structure will get put in the transport private.
Eric Van Hensbergenee443992008-03-05 07:08:09 -060067 *
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050068 */
Eric Van Hensbergenee443992008-03-05 07:08:09 -060069
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +000070struct virtio_chan {
Eric Van Hensbergenee443992008-03-05 07:08:09 -060071 bool inuse;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050072
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060073 spinlock_t lock;
74
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -050075 struct p9_client *client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050076 struct virtio_device *vdev;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -060077 struct virtqueue *vq;
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -070078 int ring_bufs_avail;
79 wait_queue_head_t *vc_wq;
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];
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +000083
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +000084 int tag_len;
85 /*
86 * tag name to identify a mount Non-null terminated
87 */
88 char *tag;
89
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +000090 struct list_head chan_list;
91};
92
93static struct list_head virtio_chan_list;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -050094
95/* How many bytes left in this page. */
96static unsigned int rest_of_page(void *data)
97{
98 return PAGE_SIZE - ((unsigned long)data % PAGE_SIZE);
99}
100
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600101/**
102 * p9_virtio_close - reclaim resources of a channel
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600103 * @client: client instance
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600104 *
105 * This reclaims a channel by freeing its resources and
106 * reseting its inuse flag.
107 *
108 */
109
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500110static void p9_virtio_close(struct p9_client *client)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500111{
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500112 struct virtio_chan *chan = client->trans;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500113
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600114 mutex_lock(&virtio_9p_lock);
Aneesh Kumar K.Vfb786102010-02-08 11:50:32 +0000115 if (chan)
116 chan->inuse = false;
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600117 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500118}
119
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600120/**
121 * req_done - callback which signals activity from the server
122 * @vq: virtio queue activity was received on
123 *
124 * This notifies us that the server has triggered some activity
125 * on the virtio channel - most likely a response to request we
126 * sent. Figure out which requests now have responses and wake up
127 * those threads.
128 *
129 * Bugs: could do with some additional sanity checking, but appears to work.
130 *
131 */
132
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600133static void req_done(struct virtqueue *vq)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500134{
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600135 struct virtio_chan *chan = vq->vdev->priv;
136 struct p9_fcall *rc;
137 unsigned int len;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600138 struct p9_req_t *req;
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700139 unsigned long flags;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500140
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500141 P9_DPRINTK(P9_DEBUG_TRANS, ": request done\n");
142
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700143 do {
144 spin_lock_irqsave(&chan->lock, flags);
145 rc = virtqueue_get_buf(chan->vq, &len);
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700146
147 if (rc != NULL) {
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700148 if (!chan->ring_bufs_avail) {
149 chan->ring_bufs_avail = 1;
150 wake_up(chan->vc_wq);
151 }
152 spin_unlock_irqrestore(&chan->lock, flags);
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700153 P9_DPRINTK(P9_DEBUG_TRANS, ": rc %p\n", rc);
154 P9_DPRINTK(P9_DEBUG_TRANS, ": lookup tag %d\n",
155 rc->tag);
156 req = p9_tag_lookup(chan->client, rc->tag);
157 req->status = REQ_STATUS_RCVD;
158 p9_client_cb(chan->client, req);
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700159 } else {
160 spin_unlock_irqrestore(&chan->lock, flags);
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700161 }
162 } while (rc != NULL);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500163}
164
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600165/**
166 * pack_sg_list - pack a scatter gather list from a linear buffer
167 * @sg: scatter/gather list to pack into
168 * @start: which segment of the sg_list to start at
169 * @limit: maximum segment to pack data to
170 * @data: data to pack into scatter/gather list
171 * @count: amount of data to pack into the scatter/gather list
172 *
173 * sg_lists have multiple segments of various sizes. This will pack
174 * arbitrary data into an existing scatter gather list, segmenting the
175 * data as necessary within constraints.
176 *
177 */
178
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600179static int
180pack_sg_list(struct scatterlist *sg, int start, int limit, char *data,
181 int count)
182{
183 int s;
184 int index = start;
185
186 while (count) {
187 s = rest_of_page(data);
188 if (s > count)
189 s = count;
190 sg_set_buf(&sg[index++], data, s);
191 count -= s;
192 data += s;
Julia Lawalld6584f32008-02-17 18:42:53 -0800193 BUG_ON(index > limit);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600194 }
195
196 return index-start;
197}
198
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500199/* We don't currently allow canceling of virtio requests */
200static int p9_virtio_cancel(struct p9_client *client, struct p9_req_t *req)
201{
202 return 1;
203}
204
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600205/**
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500206 * p9_virtio_request - issue a request
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600207 * @client: client instance issuing the request
208 * @req: request to be issued
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600209 *
210 */
211
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600212static int
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500213p9_virtio_request(struct p9_client *client, struct p9_req_t *req)
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600214{
215 int in, out;
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500216 struct virtio_chan *chan = client->trans;
217 char *rdata = (char *)req->rc+sizeof(struct p9_fcall);
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700218 unsigned long flags;
219 int err;
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600220
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500221 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600222
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700223req_retry:
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700224 req->status = REQ_STATUS_SENT;
225
226 spin_lock_irqsave(&chan->lock, flags);
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500227 out = pack_sg_list(chan->sg, 0, VIRTQUEUE_NUM, req->tc->sdata,
228 req->tc->size);
229 in = pack_sg_list(chan->sg, out, VIRTQUEUE_NUM-out, rdata,
230 client->msize);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600231
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700232 err = virtqueue_add_buf(chan->vq, chan->sg, out, in, req->tc);
233 if (err < 0) {
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700234 if (err == -ENOSPC) {
235 chan->ring_bufs_avail = 0;
236 spin_unlock_irqrestore(&chan->lock, flags);
237 err = wait_event_interruptible(*chan->vc_wq,
238 chan->ring_bufs_avail);
239 if (err == -ERESTARTSYS)
240 return err;
241
242 P9_DPRINTK(P9_DEBUG_TRANS, "9p:Retry virtio request\n");
243 goto req_retry;
244 } else {
245 spin_unlock_irqrestore(&chan->lock, flags);
246 P9_DPRINTK(P9_DEBUG_TRANS,
247 "9p debug: "
248 "virtio rpc add_buf returned failure");
249 return -EIO;
250 }
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600251 }
252
Michael S. Tsirkindc3f5e62010-04-13 16:11:50 +0300253 virtqueue_kick(chan->vq);
Venkateswararao Jujjuri (JV)419b3952010-09-29 18:06:54 -0700254 spin_unlock_irqrestore(&chan->lock, flags);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600255
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500256 P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio request kicked\n");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600257 return 0;
258}
259
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000260static ssize_t p9_mount_tag_show(struct device *dev,
261 struct device_attribute *attr, char *buf)
262{
263 struct virtio_chan *chan;
264 struct virtio_device *vdev;
265
266 vdev = dev_to_virtio(dev);
267 chan = vdev->priv;
268
269 return snprintf(buf, chan->tag_len + 1, "%s", chan->tag);
270}
271
272static DEVICE_ATTR(mount_tag, 0444, p9_mount_tag_show, NULL);
273
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600274/**
275 * p9_virtio_probe - probe for existence of 9P virtio channels
276 * @vdev: virtio device to probe
277 *
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000278 * This probes for existing virtio channels.
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600279 *
280 */
281
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600282static int p9_virtio_probe(struct virtio_device *vdev)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500283{
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000284 __u16 tag_len;
285 char *tag;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500286 int err;
287 struct virtio_chan *chan;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500288
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000289 chan = kmalloc(sizeof(struct virtio_chan), GFP_KERNEL);
290 if (!chan) {
291 printk(KERN_ERR "9p: Failed to allocate virtio 9P channel\n");
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500292 err = -ENOMEM;
293 goto fail;
294 }
295
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600296 chan->vdev = vdev;
297
298 /* We expect one virtqueue, for requests. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600299 chan->vq = virtio_find_single_vq(vdev, req_done, "requests");
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600300 if (IS_ERR(chan->vq)) {
301 err = PTR_ERR(chan->vq);
302 goto out_free_vq;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500303 }
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600304 chan->vq->vdev->priv = chan;
305 spin_lock_init(&chan->lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500306
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600307 sg_init_table(chan->sg, VIRTQUEUE_NUM);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500308
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500309 chan->inuse = false;
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000310 if (virtio_has_feature(vdev, VIRTIO_9P_MOUNT_TAG)) {
311 vdev->config->get(vdev,
312 offsetof(struct virtio_9p_config, tag_len),
313 &tag_len, sizeof(tag_len));
314 } else {
315 err = -EINVAL;
316 goto out_free_vq;
317 }
318 tag = kmalloc(tag_len, GFP_KERNEL);
319 if (!tag) {
320 err = -ENOMEM;
321 goto out_free_vq;
322 }
323 vdev->config->get(vdev, offsetof(struct virtio_9p_config, tag),
324 tag, tag_len);
325 chan->tag = tag;
326 chan->tag_len = tag_len;
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000327 err = sysfs_create_file(&(vdev->dev.kobj), &dev_attr_mount_tag.attr);
328 if (err) {
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700329 goto out_free_tag;
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000330 }
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700331 chan->vc_wq = kmalloc(sizeof(wait_queue_head_t), GFP_KERNEL);
332 if (!chan->vc_wq) {
333 err = -ENOMEM;
334 goto out_free_tag;
335 }
336 init_waitqueue_head(chan->vc_wq);
337 chan->ring_bufs_avail = 1;
338
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000339 mutex_lock(&virtio_9p_lock);
340 list_add_tail(&chan->chan_list, &virtio_chan_list);
341 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500342 return 0;
343
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700344out_free_tag:
345 kfree(tag);
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600346out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600347 vdev->config->del_vqs(vdev);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000348 kfree(chan);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500349fail:
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500350 return err;
351}
352
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600353
354/**
355 * p9_virtio_create - allocate a new virtio channel
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500356 * @client: client instance invoking this transport
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600357 * @devname: string identifying the channel to connect to (unused)
358 * @args: args passed from sys_mount() for per-transport options (unused)
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600359 *
360 * This sets up a transport channel for 9p communication. Right now
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500361 * we only match the first available channel, but eventually we couldlook up
362 * alternate channels by matching devname versus a virtio_config entry.
363 * We use a simple reference count mechanism to ensure that only a single
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600364 * mount has a channel open at a time.
365 *
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600366 */
367
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500368static int
369p9_virtio_create(struct p9_client *client, const char *devname, char *args)
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500370{
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000371 struct virtio_chan *chan;
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000372 int ret = -ENOENT;
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000373 int found = 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500374
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600375 mutex_lock(&virtio_9p_lock);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000376 list_for_each_entry(chan, &virtio_chan_list, chan_list) {
Sven Eckelmann0b204062010-09-27 15:54:44 -0700377 if (!strncmp(devname, chan->tag, chan->tag_len) &&
378 strlen(devname) == chan->tag_len) {
Aneesh Kumar K.Vf75580c2010-02-15 17:27:00 +0000379 if (!chan->inuse) {
380 chan->inuse = true;
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000381 found = 1;
Aneesh Kumar K.Vf75580c2010-02-15 17:27:00 +0000382 break;
383 }
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000384 ret = -EBUSY;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500385 }
386 }
Josef 'Jeff' Sipekc1549492008-03-07 11:39:13 -0600387 mutex_unlock(&virtio_9p_lock);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500388
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000389 if (!found) {
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600390 printk(KERN_ERR "9p: no channels available\n");
Aneesh Kumar K.Vc1a7c222010-02-15 17:27:02 +0000391 return ret;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500392 }
393
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500394 client->trans = (void *)chan;
Eric Van Hensbergen562ada62010-01-15 18:54:03 -0600395 client->status = Connected;
Eric Van Hensbergenfea511a2008-10-13 18:45:23 -0500396 chan->client = client;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500397
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500398 return 0;
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500399}
400
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600401/**
402 * p9_virtio_remove - clean up resources associated with a virtio device
403 * @vdev: virtio device to remove
404 *
405 */
406
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600407static void p9_virtio_remove(struct virtio_device *vdev)
408{
409 struct virtio_chan *chan = vdev->priv;
410
411 BUG_ON(chan->inuse);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000412 vdev->config->del_vqs(vdev);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600413
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000414 mutex_lock(&virtio_9p_lock);
415 list_del(&chan->chan_list);
416 mutex_unlock(&virtio_9p_lock);
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000417 sysfs_remove_file(&(vdev->dev.kobj), &dev_attr_mount_tag.attr);
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000418 kfree(chan->tag);
Venkateswararao Jujjuri (JV)52f44e02010-09-29 18:33:41 -0700419 kfree(chan->vc_wq);
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000420 kfree(chan);
421
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600422}
423
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500424static struct virtio_device_id id_table[] = {
425 { VIRTIO_ID_9P, VIRTIO_DEV_ANY_ID },
426 { 0 },
427};
428
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000429static unsigned int features[] = {
430 VIRTIO_9P_MOUNT_TAG,
431};
432
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500433/* The standard "struct lguest_driver": */
434static struct virtio_driver p9_virtio_drv = {
Aneesh Kumar K.V97ee9b02010-03-06 04:44:14 +0000435 .feature_table = features,
436 .feature_table_size = ARRAY_SIZE(features),
437 .driver.name = KBUILD_MODNAME,
438 .driver.owner = THIS_MODULE,
439 .id_table = id_table,
440 .probe = p9_virtio_probe,
441 .remove = p9_virtio_remove,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500442};
443
444static struct p9_trans_module p9_virtio_trans = {
445 .name = "virtio",
446 .create = p9_virtio_create,
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -0500447 .close = p9_virtio_close,
Eric Van Hensbergen91b85342008-10-13 18:45:21 -0500448 .request = p9_virtio_request,
449 .cancel = p9_virtio_cancel,
Eric Van Hensbergene2735b72008-02-06 19:25:58 -0600450 .maxsize = PAGE_SIZE*16,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500451 .def = 0,
Tejun Heo72029fe2008-09-24 16:22:23 -0500452 .owner = THIS_MODULE,
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500453};
454
455/* The standard init function */
456static int __init p9_virtio_init(void)
457{
Aneesh Kumar K.V37c1209d42010-02-15 17:27:01 +0000458 INIT_LIST_HEAD(&virtio_chan_list);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500459
460 v9fs_register_trans(&p9_virtio_trans);
461 return register_virtio_driver(&p9_virtio_drv);
462}
463
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600464static void __exit p9_virtio_cleanup(void)
465{
466 unregister_virtio_driver(&p9_virtio_drv);
Tejun Heo72029fe2008-09-24 16:22:23 -0500467 v9fs_unregister_trans(&p9_virtio_trans);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600468}
469
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500470module_init(p9_virtio_init);
Eric Van Hensbergenf3933542008-02-06 19:25:04 -0600471module_exit(p9_virtio_cleanup);
Eric Van Hensbergenb530cc72007-10-23 13:47:31 -0500472
473MODULE_DEVICE_TABLE(virtio, id_table);
474MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
475MODULE_DESCRIPTION("Virtio 9p Transport");
476MODULE_LICENSE("GPL");