dn_nsp_in.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:21k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * DECnet       An implementation of the DECnet protocol suite for the LINUX
  3.  *              operating system.  DECnet is implemented using the  BSD Socket
  4.  *              interface as the means of communication with the user level.
  5.  *
  6.  *              DECnet Network Services Protocol (Input)
  7.  *
  8.  * Author:      Eduardo Marcelo Serrat <emserrat@geocities.com>
  9.  *
  10.  * Changes:
  11.  *
  12.  *    Steve Whitehouse:  Split into dn_nsp_in.c and dn_nsp_out.c from
  13.  *                       original dn_nsp.c.
  14.  *    Steve Whitehouse:  Updated to work with my new routing architecture.
  15.  *    Steve Whitehouse:  Add changes from Eduardo Serrat's patches.
  16.  *    Steve Whitehouse:  Put all ack handling code in a common routine.
  17.  *    Steve Whitehouse:  Put other common bits into dn_nsp_rx()
  18.  *    Steve Whitehouse:  More checks on skb->len to catch bogus packets
  19.  *                       Fixed various race conditions and possible nasties.
  20.  *    Steve Whitehouse:  Now handles returned conninit frames.
  21.  *     David S. Miller:  New socket locking
  22.  *    Steve Whitehouse:  Fixed lockup when socket filtering was enabled.
  23.  *         Paul Koning:  Fix to push CC sockets into RUN when acks are
  24.  *                       received.
  25.  *    Steve Whitehouse:
  26.  *   Patrick Caulfield:  Checking conninits for correctness & sending of error
  27.  *                       responses.
  28.  *    Steve Whitehouse:  Added backlog congestion level return codes.
  29.  *   Patrick Caulfield:
  30.  *    Steve Whitehouse:  Added flow control support (outbound)
  31.  */
  32. /******************************************************************************
  33.     (c) 1995-1998 E.M. Serrat emserrat@geocities.com
  34.     
  35.     This program is free software; you can redistribute it and/or modify
  36.     it under the terms of the GNU General Public License as published by
  37.     the Free Software Foundation; either version 2 of the License, or
  38.     any later version.
  39.     This program is distributed in the hope that it will be useful,
  40.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  41.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  42.     GNU General Public License for more details.
  43. *******************************************************************************/
  44. #include <linux/config.h>
  45. #include <linux/errno.h>
  46. #include <linux/types.h>
  47. #include <linux/socket.h>
  48. #include <linux/in.h>
  49. #include <linux/kernel.h>
  50. #include <linux/sched.h>
  51. #include <linux/timer.h>
  52. #include <linux/string.h>
  53. #include <linux/sockios.h>
  54. #include <linux/net.h>
  55. #include <linux/netdevice.h>
  56. #include <linux/inet.h>
  57. #include <linux/route.h>
  58. #include <net/sock.h>
  59. #include <asm/segment.h>
  60. #include <asm/system.h>
  61. #include <linux/fcntl.h>
  62. #include <linux/mm.h>
  63. #include <linux/termios.h>      
  64. #include <linux/interrupt.h>
  65. #include <linux/proc_fs.h>
  66. #include <linux/stat.h>
  67. #include <linux/init.h>
  68. #include <linux/poll.h>
  69. #include <linux/netfilter_decnet.h>
  70. #include <net/neighbour.h>
  71. #include <net/dst.h>
  72. #include <net/dn_nsp.h>
  73. #include <net/dn_dev.h>
  74. #include <net/dn_route.h>
  75. extern int decnet_log_martians;
  76. static void dn_log_martian(struct sk_buff *skb, const char *msg)
  77. {
  78. if (decnet_log_martians && net_ratelimit()) {
  79. char *devname = skb->dev ? skb->dev->name : "???";
  80. struct dn_skb_cb *cb = DN_SKB_CB(skb);
  81. printk(KERN_INFO "DECnet: Martian packet (%s) dev=%s src=0x%04hx dst=0x%04hx srcport=0x%04hx dstport=0x%04hxn", msg, devname, cb->src, cb->dst, cb->src_port, cb->dst_port);
  82. }
  83. }
  84. /*
  85.  * For this function we've flipped the cross-subchannel bit
  86.  * if the message is an otherdata or linkservice message. Thus
  87.  * we can use it to work out what to update.
  88.  */
  89. static void dn_ack(struct sock *sk, struct sk_buff *skb, unsigned short ack)
  90. {
  91. struct dn_scp *scp = DN_SK(sk);
  92. unsigned short type = ((ack >> 12) & 0x0003);
  93. int wakeup = 0;
  94. switch(type) {
  95. case 0: /* ACK - Data */
  96. if (after(ack, scp->ackrcv_dat)) {
  97. scp->ackrcv_dat = ack & 0x0fff;
  98. wakeup |= dn_nsp_check_xmit_queue(sk, skb, &scp->data_xmit_queue, ack);
  99. }
  100. break;
  101. case 1: /* NAK - Data */
  102. break;
  103. case 2: /* ACK - OtherData */
  104. if (after(ack, scp->ackrcv_oth)) {
  105. scp->ackrcv_oth = ack & 0x0fff;
  106. wakeup |= dn_nsp_check_xmit_queue(sk, skb, &scp->other_xmit_queue, ack);
  107. }
  108. break;
  109. case 3: /* NAK - OtherData */
  110. break;
  111. }
  112. if (wakeup && !sk->dead)
  113. sk->state_change(sk);
  114. }
  115. /*
  116.  * This function is a universal ack processor.
  117.  */
  118. static int dn_process_ack(struct sock *sk, struct sk_buff *skb, int oth)
  119. {
  120. unsigned short *ptr = (unsigned short *)skb->data;
  121. int len = 0;
  122. unsigned short ack;
  123. if (skb->len < 2)
  124. return len;
  125. if ((ack = dn_ntohs(*ptr)) & 0x8000) {
  126. skb_pull(skb, 2);
  127. ptr++;
  128. len += 2;
  129. if ((ack & 0x4000) == 0) {
  130. if (oth) 
  131. ack ^= 0x2000;
  132. dn_ack(sk, skb, ack);
  133. }
  134. }
  135. if (skb->len < 2)
  136. return len;
  137. if ((ack = dn_ntohs(*ptr)) & 0x8000) {
  138. skb_pull(skb, 2);
  139. len += 2;
  140. if ((ack & 0x4000) == 0) {
  141. if (oth) 
  142. ack ^= 0x2000;
  143. dn_ack(sk, skb, ack);
  144. }
  145. }
  146. return len;
  147. }
  148. /**
  149.  * dn_check_idf - Check an image data field format is correct.
  150.  * @pptr: Pointer to pointer to image data
  151.  * @len: Pointer to length of image data
  152.  * @max: The maximum allowed length of the data in the image data field
  153.  * @follow_on: Check that this many bytes exist beyond the end of the image data
  154.  *
  155.  * Returns: 0 if ok, -1 on error
  156.  */
  157. static inline int dn_check_idf(unsigned char **pptr, int *len, unsigned char max, unsigned char follow_on)
  158. {
  159. unsigned char *ptr = *pptr;
  160. unsigned char flen = *ptr++;
  161. (*len)--;
  162. if (flen > max)
  163. return -1;
  164. if ((flen + follow_on) > *len)
  165. return -1;
  166. *len -= flen;
  167. *pptr = ptr + flen;
  168. return 0;
  169. }
  170. /*
  171.  * Table of reason codes to pass back to node which sent us a badly
  172.  * formed message, plus text messages for the log. A zero entry in
  173.  * the reason field means "don't reply" otherwise a disc init is sent with
  174.  * the specified reason code.
  175.  */
  176. static struct {
  177. unsigned short reason;
  178. const char *text;
  179. } ci_err_table[] = {
  180.  { 0,             "CI: Truncated message" },
  181.  { NSP_REASON_ID, "CI: Destination username error" },
  182.  { NSP_REASON_ID, "CI: Destination username type" },
  183.  { NSP_REASON_US, "CI: Source username error" },
  184.  { 0,             "CI: Truncated at menuver" },
  185.  { 0,             "CI: Truncated before access or user data" },
  186.  { NSP_REASON_IO, "CI: Access data format error" },
  187.  { NSP_REASON_IO, "CI: User data format error" }
  188. };
  189. /*
  190.  * This function uses a slightly different lookup method
  191.  * to find its sockets, since it searches on object name/number
  192.  * rather than port numbers. Various tests are done to ensure that
  193.  * the incoming data is in the correct format before it is queued to
  194.  * a socket.
  195.  */
  196. static struct sock *dn_find_listener(struct sk_buff *skb, unsigned short *reason)
  197. {
  198. struct dn_skb_cb *cb = DN_SKB_CB(skb);
  199. struct nsp_conn_init_msg *msg = (struct nsp_conn_init_msg *)skb->data;
  200. struct sockaddr_dn dstaddr;
  201. struct sockaddr_dn srcaddr;
  202. unsigned char type = 0;
  203. int dstlen;
  204. int srclen;
  205. unsigned char *ptr;
  206. int len;
  207. int err = 0;
  208. unsigned char menuver;
  209. memset(&dstaddr, 0, sizeof(struct sockaddr_dn));
  210. memset(&srcaddr, 0, sizeof(struct sockaddr_dn));
  211. /*
  212.  * 1. Decode & remove message header
  213.  */
  214. cb->src_port = msg->srcaddr;
  215. cb->dst_port = msg->dstaddr;
  216. cb->services = msg->services;
  217. cb->info     = msg->info;
  218. cb->segsize  = dn_ntohs(msg->segsize);
  219. if (skb->len < sizeof(*msg))
  220. goto err_out;
  221. skb_pull(skb, sizeof(*msg));
  222. len = skb->len;
  223. ptr = skb->data;
  224. /*
  225.  * 2. Check destination end username format
  226.  */
  227. dstlen = dn_username2sockaddr(ptr, len, &dstaddr, &type);
  228. err++;
  229. if (dstlen < 0)
  230. goto err_out;
  231. err++;
  232. if (type > 1)
  233. goto err_out;
  234. len -= dstlen;
  235. ptr += dstlen;
  236. /*
  237.  * 3. Check source end username format
  238.  */
  239. srclen = dn_username2sockaddr(ptr, len, &srcaddr, &type);
  240. err++;
  241. if (srclen < 0)
  242. goto err_out;
  243. len -= srclen;
  244. ptr += srclen;
  245. err++;
  246. if (len < 1)
  247. goto err_out;
  248. menuver = *ptr;
  249. ptr++;
  250. len--;
  251. /*
  252.  * 4. Check that optional data actually exists if menuver says it does
  253.  */
  254. err++;
  255. if ((menuver & (DN_MENUVER_ACC | DN_MENUVER_USR)) && (len < 1))
  256. goto err_out;
  257. /*
  258.  * 5. Check optional access data format
  259.  */
  260. err++;
  261. if (menuver & DN_MENUVER_ACC) {
  262. if (dn_check_idf(&ptr, &len, 39, 1))
  263. goto err_out;
  264. if (dn_check_idf(&ptr, &len, 39, 1))
  265. goto err_out;
  266. if (dn_check_idf(&ptr, &len, 39, (menuver & DN_MENUVER_USR) ? 1 : 0))
  267. goto err_out;
  268. }
  269. /*
  270.  * 6. Check optional user data format
  271.  */
  272. err++;
  273. if (menuver & DN_MENUVER_USR) {
  274. if (dn_check_idf(&ptr, &len, 16, 0))
  275. goto err_out;
  276. }
  277. /*
  278.  * 7. Look up socket based on destination end username
  279.  */
  280. return dn_sklist_find_listener(&dstaddr);
  281. err_out:
  282. dn_log_martian(skb, ci_err_table[err].text);
  283. *reason = ci_err_table[err].reason;
  284. return NULL;
  285. }
  286. static void dn_nsp_conn_init(struct sock *sk, struct sk_buff *skb)
  287. {
  288. if (sk->ack_backlog >= sk->max_ack_backlog) {
  289. kfree_skb(skb);
  290. return;
  291. }
  292. sk->ack_backlog++;
  293. skb_queue_tail(&sk->receive_queue, skb);
  294. sk->state_change(sk);
  295. }
  296. static void dn_nsp_conn_conf(struct sock *sk, struct sk_buff *skb)
  297. {
  298. struct dn_skb_cb *cb = DN_SKB_CB(skb);
  299. struct dn_scp *scp = DN_SK(sk);
  300. unsigned char *ptr;
  301. if (skb->len < 4)
  302. goto out;
  303. ptr = skb->data;
  304. cb->services = *ptr++;
  305. cb->info = *ptr++;
  306. cb->segsize = dn_ntohs(*(__u16 *)ptr);
  307. if ((scp->state == DN_CI) || (scp->state == DN_CD)) {
  308. scp->persist = 0;
  309.                 scp->addrrem = cb->src_port;
  310.                 sk->state = TCP_ESTABLISHED;
  311.                 scp->state = DN_RUN;
  312. scp->services_rem = cb->services;
  313. scp->info_rem = cb->info;
  314. scp->segsize_rem = cb->segsize;
  315. if ((scp->services_rem & NSP_FC_MASK) == NSP_FC_NONE)
  316. scp->max_window = decnet_no_fc_max_cwnd;
  317. if (skb->len > 0) {
  318. unsigned char dlen = *skb->data;
  319. if ((dlen <= 16) && (dlen <= skb->len)) {
  320. scp->conndata_in.opt_optl = dlen;
  321. memcpy(scp->conndata_in.opt_data, skb->data + 1, dlen);
  322. }
  323. }
  324.                 dn_nsp_send_link(sk, DN_NOCHANGE, 0);
  325.                 if (!sk->dead)
  326.                  sk->state_change(sk);
  327.         }
  328. out:
  329.         kfree_skb(skb);
  330. }
  331. static void dn_nsp_conn_ack(struct sock *sk, struct sk_buff *skb)
  332. {
  333. struct dn_scp *scp = DN_SK(sk);
  334. if (scp->state == DN_CI) {
  335. scp->state = DN_CD;
  336. scp->persist = 0;
  337. }
  338. kfree_skb(skb);
  339. }
  340. static void dn_nsp_disc_init(struct sock *sk, struct sk_buff *skb)
  341. {
  342. struct dn_scp *scp = DN_SK(sk);
  343. struct dn_skb_cb *cb = DN_SKB_CB(skb);
  344. unsigned short reason;
  345. if (skb->len < 2)
  346. goto out;
  347. reason = dn_ntohs(*(__u16 *)skb->data);
  348. skb_pull(skb, 2);
  349. scp->discdata_in.opt_status = reason;
  350. scp->discdata_in.opt_optl   = 0;
  351. memset(scp->discdata_in.opt_data, 0, 16);
  352. if (skb->len > 0) {
  353. unsigned char dlen = *skb->data;
  354. if ((dlen <= 16) && (dlen <= skb->len)) {
  355. scp->discdata_in.opt_optl = dlen;
  356. memcpy(scp->discdata_in.opt_data, skb->data + 1, dlen);
  357. }
  358. }
  359. scp->addrrem = cb->src_port;
  360. sk->state    = TCP_CLOSE;
  361. switch(scp->state) {
  362. case DN_CI:
  363. case DN_CD:
  364. scp->state = DN_RJ;
  365. break;
  366. case DN_RUN:
  367. sk->shutdown |= SHUTDOWN_MASK;
  368. scp->state = DN_DN;
  369. break;
  370. case DN_DI:
  371. scp->state = DN_DIC;
  372. break;
  373. }
  374. if (!sk->dead) {
  375. if (sk->socket->state != SS_UNCONNECTED)
  376. sk->socket->state = SS_DISCONNECTING;
  377. sk->state_change(sk);
  378. }
  379. dn_nsp_send_disc(sk, NSP_DISCCONF, NSP_REASON_DC, GFP_ATOMIC);
  380. scp->persist_fxn = dn_destroy_timer;
  381. scp->persist = dn_nsp_persist(sk);
  382. out:
  383. kfree_skb(skb);
  384. }
  385. /*
  386.  * disc_conf messages are also called no_resources or no_link
  387.  * messages depending upon the "reason" field.
  388.  */
  389. static void dn_nsp_disc_conf(struct sock *sk, struct sk_buff *skb)
  390. {
  391. struct dn_scp *scp = DN_SK(sk);
  392. unsigned short reason;
  393. if (skb->len != 2)
  394. goto out;
  395. reason = dn_ntohs(*(__u16 *)skb->data);
  396. sk->state = TCP_CLOSE;
  397. switch(scp->state) {
  398. case DN_CI:
  399. scp->state = DN_NR;
  400. break;
  401. case DN_DR:
  402. if (reason == NSP_REASON_DC)
  403. scp->state = DN_DRC;
  404. if (reason == NSP_REASON_NL)
  405. scp->state = DN_CN;
  406. break;
  407. case DN_DI:
  408. scp->state = DN_DIC;
  409. break;
  410. case DN_RUN:
  411. sk->shutdown |= SHUTDOWN_MASK;
  412. case DN_CC:
  413. scp->state = DN_CN;
  414. }
  415. if (!sk->dead) {
  416. if (sk->socket->state != SS_UNCONNECTED)
  417. sk->socket->state = SS_DISCONNECTING;
  418. sk->state_change(sk);
  419. }
  420. scp->persist_fxn = dn_destroy_timer;
  421. scp->persist = dn_nsp_persist(sk);
  422. out:
  423. kfree_skb(skb);
  424. }
  425. static void dn_nsp_linkservice(struct sock *sk, struct sk_buff *skb)
  426. {
  427. struct dn_scp *scp = DN_SK(sk);
  428. unsigned short segnum;
  429. unsigned char lsflags;
  430. char fcval;
  431. int wake_up = 0;
  432. char *ptr = skb->data;
  433. unsigned char fctype = scp->services_rem & NSP_FC_MASK;
  434. if (skb->len != 4)
  435. goto out;
  436. segnum = dn_ntohs(*(__u16 *)ptr);
  437. ptr += 2;
  438. lsflags = *(unsigned char *)ptr++;
  439. fcval = *ptr;
  440. /*
  441.  * Here we ignore erronous packets which should really
  442.  * should cause a connection abort. It is not critical 
  443.  * for now though.
  444.  */
  445. if (lsflags & 0xf8)
  446. goto out;
  447. if (seq_next(scp->numoth_rcv, segnum)) {
  448. seq_add(&scp->numoth_rcv, 1);
  449. switch(lsflags & 0x04) { /* FCVAL INT */
  450. case 0x00: /* Normal Request */
  451. switch(lsflags & 0x03) { /* FCVAL MOD */
  452.                   case 0x00: /* Request count */
  453. if (fcval < 0) {
  454. unsigned char p_fcval = -fcval;
  455. if ((scp->flowrem_dat > p_fcval) &&
  456.     (fctype == NSP_FC_SCMC)) {
  457. scp->flowrem_dat -= p_fcval;
  458. }
  459. } else if (fcval > 0) {
  460. scp->flowrem_dat += fcval;
  461. wake_up = 1;
  462. }
  463.                           break;
  464. case 0x01: /* Stop outgoing data */
  465. scp->flowrem_sw = DN_DONTSEND;
  466. break;
  467. case 0x02: /* Ok to start again */
  468. scp->flowrem_sw = DN_SEND;
  469. dn_nsp_output(sk);
  470. wake_up = 1;
  471. }
  472. break;
  473. case 0x04: /* Interrupt Request */
  474. if (fcval > 0) {
  475. scp->flowrem_oth += fcval;
  476. wake_up = 1;
  477. }
  478. break;
  479.                 }
  480. if (wake_up && !sk->dead)
  481. sk->state_change(sk);
  482.         }
  483. dn_nsp_send_oth_ack(sk);
  484. out:
  485. kfree_skb(skb);
  486. }
  487. /*
  488.  * Copy of sock_queue_rcv_skb (from sock.h) without
  489.  * bh_lock_sock() (its already held when this is called) which
  490.  * also allows data and other data to be queued to a socket.
  491.  */
  492. static __inline__ int dn_queue_skb(struct sock *sk, struct sk_buff *skb, int sig, struct sk_buff_head *queue)
  493. {
  494. #ifdef CONFIG_FILTER
  495. struct sk_filter *filter;
  496. #endif
  497.         /* Cast skb->rcvbuf to unsigned... It's pointless, but reduces
  498.            number of warnings when compiling with -W --ANK
  499.          */
  500.         if (atomic_read(&sk->rmem_alloc) + skb->truesize >= (unsigned)sk->rcvbuf
  501. )
  502.                 return -ENOMEM;
  503. #ifdef CONFIG_FILTER
  504.         if (sk->filter) {
  505. int err = 0;
  506.                 if ((filter = sk->filter) != NULL && sk_filter(skb, sk->filter))
  507.                         err = -EPERM;  /* Toss packet */
  508. if (err)
  509. return err;
  510.         }
  511. #endif /* CONFIG_FILTER */
  512.         skb_set_owner_r(skb, sk);
  513.         skb_queue_tail(queue, skb);
  514. /* This code only runs from BH or BH protected context.
  515.  * Therefore the plain read_lock is ok here. -DaveM
  516.  */
  517. read_lock(&sk->callback_lock);
  518.         if (!sk->dead) {
  519. struct socket *sock = sk->socket;
  520. wake_up_interruptible(sk->sleep);
  521. if (sock && sock->fasync_list &&
  522.     !test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
  523. __kill_fasync(sock->fasync_list, sig, 
  524.     (sig == SIGURG) ? POLL_PRI : POLL_IN);
  525. }
  526. read_unlock(&sk->callback_lock);
  527.         return 0;
  528. }
  529. static void dn_nsp_otherdata(struct sock *sk, struct sk_buff *skb)
  530. {
  531. struct dn_scp *scp = DN_SK(sk);
  532. unsigned short segnum;
  533. struct dn_skb_cb *cb = DN_SKB_CB(skb);
  534. int queued = 0;
  535. if (skb->len < 2)
  536. goto out;
  537. cb->segnum = segnum = dn_ntohs(*(__u16 *)skb->data);
  538. skb_pull(skb, 2);
  539. if (seq_next(scp->numoth_rcv, segnum)) {
  540. if (dn_queue_skb(sk, skb, SIGURG, &scp->other_receive_queue) == 0) {
  541. seq_add(&scp->numoth_rcv, 1);
  542. scp->other_report = 0;
  543. queued = 1;
  544. }
  545. }
  546. dn_nsp_send_oth_ack(sk);
  547. out:
  548. if (!queued)
  549. kfree_skb(skb);
  550. }
  551. static void dn_nsp_data(struct sock *sk, struct sk_buff *skb)
  552. {
  553. int queued = 0;
  554. unsigned short segnum;
  555. struct dn_skb_cb *cb = DN_SKB_CB(skb);
  556. struct dn_scp *scp = DN_SK(sk);
  557. if (skb->len < 2)
  558. goto out;
  559. cb->segnum = segnum = dn_ntohs(*(__u16 *)skb->data);
  560. skb_pull(skb, 2);
  561. if (seq_next(scp->numdat_rcv, segnum)) {
  562.                 if (dn_queue_skb(sk, skb, SIGIO, &sk->receive_queue) == 0) {
  563. seq_add(&scp->numdat_rcv, 1);
  564.                  queued = 1;
  565.                 }
  566. if ((scp->flowloc_sw == DN_SEND) && dn_congested(sk)) {
  567. scp->flowloc_sw = DN_DONTSEND;
  568. dn_nsp_send_link(sk, DN_DONTSEND, 0);
  569. }
  570.         }
  571. dn_nsp_send_data_ack(sk);
  572. out:
  573. if (!queued)
  574. kfree_skb(skb);
  575. }
  576. /*
  577.  * If one of our conninit messages is returned, this function
  578.  * deals with it. It puts the socket into the NO_COMMUNICATION
  579.  * state.
  580.  */
  581. static void dn_returned_conn_init(struct sock *sk, struct sk_buff *skb)
  582. {
  583. struct dn_scp *scp = DN_SK(sk);
  584. if (scp->state == DN_CI) {
  585. scp->state = DN_NC;
  586. sk->state = TCP_CLOSE;
  587. if (!sk->dead)
  588. sk->state_change(sk);
  589. }
  590. kfree_skb(skb);
  591. }
  592. static int dn_nsp_no_socket(struct sk_buff *skb, unsigned short reason)
  593. {
  594. struct dn_skb_cb *cb = DN_SKB_CB(skb);
  595. int ret = NET_RX_DROP;
  596. /* Must not reply to returned packets */
  597. if (cb->rt_flags & DN_RT_F_RTS)
  598. goto out;
  599. if ((reason != NSP_REASON_OK) && ((cb->nsp_flags & 0x0c) == 0x08)) {
  600. switch(cb->nsp_flags & 0x70) {
  601. case 0x10:
  602. case 0x60: /* (Retransmitted) Connect Init */
  603. dn_nsp_return_disc(skb, NSP_DISCINIT, reason);
  604. ret = NET_RX_SUCCESS;
  605. break;
  606. case 0x20: /* Connect Confirm */
  607. dn_nsp_return_disc(skb, NSP_DISCCONF, reason);
  608. ret = NET_RX_SUCCESS;
  609. break;
  610. }
  611. }
  612. out:
  613. kfree_skb(skb);
  614. return ret;
  615. }
  616. static int dn_nsp_rx_packet(struct sk_buff *skb)
  617. {
  618. struct dn_skb_cb *cb = DN_SKB_CB(skb);
  619. struct sock *sk = NULL;
  620. unsigned char *ptr = (unsigned char *)skb->data;
  621. unsigned short reason = NSP_REASON_NL;
  622. skb->h.raw    = skb->data;
  623. cb->nsp_flags = *ptr++;
  624. if (decnet_debug_level & 2)
  625. printk(KERN_DEBUG "dn_nsp_rx: Message type 0x%02xn", (int)cb->nsp_flags);
  626. if (skb->len < 2) 
  627. goto free_out;
  628. if (cb->nsp_flags & 0x83) 
  629. goto free_out;
  630. /*
  631.  * Returned packets...
  632.  * Swap src & dst and look up in the normal way.
  633.  */
  634. if (cb->rt_flags & DN_RT_F_RTS) {
  635. unsigned short tmp = cb->dst_port;
  636. cb->dst_port = cb->src_port;
  637. cb->src_port = tmp;
  638. tmp = cb->dst;
  639. cb->dst = cb->src;
  640. cb->src = tmp;
  641. sk = dn_find_by_skb(skb);
  642. goto got_it;
  643. }
  644. /*
  645.  * Filter out conninits and useless packet types
  646.  */
  647. if ((cb->nsp_flags & 0x0c) == 0x08) {
  648. switch(cb->nsp_flags & 0x70) {
  649. case 0x00: /* NOP */
  650. case 0x70: /* Reserved */
  651. case 0x50: /* Reserved, Phase II node init */
  652. goto free_out;
  653. case 0x10:
  654. case 0x60:
  655. sk = dn_find_listener(skb, &reason);
  656. goto got_it;
  657. }
  658. }
  659. if (skb->len < 3)
  660. goto free_out;
  661. /*
  662.  * Grab the destination address.
  663.  */
  664. cb->dst_port = *(unsigned short *)ptr;
  665. cb->src_port = 0;
  666. ptr += 2;
  667. /*
  668.  * If not a connack, grab the source address too.
  669.  */
  670. if (skb->len >= 5) {
  671. cb->src_port = *(unsigned short *)ptr;
  672. ptr += 2;
  673. skb_pull(skb, 5);
  674. }
  675. /*
  676.  * Find the socket to which this skb is destined.
  677.  */
  678. sk = dn_find_by_skb(skb);
  679. got_it:
  680. if (sk != NULL) {
  681. struct dn_scp *scp = DN_SK(sk);
  682. int ret;
  683. /* Reset backoff */
  684. scp->nsp_rxtshift = 0;
  685. bh_lock_sock(sk);
  686. ret = NET_RX_SUCCESS;
  687. if (decnet_debug_level & 8)
  688. printk(KERN_DEBUG "NSP: 0x%02x 0x%02x 0x%04x 0x%04x %dn",
  689. (int)cb->rt_flags, (int)cb->nsp_flags, 
  690. (int)cb->src_port, (int)cb->dst_port, 
  691. (int)sk->lock.users);
  692. if (sk->lock.users == 0)
  693. ret = dn_nsp_backlog_rcv(sk, skb);
  694. else
  695. sk_add_backlog(sk, skb);
  696. bh_unlock_sock(sk);
  697. sock_put(sk);
  698. return ret;
  699. }
  700. return dn_nsp_no_socket(skb, reason);
  701. free_out:
  702. kfree_skb(skb);
  703. return NET_RX_DROP;
  704. }
  705. int dn_nsp_rx(struct sk_buff *skb)
  706. {
  707. return NF_HOOK(PF_DECnet, NF_DN_LOCAL_IN, skb, skb->dev, NULL, dn_nsp_rx_packet);
  708. }
  709. /*
  710.  * This is the main receive routine for sockets. It is called
  711.  * from the above when the socket is not busy, and also from
  712.  * sock_release() when there is a backlog queued up.
  713.  */
  714. int dn_nsp_backlog_rcv(struct sock *sk, struct sk_buff *skb)
  715. {
  716. struct dn_scp *scp = DN_SK(sk);
  717. struct dn_skb_cb *cb = DN_SKB_CB(skb);
  718. if (cb->rt_flags & DN_RT_F_RTS) {
  719. dn_returned_conn_init(sk, skb);
  720. return NET_RX_SUCCESS;
  721. }
  722. /*
  723.  * Control packet.
  724.  */
  725. if ((cb->nsp_flags & 0x0c) == 0x08) {
  726. switch(cb->nsp_flags & 0x70) {
  727. case 0x10:
  728. case 0x60:
  729. dn_nsp_conn_init(sk, skb);
  730. break;
  731. case 0x20:
  732. dn_nsp_conn_conf(sk, skb);
  733. break;
  734. case 0x30:
  735. dn_nsp_disc_init(sk, skb);
  736. break;
  737. case 0x40:      
  738. dn_nsp_disc_conf(sk, skb);
  739. break;
  740. }
  741. } else if (cb->nsp_flags == 0x24) {
  742. /*
  743.  * Special for connacks, 'cos they don't have
  744.  * ack data or ack otherdata info.
  745.  */
  746. dn_nsp_conn_ack(sk, skb);
  747. } else {
  748. int other = 1;
  749. /* both data and ack frames can kick a CC socket into RUN */
  750. if ((scp->state == DN_CC) && !sk->dead) {
  751. scp->state = DN_RUN;
  752. sk->state = TCP_ESTABLISHED;
  753. sk->state_change(sk);
  754. }
  755. if ((cb->nsp_flags & 0x1c) == 0)
  756. other = 0;
  757. if (cb->nsp_flags == 0x04)
  758. other = 0;
  759. /*
  760.  * Read out ack data here, this applies equally
  761.  * to data, other data, link serivce and both
  762.  * ack data and ack otherdata.
  763.  */
  764. dn_process_ack(sk, skb, other);
  765. /*
  766.  * If we've some sort of data here then call a
  767.  * suitable routine for dealing with it, otherwise
  768.  * the packet is an ack and can be discarded.
  769.  */
  770. if ((cb->nsp_flags & 0x0c) == 0) {
  771. if (scp->state != DN_RUN)
  772. goto free_out;
  773. switch(cb->nsp_flags) {
  774. case 0x10: /* LS */
  775. dn_nsp_linkservice(sk, skb);
  776. break;
  777. case 0x30: /* OD */
  778. dn_nsp_otherdata(sk, skb);
  779. break;
  780. default:
  781. dn_nsp_data(sk, skb);
  782. }
  783. } else { /* Ack, chuck it out here */
  784. free_out:
  785. kfree_skb(skb);
  786. }
  787. }
  788. return NET_RX_SUCCESS;
  789. }