llc_input.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /*
  2. * llc_input.c - Minimal input path for LLC
  3. *
  4. * Copyright (c) 1997 by Procom Technology, Inc.
  5. * 2001-2003 by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  6. *
  7. * This program can be redistributed or modified under the terms of the
  8. * GNU General Public License as published by the Free Software Foundation.
  9. * This program is distributed without any warranty or implied warranty
  10. * of merchantability or fitness for a particular purpose.
  11. *
  12. * See the GNU General Public License for more details.
  13. */
  14. #include <linux/netdevice.h>
  15. #include <linux/slab.h>
  16. #include <net/net_namespace.h>
  17. #include <net/llc.h>
  18. #include <net/llc_pdu.h>
  19. #include <net/llc_sap.h>
  20. #if 0
  21. #define dprintk(args...) printk(KERN_DEBUG args)
  22. #else
  23. #define dprintk(args...)
  24. #endif
  25. /*
  26. * Packet handler for the station, registerable because in the minimal
  27. * LLC core that is taking shape only the very minimal subset of LLC that
  28. * is needed for things like IPX, Appletalk, etc will stay, with all the
  29. * rest in the llc1 and llc2 modules.
  30. */
  31. static void (*llc_station_handler)(struct sk_buff *skb);
  32. /*
  33. * Packet handlers for LLC_DEST_SAP and LLC_DEST_CONN.
  34. */
  35. static void (*llc_type_handlers[2])(struct llc_sap *sap,
  36. struct sk_buff *skb);
  37. void llc_add_pack(int type, void (*handler)(struct llc_sap *sap,
  38. struct sk_buff *skb))
  39. {
  40. if (type == LLC_DEST_SAP || type == LLC_DEST_CONN)
  41. llc_type_handlers[type - 1] = handler;
  42. }
  43. void llc_remove_pack(int type)
  44. {
  45. if (type == LLC_DEST_SAP || type == LLC_DEST_CONN)
  46. llc_type_handlers[type - 1] = NULL;
  47. }
  48. void llc_set_station_handler(void (*handler)(struct sk_buff *skb))
  49. {
  50. llc_station_handler = handler;
  51. }
  52. /**
  53. * llc_pdu_type - returns which LLC component must handle for PDU
  54. * @skb: input skb
  55. *
  56. * This function returns which LLC component must handle this PDU.
  57. */
  58. static __inline__ int llc_pdu_type(struct sk_buff *skb)
  59. {
  60. int type = LLC_DEST_CONN; /* I-PDU or S-PDU type */
  61. struct llc_pdu_sn *pdu = llc_pdu_sn_hdr(skb);
  62. if ((pdu->ctrl_1 & LLC_PDU_TYPE_MASK) != LLC_PDU_TYPE_U)
  63. goto out;
  64. switch (LLC_U_PDU_CMD(pdu)) {
  65. case LLC_1_PDU_CMD_XID:
  66. case LLC_1_PDU_CMD_UI:
  67. case LLC_1_PDU_CMD_TEST:
  68. type = LLC_DEST_SAP;
  69. break;
  70. case LLC_2_PDU_CMD_SABME:
  71. case LLC_2_PDU_CMD_DISC:
  72. case LLC_2_PDU_RSP_UA:
  73. case LLC_2_PDU_RSP_DM:
  74. case LLC_2_PDU_RSP_FRMR:
  75. break;
  76. default:
  77. type = LLC_DEST_INVALID;
  78. break;
  79. }
  80. out:
  81. return type;
  82. }
  83. /**
  84. * llc_fixup_skb - initializes skb pointers
  85. * @skb: This argument points to incoming skb
  86. *
  87. * Initializes internal skb pointer to start of network layer by deriving
  88. * length of LLC header; finds length of LLC control field in LLC header
  89. * by looking at the two lowest-order bits of the first control field
  90. * byte; field is either 3 or 4 bytes long.
  91. */
  92. static inline int llc_fixup_skb(struct sk_buff *skb)
  93. {
  94. u8 llc_len = 2;
  95. struct llc_pdu_un *pdu;
  96. if (unlikely(!pskb_may_pull(skb, sizeof(*pdu))))
  97. return 0;
  98. pdu = (struct llc_pdu_un *)skb->data;
  99. if ((pdu->ctrl_1 & LLC_PDU_TYPE_MASK) == LLC_PDU_TYPE_U)
  100. llc_len = 1;
  101. llc_len += 2;
  102. if (unlikely(!pskb_may_pull(skb, llc_len)))
  103. return 0;
  104. skb->transport_header += llc_len;
  105. skb_pull(skb, llc_len);
  106. if (skb->protocol == htons(ETH_P_802_2)) {
  107. __be16 pdulen = eth_hdr(skb)->h_proto;
  108. s32 data_size = ntohs(pdulen) - llc_len;
  109. if (data_size < 0 ||
  110. !pskb_may_pull(skb, data_size))
  111. return 0;
  112. if (unlikely(pskb_trim_rcsum(skb, data_size)))
  113. return 0;
  114. }
  115. return 1;
  116. }
  117. /**
  118. * llc_rcv - 802.2 entry point from net lower layers
  119. * @skb: received pdu
  120. * @dev: device that receive pdu
  121. * @pt: packet type
  122. *
  123. * When the system receives a 802.2 frame this function is called. It
  124. * checks SAP and connection of received pdu and passes frame to
  125. * llc_{station,sap,conn}_rcv for sending to proper state machine. If
  126. * the frame is related to a busy connection (a connection is sending
  127. * data now), it queues this frame in the connection's backlog.
  128. */
  129. int llc_rcv(struct sk_buff *skb, struct net_device *dev,
  130. struct packet_type *pt, struct net_device *orig_dev)
  131. {
  132. struct llc_sap *sap;
  133. struct llc_pdu_sn *pdu;
  134. int dest;
  135. int (*rcv)(struct sk_buff *, struct net_device *,
  136. struct packet_type *, struct net_device *);
  137. if (!net_eq(dev_net(dev), &init_net))
  138. goto drop;
  139. /*
  140. * When the interface is in promisc. mode, drop all the crap that it
  141. * receives, do not try to analyse it.
  142. */
  143. if (unlikely(skb->pkt_type == PACKET_OTHERHOST)) {
  144. dprintk("%s: PACKET_OTHERHOST\n", __func__);
  145. goto drop;
  146. }
  147. skb = skb_share_check(skb, GFP_ATOMIC);
  148. if (unlikely(!skb))
  149. goto out;
  150. if (unlikely(!llc_fixup_skb(skb)))
  151. goto drop;
  152. pdu = llc_pdu_sn_hdr(skb);
  153. if (unlikely(!pdu->dsap)) /* NULL DSAP, refer to station */
  154. goto handle_station;
  155. sap = llc_sap_find(pdu->dsap);
  156. if (unlikely(!sap)) {/* unknown SAP */
  157. dprintk("%s: llc_sap_find(%02X) failed!\n", __func__,
  158. pdu->dsap);
  159. goto drop;
  160. }
  161. /*
  162. * First the upper layer protocols that don't need the full
  163. * LLC functionality
  164. */
  165. rcv = rcu_dereference(sap->rcv_func);
  166. dest = llc_pdu_type(skb);
  167. if (unlikely(!dest || !llc_type_handlers[dest - 1])) {
  168. if (rcv)
  169. rcv(skb, dev, pt, orig_dev);
  170. else
  171. kfree_skb(skb);
  172. } else {
  173. if (rcv) {
  174. struct sk_buff *cskb = skb_clone(skb, GFP_ATOMIC);
  175. if (cskb)
  176. rcv(cskb, dev, pt, orig_dev);
  177. }
  178. llc_type_handlers[dest - 1](sap, skb);
  179. }
  180. llc_sap_put(sap);
  181. out:
  182. return 0;
  183. drop:
  184. kfree_skb(skb);
  185. goto out;
  186. handle_station:
  187. if (!llc_station_handler)
  188. goto drop;
  189. llc_station_handler(skb);
  190. goto out;
  191. }
  192. EXPORT_SYMBOL(llc_add_pack);
  193. EXPORT_SYMBOL(llc_remove_pack);
  194. EXPORT_SYMBOL(llc_set_station_handler);