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
29 #include <linux/module.h>
30 #include <linux/net.h>
31 #include <linux/ipv6.h>
32 #include <linux/kthread.h>
33 #include <linux/errno.h>
34 #include <linux/kernel.h>
36 #include <linux/uaccess.h>
37 #include <linux/inet.h>
38 #include <linux/idr.h>
39 #include <linux/file.h>
40 #include <linux/parser.h>
41 #include <linux/slab.h>
42 #include <net/9p/9p.h>
43 #include <net/9p/client.h>
44 #include <net/9p/transport.h>
46 #include <linux/syscalls.h> /* killme */
49 #define MAX_SOCK_BUF (64*1024)
50 #define MAXPOLLWADDR 2
53 * struct p9_fd_opts - per-transport options
54 * @rfd: file descriptor for reading (trans=fd)
55 * @wfd: file descriptor for writing (trans=fd)
56 * @port: port to connect to (trans=tcp)
67 * struct p9_trans_fd - transport state
68 * @rd: reference to file to read from
69 * @wr: reference of file to write to
70 * @conn: connection state reference
81 * Option Parsing (code inspired by NFS code)
82 * - a little lazy - parse all fd-transport options
86 /* Options that take integer arguments */
87 Opt_port
, Opt_rfdno
, Opt_wfdno
, Opt_err
,
90 static const match_table_t tokens
= {
91 {Opt_port
, "port=%u"},
92 {Opt_rfdno
, "rfdno=%u"},
93 {Opt_wfdno
, "wfdno=%u"},
98 Rworksched
= 1, /* read work scheduled or running */
99 Rpending
= 2, /* can read */
100 Wworksched
= 4, /* write work scheduled or running */
101 Wpending
= 8, /* can write */
104 struct p9_poll_wait
{
105 struct p9_conn
*conn
;
107 wait_queue_head_t
*wait_addr
;
111 * struct p9_conn - fd mux connection state information
112 * @mux_list: list link for mux to manage multiple connections (?)
113 * @client: reference to client instance for this connection
115 * @req_list: accounting for requests which have been sent
116 * @unsent_req_list: accounting for requests that haven't been sent
117 * @req: current request being processed (if any)
118 * @tmp_buf: temporary buffer to read in header
119 * @rsize: amount to read for current frame
120 * @rpos: read position in current frame
121 * @rbuf: current read buffer
122 * @wpos: write position for current frame
123 * @wsize: amount of data to write for current frame
124 * @wbuf: current write buffer
125 * @poll_pending_link: pending links to be polled per conn
126 * @poll_wait: array of wait_q's for various worker threads
128 * @rq: current read work
129 * @wq: current write work
135 struct list_head mux_list
;
136 struct p9_client
*client
;
138 struct list_head req_list
;
139 struct list_head unsent_req_list
;
140 struct p9_req_t
*req
;
148 struct list_head poll_pending_link
;
149 struct p9_poll_wait poll_wait
[MAXPOLLWADDR
];
151 struct work_struct rq
;
152 struct work_struct wq
;
153 unsigned long wsched
;
156 static DEFINE_SPINLOCK(p9_poll_lock
);
157 static LIST_HEAD(p9_poll_pending_list
);
158 static struct workqueue_struct
*p9_mux_wq
;
159 static struct task_struct
*p9_poll_task
;
161 static void p9_mux_poll_stop(struct p9_conn
*m
)
166 for (i
= 0; i
< ARRAY_SIZE(m
->poll_wait
); i
++) {
167 struct p9_poll_wait
*pwait
= &m
->poll_wait
[i
];
169 if (pwait
->wait_addr
) {
170 remove_wait_queue(pwait
->wait_addr
, &pwait
->wait
);
171 pwait
->wait_addr
= NULL
;
175 spin_lock_irqsave(&p9_poll_lock
, flags
);
176 list_del_init(&m
->poll_pending_link
);
177 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
181 * p9_conn_cancel - cancel all pending requests with error
187 static void p9_conn_cancel(struct p9_conn
*m
, int err
)
189 struct p9_req_t
*req
, *rtmp
;
191 LIST_HEAD(cancel_list
);
193 P9_DPRINTK(P9_DEBUG_ERROR
, "mux %p err %d\n", m
, err
);
195 spin_lock_irqsave(&m
->client
->lock
, flags
);
198 spin_unlock_irqrestore(&m
->client
->lock
, flags
);
204 list_for_each_entry_safe(req
, rtmp
, &m
->req_list
, req_list
) {
205 req
->status
= REQ_STATUS_ERROR
;
208 list_move(&req
->req_list
, &cancel_list
);
210 list_for_each_entry_safe(req
, rtmp
, &m
->unsent_req_list
, req_list
) {
211 req
->status
= REQ_STATUS_ERROR
;
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_DPRINTK(P9_DEBUG_ERROR
, "call back req %p\n", req
);
220 list_del(&req
->req_list
);
221 p9_client_cb(m
->client
, req
);
226 p9_fd_poll(struct p9_client
*client
, struct poll_table_struct
*pt
)
229 struct p9_trans_fd
*ts
= NULL
;
231 if (client
&& client
->status
== Connected
)
237 if (!ts
->rd
->f_op
|| !ts
->rd
->f_op
->poll
)
240 if (!ts
->wr
->f_op
|| !ts
->wr
->f_op
->poll
)
243 ret
= ts
->rd
->f_op
->poll(ts
->rd
, pt
);
247 if (ts
->rd
!= ts
->wr
) {
248 n
= ts
->wr
->f_op
->poll(ts
->wr
, pt
);
251 ret
= (ret
& ~POLLOUT
) | (n
& ~POLLIN
);
258 * p9_fd_read- read from a fd
259 * @client: client instance
260 * @v: buffer to receive data into
261 * @len: size of receive buffer
265 static int p9_fd_read(struct p9_client
*client
, void *v
, int len
)
268 struct p9_trans_fd
*ts
= NULL
;
270 if (client
&& client
->status
!= Disconnected
)
276 if (!(ts
->rd
->f_flags
& O_NONBLOCK
))
277 P9_DPRINTK(P9_DEBUG_ERROR
, "blocking read ...\n");
279 ret
= kernel_read(ts
->rd
, ts
->rd
->f_pos
, v
, len
);
280 if (ret
<= 0 && ret
!= -ERESTARTSYS
&& ret
!= -EAGAIN
)
281 client
->status
= Disconnected
;
286 * p9_read_work - called when there is some data to be read from a transport
287 * @work: container of work to be done
291 static void p9_read_work(struct work_struct
*work
)
296 m
= container_of(work
, struct p9_conn
, rq
);
301 P9_DPRINTK(P9_DEBUG_TRANS
, "start mux %p pos %d\n", m
, m
->rpos
);
304 m
->rbuf
= m
->tmp_buf
;
306 m
->rsize
= 7; /* start by reading header */
309 clear_bit(Rpending
, &m
->wsched
);
310 P9_DPRINTK(P9_DEBUG_TRANS
, "read mux %p pos %d size: %d = %d\n", m
,
311 m
->rpos
, m
->rsize
, m
->rsize
-m
->rpos
);
312 err
= p9_fd_read(m
->client
, m
->rbuf
+ m
->rpos
,
314 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p got %d bytes\n", m
, err
);
315 if (err
== -EAGAIN
) {
316 clear_bit(Rworksched
, &m
->wsched
);
325 if ((!m
->req
) && (m
->rpos
== m
->rsize
)) { /* header read in */
327 P9_DPRINTK(P9_DEBUG_TRANS
, "got new header\n");
329 n
= le32_to_cpu(*(__le32
*) m
->rbuf
); /* read packet size */
330 if (n
>= m
->client
->msize
) {
331 P9_DPRINTK(P9_DEBUG_ERROR
,
332 "requested packet size too big: %d\n", n
);
337 tag
= le16_to_cpu(*(__le16
*) (m
->rbuf
+5)); /* read tag */
338 P9_DPRINTK(P9_DEBUG_TRANS
,
339 "mux %p pkt: size: %d bytes tag: %d\n", m
, n
, tag
);
341 m
->req
= p9_tag_lookup(m
->client
, tag
);
342 if (!m
->req
|| (m
->req
->status
!= REQ_STATUS_SENT
&&
343 m
->req
->status
!= REQ_STATUS_FLSH
)) {
344 P9_DPRINTK(P9_DEBUG_ERROR
, "Unexpected packet tag %d\n",
350 if (m
->req
->rc
== NULL
) {
351 m
->req
->rc
= kmalloc(sizeof(struct p9_fcall
) +
352 m
->client
->msize
, GFP_KERNEL
);
359 m
->rbuf
= (char *)m
->req
->rc
+ sizeof(struct p9_fcall
);
360 memcpy(m
->rbuf
, m
->tmp_buf
, m
->rsize
);
364 /* not an else because some packets (like clunk) have no payload */
365 if ((m
->req
) && (m
->rpos
== m
->rsize
)) { /* packet is read in */
366 P9_DPRINTK(P9_DEBUG_TRANS
, "got new packet\n");
367 spin_lock(&m
->client
->lock
);
368 if (m
->req
->status
!= REQ_STATUS_ERROR
)
369 m
->req
->status
= REQ_STATUS_RCVD
;
370 list_del(&m
->req
->req_list
);
371 spin_unlock(&m
->client
->lock
);
372 p9_client_cb(m
->client
, m
->req
);
379 if (!list_empty(&m
->req_list
)) {
380 if (test_and_clear_bit(Rpending
, &m
->wsched
))
383 n
= p9_fd_poll(m
->client
, NULL
);
386 P9_DPRINTK(P9_DEBUG_TRANS
, "sched read work %p\n", m
);
387 queue_work(p9_mux_wq
, &m
->rq
);
389 clear_bit(Rworksched
, &m
->wsched
);
391 clear_bit(Rworksched
, &m
->wsched
);
395 p9_conn_cancel(m
, err
);
396 clear_bit(Rworksched
, &m
->wsched
);
400 * p9_fd_write - write to a socket
401 * @client: client instance
402 * @v: buffer to send data from
403 * @len: size of send buffer
407 static int p9_fd_write(struct p9_client
*client
, void *v
, int len
)
411 struct p9_trans_fd
*ts
= NULL
;
413 if (client
&& client
->status
!= Disconnected
)
419 if (!(ts
->wr
->f_flags
& O_NONBLOCK
))
420 P9_DPRINTK(P9_DEBUG_ERROR
, "blocking write ...\n");
424 /* The cast to a user pointer is valid due to the set_fs() */
425 ret
= vfs_write(ts
->wr
, (__force
void __user
*)v
, len
, &ts
->wr
->f_pos
);
428 if (ret
<= 0 && ret
!= -ERESTARTSYS
&& ret
!= -EAGAIN
)
429 client
->status
= Disconnected
;
434 * p9_write_work - called when a transport can send some data
435 * @work: container for work to be done
439 static void p9_write_work(struct work_struct
*work
)
443 struct p9_req_t
*req
;
445 m
= container_of(work
, struct p9_conn
, wq
);
448 clear_bit(Wworksched
, &m
->wsched
);
453 if (list_empty(&m
->unsent_req_list
)) {
454 clear_bit(Wworksched
, &m
->wsched
);
458 spin_lock(&m
->client
->lock
);
459 req
= list_entry(m
->unsent_req_list
.next
, struct p9_req_t
,
461 req
->status
= REQ_STATUS_SENT
;
462 P9_DPRINTK(P9_DEBUG_TRANS
, "move req %p\n", req
);
463 list_move_tail(&req
->req_list
, &m
->req_list
);
465 m
->wbuf
= req
->tc
->sdata
;
466 m
->wsize
= req
->tc
->size
;
468 spin_unlock(&m
->client
->lock
);
471 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p pos %d size %d\n", m
, m
->wpos
,
473 clear_bit(Wpending
, &m
->wsched
);
474 err
= p9_fd_write(m
->client
, m
->wbuf
+ m
->wpos
, m
->wsize
- m
->wpos
);
475 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p sent %d bytes\n", m
, err
);
476 if (err
== -EAGAIN
) {
477 clear_bit(Wworksched
, &m
->wsched
);
489 if (m
->wpos
== m
->wsize
)
490 m
->wpos
= m
->wsize
= 0;
492 if (m
->wsize
== 0 && !list_empty(&m
->unsent_req_list
)) {
493 if (test_and_clear_bit(Wpending
, &m
->wsched
))
496 n
= p9_fd_poll(m
->client
, NULL
);
499 P9_DPRINTK(P9_DEBUG_TRANS
, "sched write work %p\n", m
);
500 queue_work(p9_mux_wq
, &m
->wq
);
502 clear_bit(Wworksched
, &m
->wsched
);
504 clear_bit(Wworksched
, &m
->wsched
);
509 p9_conn_cancel(m
, err
);
510 clear_bit(Wworksched
, &m
->wsched
);
513 static int p9_pollwake(wait_queue_t
*wait
, unsigned mode
, int sync
, void *key
)
515 struct p9_poll_wait
*pwait
=
516 container_of(wait
, struct p9_poll_wait
, wait
);
517 struct p9_conn
*m
= pwait
->conn
;
519 DECLARE_WAITQUEUE(dummy_wait
, p9_poll_task
);
521 spin_lock_irqsave(&p9_poll_lock
, flags
);
522 if (list_empty(&m
->poll_pending_link
))
523 list_add_tail(&m
->poll_pending_link
, &p9_poll_pending_list
);
524 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
526 /* perform the default wake up operation */
527 return default_wake_function(&dummy_wait
, mode
, sync
, key
);
531 * p9_pollwait - add poll task to the wait queue
532 * @filp: file pointer being polled
533 * @wait_address: wait_q to block on
536 * called by files poll operation to add v9fs-poll task to files wait queue
540 p9_pollwait(struct file
*filp
, wait_queue_head_t
*wait_address
, poll_table
*p
)
542 struct p9_conn
*m
= container_of(p
, struct p9_conn
, pt
);
543 struct p9_poll_wait
*pwait
= NULL
;
546 for (i
= 0; i
< ARRAY_SIZE(m
->poll_wait
); i
++) {
547 if (m
->poll_wait
[i
].wait_addr
== NULL
) {
548 pwait
= &m
->poll_wait
[i
];
554 P9_DPRINTK(P9_DEBUG_ERROR
, "not enough wait_address slots\n");
559 pwait
->wait_addr
= wait_address
;
560 init_waitqueue_func_entry(&pwait
->wait
, p9_pollwake
);
561 add_wait_queue(wait_address
, &pwait
->wait
);
565 * p9_conn_create - allocate and initialize the per-session mux data
566 * @client: client instance
568 * Note: Creates the polling task if this is the first session.
571 static struct p9_conn
*p9_conn_create(struct p9_client
*client
)
576 P9_DPRINTK(P9_DEBUG_TRANS
, "client %p msize %d\n", client
,
578 m
= kzalloc(sizeof(struct p9_conn
), GFP_KERNEL
);
580 return ERR_PTR(-ENOMEM
);
582 INIT_LIST_HEAD(&m
->mux_list
);
585 INIT_LIST_HEAD(&m
->req_list
);
586 INIT_LIST_HEAD(&m
->unsent_req_list
);
587 INIT_WORK(&m
->rq
, p9_read_work
);
588 INIT_WORK(&m
->wq
, p9_write_work
);
589 INIT_LIST_HEAD(&m
->poll_pending_link
);
590 init_poll_funcptr(&m
->pt
, p9_pollwait
);
592 n
= p9_fd_poll(client
, &m
->pt
);
594 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p can read\n", m
);
595 set_bit(Rpending
, &m
->wsched
);
599 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p can write\n", m
);
600 set_bit(Wpending
, &m
->wsched
);
607 * p9_poll_mux - polls a mux and schedules read or write works if necessary
608 * @m: connection to poll
612 static void p9_poll_mux(struct p9_conn
*m
)
619 n
= p9_fd_poll(m
->client
, NULL
);
620 if (n
< 0 || n
& (POLLERR
| POLLHUP
| POLLNVAL
)) {
621 P9_DPRINTK(P9_DEBUG_TRANS
, "error mux %p err %d\n", m
, n
);
624 p9_conn_cancel(m
, n
);
628 set_bit(Rpending
, &m
->wsched
);
629 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p can read\n", m
);
630 if (!test_and_set_bit(Rworksched
, &m
->wsched
)) {
631 P9_DPRINTK(P9_DEBUG_TRANS
, "sched read work %p\n", m
);
632 queue_work(p9_mux_wq
, &m
->rq
);
637 set_bit(Wpending
, &m
->wsched
);
638 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p can write\n", m
);
639 if ((m
->wsize
|| !list_empty(&m
->unsent_req_list
)) &&
640 !test_and_set_bit(Wworksched
, &m
->wsched
)) {
641 P9_DPRINTK(P9_DEBUG_TRANS
, "sched write work %p\n", m
);
642 queue_work(p9_mux_wq
, &m
->wq
);
648 * p9_fd_request - send 9P request
649 * The function can sleep until the request is scheduled for sending.
650 * The function can be interrupted. Return from the function is not
651 * a guarantee that the request is sent successfully.
653 * @client: client instance
654 * @req: request to be sent
658 static int p9_fd_request(struct p9_client
*client
, struct p9_req_t
*req
)
661 struct p9_trans_fd
*ts
= client
->trans
;
662 struct p9_conn
*m
= ts
->conn
;
664 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p task %p tcall %p id %d\n", m
,
665 current
, req
->tc
, req
->tc
->id
);
669 spin_lock(&client
->lock
);
670 req
->status
= REQ_STATUS_UNSENT
;
671 list_add_tail(&req
->req_list
, &m
->unsent_req_list
);
672 spin_unlock(&client
->lock
);
674 if (test_and_clear_bit(Wpending
, &m
->wsched
))
677 n
= p9_fd_poll(m
->client
, NULL
);
679 if (n
& POLLOUT
&& !test_and_set_bit(Wworksched
, &m
->wsched
))
680 queue_work(p9_mux_wq
, &m
->wq
);
685 static int p9_fd_cancel(struct p9_client
*client
, struct p9_req_t
*req
)
689 P9_DPRINTK(P9_DEBUG_TRANS
, "client %p req %p\n", client
, req
);
691 spin_lock(&client
->lock
);
693 if (req
->status
== REQ_STATUS_UNSENT
) {
694 list_del(&req
->req_list
);
695 req
->status
= REQ_STATUS_FLSHD
;
697 } else if (req
->status
== REQ_STATUS_SENT
)
698 req
->status
= REQ_STATUS_FLSH
;
700 spin_unlock(&client
->lock
);
706 * parse_opts - parse mount options into p9_fd_opts structure
707 * @params: options string passed from mount
708 * @opts: fd transport-specific structure to parse options into
710 * Returns 0 upon success, -ERRNO upon failure
713 static int parse_opts(char *params
, struct p9_fd_opts
*opts
)
716 substring_t args
[MAX_OPT_ARGS
];
718 char *options
, *tmp_options
;
721 opts
->port
= P9_PORT
;
728 tmp_options
= kstrdup(params
, GFP_KERNEL
);
730 P9_DPRINTK(P9_DEBUG_ERROR
,
731 "failed to allocate copy of option string\n");
734 options
= tmp_options
;
736 while ((p
= strsep(&options
, ",")) != NULL
) {
741 token
= match_token(p
, tokens
, args
);
742 if (token
!= Opt_err
) {
743 r
= match_int(&args
[0], &option
);
745 P9_DPRINTK(P9_DEBUG_ERROR
,
746 "integer field, but no integer?\n");
770 static int p9_fd_open(struct p9_client
*client
, int rfd
, int wfd
)
772 struct p9_trans_fd
*ts
= kmalloc(sizeof(struct p9_trans_fd
),
779 if (!ts
->rd
|| !ts
->wr
) {
789 client
->status
= Connected
;
794 static int p9_socket_open(struct p9_client
*client
, struct socket
*csocket
)
796 struct p9_trans_fd
*p
;
799 p
= kmalloc(sizeof(struct p9_trans_fd
), GFP_KERNEL
);
803 csocket
->sk
->sk_allocation
= GFP_NOIO
;
804 fd
= sock_map_fd(csocket
, 0);
806 P9_EPRINTK(KERN_ERR
, "p9_socket_open: failed to map fd\n");
807 sock_release(csocket
);
812 get_file(csocket
->file
);
813 get_file(csocket
->file
);
814 p
->wr
= p
->rd
= csocket
->file
;
816 client
->status
= Connected
;
818 sys_close(fd
); /* still racy */
820 p
->rd
->f_flags
|= O_NONBLOCK
;
822 p
->conn
= p9_conn_create(client
);
823 if (IS_ERR(p
->conn
)) {
824 ret
= PTR_ERR(p
->conn
);
835 * p9_mux_destroy - cancels all pending requests and frees mux resources
840 static void p9_conn_destroy(struct p9_conn
*m
)
842 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p prev %p next %p\n", m
,
843 m
->mux_list
.prev
, m
->mux_list
.next
);
846 cancel_work_sync(&m
->rq
);
847 cancel_work_sync(&m
->wq
);
849 p9_conn_cancel(m
, -ECONNRESET
);
856 * p9_fd_close - shutdown file descriptor transport
857 * @client: client instance
861 static void p9_fd_close(struct p9_client
*client
)
863 struct p9_trans_fd
*ts
;
872 client
->status
= Disconnected
;
874 p9_conn_destroy(ts
->conn
);
885 * stolen from NFS - maybe should be made a generic function?
887 static inline int valid_ipaddr4(const char *buf
)
889 int rc
, count
, in
[4];
891 rc
= sscanf(buf
, "%d.%d.%d.%d", &in
[0], &in
[1], &in
[2], &in
[3]);
894 for (count
= 0; count
< 4; count
++) {
902 p9_fd_create_tcp(struct p9_client
*client
, const char *addr
, char *args
)
905 struct socket
*csocket
;
906 struct sockaddr_in sin_server
;
907 struct p9_fd_opts opts
;
909 err
= parse_opts(args
, &opts
);
913 if (valid_ipaddr4(addr
) < 0)
918 sin_server
.sin_family
= AF_INET
;
919 sin_server
.sin_addr
.s_addr
= in_aton(addr
);
920 sin_server
.sin_port
= htons(opts
.port
);
921 err
= sock_create_kern(PF_INET
, SOCK_STREAM
, IPPROTO_TCP
, &csocket
);
924 P9_EPRINTK(KERN_ERR
, "p9_trans_tcp: problem creating socket\n");
928 err
= csocket
->ops
->connect(csocket
,
929 (struct sockaddr
*)&sin_server
,
930 sizeof(struct sockaddr_in
), 0);
933 "p9_trans_tcp: problem connecting socket to %s\n",
935 sock_release(csocket
);
939 return p9_socket_open(client
, csocket
);
943 p9_fd_create_unix(struct p9_client
*client
, const char *addr
, char *args
)
946 struct socket
*csocket
;
947 struct sockaddr_un sun_server
;
951 if (strlen(addr
) >= UNIX_PATH_MAX
) {
952 P9_EPRINTK(KERN_ERR
, "p9_trans_unix: address too long: %s\n",
954 return -ENAMETOOLONG
;
957 sun_server
.sun_family
= PF_UNIX
;
958 strcpy(sun_server
.sun_path
, addr
);
959 err
= sock_create_kern(PF_UNIX
, SOCK_STREAM
, 0, &csocket
);
961 P9_EPRINTK(KERN_ERR
, "p9_trans_unix: problem creating socket\n");
964 err
= csocket
->ops
->connect(csocket
, (struct sockaddr
*)&sun_server
,
965 sizeof(struct sockaddr_un
) - 1, 0);
968 "p9_trans_unix: problem connecting socket: %s: %d\n",
970 sock_release(csocket
);
974 return p9_socket_open(client
, csocket
);
978 p9_fd_create(struct p9_client
*client
, const char *addr
, char *args
)
981 struct p9_fd_opts opts
;
982 struct p9_trans_fd
*p
;
984 parse_opts(args
, &opts
);
986 if (opts
.rfd
== ~0 || opts
.wfd
== ~0) {
987 printk(KERN_ERR
"v9fs: Insufficient options for proto=fd\n");
991 err
= p9_fd_open(client
, opts
.rfd
, opts
.wfd
);
995 p
= (struct p9_trans_fd
*) client
->trans
;
996 p
->conn
= p9_conn_create(client
);
997 if (IS_ERR(p
->conn
)) {
998 err
= PTR_ERR(p
->conn
);
1008 static struct p9_trans_module p9_tcp_trans
= {
1010 .maxsize
= MAX_SOCK_BUF
,
1012 .create
= p9_fd_create_tcp
,
1013 .close
= p9_fd_close
,
1014 .request
= p9_fd_request
,
1015 .cancel
= p9_fd_cancel
,
1016 .owner
= THIS_MODULE
,
1019 static struct p9_trans_module p9_unix_trans
= {
1021 .maxsize
= MAX_SOCK_BUF
,
1023 .create
= p9_fd_create_unix
,
1024 .close
= p9_fd_close
,
1025 .request
= p9_fd_request
,
1026 .cancel
= p9_fd_cancel
,
1027 .owner
= THIS_MODULE
,
1030 static struct p9_trans_module p9_fd_trans
= {
1032 .maxsize
= MAX_SOCK_BUF
,
1034 .create
= p9_fd_create
,
1035 .close
= p9_fd_close
,
1036 .request
= p9_fd_request
,
1037 .cancel
= p9_fd_cancel
,
1038 .owner
= THIS_MODULE
,
1042 * p9_poll_proc - poll worker thread
1043 * @a: thread state and arguments
1045 * polls all v9fs transports for new events and queues the appropriate
1046 * work to the work queue
1050 static int p9_poll_proc(void *a
)
1052 unsigned long flags
;
1054 P9_DPRINTK(P9_DEBUG_TRANS
, "start %p\n", current
);
1056 spin_lock_irqsave(&p9_poll_lock
, flags
);
1057 while (!list_empty(&p9_poll_pending_list
)) {
1058 struct p9_conn
*conn
= list_first_entry(&p9_poll_pending_list
,
1061 list_del_init(&conn
->poll_pending_link
);
1062 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
1066 spin_lock_irqsave(&p9_poll_lock
, flags
);
1068 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
1070 set_current_state(TASK_INTERRUPTIBLE
);
1071 if (list_empty(&p9_poll_pending_list
)) {
1072 P9_DPRINTK(P9_DEBUG_TRANS
, "sleeping...\n");
1075 __set_current_state(TASK_RUNNING
);
1077 if (!kthread_should_stop())
1080 P9_DPRINTK(P9_DEBUG_TRANS
, "finish\n");
1084 int p9_trans_fd_init(void)
1086 p9_mux_wq
= create_workqueue("v9fs");
1088 printk(KERN_WARNING
"v9fs: mux: creating workqueue failed\n");
1092 p9_poll_task
= kthread_run(p9_poll_proc
, NULL
, "v9fs-poll");
1093 if (IS_ERR(p9_poll_task
)) {
1094 destroy_workqueue(p9_mux_wq
);
1095 printk(KERN_WARNING
"v9fs: mux: creating poll task failed\n");
1096 return PTR_ERR(p9_poll_task
);
1099 v9fs_register_trans(&p9_tcp_trans
);
1100 v9fs_register_trans(&p9_unix_trans
);
1101 v9fs_register_trans(&p9_fd_trans
);
1106 void p9_trans_fd_exit(void)
1108 kthread_stop(p9_poll_task
);
1109 v9fs_unregister_trans(&p9_tcp_trans
);
1110 v9fs_unregister_trans(&p9_unix_trans
);
1111 v9fs_unregister_trans(&p9_fd_trans
);
1113 destroy_workqueue(p9_mux_wq
);