提交 488b5ec8 编写于 作者: L Linus Torvalds

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs:
  9p: fix p9_printfcall export
  9p: transport API reorganization
  9p: add remove function to trans_virtio
  9p: Convert semaphore to spinlock for p9_idpool
  9p: fix mmap to be read-only
  9p: add support for sticky bit
  9p: Fix soft lockup in virtio transport
  9p: fix bug in attach-per-user
  9p: block-based virtio client
  9p: create transport rpc cut-thru
  9p: fix bug in p9_clone_stat
...@@ -175,7 +175,7 @@ struct p9_fid *v9fs_fid_lookup(struct dentry *dentry) ...@@ -175,7 +175,7 @@ struct p9_fid *v9fs_fid_lookup(struct dentry *dentry)
if (!wnames) if (!wnames)
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
for (d = dentry, i = n; i >= 0; i--, d = d->d_parent) for (d = dentry, i = (n-1); i >= 0; i--, d = d->d_parent)
wnames[i] = (char *) d->d_name.name; wnames[i] = (char *) d->d_name.name;
clone = 1; clone = 1;
...@@ -183,7 +183,7 @@ struct p9_fid *v9fs_fid_lookup(struct dentry *dentry) ...@@ -183,7 +183,7 @@ struct p9_fid *v9fs_fid_lookup(struct dentry *dentry)
while (i < n) { while (i < n) {
l = min(n - i, P9_MAXWELEM); l = min(n - i, P9_MAXWELEM);
fid = p9_client_walk(fid, l, &wnames[i], clone); fid = p9_client_walk(fid, l, &wnames[i], clone);
if (!fid) { if (IS_ERR(fid)) {
kfree(wnames); kfree(wnames);
return fid; return fid;
} }
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* *
* This file contains functions assisting in mapping VFS to 9P2000 * This file contains functions assisting in mapping VFS to 9P2000
* *
* Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com> * Copyright (C) 2004-2008 by Eric Van Hensbergen <ericvh@gmail.com>
* Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov> * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
#include <linux/idr.h> #include <linux/idr.h>
#include <net/9p/9p.h> #include <net/9p/9p.h>
#include <net/9p/transport.h> #include <net/9p/transport.h>
#include <net/9p/conn.h>
#include <net/9p/client.h> #include <net/9p/client.h>
#include "v9fs.h" #include "v9fs.h"
#include "v9fs_vfs.h" #include "v9fs_vfs.h"
...@@ -43,11 +42,11 @@ ...@@ -43,11 +42,11 @@
enum { enum {
/* Options that take integer arguments */ /* Options that take integer arguments */
Opt_debug, Opt_msize, Opt_dfltuid, Opt_dfltgid, Opt_afid, Opt_debug, Opt_dfltuid, Opt_dfltgid, Opt_afid,
/* String options */ /* String options */
Opt_uname, Opt_remotename, Opt_trans, Opt_uname, Opt_remotename, Opt_trans,
/* Options that take no arguments */ /* Options that take no arguments */
Opt_legacy, Opt_nodevmap, Opt_nodevmap,
/* Cache options */ /* Cache options */
Opt_cache_loose, Opt_cache_loose,
/* Access options */ /* Access options */
...@@ -58,14 +57,11 @@ enum { ...@@ -58,14 +57,11 @@ enum {
static match_table_t tokens = { static match_table_t tokens = {
{Opt_debug, "debug=%x"}, {Opt_debug, "debug=%x"},
{Opt_msize, "msize=%u"},
{Opt_dfltuid, "dfltuid=%u"}, {Opt_dfltuid, "dfltuid=%u"},
{Opt_dfltgid, "dfltgid=%u"}, {Opt_dfltgid, "dfltgid=%u"},
{Opt_afid, "afid=%u"}, {Opt_afid, "afid=%u"},
{Opt_uname, "uname=%s"}, {Opt_uname, "uname=%s"},
{Opt_remotename, "aname=%s"}, {Opt_remotename, "aname=%s"},
{Opt_trans, "trans=%s"},
{Opt_legacy, "noextend"},
{Opt_nodevmap, "nodevmap"}, {Opt_nodevmap, "nodevmap"},
{Opt_cache_loose, "cache=loose"}, {Opt_cache_loose, "cache=loose"},
{Opt_cache_loose, "loose"}, {Opt_cache_loose, "loose"},
...@@ -85,16 +81,14 @@ static void v9fs_parse_options(struct v9fs_session_info *v9ses) ...@@ -85,16 +81,14 @@ static void v9fs_parse_options(struct v9fs_session_info *v9ses)
char *options; char *options;
substring_t args[MAX_OPT_ARGS]; substring_t args[MAX_OPT_ARGS];
char *p; char *p;
int option; int option = 0;
int ret;
char *s, *e; char *s, *e;
int ret;
/* setup defaults */ /* setup defaults */
v9ses->maxdata = 8192;
v9ses->afid = ~0; v9ses->afid = ~0;
v9ses->debug = 0; v9ses->debug = 0;
v9ses->cache = 0; v9ses->cache = 0;
v9ses->trans = v9fs_default_trans();
if (!v9ses->options) if (!v9ses->options)
return; return;
...@@ -106,7 +100,8 @@ static void v9fs_parse_options(struct v9fs_session_info *v9ses) ...@@ -106,7 +100,8 @@ static void v9fs_parse_options(struct v9fs_session_info *v9ses)
continue; continue;
token = match_token(p, tokens, args); token = match_token(p, tokens, args);
if (token < Opt_uname) { if (token < Opt_uname) {
if ((ret = match_int(&args[0], &option)) < 0) { ret = match_int(&args[0], &option);
if (ret < 0) {
P9_DPRINTK(P9_DEBUG_ERROR, P9_DPRINTK(P9_DEBUG_ERROR,
"integer field, but no integer?\n"); "integer field, but no integer?\n");
continue; continue;
...@@ -119,9 +114,7 @@ static void v9fs_parse_options(struct v9fs_session_info *v9ses) ...@@ -119,9 +114,7 @@ static void v9fs_parse_options(struct v9fs_session_info *v9ses)
p9_debug_level = option; p9_debug_level = option;
#endif #endif
break; break;
case Opt_msize:
v9ses->maxdata = option;
break;
case Opt_dfltuid: case Opt_dfltuid:
v9ses->dfltuid = option; v9ses->dfltuid = option;
break; break;
...@@ -131,18 +124,12 @@ static void v9fs_parse_options(struct v9fs_session_info *v9ses) ...@@ -131,18 +124,12 @@ static void v9fs_parse_options(struct v9fs_session_info *v9ses)
case Opt_afid: case Opt_afid:
v9ses->afid = option; v9ses->afid = option;
break; break;
case Opt_trans:
v9ses->trans = v9fs_match_trans(&args[0]);
break;
case Opt_uname: case Opt_uname:
match_strcpy(v9ses->uname, &args[0]); match_strcpy(v9ses->uname, &args[0]);
break; break;
case Opt_remotename: case Opt_remotename:
match_strcpy(v9ses->aname, &args[0]); match_strcpy(v9ses->aname, &args[0]);
break; break;
case Opt_legacy:
v9ses->flags &= ~V9FS_EXTENDED;
break;
case Opt_nodevmap: case Opt_nodevmap:
v9ses->nodev = 1; v9ses->nodev = 1;
break; break;
...@@ -185,7 +172,6 @@ struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses, ...@@ -185,7 +172,6 @@ struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses,
const char *dev_name, char *data) const char *dev_name, char *data)
{ {
int retval = -EINVAL; int retval = -EINVAL;
struct p9_trans *trans = NULL;
struct p9_fid *fid; struct p9_fid *fid;
v9ses->uname = __getname(); v9ses->uname = __getname();
...@@ -207,24 +193,7 @@ struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses, ...@@ -207,24 +193,7 @@ struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses,
v9ses->options = kstrdup(data, GFP_KERNEL); v9ses->options = kstrdup(data, GFP_KERNEL);
v9fs_parse_options(v9ses); v9fs_parse_options(v9ses);
if (v9ses->trans == NULL) { v9ses->clnt = p9_client_create(dev_name, v9ses->options);
retval = -EPROTONOSUPPORT;
P9_DPRINTK(P9_DEBUG_ERROR,
"No transport defined or default transport\n");
goto error;
}
trans = v9ses->trans->create(dev_name, v9ses->options);
if (IS_ERR(trans)) {
retval = PTR_ERR(trans);
trans = NULL;
goto error;
}
if ((v9ses->maxdata+P9_IOHDRSZ) > v9ses->trans->maxsize)
v9ses->maxdata = v9ses->trans->maxsize-P9_IOHDRSZ;
v9ses->clnt = p9_client_create(trans, v9ses->maxdata+P9_IOHDRSZ,
v9fs_extended(v9ses));
if (IS_ERR(v9ses->clnt)) { if (IS_ERR(v9ses->clnt)) {
retval = PTR_ERR(v9ses->clnt); retval = PTR_ERR(v9ses->clnt);
...@@ -236,6 +205,8 @@ struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses, ...@@ -236,6 +205,8 @@ struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses,
if (!v9ses->clnt->dotu) if (!v9ses->clnt->dotu)
v9ses->flags &= ~V9FS_EXTENDED; v9ses->flags &= ~V9FS_EXTENDED;
v9ses->maxdata = v9ses->clnt->msize;
/* for legacy mode, fall back to V9FS_ACCESS_ANY */ /* for legacy mode, fall back to V9FS_ACCESS_ANY */
if (!v9fs_extended(v9ses) && if (!v9fs_extended(v9ses) &&
((v9ses->flags&V9FS_ACCESS_MASK) == V9FS_ACCESS_USER)) { ((v9ses->flags&V9FS_ACCESS_MASK) == V9FS_ACCESS_USER)) {
......
/* /*
* V9FS definitions. * V9FS definitions.
* *
* Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com> * Copyright (C) 2004-2008 by Eric Van Hensbergen <ericvh@gmail.com>
* Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov> * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
struct v9fs_session_info { struct v9fs_session_info {
/* options */ /* options */
unsigned int maxdata;
unsigned char flags; /* session flags */ unsigned char flags; /* session flags */
unsigned char nodev; /* set to 1 if no disable device mapping */ unsigned char nodev; /* set to 1 if no disable device mapping */
unsigned short debug; /* debug level */ unsigned short debug; /* debug level */
...@@ -38,10 +37,10 @@ struct v9fs_session_info { ...@@ -38,10 +37,10 @@ struct v9fs_session_info {
char *options; /* copy of mount options */ char *options; /* copy of mount options */
char *uname; /* user name to mount as */ char *uname; /* user name to mount as */
char *aname; /* name of remote hierarchy being mounted */ char *aname; /* name of remote hierarchy being mounted */
unsigned int maxdata; /* max data for client interface */
unsigned int dfltuid; /* default uid/muid for legacy support */ unsigned int dfltuid; /* default uid/muid for legacy support */
unsigned int dfltgid; /* default gid for legacy support */ unsigned int dfltgid; /* default gid for legacy support */
u32 uid; /* if ACCESS_SINGLE, the uid that has access */ u32 uid; /* if ACCESS_SINGLE, the uid that has access */
struct p9_trans_module *trans; /* 9p transport */
struct p9_client *clnt; /* 9p client */ struct p9_client *clnt; /* 9p client */
struct dentry *debugfs_dir; struct dentry *debugfs_dir;
}; };
......
...@@ -184,7 +184,7 @@ static const struct file_operations v9fs_cached_file_operations = { ...@@ -184,7 +184,7 @@ static const struct file_operations v9fs_cached_file_operations = {
.open = v9fs_file_open, .open = v9fs_file_open,
.release = v9fs_dir_release, .release = v9fs_dir_release,
.lock = v9fs_file_lock, .lock = v9fs_file_lock,
.mmap = generic_file_mmap, .mmap = generic_file_readonly_mmap,
}; };
const struct file_operations v9fs_file_operations = { const struct file_operations v9fs_file_operations = {
...@@ -194,5 +194,5 @@ const struct file_operations v9fs_file_operations = { ...@@ -194,5 +194,5 @@ const struct file_operations v9fs_file_operations = {
.open = v9fs_file_open, .open = v9fs_file_open,
.release = v9fs_dir_release, .release = v9fs_dir_release,
.lock = v9fs_file_lock, .lock = v9fs_file_lock,
.mmap = generic_file_mmap, .mmap = generic_file_readonly_mmap,
}; };
...@@ -77,6 +77,8 @@ static int unixmode2p9mode(struct v9fs_session_info *v9ses, int mode) ...@@ -77,6 +77,8 @@ static int unixmode2p9mode(struct v9fs_session_info *v9ses, int mode)
res |= P9_DMSETUID; res |= P9_DMSETUID;
if ((mode & S_ISGID) == S_ISGID) if ((mode & S_ISGID) == S_ISGID)
res |= P9_DMSETGID; res |= P9_DMSETGID;
if ((mode & S_ISVTX) == S_ISVTX)
res |= P9_DMSETVTX;
if ((mode & P9_DMLINK)) if ((mode & P9_DMLINK))
res |= P9_DMLINK; res |= P9_DMLINK;
} }
...@@ -119,6 +121,9 @@ static int p9mode2unixmode(struct v9fs_session_info *v9ses, int mode) ...@@ -119,6 +121,9 @@ static int p9mode2unixmode(struct v9fs_session_info *v9ses, int mode)
if ((mode & P9_DMSETGID) == P9_DMSETGID) if ((mode & P9_DMSETGID) == P9_DMSETGID)
res |= S_ISGID; res |= S_ISGID;
if ((mode & P9_DMSETVTX) == P9_DMSETVTX)
res |= S_ISVTX;
} }
return res; return res;
......
...@@ -124,6 +124,7 @@ enum { ...@@ -124,6 +124,7 @@ enum {
P9_DMSOCKET = 0x00100000, P9_DMSOCKET = 0x00100000,
P9_DMSETUID = 0x00080000, P9_DMSETUID = 0x00080000,
P9_DMSETGID = 0x00040000, P9_DMSETGID = 0x00040000,
P9_DMSETVTX = 0x00010000,
}; };
/* qid.types */ /* qid.types */
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
* *
* 9P Client Definitions * 9P Client Definitions
* *
* Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
* Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net> * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -29,6 +30,7 @@ struct p9_client { ...@@ -29,6 +30,7 @@ struct p9_client {
spinlock_t lock; /* protect client structure */ spinlock_t lock; /* protect client structure */
int msize; int msize;
unsigned char dotu; unsigned char dotu;
struct p9_trans_module *trans_mod;
struct p9_trans *trans; struct p9_trans *trans;
struct p9_conn *conn; struct p9_conn *conn;
...@@ -52,8 +54,7 @@ struct p9_fid { ...@@ -52,8 +54,7 @@ struct p9_fid {
struct list_head dlist; /* list of all fids attached to a dentry */ struct list_head dlist; /* list of all fids attached to a dentry */
}; };
struct p9_client *p9_client_create(struct p9_trans *trans, int msize, struct p9_client *p9_client_create(const char *dev_name, char *options);
int dotu);
void p9_client_destroy(struct p9_client *clnt); void p9_client_destroy(struct p9_client *clnt);
void p9_client_disconnect(struct p9_client *clnt); void p9_client_disconnect(struct p9_client *clnt);
struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid, struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
......
/*
* include/net/9p/conn.h
*
* Connection Definitions
*
* Copyright (C) 2005 by Latchesar Ionkov <lucho@ionkov.net>
* Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to:
* Free Software Foundation
* 51 Franklin Street, Fifth Floor
* Boston, MA 02111-1301 USA
*
*/
#ifndef NET_9P_CONN_H
#define NET_9P_CONN_H
#undef P9_NONBLOCK
struct p9_conn;
struct p9_req;
/**
* p9_mux_req_callback - callback function that is called when the
* response of a request is received. The callback is called from
* a workqueue and shouldn't block.
*
* @req - request
* @a - the pointer that was specified when the request was send to be
* passed to the callback
*/
typedef void (*p9_conn_req_callback)(struct p9_req *req, void *a);
struct p9_conn *p9_conn_create(struct p9_trans *trans, int msize,
unsigned char *dotu);
void p9_conn_destroy(struct p9_conn *);
int p9_conn_rpc(struct p9_conn *m, struct p9_fcall *tc, struct p9_fcall **rc);
#ifdef P9_NONBLOCK
int p9_conn_rpcnb(struct p9_conn *m, struct p9_fcall *tc,
p9_conn_req_callback cb, void *a);
#endif /* P9_NONBLOCK */
void p9_conn_cancel(struct p9_conn *m, int err);
#endif /* NET_9P_CONN_H */
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Transport Definition * Transport Definition
* *
* Copyright (C) 2005 by Latchesar Ionkov <lucho@ionkov.net> * Copyright (C) 2005 by Latchesar Ionkov <lucho@ionkov.net>
* Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com> * Copyright (C) 2004-2008 by Eric Van Hensbergen <ericvh@gmail.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 * it under the terms of the GNU General Public License version 2
...@@ -34,11 +34,12 @@ enum p9_trans_status { ...@@ -34,11 +34,12 @@ enum p9_trans_status {
struct p9_trans { struct p9_trans {
enum p9_trans_status status; enum p9_trans_status status;
int msize;
unsigned char extended;
void *priv; void *priv;
int (*write) (struct p9_trans *, void *, int);
int (*read) (struct p9_trans *, void *, int);
void (*close) (struct p9_trans *); void (*close) (struct p9_trans *);
unsigned int (*poll)(struct p9_trans *, struct poll_table_struct *); int (*rpc) (struct p9_trans *t, struct p9_fcall *tc,
struct p9_fcall **rc);
}; };
struct p9_trans_module { struct p9_trans_module {
...@@ -46,7 +47,7 @@ struct p9_trans_module { ...@@ -46,7 +47,7 @@ struct p9_trans_module {
char *name; /* name of transport */ char *name; /* name of transport */
int maxsize; /* max message size of transport */ int maxsize; /* max message size of transport */
int def; /* this transport should be default */ int def; /* this transport should be default */
struct p9_trans * (*create)(const char *devname, char *options); struct p9_trans * (*create)(const char *, char *, int, unsigned char);
}; };
void v9fs_register_trans(struct p9_trans_module *m); void v9fs_register_trans(struct p9_trans_module *m);
......
...@@ -4,7 +4,6 @@ obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o ...@@ -4,7 +4,6 @@ obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o
9pnet-objs := \ 9pnet-objs := \
mod.o \ mod.o \
mux.o \
client.o \ client.o \
conv.o \ conv.o \
error.o \ error.o \
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
* *
* 9P Client * 9P Client
* *
* Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
* Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net> * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -25,6 +26,7 @@ ...@@ -25,6 +26,7 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/poll.h>
#include <linux/idr.h> #include <linux/idr.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#include <linux/sched.h> #include <linux/sched.h>
...@@ -32,15 +34,97 @@ ...@@ -32,15 +34,97 @@
#include <net/9p/9p.h> #include <net/9p/9p.h>
#include <linux/parser.h> #include <linux/parser.h>
#include <net/9p/transport.h> #include <net/9p/transport.h>
#include <net/9p/conn.h>
#include <net/9p/client.h> #include <net/9p/client.h>
static struct p9_fid *p9_fid_create(struct p9_client *clnt); static struct p9_fid *p9_fid_create(struct p9_client *clnt);
static void p9_fid_destroy(struct p9_fid *fid); static void p9_fid_destroy(struct p9_fid *fid);
static struct p9_stat *p9_clone_stat(struct p9_stat *st, int dotu); static struct p9_stat *p9_clone_stat(struct p9_stat *st, int dotu);
struct p9_client *p9_client_create(struct p9_trans *trans, int msize, /*
int dotu) * Client Option Parsing (code inspired by NFS code)
* - a little lazy - parse all client options
*/
enum {
Opt_msize,
Opt_trans,
Opt_legacy,
Opt_err,
};
static match_table_t tokens = {
{Opt_msize, "msize=%u"},
{Opt_legacy, "noextend"},
{Opt_trans, "trans=%s"},
{Opt_err, NULL},
};
/**
* v9fs_parse_options - parse mount options into session structure
* @options: options string passed from mount
* @v9ses: existing v9fs session information
*
*/
static void parse_opts(char *options, struct p9_client *clnt)
{
char *p;
substring_t args[MAX_OPT_ARGS];
int option;
int ret;
clnt->trans_mod = v9fs_default_trans();
clnt->dotu = 1;
clnt->msize = 8192;
if (!options)
return;
while ((p = strsep(&options, ",")) != NULL) {
int token;
if (!*p)
continue;
token = match_token(p, tokens, args);
if (token < Opt_trans) {
ret = match_int(&args[0], &option);
if (ret < 0) {
P9_DPRINTK(P9_DEBUG_ERROR,
"integer field, but no integer?\n");
continue;
}
}
switch (token) {
case Opt_msize:
clnt->msize = option;
break;
case Opt_trans:
clnt->trans_mod = v9fs_match_trans(&args[0]);
break;
case Opt_legacy:
clnt->dotu = 0;
break;
default:
continue;
}
}
}
/**
* p9_client_rpc - sends 9P request and waits until a response is available.
* The function can be interrupted.
* @c: client data
* @tc: request to be sent
* @rc: pointer where a pointer to the response is stored
*/
int
p9_client_rpc(struct p9_client *c, struct p9_fcall *tc,
struct p9_fcall **rc)
{
return c->trans->rpc(c->trans, tc, rc);
}
struct p9_client *p9_client_create(const char *dev_name, char *options)
{ {
int err, n; int err, n;
struct p9_client *clnt; struct p9_client *clnt;
...@@ -54,12 +138,7 @@ struct p9_client *p9_client_create(struct p9_trans *trans, int msize, ...@@ -54,12 +138,7 @@ struct p9_client *p9_client_create(struct p9_trans *trans, int msize,
if (!clnt) if (!clnt)
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
P9_DPRINTK(P9_DEBUG_9P, "clnt %p trans %p msize %d dotu %d\n",
clnt, trans, msize, dotu);
spin_lock_init(&clnt->lock); spin_lock_init(&clnt->lock);
clnt->trans = trans;
clnt->msize = msize;
clnt->dotu = dotu;
INIT_LIST_HEAD(&clnt->fidlist); INIT_LIST_HEAD(&clnt->fidlist);
clnt->fidpool = p9_idpool_create(); clnt->fidpool = p9_idpool_create();
if (!clnt->fidpool) { if (!clnt->fidpool) {
...@@ -68,13 +147,29 @@ struct p9_client *p9_client_create(struct p9_trans *trans, int msize, ...@@ -68,13 +147,29 @@ struct p9_client *p9_client_create(struct p9_trans *trans, int msize,
goto error; goto error;
} }
clnt->conn = p9_conn_create(clnt->trans, clnt->msize, &clnt->dotu); parse_opts(options, clnt);
if (IS_ERR(clnt->conn)) { if (clnt->trans_mod == NULL) {
err = PTR_ERR(clnt->conn); err = -EPROTONOSUPPORT;
clnt->conn = NULL; P9_DPRINTK(P9_DEBUG_ERROR,
"No transport defined or default transport\n");
goto error; goto error;
} }
P9_DPRINTK(P9_DEBUG_9P, "clnt %p trans %p msize %d dotu %d\n",
clnt, clnt->trans_mod, clnt->msize, clnt->dotu);
clnt->trans = clnt->trans_mod->create(dev_name, options, clnt->msize,
clnt->dotu);
if (IS_ERR(clnt->trans)) {
err = PTR_ERR(clnt->trans);
clnt->trans = NULL;
goto error;
}
if ((clnt->msize+P9_IOHDRSZ) > clnt->trans_mod->maxsize)
clnt->msize = clnt->trans_mod->maxsize-P9_IOHDRSZ;
tc = p9_create_tversion(clnt->msize, clnt->dotu?"9P2000.u":"9P2000"); tc = p9_create_tversion(clnt->msize, clnt->dotu?"9P2000.u":"9P2000");
if (IS_ERR(tc)) { if (IS_ERR(tc)) {
err = PTR_ERR(tc); err = PTR_ERR(tc);
...@@ -82,7 +177,7 @@ struct p9_client *p9_client_create(struct p9_trans *trans, int msize, ...@@ -82,7 +177,7 @@ struct p9_client *p9_client_create(struct p9_trans *trans, int msize,
goto error; goto error;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto error; goto error;
...@@ -117,10 +212,6 @@ void p9_client_destroy(struct p9_client *clnt) ...@@ -117,10 +212,6 @@ void p9_client_destroy(struct p9_client *clnt)
struct p9_fid *fid, *fidptr; struct p9_fid *fid, *fidptr;
P9_DPRINTK(P9_DEBUG_9P, "clnt %p\n", clnt); P9_DPRINTK(P9_DEBUG_9P, "clnt %p\n", clnt);
if (clnt->conn) {
p9_conn_destroy(clnt->conn);
clnt->conn = NULL;
}
if (clnt->trans) { if (clnt->trans) {
clnt->trans->close(clnt->trans); clnt->trans->close(clnt->trans);
...@@ -142,7 +233,6 @@ void p9_client_disconnect(struct p9_client *clnt) ...@@ -142,7 +233,6 @@ void p9_client_disconnect(struct p9_client *clnt)
{ {
P9_DPRINTK(P9_DEBUG_9P, "clnt %p\n", clnt); P9_DPRINTK(P9_DEBUG_9P, "clnt %p\n", clnt);
clnt->trans->status = Disconnected; clnt->trans->status = Disconnected;
p9_conn_cancel(clnt->conn, -EIO);
} }
EXPORT_SYMBOL(p9_client_disconnect); EXPORT_SYMBOL(p9_client_disconnect);
...@@ -174,7 +264,7 @@ struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid, ...@@ -174,7 +264,7 @@ struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
goto error; goto error;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto error; goto error;
...@@ -219,7 +309,7 @@ struct p9_fid *p9_client_auth(struct p9_client *clnt, char *uname, ...@@ -219,7 +309,7 @@ struct p9_fid *p9_client_auth(struct p9_client *clnt, char *uname,
goto error; goto error;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto error; goto error;
...@@ -270,7 +360,7 @@ struct p9_fid *p9_client_walk(struct p9_fid *oldfid, int nwname, char **wnames, ...@@ -270,7 +360,7 @@ struct p9_fid *p9_client_walk(struct p9_fid *oldfid, int nwname, char **wnames,
goto error; goto error;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) { if (err) {
if (rc && rc->id == P9_RWALK) if (rc && rc->id == P9_RWALK)
goto clunk_fid; goto clunk_fid;
...@@ -305,7 +395,7 @@ struct p9_fid *p9_client_walk(struct p9_fid *oldfid, int nwname, char **wnames, ...@@ -305,7 +395,7 @@ struct p9_fid *p9_client_walk(struct p9_fid *oldfid, int nwname, char **wnames,
goto error; goto error;
} }
p9_conn_rpc(clnt->conn, tc, &rc); p9_client_rpc(clnt, tc, &rc);
error: error:
kfree(tc); kfree(tc);
...@@ -339,7 +429,7 @@ int p9_client_open(struct p9_fid *fid, int mode) ...@@ -339,7 +429,7 @@ int p9_client_open(struct p9_fid *fid, int mode)
goto done; goto done;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto done; goto done;
...@@ -378,7 +468,7 @@ int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode, ...@@ -378,7 +468,7 @@ int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
goto done; goto done;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto done; goto done;
...@@ -411,7 +501,7 @@ int p9_client_clunk(struct p9_fid *fid) ...@@ -411,7 +501,7 @@ int p9_client_clunk(struct p9_fid *fid)
goto done; goto done;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto done; goto done;
...@@ -443,7 +533,7 @@ int p9_client_remove(struct p9_fid *fid) ...@@ -443,7 +533,7 @@ int p9_client_remove(struct p9_fid *fid)
goto done; goto done;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto done; goto done;
...@@ -485,7 +575,7 @@ int p9_client_read(struct p9_fid *fid, char *data, u64 offset, u32 count) ...@@ -485,7 +575,7 @@ int p9_client_read(struct p9_fid *fid, char *data, u64 offset, u32 count)
goto error; goto error;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto error; goto error;
...@@ -542,7 +632,7 @@ int p9_client_write(struct p9_fid *fid, char *data, u64 offset, u32 count) ...@@ -542,7 +632,7 @@ int p9_client_write(struct p9_fid *fid, char *data, u64 offset, u32 count)
goto error; goto error;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto error; goto error;
...@@ -596,7 +686,7 @@ p9_client_uread(struct p9_fid *fid, char __user *data, u64 offset, u32 count) ...@@ -596,7 +686,7 @@ p9_client_uread(struct p9_fid *fid, char __user *data, u64 offset, u32 count)
goto error; goto error;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto error; goto error;
...@@ -660,7 +750,7 @@ p9_client_uwrite(struct p9_fid *fid, const char __user *data, u64 offset, ...@@ -660,7 +750,7 @@ p9_client_uwrite(struct p9_fid *fid, const char __user *data, u64 offset,
goto error; goto error;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto error; goto error;
...@@ -731,7 +821,7 @@ struct p9_stat *p9_client_stat(struct p9_fid *fid) ...@@ -731,7 +821,7 @@ struct p9_stat *p9_client_stat(struct p9_fid *fid)
goto error; goto error;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto error; goto error;
...@@ -773,7 +863,7 @@ int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst) ...@@ -773,7 +863,7 @@ int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
goto done; goto done;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
done: done:
kfree(tc); kfree(tc);
...@@ -830,7 +920,7 @@ struct p9_stat *p9_client_dirread(struct p9_fid *fid, u64 offset) ...@@ -830,7 +920,7 @@ struct p9_stat *p9_client_dirread(struct p9_fid *fid, u64 offset)
goto error; goto error;
} }
err = p9_conn_rpc(clnt->conn, tc, &rc); err = p9_client_rpc(clnt, tc, &rc);
if (err) if (err)
goto error; goto error;
...@@ -901,16 +991,21 @@ static struct p9_stat *p9_clone_stat(struct p9_stat *st, int dotu) ...@@ -901,16 +991,21 @@ static struct p9_stat *p9_clone_stat(struct p9_stat *st, int dotu)
memmove(ret, st, sizeof(struct p9_stat)); memmove(ret, st, sizeof(struct p9_stat));
p = ((char *) ret) + sizeof(struct p9_stat); p = ((char *) ret) + sizeof(struct p9_stat);
memmove(p, st->name.str, st->name.len); memmove(p, st->name.str, st->name.len);
ret->name.str = p;
p += st->name.len; p += st->name.len;
memmove(p, st->uid.str, st->uid.len); memmove(p, st->uid.str, st->uid.len);
ret->uid.str = p;
p += st->uid.len; p += st->uid.len;
memmove(p, st->gid.str, st->gid.len); memmove(p, st->gid.str, st->gid.len);
ret->gid.str = p;
p += st->gid.len; p += st->gid.len;
memmove(p, st->muid.str, st->muid.len); memmove(p, st->muid.str, st->muid.len);
ret->muid.str = p;
p += st->muid.len; p += st->muid.len;
if (dotu) { if (dotu) {
memmove(p, st->extension.str, st->extension.len); memmove(p, st->extension.str, st->extension.len);
ret->extension.str = p;
p += st->extension.len; p += st->extension.len;
} }
......
...@@ -347,12 +347,12 @@ p9_printfcall(char *buf, int buflen, struct p9_fcall *fc, int extended) ...@@ -347,12 +347,12 @@ p9_printfcall(char *buf, int buflen, struct p9_fcall *fc, int extended)
return ret; return ret;
} }
#else #else
int int
p9_printfcall(char *buf, int buflen, struct p9_fcall *fc, int extended) p9_printfcall(char *buf, int buflen, struct p9_fcall *fc, int extended)
{ {
return 0; return 0;
} }
EXPORT_SYMBOL(p9_printfcall);
#endif /* CONFIG_NET_9P_DEBUG */ #endif /* CONFIG_NET_9P_DEBUG */
EXPORT_SYMBOL(p9_printfcall);
...@@ -106,15 +106,10 @@ EXPORT_SYMBOL(v9fs_default_trans); ...@@ -106,15 +106,10 @@ EXPORT_SYMBOL(v9fs_default_trans);
*/ */
static int __init init_p9(void) static int __init init_p9(void)
{ {
int ret; int ret = 0;
p9_error_init(); p9_error_init();
printk(KERN_INFO "Installing 9P2000 support\n"); printk(KERN_INFO "Installing 9P2000 support\n");
ret = p9_mux_global_init();
if (ret) {
printk(KERN_WARNING "9p: starting mux failed\n");
return ret;
}
return ret; return ret;
} }
...@@ -126,7 +121,7 @@ static int __init init_p9(void) ...@@ -126,7 +121,7 @@ static int __init init_p9(void)
static void __exit exit_p9(void) static void __exit exit_p9(void)
{ {
p9_mux_global_exit(); printk(KERN_INFO "Unloading 9P2000 support\n");
} }
module_init(init_p9) module_init(init_p9)
......
此差异已折叠。
此差异已折叠。
/* /*
* The Guest 9p transport driver * The Guest 9p transport driver
* *
* This is a trivial pipe-based transport driver based on the lguest console * This is a block based transport driver based on the lguest block driver
* code: we use lguest's DMA mechanism to send bytes out, and register a * code.
* DMA buffer to receive bytes in. It is assumed to be present and available
* from the very beginning of boot.
*
* This may be have been done by just instaniating another HVC console,
* but HVC's blocksize of 16 bytes is annoying and painful to performance.
*
* A more efficient transport could be built based on the virtio block driver
* but it requires some changes in the 9p transport model (which are in
* progress)
* *
*/ */
/* /*
...@@ -55,11 +46,25 @@ ...@@ -55,11 +46,25 @@
#include <linux/virtio.h> #include <linux/virtio.h>
#include <linux/virtio_9p.h> #include <linux/virtio_9p.h>
#define VIRTQUEUE_NUM 128
/* a single mutex to manage channel initialization and attachment */ /* a single mutex to manage channel initialization and attachment */
static DECLARE_MUTEX(virtio_9p_lock); static DECLARE_MUTEX(virtio_9p_lock);
/* global which tracks highest initialized channel */ /* global which tracks highest initialized channel */
static int chan_index; static int chan_index;
#define P9_INIT_MAXTAG 16
#define REQ_STATUS_IDLE 0
#define REQ_STATUS_SENT 1
#define REQ_STATUS_RCVD 2
#define REQ_STATUS_FLSH 3
struct p9_req_t {
int status;
wait_queue_head_t *wq;
};
/* We keep all per-channel information in a structure. /* We keep all per-channel information in a structure.
* This structure is allocated within the devices dev->mem space. * This structure is allocated within the devices dev->mem space.
* A pointer to the structure will get put in the transport private. * A pointer to the structure will get put in the transport private.
...@@ -68,146 +73,198 @@ static struct virtio_chan { ...@@ -68,146 +73,198 @@ static struct virtio_chan {
bool initialized; /* channel is initialized */ bool initialized; /* channel is initialized */
bool inuse; /* channel is in use */ bool inuse; /* channel is in use */
struct virtqueue *in_vq, *out_vq; spinlock_t lock;
struct virtio_device *vdev; struct virtio_device *vdev;
struct virtqueue *vq;
/* This is our input buffer, and how much data is left in it. */ struct p9_idpool *tagpool;
unsigned int in_len; struct p9_req_t *reqs;
char *in, *inbuf; int max_tag;
wait_queue_head_t wq; /* waitq for buffer */ /* Scatterlist: can be too big for stack. */
struct scatterlist sg[VIRTQUEUE_NUM];
} channels[MAX_9P_CHAN]; } channels[MAX_9P_CHAN];
/* Lookup requests by tag */
static struct p9_req_t *p9_lookup_tag(struct virtio_chan *c, u16 tag)
{
/* This looks up the original request by tag so we know which
* buffer to read the data into */
tag++;
while (tag >= c->max_tag) {
int old_max = c->max_tag;
int count;
if (c->max_tag)
c->max_tag *= 2;
else
c->max_tag = P9_INIT_MAXTAG;
c->reqs = krealloc(c->reqs, sizeof(struct p9_req_t)*c->max_tag,
GFP_ATOMIC);
if (!c->reqs) {
printk(KERN_ERR "Couldn't grow tag array\n");
BUG();
}
for (count = old_max; count < c->max_tag; count++) {
c->reqs[count].status = REQ_STATUS_IDLE;
c->reqs[count].wq = kmalloc(sizeof(wait_queue_t),
GFP_ATOMIC);
if (!c->reqs[count].wq) {
printk(KERN_ERR "Couldn't grow tag array\n");
BUG();
}
init_waitqueue_head(c->reqs[count].wq);
}
}
return &c->reqs[tag];
}
/* How many bytes left in this page. */ /* How many bytes left in this page. */
static unsigned int rest_of_page(void *data) static unsigned int rest_of_page(void *data)
{ {
return PAGE_SIZE - ((unsigned long)data % PAGE_SIZE); return PAGE_SIZE - ((unsigned long)data % PAGE_SIZE);
} }
static int p9_virtio_write(struct p9_trans *trans, void *buf, int count) static void p9_virtio_close(struct p9_trans *trans)
{ {
struct virtio_chan *chan = (struct virtio_chan *) trans->priv; struct virtio_chan *chan = trans->priv;
struct virtqueue *out_vq = chan->out_vq; int count;
struct scatterlist sg[1]; unsigned int flags;
unsigned int len;
P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio write (%d)\n", count); spin_lock_irqsave(&chan->lock, flags);
p9_idpool_destroy(chan->tagpool);
for (count = 0; count < chan->max_tag; count++)
kfree(chan->reqs[count].wq);
kfree(chan->reqs);
chan->max_tag = 0;
spin_unlock_irqrestore(&chan->lock, flags);
/* keep it simple - make sure we don't overflow a page */ down(&virtio_9p_lock);
if (rest_of_page(buf) < count) chan->inuse = false;
count = rest_of_page(buf); up(&virtio_9p_lock);
sg_init_one(sg, buf, count); kfree(trans);
}
/* add_buf wants a token to identify this buffer: we hand it any static void req_done(struct virtqueue *vq)
* non-NULL pointer, since there's only ever one buffer. */ {
if (out_vq->vq_ops->add_buf(out_vq, sg, 1, 0, (void *)1) == 0) { struct virtio_chan *chan = vq->vdev->priv;
/* Tell Host to go! */ struct p9_fcall *rc;
out_vq->vq_ops->kick(out_vq); unsigned int len;
/* Chill out until it's done with the buffer. */ unsigned long flags;
while (!out_vq->vq_ops->get_buf(out_vq, &len)) struct p9_req_t *req;
cpu_relax();
spin_lock_irqsave(&chan->lock, flags);
while ((rc = chan->vq->vq_ops->get_buf(chan->vq, &len)) != NULL) {
req = p9_lookup_tag(chan, rc->tag);
req->status = REQ_STATUS_RCVD;
wake_up(req->wq);
} }
/* In case queue is stopped waiting for more buffers. */
P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio wrote (%d)\n", count); spin_unlock_irqrestore(&chan->lock, flags);
/* We're expected to return the amount of data we wrote: all of it. */
return count;
} }
/* Create a scatter-gather list representing our input buffer and put it in the static int
* queue. */ pack_sg_list(struct scatterlist *sg, int start, int limit, char *data,
static void add_inbuf(struct virtio_chan *chan) int count)
{ {
struct scatterlist sg[1]; int s;
int index = start;
sg_init_one(sg, chan->inbuf, PAGE_SIZE);
while (count) {
s = rest_of_page(data);
if (s > count)
s = count;
sg_set_buf(&sg[index++], data, s);
count -= s;
data += s;
if (index > limit)
BUG();
}
/* We should always be able to add one buffer to an empty queue. */ return index-start;
if (chan->in_vq->vq_ops->add_buf(chan->in_vq, sg, 0, 1, chan->inbuf))
BUG();
chan->in_vq->vq_ops->kick(chan->in_vq);
} }
static int p9_virtio_read(struct p9_trans *trans, void *buf, int count) static int
p9_virtio_rpc(struct p9_trans *t, struct p9_fcall *tc, struct p9_fcall **rc)
{ {
struct virtio_chan *chan = (struct virtio_chan *) trans->priv; int in, out;
struct virtqueue *in_vq = chan->in_vq; int n, err, size;
struct virtio_chan *chan = t->priv;
P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio read (%d)\n", count); char *rdata;
struct p9_req_t *req;
unsigned long flags;
if (*rc == NULL) {
*rc = kmalloc(sizeof(struct p9_fcall) + t->msize, GFP_KERNEL);
if (!*rc)
return -ENOMEM;
}
/* If we don't have an input queue yet, we can't get input. */ rdata = (char *)*rc+sizeof(struct p9_fcall);
BUG_ON(!in_vq);
/* No buffer? Try to get one. */ n = P9_NOTAG;
if (!chan->in_len) { if (tc->id != P9_TVERSION) {
chan->in = in_vq->vq_ops->get_buf(in_vq, &chan->in_len); n = p9_idpool_get(chan->tagpool);
if (!chan->in) if (n < 0)
return 0; return -ENOMEM;
} }
/* You want more than we have to give? Well, try wanting less! */ spin_lock_irqsave(&chan->lock, flags);
if (chan->in_len < count) req = p9_lookup_tag(chan, n);
count = chan->in_len; spin_unlock_irqrestore(&chan->lock, flags);
/* Copy across to their buffer and increment offset. */ p9_set_tag(tc, n);
memcpy(buf, chan->in, count);
chan->in += count;
chan->in_len -= count;
/* Finished? Re-register buffer so Host will use it again. */ P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio rpc tag %d\n", n);
if (chan->in_len == 0)
add_inbuf(chan);
P9_DPRINTK(P9_DEBUG_TRANS, "9p debug: virtio finished read (%d)\n", out = pack_sg_list(chan->sg, 0, VIRTQUEUE_NUM, tc->sdata, tc->size);
count); in = pack_sg_list(chan->sg, out, VIRTQUEUE_NUM-out, rdata, t->msize);
return count; req->status = REQ_STATUS_SENT;
}
/* The poll function is used by 9p transports to determine if there if (chan->vq->vq_ops->add_buf(chan->vq, chan->sg, out, in, tc)) {
* is there is activity available on a particular channel. In our case P9_DPRINTK(P9_DEBUG_TRANS,
* we use it to wait for a callback from the input routines. "9p debug: virtio rpc add_buf returned failure");
*/ return -EIO;
static unsigned int }
p9_virtio_poll(struct p9_trans *trans, struct poll_table_struct *pt)
{
struct virtio_chan *chan = (struct virtio_chan *)trans->priv;
struct virtqueue *in_vq = chan->in_vq;
int ret = POLLOUT; /* we can always handle more output */
poll_wait(NULL, &chan->wq, pt); chan->vq->vq_ops->kick(chan->vq);
/* No buffer? Try to get one. */ wait_event(*req->wq, req->status == REQ_STATUS_RCVD);
if (!chan->in_len)
chan->in = in_vq->vq_ops->get_buf(in_vq, &chan->in_len);
if (chan->in_len) size = le32_to_cpu(*(__le32 *) rdata);
ret |= POLLIN;
return ret; err = p9_deserialize_fcall(rdata, size, *rc, t->extended);
} if (err < 0) {
P9_DPRINTK(P9_DEBUG_TRANS,
"9p debug: virtio rpc deserialize returned %d\n", err);
return err;
}
static void p9_virtio_close(struct p9_trans *trans) #ifdef CONFIG_NET_9P_DEBUG
{ if ((p9_debug_level&P9_DEBUG_FCALL) == P9_DEBUG_FCALL) {
struct virtio_chan *chan = trans->priv; char buf[150];
down(&virtio_9p_lock); p9_printfcall(buf, sizeof(buf), *rc, t->extended);
chan->inuse = false; printk(KERN_NOTICE ">>> %p %s\n", t, buf);
up(&virtio_9p_lock); }
#endif
kfree(trans); if (n != P9_NOTAG && p9_idpool_check(n, chan->tagpool))
} p9_idpool_put(n, chan->tagpool);
static void p9_virtio_intr(struct virtqueue *q) req->status = REQ_STATUS_IDLE;
{
struct virtio_chan *chan = q->vdev->priv;
P9_DPRINTK(P9_DEBUG_TRANS, "9p poll_wakeup: %p\n", &chan->wq); return 0;
wake_up_interruptible(&chan->wq);
} }
static int p9_virtio_probe(struct virtio_device *dev) static int p9_virtio_probe(struct virtio_device *vdev)
{ {
int err; int err;
struct virtio_chan *chan; struct virtio_chan *chan;
...@@ -221,44 +278,29 @@ static int p9_virtio_probe(struct virtio_device *dev) ...@@ -221,44 +278,29 @@ static int p9_virtio_probe(struct virtio_device *dev)
if (chan_index > MAX_9P_CHAN) { if (chan_index > MAX_9P_CHAN) {
printk(KERN_ERR "9p: virtio: Maximum channels exceeded\n"); printk(KERN_ERR "9p: virtio: Maximum channels exceeded\n");
BUG(); BUG();
}
chan->vdev = dev;
/* This is the scratch page we use to receive console input */
chan->inbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
if (!chan->inbuf) {
err = -ENOMEM; err = -ENOMEM;
goto fail; goto fail;
} }
/* Find the input queue. */ chan->vdev = vdev;
dev->priv = chan;
chan->in_vq = dev->config->find_vq(dev, 0, p9_virtio_intr);
if (IS_ERR(chan->in_vq)) {
err = PTR_ERR(chan->in_vq);
goto free;
}
chan->out_vq = dev->config->find_vq(dev, 1, NULL); /* We expect one virtqueue, for requests. */
if (IS_ERR(chan->out_vq)) { chan->vq = vdev->config->find_vq(vdev, 0, req_done);
err = PTR_ERR(chan->out_vq); if (IS_ERR(chan->vq)) {
goto free_in_vq; err = PTR_ERR(chan->vq);
goto out_free_vq;
} }
chan->vq->vdev->priv = chan;
spin_lock_init(&chan->lock);
init_waitqueue_head(&chan->wq); sg_init_table(chan->sg, VIRTQUEUE_NUM);
/* Register the input buffer the first time. */
add_inbuf(chan);
chan->inuse = false; chan->inuse = false;
chan->initialized = true; chan->initialized = true;
return 0; return 0;
free_in_vq: out_free_vq:
dev->config->del_vq(chan->in_vq); vdev->config->del_vq(chan->vq);
free:
kfree(chan->inbuf);
fail: fail:
down(&virtio_9p_lock); down(&virtio_9p_lock);
chan_index--; chan_index--;
...@@ -271,11 +313,13 @@ static int p9_virtio_probe(struct virtio_device *dev) ...@@ -271,11 +313,13 @@ static int p9_virtio_probe(struct virtio_device *dev)
* alternate channels by matching devname versus a virtio_config entry. * alternate channels by matching devname versus a virtio_config entry.
* We use a simple reference count mechanism to ensure that only a single * We use a simple reference count mechanism to ensure that only a single
* mount has a channel open at a time. */ * mount has a channel open at a time. */
static struct p9_trans *p9_virtio_create(const char *devname, char *args) static struct p9_trans *
p9_virtio_create(const char *devname, char *args, int msize,
unsigned char extended)
{ {
struct p9_trans *trans; struct p9_trans *trans;
int index = 0;
struct virtio_chan *chan = channels; struct virtio_chan *chan = channels;
int index = 0;
down(&virtio_9p_lock); down(&virtio_9p_lock);
while (index < MAX_9P_CHAN) { while (index < MAX_9P_CHAN) {
...@@ -290,25 +334,45 @@ static struct p9_trans *p9_virtio_create(const char *devname, char *args) ...@@ -290,25 +334,45 @@ static struct p9_trans *p9_virtio_create(const char *devname, char *args)
up(&virtio_9p_lock); up(&virtio_9p_lock);
if (index >= MAX_9P_CHAN) { if (index >= MAX_9P_CHAN) {
printk(KERN_ERR "9p: virtio: couldn't find a free channel\n"); printk(KERN_ERR "9p: no channels available\n");
return NULL; return ERR_PTR(-ENODEV);
} }
chan->tagpool = p9_idpool_create();
if (IS_ERR(chan->tagpool)) {
printk(KERN_ERR "9p: couldn't allocate tagpool\n");
return ERR_PTR(-ENOMEM);
}
p9_idpool_get(chan->tagpool); /* reserve tag 0 */
chan->max_tag = 0;
chan->reqs = NULL;
trans = kmalloc(sizeof(struct p9_trans), GFP_KERNEL); trans = kmalloc(sizeof(struct p9_trans), GFP_KERNEL);
if (!trans) { if (!trans) {
printk(KERN_ERR "9p: couldn't allocate transport\n"); printk(KERN_ERR "9p: couldn't allocate transport\n");
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
} }
trans->extended = extended;
trans->write = p9_virtio_write; trans->msize = msize;
trans->read = p9_virtio_read;
trans->close = p9_virtio_close; trans->close = p9_virtio_close;
trans->poll = p9_virtio_poll; trans->rpc = p9_virtio_rpc;
trans->priv = chan; trans->priv = chan;
return trans; return trans;
} }
static void p9_virtio_remove(struct virtio_device *vdev)
{
struct virtio_chan *chan = vdev->priv;
BUG_ON(chan->inuse);
if (chan->initialized) {
vdev->config->del_vq(chan->vq);
chan->initialized = false;
}
}
#define VIRTIO_ID_9P 9 #define VIRTIO_ID_9P 9
static struct virtio_device_id id_table[] = { static struct virtio_device_id id_table[] = {
...@@ -322,12 +386,13 @@ static struct virtio_driver p9_virtio_drv = { ...@@ -322,12 +386,13 @@ static struct virtio_driver p9_virtio_drv = {
.driver.owner = THIS_MODULE, .driver.owner = THIS_MODULE,
.id_table = id_table, .id_table = id_table,
.probe = p9_virtio_probe, .probe = p9_virtio_probe,
.remove = p9_virtio_remove,
}; };
static struct p9_trans_module p9_virtio_trans = { static struct p9_trans_module p9_virtio_trans = {
.name = "virtio", .name = "virtio",
.create = p9_virtio_create, .create = p9_virtio_create,
.maxsize = PAGE_SIZE, .maxsize = PAGE_SIZE*16,
.def = 0, .def = 0,
}; };
...@@ -343,7 +408,13 @@ static int __init p9_virtio_init(void) ...@@ -343,7 +408,13 @@ static int __init p9_virtio_init(void)
return register_virtio_driver(&p9_virtio_drv); return register_virtio_driver(&p9_virtio_drv);
} }
static void __exit p9_virtio_cleanup(void)
{
unregister_virtio_driver(&p9_virtio_drv);
}
module_init(p9_virtio_init); module_init(p9_virtio_init);
module_exit(p9_virtio_cleanup);
MODULE_DEVICE_TABLE(virtio, id_table); MODULE_DEVICE_TABLE(virtio, id_table);
MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>"); MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>");
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#include <net/9p/9p.h> #include <net/9p/9p.h>
struct p9_idpool { struct p9_idpool {
struct semaphore lock; spinlock_t lock;
struct idr pool; struct idr pool;
}; };
...@@ -45,7 +45,7 @@ struct p9_idpool *p9_idpool_create(void) ...@@ -45,7 +45,7 @@ struct p9_idpool *p9_idpool_create(void)
if (!p) if (!p)
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
init_MUTEX(&p->lock); spin_lock_init(&p->lock);
idr_init(&p->pool); idr_init(&p->pool);
return p; return p;
...@@ -71,19 +71,17 @@ int p9_idpool_get(struct p9_idpool *p) ...@@ -71,19 +71,17 @@ int p9_idpool_get(struct p9_idpool *p)
{ {
int i = 0; int i = 0;
int error; int error;
unsigned int flags;
retry: retry:
if (idr_pre_get(&p->pool, GFP_KERNEL) == 0) if (idr_pre_get(&p->pool, GFP_KERNEL) == 0)
return 0; return 0;
if (down_interruptible(&p->lock) == -EINTR) { spin_lock_irqsave(&p->lock, flags);
P9_EPRINTK(KERN_WARNING, "Interrupted while locking\n");
return -1;
}
/* no need to store exactly p, we just need something non-null */ /* no need to store exactly p, we just need something non-null */
error = idr_get_new(&p->pool, p, &i); error = idr_get_new(&p->pool, p, &i);
up(&p->lock); spin_unlock_irqrestore(&p->lock, flags);
if (error == -EAGAIN) if (error == -EAGAIN)
goto retry; goto retry;
...@@ -104,12 +102,10 @@ EXPORT_SYMBOL(p9_idpool_get); ...@@ -104,12 +102,10 @@ EXPORT_SYMBOL(p9_idpool_get);
void p9_idpool_put(int id, struct p9_idpool *p) void p9_idpool_put(int id, struct p9_idpool *p)
{ {
if (down_interruptible(&p->lock) == -EINTR) { unsigned int flags;
P9_EPRINTK(KERN_WARNING, "Interrupted while locking\n"); spin_lock_irqsave(&p->lock, flags);
return;
}
idr_remove(&p->pool, id); idr_remove(&p->pool, id);
up(&p->lock); spin_unlock_irqrestore(&p->lock, flags);
} }
EXPORT_SYMBOL(p9_idpool_put); EXPORT_SYMBOL(p9_idpool_put);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册