linux/net/irda/af_irda.c
<<
>>
Prefs
   1/*********************************************************************
   2 *
   3 * Filename:      af_irda.c
   4 * Version:       0.9
   5 * Description:   IrDA sockets implementation
   6 * Status:        Stable
   7 * Author:        Dag Brattli <dagb@cs.uit.no>
   8 * Created at:    Sun May 31 10:12:43 1998
   9 * Modified at:   Sat Dec 25 21:10:23 1999
  10 * Modified by:   Dag Brattli <dag@brattli.net>
  11 * Sources:       af_netroom.c, af_ax25.c, af_rose.c, af_x25.c etc.
  12 *
  13 *     Copyright (c) 1999 Dag Brattli <dagb@cs.uit.no>
  14 *     Copyright (c) 1999-2003 Jean Tourrilhes <jt@hpl.hp.com>
  15 *     All Rights Reserved.
  16 *
  17 *     This program is free software; you can redistribute it and/or
  18 *     modify it under the terms of the GNU General Public License as
  19 *     published by the Free Software Foundation; either version 2 of
  20 *     the License, or (at your option) any later version.
  21 *
  22 *     This program is distributed in the hope that it will be useful,
  23 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  24 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25 *     GNU General Public License for more details.
  26 *
  27 *     You should have received a copy of the GNU General Public License
  28 *     along with this program; if not, write to the Free Software
  29 *     Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  30 *     MA 02111-1307 USA
  31 *
  32 *     Linux-IrDA now supports four different types of IrDA sockets:
  33 *
  34 *     o SOCK_STREAM:    TinyTP connections with SAR disabled. The
  35 *                       max SDU size is 0 for conn. of this type
  36 *     o SOCK_SEQPACKET: TinyTP connections with SAR enabled. TTP may
  37 *                       fragment the messages, but will preserve
  38 *                       the message boundaries
  39 *     o SOCK_DGRAM:     IRDAPROTO_UNITDATA: TinyTP connections with Unitdata
  40 *                       (unreliable) transfers
  41 *                       IRDAPROTO_ULTRA: Connectionless and unreliable data
  42 *
  43 ********************************************************************/
  44
  45#include <linux/capability.h>
  46#include <linux/module.h>
  47#include <linux/types.h>
  48#include <linux/socket.h>
  49#include <linux/sockios.h>
  50#include <linux/slab.h>
  51#include <linux/init.h>
  52#include <linux/net.h>
  53#include <linux/irda.h>
  54#include <linux/poll.h>
  55
  56#include <asm/ioctls.h>         /* TIOCOUTQ, TIOCINQ */
  57#include <asm/uaccess.h>
  58
  59#include <net/sock.h>
  60#include <net/tcp_states.h>
  61
  62#include <net/irda/af_irda.h>
  63
  64static int irda_create(struct net *net, struct socket *sock, int protocol, int kern);
  65
  66static const struct proto_ops irda_stream_ops;
  67static const struct proto_ops irda_seqpacket_ops;
  68static const struct proto_ops irda_dgram_ops;
  69
  70#ifdef CONFIG_IRDA_ULTRA
  71static const struct proto_ops irda_ultra_ops;
  72#define ULTRA_MAX_DATA 382
  73#endif /* CONFIG_IRDA_ULTRA */
  74
  75#define IRDA_MAX_HEADER (TTP_MAX_HEADER)
  76
  77/*
  78 * Function irda_data_indication (instance, sap, skb)
  79 *
  80 *    Received some data from TinyTP. Just queue it on the receive queue
  81 *
  82 */
  83static int irda_data_indication(void *instance, void *sap, struct sk_buff *skb)
  84{
  85        struct irda_sock *self;
  86        struct sock *sk;
  87        int err;
  88
  89        IRDA_DEBUG(3, "%s()\n", __func__);
  90
  91        self = instance;
  92        sk = instance;
  93
  94        err = sock_queue_rcv_skb(sk, skb);
  95        if (err) {
  96                IRDA_DEBUG(1, "%s(), error: no more mem!\n", __func__);
  97                self->rx_flow = FLOW_STOP;
  98
  99                /* When we return error, TTP will need to requeue the skb */
 100                return err;
 101        }
 102
 103        return 0;
 104}
 105
 106/*
 107 * Function irda_disconnect_indication (instance, sap, reason, skb)
 108 *
 109 *    Connection has been closed. Check reason to find out why
 110 *
 111 */
 112static void irda_disconnect_indication(void *instance, void *sap,
 113                                       LM_REASON reason, struct sk_buff *skb)
 114{
 115        struct irda_sock *self;
 116        struct sock *sk;
 117
 118        self = instance;
 119
 120        IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
 121
 122        /* Don't care about it, but let's not leak it */
 123        if(skb)
 124                dev_kfree_skb(skb);
 125
 126        sk = instance;
 127        if (sk == NULL) {
 128                IRDA_DEBUG(0, "%s(%p) : BUG : sk is NULL\n",
 129                           __func__, self);
 130                return;
 131        }
 132
 133        /* Prevent race conditions with irda_release() and irda_shutdown() */
 134        bh_lock_sock(sk);
 135        if (!sock_flag(sk, SOCK_DEAD) && sk->sk_state != TCP_CLOSE) {
 136                sk->sk_state     = TCP_CLOSE;
 137                sk->sk_shutdown |= SEND_SHUTDOWN;
 138
 139                sk->sk_state_change(sk);
 140
 141                /* Close our TSAP.
 142                 * If we leave it open, IrLMP put it back into the list of
 143                 * unconnected LSAPs. The problem is that any incoming request
 144                 * can then be matched to this socket (and it will be, because
 145                 * it is at the head of the list). This would prevent any
 146                 * listening socket waiting on the same TSAP to get those
 147                 * requests. Some apps forget to close sockets, or hang to it
 148                 * a bit too long, so we may stay in this dead state long
 149                 * enough to be noticed...
 150                 * Note : all socket function do check sk->sk_state, so we are
 151                 * safe...
 152                 * Jean II
 153                 */
 154                if (self->tsap) {
 155                        irttp_close_tsap(self->tsap);
 156                        self->tsap = NULL;
 157                }
 158        }
 159        bh_unlock_sock(sk);
 160
 161        /* Note : once we are there, there is not much you want to do
 162         * with the socket anymore, apart from closing it.
 163         * For example, bind() and connect() won't reset sk->sk_err,
 164         * sk->sk_shutdown and sk->sk_flags to valid values...
 165         * Jean II
 166         */
 167}
 168
 169/*
 170 * Function irda_connect_confirm (instance, sap, qos, max_sdu_size, skb)
 171 *
 172 *    Connections has been confirmed by the remote device
 173 *
 174 */
 175static void irda_connect_confirm(void *instance, void *sap,
 176                                 struct qos_info *qos,
 177                                 __u32 max_sdu_size, __u8 max_header_size,
 178                                 struct sk_buff *skb)
 179{
 180        struct irda_sock *self;
 181        struct sock *sk;
 182
 183        self = instance;
 184
 185        IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
 186
 187        sk = instance;
 188        if (sk == NULL) {
 189                dev_kfree_skb(skb);
 190                return;
 191        }
 192
 193        dev_kfree_skb(skb);
 194        // Should be ??? skb_queue_tail(&sk->sk_receive_queue, skb);
 195
 196        /* How much header space do we need to reserve */
 197        self->max_header_size = max_header_size;
 198
 199        /* IrTTP max SDU size in transmit direction */
 200        self->max_sdu_size_tx = max_sdu_size;
 201
 202        /* Find out what the largest chunk of data that we can transmit is */
 203        switch (sk->sk_type) {
 204        case SOCK_STREAM:
 205                if (max_sdu_size != 0) {
 206                        IRDA_ERROR("%s: max_sdu_size must be 0\n",
 207                                   __func__);
 208                        return;
 209                }
 210                self->max_data_size = irttp_get_max_seg_size(self->tsap);
 211                break;
 212        case SOCK_SEQPACKET:
 213                if (max_sdu_size == 0) {
 214                        IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
 215                                   __func__);
 216                        return;
 217                }
 218                self->max_data_size = max_sdu_size;
 219                break;
 220        default:
 221                self->max_data_size = irttp_get_max_seg_size(self->tsap);
 222        }
 223
 224        IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__,
 225                   self->max_data_size);
 226
 227        memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
 228
 229        /* We are now connected! */
 230        sk->sk_state = TCP_ESTABLISHED;
 231        sk->sk_state_change(sk);
 232}
 233
 234/*
 235 * Function irda_connect_indication(instance, sap, qos, max_sdu_size, userdata)
 236 *
 237 *    Incoming connection
 238 *
 239 */
 240static void irda_connect_indication(void *instance, void *sap,
 241                                    struct qos_info *qos, __u32 max_sdu_size,
 242                                    __u8 max_header_size, struct sk_buff *skb)
 243{
 244        struct irda_sock *self;
 245        struct sock *sk;
 246
 247        self = instance;
 248
 249        IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
 250
 251        sk = instance;
 252        if (sk == NULL) {
 253                dev_kfree_skb(skb);
 254                return;
 255        }
 256
 257        /* How much header space do we need to reserve */
 258        self->max_header_size = max_header_size;
 259
 260        /* IrTTP max SDU size in transmit direction */
 261        self->max_sdu_size_tx = max_sdu_size;
 262
 263        /* Find out what the largest chunk of data that we can transmit is */
 264        switch (sk->sk_type) {
 265        case SOCK_STREAM:
 266                if (max_sdu_size != 0) {
 267                        IRDA_ERROR("%s: max_sdu_size must be 0\n",
 268                                   __func__);
 269                        kfree_skb(skb);
 270                        return;
 271                }
 272                self->max_data_size = irttp_get_max_seg_size(self->tsap);
 273                break;
 274        case SOCK_SEQPACKET:
 275                if (max_sdu_size == 0) {
 276                        IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
 277                                   __func__);
 278                        kfree_skb(skb);
 279                        return;
 280                }
 281                self->max_data_size = max_sdu_size;
 282                break;
 283        default:
 284                self->max_data_size = irttp_get_max_seg_size(self->tsap);
 285        }
 286
 287        IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__,
 288                   self->max_data_size);
 289
 290        memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
 291
 292        skb_queue_tail(&sk->sk_receive_queue, skb);
 293        sk->sk_state_change(sk);
 294}
 295
 296/*
 297 * Function irda_connect_response (handle)
 298 *
 299 *    Accept incoming connection
 300 *
 301 */
 302static void irda_connect_response(struct irda_sock *self)
 303{
 304        struct sk_buff *skb;
 305
 306        IRDA_DEBUG(2, "%s()\n", __func__);
 307
 308        skb = alloc_skb(TTP_MAX_HEADER + TTP_SAR_HEADER, GFP_KERNEL);
 309        if (skb == NULL) {
 310                IRDA_DEBUG(0, "%s() Unable to allocate sk_buff!\n",
 311                           __func__);
 312                return;
 313        }
 314
 315        /* Reserve space for MUX_CONTROL and LAP header */
 316        skb_reserve(skb, IRDA_MAX_HEADER);
 317
 318        irttp_connect_response(self->tsap, self->max_sdu_size_rx, skb);
 319}
 320
 321/*
 322 * Function irda_flow_indication (instance, sap, flow)
 323 *
 324 *    Used by TinyTP to tell us if it can accept more data or not
 325 *
 326 */
 327static void irda_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
 328{
 329        struct irda_sock *self;
 330        struct sock *sk;
 331
 332        IRDA_DEBUG(2, "%s()\n", __func__);
 333
 334        self = instance;
 335        sk = instance;
 336        BUG_ON(sk == NULL);
 337
 338        switch (flow) {
 339        case FLOW_STOP:
 340                IRDA_DEBUG(1, "%s(), IrTTP wants us to slow down\n",
 341                           __func__);
 342                self->tx_flow = flow;
 343                break;
 344        case FLOW_START:
 345                self->tx_flow = flow;
 346                IRDA_DEBUG(1, "%s(), IrTTP wants us to start again\n",
 347                           __func__);
 348                wake_up_interruptible(sk_sleep(sk));
 349                break;
 350        default:
 351                IRDA_DEBUG(0, "%s(), Unknown flow command!\n", __func__);
 352                /* Unknown flow command, better stop */
 353                self->tx_flow = flow;
 354                break;
 355        }
 356}
 357
 358/*
 359 * Function irda_getvalue_confirm (obj_id, value, priv)
 360 *
 361 *    Got answer from remote LM-IAS, just pass object to requester...
 362 *
 363 * Note : duplicate from above, but we need our own version that
 364 * doesn't touch the dtsap_sel and save the full value structure...
 365 */
 366static void irda_getvalue_confirm(int result, __u16 obj_id,
 367                                  struct ias_value *value, void *priv)
 368{
 369        struct irda_sock *self;
 370
 371        self = priv;
 372        if (!self) {
 373                IRDA_WARNING("%s: lost myself!\n", __func__);
 374                return;
 375        }
 376
 377        IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
 378
 379        /* We probably don't need to make any more queries */
 380        iriap_close(self->iriap);
 381        self->iriap = NULL;
 382
 383        /* Check if request succeeded */
 384        if (result != IAS_SUCCESS) {
 385                IRDA_DEBUG(1, "%s(), IAS query failed! (%d)\n", __func__,
 386                           result);
 387
 388                self->errno = result;   /* We really need it later */
 389
 390                /* Wake up any processes waiting for result */
 391                wake_up_interruptible(&self->query_wait);
 392
 393                return;
 394        }
 395
 396        /* Pass the object to the caller (so the caller must delete it) */
 397        self->ias_result = value;
 398        self->errno = 0;
 399
 400        /* Wake up any processes waiting for result */
 401        wake_up_interruptible(&self->query_wait);
 402}
 403
 404/*
 405 * Function irda_selective_discovery_indication (discovery)
 406 *
 407 *    Got a selective discovery indication from IrLMP.
 408 *
 409 * IrLMP is telling us that this node is new and matching our hint bit
 410 * filter. Wake up any process waiting for answer...
 411 */
 412static void irda_selective_discovery_indication(discinfo_t *discovery,
 413                                                DISCOVERY_MODE mode,
 414                                                void *priv)
 415{
 416        struct irda_sock *self;
 417
 418        IRDA_DEBUG(2, "%s()\n", __func__);
 419
 420        self = priv;
 421        if (!self) {
 422                IRDA_WARNING("%s: lost myself!\n", __func__);
 423                return;
 424        }
 425
 426        /* Pass parameter to the caller */
 427        self->cachedaddr = discovery->daddr;
 428
 429        /* Wake up process if its waiting for device to be discovered */
 430        wake_up_interruptible(&self->query_wait);
 431}
 432
 433/*
 434 * Function irda_discovery_timeout (priv)
 435 *
 436 *    Timeout in the selective discovery process
 437 *
 438 * We were waiting for a node to be discovered, but nothing has come up
 439 * so far. Wake up the user and tell him that we failed...
 440 */
 441static void irda_discovery_timeout(u_long priv)
 442{
 443        struct irda_sock *self;
 444
 445        IRDA_DEBUG(2, "%s()\n", __func__);
 446
 447        self = (struct irda_sock *) priv;
 448        BUG_ON(self == NULL);
 449
 450        /* Nothing for the caller */
 451        self->cachelog = NULL;
 452        self->cachedaddr = 0;
 453        self->errno = -ETIME;
 454
 455        /* Wake up process if its still waiting... */
 456        wake_up_interruptible(&self->query_wait);
 457}
 458
 459/*
 460 * Function irda_open_tsap (self)
 461 *
 462 *    Open local Transport Service Access Point (TSAP)
 463 *
 464 */
 465static int irda_open_tsap(struct irda_sock *self, __u8 tsap_sel, char *name)
 466{
 467        notify_t notify;
 468
 469        if (self->tsap) {
 470                IRDA_DEBUG(0, "%s: busy!\n", __func__);
 471                return -EBUSY;
 472        }
 473
 474        /* Initialize callbacks to be used by the IrDA stack */
 475        irda_notify_init(&notify);
 476        notify.connect_confirm       = irda_connect_confirm;
 477        notify.connect_indication    = irda_connect_indication;
 478        notify.disconnect_indication = irda_disconnect_indication;
 479        notify.data_indication       = irda_data_indication;
 480        notify.udata_indication      = irda_data_indication;
 481        notify.flow_indication       = irda_flow_indication;
 482        notify.instance = self;
 483        strncpy(notify.name, name, NOTIFY_MAX_NAME);
 484
 485        self->tsap = irttp_open_tsap(tsap_sel, DEFAULT_INITIAL_CREDIT,
 486                                     &notify);
 487        if (self->tsap == NULL) {
 488                IRDA_DEBUG(0, "%s(), Unable to allocate TSAP!\n",
 489                           __func__);
 490                return -ENOMEM;
 491        }
 492        /* Remember which TSAP selector we actually got */
 493        self->stsap_sel = self->tsap->stsap_sel;
 494
 495        return 0;
 496}
 497
 498/*
 499 * Function irda_open_lsap (self)
 500 *
 501 *    Open local Link Service Access Point (LSAP). Used for opening Ultra
 502 *    sockets
 503 */
 504#ifdef CONFIG_IRDA_ULTRA
 505static int irda_open_lsap(struct irda_sock *self, int pid)
 506{
 507        notify_t notify;
 508
 509        if (self->lsap) {
 510                IRDA_WARNING("%s(), busy!\n", __func__);
 511                return -EBUSY;
 512        }
 513
 514        /* Initialize callbacks to be used by the IrDA stack */
 515        irda_notify_init(&notify);
 516        notify.udata_indication = irda_data_indication;
 517        notify.instance = self;
 518        strncpy(notify.name, "Ultra", NOTIFY_MAX_NAME);
 519
 520        self->lsap = irlmp_open_lsap(LSAP_CONNLESS, &notify, pid);
 521        if (self->lsap == NULL) {
 522                IRDA_DEBUG( 0, "%s(), Unable to allocate LSAP!\n", __func__);
 523                return -ENOMEM;
 524        }
 525
 526        return 0;
 527}
 528#endif /* CONFIG_IRDA_ULTRA */
 529
 530/*
 531 * Function irda_find_lsap_sel (self, name)
 532 *
 533 *    Try to lookup LSAP selector in remote LM-IAS
 534 *
 535 * Basically, we start a IAP query, and then go to sleep. When the query
 536 * return, irda_getvalue_confirm will wake us up, and we can examine the
 537 * result of the query...
 538 * Note that in some case, the query fail even before we go to sleep,
 539 * creating some races...
 540 */
 541static int irda_find_lsap_sel(struct irda_sock *self, char *name)
 542{
 543        IRDA_DEBUG(2, "%s(%p, %s)\n", __func__, self, name);
 544
 545        if (self->iriap) {
 546                IRDA_WARNING("%s(): busy with a previous query\n",
 547                             __func__);
 548                return -EBUSY;
 549        }
 550
 551        self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
 552                                 irda_getvalue_confirm);
 553        if(self->iriap == NULL)
 554                return -ENOMEM;
 555
 556        /* Treat unexpected wakeup as disconnect */
 557        self->errno = -EHOSTUNREACH;
 558
 559        /* Query remote LM-IAS */
 560        iriap_getvaluebyclass_request(self->iriap, self->saddr, self->daddr,
 561                                      name, "IrDA:TinyTP:LsapSel");
 562
 563        /* Wait for answer, if not yet finished (or failed) */
 564        if (wait_event_interruptible(self->query_wait, (self->iriap==NULL)))
 565                /* Treat signals as disconnect */
 566                return -EHOSTUNREACH;
 567
 568        /* Check what happened */
 569        if (self->errno)
 570        {
 571                /* Requested object/attribute doesn't exist */
 572                if((self->errno == IAS_CLASS_UNKNOWN) ||
 573                   (self->errno == IAS_ATTRIB_UNKNOWN))
 574                        return -EADDRNOTAVAIL;
 575                else
 576                        return -EHOSTUNREACH;
 577        }
 578
 579        /* Get the remote TSAP selector */
 580        switch (self->ias_result->type) {
 581        case IAS_INTEGER:
 582                IRDA_DEBUG(4, "%s() int=%d\n",
 583                           __func__, self->ias_result->t.integer);
 584
 585                if (self->ias_result->t.integer != -1)
 586                        self->dtsap_sel = self->ias_result->t.integer;
 587                else
 588                        self->dtsap_sel = 0;
 589                break;
 590        default:
 591                self->dtsap_sel = 0;
 592                IRDA_DEBUG(0, "%s(), bad type!\n", __func__);
 593                break;
 594        }
 595        if (self->ias_result)
 596                irias_delete_value(self->ias_result);
 597
 598        if (self->dtsap_sel)
 599                return 0;
 600
 601        return -EADDRNOTAVAIL;
 602}
 603
 604/*
 605 * Function irda_discover_daddr_and_lsap_sel (self, name)
 606 *
 607 *    This try to find a device with the requested service.
 608 *
 609 * It basically look into the discovery log. For each address in the list,
 610 * it queries the LM-IAS of the device to find if this device offer
 611 * the requested service.
 612 * If there is more than one node supporting the service, we complain
 613 * to the user (it should move devices around).
 614 * The, we set both the destination address and the lsap selector to point
 615 * on the service on the unique device we have found.
 616 *
 617 * Note : this function fails if there is more than one device in range,
 618 * because IrLMP doesn't disconnect the LAP when the last LSAP is closed.
 619 * Moreover, we would need to wait the LAP disconnection...
 620 */
 621static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
 622{
 623        discinfo_t *discoveries;        /* Copy of the discovery log */
 624        int     number;                 /* Number of nodes in the log */
 625        int     i;
 626        int     err = -ENETUNREACH;
 627        __u32   daddr = DEV_ADDR_ANY;   /* Address we found the service on */
 628        __u8    dtsap_sel = 0x0;        /* TSAP associated with it */
 629
 630        IRDA_DEBUG(2, "%s(), name=%s\n", __func__, name);
 631
 632        /* Ask lmp for the current discovery log
 633         * Note : we have to use irlmp_get_discoveries(), as opposed
 634         * to play with the cachelog directly, because while we are
 635         * making our ias query, le log might change... */
 636        discoveries = irlmp_get_discoveries(&number, self->mask.word,
 637                                            self->nslots);
 638        /* Check if the we got some results */
 639        if (discoveries == NULL)
 640                return -ENETUNREACH;    /* No nodes discovered */
 641
 642        /*
 643         * Now, check all discovered devices (if any), and connect
 644         * client only about the services that the client is
 645         * interested in...
 646         */
 647        for(i = 0; i < number; i++) {
 648                /* Try the address in the log */
 649                self->daddr = discoveries[i].daddr;
 650                self->saddr = 0x0;
 651                IRDA_DEBUG(1, "%s(), trying daddr = %08x\n",
 652                           __func__, self->daddr);
 653
 654                /* Query remote LM-IAS for this service */
 655                err = irda_find_lsap_sel(self, name);
 656                switch (err) {
 657                case 0:
 658                        /* We found the requested service */
 659                        if(daddr != DEV_ADDR_ANY) {
 660                                IRDA_DEBUG(1, "%s(), discovered service ''%s'' in two different devices !!!\n",
 661                                           __func__, name);
 662                                self->daddr = DEV_ADDR_ANY;
 663                                kfree(discoveries);
 664                                return -ENOTUNIQ;
 665                        }
 666                        /* First time we found that one, save it ! */
 667                        daddr = self->daddr;
 668                        dtsap_sel = self->dtsap_sel;
 669                        break;
 670                case -EADDRNOTAVAIL:
 671                        /* Requested service simply doesn't exist on this node */
 672                        break;
 673                default:
 674                        /* Something bad did happen :-( */
 675                        IRDA_DEBUG(0, "%s(), unexpected IAS query failure\n", __func__);
 676                        self->daddr = DEV_ADDR_ANY;
 677                        kfree(discoveries);
 678                        return -EHOSTUNREACH;
 679                        break;
 680                }
 681        }
 682        /* Cleanup our copy of the discovery log */
 683        kfree(discoveries);
 684
 685        /* Check out what we found */
 686        if(daddr == DEV_ADDR_ANY) {
 687                IRDA_DEBUG(1, "%s(), cannot discover service ''%s'' in any device !!!\n",
 688                           __func__, name);
 689                self->daddr = DEV_ADDR_ANY;
 690                return -EADDRNOTAVAIL;
 691        }
 692
 693        /* Revert back to discovered device & service */
 694        self->daddr = daddr;
 695        self->saddr = 0x0;
 696        self->dtsap_sel = dtsap_sel;
 697
 698        IRDA_DEBUG(1, "%s(), discovered requested service ''%s'' at address %08x\n",
 699                   __func__, name, self->daddr);
 700
 701        return 0;
 702}
 703
 704/*
 705 * Function irda_getname (sock, uaddr, uaddr_len, peer)
 706 *
 707 *    Return the our own, or peers socket address (sockaddr_irda)
 708 *
 709 */
 710static int irda_getname(struct socket *sock, struct sockaddr *uaddr,
 711                        int *uaddr_len, int peer)
 712{
 713        struct sockaddr_irda saddr;
 714        struct sock *sk = sock->sk;
 715        struct irda_sock *self = irda_sk(sk);
 716
 717        memset(&saddr, 0, sizeof(saddr));
 718        if (peer) {
 719                if (sk->sk_state != TCP_ESTABLISHED)
 720                        return -ENOTCONN;
 721
 722                saddr.sir_family = AF_IRDA;
 723                saddr.sir_lsap_sel = self->dtsap_sel;
 724                saddr.sir_addr = self->daddr;
 725        } else {
 726                saddr.sir_family = AF_IRDA;
 727                saddr.sir_lsap_sel = self->stsap_sel;
 728                saddr.sir_addr = self->saddr;
 729        }
 730
 731        IRDA_DEBUG(1, "%s(), tsap_sel = %#x\n", __func__, saddr.sir_lsap_sel);
 732        IRDA_DEBUG(1, "%s(), addr = %08x\n", __func__, saddr.sir_addr);
 733
 734        /* uaddr_len come to us uninitialised */
 735        *uaddr_len = sizeof (struct sockaddr_irda);
 736        memcpy(uaddr, &saddr, *uaddr_len);
 737
 738        return 0;
 739}
 740
 741/*
 742 * Function irda_listen (sock, backlog)
 743 *
 744 *    Just move to the listen state
 745 *
 746 */
 747static int irda_listen(struct socket *sock, int backlog)
 748{
 749        struct sock *sk = sock->sk;
 750        int err = -EOPNOTSUPP;
 751
 752        IRDA_DEBUG(2, "%s()\n", __func__);
 753
 754        lock_sock(sk);
 755
 756        if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
 757            (sk->sk_type != SOCK_DGRAM))
 758                goto out;
 759
 760        if (sk->sk_state != TCP_LISTEN) {
 761                sk->sk_max_ack_backlog = backlog;
 762                sk->sk_state           = TCP_LISTEN;
 763
 764                err = 0;
 765        }
 766out:
 767        release_sock(sk);
 768
 769        return err;
 770}
 771
 772/*
 773 * Function irda_bind (sock, uaddr, addr_len)
 774 *
 775 *    Used by servers to register their well known TSAP
 776 *
 777 */
 778static int irda_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
 779{
 780        struct sock *sk = sock->sk;
 781        struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
 782        struct irda_sock *self = irda_sk(sk);
 783        int err;
 784
 785        IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
 786
 787        if (addr_len != sizeof(struct sockaddr_irda))
 788                return -EINVAL;
 789
 790        lock_sock(sk);
 791#ifdef CONFIG_IRDA_ULTRA
 792        /* Special care for Ultra sockets */
 793        if ((sk->sk_type == SOCK_DGRAM) &&
 794            (sk->sk_protocol == IRDAPROTO_ULTRA)) {
 795                self->pid = addr->sir_lsap_sel;
 796                err = -EOPNOTSUPP;
 797                if (self->pid & 0x80) {
 798                        IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__);
 799                        goto out;
 800                }
 801                err = irda_open_lsap(self, self->pid);
 802                if (err < 0)
 803                        goto out;
 804
 805                /* Pretend we are connected */
 806                sock->state = SS_CONNECTED;
 807                sk->sk_state   = TCP_ESTABLISHED;
 808                err = 0;
 809
 810                goto out;
 811        }
 812#endif /* CONFIG_IRDA_ULTRA */
 813
 814        self->ias_obj = irias_new_object(addr->sir_name, jiffies);
 815        err = -ENOMEM;
 816        if (self->ias_obj == NULL)
 817                goto out;
 818
 819        err = irda_open_tsap(self, addr->sir_lsap_sel, addr->sir_name);
 820        if (err < 0) {
 821                irias_delete_object(self->ias_obj);
 822                self->ias_obj = NULL;
 823                goto out;
 824        }
 825
 826        /*  Register with LM-IAS */
 827        irias_add_integer_attrib(self->ias_obj, "IrDA:TinyTP:LsapSel",
 828                                 self->stsap_sel, IAS_KERNEL_ATTR);
 829        irias_insert_object(self->ias_obj);
 830
 831        err = 0;
 832out:
 833        release_sock(sk);
 834        return err;
 835}
 836
 837/*
 838 * Function irda_accept (sock, newsock, flags)
 839 *
 840 *    Wait for incoming connection
 841 *
 842 */
 843static int irda_accept(struct socket *sock, struct socket *newsock, int flags)
 844{
 845        struct sock *sk = sock->sk;
 846        struct irda_sock *new, *self = irda_sk(sk);
 847        struct sock *newsk;
 848        struct sk_buff *skb;
 849        int err;
 850
 851        IRDA_DEBUG(2, "%s()\n", __func__);
 852
 853        err = irda_create(sock_net(sk), newsock, sk->sk_protocol, 0);
 854        if (err)
 855                return err;
 856
 857        err = -EINVAL;
 858
 859        lock_sock(sk);
 860        if (sock->state != SS_UNCONNECTED)
 861                goto out;
 862
 863        if ((sk = sock->sk) == NULL)
 864                goto out;
 865
 866        err = -EOPNOTSUPP;
 867        if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
 868            (sk->sk_type != SOCK_DGRAM))
 869                goto out;
 870
 871        err = -EINVAL;
 872        if (sk->sk_state != TCP_LISTEN)
 873                goto out;
 874
 875        /*
 876         *      The read queue this time is holding sockets ready to use
 877         *      hooked into the SABM we saved
 878         */
 879
 880        /*
 881         * We can perform the accept only if there is incoming data
 882         * on the listening socket.
 883         * So, we will block the caller until we receive any data.
 884         * If the caller was waiting on select() or poll() before
 885         * calling us, the data is waiting for us ;-)
 886         * Jean II
 887         */
 888        while (1) {
 889                skb = skb_dequeue(&sk->sk_receive_queue);
 890                if (skb)
 891                        break;
 892
 893                /* Non blocking operation */
 894                err = -EWOULDBLOCK;
 895                if (flags & O_NONBLOCK)
 896                        goto out;
 897
 898                err = wait_event_interruptible(*(sk_sleep(sk)),
 899                                        skb_peek(&sk->sk_receive_queue));
 900                if (err)
 901                        goto out;
 902        }
 903
 904        newsk = newsock->sk;
 905        err = -EIO;
 906        if (newsk == NULL)
 907                goto out;
 908
 909        newsk->sk_state = TCP_ESTABLISHED;
 910
 911        new = irda_sk(newsk);
 912
 913        /* Now attach up the new socket */
 914        new->tsap = irttp_dup(self->tsap, new);
 915        err = -EPERM; /* value does not seem to make sense. -arnd */
 916        if (!new->tsap) {
 917                IRDA_DEBUG(0, "%s(), dup failed!\n", __func__);
 918                kfree_skb(skb);
 919                goto out;
 920        }
 921
 922        new->stsap_sel = new->tsap->stsap_sel;
 923        new->dtsap_sel = new->tsap->dtsap_sel;
 924        new->saddr = irttp_get_saddr(new->tsap);
 925        new->daddr = irttp_get_daddr(new->tsap);
 926
 927        new->max_sdu_size_tx = self->max_sdu_size_tx;
 928        new->max_sdu_size_rx = self->max_sdu_size_rx;
 929        new->max_data_size   = self->max_data_size;
 930        new->max_header_size = self->max_header_size;
 931
 932        memcpy(&new->qos_tx, &self->qos_tx, sizeof(struct qos_info));
 933
 934        /* Clean up the original one to keep it in listen state */
 935        irttp_listen(self->tsap);
 936
 937        kfree_skb(skb);
 938        sk->sk_ack_backlog--;
 939
 940        newsock->state = SS_CONNECTED;
 941
 942        irda_connect_response(new);
 943        err = 0;
 944out:
 945        release_sock(sk);
 946        return err;
 947}
 948
 949/*
 950 * Function irda_connect (sock, uaddr, addr_len, flags)
 951 *
 952 *    Connect to a IrDA device
 953 *
 954 * The main difference with a "standard" connect is that with IrDA we need
 955 * to resolve the service name into a TSAP selector (in TCP, port number
 956 * doesn't have to be resolved).
 957 * Because of this service name resolution, we can offer "auto-connect",
 958 * where we connect to a service without specifying a destination address.
 959 *
 960 * Note : by consulting "errno", the user space caller may learn the cause
 961 * of the failure. Most of them are visible in the function, others may come
 962 * from subroutines called and are listed here :
 963 *      o EBUSY : already processing a connect
 964 *      o EHOSTUNREACH : bad addr->sir_addr argument
 965 *      o EADDRNOTAVAIL : bad addr->sir_name argument
 966 *      o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
 967 *      o ENETUNREACH : no node found on the network (auto-connect)
 968 */
 969static int irda_connect(struct socket *sock, struct sockaddr *uaddr,
 970                        int addr_len, int flags)
 971{
 972        struct sock *sk = sock->sk;
 973        struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
 974        struct irda_sock *self = irda_sk(sk);
 975        int err;
 976
 977        IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
 978
 979        lock_sock(sk);
 980        /* Don't allow connect for Ultra sockets */
 981        err = -ESOCKTNOSUPPORT;
 982        if ((sk->sk_type == SOCK_DGRAM) && (sk->sk_protocol == IRDAPROTO_ULTRA))
 983                goto out;
 984
 985        if (sk->sk_state == TCP_ESTABLISHED && sock->state == SS_CONNECTING) {
 986                sock->state = SS_CONNECTED;
 987                err = 0;
 988                goto out;   /* Connect completed during a ERESTARTSYS event */
 989        }
 990
 991        if (sk->sk_state == TCP_CLOSE && sock->state == SS_CONNECTING) {
 992                sock->state = SS_UNCONNECTED;
 993                err = -ECONNREFUSED;
 994                goto out;
 995        }
 996
 997        err = -EISCONN;      /* No reconnect on a seqpacket socket */
 998        if (sk->sk_state == TCP_ESTABLISHED)
 999                goto out;
1000
1001        sk->sk_state   = TCP_CLOSE;
1002        sock->state = SS_UNCONNECTED;
1003
1004        err = -EINVAL;
1005        if (addr_len != sizeof(struct sockaddr_irda))
1006                goto out;
1007
1008        /* Check if user supplied any destination device address */
1009        if ((!addr->sir_addr) || (addr->sir_addr == DEV_ADDR_ANY)) {
1010                /* Try to find one suitable */
1011                err = irda_discover_daddr_and_lsap_sel(self, addr->sir_name);
1012                if (err) {
1013                        IRDA_DEBUG(0, "%s(), auto-connect failed!\n", __func__);
1014                        goto out;
1015                }
1016        } else {
1017                /* Use the one provided by the user */
1018                self->daddr = addr->sir_addr;
1019                IRDA_DEBUG(1, "%s(), daddr = %08x\n", __func__, self->daddr);
1020
1021                /* If we don't have a valid service name, we assume the
1022                 * user want to connect on a specific LSAP. Prevent
1023                 * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
1024                if((addr->sir_name[0] != '\0') ||
1025                   (addr->sir_lsap_sel >= 0x70)) {
1026                        /* Query remote LM-IAS using service name */
1027                        err = irda_find_lsap_sel(self, addr->sir_name);
1028                        if (err) {
1029                                IRDA_DEBUG(0, "%s(), connect failed!\n", __func__);
1030                                goto out;
1031                        }
1032                } else {
1033                        /* Directly connect to the remote LSAP
1034                         * specified by the sir_lsap field.
1035                         * Please use with caution, in IrDA LSAPs are
1036                         * dynamic and there is no "well-known" LSAP. */
1037                        self->dtsap_sel = addr->sir_lsap_sel;
1038                }
1039        }
1040
1041        /* Check if we have opened a local TSAP */
1042        if (!self->tsap)
1043                irda_open_tsap(self, LSAP_ANY, addr->sir_name);
1044
1045        /* Move to connecting socket, start sending Connect Requests */
1046        sock->state = SS_CONNECTING;
1047        sk->sk_state   = TCP_SYN_SENT;
1048
1049        /* Connect to remote device */
1050        err = irttp_connect_request(self->tsap, self->dtsap_sel,
1051                                    self->saddr, self->daddr, NULL,
1052                                    self->max_sdu_size_rx, NULL);
1053        if (err) {
1054                IRDA_DEBUG(0, "%s(), connect failed!\n", __func__);
1055                goto out;
1056        }
1057
1058        /* Now the loop */
1059        err = -EINPROGRESS;
1060        if (sk->sk_state != TCP_ESTABLISHED && (flags & O_NONBLOCK))
1061                goto out;
1062
1063        err = -ERESTARTSYS;
1064        if (wait_event_interruptible(*(sk_sleep(sk)),
1065                                     (sk->sk_state != TCP_SYN_SENT)))
1066                goto out;
1067
1068        if (sk->sk_state != TCP_ESTABLISHED) {
1069                sock->state = SS_UNCONNECTED;
1070                if (sk->sk_prot->disconnect(sk, flags))
1071                        sock->state = SS_DISCONNECTING;
1072                err = sock_error(sk);
1073                if (!err)
1074                        err = -ECONNRESET;
1075                goto out;
1076        }
1077
1078        sock->state = SS_CONNECTED;
1079
1080        /* At this point, IrLMP has assigned our source address */
1081        self->saddr = irttp_get_saddr(self->tsap);
1082        err = 0;
1083out:
1084        release_sock(sk);
1085        return err;
1086}
1087
1088static struct proto irda_proto = {
1089        .name     = "IRDA",
1090        .owner    = THIS_MODULE,
1091        .obj_size = sizeof(struct irda_sock),
1092};
1093
1094/*
1095 * Function irda_create (sock, protocol)
1096 *
1097 *    Create IrDA socket
1098 *
1099 */
1100static int irda_create(struct net *net, struct socket *sock, int protocol,
1101                       int kern)
1102{
1103        struct sock *sk;
1104        struct irda_sock *self;
1105
1106        IRDA_DEBUG(2, "%s()\n", __func__);
1107
1108        if (net != &init_net)
1109                return -EAFNOSUPPORT;
1110
1111        /* Check for valid socket type */
1112        switch (sock->type) {
1113        case SOCK_STREAM:     /* For TTP connections with SAR disabled */
1114        case SOCK_SEQPACKET:  /* For TTP connections with SAR enabled */
1115        case SOCK_DGRAM:      /* For TTP Unitdata or LMP Ultra transfers */
1116                break;
1117        default:
1118                return -ESOCKTNOSUPPORT;
1119        }
1120
1121        /* Allocate networking socket */
1122        sk = sk_alloc(net, PF_IRDA, GFP_KERNEL, &irda_proto);
1123        if (sk == NULL)
1124                return -ENOMEM;
1125
1126        self = irda_sk(sk);
1127        IRDA_DEBUG(2, "%s() : self is %p\n", __func__, self);
1128
1129        init_waitqueue_head(&self->query_wait);
1130
1131        switch (sock->type) {
1132        case SOCK_STREAM:
1133                sock->ops = &irda_stream_ops;
1134                self->max_sdu_size_rx = TTP_SAR_DISABLE;
1135                break;
1136        case SOCK_SEQPACKET:
1137                sock->ops = &irda_seqpacket_ops;
1138                self->max_sdu_size_rx = TTP_SAR_UNBOUND;
1139                break;
1140        case SOCK_DGRAM:
1141                switch (protocol) {
1142#ifdef CONFIG_IRDA_ULTRA
1143                case IRDAPROTO_ULTRA:
1144                        sock->ops = &irda_ultra_ops;
1145                        /* Initialise now, because we may send on unbound
1146                         * sockets. Jean II */
1147                        self->max_data_size = ULTRA_MAX_DATA - LMP_PID_HEADER;
1148                        self->max_header_size = IRDA_MAX_HEADER + LMP_PID_HEADER;
1149                        break;
1150#endif /* CONFIG_IRDA_ULTRA */
1151                case IRDAPROTO_UNITDATA:
1152                        sock->ops = &irda_dgram_ops;
1153                        /* We let Unitdata conn. be like seqpack conn. */
1154                        self->max_sdu_size_rx = TTP_SAR_UNBOUND;
1155                        break;
1156                default:
1157                        sk_free(sk);
1158                        return -ESOCKTNOSUPPORT;
1159                }
1160                break;
1161        default:
1162                sk_free(sk);
1163                return -ESOCKTNOSUPPORT;
1164        }
1165
1166        /* Initialise networking socket struct */
1167        sock_init_data(sock, sk);       /* Note : set sk->sk_refcnt to 1 */
1168        sk->sk_family = PF_IRDA;
1169        sk->sk_protocol = protocol;
1170
1171        /* Register as a client with IrLMP */
1172        self->ckey = irlmp_register_client(0, NULL, NULL, NULL);
1173        self->mask.word = 0xffff;
1174        self->rx_flow = self->tx_flow = FLOW_START;
1175        self->nslots = DISCOVERY_DEFAULT_SLOTS;
1176        self->daddr = DEV_ADDR_ANY;     /* Until we get connected */
1177        self->saddr = 0x0;              /* so IrLMP assign us any link */
1178        return 0;
1179}
1180
1181/*
1182 * Function irda_destroy_socket (self)
1183 *
1184 *    Destroy socket
1185 *
1186 */
1187static void irda_destroy_socket(struct irda_sock *self)
1188{
1189        IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
1190
1191        /* Unregister with IrLMP */
1192        irlmp_unregister_client(self->ckey);
1193        irlmp_unregister_service(self->skey);
1194
1195        /* Unregister with LM-IAS */
1196        if (self->ias_obj) {
1197                irias_delete_object(self->ias_obj);
1198                self->ias_obj = NULL;
1199        }
1200
1201        if (self->iriap) {
1202                iriap_close(self->iriap);
1203                self->iriap = NULL;
1204        }
1205
1206        if (self->tsap) {
1207                irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
1208                irttp_close_tsap(self->tsap);
1209                self->tsap = NULL;
1210        }
1211#ifdef CONFIG_IRDA_ULTRA
1212        if (self->lsap) {
1213                irlmp_close_lsap(self->lsap);
1214                self->lsap = NULL;
1215        }
1216#endif /* CONFIG_IRDA_ULTRA */
1217}
1218
1219/*
1220 * Function irda_release (sock)
1221 */
1222static int irda_release(struct socket *sock)
1223{
1224        struct sock *sk = sock->sk;
1225
1226        IRDA_DEBUG(2, "%s()\n", __func__);
1227
1228        if (sk == NULL)
1229                return 0;
1230
1231        lock_sock(sk);
1232        sk->sk_state       = TCP_CLOSE;
1233        sk->sk_shutdown   |= SEND_SHUTDOWN;
1234        sk->sk_state_change(sk);
1235
1236        /* Destroy IrDA socket */
1237        irda_destroy_socket(irda_sk(sk));
1238
1239        sock_orphan(sk);
1240        sock->sk   = NULL;
1241        release_sock(sk);
1242
1243        /* Purge queues (see sock_init_data()) */
1244        skb_queue_purge(&sk->sk_receive_queue);
1245
1246        /* Destroy networking socket if we are the last reference on it,
1247         * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
1248        sock_put(sk);
1249
1250        /* Notes on socket locking and deallocation... - Jean II
1251         * In theory we should put pairs of sock_hold() / sock_put() to
1252         * prevent the socket to be destroyed whenever there is an
1253         * outstanding request or outstanding incoming packet or event.
1254         *
1255         * 1) This may include IAS request, both in connect and getsockopt.
1256         * Unfortunately, the situation is a bit more messy than it looks,
1257         * because we close iriap and kfree(self) above.
1258         *
1259         * 2) This may include selective discovery in getsockopt.
1260         * Same stuff as above, irlmp registration and self are gone.
1261         *
1262         * Probably 1 and 2 may not matter, because it's all triggered
1263         * by a process and the socket layer already prevent the
1264         * socket to go away while a process is holding it, through
1265         * sockfd_put() and fput()...
1266         *
1267         * 3) This may include deferred TSAP closure. In particular,
1268         * we may receive a late irda_disconnect_indication()
1269         * Fortunately, (tsap_cb *)->close_pend should protect us
1270         * from that.
1271         *
1272         * I did some testing on SMP, and it looks solid. And the socket
1273         * memory leak is now gone... - Jean II
1274         */
1275
1276        return 0;
1277}
1278
1279/*
1280 * Function irda_sendmsg (iocb, sock, msg, len)
1281 *
1282 *    Send message down to TinyTP. This function is used for both STREAM and
1283 *    SEQPACK services. This is possible since it forces the client to
1284 *    fragment the message if necessary
1285 */
1286static int irda_sendmsg(struct kiocb *iocb, struct socket *sock,
1287                        struct msghdr *msg, size_t len)
1288{
1289        struct sock *sk = sock->sk;
1290        struct irda_sock *self;
1291        struct sk_buff *skb;
1292        int err = -EPIPE;
1293
1294        IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
1295
1296        /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
1297        if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_EOR | MSG_CMSG_COMPAT |
1298                               MSG_NOSIGNAL)) {
1299                return -EINVAL;
1300        }
1301
1302        lock_sock(sk);
1303
1304        if (sk->sk_shutdown & SEND_SHUTDOWN)
1305                goto out_err;
1306
1307        if (sk->sk_state != TCP_ESTABLISHED) {
1308                err = -ENOTCONN;
1309                goto out;
1310        }
1311
1312        self = irda_sk(sk);
1313
1314        /* Check if IrTTP is wants us to slow down */
1315
1316        if (wait_event_interruptible(*(sk_sleep(sk)),
1317            (self->tx_flow != FLOW_STOP  ||  sk->sk_state != TCP_ESTABLISHED))) {
1318                err = -ERESTARTSYS;
1319                goto out;
1320        }
1321
1322        /* Check if we are still connected */
1323        if (sk->sk_state != TCP_ESTABLISHED) {
1324                err = -ENOTCONN;
1325                goto out;
1326        }
1327
1328        /* Check that we don't send out too big frames */
1329        if (len > self->max_data_size) {
1330                IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n",
1331                           __func__, len, self->max_data_size);
1332                len = self->max_data_size;
1333        }
1334
1335        skb = sock_alloc_send_skb(sk, len + self->max_header_size + 16,
1336                                  msg->msg_flags & MSG_DONTWAIT, &err);
1337        if (!skb)
1338                goto out_err;
1339
1340        skb_reserve(skb, self->max_header_size + 16);
1341        skb_reset_transport_header(skb);
1342        skb_put(skb, len);
1343        err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
1344        if (err) {
1345                kfree_skb(skb);
1346                goto out_err;
1347        }
1348
1349        /*
1350         * Just send the message to TinyTP, and let it deal with possible
1351         * errors. No need to duplicate all that here
1352         */
1353        err = irttp_data_request(self->tsap, skb);
1354        if (err) {
1355                IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
1356                goto out_err;
1357        }
1358
1359        release_sock(sk);
1360        /* Tell client how much data we actually sent */
1361        return len;
1362
1363out_err:
1364        err = sk_stream_error(sk, msg->msg_flags, err);
1365out:
1366        release_sock(sk);
1367        return err;
1368
1369}
1370
1371/*
1372 * Function irda_recvmsg_dgram (iocb, sock, msg, size, flags)
1373 *
1374 *    Try to receive message and copy it to user. The frame is discarded
1375 *    after being read, regardless of how much the user actually read
1376 */
1377static int irda_recvmsg_dgram(struct kiocb *iocb, struct socket *sock,
1378                              struct msghdr *msg, size_t size, int flags)
1379{
1380        struct sock *sk = sock->sk;
1381        struct irda_sock *self = irda_sk(sk);
1382        struct sk_buff *skb;
1383        size_t copied;
1384        int err;
1385
1386        IRDA_DEBUG(4, "%s()\n", __func__);
1387
1388        skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
1389                                flags & MSG_DONTWAIT, &err);
1390        if (!skb)
1391                return err;
1392
1393        skb_reset_transport_header(skb);
1394        copied = skb->len;
1395
1396        if (copied > size) {
1397                IRDA_DEBUG(2, "%s(), Received truncated frame (%zd < %zd)!\n",
1398                           __func__, copied, size);
1399                copied = size;
1400                msg->msg_flags |= MSG_TRUNC;
1401        }
1402        skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1403
1404        skb_free_datagram(sk, skb);
1405
1406        /*
1407         *  Check if we have previously stopped IrTTP and we know
1408         *  have more free space in our rx_queue. If so tell IrTTP
1409         *  to start delivering frames again before our rx_queue gets
1410         *  empty
1411         */
1412        if (self->rx_flow == FLOW_STOP) {
1413                if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
1414                        IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__);
1415                        self->rx_flow = FLOW_START;
1416                        irttp_flow_request(self->tsap, FLOW_START);
1417                }
1418        }
1419
1420        return copied;
1421}
1422
1423/*
1424 * Function irda_recvmsg_stream (iocb, sock, msg, size, flags)
1425 */
1426static int irda_recvmsg_stream(struct kiocb *iocb, struct socket *sock,
1427                               struct msghdr *msg, size_t size, int flags)
1428{
1429        struct sock *sk = sock->sk;
1430        struct irda_sock *self = irda_sk(sk);
1431        int noblock = flags & MSG_DONTWAIT;
1432        size_t copied = 0;
1433        int target, err;
1434        long timeo;
1435
1436        IRDA_DEBUG(3, "%s()\n", __func__);
1437
1438        if ((err = sock_error(sk)) < 0)
1439                return err;
1440
1441        if (sock->flags & __SO_ACCEPTCON)
1442                return -EINVAL;
1443
1444        err =-EOPNOTSUPP;
1445        if (flags & MSG_OOB)
1446                return -EOPNOTSUPP;
1447
1448        err = 0;
1449        target = sock_rcvlowat(sk, flags & MSG_WAITALL, size);
1450        timeo = sock_rcvtimeo(sk, noblock);
1451
1452        do {
1453                int chunk;
1454                struct sk_buff *skb = skb_dequeue(&sk->sk_receive_queue);
1455
1456                if (skb == NULL) {
1457                        DEFINE_WAIT(wait);
1458                        err = 0;
1459
1460                        if (copied >= target)
1461                                break;
1462
1463                        prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
1464
1465                        /*
1466                         *      POSIX 1003.1g mandates this order.
1467                         */
1468                        err = sock_error(sk);
1469                        if (err)
1470                                ;
1471                        else if (sk->sk_shutdown & RCV_SHUTDOWN)
1472                                ;
1473                        else if (noblock)
1474                                err = -EAGAIN;
1475                        else if (signal_pending(current))
1476                                err = sock_intr_errno(timeo);
1477                        else if (sk->sk_state != TCP_ESTABLISHED)
1478                                err = -ENOTCONN;
1479                        else if (skb_peek(&sk->sk_receive_queue) == NULL)
1480                                /* Wait process until data arrives */
1481                                schedule();
1482
1483                        finish_wait(sk_sleep(sk), &wait);
1484
1485                        if (err)
1486                                return err;
1487                        if (sk->sk_shutdown & RCV_SHUTDOWN)
1488                                break;
1489
1490                        continue;
1491                }
1492
1493                chunk = min_t(unsigned int, skb->len, size);
1494                if (memcpy_toiovec(msg->msg_iov, skb->data, chunk)) {
1495                        skb_queue_head(&sk->sk_receive_queue, skb);
1496                        if (copied == 0)
1497                                copied = -EFAULT;
1498                        break;
1499                }
1500                copied += chunk;
1501                size -= chunk;
1502
1503                /* Mark read part of skb as used */
1504                if (!(flags & MSG_PEEK)) {
1505                        skb_pull(skb, chunk);
1506
1507                        /* put the skb back if we didn't use it up.. */
1508                        if (skb->len) {
1509                                IRDA_DEBUG(1, "%s(), back on q!\n",
1510                                           __func__);
1511                                skb_queue_head(&sk->sk_receive_queue, skb);
1512                                break;
1513                        }
1514
1515                        kfree_skb(skb);
1516                } else {
1517                        IRDA_DEBUG(0, "%s() questionable!?\n", __func__);
1518
1519                        /* put message back and return */
1520                        skb_queue_head(&sk->sk_receive_queue, skb);
1521                        break;
1522                }
1523        } while (size);
1524
1525        /*
1526         *  Check if we have previously stopped IrTTP and we know
1527         *  have more free space in our rx_queue. If so tell IrTTP
1528         *  to start delivering frames again before our rx_queue gets
1529         *  empty
1530         */
1531        if (self->rx_flow == FLOW_STOP) {
1532                if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
1533                        IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__);
1534                        self->rx_flow = FLOW_START;
1535                        irttp_flow_request(self->tsap, FLOW_START);
1536                }
1537        }
1538
1539        return copied;
1540}
1541
1542/*
1543 * Function irda_sendmsg_dgram (iocb, sock, msg, len)
1544 *
1545 *    Send message down to TinyTP for the unreliable sequenced
1546 *    packet service...
1547 *
1548 */
1549static int irda_sendmsg_dgram(struct kiocb *iocb, struct socket *sock,
1550                              struct msghdr *msg, size_t len)
1551{
1552        struct sock *sk = sock->sk;
1553        struct irda_sock *self;
1554        struct sk_buff *skb;
1555        int err;
1556
1557        IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
1558
1559        if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1560                return -EINVAL;
1561
1562        lock_sock(sk);
1563
1564        if (sk->sk_shutdown & SEND_SHUTDOWN) {
1565                send_sig(SIGPIPE, current, 0);
1566                err = -EPIPE;
1567                goto out;
1568        }
1569
1570        err = -ENOTCONN;
1571        if (sk->sk_state != TCP_ESTABLISHED)
1572                goto out;
1573
1574        self = irda_sk(sk);
1575
1576        /*
1577         * Check that we don't send out too big frames. This is an unreliable
1578         * service, so we have no fragmentation and no coalescence
1579         */
1580        if (len > self->max_data_size) {
1581                IRDA_DEBUG(0, "%s(), Warning to much data! "
1582                           "Chopping frame from %zd to %d bytes!\n",
1583                           __func__, len, self->max_data_size);
1584                len = self->max_data_size;
1585        }
1586
1587        skb = sock_alloc_send_skb(sk, len + self->max_header_size,
1588                                  msg->msg_flags & MSG_DONTWAIT, &err);
1589        err = -ENOBUFS;
1590        if (!skb)
1591                goto out;
1592
1593        skb_reserve(skb, self->max_header_size);
1594        skb_reset_transport_header(skb);
1595
1596        IRDA_DEBUG(4, "%s(), appending user data\n", __func__);
1597        skb_put(skb, len);
1598        err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
1599        if (err) {
1600                kfree_skb(skb);
1601                goto out;
1602        }
1603
1604        /*
1605         * Just send the message to TinyTP, and let it deal with possible
1606         * errors. No need to duplicate all that here
1607         */
1608        err = irttp_udata_request(self->tsap, skb);
1609        if (err) {
1610                IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
1611                goto out;
1612        }
1613
1614        release_sock(sk);
1615        return len;
1616
1617out:
1618        release_sock(sk);
1619        return err;
1620}
1621
1622/*
1623 * Function irda_sendmsg_ultra (iocb, sock, msg, len)
1624 *
1625 *    Send message down to IrLMP for the unreliable Ultra
1626 *    packet service...
1627 */
1628#ifdef CONFIG_IRDA_ULTRA
1629static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock,
1630                              struct msghdr *msg, size_t len)
1631{
1632        struct sock *sk = sock->sk;
1633        struct irda_sock *self;
1634        __u8 pid = 0;
1635        int bound = 0;
1636        struct sk_buff *skb;
1637        int err;
1638
1639        IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
1640
1641        err = -EINVAL;
1642        if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
1643                return -EINVAL;
1644
1645        lock_sock(sk);
1646
1647        err = -EPIPE;
1648        if (sk->sk_shutdown & SEND_SHUTDOWN) {
1649                send_sig(SIGPIPE, current, 0);
1650                goto out;
1651        }
1652
1653        self = irda_sk(sk);
1654
1655        /* Check if an address was specified with sendto. Jean II */
1656        if (msg->msg_name) {
1657                struct sockaddr_irda *addr = (struct sockaddr_irda *) msg->msg_name;
1658                err = -EINVAL;
1659                /* Check address, extract pid. Jean II */
1660                if (msg->msg_namelen < sizeof(*addr))
1661                        goto out;
1662                if (addr->sir_family != AF_IRDA)
1663                        goto out;
1664
1665                pid = addr->sir_lsap_sel;
1666                if (pid & 0x80) {
1667                        IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__);
1668                        err = -EOPNOTSUPP;
1669                        goto out;
1670                }
1671        } else {
1672                /* Check that the socket is properly bound to an Ultra
1673                 * port. Jean II */
1674                if ((self->lsap == NULL) ||
1675                    (sk->sk_state != TCP_ESTABLISHED)) {
1676                        IRDA_DEBUG(0, "%s(), socket not bound to Ultra PID.\n",
1677                                   __func__);
1678                        err = -ENOTCONN;
1679                        goto out;
1680                }
1681                /* Use PID from socket */
1682                bound = 1;
1683        }
1684
1685        /*
1686         * Check that we don't send out too big frames. This is an unreliable
1687         * service, so we have no fragmentation and no coalescence
1688         */
1689        if (len > self->max_data_size) {
1690                IRDA_DEBUG(0, "%s(), Warning to much data! "
1691                           "Chopping frame from %zd to %d bytes!\n",
1692                           __func__, len, self->max_data_size);
1693                len = self->max_data_size;
1694        }
1695
1696        skb = sock_alloc_send_skb(sk, len + self->max_header_size,
1697                                  msg->msg_flags & MSG_DONTWAIT, &err);
1698        err = -ENOBUFS;
1699        if (!skb)
1700                goto out;
1701
1702        skb_reserve(skb, self->max_header_size);
1703        skb_reset_transport_header(skb);
1704
1705        IRDA_DEBUG(4, "%s(), appending user data\n", __func__);
1706        skb_put(skb, len);
1707        err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
1708        if (err) {
1709                kfree_skb(skb);
1710                goto out;
1711        }
1712
1713        err = irlmp_connless_data_request((bound ? self->lsap : NULL),
1714                                          skb, pid);
1715        if (err)
1716                IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
1717out:
1718        release_sock(sk);
1719        return err ? : len;
1720}
1721#endif /* CONFIG_IRDA_ULTRA */
1722
1723/*
1724 * Function irda_shutdown (sk, how)
1725 */
1726static int irda_shutdown(struct socket *sock, int how)
1727{
1728        struct sock *sk = sock->sk;
1729        struct irda_sock *self = irda_sk(sk);
1730
1731        IRDA_DEBUG(1, "%s(%p)\n", __func__, self);
1732
1733        lock_sock(sk);
1734
1735        sk->sk_state       = TCP_CLOSE;
1736        sk->sk_shutdown   |= SEND_SHUTDOWN;
1737        sk->sk_state_change(sk);
1738
1739        if (self->iriap) {
1740                iriap_close(self->iriap);
1741                self->iriap = NULL;
1742        }
1743
1744        if (self->tsap) {
1745                irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
1746                irttp_close_tsap(self->tsap);
1747                self->tsap = NULL;
1748        }
1749
1750        /* A few cleanup so the socket look as good as new... */
1751        self->rx_flow = self->tx_flow = FLOW_START;     /* needed ??? */
1752        self->daddr = DEV_ADDR_ANY;     /* Until we get re-connected */
1753        self->saddr = 0x0;              /* so IrLMP assign us any link */
1754
1755        release_sock(sk);
1756
1757        return 0;
1758}
1759
1760/*
1761 * Function irda_poll (file, sock, wait)
1762 */
1763static unsigned int irda_poll(struct file * file, struct socket *sock,
1764                              poll_table *wait)
1765{
1766        struct sock *sk = sock->sk;
1767        struct irda_sock *self = irda_sk(sk);
1768        unsigned int mask;
1769
1770        IRDA_DEBUG(4, "%s()\n", __func__);
1771
1772        poll_wait(file, sk_sleep(sk), wait);
1773        mask = 0;
1774
1775        /* Exceptional events? */
1776        if (sk->sk_err)
1777                mask |= POLLERR;
1778        if (sk->sk_shutdown & RCV_SHUTDOWN) {
1779                IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__);
1780                mask |= POLLHUP;
1781        }
1782
1783        /* Readable? */
1784        if (!skb_queue_empty(&sk->sk_receive_queue)) {
1785                IRDA_DEBUG(4, "Socket is readable\n");
1786                mask |= POLLIN | POLLRDNORM;
1787        }
1788
1789        /* Connection-based need to check for termination and startup */
1790        switch (sk->sk_type) {
1791        case SOCK_STREAM:
1792                if (sk->sk_state == TCP_CLOSE) {
1793                        IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__);
1794                        mask |= POLLHUP;
1795                }
1796
1797                if (sk->sk_state == TCP_ESTABLISHED) {
1798                        if ((self->tx_flow == FLOW_START) &&
1799                            sock_writeable(sk))
1800                        {
1801                                mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1802                        }
1803                }
1804                break;
1805        case SOCK_SEQPACKET:
1806                if ((self->tx_flow == FLOW_START) &&
1807                    sock_writeable(sk))
1808                {
1809                        mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1810                }
1811                break;
1812        case SOCK_DGRAM:
1813                if (sock_writeable(sk))
1814                        mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1815                break;
1816        default:
1817                break;
1818        }
1819
1820        return mask;
1821}
1822
1823/*
1824 * Function irda_ioctl (sock, cmd, arg)
1825 */
1826static int irda_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1827{
1828        struct sock *sk = sock->sk;
1829        int err;
1830
1831        IRDA_DEBUG(4, "%s(), cmd=%#x\n", __func__, cmd);
1832
1833        err = -EINVAL;
1834        switch (cmd) {
1835        case TIOCOUTQ: {
1836                long amount;
1837
1838                amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
1839                if (amount < 0)
1840                        amount = 0;
1841                err = put_user(amount, (unsigned int __user *)arg);
1842                break;
1843        }
1844
1845        case TIOCINQ: {
1846                struct sk_buff *skb;
1847                long amount = 0L;
1848                /* These two are safe on a single CPU system as only user tasks fiddle here */
1849                if ((skb = skb_peek(&sk->sk_receive_queue)) != NULL)
1850                        amount = skb->len;
1851                err = put_user(amount, (unsigned int __user *)arg);
1852                break;
1853        }
1854
1855        case SIOCGSTAMP:
1856                if (sk != NULL)
1857                        err = sock_get_timestamp(sk, (struct timeval __user *)arg);
1858                break;
1859
1860        case SIOCGIFADDR:
1861        case SIOCSIFADDR:
1862        case SIOCGIFDSTADDR:
1863        case SIOCSIFDSTADDR:
1864        case SIOCGIFBRDADDR:
1865        case SIOCSIFBRDADDR:
1866        case SIOCGIFNETMASK:
1867        case SIOCSIFNETMASK:
1868        case SIOCGIFMETRIC:
1869        case SIOCSIFMETRIC:
1870                break;
1871        default:
1872                IRDA_DEBUG(1, "%s(), doing device ioctl!\n", __func__);
1873                err = -ENOIOCTLCMD;
1874        }
1875
1876        return err;
1877}
1878
1879#ifdef CONFIG_COMPAT
1880/*
1881 * Function irda_ioctl (sock, cmd, arg)
1882 */
1883static int irda_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1884{
1885        /*
1886         * All IRDA's ioctl are standard ones.
1887         */
1888        return -ENOIOCTLCMD;
1889}
1890#endif
1891
1892/*
1893 * Function irda_setsockopt (sock, level, optname, optval, optlen)
1894 *
1895 *    Set some options for the socket
1896 *
1897 */
1898static int irda_setsockopt(struct socket *sock, int level, int optname,
1899                           char __user *optval, unsigned int optlen)
1900{
1901        struct sock *sk = sock->sk;
1902        struct irda_sock *self = irda_sk(sk);
1903        struct irda_ias_set    *ias_opt;
1904        struct ias_object      *ias_obj;
1905        struct ias_attrib *     ias_attr;       /* Attribute in IAS object */
1906        int opt, free_ias = 0, err = 0;
1907
1908        IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
1909
1910        if (level != SOL_IRLMP)
1911                return -ENOPROTOOPT;
1912
1913        lock_sock(sk);
1914
1915        switch (optname) {
1916        case IRLMP_IAS_SET:
1917                /* The user want to add an attribute to an existing IAS object
1918                 * (in the IAS database) or to create a new object with this
1919                 * attribute.
1920                 * We first query IAS to know if the object exist, and then
1921                 * create the right attribute...
1922                 */
1923
1924                if (optlen != sizeof(struct irda_ias_set)) {
1925                        err = -EINVAL;
1926                        goto out;
1927                }
1928
1929                ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
1930                if (ias_opt == NULL) {
1931                        err = -ENOMEM;
1932                        goto out;
1933                }
1934
1935                /* Copy query to the driver. */
1936                if (copy_from_user(ias_opt, optval, optlen)) {
1937                        kfree(ias_opt);
1938                        err = -EFAULT;
1939                        goto out;
1940                }
1941
1942                /* Find the object we target.
1943                 * If the user gives us an empty string, we use the object
1944                 * associated with this socket. This will workaround
1945                 * duplicated class name - Jean II */
1946                if(ias_opt->irda_class_name[0] == '\0') {
1947                        if(self->ias_obj == NULL) {
1948                                kfree(ias_opt);
1949                                err = -EINVAL;
1950                                goto out;
1951                        }
1952                        ias_obj = self->ias_obj;
1953                } else
1954                        ias_obj = irias_find_object(ias_opt->irda_class_name);
1955
1956                /* Only ROOT can mess with the global IAS database.
1957                 * Users can only add attributes to the object associated
1958                 * with the socket they own - Jean II */
1959                if((!capable(CAP_NET_ADMIN)) &&
1960                   ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
1961                        kfree(ias_opt);
1962                        err = -EPERM;
1963                        goto out;
1964                }
1965
1966                /* If the object doesn't exist, create it */
1967                if(ias_obj == (struct ias_object *) NULL) {
1968                        /* Create a new object */
1969                        ias_obj = irias_new_object(ias_opt->irda_class_name,
1970                                                   jiffies);
1971                        if (ias_obj == NULL) {
1972                                kfree(ias_opt);
1973                                err = -ENOMEM;
1974                                goto out;
1975                        }
1976                        free_ias = 1;
1977                }
1978
1979                /* Do we have the attribute already ? */
1980                if(irias_find_attrib(ias_obj, ias_opt->irda_attrib_name)) {
1981                        kfree(ias_opt);
1982                        if (free_ias) {
1983                                kfree(ias_obj->name);
1984                                kfree(ias_obj);
1985                        }
1986                        err = -EINVAL;
1987                        goto out;
1988                }
1989
1990                /* Look at the type */
1991                switch(ias_opt->irda_attrib_type) {
1992                case IAS_INTEGER:
1993                        /* Add an integer attribute */
1994                        irias_add_integer_attrib(
1995                                ias_obj,
1996                                ias_opt->irda_attrib_name,
1997                                ias_opt->attribute.irda_attrib_int,
1998                                IAS_USER_ATTR);
1999                        break;
2000                case IAS_OCT_SEQ:
2001                        /* Check length */
2002                        if(ias_opt->attribute.irda_attrib_octet_seq.len >
2003                           IAS_MAX_OCTET_STRING) {
2004                                kfree(ias_opt);
2005                                if (free_ias) {
2006                                        kfree(ias_obj->name);
2007                                        kfree(ias_obj);
2008                                }
2009
2010                                err = -EINVAL;
2011                                goto out;
2012                        }
2013                        /* Add an octet sequence attribute */
2014                        irias_add_octseq_attrib(
2015                              ias_obj,
2016                              ias_opt->irda_attrib_name,
2017                              ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
2018                              ias_opt->attribute.irda_attrib_octet_seq.len,
2019                              IAS_USER_ATTR);
2020                        break;
2021                case IAS_STRING:
2022                        /* Should check charset & co */
2023                        /* Check length */
2024                        /* The length is encoded in a __u8, and
2025                         * IAS_MAX_STRING == 256, so there is no way
2026                         * userspace can pass us a string too large.
2027                         * Jean II */
2028                        /* NULL terminate the string (avoid troubles) */
2029                        ias_opt->attribute.irda_attrib_string.string[ias_opt->attribute.irda_attrib_string.len] = '\0';
2030                        /* Add a string attribute */
2031                        irias_add_string_attrib(
2032                                ias_obj,
2033                                ias_opt->irda_attrib_name,
2034                                ias_opt->attribute.irda_attrib_string.string,
2035                                IAS_USER_ATTR);
2036                        break;
2037                default :
2038                        kfree(ias_opt);
2039                        if (free_ias) {
2040                                kfree(ias_obj->name);
2041                                kfree(ias_obj);
2042                        }
2043                        err = -EINVAL;
2044                        goto out;
2045                }
2046                irias_insert_object(ias_obj);
2047                kfree(ias_opt);
2048                break;
2049        case IRLMP_IAS_DEL:
2050                /* The user want to delete an object from our local IAS
2051                 * database. We just need to query the IAS, check is the
2052                 * object is not owned by the kernel and delete it.
2053                 */
2054
2055                if (optlen != sizeof(struct irda_ias_set)) {
2056                        err = -EINVAL;
2057                        goto out;
2058                }
2059
2060                ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
2061                if (ias_opt == NULL) {
2062                        err = -ENOMEM;
2063                        goto out;
2064                }
2065
2066                /* Copy query to the driver. */
2067                if (copy_from_user(ias_opt, optval, optlen)) {
2068                        kfree(ias_opt);
2069                        err = -EFAULT;
2070                        goto out;
2071                }
2072
2073                /* Find the object we target.
2074                 * If the user gives us an empty string, we use the object
2075                 * associated with this socket. This will workaround
2076                 * duplicated class name - Jean II */
2077                if(ias_opt->irda_class_name[0] == '\0')
2078                        ias_obj = self->ias_obj;
2079                else
2080                        ias_obj = irias_find_object(ias_opt->irda_class_name);
2081                if(ias_obj == (struct ias_object *) NULL) {
2082                        kfree(ias_opt);
2083                        err = -EINVAL;
2084                        goto out;
2085                }
2086
2087                /* Only ROOT can mess with the global IAS database.
2088                 * Users can only del attributes from the object associated
2089                 * with the socket they own - Jean II */
2090                if((!capable(CAP_NET_ADMIN)) &&
2091                   ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
2092                        kfree(ias_opt);
2093                        err = -EPERM;
2094                        goto out;
2095                }
2096
2097                /* Find the attribute (in the object) we target */
2098                ias_attr = irias_find_attrib(ias_obj,
2099                                             ias_opt->irda_attrib_name);
2100                if(ias_attr == (struct ias_attrib *) NULL) {
2101                        kfree(ias_opt);
2102                        err = -EINVAL;
2103                        goto out;
2104                }
2105
2106                /* Check is the user space own the object */
2107                if(ias_attr->value->owner != IAS_USER_ATTR) {
2108                        IRDA_DEBUG(1, "%s(), attempting to delete a kernel attribute\n", __func__);
2109                        kfree(ias_opt);
2110                        err = -EPERM;
2111                        goto out;
2112                }
2113
2114                /* Remove the attribute (and maybe the object) */
2115                irias_delete_attrib(ias_obj, ias_attr, 1);
2116                kfree(ias_opt);
2117                break;
2118        case IRLMP_MAX_SDU_SIZE:
2119                if (optlen < sizeof(int)) {
2120                        err = -EINVAL;
2121                        goto out;
2122                }
2123
2124                if (get_user(opt, (int __user *)optval)) {
2125                        err = -EFAULT;
2126                        goto out;
2127                }
2128
2129                /* Only possible for a seqpacket service (TTP with SAR) */
2130                if (sk->sk_type != SOCK_SEQPACKET) {
2131                        IRDA_DEBUG(2, "%s(), setting max_sdu_size = %d\n",
2132                                   __func__, opt);
2133                        self->max_sdu_size_rx = opt;
2134                } else {
2135                        IRDA_WARNING("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
2136                                     __func__);
2137                        err = -ENOPROTOOPT;
2138                        goto out;
2139                }
2140                break;
2141        case IRLMP_HINTS_SET:
2142                if (optlen < sizeof(int)) {
2143                        err = -EINVAL;
2144                        goto out;
2145                }
2146
2147                /* The input is really a (__u8 hints[2]), easier as an int */
2148                if (get_user(opt, (int __user *)optval)) {
2149                        err = -EFAULT;
2150                        goto out;
2151                }
2152
2153                /* Unregister any old registration */
2154                if (self->skey)
2155                        irlmp_unregister_service(self->skey);
2156
2157                self->skey = irlmp_register_service((__u16) opt);
2158                break;
2159        case IRLMP_HINT_MASK_SET:
2160                /* As opposed to the previous case which set the hint bits
2161                 * that we advertise, this one set the filter we use when
2162                 * making a discovery (nodes which don't match any hint
2163                 * bit in the mask are not reported).
2164                 */
2165                if (optlen < sizeof(int)) {
2166                        err = -EINVAL;
2167                        goto out;
2168                }
2169
2170                /* The input is really a (__u8 hints[2]), easier as an int */
2171                if (get_user(opt, (int __user *)optval)) {
2172                        err = -EFAULT;
2173                        goto out;
2174                }
2175
2176                /* Set the new hint mask */
2177                self->mask.word = (__u16) opt;
2178                /* Mask out extension bits */
2179                self->mask.word &= 0x7f7f;
2180                /* Check if no bits */
2181                if(!self->mask.word)
2182                        self->mask.word = 0xFFFF;
2183
2184                break;
2185        default:
2186                err = -ENOPROTOOPT;
2187                break;
2188        }
2189
2190out:
2191        release_sock(sk);
2192
2193        return err;
2194}
2195
2196/*
2197 * Function irda_extract_ias_value(ias_opt, ias_value)
2198 *
2199 *    Translate internal IAS value structure to the user space representation
2200 *
2201 * The external representation of IAS values, as we exchange them with
2202 * user space program is quite different from the internal representation,
2203 * as stored in the IAS database (because we need a flat structure for
2204 * crossing kernel boundary).
2205 * This function transform the former in the latter. We also check
2206 * that the value type is valid.
2207 */
2208static int irda_extract_ias_value(struct irda_ias_set *ias_opt,
2209                                  struct ias_value *ias_value)
2210{
2211        /* Look at the type */
2212        switch (ias_value->type) {
2213        case IAS_INTEGER:
2214                /* Copy the integer */
2215                ias_opt->attribute.irda_attrib_int = ias_value->t.integer;
2216                break;
2217        case IAS_OCT_SEQ:
2218                /* Set length */
2219                ias_opt->attribute.irda_attrib_octet_seq.len = ias_value->len;
2220                /* Copy over */
2221                memcpy(ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
2222                       ias_value->t.oct_seq, ias_value->len);
2223                break;
2224        case IAS_STRING:
2225                /* Set length */
2226                ias_opt->attribute.irda_attrib_string.len = ias_value->len;
2227                ias_opt->attribute.irda_attrib_string.charset = ias_value->charset;
2228                /* Copy over */
2229                memcpy(ias_opt->attribute.irda_attrib_string.string,
2230                       ias_value->t.string, ias_value->len);
2231                /* NULL terminate the string (avoid troubles) */
2232                ias_opt->attribute.irda_attrib_string.string[ias_value->len] = '\0';
2233                break;
2234        case IAS_MISSING:
2235        default :
2236                return -EINVAL;
2237        }
2238
2239        /* Copy type over */
2240        ias_opt->irda_attrib_type = ias_value->type;
2241
2242        return 0;
2243}
2244
2245/*
2246 * Function irda_getsockopt (sock, level, optname, optval, optlen)
2247 */
2248static int irda_getsockopt(struct socket *sock, int level, int optname,
2249                           char __user *optval, int __user *optlen)
2250{
2251        struct sock *sk = sock->sk;
2252        struct irda_sock *self = irda_sk(sk);
2253        struct irda_device_list list;
2254        struct irda_device_info *discoveries;
2255        struct irda_ias_set *   ias_opt;        /* IAS get/query params */
2256        struct ias_object *     ias_obj;        /* Object in IAS */
2257        struct ias_attrib *     ias_attr;       /* Attribute in IAS object */
2258        int daddr = DEV_ADDR_ANY;       /* Dest address for IAS queries */
2259        int val = 0;
2260        int len = 0;
2261        int err = 0;
2262        int offset, total;
2263
2264        IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
2265
2266        if (level != SOL_IRLMP)
2267                return -ENOPROTOOPT;
2268
2269        if (get_user(len, optlen))
2270                return -EFAULT;
2271
2272        if(len < 0)
2273                return -EINVAL;
2274
2275        lock_sock(sk);
2276
2277        switch (optname) {
2278        case IRLMP_ENUMDEVICES:
2279
2280                /* Offset to first device entry */
2281                offset = sizeof(struct irda_device_list) -
2282                        sizeof(struct irda_device_info);
2283
2284                if (len < offset) {
2285                        err = -EINVAL;
2286                        goto out;
2287                }
2288
2289                /* Ask lmp for the current discovery log */
2290                discoveries = irlmp_get_discoveries(&list.len, self->mask.word,
2291                                                    self->nslots);
2292                /* Check if the we got some results */
2293                if (discoveries == NULL) {
2294                        err = -EAGAIN;
2295                        goto out;               /* Didn't find any devices */
2296                }
2297
2298                /* Write total list length back to client */
2299                if (copy_to_user(optval, &list, offset))
2300                        err = -EFAULT;
2301
2302                /* Copy the list itself - watch for overflow */
2303                if (list.len > 2048) {
2304                        err = -EINVAL;
2305                        goto bed;
2306                }
2307                total = offset + (list.len * sizeof(struct irda_device_info));
2308                if (total > len)
2309                        total = len;
2310                if (copy_to_user(optval+offset, discoveries, total - offset))
2311                        err = -EFAULT;
2312
2313                /* Write total number of bytes used back to client */
2314                if (put_user(total, optlen))
2315                        err = -EFAULT;
2316bed:
2317                /* Free up our buffer */
2318                kfree(discoveries);
2319                break;
2320        case IRLMP_MAX_SDU_SIZE:
2321                val = self->max_data_size;
2322                len = sizeof(int);
2323                if (put_user(len, optlen)) {
2324                        err = -EFAULT;
2325                        goto out;
2326                }
2327
2328                if (copy_to_user(optval, &val, len)) {
2329                        err = -EFAULT;
2330                        goto out;
2331                }
2332
2333                break;
2334        case IRLMP_IAS_GET:
2335                /* The user want an object from our local IAS database.
2336                 * We just need to query the IAS and return the value
2337                 * that we found */
2338
2339                /* Check that the user has allocated the right space for us */
2340                if (len != sizeof(struct irda_ias_set)) {
2341                        err = -EINVAL;
2342                        goto out;
2343                }
2344
2345                ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
2346                if (ias_opt == NULL) {
2347                        err = -ENOMEM;
2348                        goto out;
2349                }
2350
2351                /* Copy query to the driver. */
2352                if (copy_from_user(ias_opt, optval, len)) {
2353                        kfree(ias_opt);
2354                        err = -EFAULT;
2355                        goto out;
2356                }
2357
2358                /* Find the object we target.
2359                 * If the user gives us an empty string, we use the object
2360                 * associated with this socket. This will workaround
2361                 * duplicated class name - Jean II */
2362                if(ias_opt->irda_class_name[0] == '\0')
2363                        ias_obj = self->ias_obj;
2364                else
2365                        ias_obj = irias_find_object(ias_opt->irda_class_name);
2366                if(ias_obj == (struct ias_object *) NULL) {
2367                        kfree(ias_opt);
2368                        err = -EINVAL;
2369                        goto out;
2370                }
2371
2372                /* Find the attribute (in the object) we target */
2373                ias_attr = irias_find_attrib(ias_obj,
2374                                             ias_opt->irda_attrib_name);
2375                if(ias_attr == (struct ias_attrib *) NULL) {
2376                        kfree(ias_opt);
2377                        err = -EINVAL;
2378                        goto out;
2379                }
2380
2381                /* Translate from internal to user structure */
2382                err = irda_extract_ias_value(ias_opt, ias_attr->value);
2383                if(err) {
2384                        kfree(ias_opt);
2385                        goto out;
2386                }
2387
2388                /* Copy reply to the user */
2389                if (copy_to_user(optval, ias_opt,
2390                                 sizeof(struct irda_ias_set))) {
2391                        kfree(ias_opt);
2392                        err = -EFAULT;
2393                        goto out;
2394                }
2395                /* Note : don't need to put optlen, we checked it */
2396                kfree(ias_opt);
2397                break;
2398        case IRLMP_IAS_QUERY:
2399                /* The user want an object from a remote IAS database.
2400                 * We need to use IAP to query the remote database and
2401                 * then wait for the answer to come back. */
2402
2403                /* Check that the user has allocated the right space for us */
2404                if (len != sizeof(struct irda_ias_set)) {
2405                        err = -EINVAL;
2406                        goto out;
2407                }
2408
2409                ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
2410                if (ias_opt == NULL) {
2411                        err = -ENOMEM;
2412                        goto out;
2413                }
2414
2415                /* Copy query to the driver. */
2416                if (copy_from_user(ias_opt, optval, len)) {
2417                        kfree(ias_opt);
2418                        err = -EFAULT;
2419                        goto out;
2420                }
2421
2422                /* At this point, there are two cases...
2423                 * 1) the socket is connected - that's the easy case, we
2424                 *      just query the device we are connected to...
2425                 * 2) the socket is not connected - the user doesn't want
2426                 *      to connect and/or may not have a valid service name
2427                 *      (so can't create a fake connection). In this case,
2428                 *      we assume that the user pass us a valid destination
2429                 *      address in the requesting structure...
2430                 */
2431                if(self->daddr != DEV_ADDR_ANY) {
2432                        /* We are connected - reuse known daddr */
2433                        daddr = self->daddr;
2434                } else {
2435                        /* We are not connected, we must specify a valid
2436                         * destination address */
2437                        daddr = ias_opt->daddr;
2438                        if((!daddr) || (daddr == DEV_ADDR_ANY)) {
2439                                kfree(ias_opt);
2440                                err = -EINVAL;
2441                                goto out;
2442                        }
2443                }
2444
2445                /* Check that we can proceed with IAP */
2446                if (self->iriap) {
2447                        IRDA_WARNING("%s: busy with a previous query\n",
2448                                     __func__);
2449                        kfree(ias_opt);
2450                        err = -EBUSY;
2451                        goto out;
2452                }
2453
2454                self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
2455                                         irda_getvalue_confirm);
2456
2457                if (self->iriap == NULL) {
2458                        kfree(ias_opt);
2459                        err = -ENOMEM;
2460                        goto out;
2461                }
2462
2463                /* Treat unexpected wakeup as disconnect */
2464                self->errno = -EHOSTUNREACH;
2465
2466                /* Query remote LM-IAS */
2467                iriap_getvaluebyclass_request(self->iriap,
2468                                              self->saddr, daddr,
2469                                              ias_opt->irda_class_name,
2470                                              ias_opt->irda_attrib_name);
2471
2472                /* Wait for answer, if not yet finished (or failed) */
2473                if (wait_event_interruptible(self->query_wait,
2474                                             (self->iriap == NULL))) {
2475                        /* pending request uses copy of ias_opt-content
2476                         * we can free it regardless! */
2477                        kfree(ias_opt);
2478                        /* Treat signals as disconnect */
2479                        err = -EHOSTUNREACH;
2480                        goto out;
2481                }
2482
2483                /* Check what happened */
2484                if (self->errno)
2485                {
2486                        kfree(ias_opt);
2487                        /* Requested object/attribute doesn't exist */
2488                        if((self->errno == IAS_CLASS_UNKNOWN) ||
2489                           (self->errno == IAS_ATTRIB_UNKNOWN))
2490                                err = -EADDRNOTAVAIL;
2491                        else
2492                                err = -EHOSTUNREACH;
2493
2494                        goto out;
2495                }
2496
2497                /* Translate from internal to user structure */
2498                err = irda_extract_ias_value(ias_opt, self->ias_result);
2499                if (self->ias_result)
2500                        irias_delete_value(self->ias_result);
2501                if (err) {
2502                        kfree(ias_opt);
2503                        goto out;
2504                }
2505
2506                /* Copy reply to the user */
2507                if (copy_to_user(optval, ias_opt,
2508                                 sizeof(struct irda_ias_set))) {
2509                        kfree(ias_opt);
2510                        err = -EFAULT;
2511                        goto out;
2512                }
2513                /* Note : don't need to put optlen, we checked it */
2514                kfree(ias_opt);
2515                break;
2516        case IRLMP_WAITDEVICE:
2517                /* This function is just another way of seeing life ;-)
2518                 * IRLMP_ENUMDEVICES assumes that you have a static network,
2519                 * and that you just want to pick one of the devices present.
2520                 * On the other hand, in here we assume that no device is
2521                 * present and that at some point in the future a device will
2522                 * come into range. When this device arrive, we just wake
2523                 * up the caller, so that he has time to connect to it before
2524                 * the device goes away...
2525                 * Note : once the node has been discovered for more than a
2526                 * few second, it won't trigger this function, unless it
2527                 * goes away and come back changes its hint bits (so we
2528                 * might call it IRLMP_WAITNEWDEVICE).
2529                 */
2530
2531                /* Check that the user is passing us an int */
2532                if (len != sizeof(int)) {
2533                        err = -EINVAL;
2534                        goto out;
2535                }
2536                /* Get timeout in ms (max time we block the caller) */
2537                if (get_user(val, (int __user *)optval)) {
2538                        err = -EFAULT;
2539                        goto out;
2540                }
2541
2542                /* Tell IrLMP we want to be notified */
2543                irlmp_update_client(self->ckey, self->mask.word,
2544                                    irda_selective_discovery_indication,
2545                                    NULL, (void *) self);
2546
2547                /* Do some discovery (and also return cached results) */
2548                irlmp_discovery_request(self->nslots);
2549
2550                /* Wait until a node is discovered */
2551                if (!self->cachedaddr) {
2552                        IRDA_DEBUG(1, "%s(), nothing discovered yet, going to sleep...\n", __func__);
2553
2554                        /* Set watchdog timer to expire in <val> ms. */
2555                        self->errno = 0;
2556                        setup_timer(&self->watchdog, irda_discovery_timeout,
2557                                        (unsigned long)self);
2558                        mod_timer(&self->watchdog,
2559                                  jiffies + msecs_to_jiffies(val));
2560
2561                        /* Wait for IR-LMP to call us back */
2562                        err = __wait_event_interruptible(self->query_wait,
2563                              (self->cachedaddr != 0 || self->errno == -ETIME));
2564
2565                        /* If watchdog is still activated, kill it! */
2566                        del_timer(&(self->watchdog));
2567
2568                        IRDA_DEBUG(1, "%s(), ...waking up !\n", __func__);
2569
2570                        if (err != 0)
2571                                goto out;
2572                }
2573                else
2574                        IRDA_DEBUG(1, "%s(), found immediately !\n",
2575                                   __func__);
2576
2577                /* Tell IrLMP that we have been notified */
2578                irlmp_update_client(self->ckey, self->mask.word,
2579                                    NULL, NULL, NULL);
2580
2581                /* Check if the we got some results */
2582                if (!self->cachedaddr) {
2583                        err = -EAGAIN;          /* Didn't find any devices */
2584                        goto out;
2585                }
2586                daddr = self->cachedaddr;
2587                /* Cleanup */
2588                self->cachedaddr = 0;
2589
2590                /* We return the daddr of the device that trigger the
2591                 * wakeup. As irlmp pass us only the new devices, we
2592                 * are sure that it's not an old device.
2593                 * If the user want more details, he should query
2594                 * the whole discovery log and pick one device...
2595                 */
2596                if (put_user(daddr, (int __user *)optval)) {
2597                        err = -EFAULT;
2598                        goto out;
2599                }
2600
2601                break;
2602        default:
2603                err = -ENOPROTOOPT;
2604        }
2605
2606out:
2607
2608        release_sock(sk);
2609
2610        return err;
2611}
2612
2613static const struct net_proto_family irda_family_ops = {
2614        .family = PF_IRDA,
2615        .create = irda_create,
2616        .owner  = THIS_MODULE,
2617};
2618
2619static const struct proto_ops irda_stream_ops = {
2620        .family =       PF_IRDA,
2621        .owner =        THIS_MODULE,
2622        .release =      irda_release,
2623        .bind =         irda_bind,
2624        .connect =      irda_connect,
2625        .socketpair =   sock_no_socketpair,
2626        .accept =       irda_accept,
2627        .getname =      irda_getname,
2628        .poll =         irda_poll,
2629        .ioctl =        irda_ioctl,
2630#ifdef CONFIG_COMPAT
2631        .compat_ioctl = irda_compat_ioctl,
2632#endif
2633        .listen =       irda_listen,
2634        .shutdown =     irda_shutdown,
2635        .setsockopt =   irda_setsockopt,
2636        .getsockopt =   irda_getsockopt,
2637        .sendmsg =      irda_sendmsg,
2638        .recvmsg =      irda_recvmsg_stream,
2639        .mmap =         sock_no_mmap,
2640        .sendpage =     sock_no_sendpage,
2641};
2642
2643static const struct proto_ops irda_seqpacket_ops = {
2644        .family =       PF_IRDA,
2645        .owner =        THIS_MODULE,
2646        .release =      irda_release,
2647        .bind =         irda_bind,
2648        .connect =      irda_connect,
2649        .socketpair =   sock_no_socketpair,
2650        .accept =       irda_accept,
2651        .getname =      irda_getname,
2652        .poll =         datagram_poll,
2653        .ioctl =        irda_ioctl,
2654#ifdef CONFIG_COMPAT
2655        .compat_ioctl = irda_compat_ioctl,
2656#endif
2657        .listen =       irda_listen,
2658        .shutdown =     irda_shutdown,
2659        .setsockopt =   irda_setsockopt,
2660        .getsockopt =   irda_getsockopt,
2661        .sendmsg =      irda_sendmsg,
2662        .recvmsg =      irda_recvmsg_dgram,
2663        .mmap =         sock_no_mmap,
2664        .sendpage =     sock_no_sendpage,
2665};
2666
2667static const struct proto_ops irda_dgram_ops = {
2668        .family =       PF_IRDA,
2669        .owner =        THIS_MODULE,
2670        .release =      irda_release,
2671        .bind =         irda_bind,
2672        .connect =      irda_connect,
2673        .socketpair =   sock_no_socketpair,
2674        .accept =       irda_accept,
2675        .getname =      irda_getname,
2676        .poll =         datagram_poll,
2677        .ioctl =        irda_ioctl,
2678#ifdef CONFIG_COMPAT
2679        .compat_ioctl = irda_compat_ioctl,
2680#endif
2681        .listen =       irda_listen,
2682        .shutdown =     irda_shutdown,
2683        .setsockopt =   irda_setsockopt,
2684        .getsockopt =   irda_getsockopt,
2685        .sendmsg =      irda_sendmsg_dgram,
2686        .recvmsg =      irda_recvmsg_dgram,
2687        .mmap =         sock_no_mmap,
2688        .sendpage =     sock_no_sendpage,
2689};
2690
2691#ifdef CONFIG_IRDA_ULTRA
2692static const struct proto_ops irda_ultra_ops = {
2693        .family =       PF_IRDA,
2694        .owner =        THIS_MODULE,
2695        .release =      irda_release,
2696        .bind =         irda_bind,
2697        .connect =      sock_no_connect,
2698        .socketpair =   sock_no_socketpair,
2699        .accept =       sock_no_accept,
2700        .getname =      irda_getname,
2701        .poll =         datagram_poll,
2702        .ioctl =        irda_ioctl,
2703#ifdef CONFIG_COMPAT
2704        .compat_ioctl = irda_compat_ioctl,
2705#endif
2706        .listen =       sock_no_listen,
2707        .shutdown =     irda_shutdown,
2708        .setsockopt =   irda_setsockopt,
2709        .getsockopt =   irda_getsockopt,
2710        .sendmsg =      irda_sendmsg_ultra,
2711        .recvmsg =      irda_recvmsg_dgram,
2712        .mmap =         sock_no_mmap,
2713        .sendpage =     sock_no_sendpage,
2714};
2715#endif /* CONFIG_IRDA_ULTRA */
2716
2717/*
2718 * Function irsock_init (pro)
2719 *
2720 *    Initialize IrDA protocol
2721 *
2722 */
2723int __init irsock_init(void)
2724{
2725        int rc = proto_register(&irda_proto, 0);
2726
2727        if (rc == 0)
2728                rc = sock_register(&irda_family_ops);
2729
2730        return rc;
2731}
2732
2733/*
2734 * Function irsock_cleanup (void)
2735 *
2736 *    Remove IrDA protocol
2737 *
2738 */
2739void irsock_cleanup(void)
2740{
2741        sock_unregister(PF_IRDA);
2742        proto_unregister(&irda_proto);
2743}
2744