llc_input.c 5.3 KB

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