Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[linux-2.6-microblaze.git] / drivers / staging / lustre / lustre / libcfs / linux / linux-tcpip.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36 #define DEBUG_SUBSYSTEM S_LNET
37
38 #include <linux/libcfs/libcfs.h>
39
40 #include <linux/if.h>
41 #include <linux/in.h>
42 #include <linux/file.h>
43 /* For sys_open & sys_close */
44 #include <linux/syscalls.h>
45
46 int
47 libcfs_sock_ioctl(int cmd, unsigned long arg)
48 {
49         mm_segment_t    oldmm = get_fs();
50         struct socket  *sock;
51         int          rc;
52         struct file    *sock_filp;
53
54         rc = sock_create (PF_INET, SOCK_STREAM, 0, &sock);
55         if (rc != 0) {
56                 CERROR ("Can't create socket: %d\n", rc);
57                 return rc;
58         }
59
60         sock_filp = sock_alloc_file(sock, 0, NULL);
61         if (IS_ERR(sock_filp)) {
62                 sock_release(sock);
63                 rc = PTR_ERR(sock_filp);
64                 goto out;
65         }
66
67         set_fs(KERNEL_DS);
68         if (sock_filp->f_op->unlocked_ioctl)
69                 rc = sock_filp->f_op->unlocked_ioctl(sock_filp, cmd, arg);
70         set_fs(oldmm);
71
72         fput(sock_filp);
73 out:
74         return rc;
75 }
76
77 int
78 libcfs_ipif_query (char *name, int *up, __u32 *ip, __u32 *mask)
79 {
80         struct ifreq   ifr;
81         int         nob;
82         int         rc;
83         __u32     val;
84
85         nob = strnlen(name, IFNAMSIZ);
86         if (nob == IFNAMSIZ) {
87                 CERROR("Interface name %s too long\n", name);
88                 return -EINVAL;
89         }
90
91         CLASSERT (sizeof(ifr.ifr_name) >= IFNAMSIZ);
92
93         strcpy(ifr.ifr_name, name);
94         rc = libcfs_sock_ioctl(SIOCGIFFLAGS, (unsigned long)&ifr);
95
96         if (rc != 0) {
97                 CERROR("Can't get flags for interface %s\n", name);
98                 return rc;
99         }
100
101         if ((ifr.ifr_flags & IFF_UP) == 0) {
102                 CDEBUG(D_NET, "Interface %s down\n", name);
103                 *up = 0;
104                 *ip = *mask = 0;
105                 return 0;
106         }
107
108         *up = 1;
109
110         strcpy(ifr.ifr_name, name);
111         ifr.ifr_addr.sa_family = AF_INET;
112         rc = libcfs_sock_ioctl(SIOCGIFADDR, (unsigned long)&ifr);
113
114         if (rc != 0) {
115                 CERROR("Can't get IP address for interface %s\n", name);
116                 return rc;
117         }
118
119         val = ((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr.s_addr;
120         *ip = ntohl(val);
121
122         strcpy(ifr.ifr_name, name);
123         ifr.ifr_addr.sa_family = AF_INET;
124         rc = libcfs_sock_ioctl(SIOCGIFNETMASK, (unsigned long)&ifr);
125
126         if (rc != 0) {
127                 CERROR("Can't get netmask for interface %s\n", name);
128                 return rc;
129         }
130
131         val = ((struct sockaddr_in *)&ifr.ifr_netmask)->sin_addr.s_addr;
132         *mask = ntohl(val);
133
134         return 0;
135 }
136
137 EXPORT_SYMBOL(libcfs_ipif_query);
138
139 int
140 libcfs_ipif_enumerate (char ***namesp)
141 {
142         /* Allocate and fill in 'names', returning # interfaces/error */
143         char       **names;
144         int          toobig;
145         int          nalloc;
146         int          nfound;
147         struct ifreq   *ifr;
148         struct ifconf   ifc;
149         int          rc;
150         int          nob;
151         int          i;
152
153
154         nalloc = 16;    /* first guess at max interfaces */
155         toobig = 0;
156         for (;;) {
157                 if (nalloc * sizeof(*ifr) > PAGE_CACHE_SIZE) {
158                         toobig = 1;
159                         nalloc = PAGE_CACHE_SIZE/sizeof(*ifr);
160                         CWARN("Too many interfaces: only enumerating first %d\n",
161                               nalloc);
162                 }
163
164                 LIBCFS_ALLOC(ifr, nalloc * sizeof(*ifr));
165                 if (ifr == NULL) {
166                         CERROR ("ENOMEM enumerating up to %d interfaces\n", nalloc);
167                         rc = -ENOMEM;
168                         goto out0;
169                 }
170
171                 ifc.ifc_buf = (char *)ifr;
172                 ifc.ifc_len = nalloc * sizeof(*ifr);
173
174                 rc = libcfs_sock_ioctl(SIOCGIFCONF, (unsigned long)&ifc);
175
176                 if (rc < 0) {
177                         CERROR ("Error %d enumerating interfaces\n", rc);
178                         goto out1;
179                 }
180
181                 LASSERT (rc == 0);
182
183                 nfound = ifc.ifc_len/sizeof(*ifr);
184                 LASSERT (nfound <= nalloc);
185
186                 if (nfound < nalloc || toobig)
187                         break;
188
189                 LIBCFS_FREE(ifr, nalloc * sizeof(*ifr));
190                 nalloc *= 2;
191         }
192
193         if (nfound == 0)
194                 goto out1;
195
196         LIBCFS_ALLOC(names, nfound * sizeof(*names));
197         if (names == NULL) {
198                 rc = -ENOMEM;
199                 goto out1;
200         }
201         /* NULL out all names[i] */
202         memset (names, 0, nfound * sizeof(*names));
203
204         for (i = 0; i < nfound; i++) {
205
206                 nob = strnlen (ifr[i].ifr_name, IFNAMSIZ);
207                 if (nob == IFNAMSIZ) {
208                         /* no space for terminating NULL */
209                         CERROR("interface name %.*s too long (%d max)\n",
210                                nob, ifr[i].ifr_name, IFNAMSIZ);
211                         rc = -ENAMETOOLONG;
212                         goto out2;
213                 }
214
215                 LIBCFS_ALLOC(names[i], IFNAMSIZ);
216                 if (names[i] == NULL) {
217                         rc = -ENOMEM;
218                         goto out2;
219                 }
220
221                 memcpy(names[i], ifr[i].ifr_name, nob);
222                 names[i][nob] = 0;
223         }
224
225         *namesp = names;
226         rc = nfound;
227
228  out2:
229         if (rc < 0)
230                 libcfs_ipif_free_enumeration(names, nfound);
231  out1:
232         LIBCFS_FREE(ifr, nalloc * sizeof(*ifr));
233  out0:
234         return rc;
235 }
236
237 EXPORT_SYMBOL(libcfs_ipif_enumerate);
238
239 void
240 libcfs_ipif_free_enumeration (char **names, int n)
241 {
242         int      i;
243
244         LASSERT (n > 0);
245
246         for (i = 0; i < n && names[i] != NULL; i++)
247                 LIBCFS_FREE(names[i], IFNAMSIZ);
248
249         LIBCFS_FREE(names, n * sizeof(*names));
250 }
251
252 EXPORT_SYMBOL(libcfs_ipif_free_enumeration);
253
254 int
255 libcfs_sock_write (struct socket *sock, void *buffer, int nob, int timeout)
256 {
257         int         rc;
258         mm_segment_t   oldmm = get_fs();
259         long       ticks = timeout * HZ;
260         unsigned long  then;
261         struct timeval tv;
262
263         LASSERT (nob > 0);
264         /* Caller may pass a zero timeout if she thinks the socket buffer is
265          * empty enough to take the whole message immediately */
266
267         for (;;) {
268                 struct kvec  iov = {
269                         .iov_base = buffer,
270                         .iov_len  = nob
271                 };
272                 struct msghdr msg = {
273                         .msg_flags      = (timeout == 0) ? MSG_DONTWAIT : 0
274                 };
275
276                 if (timeout != 0) {
277                         /* Set send timeout to remaining time */
278                         tv = (struct timeval) {
279                                 .tv_sec = ticks / HZ,
280                                 .tv_usec = ((ticks % HZ) * 1000000) / HZ
281                         };
282                         set_fs(KERNEL_DS);
283                         rc = sock_setsockopt(sock, SOL_SOCKET, SO_SNDTIMEO,
284                                              (char *)&tv, sizeof(tv));
285                         set_fs(oldmm);
286                         if (rc != 0) {
287                                 CERROR("Can't set socket send timeout "
288                                        "%ld.%06d: %d\n",
289                                        (long)tv.tv_sec, (int)tv.tv_usec, rc);
290                                 return rc;
291                         }
292                 }
293
294                 then = jiffies;
295                 rc = kernel_sendmsg(sock, &msg, &iov, 1, nob);
296                 ticks -= jiffies - then;
297
298                 if (rc == nob)
299                         return 0;
300
301                 if (rc < 0)
302                         return rc;
303
304                 if (rc == 0) {
305                         CERROR ("Unexpected zero rc\n");
306                         return (-ECONNABORTED);
307                 }
308
309                 if (ticks <= 0)
310                         return -EAGAIN;
311
312                 buffer = ((char *)buffer) + rc;
313                 nob -= rc;
314         }
315
316         return (0);
317 }
318 EXPORT_SYMBOL(libcfs_sock_write);
319
320 int
321 libcfs_sock_read (struct socket *sock, void *buffer, int nob, int timeout)
322 {
323         int         rc;
324         mm_segment_t   oldmm = get_fs();
325         long       ticks = timeout * HZ;
326         unsigned long  then;
327         struct timeval tv;
328
329         LASSERT (nob > 0);
330         LASSERT (ticks > 0);
331
332         for (;;) {
333                 struct kvec  iov = {
334                         .iov_base = buffer,
335                         .iov_len  = nob
336                 };
337                 struct msghdr msg = {
338                         .msg_flags      = 0
339                 };
340
341                 /* Set receive timeout to remaining time */
342                 tv = (struct timeval) {
343                         .tv_sec = ticks / HZ,
344                         .tv_usec = ((ticks % HZ) * 1000000) / HZ
345                 };
346                 set_fs(KERNEL_DS);
347                 rc = sock_setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO,
348                                      (char *)&tv, sizeof(tv));
349                 set_fs(oldmm);
350                 if (rc != 0) {
351                         CERROR("Can't set socket recv timeout %ld.%06d: %d\n",
352                                (long)tv.tv_sec, (int)tv.tv_usec, rc);
353                         return rc;
354                 }
355
356                 then = jiffies;
357                 rc = kernel_recvmsg(sock, &msg, &iov, 1, nob, 0);
358                 ticks -= jiffies - then;
359
360                 if (rc < 0)
361                         return rc;
362
363                 if (rc == 0)
364                         return -ECONNRESET;
365
366                 buffer = ((char *)buffer) + rc;
367                 nob -= rc;
368
369                 if (nob == 0)
370                         return 0;
371
372                 if (ticks <= 0)
373                         return -ETIMEDOUT;
374         }
375 }
376
377 EXPORT_SYMBOL(libcfs_sock_read);
378
379 static int
380 libcfs_sock_create (struct socket **sockp, int *fatal,
381                     __u32 local_ip, int local_port)
382 {
383         struct sockaddr_in  locaddr;
384         struct socket      *sock;
385         int              rc;
386         int              option;
387         mm_segment_t    oldmm = get_fs();
388
389         /* All errors are fatal except bind failure if the port is in use */
390         *fatal = 1;
391
392         rc = sock_create (PF_INET, SOCK_STREAM, 0, &sock);
393         *sockp = sock;
394         if (rc != 0) {
395                 CERROR ("Can't create socket: %d\n", rc);
396                 return (rc);
397         }
398
399         set_fs (KERNEL_DS);
400         option = 1;
401         rc = sock_setsockopt(sock, SOL_SOCKET, SO_REUSEADDR,
402                              (char *)&option, sizeof (option));
403         set_fs (oldmm);
404         if (rc != 0) {
405                 CERROR("Can't set SO_REUSEADDR for socket: %d\n", rc);
406                 goto failed;
407         }
408
409         if (local_ip != 0 || local_port != 0) {
410                 memset(&locaddr, 0, sizeof(locaddr));
411                 locaddr.sin_family = AF_INET;
412                 locaddr.sin_port = htons(local_port);
413                 locaddr.sin_addr.s_addr = (local_ip == 0) ?
414                                           INADDR_ANY : htonl(local_ip);
415
416                 rc = sock->ops->bind(sock, (struct sockaddr *)&locaddr,
417                                      sizeof(locaddr));
418                 if (rc == -EADDRINUSE) {
419                         CDEBUG(D_NET, "Port %d already in use\n", local_port);
420                         *fatal = 0;
421                         goto failed;
422                 }
423                 if (rc != 0) {
424                         CERROR("Error trying to bind to port %d: %d\n",
425                                local_port, rc);
426                         goto failed;
427                 }
428         }
429
430         return 0;
431
432  failed:
433         sock_release(sock);
434         return rc;
435 }
436
437 int
438 libcfs_sock_setbuf (struct socket *sock, int txbufsize, int rxbufsize)
439 {
440         mm_segment_t    oldmm = get_fs();
441         int              option;
442         int              rc;
443
444         if (txbufsize != 0) {
445                 option = txbufsize;
446                 set_fs (KERNEL_DS);
447                 rc = sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
448                                      (char *)&option, sizeof (option));
449                 set_fs (oldmm);
450                 if (rc != 0) {
451                         CERROR ("Can't set send buffer %d: %d\n",
452                                 option, rc);
453                         return (rc);
454                 }
455         }
456
457         if (rxbufsize != 0) {
458                 option = rxbufsize;
459                 set_fs (KERNEL_DS);
460                 rc = sock_setsockopt (sock, SOL_SOCKET, SO_RCVBUF,
461                                       (char *)&option, sizeof (option));
462                 set_fs (oldmm);
463                 if (rc != 0) {
464                         CERROR ("Can't set receive buffer %d: %d\n",
465                                 option, rc);
466                         return (rc);
467                 }
468         }
469
470         return 0;
471 }
472
473 EXPORT_SYMBOL(libcfs_sock_setbuf);
474
475 int
476 libcfs_sock_getaddr (struct socket *sock, int remote, __u32 *ip, int *port)
477 {
478         struct sockaddr_in sin;
479         int             len = sizeof (sin);
480         int             rc;
481
482         rc = sock->ops->getname (sock, (struct sockaddr *)&sin, &len,
483                                  remote ? 2 : 0);
484         if (rc != 0) {
485                 CERROR ("Error %d getting sock %s IP/port\n",
486                         rc, remote ? "peer" : "local");
487                 return rc;
488         }
489
490         if (ip != NULL)
491                 *ip = ntohl (sin.sin_addr.s_addr);
492
493         if (port != NULL)
494                 *port = ntohs (sin.sin_port);
495
496         return 0;
497 }
498
499 EXPORT_SYMBOL(libcfs_sock_getaddr);
500
501 int
502 libcfs_sock_getbuf (struct socket *sock, int *txbufsize, int *rxbufsize)
503 {
504
505         if (txbufsize != NULL) {
506                 *txbufsize = sock->sk->sk_sndbuf;
507         }
508
509         if (rxbufsize != NULL) {
510                 *rxbufsize = sock->sk->sk_rcvbuf;
511         }
512
513         return 0;
514 }
515
516 EXPORT_SYMBOL(libcfs_sock_getbuf);
517
518 int
519 libcfs_sock_listen (struct socket **sockp,
520                     __u32 local_ip, int local_port, int backlog)
521 {
522         int      fatal;
523         int      rc;
524
525         rc = libcfs_sock_create(sockp, &fatal, local_ip, local_port);
526         if (rc != 0) {
527                 if (!fatal)
528                         CERROR("Can't create socket: port %d already in use\n",
529                                local_port);
530                 return rc;
531         }
532
533         rc = (*sockp)->ops->listen(*sockp, backlog);
534         if (rc == 0)
535                 return 0;
536
537         CERROR("Can't set listen backlog %d: %d\n", backlog, rc);
538         sock_release(*sockp);
539         return rc;
540 }
541
542 EXPORT_SYMBOL(libcfs_sock_listen);
543
544 int
545 libcfs_sock_accept (struct socket **newsockp, struct socket *sock)
546 {
547         wait_queue_t   wait;
548         struct socket *newsock;
549         int         rc;
550
551         init_waitqueue_entry(&wait, current);
552
553         /* XXX this should add a ref to sock->ops->owner, if
554          * TCP could be a module */
555         rc = sock_create_lite(PF_PACKET, sock->type, IPPROTO_TCP, &newsock);
556         if (rc) {
557                 CERROR("Can't allocate socket\n");
558                 return rc;
559         }
560
561         newsock->ops = sock->ops;
562
563         set_current_state(TASK_INTERRUPTIBLE);
564         add_wait_queue(cfs_sk_sleep(sock->sk), &wait);
565
566         rc = sock->ops->accept(sock, newsock, O_NONBLOCK);
567         if (rc == -EAGAIN) {
568                 /* Nothing ready, so wait for activity */
569                 schedule();
570                 rc = sock->ops->accept(sock, newsock, O_NONBLOCK);
571         }
572
573         remove_wait_queue(cfs_sk_sleep(sock->sk), &wait);
574         set_current_state(TASK_RUNNING);
575
576         if (rc != 0)
577                 goto failed;
578
579         *newsockp = newsock;
580         return 0;
581
582  failed:
583         sock_release(newsock);
584         return rc;
585 }
586
587 EXPORT_SYMBOL(libcfs_sock_accept);
588
589 void
590 libcfs_sock_abort_accept (struct socket *sock)
591 {
592         wake_up_all(cfs_sk_sleep(sock->sk));
593 }
594
595 EXPORT_SYMBOL(libcfs_sock_abort_accept);
596
597 int
598 libcfs_sock_connect (struct socket **sockp, int *fatal,
599                      __u32 local_ip, int local_port,
600                      __u32 peer_ip, int peer_port)
601 {
602         struct sockaddr_in  srvaddr;
603         int              rc;
604
605         rc = libcfs_sock_create(sockp, fatal, local_ip, local_port);
606         if (rc != 0)
607                 return rc;
608
609         memset (&srvaddr, 0, sizeof (srvaddr));
610         srvaddr.sin_family = AF_INET;
611         srvaddr.sin_port = htons(peer_port);
612         srvaddr.sin_addr.s_addr = htonl(peer_ip);
613
614         rc = (*sockp)->ops->connect(*sockp,
615                                     (struct sockaddr *)&srvaddr, sizeof(srvaddr),
616                                     0);
617         if (rc == 0)
618                 return 0;
619
620         /* EADDRNOTAVAIL probably means we're already connected to the same
621          * peer/port on the same local port on a differently typed
622          * connection.  Let our caller retry with a different local
623          * port... */
624         *fatal = !(rc == -EADDRNOTAVAIL);
625
626         CDEBUG_LIMIT(*fatal ? D_NETERROR : D_NET,
627                "Error %d connecting %pI4h/%d -> %pI4h/%d\n", rc,
628                &local_ip, local_port, &peer_ip, peer_port);
629
630         sock_release(*sockp);
631         return rc;
632 }
633
634 EXPORT_SYMBOL(libcfs_sock_connect);
635
636 void
637 libcfs_sock_release (struct socket *sock)
638 {
639         sock_release(sock);
640 }
641
642 EXPORT_SYMBOL(libcfs_sock_release);