提交 2c4a336e 编写于 作者: A Andy King 提交者: David S. Miller

vsock: Make transport the proto owner

Right now the core vsock module is the owner of the proto family. This
means there's nothing preventing the transport module from unloading if
there are open sockets, which results in a panic. Fix that by allowing
the transport to be the owner, which will refcount it properly.

Includes version bump to 1.0.1.0-k

Passes checkpatch this time, I swear...
Acked-by: NDmitry Torokhov <dtor@vmware.com>
Signed-off-by: NAndy King <acking@vmware.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 b8dff4e6
...@@ -155,7 +155,11 @@ struct vsock_transport { ...@@ -155,7 +155,11 @@ struct vsock_transport {
/**** CORE ****/ /**** CORE ****/
int vsock_core_init(const struct vsock_transport *t); int __vsock_core_init(const struct vsock_transport *t, struct module *owner);
static inline int vsock_core_init(const struct vsock_transport *t)
{
return __vsock_core_init(t, THIS_MODULE);
}
void vsock_core_exit(void); void vsock_core_exit(void);
/**** UTILS ****/ /**** UTILS ****/
......
...@@ -1925,9 +1925,23 @@ static struct miscdevice vsock_device = { ...@@ -1925,9 +1925,23 @@ static struct miscdevice vsock_device = {
.fops = &vsock_device_ops, .fops = &vsock_device_ops,
}; };
static int __vsock_core_init(void) int __vsock_core_init(const struct vsock_transport *t, struct module *owner)
{ {
int err; int err = mutex_lock_interruptible(&vsock_register_mutex);
if (err)
return err;
if (transport) {
err = -EBUSY;
goto err_busy;
}
/* Transport must be the owner of the protocol so that it can't
* unload while there are open sockets.
*/
vsock_proto.owner = owner;
transport = t;
vsock_init_tables(); vsock_init_tables();
...@@ -1951,36 +1965,19 @@ static int __vsock_core_init(void) ...@@ -1951,36 +1965,19 @@ static int __vsock_core_init(void)
goto err_unregister_proto; goto err_unregister_proto;
} }
mutex_unlock(&vsock_register_mutex);
return 0; return 0;
err_unregister_proto: err_unregister_proto:
proto_unregister(&vsock_proto); proto_unregister(&vsock_proto);
err_misc_deregister: err_misc_deregister:
misc_deregister(&vsock_device); misc_deregister(&vsock_device);
return err; transport = NULL;
} err_busy:
int vsock_core_init(const struct vsock_transport *t)
{
int retval = mutex_lock_interruptible(&vsock_register_mutex);
if (retval)
return retval;
if (transport) {
retval = -EBUSY;
goto out;
}
transport = t;
retval = __vsock_core_init();
if (retval)
transport = NULL;
out:
mutex_unlock(&vsock_register_mutex); mutex_unlock(&vsock_register_mutex);
return retval; return err;
} }
EXPORT_SYMBOL_GPL(vsock_core_init); EXPORT_SYMBOL_GPL(__vsock_core_init);
void vsock_core_exit(void) void vsock_core_exit(void)
{ {
...@@ -2000,5 +1997,5 @@ EXPORT_SYMBOL_GPL(vsock_core_exit); ...@@ -2000,5 +1997,5 @@ EXPORT_SYMBOL_GPL(vsock_core_exit);
MODULE_AUTHOR("VMware, Inc."); MODULE_AUTHOR("VMware, Inc.");
MODULE_DESCRIPTION("VMware Virtual Socket Family"); MODULE_DESCRIPTION("VMware Virtual Socket Family");
MODULE_VERSION("1.0.0.0-k"); MODULE_VERSION("1.0.1.0-k");
MODULE_LICENSE("GPL v2"); MODULE_LICENSE("GPL v2");
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册