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 * @rc: temporary fcall for reading current frame
112 * @wpos: write position for current frame
113 * @wsize: amount of data to write for current frame
114 * @wbuf: current write buffer
115 * @poll_pending_link: pending links to be polled per conn
116 * @poll_wait: array of wait_q's for various worker threads
118 * @rq: current read work
119 * @wq: current write work
125 struct list_head mux_list
;
126 struct p9_client
*client
;
128 struct list_head req_list
;
129 struct list_head unsent_req_list
;
130 struct p9_req_t
*req
;
136 struct list_head poll_pending_link
;
137 struct p9_poll_wait poll_wait
[MAXPOLLWADDR
];
139 struct work_struct rq
;
140 struct work_struct wq
;
141 unsigned long wsched
;
145 * struct p9_trans_fd - transport state
146 * @rd: reference to file to read from
147 * @wr: reference of file to write to
148 * @conn: connection state reference
158 static void p9_poll_workfn(struct work_struct
*work
);
160 static DEFINE_SPINLOCK(p9_poll_lock
);
161 static LIST_HEAD(p9_poll_pending_list
);
162 static DECLARE_WORK(p9_poll_work
, p9_poll_workfn
);
164 static unsigned int p9_ipport_resv_min
= P9_DEF_MIN_RESVPORT
;
165 static unsigned int p9_ipport_resv_max
= P9_DEF_MAX_RESVPORT
;
167 static void p9_mux_poll_stop(struct p9_conn
*m
)
172 for (i
= 0; i
< ARRAY_SIZE(m
->poll_wait
); i
++) {
173 struct p9_poll_wait
*pwait
= &m
->poll_wait
[i
];
175 if (pwait
->wait_addr
) {
176 remove_wait_queue(pwait
->wait_addr
, &pwait
->wait
);
177 pwait
->wait_addr
= NULL
;
181 spin_lock_irqsave(&p9_poll_lock
, flags
);
182 list_del_init(&m
->poll_pending_link
);
183 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
187 * p9_conn_cancel - cancel all pending requests with error
193 static void p9_conn_cancel(struct p9_conn
*m
, int err
)
195 struct p9_req_t
*req
, *rtmp
;
197 LIST_HEAD(cancel_list
);
199 p9_debug(P9_DEBUG_ERROR
, "mux %p err %d\n", m
, err
);
201 spin_lock_irqsave(&m
->client
->lock
, flags
);
204 spin_unlock_irqrestore(&m
->client
->lock
, flags
);
210 list_for_each_entry_safe(req
, rtmp
, &m
->req_list
, req_list
) {
211 list_move(&req
->req_list
, &cancel_list
);
213 list_for_each_entry_safe(req
, rtmp
, &m
->unsent_req_list
, req_list
) {
214 list_move(&req
->req_list
, &cancel_list
);
216 spin_unlock_irqrestore(&m
->client
->lock
, flags
);
218 list_for_each_entry_safe(req
, rtmp
, &cancel_list
, req_list
) {
219 p9_debug(P9_DEBUG_ERROR
, "call back req %p\n", req
);
220 list_del(&req
->req_list
);
223 p9_client_cb(m
->client
, req
, REQ_STATUS_ERROR
);
228 p9_fd_poll(struct p9_client
*client
, struct poll_table_struct
*pt
)
231 struct p9_trans_fd
*ts
= NULL
;
233 if (client
&& client
->status
== Connected
)
239 if (!ts
->rd
->f_op
->poll
)
242 if (!ts
->wr
->f_op
->poll
)
245 ret
= ts
->rd
->f_op
->poll(ts
->rd
, pt
);
249 if (ts
->rd
!= ts
->wr
) {
250 n
= ts
->wr
->f_op
->poll(ts
->wr
, pt
);
253 ret
= (ret
& ~POLLOUT
) | (n
& ~POLLIN
);
260 * p9_fd_read- read from a fd
261 * @client: client instance
262 * @v: buffer to receive data into
263 * @len: size of receive buffer
267 static int p9_fd_read(struct p9_client
*client
, void *v
, int len
)
270 struct p9_trans_fd
*ts
= NULL
;
272 if (client
&& client
->status
!= Disconnected
)
278 if (!(ts
->rd
->f_flags
& O_NONBLOCK
))
279 p9_debug(P9_DEBUG_ERROR
, "blocking read ...\n");
281 ret
= kernel_read(ts
->rd
, ts
->rd
->f_pos
, v
, len
);
282 if (ret
<= 0 && ret
!= -ERESTARTSYS
&& ret
!= -EAGAIN
)
283 client
->status
= Disconnected
;
288 * p9_read_work - called when there is some data to be read from a transport
289 * @work: container of work to be done
293 static void p9_read_work(struct work_struct
*work
)
297 int status
= REQ_STATUS_ERROR
;
299 m
= container_of(work
, struct p9_conn
, rq
);
304 p9_debug(P9_DEBUG_TRANS
, "start mux %p pos %zd\n", m
, m
->rc
.offset
);
307 m
->rc
.sdata
= m
->tmp_buf
;
309 m
->rc
.capacity
= 7; /* start by reading header */
312 clear_bit(Rpending
, &m
->wsched
);
313 p9_debug(P9_DEBUG_TRANS
, "read mux %p pos %zd size: %zd = %zd\n",
314 m
, m
->rc
.offset
, m
->rc
.capacity
,
315 m
->rc
.capacity
- m
->rc
.offset
);
316 err
= p9_fd_read(m
->client
, m
->rc
.sdata
+ m
->rc
.offset
,
317 m
->rc
.capacity
- m
->rc
.offset
);
318 p9_debug(P9_DEBUG_TRANS
, "mux %p got %d bytes\n", m
, err
);
328 if ((!m
->req
) && (m
->rc
.offset
== m
->rc
.capacity
)) {
329 p9_debug(P9_DEBUG_TRANS
, "got new header\n");
331 err
= p9_parse_header(&m
->rc
, NULL
, NULL
, NULL
, 0);
333 p9_debug(P9_DEBUG_ERROR
,
334 "error parsing header: %d\n", err
);
338 if (m
->rc
.size
>= m
->client
->msize
) {
339 p9_debug(P9_DEBUG_ERROR
,
340 "requested packet size too big: %d\n",
346 p9_debug(P9_DEBUG_TRANS
,
347 "mux %p pkt: size: %d bytes tag: %d\n",
348 m
, m
->rc
.size
, m
->rc
.tag
);
350 m
->req
= p9_tag_lookup(m
->client
, m
->rc
.tag
);
351 if (!m
->req
|| (m
->req
->status
!= REQ_STATUS_SENT
)) {
352 p9_debug(P9_DEBUG_ERROR
, "Unexpected packet tag %d\n",
358 if (m
->req
->rc
== NULL
) {
359 p9_debug(P9_DEBUG_ERROR
,
360 "No recv fcall for tag %d (req %p), disconnecting!\n",
366 m
->rc
.sdata
= (char *)m
->req
->rc
+ sizeof(struct p9_fcall
);
367 memcpy(m
->rc
.sdata
, m
->tmp_buf
, m
->rc
.capacity
);
368 m
->rc
.capacity
= m
->rc
.size
;
372 * not an else because some packets (like clunk) have no payload
374 if ((m
->req
) && (m
->rc
.offset
== m
->rc
.capacity
)) {
375 p9_debug(P9_DEBUG_TRANS
, "got new packet\n");
376 spin_lock(&m
->client
->lock
);
377 if (m
->req
->status
!= REQ_STATUS_ERROR
)
378 status
= REQ_STATUS_RCVD
;
379 list_del(&m
->req
->req_list
);
380 spin_unlock(&m
->client
->lock
);
381 p9_client_cb(m
->client
, m
->req
, status
);
389 clear_bit(Rworksched
, &m
->wsched
);
391 if (!list_empty(&m
->req_list
)) {
392 if (test_and_clear_bit(Rpending
, &m
->wsched
))
395 n
= p9_fd_poll(m
->client
, NULL
);
397 if ((n
& POLLIN
) && !test_and_set_bit(Rworksched
, &m
->wsched
)) {
398 p9_debug(P9_DEBUG_TRANS
, "sched read work %p\n", m
);
399 schedule_work(&m
->rq
);
405 p9_conn_cancel(m
, err
);
406 clear_bit(Rworksched
, &m
->wsched
);
410 * p9_fd_write - write to a socket
411 * @client: client instance
412 * @v: buffer to send data from
413 * @len: size of send buffer
417 static int p9_fd_write(struct p9_client
*client
, void *v
, int len
)
421 struct p9_trans_fd
*ts
= NULL
;
423 if (client
&& client
->status
!= Disconnected
)
429 if (!(ts
->wr
->f_flags
& O_NONBLOCK
))
430 p9_debug(P9_DEBUG_ERROR
, "blocking write ...\n");
434 /* The cast to a user pointer is valid due to the set_fs() */
435 ret
= vfs_write(ts
->wr
, (__force
void __user
*)v
, len
, &ts
->wr
->f_pos
);
438 if (ret
<= 0 && ret
!= -ERESTARTSYS
&& ret
!= -EAGAIN
)
439 client
->status
= Disconnected
;
444 * p9_write_work - called when a transport can send some data
445 * @work: container for work to be done
449 static void p9_write_work(struct work_struct
*work
)
453 struct p9_req_t
*req
;
455 m
= container_of(work
, struct p9_conn
, wq
);
458 clear_bit(Wworksched
, &m
->wsched
);
463 spin_lock(&m
->client
->lock
);
464 if (list_empty(&m
->unsent_req_list
)) {
465 clear_bit(Wworksched
, &m
->wsched
);
466 spin_unlock(&m
->client
->lock
);
470 req
= list_entry(m
->unsent_req_list
.next
, struct p9_req_t
,
472 req
->status
= REQ_STATUS_SENT
;
473 p9_debug(P9_DEBUG_TRANS
, "move req %p\n", req
);
474 list_move_tail(&req
->req_list
, &m
->req_list
);
476 m
->wbuf
= req
->tc
->sdata
;
477 m
->wsize
= req
->tc
->size
;
479 spin_unlock(&m
->client
->lock
);
482 p9_debug(P9_DEBUG_TRANS
, "mux %p pos %d size %d\n",
483 m
, m
->wpos
, m
->wsize
);
484 clear_bit(Wpending
, &m
->wsched
);
485 err
= p9_fd_write(m
->client
, m
->wbuf
+ m
->wpos
, m
->wsize
- m
->wpos
);
486 p9_debug(P9_DEBUG_TRANS
, "mux %p sent %d bytes\n", m
, err
);
499 if (m
->wpos
== m
->wsize
)
500 m
->wpos
= m
->wsize
= 0;
503 clear_bit(Wworksched
, &m
->wsched
);
505 if (m
->wsize
|| !list_empty(&m
->unsent_req_list
)) {
506 if (test_and_clear_bit(Wpending
, &m
->wsched
))
509 n
= p9_fd_poll(m
->client
, NULL
);
512 !test_and_set_bit(Wworksched
, &m
->wsched
)) {
513 p9_debug(P9_DEBUG_TRANS
, "sched write work %p\n", m
);
514 schedule_work(&m
->wq
);
521 p9_conn_cancel(m
, err
);
522 clear_bit(Wworksched
, &m
->wsched
);
525 static int p9_pollwake(wait_queue_t
*wait
, unsigned int mode
, int sync
, void *key
)
527 struct p9_poll_wait
*pwait
=
528 container_of(wait
, struct p9_poll_wait
, wait
);
529 struct p9_conn
*m
= pwait
->conn
;
532 spin_lock_irqsave(&p9_poll_lock
, flags
);
533 if (list_empty(&m
->poll_pending_link
))
534 list_add_tail(&m
->poll_pending_link
, &p9_poll_pending_list
);
535 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
537 schedule_work(&p9_poll_work
);
542 * p9_pollwait - add poll task to the wait queue
543 * @filp: file pointer being polled
544 * @wait_address: wait_q to block on
547 * called by files poll operation to add v9fs-poll task to files wait queue
551 p9_pollwait(struct file
*filp
, wait_queue_head_t
*wait_address
, poll_table
*p
)
553 struct p9_conn
*m
= container_of(p
, struct p9_conn
, pt
);
554 struct p9_poll_wait
*pwait
= NULL
;
557 for (i
= 0; i
< ARRAY_SIZE(m
->poll_wait
); i
++) {
558 if (m
->poll_wait
[i
].wait_addr
== NULL
) {
559 pwait
= &m
->poll_wait
[i
];
565 p9_debug(P9_DEBUG_ERROR
, "not enough wait_address slots\n");
570 pwait
->wait_addr
= wait_address
;
571 init_waitqueue_func_entry(&pwait
->wait
, p9_pollwake
);
572 add_wait_queue(wait_address
, &pwait
->wait
);
576 * p9_conn_create - initialize the per-session mux data
577 * @client: client instance
579 * Note: Creates the polling task if this is the first session.
582 static void p9_conn_create(struct p9_client
*client
)
585 struct p9_trans_fd
*ts
= client
->trans
;
586 struct p9_conn
*m
= &ts
->conn
;
588 p9_debug(P9_DEBUG_TRANS
, "client %p msize %d\n", client
, client
->msize
);
590 INIT_LIST_HEAD(&m
->mux_list
);
593 INIT_LIST_HEAD(&m
->req_list
);
594 INIT_LIST_HEAD(&m
->unsent_req_list
);
595 INIT_WORK(&m
->rq
, p9_read_work
);
596 INIT_WORK(&m
->wq
, p9_write_work
);
597 INIT_LIST_HEAD(&m
->poll_pending_link
);
598 init_poll_funcptr(&m
->pt
, p9_pollwait
);
600 n
= p9_fd_poll(client
, &m
->pt
);
602 p9_debug(P9_DEBUG_TRANS
, "mux %p can read\n", m
);
603 set_bit(Rpending
, &m
->wsched
);
607 p9_debug(P9_DEBUG_TRANS
, "mux %p can write\n", m
);
608 set_bit(Wpending
, &m
->wsched
);
613 * p9_poll_mux - polls a mux and schedules read or write works if necessary
614 * @m: connection to poll
618 static void p9_poll_mux(struct p9_conn
*m
)
625 n
= p9_fd_poll(m
->client
, NULL
);
626 if (n
< 0 || n
& (POLLERR
| POLLHUP
| POLLNVAL
)) {
627 p9_debug(P9_DEBUG_TRANS
, "error mux %p err %d\n", m
, n
);
630 p9_conn_cancel(m
, n
);
634 set_bit(Rpending
, &m
->wsched
);
635 p9_debug(P9_DEBUG_TRANS
, "mux %p can read\n", m
);
636 if (!test_and_set_bit(Rworksched
, &m
->wsched
)) {
637 p9_debug(P9_DEBUG_TRANS
, "sched read work %p\n", m
);
638 schedule_work(&m
->rq
);
643 set_bit(Wpending
, &m
->wsched
);
644 p9_debug(P9_DEBUG_TRANS
, "mux %p can write\n", m
);
645 if ((m
->wsize
|| !list_empty(&m
->unsent_req_list
)) &&
646 !test_and_set_bit(Wworksched
, &m
->wsched
)) {
647 p9_debug(P9_DEBUG_TRANS
, "sched write work %p\n", m
);
648 schedule_work(&m
->wq
);
654 * p9_fd_request - send 9P request
655 * The function can sleep until the request is scheduled for sending.
656 * The function can be interrupted. Return from the function is not
657 * a guarantee that the request is sent successfully.
659 * @client: client instance
660 * @req: request to be sent
664 static int p9_fd_request(struct p9_client
*client
, struct p9_req_t
*req
)
667 struct p9_trans_fd
*ts
= client
->trans
;
668 struct p9_conn
*m
= &ts
->conn
;
670 p9_debug(P9_DEBUG_TRANS
, "mux %p task %p tcall %p id %d\n",
671 m
, current
, req
->tc
, req
->tc
->id
);
675 spin_lock(&client
->lock
);
676 req
->status
= REQ_STATUS_UNSENT
;
677 list_add_tail(&req
->req_list
, &m
->unsent_req_list
);
678 spin_unlock(&client
->lock
);
680 if (test_and_clear_bit(Wpending
, &m
->wsched
))
683 n
= p9_fd_poll(m
->client
, NULL
);
685 if (n
& POLLOUT
&& !test_and_set_bit(Wworksched
, &m
->wsched
))
686 schedule_work(&m
->wq
);
691 static int p9_fd_cancel(struct p9_client
*client
, struct p9_req_t
*req
)
695 p9_debug(P9_DEBUG_TRANS
, "client %p req %p\n", client
, req
);
697 spin_lock(&client
->lock
);
699 if (req
->status
== REQ_STATUS_UNSENT
) {
700 list_del(&req
->req_list
);
701 req
->status
= REQ_STATUS_FLSHD
;
704 spin_unlock(&client
->lock
);
709 static int p9_fd_cancelled(struct p9_client
*client
, struct p9_req_t
*req
)
711 p9_debug(P9_DEBUG_TRANS
, "client %p req %p\n", client
, req
);
713 /* we haven't received a response for oldreq,
714 * remove it from the list.
716 spin_lock(&client
->lock
);
717 list_del(&req
->req_list
);
718 spin_unlock(&client
->lock
);
724 * parse_opts - parse mount options into p9_fd_opts structure
725 * @params: options string passed from mount
726 * @opts: fd transport-specific structure to parse options into
728 * Returns 0 upon success, -ERRNO upon failure
731 static int parse_opts(char *params
, struct p9_fd_opts
*opts
)
734 substring_t args
[MAX_OPT_ARGS
];
736 char *options
, *tmp_options
;
738 opts
->port
= P9_PORT
;
746 tmp_options
= kstrdup(params
, GFP_KERNEL
);
748 p9_debug(P9_DEBUG_ERROR
,
749 "failed to allocate copy of option string\n");
752 options
= tmp_options
;
754 while ((p
= strsep(&options
, ",")) != NULL
) {
759 token
= match_token(p
, tokens
, args
);
760 if ((token
!= Opt_err
) && (token
!= Opt_privport
)) {
761 r
= match_int(&args
[0], &option
);
763 p9_debug(P9_DEBUG_ERROR
,
764 "integer field, but no integer?\n");
790 static int p9_fd_open(struct p9_client
*client
, int rfd
, int wfd
)
792 struct p9_trans_fd
*ts
= kzalloc(sizeof(struct p9_trans_fd
),
799 if (!ts
->rd
|| !ts
->wr
) {
809 client
->status
= Connected
;
814 static int p9_socket_open(struct p9_client
*client
, struct socket
*csocket
)
816 struct p9_trans_fd
*p
;
819 p
= kzalloc(sizeof(struct p9_trans_fd
), GFP_KERNEL
);
823 csocket
->sk
->sk_allocation
= GFP_NOIO
;
824 file
= sock_alloc_file(csocket
, 0, NULL
);
826 pr_err("%s (%d): failed to map fd\n",
827 __func__
, task_pid_nr(current
));
828 sock_release(csocket
);
830 return PTR_ERR(file
);
834 p
->wr
= p
->rd
= file
;
836 client
->status
= Connected
;
838 p
->rd
->f_flags
|= O_NONBLOCK
;
840 p9_conn_create(client
);
845 * p9_mux_destroy - cancels all pending requests of mux
850 static void p9_conn_destroy(struct p9_conn
*m
)
852 p9_debug(P9_DEBUG_TRANS
, "mux %p prev %p next %p\n",
853 m
, m
->mux_list
.prev
, m
->mux_list
.next
);
856 cancel_work_sync(&m
->rq
);
857 cancel_work_sync(&m
->wq
);
859 p9_conn_cancel(m
, -ECONNRESET
);
865 * p9_fd_close - shutdown file descriptor transport
866 * @client: client instance
870 static void p9_fd_close(struct p9_client
*client
)
872 struct p9_trans_fd
*ts
;
881 client
->status
= Disconnected
;
883 p9_conn_destroy(&ts
->conn
);
894 * stolen from NFS - maybe should be made a generic function?
896 static inline int valid_ipaddr4(const char *buf
)
898 int rc
, count
, in
[4];
900 rc
= sscanf(buf
, "%d.%d.%d.%d", &in
[0], &in
[1], &in
[2], &in
[3]);
903 for (count
= 0; count
< 4; count
++) {
910 static int p9_bind_privport(struct socket
*sock
)
912 struct sockaddr_in cl
;
913 int port
, err
= -EINVAL
;
915 memset(&cl
, 0, sizeof(cl
));
916 cl
.sin_family
= AF_INET
;
917 cl
.sin_addr
.s_addr
= INADDR_ANY
;
918 for (port
= p9_ipport_resv_max
; port
>= p9_ipport_resv_min
; port
--) {
919 cl
.sin_port
= htons((ushort
)port
);
920 err
= kernel_bind(sock
, (struct sockaddr
*)&cl
, sizeof(cl
));
921 if (err
!= -EADDRINUSE
)
929 p9_fd_create_tcp(struct p9_client
*client
, const char *addr
, char *args
)
932 struct socket
*csocket
;
933 struct sockaddr_in sin_server
;
934 struct p9_fd_opts opts
;
936 err
= parse_opts(args
, &opts
);
940 if (valid_ipaddr4(addr
) < 0)
945 sin_server
.sin_family
= AF_INET
;
946 sin_server
.sin_addr
.s_addr
= in_aton(addr
);
947 sin_server
.sin_port
= htons(opts
.port
);
948 err
= __sock_create(current
->nsproxy
->net_ns
, PF_INET
,
949 SOCK_STREAM
, IPPROTO_TCP
, &csocket
, 1);
951 pr_err("%s (%d): problem creating socket\n",
952 __func__
, task_pid_nr(current
));
957 err
= p9_bind_privport(csocket
);
959 pr_err("%s (%d): problem binding to privport\n",
960 __func__
, task_pid_nr(current
));
961 sock_release(csocket
);
966 err
= csocket
->ops
->connect(csocket
,
967 (struct sockaddr
*)&sin_server
,
968 sizeof(struct sockaddr_in
), 0);
970 pr_err("%s (%d): problem connecting socket to %s\n",
971 __func__
, task_pid_nr(current
), addr
);
972 sock_release(csocket
);
976 return p9_socket_open(client
, csocket
);
980 p9_fd_create_unix(struct p9_client
*client
, const char *addr
, char *args
)
983 struct socket
*csocket
;
984 struct sockaddr_un sun_server
;
988 if (strlen(addr
) >= UNIX_PATH_MAX
) {
989 pr_err("%s (%d): address too long: %s\n",
990 __func__
, task_pid_nr(current
), addr
);
991 return -ENAMETOOLONG
;
994 sun_server
.sun_family
= PF_UNIX
;
995 strcpy(sun_server
.sun_path
, addr
);
996 err
= __sock_create(current
->nsproxy
->net_ns
, PF_UNIX
,
997 SOCK_STREAM
, 0, &csocket
, 1);
999 pr_err("%s (%d): problem creating socket\n",
1000 __func__
, task_pid_nr(current
));
1004 err
= csocket
->ops
->connect(csocket
, (struct sockaddr
*)&sun_server
,
1005 sizeof(struct sockaddr_un
) - 1, 0);
1007 pr_err("%s (%d): problem connecting socket: %s: %d\n",
1008 __func__
, task_pid_nr(current
), addr
, err
);
1009 sock_release(csocket
);
1013 return p9_socket_open(client
, csocket
);
1017 p9_fd_create(struct p9_client
*client
, const char *addr
, char *args
)
1020 struct p9_fd_opts opts
;
1022 parse_opts(args
, &opts
);
1024 if (opts
.rfd
== ~0 || opts
.wfd
== ~0) {
1025 pr_err("Insufficient options for proto=fd\n");
1026 return -ENOPROTOOPT
;
1029 err
= p9_fd_open(client
, opts
.rfd
, opts
.wfd
);
1033 p9_conn_create(client
);
1038 static struct p9_trans_module p9_tcp_trans
= {
1040 .maxsize
= MAX_SOCK_BUF
,
1042 .create
= p9_fd_create_tcp
,
1043 .close
= p9_fd_close
,
1044 .request
= p9_fd_request
,
1045 .cancel
= p9_fd_cancel
,
1046 .cancelled
= p9_fd_cancelled
,
1047 .owner
= THIS_MODULE
,
1050 static struct p9_trans_module p9_unix_trans
= {
1052 .maxsize
= MAX_SOCK_BUF
,
1054 .create
= p9_fd_create_unix
,
1055 .close
= p9_fd_close
,
1056 .request
= p9_fd_request
,
1057 .cancel
= p9_fd_cancel
,
1058 .cancelled
= p9_fd_cancelled
,
1059 .owner
= THIS_MODULE
,
1062 static struct p9_trans_module p9_fd_trans
= {
1064 .maxsize
= MAX_SOCK_BUF
,
1066 .create
= p9_fd_create
,
1067 .close
= p9_fd_close
,
1068 .request
= p9_fd_request
,
1069 .cancel
= p9_fd_cancel
,
1070 .cancelled
= p9_fd_cancelled
,
1071 .owner
= THIS_MODULE
,
1075 * p9_poll_proc - poll worker thread
1076 * @a: thread state and arguments
1078 * polls all v9fs transports for new events and queues the appropriate
1079 * work to the work queue
1083 static void p9_poll_workfn(struct work_struct
*work
)
1085 unsigned long flags
;
1087 p9_debug(P9_DEBUG_TRANS
, "start %p\n", current
);
1089 spin_lock_irqsave(&p9_poll_lock
, flags
);
1090 while (!list_empty(&p9_poll_pending_list
)) {
1091 struct p9_conn
*conn
= list_first_entry(&p9_poll_pending_list
,
1094 list_del_init(&conn
->poll_pending_link
);
1095 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
1099 spin_lock_irqsave(&p9_poll_lock
, flags
);
1101 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
1103 p9_debug(P9_DEBUG_TRANS
, "finish\n");
1106 int p9_trans_fd_init(void)
1108 v9fs_register_trans(&p9_tcp_trans
);
1109 v9fs_register_trans(&p9_unix_trans
);
1110 v9fs_register_trans(&p9_fd_trans
);
1115 void p9_trans_fd_exit(void)
1117 flush_work(&p9_poll_work
);
1118 v9fs_unregister_trans(&p9_tcp_trans
);
1119 v9fs_unregister_trans(&p9_unix_trans
);
1120 v9fs_unregister_trans(&p9_fd_trans
);