blob: 55576c1866fa68ffcb9f2f7579493f78d221ca30 [file] [log] [blame]
Thomas Gleixner1f327612019-05-28 09:57:16 -07001// SPDX-License-Identifier: GPL-2.0-only
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05002/*
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05003 * 9P entry point
4 *
5 * Copyright (C) 2007 by Latchesar Ionkov <[email protected]>
6 * Copyright (C) 2004 by Eric Van Hensbergen <[email protected]>
7 * Copyright (C) 2002 by Ron Minnich <[email protected]>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05008 */
9
Joe Perches5d385152011-11-28 10:40:46 -080010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050012#include <linux/module.h>
Thomas Weißschuh4cd82a52021-10-17 15:46:11 +020013#include <linux/kmod.h>
Joe Perches5d385152011-11-28 10:40:46 -080014#include <linux/errno.h>
15#include <linux/sched.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050016#include <linux/moduleparam.h>
17#include <net/9p/9p.h>
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -050018#include <linux/fs.h>
19#include <linux/parser.h>
Eric Van Hensbergen8b81ef52008-10-13 18:45:25 -050020#include <net/9p/client.h>
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -050021#include <net/9p/transport.h>
22#include <linux/list.h>
Tejun Heo72029fe2008-09-24 16:22:23 -050023#include <linux/spinlock.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050024
25#ifdef CONFIG_NET_9P_DEBUG
Dominique Martinet6e195b02021-11-02 22:16:43 +090026unsigned int p9_debug_level; /* feature-rific global debug level */
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050027EXPORT_SYMBOL(p9_debug_level);
28module_param_named(debug, p9_debug_level, uint, 0);
29MODULE_PARM_DESC(debug, "9P debugging level");
Joe Perches5d385152011-11-28 10:40:46 -080030
31void _p9_debug(enum p9_debug_flags level, const char *func,
Dominique Martinet6e195b02021-11-02 22:16:43 +090032 const char *fmt, ...)
Joe Perches5d385152011-11-28 10:40:46 -080033{
34 struct va_format vaf;
35 va_list args;
36
37 if ((p9_debug_level & level) != level)
38 return;
39
40 va_start(args, fmt);
41
42 vaf.fmt = fmt;
43 vaf.va = &args;
44
45 if (level == P9_DEBUG_9P)
46 pr_notice("(%8.8d) %pV", task_pid_nr(current), &vaf);
47 else
48 pr_notice("-- %s (%d): %pV", func, task_pid_nr(current), &vaf);
49
50 va_end(args);
51}
52EXPORT_SYMBOL(_p9_debug);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050053#endif
54
Dominique Martinet6e195b02021-11-02 22:16:43 +090055/* Dynamic Transport Registration Routines */
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -050056
Tejun Heo72029fe2008-09-24 16:22:23 -050057static DEFINE_SPINLOCK(v9fs_trans_lock);
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -050058static LIST_HEAD(v9fs_trans_list);
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -050059
60/**
61 * v9fs_register_trans - register a new transport with 9p
Eric Van Hensbergenee443992008-03-05 07:08:09 -060062 * @m: structure describing the transport module and entry points
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -050063 *
64 */
65void v9fs_register_trans(struct p9_trans_module *m)
66{
Tejun Heo72029fe2008-09-24 16:22:23 -050067 spin_lock(&v9fs_trans_lock);
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -050068 list_add_tail(&m->list, &v9fs_trans_list);
Tejun Heo72029fe2008-09-24 16:22:23 -050069 spin_unlock(&v9fs_trans_lock);
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -050070}
71EXPORT_SYMBOL(v9fs_register_trans);
72
73/**
Tejun Heo72029fe2008-09-24 16:22:23 -050074 * v9fs_unregister_trans - unregister a 9p transport
75 * @m: the transport to remove
76 *
77 */
78void v9fs_unregister_trans(struct p9_trans_module *m)
79{
80 spin_lock(&v9fs_trans_lock);
81 list_del_init(&m->list);
82 spin_unlock(&v9fs_trans_lock);
83}
84EXPORT_SYMBOL(v9fs_unregister_trans);
85
Thomas Weißschuh019641d2021-11-03 20:38:23 +010086static struct p9_trans_module *_p9_get_trans_by_name(const char *s)
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -050087{
Tejun Heo72029fe2008-09-24 16:22:23 -050088 struct p9_trans_module *t, *found = NULL;
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -050089
Tejun Heo72029fe2008-09-24 16:22:23 -050090 spin_lock(&v9fs_trans_lock);
91
92 list_for_each_entry(t, &v9fs_trans_list, list)
Prem Karat4d630552011-05-06 18:35:32 +053093 if (strcmp(t->name, s) == 0 &&
Tejun Heo72029fe2008-09-24 16:22:23 -050094 try_module_get(t->owner)) {
95 found = t;
96 break;
97 }
98
99 spin_unlock(&v9fs_trans_lock);
Thomas Weißschuh4cd82a52021-10-17 15:46:11 +0200100
101 return found;
102}
103
104/**
105 * v9fs_get_trans_by_name - get transport with the matching name
106 * @s: string identifying transport
107 *
108 */
Thomas Weißschuh019641d2021-11-03 20:38:23 +0100109struct p9_trans_module *v9fs_get_trans_by_name(const char *s)
Thomas Weißschuh4cd82a52021-10-17 15:46:11 +0200110{
111 struct p9_trans_module *found = NULL;
112
113 found = _p9_get_trans_by_name(s);
114
115#ifdef CONFIG_MODULES
116 if (!found) {
117 request_module("9p-%s", s);
118 found = _p9_get_trans_by_name(s);
119 }
120#endif
121
Tejun Heo72029fe2008-09-24 16:22:23 -0500122 return found;
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -0500123}
Tejun Heo72029fe2008-09-24 16:22:23 -0500124EXPORT_SYMBOL(v9fs_get_trans_by_name);
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -0500125
Thomas Weißschuh019641d2021-11-03 20:38:23 +0100126static const char * const v9fs_default_transports[] = {
127 "virtio", "tcp", "fd", "unix", "xen", "rdma",
128};
129
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -0500130/**
Tejun Heo72029fe2008-09-24 16:22:23 -0500131 * v9fs_get_default_trans - get the default transport
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -0500132 *
133 */
134
Tejun Heo72029fe2008-09-24 16:22:23 -0500135struct p9_trans_module *v9fs_get_default_trans(void)
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -0500136{
Tejun Heo72029fe2008-09-24 16:22:23 -0500137 struct p9_trans_module *t, *found = NULL;
Thomas Weißschuh019641d2021-11-03 20:38:23 +0100138 int i;
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -0500139
Tejun Heo72029fe2008-09-24 16:22:23 -0500140 spin_lock(&v9fs_trans_lock);
141
142 list_for_each_entry(t, &v9fs_trans_list, list)
143 if (t->def && try_module_get(t->owner)) {
144 found = t;
145 break;
146 }
147
148 if (!found)
149 list_for_each_entry(t, &v9fs_trans_list, list)
150 if (try_module_get(t->owner)) {
151 found = t;
152 break;
153 }
154
155 spin_unlock(&v9fs_trans_lock);
Thomas Weißschuh019641d2021-11-03 20:38:23 +0100156
157 for (i = 0; !found && i < ARRAY_SIZE(v9fs_default_transports); i++)
158 found = v9fs_get_trans_by_name(v9fs_default_transports[i]);
159
Tejun Heo72029fe2008-09-24 16:22:23 -0500160 return found;
161}
162EXPORT_SYMBOL(v9fs_get_default_trans);
163
164/**
165 * v9fs_put_trans - put trans
166 * @m: transport to put
167 *
168 */
169void v9fs_put_trans(struct p9_trans_module *m)
170{
171 if (m)
172 module_put(m->owner);
173}
Eric Van Hensbergenfb0466c32007-10-17 14:31:07 -0500174
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500175/**
Rob Landley961a5a52011-04-30 12:56:24 -0500176 * init_p9 - Initialize module
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500177 *
178 */
179static int __init init_p9(void)
180{
Matthew Wilcox996d5b42018-07-11 14:02:24 -0700181 int ret;
182
183 ret = p9_client_init();
184 if (ret)
185 return ret;
186
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500187 p9_error_init();
Joe Perches5d385152011-11-28 10:40:46 -0800188 pr_info("Installing 9P2000 support\n");
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500189
Matthew Wilcox996d5b42018-07-11 14:02:24 -0700190 return ret;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500191}
192
193/**
Rob Landley961a5a52011-04-30 12:56:24 -0500194 * exit_p9 - shutdown module
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500195 *
196 */
197
198static void __exit exit_p9(void)
199{
Joe Perches5d385152011-11-28 10:40:46 -0800200 pr_info("Unloading 9P2000 support\n");
Tejun Heo72029fe2008-09-24 16:22:23 -0500201
Matthew Wilcox996d5b42018-07-11 14:02:24 -0700202 p9_client_exit();
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500203}
204
205module_init(init_p9)
206module_exit(exit_p9)
207
208MODULE_AUTHOR("Latchesar Ionkov <[email protected]>");
209MODULE_AUTHOR("Eric Van Hensbergen <[email protected]>");
210MODULE_AUTHOR("Ron Minnich <[email protected]>");
211MODULE_LICENSE("GPL");
Rob Gill67c20de2020-06-20 02:08:25 +0000212MODULE_DESCRIPTION("Plan 9 Resource Sharing Support (9P2000)");