llc_input.c 5.9 KB

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