2 * linux/fs/9p/trans_socket.c
4 * Socket Transport Layer
6 * Copyright (C) 2004-2005 by Latchesar Ionkov <lucho@ionkov.net>
7 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
8 * Copyright (C) 1997-2002 by Ron Minnich <rminnich@sarnoff.com>
9 * Copyright (C) 1995, 1996 by Olaf Kirch <okir@monad.swb.de>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to:
23 * Free Software Foundation
24 * 51 Franklin Street, Fifth Floor
25 * Boston, MA 02111-1301 USA
29 #include <linux/config.h>
31 #include <linux/module.h>
32 #include <linux/net.h>
33 #include <linux/ipv6.h>
34 #include <linux/errno.h>
35 #include <linux/kernel.h>
37 #include <asm/uaccess.h>
38 #include <linux/inet.h>
39 #include <linux/idr.h>
40 #include <linux/file.h>
44 #include "transport.h"
48 struct v9fs_trans_sock {
54 * v9fs_sock_recv - receive from a socket
55 * @v9ses: session information
56 * @v: buffer to receive data into
57 * @len: size of receive buffer
61 static int v9fs_sock_recv(struct v9fs_transport *trans, void *v, int len)
64 struct v9fs_trans_sock *ts;
66 if (!trans || trans->status == Disconnected) {
67 dprintk(DEBUG_ERROR, "disconnected ...\n");
73 if (!(ts->filp->f_flags & O_NONBLOCK))
74 dprintk(DEBUG_ERROR, "blocking read ...\n");
76 ret = kernel_read(ts->filp, ts->filp->f_pos, v, len);
78 if (ret != -ERESTARTSYS && ret != -EAGAIN)
79 trans->status = Disconnected;
86 * v9fs_sock_send - send to a socket
87 * @v9ses: session information
88 * @v: buffer to send data from
89 * @len: size of send buffer
93 static int v9fs_sock_send(struct v9fs_transport *trans, void *v, int len)
97 struct v9fs_trans_sock *ts;
99 if (!trans || trans->status == Disconnected) {
100 dprintk(DEBUG_ERROR, "disconnected ...\n");
106 dprintk(DEBUG_ERROR, "no transport ...\n");
110 if (!(ts->filp->f_flags & O_NONBLOCK))
111 dprintk(DEBUG_ERROR, "blocking write ...\n");
115 ret = vfs_write(ts->filp, (void __user *)v, len, &ts->filp->f_pos);
119 if (ret != -ERESTARTSYS)
120 trans->status = Disconnected;
126 static unsigned int v9fs_sock_poll(struct v9fs_transport *trans,
127 struct poll_table_struct *pt) {
130 struct v9fs_trans_sock *ts;
134 dprintk(DEBUG_ERROR, "no transport\n");
139 if (trans->status != Connected || !ts) {
140 dprintk(DEBUG_ERROR, "transport disconnected: %d\n", trans->status);
147 if (!ts->filp->f_op || !ts->filp->f_op->poll) {
148 dprintk(DEBUG_ERROR, "no poll operation\n");
153 ret = ts->filp->f_op->poll(ts->filp, pt);
162 * v9fs_tcp_init - initialize TCP socket
163 * @v9ses: session information
164 * @addr: address of server to mount
165 * @data: mount options
170 v9fs_tcp_init(struct v9fs_session_info *v9ses, const char *addr, char *data)
172 struct socket *csocket = NULL;
173 struct sockaddr_in sin_server;
175 struct v9fs_trans_sock *ts = NULL;
176 struct v9fs_transport *trans = v9ses->transport;
179 trans->status = Disconnected;
181 ts = kmalloc(sizeof(struct v9fs_trans_sock), GFP_KERNEL);
193 dprintk(DEBUG_TRANS, "Connecting to %s\n", addr);
195 sin_server.sin_family = AF_INET;
196 sin_server.sin_addr.s_addr = in_aton(addr);
197 sin_server.sin_port = htons(v9ses->port);
198 sock_create_kern(PF_INET, SOCK_STREAM, IPPROTO_TCP, &csocket);
199 rc = csocket->ops->connect(csocket,
200 (struct sockaddr *)&sin_server,
201 sizeof(struct sockaddr_in), 0);
204 "v9fs_trans_tcp: problem connecting socket to %s\n",
208 csocket->sk->sk_allocation = GFP_NOIO;
210 fd = sock_map_fd(csocket);
212 sock_release(csocket);
220 ts->filp->f_flags |= O_NONBLOCK;
221 trans->status = Connected;
227 * v9fs_unix_init - initialize UNIX domain socket
228 * @v9ses: session information
229 * @dev_name: path to named pipe
230 * @data: mount options
235 v9fs_unix_init(struct v9fs_session_info *v9ses, const char *dev_name,
239 struct socket *csocket;
240 struct sockaddr_un sun_server;
241 struct v9fs_transport *trans;
242 struct v9fs_trans_sock *ts;
246 trans = v9ses->transport;
248 trans->status = Disconnected;
250 if (strlen(dev_name) > UNIX_PATH_MAX) {
251 eprintk(KERN_ERR, "v9fs_trans_unix: address too long: %s\n",
256 ts = kmalloc(sizeof(struct v9fs_trans_sock), GFP_KERNEL);
264 sun_server.sun_family = PF_UNIX;
265 strcpy(sun_server.sun_path, dev_name);
266 sock_create_kern(PF_UNIX, SOCK_STREAM, 0, &csocket);
267 rc = csocket->ops->connect(csocket, (struct sockaddr *)&sun_server,
268 sizeof(struct sockaddr_un) - 1, 0); /* -1 *is* important */
271 "v9fs_trans_unix: problem connecting socket: %s: %d\n",
275 csocket->sk->sk_allocation = GFP_NOIO;
277 fd = sock_map_fd(csocket);
279 sock_release(csocket);
287 ts->filp->f_flags |= O_NONBLOCK;
288 trans->status = Connected;
294 * v9fs_sock_close - shutdown socket
295 * @trans: private socket structure
299 static void v9fs_sock_close(struct v9fs_transport *trans)
301 struct v9fs_trans_sock *ts;
308 if ((ts) && (ts->filp)) {
312 trans->status = Disconnected;
320 struct v9fs_transport v9fs_trans_tcp = {
321 .init = v9fs_tcp_init,
322 .write = v9fs_sock_send,
323 .read = v9fs_sock_recv,
324 .close = v9fs_sock_close,
325 .poll = v9fs_sock_poll,
328 struct v9fs_transport v9fs_trans_unix = {
329 .init = v9fs_unix_init,
330 .write = v9fs_sock_send,
331 .read = v9fs_sock_recv,
332 .close = v9fs_sock_close,
333 .poll = v9fs_sock_poll,