2 * linux/fs/9p/trans_fd.c
4 * Fd transport layer. Includes deprecated socket layer.
6 * Copyright (C) 2006 by Russ Cox <rsc@swtch.com>
7 * Copyright (C) 2004-2005 by Latchesar Ionkov <lucho@ionkov.net>
8 * Copyright (C) 2004-2008 by Eric Van Hensbergen <ericvh@gmail.com>
9 * Copyright (C) 1997-2002 by Ron Minnich <rminnich@sarnoff.com>
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.
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.
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
28 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31 #include <linux/module.h>
32 #include <linux/net.h>
33 #include <linux/ipv6.h>
34 #include <linux/kthread.h>
35 #include <linux/errno.h>
36 #include <linux/kernel.h>
38 #include <linux/uaccess.h>
39 #include <linux/inet.h>
40 #include <linux/idr.h>
41 #include <linux/file.h>
42 #include <linux/parser.h>
43 #include <linux/slab.h>
44 #include <net/9p/9p.h>
45 #include <net/9p/client.h>
46 #include <net/9p/transport.h>
48 #include <linux/syscalls.h> /* killme */
51 #define MAX_SOCK_BUF (64*1024)
52 #define MAXPOLLWADDR 2
55 * struct p9_fd_opts - per-transport options
56 * @rfd: file descriptor for reading (trans=fd)
57 * @wfd: file descriptor for writing (trans=fd)
58 * @port: port to connect to (trans=tcp)
70 * Option Parsing (code inspired by NFS code)
71 * - a little lazy - parse all fd-transport options
75 /* Options that take integer arguments */
76 Opt_port
, Opt_rfdno
, Opt_wfdno
, Opt_err
,
77 /* Options that take no arguments */
81 static const match_table_t tokens
= {
82 {Opt_port
, "port=%u"},
83 {Opt_rfdno
, "rfdno=%u"},
84 {Opt_wfdno
, "wfdno=%u"},
85 {Opt_privport
, "privport"},
90 Rworksched
= 1, /* read work scheduled or running */
91 Rpending
= 2, /* can read */
92 Wworksched
= 4, /* write work scheduled or running */
93 Wpending
= 8, /* can write */
99 wait_queue_head_t
*wait_addr
;
103 * struct p9_conn - fd mux connection state information
104 * @mux_list: list link for mux to manage multiple connections (?)
105 * @client: reference to client instance for this connection
107 * @req_list: accounting for requests which have been sent
108 * @unsent_req_list: accounting for requests that haven't been sent
109 * @req: current request being processed (if any)
110 * @tmp_buf: temporary buffer to read in header
111 * @rsize: amount to read for current frame
112 * @rpos: read position in current frame
113 * @rbuf: current read buffer
114 * @wpos: write position for current frame
115 * @wsize: amount of data to write for current frame
116 * @wbuf: current write buffer
117 * @poll_pending_link: pending links to be polled per conn
118 * @poll_wait: array of wait_q's for various worker threads
120 * @rq: current read work
121 * @wq: current write work
127 struct list_head mux_list
;
128 struct p9_client
*client
;
130 struct list_head req_list
;
131 struct list_head unsent_req_list
;
132 struct p9_req_t
*req
;
140 struct list_head poll_pending_link
;
141 struct p9_poll_wait poll_wait
[MAXPOLLWADDR
];
143 struct work_struct rq
;
144 struct work_struct wq
;
145 unsigned long wsched
;
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
162 static void p9_poll_workfn(struct work_struct
*work
);
164 static DEFINE_SPINLOCK(p9_poll_lock
);
165 static LIST_HEAD(p9_poll_pending_list
);
166 static DECLARE_WORK(p9_poll_work
, p9_poll_workfn
);
168 static unsigned int p9_ipport_resv_min
= P9_DEF_MIN_RESVPORT
;
169 static unsigned int p9_ipport_resv_max
= P9_DEF_MAX_RESVPORT
;
171 static void p9_mux_poll_stop(struct p9_conn
*m
)
176 for (i
= 0; i
< ARRAY_SIZE(m
->poll_wait
); i
++) {
177 struct p9_poll_wait
*pwait
= &m
->poll_wait
[i
];
179 if (pwait
->wait_addr
) {
180 remove_wait_queue(pwait
->wait_addr
, &pwait
->wait
);
181 pwait
->wait_addr
= NULL
;
185 spin_lock_irqsave(&p9_poll_lock
, flags
);
186 list_del_init(&m
->poll_pending_link
);
187 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
191 * p9_conn_cancel - cancel all pending requests with error
197 static void p9_conn_cancel(struct p9_conn
*m
, int err
)
199 struct p9_req_t
*req
, *rtmp
;
201 LIST_HEAD(cancel_list
);
203 p9_debug(P9_DEBUG_ERROR
, "mux %p err %d\n", m
, err
);
205 spin_lock_irqsave(&m
->client
->lock
, flags
);
208 spin_unlock_irqrestore(&m
->client
->lock
, flags
);
214 list_for_each_entry_safe(req
, rtmp
, &m
->req_list
, req_list
) {
215 list_move(&req
->req_list
, &cancel_list
);
217 list_for_each_entry_safe(req
, rtmp
, &m
->unsent_req_list
, req_list
) {
218 list_move(&req
->req_list
, &cancel_list
);
220 spin_unlock_irqrestore(&m
->client
->lock
, flags
);
222 list_for_each_entry_safe(req
, rtmp
, &cancel_list
, req_list
) {
223 p9_debug(P9_DEBUG_ERROR
, "call back req %p\n", req
);
224 list_del(&req
->req_list
);
227 p9_client_cb(m
->client
, req
, REQ_STATUS_ERROR
);
232 p9_fd_poll(struct p9_client
*client
, struct poll_table_struct
*pt
)
235 struct p9_trans_fd
*ts
= NULL
;
237 if (client
&& client
->status
== Connected
)
243 if (!ts
->rd
->f_op
->poll
)
246 if (!ts
->wr
->f_op
->poll
)
249 ret
= ts
->rd
->f_op
->poll(ts
->rd
, pt
);
253 if (ts
->rd
!= ts
->wr
) {
254 n
= ts
->wr
->f_op
->poll(ts
->wr
, pt
);
257 ret
= (ret
& ~POLLOUT
) | (n
& ~POLLIN
);
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
271 static int p9_fd_read(struct p9_client
*client
, void *v
, int len
)
274 struct p9_trans_fd
*ts
= NULL
;
276 if (client
&& client
->status
!= Disconnected
)
282 if (!(ts
->rd
->f_flags
& O_NONBLOCK
))
283 p9_debug(P9_DEBUG_ERROR
, "blocking read ...\n");
285 ret
= kernel_read(ts
->rd
, ts
->rd
->f_pos
, v
, len
);
286 if (ret
<= 0 && ret
!= -ERESTARTSYS
&& ret
!= -EAGAIN
)
287 client
->status
= Disconnected
;
292 * p9_read_work - called when there is some data to be read from a transport
293 * @work: container of work to be done
297 static void p9_read_work(struct work_struct
*work
)
301 int status
= REQ_STATUS_ERROR
;
303 m
= container_of(work
, struct p9_conn
, rq
);
308 p9_debug(P9_DEBUG_TRANS
, "start mux %p pos %d\n", m
, m
->rpos
);
311 m
->rbuf
= m
->tmp_buf
;
313 m
->rsize
= 7; /* start by reading header */
316 clear_bit(Rpending
, &m
->wsched
);
317 p9_debug(P9_DEBUG_TRANS
, "read mux %p pos %d size: %d = %d\n",
318 m
, m
->rpos
, m
->rsize
, m
->rsize
-m
->rpos
);
319 err
= p9_fd_read(m
->client
, m
->rbuf
+ m
->rpos
,
321 p9_debug(P9_DEBUG_TRANS
, "mux %p got %d bytes\n", m
, err
);
322 if (err
== -EAGAIN
) {
331 if ((!m
->req
) && (m
->rpos
== m
->rsize
)) { /* header read in */
333 p9_debug(P9_DEBUG_TRANS
, "got new header\n");
335 n
= le32_to_cpu(*(__le32
*) m
->rbuf
); /* read packet size */
336 if (n
>= m
->client
->msize
) {
337 p9_debug(P9_DEBUG_ERROR
,
338 "requested packet size too big: %d\n", n
);
343 tag
= le16_to_cpu(*(__le16
*) (m
->rbuf
+5)); /* read tag */
344 p9_debug(P9_DEBUG_TRANS
,
345 "mux %p pkt: size: %d bytes tag: %d\n", m
, n
, tag
);
347 m
->req
= p9_tag_lookup(m
->client
, tag
);
348 if (!m
->req
|| (m
->req
->status
!= REQ_STATUS_SENT
)) {
349 p9_debug(P9_DEBUG_ERROR
, "Unexpected packet tag %d\n",
355 if (m
->req
->rc
== NULL
) {
356 m
->req
->rc
= kmalloc(sizeof(struct p9_fcall
) +
357 m
->client
->msize
, GFP_NOFS
);
364 m
->rbuf
= (char *)m
->req
->rc
+ sizeof(struct p9_fcall
);
365 memcpy(m
->rbuf
, m
->tmp_buf
, m
->rsize
);
369 /* not an else because some packets (like clunk) have no payload */
370 if ((m
->req
) && (m
->rpos
== m
->rsize
)) { /* packet is read in */
371 p9_debug(P9_DEBUG_TRANS
, "got new packet\n");
372 spin_lock(&m
->client
->lock
);
373 if (m
->req
->status
!= REQ_STATUS_ERROR
)
374 status
= REQ_STATUS_RCVD
;
375 list_del(&m
->req
->req_list
);
376 spin_unlock(&m
->client
->lock
);
377 p9_client_cb(m
->client
, m
->req
, status
);
385 clear_bit(Rworksched
, &m
->wsched
);
387 if (!list_empty(&m
->req_list
)) {
388 if (test_and_clear_bit(Rpending
, &m
->wsched
))
391 n
= p9_fd_poll(m
->client
, NULL
);
393 if ((n
& POLLIN
) && !test_and_set_bit(Rworksched
, &m
->wsched
)) {
394 p9_debug(P9_DEBUG_TRANS
, "sched read work %p\n", m
);
395 schedule_work(&m
->rq
);
401 p9_conn_cancel(m
, err
);
402 clear_bit(Rworksched
, &m
->wsched
);
406 * p9_fd_write - write to a socket
407 * @client: client instance
408 * @v: buffer to send data from
409 * @len: size of send buffer
413 static int p9_fd_write(struct p9_client
*client
, void *v
, int len
)
417 struct p9_trans_fd
*ts
= NULL
;
419 if (client
&& client
->status
!= Disconnected
)
425 if (!(ts
->wr
->f_flags
& O_NONBLOCK
))
426 p9_debug(P9_DEBUG_ERROR
, "blocking write ...\n");
430 /* The cast to a user pointer is valid due to the set_fs() */
431 ret
= vfs_write(ts
->wr
, (__force
void __user
*)v
, len
, &ts
->wr
->f_pos
);
434 if (ret
<= 0 && ret
!= -ERESTARTSYS
&& ret
!= -EAGAIN
)
435 client
->status
= Disconnected
;
440 * p9_write_work - called when a transport can send some data
441 * @work: container for work to be done
445 static void p9_write_work(struct work_struct
*work
)
449 struct p9_req_t
*req
;
451 m
= container_of(work
, struct p9_conn
, wq
);
454 clear_bit(Wworksched
, &m
->wsched
);
459 spin_lock(&m
->client
->lock
);
460 if (list_empty(&m
->unsent_req_list
)) {
461 clear_bit(Wworksched
, &m
->wsched
);
462 spin_unlock(&m
->client
->lock
);
466 req
= list_entry(m
->unsent_req_list
.next
, struct p9_req_t
,
468 req
->status
= REQ_STATUS_SENT
;
469 p9_debug(P9_DEBUG_TRANS
, "move req %p\n", req
);
470 list_move_tail(&req
->req_list
, &m
->req_list
);
472 m
->wbuf
= req
->tc
->sdata
;
473 m
->wsize
= req
->tc
->size
;
475 spin_unlock(&m
->client
->lock
);
478 p9_debug(P9_DEBUG_TRANS
, "mux %p pos %d size %d\n",
479 m
, m
->wpos
, m
->wsize
);
480 clear_bit(Wpending
, &m
->wsched
);
481 err
= p9_fd_write(m
->client
, m
->wbuf
+ m
->wpos
, m
->wsize
- m
->wpos
);
482 p9_debug(P9_DEBUG_TRANS
, "mux %p sent %d bytes\n", m
, err
);
495 if (m
->wpos
== m
->wsize
)
496 m
->wpos
= m
->wsize
= 0;
499 clear_bit(Wworksched
, &m
->wsched
);
501 if (m
->wsize
|| !list_empty(&m
->unsent_req_list
)) {
502 if (test_and_clear_bit(Wpending
, &m
->wsched
))
505 n
= p9_fd_poll(m
->client
, NULL
);
508 !test_and_set_bit(Wworksched
, &m
->wsched
)) {
509 p9_debug(P9_DEBUG_TRANS
, "sched write work %p\n", m
);
510 schedule_work(&m
->wq
);
517 p9_conn_cancel(m
, err
);
518 clear_bit(Wworksched
, &m
->wsched
);
521 static int p9_pollwake(wait_queue_t
*wait
, unsigned int mode
, int sync
, void *key
)
523 struct p9_poll_wait
*pwait
=
524 container_of(wait
, struct p9_poll_wait
, wait
);
525 struct p9_conn
*m
= pwait
->conn
;
528 spin_lock_irqsave(&p9_poll_lock
, flags
);
529 if (list_empty(&m
->poll_pending_link
))
530 list_add_tail(&m
->poll_pending_link
, &p9_poll_pending_list
);
531 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
533 schedule_work(&p9_poll_work
);
538 * p9_pollwait - add poll task to the wait queue
539 * @filp: file pointer being polled
540 * @wait_address: wait_q to block on
543 * called by files poll operation to add v9fs-poll task to files wait queue
547 p9_pollwait(struct file
*filp
, wait_queue_head_t
*wait_address
, poll_table
*p
)
549 struct p9_conn
*m
= container_of(p
, struct p9_conn
, pt
);
550 struct p9_poll_wait
*pwait
= NULL
;
553 for (i
= 0; i
< ARRAY_SIZE(m
->poll_wait
); i
++) {
554 if (m
->poll_wait
[i
].wait_addr
== NULL
) {
555 pwait
= &m
->poll_wait
[i
];
561 p9_debug(P9_DEBUG_ERROR
, "not enough wait_address slots\n");
566 pwait
->wait_addr
= wait_address
;
567 init_waitqueue_func_entry(&pwait
->wait
, p9_pollwake
);
568 add_wait_queue(wait_address
, &pwait
->wait
);
572 * p9_conn_create - initialize the per-session mux data
573 * @client: client instance
575 * Note: Creates the polling task if this is the first session.
578 static void p9_conn_create(struct p9_client
*client
)
581 struct p9_trans_fd
*ts
= client
->trans
;
582 struct p9_conn
*m
= &ts
->conn
;
584 p9_debug(P9_DEBUG_TRANS
, "client %p msize %d\n", client
, client
->msize
);
586 INIT_LIST_HEAD(&m
->mux_list
);
589 INIT_LIST_HEAD(&m
->req_list
);
590 INIT_LIST_HEAD(&m
->unsent_req_list
);
591 INIT_WORK(&m
->rq
, p9_read_work
);
592 INIT_WORK(&m
->wq
, p9_write_work
);
593 INIT_LIST_HEAD(&m
->poll_pending_link
);
594 init_poll_funcptr(&m
->pt
, p9_pollwait
);
596 n
= p9_fd_poll(client
, &m
->pt
);
598 p9_debug(P9_DEBUG_TRANS
, "mux %p can read\n", m
);
599 set_bit(Rpending
, &m
->wsched
);
603 p9_debug(P9_DEBUG_TRANS
, "mux %p can write\n", m
);
604 set_bit(Wpending
, &m
->wsched
);
609 * p9_poll_mux - polls a mux and schedules read or write works if necessary
610 * @m: connection to poll
614 static void p9_poll_mux(struct p9_conn
*m
)
621 n
= p9_fd_poll(m
->client
, NULL
);
622 if (n
< 0 || n
& (POLLERR
| POLLHUP
| POLLNVAL
)) {
623 p9_debug(P9_DEBUG_TRANS
, "error mux %p err %d\n", m
, n
);
626 p9_conn_cancel(m
, n
);
630 set_bit(Rpending
, &m
->wsched
);
631 p9_debug(P9_DEBUG_TRANS
, "mux %p can read\n", m
);
632 if (!test_and_set_bit(Rworksched
, &m
->wsched
)) {
633 p9_debug(P9_DEBUG_TRANS
, "sched read work %p\n", m
);
634 schedule_work(&m
->rq
);
639 set_bit(Wpending
, &m
->wsched
);
640 p9_debug(P9_DEBUG_TRANS
, "mux %p can write\n", m
);
641 if ((m
->wsize
|| !list_empty(&m
->unsent_req_list
)) &&
642 !test_and_set_bit(Wworksched
, &m
->wsched
)) {
643 p9_debug(P9_DEBUG_TRANS
, "sched write work %p\n", m
);
644 schedule_work(&m
->wq
);
650 * p9_fd_request - send 9P request
651 * The function can sleep until the request is scheduled for sending.
652 * The function can be interrupted. Return from the function is not
653 * a guarantee that the request is sent successfully.
655 * @client: client instance
656 * @req: request to be sent
660 static int p9_fd_request(struct p9_client
*client
, struct p9_req_t
*req
)
663 struct p9_trans_fd
*ts
= client
->trans
;
664 struct p9_conn
*m
= &ts
->conn
;
666 p9_debug(P9_DEBUG_TRANS
, "mux %p task %p tcall %p id %d\n",
667 m
, current
, req
->tc
, req
->tc
->id
);
671 spin_lock(&client
->lock
);
672 req
->status
= REQ_STATUS_UNSENT
;
673 list_add_tail(&req
->req_list
, &m
->unsent_req_list
);
674 spin_unlock(&client
->lock
);
676 if (test_and_clear_bit(Wpending
, &m
->wsched
))
679 n
= p9_fd_poll(m
->client
, NULL
);
681 if (n
& POLLOUT
&& !test_and_set_bit(Wworksched
, &m
->wsched
))
682 schedule_work(&m
->wq
);
687 static int p9_fd_cancel(struct p9_client
*client
, struct p9_req_t
*req
)
691 p9_debug(P9_DEBUG_TRANS
, "client %p req %p\n", client
, req
);
693 spin_lock(&client
->lock
);
695 if (req
->status
== REQ_STATUS_UNSENT
) {
696 list_del(&req
->req_list
);
697 req
->status
= REQ_STATUS_FLSHD
;
700 spin_unlock(&client
->lock
);
705 static int p9_fd_cancelled(struct p9_client
*client
, struct p9_req_t
*req
)
707 p9_debug(P9_DEBUG_TRANS
, "client %p req %p\n", client
, req
);
709 /* we haven't received a response for oldreq,
710 * remove it from the list.
712 spin_lock(&client
->lock
);
713 list_del(&req
->req_list
);
714 spin_unlock(&client
->lock
);
720 * parse_opts - parse mount options into p9_fd_opts structure
721 * @params: options string passed from mount
722 * @opts: fd transport-specific structure to parse options into
724 * Returns 0 upon success, -ERRNO upon failure
727 static int parse_opts(char *params
, struct p9_fd_opts
*opts
)
730 substring_t args
[MAX_OPT_ARGS
];
732 char *options
, *tmp_options
;
734 opts
->port
= P9_PORT
;
741 tmp_options
= kstrdup(params
, GFP_KERNEL
);
743 p9_debug(P9_DEBUG_ERROR
,
744 "failed to allocate copy of option string\n");
747 options
= tmp_options
;
749 while ((p
= strsep(&options
, ",")) != NULL
) {
754 token
= match_token(p
, tokens
, args
);
755 if ((token
!= Opt_err
) && (token
!= Opt_privport
)) {
756 r
= match_int(&args
[0], &option
);
758 p9_debug(P9_DEBUG_ERROR
,
759 "integer field, but no integer?\n");
785 static int p9_fd_open(struct p9_client
*client
, int rfd
, int wfd
)
787 struct p9_trans_fd
*ts
= kzalloc(sizeof(struct p9_trans_fd
),
794 if (!ts
->rd
|| !ts
->wr
) {
804 client
->status
= Connected
;
809 static int p9_socket_open(struct p9_client
*client
, struct socket
*csocket
)
811 struct p9_trans_fd
*p
;
814 p
= kzalloc(sizeof(struct p9_trans_fd
), GFP_KERNEL
);
818 csocket
->sk
->sk_allocation
= GFP_NOIO
;
819 file
= sock_alloc_file(csocket
, 0, NULL
);
821 pr_err("%s (%d): failed to map fd\n",
822 __func__
, task_pid_nr(current
));
823 sock_release(csocket
);
825 return PTR_ERR(file
);
829 p
->wr
= p
->rd
= file
;
831 client
->status
= Connected
;
833 p
->rd
->f_flags
|= O_NONBLOCK
;
835 p9_conn_create(client
);
840 * p9_mux_destroy - cancels all pending requests of mux
845 static void p9_conn_destroy(struct p9_conn
*m
)
847 p9_debug(P9_DEBUG_TRANS
, "mux %p prev %p next %p\n",
848 m
, m
->mux_list
.prev
, m
->mux_list
.next
);
851 cancel_work_sync(&m
->rq
);
852 cancel_work_sync(&m
->wq
);
854 p9_conn_cancel(m
, -ECONNRESET
);
860 * p9_fd_close - shutdown file descriptor transport
861 * @client: client instance
865 static void p9_fd_close(struct p9_client
*client
)
867 struct p9_trans_fd
*ts
;
876 client
->status
= Disconnected
;
878 p9_conn_destroy(&ts
->conn
);
889 * stolen from NFS - maybe should be made a generic function?
891 static inline int valid_ipaddr4(const char *buf
)
893 int rc
, count
, in
[4];
895 rc
= sscanf(buf
, "%d.%d.%d.%d", &in
[0], &in
[1], &in
[2], &in
[3]);
898 for (count
= 0; count
< 4; count
++) {
905 static int p9_bind_privport(struct socket
*sock
)
907 struct sockaddr_in cl
;
908 int port
, err
= -EINVAL
;
910 memset(&cl
, 0, sizeof(cl
));
911 cl
.sin_family
= AF_INET
;
912 cl
.sin_addr
.s_addr
= INADDR_ANY
;
913 for (port
= p9_ipport_resv_max
; port
>= p9_ipport_resv_min
; port
--) {
914 cl
.sin_port
= htons((ushort
)port
);
915 err
= kernel_bind(sock
, (struct sockaddr
*)&cl
, sizeof(cl
));
916 if (err
!= -EADDRINUSE
)
924 p9_fd_create_tcp(struct p9_client
*client
, const char *addr
, char *args
)
927 struct socket
*csocket
;
928 struct sockaddr_in sin_server
;
929 struct p9_fd_opts opts
;
931 err
= parse_opts(args
, &opts
);
935 if (valid_ipaddr4(addr
) < 0)
940 sin_server
.sin_family
= AF_INET
;
941 sin_server
.sin_addr
.s_addr
= in_aton(addr
);
942 sin_server
.sin_port
= htons(opts
.port
);
943 err
= __sock_create(read_pnet(¤t
->nsproxy
->net_ns
), PF_INET
,
944 SOCK_STREAM
, IPPROTO_TCP
, &csocket
, 1);
946 pr_err("%s (%d): problem creating socket\n",
947 __func__
, task_pid_nr(current
));
952 err
= p9_bind_privport(csocket
);
954 pr_err("%s (%d): problem binding to privport\n",
955 __func__
, task_pid_nr(current
));
956 sock_release(csocket
);
961 err
= csocket
->ops
->connect(csocket
,
962 (struct sockaddr
*)&sin_server
,
963 sizeof(struct sockaddr_in
), 0);
965 pr_err("%s (%d): problem connecting socket to %s\n",
966 __func__
, task_pid_nr(current
), addr
);
967 sock_release(csocket
);
971 return p9_socket_open(client
, csocket
);
975 p9_fd_create_unix(struct p9_client
*client
, const char *addr
, char *args
)
978 struct socket
*csocket
;
979 struct sockaddr_un sun_server
;
983 if (strlen(addr
) >= UNIX_PATH_MAX
) {
984 pr_err("%s (%d): address too long: %s\n",
985 __func__
, task_pid_nr(current
), addr
);
986 return -ENAMETOOLONG
;
989 sun_server
.sun_family
= PF_UNIX
;
990 strcpy(sun_server
.sun_path
, addr
);
991 err
= __sock_create(read_pnet(¤t
->nsproxy
->net_ns
), PF_UNIX
,
992 SOCK_STREAM
, 0, &csocket
, 1);
994 pr_err("%s (%d): problem creating socket\n",
995 __func__
, task_pid_nr(current
));
999 err
= csocket
->ops
->connect(csocket
, (struct sockaddr
*)&sun_server
,
1000 sizeof(struct sockaddr_un
) - 1, 0);
1002 pr_err("%s (%d): problem connecting socket: %s: %d\n",
1003 __func__
, task_pid_nr(current
), addr
, err
);
1004 sock_release(csocket
);
1008 return p9_socket_open(client
, csocket
);
1012 p9_fd_create(struct p9_client
*client
, const char *addr
, char *args
)
1015 struct p9_fd_opts opts
;
1016 struct p9_trans_fd
*p
;
1018 parse_opts(args
, &opts
);
1020 if (opts
.rfd
== ~0 || opts
.wfd
== ~0) {
1021 pr_err("Insufficient options for proto=fd\n");
1022 return -ENOPROTOOPT
;
1025 err
= p9_fd_open(client
, opts
.rfd
, opts
.wfd
);
1029 p
= (struct p9_trans_fd
*) client
->trans
;
1030 p9_conn_create(client
);
1035 static struct p9_trans_module p9_tcp_trans
= {
1037 .maxsize
= MAX_SOCK_BUF
,
1039 .create
= p9_fd_create_tcp
,
1040 .close
= p9_fd_close
,
1041 .request
= p9_fd_request
,
1042 .cancel
= p9_fd_cancel
,
1043 .cancelled
= p9_fd_cancelled
,
1044 .owner
= THIS_MODULE
,
1047 static struct p9_trans_module p9_unix_trans
= {
1049 .maxsize
= MAX_SOCK_BUF
,
1051 .create
= p9_fd_create_unix
,
1052 .close
= p9_fd_close
,
1053 .request
= p9_fd_request
,
1054 .cancel
= p9_fd_cancel
,
1055 .cancelled
= p9_fd_cancelled
,
1056 .owner
= THIS_MODULE
,
1059 static struct p9_trans_module p9_fd_trans
= {
1061 .maxsize
= MAX_SOCK_BUF
,
1063 .create
= p9_fd_create
,
1064 .close
= p9_fd_close
,
1065 .request
= p9_fd_request
,
1066 .cancel
= p9_fd_cancel
,
1067 .cancelled
= p9_fd_cancelled
,
1068 .owner
= THIS_MODULE
,
1072 * p9_poll_proc - poll worker thread
1073 * @a: thread state and arguments
1075 * polls all v9fs transports for new events and queues the appropriate
1076 * work to the work queue
1080 static void p9_poll_workfn(struct work_struct
*work
)
1082 unsigned long flags
;
1084 p9_debug(P9_DEBUG_TRANS
, "start %p\n", current
);
1086 spin_lock_irqsave(&p9_poll_lock
, flags
);
1087 while (!list_empty(&p9_poll_pending_list
)) {
1088 struct p9_conn
*conn
= list_first_entry(&p9_poll_pending_list
,
1091 list_del_init(&conn
->poll_pending_link
);
1092 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
1096 spin_lock_irqsave(&p9_poll_lock
, flags
);
1098 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
1100 p9_debug(P9_DEBUG_TRANS
, "finish\n");
1103 int p9_trans_fd_init(void)
1105 v9fs_register_trans(&p9_tcp_trans
);
1106 v9fs_register_trans(&p9_unix_trans
);
1107 v9fs_register_trans(&p9_fd_trans
);
1112 void p9_trans_fd_exit(void)
1114 flush_work(&p9_poll_work
);
1115 v9fs_unregister_trans(&p9_tcp_trans
);
1116 v9fs_unregister_trans(&p9_unix_trans
);
1117 v9fs_unregister_trans(&p9_fd_trans
);