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 <net/9p/9p.h>
42 #include <net/9p/client.h>
43 #include <net/9p/transport.h>
45 #include <linux/syscalls.h> /* killme */
48 #define MAX_SOCK_BUF (64*1024)
49 #define MAXPOLLWADDR 2
52 * struct p9_fd_opts - per-transport options
53 * @rfd: file descriptor for reading (trans=fd)
54 * @wfd: file descriptor for writing (trans=fd)
55 * @port: port to connect to (trans=tcp)
66 * struct p9_trans_fd - transport state
67 * @rd: reference to file to read from
68 * @wr: reference of file to write to
69 * @conn: connection state reference
80 * Option Parsing (code inspired by NFS code)
81 * - a little lazy - parse all fd-transport options
85 /* Options that take integer arguments */
86 Opt_port
, Opt_rfdno
, Opt_wfdno
, Opt_err
,
89 static const match_table_t tokens
= {
90 {Opt_port
, "port=%u"},
91 {Opt_rfdno
, "rfdno=%u"},
92 {Opt_wfdno
, "wfdno=%u"},
97 Rworksched
= 1, /* read work scheduled or running */
98 Rpending
= 2, /* can read */
99 Wworksched
= 4, /* write work scheduled or running */
100 Wpending
= 8, /* can write */
103 struct p9_poll_wait
{
104 struct p9_conn
*conn
;
106 wait_queue_head_t
*wait_addr
;
110 * struct p9_conn - fd mux connection state information
111 * @mux_list: list link for mux to manage multiple connections (?)
112 * @client: reference to client instance for this connection
114 * @req_list: accounting for requests which have been sent
115 * @unsent_req_list: accounting for requests that haven't been sent
116 * @req: current request being processed (if any)
117 * @tmp_buf: temporary buffer to read in header
118 * @rsize: amount to read for current frame
119 * @rpos: read position in current frame
120 * @rbuf: current read buffer
121 * @wpos: write position for current frame
122 * @wsize: amount of data to write for current frame
123 * @wbuf: current write buffer
124 * @poll_pending_link: pending links to be polled per conn
125 * @poll_wait: array of wait_q's for various worker threads
127 * @rq: current read work
128 * @wq: current write work
134 struct list_head mux_list
;
135 struct p9_client
*client
;
137 struct list_head req_list
;
138 struct list_head unsent_req_list
;
139 struct p9_req_t
*req
;
147 struct list_head poll_pending_link
;
148 struct p9_poll_wait poll_wait
[MAXPOLLWADDR
];
150 struct work_struct rq
;
151 struct work_struct wq
;
152 unsigned long wsched
;
155 static DEFINE_SPINLOCK(p9_poll_lock
);
156 static LIST_HEAD(p9_poll_pending_list
);
157 static struct workqueue_struct
*p9_mux_wq
;
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 queue_work(p9_mux_wq
, &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 queue_work(p9_mux_wq
, &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 queue_work(p9_mux_wq
, &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 queue_work(p9_mux_wq
, &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 queue_work(p9_mux_wq
, &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
];
720 opts
->port
= P9_PORT
;
727 options
= kstrdup(params
, GFP_KERNEL
);
729 P9_DPRINTK(P9_DEBUG_ERROR
,
730 "failed to allocate copy of option string\n");
734 while ((p
= strsep(&options
, ",")) != NULL
) {
739 token
= match_token(p
, tokens
, args
);
740 if (token
!= Opt_err
) {
741 r
= match_int(&args
[0], &option
);
743 P9_DPRINTK(P9_DEBUG_ERROR
,
744 "integer field, but no integer?\n");
767 static int p9_fd_open(struct p9_client
*client
, int rfd
, int wfd
)
769 struct p9_trans_fd
*ts
= kmalloc(sizeof(struct p9_trans_fd
),
776 if (!ts
->rd
|| !ts
->wr
) {
786 client
->status
= Connected
;
791 static int p9_socket_open(struct p9_client
*client
, struct socket
*csocket
)
793 struct p9_trans_fd
*p
;
796 p
= kmalloc(sizeof(struct p9_trans_fd
), GFP_KERNEL
);
800 csocket
->sk
->sk_allocation
= GFP_NOIO
;
801 fd
= sock_map_fd(csocket
, 0);
803 P9_EPRINTK(KERN_ERR
, "p9_socket_open: failed to map fd\n");
804 sock_release(csocket
);
809 get_file(csocket
->file
);
810 get_file(csocket
->file
);
811 p
->wr
= p
->rd
= csocket
->file
;
813 client
->status
= Connected
;
815 sys_close(fd
); /* still racy */
817 p
->rd
->f_flags
|= O_NONBLOCK
;
819 p
->conn
= p9_conn_create(client
);
820 if (IS_ERR(p
->conn
)) {
821 ret
= PTR_ERR(p
->conn
);
832 * p9_mux_destroy - cancels all pending requests and frees mux resources
837 static void p9_conn_destroy(struct p9_conn
*m
)
839 P9_DPRINTK(P9_DEBUG_TRANS
, "mux %p prev %p next %p\n", m
,
840 m
->mux_list
.prev
, m
->mux_list
.next
);
843 cancel_work_sync(&m
->rq
);
844 cancel_work_sync(&m
->wq
);
846 p9_conn_cancel(m
, -ECONNRESET
);
853 * p9_fd_close - shutdown file descriptor transport
854 * @client: client instance
858 static void p9_fd_close(struct p9_client
*client
)
860 struct p9_trans_fd
*ts
;
869 client
->status
= Disconnected
;
871 p9_conn_destroy(ts
->conn
);
882 * stolen from NFS - maybe should be made a generic function?
884 static inline int valid_ipaddr4(const char *buf
)
886 int rc
, count
, in
[4];
888 rc
= sscanf(buf
, "%d.%d.%d.%d", &in
[0], &in
[1], &in
[2], &in
[3]);
891 for (count
= 0; count
< 4; count
++) {
899 p9_fd_create_tcp(struct p9_client
*client
, const char *addr
, char *args
)
902 struct socket
*csocket
;
903 struct sockaddr_in sin_server
;
904 struct p9_fd_opts opts
;
906 err
= parse_opts(args
, &opts
);
910 if (valid_ipaddr4(addr
) < 0)
915 sin_server
.sin_family
= AF_INET
;
916 sin_server
.sin_addr
.s_addr
= in_aton(addr
);
917 sin_server
.sin_port
= htons(opts
.port
);
918 err
= sock_create_kern(PF_INET
, SOCK_STREAM
, IPPROTO_TCP
, &csocket
);
921 P9_EPRINTK(KERN_ERR
, "p9_trans_tcp: problem creating socket\n");
925 err
= csocket
->ops
->connect(csocket
,
926 (struct sockaddr
*)&sin_server
,
927 sizeof(struct sockaddr_in
), 0);
930 "p9_trans_tcp: problem connecting socket to %s\n",
932 sock_release(csocket
);
936 return p9_socket_open(client
, csocket
);
940 p9_fd_create_unix(struct p9_client
*client
, const char *addr
, char *args
)
943 struct socket
*csocket
;
944 struct sockaddr_un sun_server
;
948 if (strlen(addr
) > UNIX_PATH_MAX
) {
949 P9_EPRINTK(KERN_ERR
, "p9_trans_unix: address too long: %s\n",
951 return -ENAMETOOLONG
;
954 sun_server
.sun_family
= PF_UNIX
;
955 strcpy(sun_server
.sun_path
, addr
);
956 err
= sock_create_kern(PF_UNIX
, SOCK_STREAM
, 0, &csocket
);
958 P9_EPRINTK(KERN_ERR
, "p9_trans_unix: problem creating socket\n");
961 err
= csocket
->ops
->connect(csocket
, (struct sockaddr
*)&sun_server
,
962 sizeof(struct sockaddr_un
) - 1, 0);
965 "p9_trans_unix: problem connecting socket: %s: %d\n",
967 sock_release(csocket
);
971 return p9_socket_open(client
, csocket
);
975 p9_fd_create(struct p9_client
*client
, const char *addr
, char *args
)
978 struct p9_fd_opts opts
;
979 struct p9_trans_fd
*p
;
981 parse_opts(args
, &opts
);
983 if (opts
.rfd
== ~0 || opts
.wfd
== ~0) {
984 printk(KERN_ERR
"v9fs: Insufficient options for proto=fd\n");
988 err
= p9_fd_open(client
, opts
.rfd
, opts
.wfd
);
992 p
= (struct p9_trans_fd
*) client
->trans
;
993 p
->conn
= p9_conn_create(client
);
994 if (IS_ERR(p
->conn
)) {
995 err
= PTR_ERR(p
->conn
);
1005 static struct p9_trans_module p9_tcp_trans
= {
1007 .maxsize
= MAX_SOCK_BUF
,
1009 .create
= p9_fd_create_tcp
,
1010 .close
= p9_fd_close
,
1011 .request
= p9_fd_request
,
1012 .cancel
= p9_fd_cancel
,
1013 .owner
= THIS_MODULE
,
1016 static struct p9_trans_module p9_unix_trans
= {
1018 .maxsize
= MAX_SOCK_BUF
,
1020 .create
= p9_fd_create_unix
,
1021 .close
= p9_fd_close
,
1022 .request
= p9_fd_request
,
1023 .cancel
= p9_fd_cancel
,
1024 .owner
= THIS_MODULE
,
1027 static struct p9_trans_module p9_fd_trans
= {
1029 .maxsize
= MAX_SOCK_BUF
,
1031 .create
= p9_fd_create
,
1032 .close
= p9_fd_close
,
1033 .request
= p9_fd_request
,
1034 .cancel
= p9_fd_cancel
,
1035 .owner
= THIS_MODULE
,
1039 * p9_poll_proc - poll worker thread
1040 * @a: thread state and arguments
1042 * polls all v9fs transports for new events and queues the appropriate
1043 * work to the work queue
1047 static int p9_poll_proc(void *a
)
1049 unsigned long flags
;
1051 P9_DPRINTK(P9_DEBUG_TRANS
, "start %p\n", current
);
1053 spin_lock_irqsave(&p9_poll_lock
, flags
);
1054 while (!list_empty(&p9_poll_pending_list
)) {
1055 struct p9_conn
*conn
= list_first_entry(&p9_poll_pending_list
,
1058 list_del_init(&conn
->poll_pending_link
);
1059 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
1063 spin_lock_irqsave(&p9_poll_lock
, flags
);
1065 spin_unlock_irqrestore(&p9_poll_lock
, flags
);
1067 set_current_state(TASK_INTERRUPTIBLE
);
1068 if (list_empty(&p9_poll_pending_list
)) {
1069 P9_DPRINTK(P9_DEBUG_TRANS
, "sleeping...\n");
1072 __set_current_state(TASK_RUNNING
);
1074 if (!kthread_should_stop())
1077 P9_DPRINTK(P9_DEBUG_TRANS
, "finish\n");
1081 int p9_trans_fd_init(void)
1083 p9_mux_wq
= create_workqueue("v9fs");
1085 printk(KERN_WARNING
"v9fs: mux: creating workqueue failed\n");
1089 p9_poll_task
= kthread_run(p9_poll_proc
, NULL
, "v9fs-poll");
1090 if (IS_ERR(p9_poll_task
)) {
1091 destroy_workqueue(p9_mux_wq
);
1092 printk(KERN_WARNING
"v9fs: mux: creating poll task failed\n");
1093 return PTR_ERR(p9_poll_task
);
1096 v9fs_register_trans(&p9_tcp_trans
);
1097 v9fs_register_trans(&p9_unix_trans
);
1098 v9fs_register_trans(&p9_fd_trans
);
1103 void p9_trans_fd_exit(void)
1105 kthread_stop(p9_poll_task
);
1106 v9fs_unregister_trans(&p9_tcp_trans
);
1107 v9fs_unregister_trans(&p9_unix_trans
);
1108 v9fs_unregister_trans(&p9_fd_trans
);
1110 destroy_workqueue(p9_mux_wq
);