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 task_struct
*p9_poll_task
;
160 static void p9_mux_poll_stop(struct p9_conn
*m
)
165 for (i
= 0; i
< ARRAY_SIZE(m
->poll_wait
); i
++) {
166 struct p9_poll_wait
*pwait
= &m
->poll_wait
[i
];
168 if (pwait
->wait_addr
) {
169 remove_wait_queue(pwait
->wait_addr
, &pwait
->wait
);
170 pwait
->wait_addr
= NULL
;
174 spin_lock_irqsave(&p9_poll_lock
, flags
);
175 list_del_init(&m
->poll_pending_link
);
176 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
180 * p9_conn_cancel - cancel all pending requests with error
186 static void p9_conn_cancel(struct p9_conn
*m
, int err
)
188 struct p9_req_t
*req
, *rtmp
;
190 LIST_HEAD(cancel_list
);
192 P9_DPRINTK(P9_DEBUG_ERROR
, "mux %p err %d\n", m
, err
);
194 spin_lock_irqsave(&m
->client
->lock
, flags
);
197 spin_unlock_irqrestore(&m
->client
->lock
, flags
);
203 list_for_each_entry_safe(req
, rtmp
, &m
->req_list
, req_list
) {
204 req
->status
= REQ_STATUS_ERROR
;
207 list_move(&req
->req_list
, &cancel_list
);
209 list_for_each_entry_safe(req
, rtmp
, &m
->unsent_req_list
, req_list
) {
210 req
->status
= REQ_STATUS_ERROR
;
213 list_move(&req
->req_list
, &cancel_list
);
215 spin_unlock_irqrestore(&m
->client
->lock
, flags
);
217 list_for_each_entry_safe(req
, rtmp
, &cancel_list
, req_list
) {
218 P9_DPRINTK(P9_DEBUG_ERROR
, "call back req %p\n", req
);
219 list_del(&req
->req_list
);
220 p9_client_cb(m
->client
, req
);
225 p9_fd_poll(struct p9_client
*client
, struct poll_table_struct
*pt
)
228 struct p9_trans_fd
*ts
= NULL
;
230 if (client
&& client
->status
== Connected
)
236 if (!ts
->rd
->f_op
|| !ts
->rd
->f_op
->poll
)
239 if (!ts
->wr
->f_op
|| !ts
->wr
->f_op
->poll
)
242 ret
= ts
->rd
->f_op
->poll(ts
->rd
, pt
);
246 if (ts
->rd
!= ts
->wr
) {
247 n
= ts
->wr
->f_op
->poll(ts
->wr
, pt
);
250 ret
= (ret
& ~POLLOUT
) | (n
& ~POLLIN
);
257 * p9_fd_read- read from a fd
258 * @client: client instance
259 * @v: buffer to receive data into
260 * @len: size of receive buffer
264 static int p9_fd_read(struct p9_client
*client
, void *v
, int len
)
267 struct p9_trans_fd
*ts
= NULL
;
269 if (client
&& client
->status
!= Disconnected
)
275 if (!(ts
->rd
->f_flags
& O_NONBLOCK
))
276 P9_DPRINTK(P9_DEBUG_ERROR
, "blocking read ...\n");
278 ret
= kernel_read(ts
->rd
, ts
->rd
->f_pos
, v
, len
);
279 if (ret
<= 0 && ret
!= -ERESTARTSYS
&& ret
!= -EAGAIN
)
280 client
->status
= Disconnected
;
285 * p9_read_work - called when there is some data to be read from a transport
286 * @work: container of work to be done
290 static void p9_read_work(struct work_struct
*work
)
295 m
= container_of(work
, struct p9_conn
, rq
);
300 P9_DPRINTK(P9_DEBUG_TRANS
, "start mux %p pos %d\n", m
, m
->rpos
);
303 m
->rbuf
= m
->tmp_buf
;
305 m
->rsize
= 7; /* start by reading header */
308 clear_bit(Rpending
, &m
->wsched
);
309 P9_DPRINTK(P9_DEBUG_TRANS
, "read mux %p pos %d size: %d = %d\n", m
,
310 m
->rpos
, m
->rsize
, m
->rsize
-m
->rpos
);
311 err
= p9_fd_read(m
->client
, m
->rbuf
+ m
->rpos
,
313 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p got %d bytes\n", m
, err
);
314 if (err
== -EAGAIN
) {
315 clear_bit(Rworksched
, &m
->wsched
);
324 if ((!m
->req
) && (m
->rpos
== m
->rsize
)) { /* header read in */
326 P9_DPRINTK(P9_DEBUG_TRANS
, "got new header\n");
328 n
= le32_to_cpu(*(__le32
*) m
->rbuf
); /* read packet size */
329 if (n
>= m
->client
->msize
) {
330 P9_DPRINTK(P9_DEBUG_ERROR
,
331 "requested packet size too big: %d\n", n
);
336 tag
= le16_to_cpu(*(__le16
*) (m
->rbuf
+5)); /* read tag */
337 P9_DPRINTK(P9_DEBUG_TRANS
,
338 "mux %p pkt: size: %d bytes tag: %d\n", m
, n
, tag
);
340 m
->req
= p9_tag_lookup(m
->client
, tag
);
341 if (!m
->req
|| (m
->req
->status
!= REQ_STATUS_SENT
&&
342 m
->req
->status
!= REQ_STATUS_FLSH
)) {
343 P9_DPRINTK(P9_DEBUG_ERROR
, "Unexpected packet tag %d\n",
349 if (m
->req
->rc
== NULL
) {
350 m
->req
->rc
= kmalloc(sizeof(struct p9_fcall
) +
351 m
->client
->msize
, GFP_KERNEL
);
358 m
->rbuf
= (char *)m
->req
->rc
+ sizeof(struct p9_fcall
);
359 memcpy(m
->rbuf
, m
->tmp_buf
, m
->rsize
);
363 /* not an else because some packets (like clunk) have no payload */
364 if ((m
->req
) && (m
->rpos
== m
->rsize
)) { /* packet is read in */
365 P9_DPRINTK(P9_DEBUG_TRANS
, "got new packet\n");
366 spin_lock(&m
->client
->lock
);
367 if (m
->req
->status
!= REQ_STATUS_ERROR
)
368 m
->req
->status
= REQ_STATUS_RCVD
;
369 list_del(&m
->req
->req_list
);
370 spin_unlock(&m
->client
->lock
);
371 p9_client_cb(m
->client
, m
->req
);
378 if (!list_empty(&m
->req_list
)) {
379 if (test_and_clear_bit(Rpending
, &m
->wsched
))
382 n
= p9_fd_poll(m
->client
, NULL
);
385 P9_DPRINTK(P9_DEBUG_TRANS
, "sched read work %p\n", m
);
386 schedule_work(&m
->rq
);
388 clear_bit(Rworksched
, &m
->wsched
);
390 clear_bit(Rworksched
, &m
->wsched
);
394 p9_conn_cancel(m
, err
);
395 clear_bit(Rworksched
, &m
->wsched
);
399 * p9_fd_write - write to a socket
400 * @client: client instance
401 * @v: buffer to send data from
402 * @len: size of send buffer
406 static int p9_fd_write(struct p9_client
*client
, void *v
, int len
)
410 struct p9_trans_fd
*ts
= NULL
;
412 if (client
&& client
->status
!= Disconnected
)
418 if (!(ts
->wr
->f_flags
& O_NONBLOCK
))
419 P9_DPRINTK(P9_DEBUG_ERROR
, "blocking write ...\n");
423 /* The cast to a user pointer is valid due to the set_fs() */
424 ret
= vfs_write(ts
->wr
, (__force
void __user
*)v
, len
, &ts
->wr
->f_pos
);
427 if (ret
<= 0 && ret
!= -ERESTARTSYS
&& ret
!= -EAGAIN
)
428 client
->status
= Disconnected
;
433 * p9_write_work - called when a transport can send some data
434 * @work: container for work to be done
438 static void p9_write_work(struct work_struct
*work
)
442 struct p9_req_t
*req
;
444 m
= container_of(work
, struct p9_conn
, wq
);
447 clear_bit(Wworksched
, &m
->wsched
);
452 if (list_empty(&m
->unsent_req_list
)) {
453 clear_bit(Wworksched
, &m
->wsched
);
457 spin_lock(&m
->client
->lock
);
458 req
= list_entry(m
->unsent_req_list
.next
, struct p9_req_t
,
460 req
->status
= REQ_STATUS_SENT
;
461 P9_DPRINTK(P9_DEBUG_TRANS
, "move req %p\n", req
);
462 list_move_tail(&req
->req_list
, &m
->req_list
);
464 m
->wbuf
= req
->tc
->sdata
;
465 m
->wsize
= req
->tc
->size
;
467 spin_unlock(&m
->client
->lock
);
470 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p pos %d size %d\n", m
, m
->wpos
,
472 clear_bit(Wpending
, &m
->wsched
);
473 err
= p9_fd_write(m
->client
, m
->wbuf
+ m
->wpos
, m
->wsize
- m
->wpos
);
474 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p sent %d bytes\n", m
, err
);
475 if (err
== -EAGAIN
) {
476 clear_bit(Wworksched
, &m
->wsched
);
488 if (m
->wpos
== m
->wsize
)
489 m
->wpos
= m
->wsize
= 0;
491 if (m
->wsize
== 0 && !list_empty(&m
->unsent_req_list
)) {
492 if (test_and_clear_bit(Wpending
, &m
->wsched
))
495 n
= p9_fd_poll(m
->client
, NULL
);
498 P9_DPRINTK(P9_DEBUG_TRANS
, "sched write work %p\n", m
);
499 schedule_work(&m
->wq
);
501 clear_bit(Wworksched
, &m
->wsched
);
503 clear_bit(Wworksched
, &m
->wsched
);
508 p9_conn_cancel(m
, err
);
509 clear_bit(Wworksched
, &m
->wsched
);
512 static int p9_pollwake(wait_queue_t
*wait
, unsigned mode
, int sync
, void *key
)
514 struct p9_poll_wait
*pwait
=
515 container_of(wait
, struct p9_poll_wait
, wait
);
516 struct p9_conn
*m
= pwait
->conn
;
518 DECLARE_WAITQUEUE(dummy_wait
, p9_poll_task
);
520 spin_lock_irqsave(&p9_poll_lock
, flags
);
521 if (list_empty(&m
->poll_pending_link
))
522 list_add_tail(&m
->poll_pending_link
, &p9_poll_pending_list
);
523 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
525 /* perform the default wake up operation */
526 return default_wake_function(&dummy_wait
, mode
, sync
, key
);
530 * p9_pollwait - add poll task to the wait queue
531 * @filp: file pointer being polled
532 * @wait_address: wait_q to block on
535 * called by files poll operation to add v9fs-poll task to files wait queue
539 p9_pollwait(struct file
*filp
, wait_queue_head_t
*wait_address
, poll_table
*p
)
541 struct p9_conn
*m
= container_of(p
, struct p9_conn
, pt
);
542 struct p9_poll_wait
*pwait
= NULL
;
545 for (i
= 0; i
< ARRAY_SIZE(m
->poll_wait
); i
++) {
546 if (m
->poll_wait
[i
].wait_addr
== NULL
) {
547 pwait
= &m
->poll_wait
[i
];
553 P9_DPRINTK(P9_DEBUG_ERROR
, "not enough wait_address slots\n");
558 pwait
->wait_addr
= wait_address
;
559 init_waitqueue_func_entry(&pwait
->wait
, p9_pollwake
);
560 add_wait_queue(wait_address
, &pwait
->wait
);
564 * p9_conn_create - allocate and initialize the per-session mux data
565 * @client: client instance
567 * Note: Creates the polling task if this is the first session.
570 static struct p9_conn
*p9_conn_create(struct p9_client
*client
)
575 P9_DPRINTK(P9_DEBUG_TRANS
, "client %p msize %d\n", client
,
577 m
= kzalloc(sizeof(struct p9_conn
), GFP_KERNEL
);
579 return ERR_PTR(-ENOMEM
);
581 INIT_LIST_HEAD(&m
->mux_list
);
584 INIT_LIST_HEAD(&m
->req_list
);
585 INIT_LIST_HEAD(&m
->unsent_req_list
);
586 INIT_WORK(&m
->rq
, p9_read_work
);
587 INIT_WORK(&m
->wq
, p9_write_work
);
588 INIT_LIST_HEAD(&m
->poll_pending_link
);
589 init_poll_funcptr(&m
->pt
, p9_pollwait
);
591 n
= p9_fd_poll(client
, &m
->pt
);
593 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p can read\n", m
);
594 set_bit(Rpending
, &m
->wsched
);
598 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p can write\n", m
);
599 set_bit(Wpending
, &m
->wsched
);
606 * p9_poll_mux - polls a mux and schedules read or write works if necessary
607 * @m: connection to poll
611 static void p9_poll_mux(struct p9_conn
*m
)
618 n
= p9_fd_poll(m
->client
, NULL
);
619 if (n
< 0 || n
& (POLLERR
| POLLHUP
| POLLNVAL
)) {
620 P9_DPRINTK(P9_DEBUG_TRANS
, "error mux %p err %d\n", m
, n
);
623 p9_conn_cancel(m
, n
);
627 set_bit(Rpending
, &m
->wsched
);
628 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p can read\n", m
);
629 if (!test_and_set_bit(Rworksched
, &m
->wsched
)) {
630 P9_DPRINTK(P9_DEBUG_TRANS
, "sched read work %p\n", m
);
631 schedule_work(&m
->rq
);
636 set_bit(Wpending
, &m
->wsched
);
637 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p can write\n", m
);
638 if ((m
->wsize
|| !list_empty(&m
->unsent_req_list
)) &&
639 !test_and_set_bit(Wworksched
, &m
->wsched
)) {
640 P9_DPRINTK(P9_DEBUG_TRANS
, "sched write work %p\n", m
);
641 schedule_work(&m
->wq
);
647 * p9_fd_request - send 9P request
648 * The function can sleep until the request is scheduled for sending.
649 * The function can be interrupted. Return from the function is not
650 * a guarantee that the request is sent successfully.
652 * @client: client instance
653 * @req: request to be sent
657 static int p9_fd_request(struct p9_client
*client
, struct p9_req_t
*req
)
660 struct p9_trans_fd
*ts
= client
->trans
;
661 struct p9_conn
*m
= ts
->conn
;
663 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p task %p tcall %p id %d\n", m
,
664 current
, req
->tc
, req
->tc
->id
);
668 spin_lock(&client
->lock
);
669 req
->status
= REQ_STATUS_UNSENT
;
670 list_add_tail(&req
->req_list
, &m
->unsent_req_list
);
671 spin_unlock(&client
->lock
);
673 if (test_and_clear_bit(Wpending
, &m
->wsched
))
676 n
= p9_fd_poll(m
->client
, NULL
);
678 if (n
& POLLOUT
&& !test_and_set_bit(Wworksched
, &m
->wsched
))
679 schedule_work(&m
->wq
);
684 static int p9_fd_cancel(struct p9_client
*client
, struct p9_req_t
*req
)
688 P9_DPRINTK(P9_DEBUG_TRANS
, "client %p req %p\n", client
, req
);
690 spin_lock(&client
->lock
);
692 if (req
->status
== REQ_STATUS_UNSENT
) {
693 list_del(&req
->req_list
);
694 req
->status
= REQ_STATUS_FLSHD
;
696 } else if (req
->status
== REQ_STATUS_SENT
)
697 req
->status
= REQ_STATUS_FLSH
;
699 spin_unlock(&client
->lock
);
705 * parse_opts - parse mount options into p9_fd_opts structure
706 * @params: options string passed from mount
707 * @opts: fd transport-specific structure to parse options into
709 * Returns 0 upon success, -ERRNO upon failure
712 static int parse_opts(char *params
, struct p9_fd_opts
*opts
)
715 substring_t args
[MAX_OPT_ARGS
];
717 char *options
, *tmp_options
;
720 opts
->port
= P9_PORT
;
727 tmp_options
= kstrdup(params
, GFP_KERNEL
);
729 P9_DPRINTK(P9_DEBUG_ERROR
,
730 "failed to allocate copy of option string\n");
733 options
= tmp_options
;
735 while ((p
= strsep(&options
, ",")) != NULL
) {
740 token
= match_token(p
, tokens
, args
);
741 if (token
!= Opt_err
) {
742 r
= match_int(&args
[0], &option
);
744 P9_DPRINTK(P9_DEBUG_ERROR
,
745 "integer field, but no integer?\n");
769 static int p9_fd_open(struct p9_client
*client
, int rfd
, int wfd
)
771 struct p9_trans_fd
*ts
= kmalloc(sizeof(struct p9_trans_fd
),
778 if (!ts
->rd
|| !ts
->wr
) {
788 client
->status
= Connected
;
793 static int p9_socket_open(struct p9_client
*client
, struct socket
*csocket
)
795 struct p9_trans_fd
*p
;
798 p
= kmalloc(sizeof(struct p9_trans_fd
), GFP_KERNEL
);
802 csocket
->sk
->sk_allocation
= GFP_NOIO
;
803 fd
= sock_map_fd(csocket
, 0);
805 P9_EPRINTK(KERN_ERR
, "p9_socket_open: failed to map fd\n");
806 sock_release(csocket
);
811 get_file(csocket
->file
);
812 get_file(csocket
->file
);
813 p
->wr
= p
->rd
= csocket
->file
;
815 client
->status
= Connected
;
817 sys_close(fd
); /* still racy */
819 p
->rd
->f_flags
|= O_NONBLOCK
;
821 p
->conn
= p9_conn_create(client
);
822 if (IS_ERR(p
->conn
)) {
823 ret
= PTR_ERR(p
->conn
);
834 * p9_mux_destroy - cancels all pending requests and frees mux resources
839 static void p9_conn_destroy(struct p9_conn
*m
)
841 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p prev %p next %p\n", m
,
842 m
->mux_list
.prev
, m
->mux_list
.next
);
845 cancel_work_sync(&m
->rq
);
846 cancel_work_sync(&m
->wq
);
848 p9_conn_cancel(m
, -ECONNRESET
);
855 * p9_fd_close - shutdown file descriptor transport
856 * @client: client instance
860 static void p9_fd_close(struct p9_client
*client
)
862 struct p9_trans_fd
*ts
;
871 client
->status
= Disconnected
;
873 p9_conn_destroy(ts
->conn
);
884 * stolen from NFS - maybe should be made a generic function?
886 static inline int valid_ipaddr4(const char *buf
)
888 int rc
, count
, in
[4];
890 rc
= sscanf(buf
, "%d.%d.%d.%d", &in
[0], &in
[1], &in
[2], &in
[3]);
893 for (count
= 0; count
< 4; count
++) {
901 p9_fd_create_tcp(struct p9_client
*client
, const char *addr
, char *args
)
904 struct socket
*csocket
;
905 struct sockaddr_in sin_server
;
906 struct p9_fd_opts opts
;
908 err
= parse_opts(args
, &opts
);
912 if (valid_ipaddr4(addr
) < 0)
917 sin_server
.sin_family
= AF_INET
;
918 sin_server
.sin_addr
.s_addr
= in_aton(addr
);
919 sin_server
.sin_port
= htons(opts
.port
);
920 err
= sock_create_kern(PF_INET
, SOCK_STREAM
, IPPROTO_TCP
, &csocket
);
923 P9_EPRINTK(KERN_ERR
, "p9_trans_tcp: problem creating socket\n");
927 err
= csocket
->ops
->connect(csocket
,
928 (struct sockaddr
*)&sin_server
,
929 sizeof(struct sockaddr_in
), 0);
932 "p9_trans_tcp: problem connecting socket to %s\n",
934 sock_release(csocket
);
938 return p9_socket_open(client
, csocket
);
942 p9_fd_create_unix(struct p9_client
*client
, const char *addr
, char *args
)
945 struct socket
*csocket
;
946 struct sockaddr_un sun_server
;
950 if (strlen(addr
) >= UNIX_PATH_MAX
) {
951 P9_EPRINTK(KERN_ERR
, "p9_trans_unix: address too long: %s\n",
953 return -ENAMETOOLONG
;
956 sun_server
.sun_family
= PF_UNIX
;
957 strcpy(sun_server
.sun_path
, addr
);
958 err
= sock_create_kern(PF_UNIX
, SOCK_STREAM
, 0, &csocket
);
960 P9_EPRINTK(KERN_ERR
, "p9_trans_unix: problem creating socket\n");
963 err
= csocket
->ops
->connect(csocket
, (struct sockaddr
*)&sun_server
,
964 sizeof(struct sockaddr_un
) - 1, 0);
967 "p9_trans_unix: problem connecting socket: %s: %d\n",
969 sock_release(csocket
);
973 return p9_socket_open(client
, csocket
);
977 p9_fd_create(struct p9_client
*client
, const char *addr
, char *args
)
980 struct p9_fd_opts opts
;
981 struct p9_trans_fd
*p
;
983 parse_opts(args
, &opts
);
985 if (opts
.rfd
== ~0 || opts
.wfd
== ~0) {
986 printk(KERN_ERR
"v9fs: Insufficient options for proto=fd\n");
990 err
= p9_fd_open(client
, opts
.rfd
, opts
.wfd
);
994 p
= (struct p9_trans_fd
*) client
->trans
;
995 p
->conn
= p9_conn_create(client
);
996 if (IS_ERR(p
->conn
)) {
997 err
= PTR_ERR(p
->conn
);
1007 static struct p9_trans_module p9_tcp_trans
= {
1009 .maxsize
= MAX_SOCK_BUF
,
1011 .create
= p9_fd_create_tcp
,
1012 .close
= p9_fd_close
,
1013 .request
= p9_fd_request
,
1014 .cancel
= p9_fd_cancel
,
1015 .owner
= THIS_MODULE
,
1018 static struct p9_trans_module p9_unix_trans
= {
1020 .maxsize
= MAX_SOCK_BUF
,
1022 .create
= p9_fd_create_unix
,
1023 .close
= p9_fd_close
,
1024 .request
= p9_fd_request
,
1025 .cancel
= p9_fd_cancel
,
1026 .owner
= THIS_MODULE
,
1029 static struct p9_trans_module p9_fd_trans
= {
1031 .maxsize
= MAX_SOCK_BUF
,
1033 .create
= p9_fd_create
,
1034 .close
= p9_fd_close
,
1035 .request
= p9_fd_request
,
1036 .cancel
= p9_fd_cancel
,
1037 .owner
= THIS_MODULE
,
1041 * p9_poll_proc - poll worker thread
1042 * @a: thread state and arguments
1044 * polls all v9fs transports for new events and queues the appropriate
1045 * work to the work queue
1049 static int p9_poll_proc(void *a
)
1051 unsigned long flags
;
1053 P9_DPRINTK(P9_DEBUG_TRANS
, "start %p\n", current
);
1055 spin_lock_irqsave(&p9_poll_lock
, flags
);
1056 while (!list_empty(&p9_poll_pending_list
)) {
1057 struct p9_conn
*conn
= list_first_entry(&p9_poll_pending_list
,
1060 list_del_init(&conn
->poll_pending_link
);
1061 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
1065 spin_lock_irqsave(&p9_poll_lock
, flags
);
1067 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
1069 set_current_state(TASK_INTERRUPTIBLE
);
1070 if (list_empty(&p9_poll_pending_list
)) {
1071 P9_DPRINTK(P9_DEBUG_TRANS
, "sleeping...\n");
1074 __set_current_state(TASK_RUNNING
);
1076 if (!kthread_should_stop())
1079 P9_DPRINTK(P9_DEBUG_TRANS
, "finish\n");
1083 int p9_trans_fd_init(void)
1085 p9_poll_task
= kthread_run(p9_poll_proc
, NULL
, "v9fs-poll");
1086 if (IS_ERR(p9_poll_task
)) {
1087 printk(KERN_WARNING
"v9fs: mux: creating poll task failed\n");
1088 return PTR_ERR(p9_poll_task
);
1091 v9fs_register_trans(&p9_tcp_trans
);
1092 v9fs_register_trans(&p9_unix_trans
);
1093 v9fs_register_trans(&p9_fd_trans
);
1098 void p9_trans_fd_exit(void)
1100 kthread_stop(p9_poll_task
);
1101 v9fs_unregister_trans(&p9_tcp_trans
);
1102 v9fs_unregister_trans(&p9_unix_trans
);
1103 v9fs_unregister_trans(&p9_fd_trans
);