]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/9p/trans_fd.c
Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
[mirror_ubuntu-artful-kernel.git] / net / 9p / trans_fd.c
CommitLineData
bd238fb4
LI
1/*
2 * linux/fs/9p/trans_fd.c
3 *
4 * Fd transport layer. Includes deprecated socket layer.
5 *
6 * Copyright (C) 2006 by Russ Cox <rsc@swtch.com>
7 * Copyright (C) 2004-2005 by Latchesar Ionkov <lucho@ionkov.net>
8a0dc95f 8 * Copyright (C) 2004-2008 by Eric Van Hensbergen <ericvh@gmail.com>
bd238fb4
LI
9 * Copyright (C) 1997-2002 by Ron Minnich <rminnich@sarnoff.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2
13 * as published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to:
22 * Free Software Foundation
23 * 51 Franklin Street, Fifth Floor
24 * Boston, MA 02111-1301 USA
25 *
26 */
27
5d385153
JP
28#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
29
bd238fb4
LI
30#include <linux/in.h>
31#include <linux/module.h>
32#include <linux/net.h>
33#include <linux/ipv6.h>
8a0dc95f 34#include <linux/kthread.h>
bd238fb4
LI
35#include <linux/errno.h>
36#include <linux/kernel.h>
37#include <linux/un.h>
38#include <linux/uaccess.h>
39#include <linux/inet.h>
40#include <linux/idr.h>
41#include <linux/file.h>
a80d923e 42#include <linux/parser.h>
5a0e3ad6 43#include <linux/slab.h>
c4fac910 44#include <linux/seq_file.h>
bd238fb4 45#include <net/9p/9p.h>
8b81ef58 46#include <net/9p/client.h>
bd238fb4
LI
47#include <net/9p/transport.h>
48
6b18662e
AV
49#include <linux/syscalls.h> /* killme */
50
bd238fb4 51#define P9_PORT 564
a80d923e 52#define MAX_SOCK_BUF (64*1024)
8a0dc95f 53#define MAXPOLLWADDR 2
a80d923e 54
c4fac910
DH
55static struct p9_trans_module p9_tcp_trans;
56static struct p9_trans_module p9_fd_trans;
57
ee443996
EVH
58/**
59 * struct p9_fd_opts - per-transport options
60 * @rfd: file descriptor for reading (trans=fd)
61 * @wfd: file descriptor for writing (trans=fd)
62 * @port: port to connect to (trans=tcp)
63 *
64 */
65
a80d923e
EVH
66struct p9_fd_opts {
67 int rfd;
68 int wfd;
69 u16 port;
c4fac910 70 bool privport;
a80d923e 71};
bd238fb4 72
a80d923e
EVH
73/*
74 * Option Parsing (code inspired by NFS code)
75 * - a little lazy - parse all fd-transport options
76 */
bd238fb4 77
a80d923e
EVH
78enum {
79 /* Options that take integer arguments */
55762690 80 Opt_port, Opt_rfdno, Opt_wfdno, Opt_err,
2f28c8b3
JG
81 /* Options that take no arguments */
82 Opt_privport,
a80d923e 83};
bd238fb4 84
a447c093 85static const match_table_t tokens = {
a80d923e
EVH
86 {Opt_port, "port=%u"},
87 {Opt_rfdno, "rfdno=%u"},
88 {Opt_wfdno, "wfdno=%u"},
2f28c8b3 89 {Opt_privport, "privport"},
55762690 90 {Opt_err, NULL},
a80d923e 91};
bd238fb4 92
8a0dc95f
EVH
93enum {
94 Rworksched = 1, /* read work scheduled or running */
95 Rpending = 2, /* can read */
96 Wworksched = 4, /* write work scheduled or running */
97 Wpending = 8, /* can write */
98};
99
992b3f1d
TH
100struct p9_poll_wait {
101 struct p9_conn *conn;
ac6424b9 102 wait_queue_entry_t wait;
992b3f1d 103 wait_queue_head_t *wait_addr;
ee443996
EVH
104};
105
106/**
107 * struct p9_conn - fd mux connection state information
ee443996 108 * @mux_list: list link for mux to manage multiple connections (?)
8b81ef58 109 * @client: reference to client instance for this connection
ee443996 110 * @err: error state
ee443996
EVH
111 * @req_list: accounting for requests which have been sent
112 * @unsent_req_list: accounting for requests that haven't been sent
1b0a763b
EVH
113 * @req: current request being processed (if any)
114 * @tmp_buf: temporary buffer to read in header
947867aa 115 * @rc: temporary fcall for reading current frame
ee443996
EVH
116 * @wpos: write position for current frame
117 * @wsize: amount of data to write for current frame
118 * @wbuf: current write buffer
0e15597e 119 * @poll_pending_link: pending links to be polled per conn
ee443996 120 * @poll_wait: array of wait_q's for various worker threads
ee443996
EVH
121 * @pt: poll state
122 * @rq: current read work
123 * @wq: current write work
124 * @wsched: ????
125 *
126 */
8a0dc95f
EVH
127
128struct p9_conn {
8a0dc95f 129 struct list_head mux_list;
8b81ef58 130 struct p9_client *client;
8a0dc95f 131 int err;
8a0dc95f
EVH
132 struct list_head req_list;
133 struct list_head unsent_req_list;
1b0a763b
EVH
134 struct p9_req_t *req;
135 char tmp_buf[7];
947867aa 136 struct p9_fcall rc;
8a0dc95f
EVH
137 int wpos;
138 int wsize;
139 char *wbuf;
992b3f1d
TH
140 struct list_head poll_pending_link;
141 struct p9_poll_wait poll_wait[MAXPOLLWADDR];
8a0dc95f
EVH
142 poll_table pt;
143 struct work_struct rq;
144 struct work_struct wq;
145 unsigned long wsched;
146};
147
263c5828
SD
148/**
149 * struct p9_trans_fd - transport state
150 * @rd: reference to file to read from
151 * @wr: reference of file to write to
152 * @conn: connection state reference
153 *
154 */
155
156struct p9_trans_fd {
157 struct file *rd;
158 struct file *wr;
159 struct p9_conn conn;
160};
161
aa70c585
TH
162static void p9_poll_workfn(struct work_struct *work);
163
992b3f1d
TH
164static DEFINE_SPINLOCK(p9_poll_lock);
165static LIST_HEAD(p9_poll_pending_list);
aa70c585 166static DECLARE_WORK(p9_poll_work, p9_poll_workfn);
8a0dc95f 167
2f28c8b3
JG
168static unsigned int p9_ipport_resv_min = P9_DEF_MIN_RESVPORT;
169static unsigned int p9_ipport_resv_max = P9_DEF_MAX_RESVPORT;
170
992b3f1d 171static void p9_mux_poll_stop(struct p9_conn *m)
8a0dc95f 172{
992b3f1d
TH
173 unsigned long flags;
174 int i;
8a0dc95f 175
992b3f1d
TH
176 for (i = 0; i < ARRAY_SIZE(m->poll_wait); i++) {
177 struct p9_poll_wait *pwait = &m->poll_wait[i];
8a0dc95f 178
992b3f1d
TH
179 if (pwait->wait_addr) {
180 remove_wait_queue(pwait->wait_addr, &pwait->wait);
181 pwait->wait_addr = NULL;
8a0dc95f 182 }
8a0dc95f
EVH
183 }
184
992b3f1d
TH
185 spin_lock_irqsave(&p9_poll_lock, flags);
186 list_del_init(&m->poll_pending_link);
187 spin_unlock_irqrestore(&p9_poll_lock, flags);
8a0dc95f
EVH
188}
189
190/**
5503ac56
EVH
191 * p9_conn_cancel - cancel all pending requests with error
192 * @m: mux data
193 * @err: error code
8a0dc95f 194 *
8a0dc95f 195 */
ee443996 196
51a87c55 197static void p9_conn_cancel(struct p9_conn *m, int err)
8a0dc95f 198{
673d62cd 199 struct p9_req_t *req, *rtmp;
91b8534f 200 unsigned long flags;
5503ac56 201 LIST_HEAD(cancel_list);
8a0dc95f 202
5d385153 203 p9_debug(P9_DEBUG_ERROR, "mux %p err %d\n", m, err);
7eb923b8 204
91b8534f 205 spin_lock_irqsave(&m->client->lock, flags);
7eb923b8
EVH
206
207 if (m->err) {
208 spin_unlock_irqrestore(&m->client->lock, flags);
209 return;
210 }
211
212 m->err = err;
213
5503ac56
EVH
214 list_for_each_entry_safe(req, rtmp, &m->req_list, req_list) {
215 list_move(&req->req_list, &cancel_list);
216 }
217 list_for_each_entry_safe(req, rtmp, &m->unsent_req_list, req_list) {
218 list_move(&req->req_list, &cancel_list);
8a0dc95f 219 }
91b8534f 220 spin_unlock_irqrestore(&m->client->lock, flags);
8a0dc95f 221
5503ac56 222 list_for_each_entry_safe(req, rtmp, &cancel_list, req_list) {
5d385153 223 p9_debug(P9_DEBUG_ERROR, "call back req %p\n", req);
1bab88b2 224 list_del(&req->req_list);
2b6e72ed
DM
225 if (!req->t_err)
226 req->t_err = err;
227 p9_client_cb(m->client, req, REQ_STATUS_ERROR);
8a0dc95f 228 }
8a0dc95f
EVH
229}
230
29af9309 231static int
5503ac56 232p9_fd_poll(struct p9_client *client, struct poll_table_struct *pt)
8a0dc95f 233{
5503ac56
EVH
234 int ret, n;
235 struct p9_trans_fd *ts = NULL;
8a0dc95f 236
5503ac56
EVH
237 if (client && client->status == Connected)
238 ts = client->trans;
7dc5d24b 239
5503ac56
EVH
240 if (!ts)
241 return -EREMOTEIO;
7dc5d24b 242
72c2d531 243 if (!ts->rd->f_op->poll)
5503ac56 244 return -EIO;
8a0dc95f 245
72c2d531 246 if (!ts->wr->f_op->poll)
5503ac56 247 return -EIO;
992b3f1d 248
5503ac56
EVH
249 ret = ts->rd->f_op->poll(ts->rd, pt);
250 if (ret < 0)
251 return ret;
992b3f1d 252
5503ac56
EVH
253 if (ts->rd != ts->wr) {
254 n = ts->wr->f_op->poll(ts->wr, pt);
255 if (n < 0)
256 return n;
257 ret = (ret & ~POLLOUT) | (n & ~POLLIN);
258 }
259
260 return ret;
992b3f1d
TH
261}
262
8a0dc95f 263/**
5503ac56
EVH
264 * p9_fd_read- read from a fd
265 * @client: client instance
266 * @v: buffer to receive data into
267 * @len: size of receive buffer
ee443996 268 *
8a0dc95f 269 */
ee443996 270
5503ac56 271static int p9_fd_read(struct p9_client *client, void *v, int len)
8a0dc95f 272{
5503ac56
EVH
273 int ret;
274 struct p9_trans_fd *ts = NULL;
8a0dc95f 275
5503ac56
EVH
276 if (client && client->status != Disconnected)
277 ts = client->trans;
8a0dc95f 278
5503ac56
EVH
279 if (!ts)
280 return -EREMOTEIO;
8a0dc95f 281
5503ac56 282 if (!(ts->rd->f_flags & O_NONBLOCK))
5d385153 283 p9_debug(P9_DEBUG_ERROR, "blocking read ...\n");
8a0dc95f 284
5503ac56
EVH
285 ret = kernel_read(ts->rd, ts->rd->f_pos, v, len);
286 if (ret <= 0 && ret != -ERESTARTSYS && ret != -EAGAIN)
287 client->status = Disconnected;
288 return ret;
8a0dc95f
EVH
289}
290
291/**
5503ac56
EVH
292 * p9_read_work - called when there is some data to be read from a transport
293 * @work: container of work to be done
ee443996 294 *
8a0dc95f 295 */
ee443996 296
5503ac56 297static void p9_read_work(struct work_struct *work)
8a0dc95f 298{
5503ac56
EVH
299 int n, err;
300 struct p9_conn *m;
2b6e72ed 301 int status = REQ_STATUS_ERROR;
5503ac56
EVH
302
303 m = container_of(work, struct p9_conn, rq);
8a0dc95f
EVH
304
305 if (m->err < 0)
306 return;
307
947867aa 308 p9_debug(P9_DEBUG_TRANS, "start mux %p pos %zd\n", m, m->rc.offset);
8a0dc95f 309
947867aa
DM
310 if (!m->rc.sdata) {
311 m->rc.sdata = m->tmp_buf;
312 m->rc.offset = 0;
313 m->rc.capacity = 7; /* start by reading header */
8a0dc95f
EVH
314 }
315
5503ac56 316 clear_bit(Rpending, &m->wsched);
947867aa
DM
317 p9_debug(P9_DEBUG_TRANS, "read mux %p pos %zd size: %zd = %zd\n",
318 m, m->rc.offset, m->rc.capacity,
319 m->rc.capacity - m->rc.offset);
320 err = p9_fd_read(m->client, m->rc.sdata + m->rc.offset,
321 m->rc.capacity - m->rc.offset);
5d385153 322 p9_debug(P9_DEBUG_TRANS, "mux %p got %d bytes\n", m, err);
947867aa 323 if (err == -EAGAIN)
0462194d 324 goto end_clear;
8a0dc95f 325
5503ac56
EVH
326 if (err <= 0)
327 goto error;
328
947867aa 329 m->rc.offset += err;
1b0a763b 330
947867aa
DM
331 /* header read in */
332 if ((!m->req) && (m->rc.offset == m->rc.capacity)) {
5d385153 333 p9_debug(P9_DEBUG_TRANS, "got new header\n");
1b0a763b 334
947867aa
DM
335 err = p9_parse_header(&m->rc, NULL, NULL, NULL, 0);
336 if (err) {
337 p9_debug(P9_DEBUG_ERROR,
338 "error parsing header: %d\n", err);
339 goto error;
340 }
341
342 if (m->rc.size >= m->client->msize) {
5d385153 343 p9_debug(P9_DEBUG_ERROR,
947867aa
DM
344 "requested packet size too big: %d\n",
345 m->rc.size);
5503ac56
EVH
346 err = -EIO;
347 goto error;
348 }
349
5d385153 350 p9_debug(P9_DEBUG_TRANS,
947867aa
DM
351 "mux %p pkt: size: %d bytes tag: %d\n",
352 m, m->rc.size, m->rc.tag);
1b0a763b 353
947867aa 354 m->req = p9_tag_lookup(m->client, m->rc.tag);
0bfd6845 355 if (!m->req || (m->req->status != REQ_STATUS_SENT)) {
5d385153 356 p9_debug(P9_DEBUG_ERROR, "Unexpected packet tag %d\n",
947867aa 357 m->rc.tag);
1b0a763b
EVH
358 err = -EIO;
359 goto error;
360 }
361
362 if (m->req->rc == NULL) {
3053600e
DM
363 p9_debug(P9_DEBUG_ERROR,
364 "No recv fcall for tag %d (req %p), disconnecting!\n",
365 m->rc.tag, m->req);
366 m->req = NULL;
367 err = -EIO;
368 goto error;
1b0a763b 369 }
947867aa
DM
370 m->rc.sdata = (char *)m->req->rc + sizeof(struct p9_fcall);
371 memcpy(m->rc.sdata, m->tmp_buf, m->rc.capacity);
372 m->rc.capacity = m->rc.size;
1b0a763b 373 }
5503ac56 374
947867aa
DM
375 /* packet is read in
376 * not an else because some packets (like clunk) have no payload
377 */
378 if ((m->req) && (m->rc.offset == m->rc.capacity)) {
5d385153 379 p9_debug(P9_DEBUG_TRANS, "got new packet\n");
7eb923b8 380 spin_lock(&m->client->lock);
1bab88b2 381 if (m->req->status != REQ_STATUS_ERROR)
2b6e72ed 382 status = REQ_STATUS_RCVD;
91b8534f 383 list_del(&m->req->req_list);
7eb923b8 384 spin_unlock(&m->client->lock);
2b6e72ed 385 p9_client_cb(m->client, m->req, status);
947867aa
DM
386 m->rc.sdata = NULL;
387 m->rc.offset = 0;
388 m->rc.capacity = 0;
1b0a763b 389 m->req = NULL;
5503ac56
EVH
390 }
391
0462194d
SD
392end_clear:
393 clear_bit(Rworksched, &m->wsched);
394
5503ac56
EVH
395 if (!list_empty(&m->req_list)) {
396 if (test_and_clear_bit(Rpending, &m->wsched))
397 n = POLLIN;
398 else
399 n = p9_fd_poll(m->client, NULL);
400
0462194d 401 if ((n & POLLIN) && !test_and_set_bit(Rworksched, &m->wsched)) {
5d385153 402 p9_debug(P9_DEBUG_TRANS, "sched read work %p\n", m);
61edeeed 403 schedule_work(&m->rq);
0462194d
SD
404 }
405 }
5503ac56
EVH
406
407 return;
5503ac56
EVH
408error:
409 p9_conn_cancel(m, err);
410 clear_bit(Rworksched, &m->wsched);
411}
412
413/**
414 * p9_fd_write - write to a socket
415 * @client: client instance
416 * @v: buffer to send data from
417 * @len: size of send buffer
ee443996 418 *
8a0dc95f 419 */
ee443996 420
5503ac56 421static int p9_fd_write(struct p9_client *client, void *v, int len)
8a0dc95f 422{
5503ac56
EVH
423 int ret;
424 mm_segment_t oldfs;
425 struct p9_trans_fd *ts = NULL;
8a0dc95f 426
5503ac56
EVH
427 if (client && client->status != Disconnected)
428 ts = client->trans;
8a0dc95f 429
5503ac56
EVH
430 if (!ts)
431 return -EREMOTEIO;
8a0dc95f 432
5503ac56 433 if (!(ts->wr->f_flags & O_NONBLOCK))
5d385153 434 p9_debug(P9_DEBUG_ERROR, "blocking write ...\n");
992b3f1d 435
5503ac56
EVH
436 oldfs = get_fs();
437 set_fs(get_ds());
438 /* The cast to a user pointer is valid due to the set_fs() */
e3db6cb4 439 ret = vfs_write(ts->wr, (__force void __user *)v, len, &ts->wr->f_pos);
5503ac56 440 set_fs(oldfs);
992b3f1d 441
5503ac56
EVH
442 if (ret <= 0 && ret != -ERESTARTSYS && ret != -EAGAIN)
443 client->status = Disconnected;
444 return ret;
8a0dc95f
EVH
445}
446
447/**
448 * p9_write_work - called when a transport can send some data
ee443996
EVH
449 * @work: container for work to be done
450 *
8a0dc95f 451 */
ee443996 452
8a0dc95f
EVH
453static void p9_write_work(struct work_struct *work)
454{
455 int n, err;
456 struct p9_conn *m;
673d62cd 457 struct p9_req_t *req;
8a0dc95f
EVH
458
459 m = container_of(work, struct p9_conn, wq);
460
461 if (m->err < 0) {
462 clear_bit(Wworksched, &m->wsched);
463 return;
464 }
465
466 if (!m->wsize) {
759f4298 467 spin_lock(&m->client->lock);
8a0dc95f
EVH
468 if (list_empty(&m->unsent_req_list)) {
469 clear_bit(Wworksched, &m->wsched);
759f4298 470 spin_unlock(&m->client->lock);
8a0dc95f
EVH
471 return;
472 }
473
673d62cd 474 req = list_entry(m->unsent_req_list.next, struct p9_req_t,
8a0dc95f 475 req_list);
673d62cd 476 req->status = REQ_STATUS_SENT;
5d385153 477 p9_debug(P9_DEBUG_TRANS, "move req %p\n", req);
8a0dc95f 478 list_move_tail(&req->req_list, &m->req_list);
8a0dc95f 479
673d62cd
EVH
480 m->wbuf = req->tc->sdata;
481 m->wsize = req->tc->size;
8a0dc95f 482 m->wpos = 0;
673d62cd 483 spin_unlock(&m->client->lock);
8a0dc95f
EVH
484 }
485
5d385153
JP
486 p9_debug(P9_DEBUG_TRANS, "mux %p pos %d size %d\n",
487 m, m->wpos, m->wsize);
8a0dc95f 488 clear_bit(Wpending, &m->wsched);
8b81ef58 489 err = p9_fd_write(m->client, m->wbuf + m->wpos, m->wsize - m->wpos);
5d385153 490 p9_debug(P9_DEBUG_TRANS, "mux %p sent %d bytes\n", m, err);
584a8c13
SD
491 if (err == -EAGAIN)
492 goto end_clear;
493
8a0dc95f
EVH
494
495 if (err < 0)
496 goto error;
497 else if (err == 0) {
498 err = -EREMOTEIO;
499 goto error;
500 }
501
502 m->wpos += err;
503 if (m->wpos == m->wsize)
504 m->wpos = m->wsize = 0;
505
584a8c13
SD
506end_clear:
507 clear_bit(Wworksched, &m->wsched);
508
1957b3a8 509 if (m->wsize || !list_empty(&m->unsent_req_list)) {
8a0dc95f
EVH
510 if (test_and_clear_bit(Wpending, &m->wsched))
511 n = POLLOUT;
512 else
8b81ef58 513 n = p9_fd_poll(m->client, NULL);
8a0dc95f 514
584a8c13
SD
515 if ((n & POLLOUT) &&
516 !test_and_set_bit(Wworksched, &m->wsched)) {
5d385153 517 p9_debug(P9_DEBUG_TRANS, "sched write work %p\n", m);
61edeeed 518 schedule_work(&m->wq);
584a8c13
SD
519 }
520 }
8a0dc95f
EVH
521
522 return;
523
524error:
525 p9_conn_cancel(m, err);
526 clear_bit(Wworksched, &m->wsched);
527}
528
ac6424b9 529static int p9_pollwake(wait_queue_entry_t *wait, unsigned int mode, int sync, void *key)
8a0dc95f 530{
5503ac56
EVH
531 struct p9_poll_wait *pwait =
532 container_of(wait, struct p9_poll_wait, wait);
533 struct p9_conn *m = pwait->conn;
534 unsigned long flags;
8a0dc95f 535
5503ac56
EVH
536 spin_lock_irqsave(&p9_poll_lock, flags);
537 if (list_empty(&m->poll_pending_link))
538 list_add_tail(&m->poll_pending_link, &p9_poll_pending_list);
539 spin_unlock_irqrestore(&p9_poll_lock, flags);
8a0dc95f 540
aa70c585
TH
541 schedule_work(&p9_poll_work);
542 return 1;
8a0dc95f
EVH
543}
544
545/**
5503ac56
EVH
546 * p9_pollwait - add poll task to the wait queue
547 * @filp: file pointer being polled
548 * @wait_address: wait_q to block on
549 * @p: poll state
ee443996 550 *
5503ac56 551 * called by files poll operation to add v9fs-poll task to files wait queue
8a0dc95f 552 */
ee443996 553
5503ac56
EVH
554static void
555p9_pollwait(struct file *filp, wait_queue_head_t *wait_address, poll_table *p)
8a0dc95f 556{
5503ac56
EVH
557 struct p9_conn *m = container_of(p, struct p9_conn, pt);
558 struct p9_poll_wait *pwait = NULL;
559 int i;
8a0dc95f 560
5503ac56
EVH
561 for (i = 0; i < ARRAY_SIZE(m->poll_wait); i++) {
562 if (m->poll_wait[i].wait_addr == NULL) {
563 pwait = &m->poll_wait[i];
564 break;
8a0dc95f 565 }
8a0dc95f
EVH
566 }
567
5503ac56 568 if (!pwait) {
5d385153 569 p9_debug(P9_DEBUG_ERROR, "not enough wait_address slots\n");
8a0dc95f
EVH
570 return;
571 }
572
5503ac56
EVH
573 pwait->conn = m;
574 pwait->wait_addr = wait_address;
575 init_waitqueue_func_entry(&pwait->wait, p9_pollwake);
576 add_wait_queue(wait_address, &pwait->wait);
577}
8a0dc95f 578
5503ac56 579/**
263c5828 580 * p9_conn_create - initialize the per-session mux data
5503ac56
EVH
581 * @client: client instance
582 *
583 * Note: Creates the polling task if this is the first session.
584 */
8a0dc95f 585
263c5828 586static void p9_conn_create(struct p9_client *client)
5503ac56 587{
95820a36 588 int n;
263c5828
SD
589 struct p9_trans_fd *ts = client->trans;
590 struct p9_conn *m = &ts->conn;
8a0dc95f 591
5d385153 592 p9_debug(P9_DEBUG_TRANS, "client %p msize %d\n", client, client->msize);
8a0dc95f 593
5503ac56
EVH
594 INIT_LIST_HEAD(&m->mux_list);
595 m->client = client;
8a0dc95f 596
5503ac56
EVH
597 INIT_LIST_HEAD(&m->req_list);
598 INIT_LIST_HEAD(&m->unsent_req_list);
599 INIT_WORK(&m->rq, p9_read_work);
600 INIT_WORK(&m->wq, p9_write_work);
601 INIT_LIST_HEAD(&m->poll_pending_link);
602 init_poll_funcptr(&m->pt, p9_pollwait);
8a0dc95f 603
5503ac56
EVH
604 n = p9_fd_poll(client, &m->pt);
605 if (n & POLLIN) {
5d385153 606 p9_debug(P9_DEBUG_TRANS, "mux %p can read\n", m);
5503ac56
EVH
607 set_bit(Rpending, &m->wsched);
608 }
8a0dc95f 609
5503ac56 610 if (n & POLLOUT) {
5d385153 611 p9_debug(P9_DEBUG_TRANS, "mux %p can write\n", m);
5503ac56
EVH
612 set_bit(Wpending, &m->wsched);
613 }
5503ac56 614}
8a0dc95f 615
5503ac56
EVH
616/**
617 * p9_poll_mux - polls a mux and schedules read or write works if necessary
618 * @m: connection to poll
619 *
620 */
621
622static void p9_poll_mux(struct p9_conn *m)
623{
624 int n;
625
626 if (m->err < 0)
627 return;
628
629 n = p9_fd_poll(m->client, NULL);
630 if (n < 0 || n & (POLLERR | POLLHUP | POLLNVAL)) {
5d385153 631 p9_debug(P9_DEBUG_TRANS, "error mux %p err %d\n", m, n);
5503ac56
EVH
632 if (n >= 0)
633 n = -ECONNRESET;
634 p9_conn_cancel(m, n);
635 }
636
637 if (n & POLLIN) {
638 set_bit(Rpending, &m->wsched);
5d385153 639 p9_debug(P9_DEBUG_TRANS, "mux %p can read\n", m);
5503ac56 640 if (!test_and_set_bit(Rworksched, &m->wsched)) {
5d385153 641 p9_debug(P9_DEBUG_TRANS, "sched read work %p\n", m);
61edeeed 642 schedule_work(&m->rq);
5503ac56
EVH
643 }
644 }
8a0dc95f 645
5503ac56
EVH
646 if (n & POLLOUT) {
647 set_bit(Wpending, &m->wsched);
5d385153 648 p9_debug(P9_DEBUG_TRANS, "mux %p can write\n", m);
f64f9e71
JP
649 if ((m->wsize || !list_empty(&m->unsent_req_list)) &&
650 !test_and_set_bit(Wworksched, &m->wsched)) {
5d385153 651 p9_debug(P9_DEBUG_TRANS, "sched write work %p\n", m);
61edeeed 652 schedule_work(&m->wq);
5503ac56
EVH
653 }
654 }
8a0dc95f
EVH
655}
656
657/**
91b8534f 658 * p9_fd_request - send 9P request
8a0dc95f
EVH
659 * The function can sleep until the request is scheduled for sending.
660 * The function can be interrupted. Return from the function is not
91b8534f 661 * a guarantee that the request is sent successfully.
8a0dc95f 662 *
91b8534f
EVH
663 * @client: client instance
664 * @req: request to be sent
ee443996 665 *
8a0dc95f 666 */
ee443996 667
91b8534f 668static int p9_fd_request(struct p9_client *client, struct p9_req_t *req)
8a0dc95f
EVH
669{
670 int n;
91b8534f 671 struct p9_trans_fd *ts = client->trans;
263c5828 672 struct p9_conn *m = &ts->conn;
8a0dc95f 673
5d385153
JP
674 p9_debug(P9_DEBUG_TRANS, "mux %p task %p tcall %p id %d\n",
675 m, current, req->tc, req->tc->id);
8a0dc95f 676 if (m->err < 0)
91b8534f 677 return m->err;
8a0dc95f 678
91b8534f 679 spin_lock(&client->lock);
7eb923b8 680 req->status = REQ_STATUS_UNSENT;
8a0dc95f 681 list_add_tail(&req->req_list, &m->unsent_req_list);
91b8534f 682 spin_unlock(&client->lock);
8a0dc95f
EVH
683
684 if (test_and_clear_bit(Wpending, &m->wsched))
685 n = POLLOUT;
686 else
8b81ef58 687 n = p9_fd_poll(m->client, NULL);
8a0dc95f
EVH
688
689 if (n & POLLOUT && !test_and_set_bit(Wworksched, &m->wsched))
61edeeed 690 schedule_work(&m->wq);
8a0dc95f 691
91b8534f 692 return 0;
8a0dc95f
EVH
693}
694
91b8534f 695static int p9_fd_cancel(struct p9_client *client, struct p9_req_t *req)
8a0dc95f 696{
7eb923b8 697 int ret = 1;
8a0dc95f 698
5d385153 699 p9_debug(P9_DEBUG_TRANS, "client %p req %p\n", client, req);
8a0dc95f 700
91b8534f 701 spin_lock(&client->lock);
91b8534f 702
91b8534f 703 if (req->status == REQ_STATUS_UNSENT) {
1bab88b2 704 list_del(&req->req_list);
91b8534f 705 req->status = REQ_STATUS_FLSHD;
7eb923b8 706 ret = 0;
0bfd6845 707 }
7eb923b8
EVH
708 spin_unlock(&client->lock);
709
710 return ret;
8a0dc95f
EVH
711}
712
afd8d654
SD
713static int p9_fd_cancelled(struct p9_client *client, struct p9_req_t *req)
714{
715 p9_debug(P9_DEBUG_TRANS, "client %p req %p\n", client, req);
716
717 /* we haven't received a response for oldreq,
718 * remove it from the list.
719 */
720 spin_lock(&client->lock);
721 list_del(&req->req_list);
722 spin_unlock(&client->lock);
723
724 return 0;
725}
726
c4fac910
DH
727static int p9_fd_show_options(struct seq_file *m, struct p9_client *clnt)
728{
729 if (clnt->trans_mod == &p9_tcp_trans) {
730 if (clnt->trans_opts.tcp.port != P9_PORT)
731 seq_printf(m, "port=%u", clnt->trans_opts.tcp.port);
732 } else if (clnt->trans_mod == &p9_fd_trans) {
733 if (clnt->trans_opts.fd.rfd != ~0)
734 seq_printf(m, "rfd=%u", clnt->trans_opts.fd.rfd);
735 if (clnt->trans_opts.fd.wfd != ~0)
736 seq_printf(m, "wfd=%u", clnt->trans_opts.fd.wfd);
737 }
738 return 0;
739}
740
a80d923e 741/**
0e15597e
AK
742 * parse_opts - parse mount options into p9_fd_opts structure
743 * @params: options string passed from mount
744 * @opts: fd transport-specific structure to parse options into
a80d923e 745 *
bb8ffdfc 746 * Returns 0 upon success, -ERRNO upon failure
a80d923e 747 */
bd238fb4 748
bb8ffdfc 749static int parse_opts(char *params, struct p9_fd_opts *opts)
bd238fb4 750{
a80d923e
EVH
751 char *p;
752 substring_t args[MAX_OPT_ARGS];
753 int option;
d8c8a9e3 754 char *options, *tmp_options;
bd238fb4 755
a80d923e
EVH
756 opts->port = P9_PORT;
757 opts->rfd = ~0;
758 opts->wfd = ~0;
c4fac910 759 opts->privport = false;
bd238fb4 760
bb8ffdfc
EVH
761 if (!params)
762 return 0;
763
d8c8a9e3
EVH
764 tmp_options = kstrdup(params, GFP_KERNEL);
765 if (!tmp_options) {
5d385153
JP
766 p9_debug(P9_DEBUG_ERROR,
767 "failed to allocate copy of option string\n");
bb8ffdfc
EVH
768 return -ENOMEM;
769 }
d8c8a9e3 770 options = tmp_options;
bd238fb4 771
a80d923e
EVH
772 while ((p = strsep(&options, ",")) != NULL) {
773 int token;
bb8ffdfc 774 int r;
a80d923e
EVH
775 if (!*p)
776 continue;
777 token = match_token(p, tokens, args);
2f28c8b3 778 if ((token != Opt_err) && (token != Opt_privport)) {
15da4b16
AK
779 r = match_int(&args[0], &option);
780 if (r < 0) {
5d385153
JP
781 p9_debug(P9_DEBUG_ERROR,
782 "integer field, but no integer?\n");
15da4b16
AK
783 continue;
784 }
a80d923e
EVH
785 }
786 switch (token) {
787 case Opt_port:
788 opts->port = option;
789 break;
790 case Opt_rfdno:
791 opts->rfd = option;
792 break;
793 case Opt_wfdno:
794 opts->wfd = option;
795 break;
2f28c8b3 796 case Opt_privport:
c4fac910 797 opts->privport = true;
2f28c8b3 798 break;
a80d923e
EVH
799 default:
800 continue;
801 }
bd238fb4 802 }
d8c8a9e3
EVH
803
804 kfree(tmp_options);
bb8ffdfc 805 return 0;
bd238fb4 806}
bd238fb4 807
8b81ef58 808static int p9_fd_open(struct p9_client *client, int rfd, int wfd)
bd238fb4 809{
263c5828 810 struct p9_trans_fd *ts = kzalloc(sizeof(struct p9_trans_fd),
a80d923e
EVH
811 GFP_KERNEL);
812 if (!ts)
813 return -ENOMEM;
bd238fb4 814
a80d923e
EVH
815 ts->rd = fget(rfd);
816 ts->wr = fget(wfd);
817 if (!ts->rd || !ts->wr) {
818 if (ts->rd)
819 fput(ts->rd);
820 if (ts->wr)
821 fput(ts->wr);
822 kfree(ts);
823 return -EIO;
bd238fb4
LI
824 }
825
8b81ef58
EVH
826 client->trans = ts;
827 client->status = Connected;
bd238fb4 828
a80d923e 829 return 0;
bd238fb4 830}
bd238fb4 831
8b81ef58 832static int p9_socket_open(struct p9_client *client, struct socket *csocket)
bd238fb4 833{
6b18662e 834 struct p9_trans_fd *p;
56b31d1c 835 struct file *file;
6b18662e 836
263c5828 837 p = kzalloc(sizeof(struct p9_trans_fd), GFP_KERNEL);
6b18662e
AV
838 if (!p)
839 return -ENOMEM;
bd238fb4
LI
840
841 csocket->sk->sk_allocation = GFP_NOIO;
aab174f0 842 file = sock_alloc_file(csocket, 0, NULL);
56b31d1c 843 if (IS_ERR(file)) {
5d385153
JP
844 pr_err("%s (%d): failed to map fd\n",
845 __func__, task_pid_nr(current));
6b18662e
AV
846 sock_release(csocket);
847 kfree(p);
56b31d1c 848 return PTR_ERR(file);
bd238fb4
LI
849 }
850
56b31d1c
AV
851 get_file(file);
852 p->wr = p->rd = file;
6b18662e
AV
853 client->trans = p;
854 client->status = Connected;
855
6b18662e
AV
856 p->rd->f_flags |= O_NONBLOCK;
857
263c5828 858 p9_conn_create(client);
bd238fb4
LI
859 return 0;
860}
861
bd238fb4 862/**
263c5828 863 * p9_mux_destroy - cancels all pending requests of mux
5503ac56 864 * @m: mux to destroy
bd238fb4
LI
865 *
866 */
ee443996 867
5503ac56 868static void p9_conn_destroy(struct p9_conn *m)
bd238fb4 869{
5d385153
JP
870 p9_debug(P9_DEBUG_TRANS, "mux %p prev %p next %p\n",
871 m, m->mux_list.prev, m->mux_list.next);
bd238fb4 872
5503ac56
EVH
873 p9_mux_poll_stop(m);
874 cancel_work_sync(&m->rq);
875 cancel_work_sync(&m->wq);
bd238fb4 876
5503ac56 877 p9_conn_cancel(m, -ECONNRESET);
bd238fb4 878
5503ac56 879 m->client = NULL;
bd238fb4
LI
880}
881
882/**
8b81ef58
EVH
883 * p9_fd_close - shutdown file descriptor transport
884 * @client: client instance
bd238fb4
LI
885 *
886 */
ee443996 887
8b81ef58 888static void p9_fd_close(struct p9_client *client)
bd238fb4
LI
889{
890 struct p9_trans_fd *ts;
891
8b81ef58 892 if (!client)
bd238fb4
LI
893 return;
894
8b81ef58 895 ts = client->trans;
bd238fb4
LI
896 if (!ts)
897 return;
898
8b81ef58
EVH
899 client->status = Disconnected;
900
263c5828 901 p9_conn_destroy(&ts->conn);
8a0dc95f 902
bd238fb4
LI
903 if (ts->rd)
904 fput(ts->rd);
905 if (ts->wr)
906 fput(ts->wr);
8b81ef58 907
bd238fb4
LI
908 kfree(ts);
909}
910
887b3ece
EVH
911/*
912 * stolen from NFS - maybe should be made a generic function?
913 */
914static inline int valid_ipaddr4(const char *buf)
915{
916 int rc, count, in[4];
917
918 rc = sscanf(buf, "%d.%d.%d.%d", &in[0], &in[1], &in[2], &in[3]);
919 if (rc != 4)
920 return -EINVAL;
921 for (count = 0; count < 4; count++) {
922 if (in[count] > 255)
923 return -EINVAL;
924 }
925 return 0;
926}
927
2f28c8b3
JG
928static int p9_bind_privport(struct socket *sock)
929{
930 struct sockaddr_in cl;
931 int port, err = -EINVAL;
932
933 memset(&cl, 0, sizeof(cl));
934 cl.sin_family = AF_INET;
935 cl.sin_addr.s_addr = INADDR_ANY;
936 for (port = p9_ipport_resv_max; port >= p9_ipport_resv_min; port--) {
937 cl.sin_port = htons((ushort)port);
938 err = kernel_bind(sock, (struct sockaddr *)&cl, sizeof(cl));
939 if (err != -EADDRINUSE)
940 break;
941 }
942 return err;
943}
944
945
8b81ef58
EVH
946static int
947p9_fd_create_tcp(struct p9_client *client, const char *addr, char *args)
a80d923e
EVH
948{
949 int err;
a80d923e
EVH
950 struct socket *csocket;
951 struct sockaddr_in sin_server;
952 struct p9_fd_opts opts;
953
bb8ffdfc
EVH
954 err = parse_opts(args, &opts);
955 if (err < 0)
8b81ef58 956 return err;
a80d923e 957
887b3ece 958 if (valid_ipaddr4(addr) < 0)
8b81ef58 959 return -EINVAL;
887b3ece 960
a80d923e 961 csocket = NULL;
a80d923e 962
c4fac910
DH
963 client->trans_opts.tcp.port = opts.port;
964 client->trans_opts.tcp.privport = opts.privport;
a80d923e
EVH
965 sin_server.sin_family = AF_INET;
966 sin_server.sin_addr.s_addr = in_aton(addr);
967 sin_server.sin_port = htons(opts.port);
0c5c9fb5 968 err = __sock_create(current->nsproxy->net_ns, PF_INET,
e75762fd 969 SOCK_STREAM, IPPROTO_TCP, &csocket, 1);
6b18662e 970 if (err) {
5d385153
JP
971 pr_err("%s (%d): problem creating socket\n",
972 __func__, task_pid_nr(current));
6b18662e 973 return err;
a80d923e
EVH
974 }
975
2f28c8b3
JG
976 if (opts.privport) {
977 err = p9_bind_privport(csocket);
978 if (err < 0) {
979 pr_err("%s (%d): problem binding to privport\n",
980 __func__, task_pid_nr(current));
981 sock_release(csocket);
982 return err;
983 }
984 }
985
a80d923e
EVH
986 err = csocket->ops->connect(csocket,
987 (struct sockaddr *)&sin_server,
988 sizeof(struct sockaddr_in), 0);
989 if (err < 0) {
5d385153
JP
990 pr_err("%s (%d): problem connecting socket to %s\n",
991 __func__, task_pid_nr(current), addr);
a80d923e 992 sock_release(csocket);
6b18662e
AV
993 return err;
994 }
a80d923e 995
6b18662e 996 return p9_socket_open(client, csocket);
a80d923e
EVH
997}
998
8b81ef58
EVH
999static int
1000p9_fd_create_unix(struct p9_client *client, const char *addr, char *args)
a80d923e
EVH
1001{
1002 int err;
1003 struct socket *csocket;
1004 struct sockaddr_un sun_server;
a80d923e
EVH
1005
1006 csocket = NULL;
a80d923e 1007
cff6b8a9 1008 if (strlen(addr) >= UNIX_PATH_MAX) {
5d385153
JP
1009 pr_err("%s (%d): address too long: %s\n",
1010 __func__, task_pid_nr(current), addr);
6b18662e 1011 return -ENAMETOOLONG;
a80d923e
EVH
1012 }
1013
1014 sun_server.sun_family = PF_UNIX;
1015 strcpy(sun_server.sun_path, addr);
0c5c9fb5 1016 err = __sock_create(current->nsproxy->net_ns, PF_UNIX,
e75762fd 1017 SOCK_STREAM, 0, &csocket, 1);
6b18662e 1018 if (err < 0) {
5d385153
JP
1019 pr_err("%s (%d): problem creating socket\n",
1020 __func__, task_pid_nr(current));
1021
6b18662e
AV
1022 return err;
1023 }
a80d923e
EVH
1024 err = csocket->ops->connect(csocket, (struct sockaddr *)&sun_server,
1025 sizeof(struct sockaddr_un) - 1, 0);
1026 if (err < 0) {
5d385153
JP
1027 pr_err("%s (%d): problem connecting socket: %s: %d\n",
1028 __func__, task_pid_nr(current), addr, err);
a80d923e 1029 sock_release(csocket);
6b18662e
AV
1030 return err;
1031 }
a80d923e 1032
6b18662e 1033 return p9_socket_open(client, csocket);
a80d923e
EVH
1034}
1035
8b81ef58
EVH
1036static int
1037p9_fd_create(struct p9_client *client, const char *addr, char *args)
a80d923e
EVH
1038{
1039 int err;
a80d923e
EVH
1040 struct p9_fd_opts opts;
1041
1042 parse_opts(args, &opts);
c4fac910
DH
1043 client->trans_opts.fd.rfd = opts.rfd;
1044 client->trans_opts.fd.wfd = opts.wfd;
a80d923e
EVH
1045
1046 if (opts.rfd == ~0 || opts.wfd == ~0) {
5d385153 1047 pr_err("Insufficient options for proto=fd\n");
8b81ef58 1048 return -ENOPROTOOPT;
a80d923e
EVH
1049 }
1050
8b81ef58 1051 err = p9_fd_open(client, opts.rfd, opts.wfd);
a80d923e 1052 if (err < 0)
6b18662e 1053 return err;
a80d923e 1054
263c5828 1055 p9_conn_create(client);
8a0dc95f 1056
8b81ef58 1057 return 0;
a80d923e
EVH
1058}
1059
1060static struct p9_trans_module p9_tcp_trans = {
1061 .name = "tcp",
1062 .maxsize = MAX_SOCK_BUF,
f94741fd 1063 .def = 0,
8b81ef58
EVH
1064 .create = p9_fd_create_tcp,
1065 .close = p9_fd_close,
91b8534f
EVH
1066 .request = p9_fd_request,
1067 .cancel = p9_fd_cancel,
afd8d654 1068 .cancelled = p9_fd_cancelled,
c4fac910 1069 .show_options = p9_fd_show_options,
72029fe8 1070 .owner = THIS_MODULE,
a80d923e
EVH
1071};
1072
1073static struct p9_trans_module p9_unix_trans = {
1074 .name = "unix",
1075 .maxsize = MAX_SOCK_BUF,
1076 .def = 0,
8b81ef58
EVH
1077 .create = p9_fd_create_unix,
1078 .close = p9_fd_close,
91b8534f
EVH
1079 .request = p9_fd_request,
1080 .cancel = p9_fd_cancel,
afd8d654 1081 .cancelled = p9_fd_cancelled,
c4fac910 1082 .show_options = p9_fd_show_options,
72029fe8 1083 .owner = THIS_MODULE,
a80d923e
EVH
1084};
1085
1086static struct p9_trans_module p9_fd_trans = {
1087 .name = "fd",
1088 .maxsize = MAX_SOCK_BUF,
1089 .def = 0,
8b81ef58
EVH
1090 .create = p9_fd_create,
1091 .close = p9_fd_close,
91b8534f
EVH
1092 .request = p9_fd_request,
1093 .cancel = p9_fd_cancel,
afd8d654 1094 .cancelled = p9_fd_cancelled,
c4fac910 1095 .show_options = p9_fd_show_options,
72029fe8 1096 .owner = THIS_MODULE,
a80d923e
EVH
1097};
1098
5503ac56
EVH
1099/**
1100 * p9_poll_proc - poll worker thread
1101 * @a: thread state and arguments
1102 *
1103 * polls all v9fs transports for new events and queues the appropriate
1104 * work to the work queue
1105 *
1106 */
1107
aa70c585 1108static void p9_poll_workfn(struct work_struct *work)
5503ac56
EVH
1109{
1110 unsigned long flags;
1111
5d385153 1112 p9_debug(P9_DEBUG_TRANS, "start %p\n", current);
aa70c585 1113
5503ac56
EVH
1114 spin_lock_irqsave(&p9_poll_lock, flags);
1115 while (!list_empty(&p9_poll_pending_list)) {
1116 struct p9_conn *conn = list_first_entry(&p9_poll_pending_list,
1117 struct p9_conn,
1118 poll_pending_link);
1119 list_del_init(&conn->poll_pending_link);
1120 spin_unlock_irqrestore(&p9_poll_lock, flags);
1121
1122 p9_poll_mux(conn);
1123
1124 spin_lock_irqsave(&p9_poll_lock, flags);
1125 }
1126 spin_unlock_irqrestore(&p9_poll_lock, flags);
1127
5d385153 1128 p9_debug(P9_DEBUG_TRANS, "finish\n");
5503ac56
EVH
1129}
1130
887b3ece 1131int p9_trans_fd_init(void)
a80d923e
EVH
1132{
1133 v9fs_register_trans(&p9_tcp_trans);
1134 v9fs_register_trans(&p9_unix_trans);
1135 v9fs_register_trans(&p9_fd_trans);
1136
3387b804 1137 return 0;
a80d923e 1138}
72029fe8
TH
1139
1140void p9_trans_fd_exit(void)
1141{
43829731 1142 flush_work(&p9_poll_work);
72029fe8
TH
1143 v9fs_unregister_trans(&p9_tcp_trans);
1144 v9fs_unregister_trans(&p9_unix_trans);
1145 v9fs_unregister_trans(&p9_fd_trans);
1146}