blob: 51bccfb00a9cd9f16318bbe9a8cc3fe2460912b1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040016#include <linux/export.h>
Eric W. Biedermane730c152007-09-17 11:53:39 -070017#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <net/llc.h>
19#include <net/llc_pdu.h>
20#include <net/llc_sap.h>
21
22#if 0
23#define dprintk(args...) printk(KERN_DEBUG args)
24#else
25#define dprintk(args...)
26#endif
27
28/*
29 * Packet handler for the station, registerable because in the minimal
30 * LLC core that is taking shape only the very minimal subset of LLC that
31 * is needed for things like IPX, Appletalk, etc will stay, with all the
32 * rest in the llc1 and llc2 modules.
33 */
34static void (*llc_station_handler)(struct sk_buff *skb);
35
36/*
37 * Packet handlers for LLC_DEST_SAP and LLC_DEST_CONN.
38 */
39static void (*llc_type_handlers[2])(struct llc_sap *sap,
40 struct sk_buff *skb);
41
42void llc_add_pack(int type, void (*handler)(struct llc_sap *sap,
43 struct sk_buff *skb))
44{
Ben Hutchingsaadf31d2012-08-13 02:50:55 +000045 smp_wmb(); /* ensure initialisation is complete before it's called */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 if (type == LLC_DEST_SAP || type == LLC_DEST_CONN)
47 llc_type_handlers[type - 1] = handler;
48}
49
50void llc_remove_pack(int type)
51{
52 if (type == LLC_DEST_SAP || type == LLC_DEST_CONN)
53 llc_type_handlers[type - 1] = NULL;
Ben Hutchingsaadf31d2012-08-13 02:50:55 +000054 synchronize_net();
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
57void llc_set_station_handler(void (*handler)(struct sk_buff *skb))
58{
Ben Hutchingsaadf31d2012-08-13 02:50:55 +000059 /* Ensure initialisation is complete before it's called */
60 if (handler)
61 smp_wmb();
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 llc_station_handler = handler;
Ben Hutchingsaadf31d2012-08-13 02:50:55 +000064
65 if (!handler)
66 synchronize_net();
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
69/**
70 * llc_pdu_type - returns which LLC component must handle for PDU
71 * @skb: input skb
72 *
73 * This function returns which LLC component must handle this PDU.
74 */
75static __inline__ int llc_pdu_type(struct sk_buff *skb)
76{
77 int type = LLC_DEST_CONN; /* I-PDU or S-PDU type */
78 struct llc_pdu_sn *pdu = llc_pdu_sn_hdr(skb);
79
80 if ((pdu->ctrl_1 & LLC_PDU_TYPE_MASK) != LLC_PDU_TYPE_U)
81 goto out;
82 switch (LLC_U_PDU_CMD(pdu)) {
83 case LLC_1_PDU_CMD_XID:
84 case LLC_1_PDU_CMD_UI:
85 case LLC_1_PDU_CMD_TEST:
86 type = LLC_DEST_SAP;
87 break;
88 case LLC_2_PDU_CMD_SABME:
89 case LLC_2_PDU_CMD_DISC:
90 case LLC_2_PDU_RSP_UA:
91 case LLC_2_PDU_RSP_DM:
92 case LLC_2_PDU_RSP_FRMR:
93 break;
94 default:
95 type = LLC_DEST_INVALID;
96 break;
97 }
98out:
99 return type;
100}
101
102/**
103 * llc_fixup_skb - initializes skb pointers
104 * @skb: This argument points to incoming skb
105 *
106 * Initializes internal skb pointer to start of network layer by deriving
107 * length of LLC header; finds length of LLC control field in LLC header
108 * by looking at the two lowest-order bits of the first control field
109 * byte; field is either 3 or 4 bytes long.
110 */
111static inline int llc_fixup_skb(struct sk_buff *skb)
112{
113 u8 llc_len = 2;
Jochen Friedrich096f0eb2005-09-22 04:48:46 -0300114 struct llc_pdu_un *pdu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Arnaldo Carvalho de Meloaf426d32005-09-22 03:59:22 -0300116 if (unlikely(!pskb_may_pull(skb, sizeof(*pdu))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return 0;
118
Jochen Friedrich096f0eb2005-09-22 04:48:46 -0300119 pdu = (struct llc_pdu_un *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if ((pdu->ctrl_1 & LLC_PDU_TYPE_MASK) == LLC_PDU_TYPE_U)
121 llc_len = 1;
122 llc_len += 2;
Jochen Friedrich096f0eb2005-09-22 04:48:46 -0300123
124 if (unlikely(!pskb_may_pull(skb, llc_len)))
125 return 0;
126
Arnaldo Carvalho de Melob0e380b12007-04-10 21:21:55 -0700127 skb->transport_header += llc_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 skb_pull(skb, llc_len);
129 if (skb->protocol == htons(ETH_P_802_2)) {
Willem de Bruijn7b3ba182023-10-25 19:42:38 -0400130 __be16 pdulen;
131 s32 data_size;
132
133 if (skb->mac_len < ETH_HLEN)
134 return 0;
135
136 pdulen = eth_hdr(skb)->h_proto;
137 data_size = ntohs(pdulen) - llc_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Joonwoo Park27785d82008-03-28 16:27:33 -0700139 if (data_size < 0 ||
David S. Milleraa867352011-04-11 18:59:05 -0700140 !pskb_may_pull(skb, data_size))
Joonwoo Park27785d82008-03-28 16:27:33 -0700141 return 0;
David S. Miller5185db02006-04-19 15:37:13 -0700142 if (unlikely(pskb_trim_rcsum(skb, data_size)))
143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145 return 1;
146}
147
148/**
149 * llc_rcv - 802.2 entry point from net lower layers
150 * @skb: received pdu
151 * @dev: device that receive pdu
152 * @pt: packet type
Andrew Lunn74c950c2020-07-13 01:15:04 +0200153 * @orig_dev: the original receive net device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 *
155 * When the system receives a 802.2 frame this function is called. It
156 * checks SAP and connection of received pdu and passes frame to
157 * llc_{station,sap,conn}_rcv for sending to proper state machine. If
158 * the frame is related to a busy connection (a connection is sending
159 * data now), it queues this frame in the connection's backlog.
160 */
161int llc_rcv(struct sk_buff *skb, struct net_device *dev,
David S. Millerf2ccd8fa2005-08-09 19:34:12 -0700162 struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 struct llc_sap *sap;
165 struct llc_pdu_sn *pdu;
166 int dest;
Stephen Hemminger23dbe792006-05-25 15:09:37 -0700167 int (*rcv)(struct sk_buff *, struct net_device *,
168 struct packet_type *, struct net_device *);
Ben Hutchingsaadf31d2012-08-13 02:50:55 +0000169 void (*sta_handler)(struct sk_buff *skb);
170 void (*sap_handler)(struct llc_sap *sap, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 /*
173 * When the interface is in promisc. mode, drop all the crap that it
174 * receives, do not try to analyse it.
175 */
176 if (unlikely(skb->pkt_type == PACKET_OTHERHOST)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800177 dprintk("%s: PACKET_OTHERHOST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 goto drop;
179 }
180 skb = skb_share_check(skb, GFP_ATOMIC);
181 if (unlikely(!skb))
182 goto out;
183 if (unlikely(!llc_fixup_skb(skb)))
184 goto drop;
185 pdu = llc_pdu_sn_hdr(skb);
186 if (unlikely(!pdu->dsap)) /* NULL DSAP, refer to station */
187 goto handle_station;
188 sap = llc_sap_find(pdu->dsap);
189 if (unlikely(!sap)) {/* unknown SAP */
Harvey Harrison0dc47872008-03-05 20:47:47 -0800190 dprintk("%s: llc_sap_find(%02X) failed!\n", __func__,
YOSHIFUJI Hideakid57b1862007-02-09 23:25:01 +0900191 pdu->dsap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 goto drop;
193 }
194 /*
195 * First the upper layer protocols that don't need the full
196 * LLC functionality
197 */
Stephen Hemminger23dbe792006-05-25 15:09:37 -0700198 rcv = rcu_dereference(sap->rcv_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 dest = llc_pdu_type(skb);
Mark Rutland6aa7de02017-10-23 14:07:29 -0700200 sap_handler = dest ? READ_ONCE(llc_type_handlers[dest - 1]) : NULL;
Ben Hutchingsaadf31d2012-08-13 02:50:55 +0000201 if (unlikely(!sap_handler)) {
Changli Gao696ea472011-02-22 01:55:18 +0000202 if (rcv)
203 rcv(skb, dev, pt, orig_dev);
204 else
205 kfree_skb(skb);
206 } else {
207 if (rcv) {
208 struct sk_buff *cskb = skb_clone(skb, GFP_ATOMIC);
209 if (cskb)
210 rcv(cskb, dev, pt, orig_dev);
211 }
Ben Hutchingsaadf31d2012-08-13 02:50:55 +0000212 sap_handler(sap, skb);
Changli Gao696ea472011-02-22 01:55:18 +0000213 }
Arnaldo Carvalho de Melo6e2144b2005-09-22 04:43:05 -0300214 llc_sap_put(sap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215out:
216 return 0;
217drop:
218 kfree_skb(skb);
219 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220handle_station:
Mark Rutland6aa7de02017-10-23 14:07:29 -0700221 sta_handler = READ_ONCE(llc_station_handler);
Ben Hutchingsaadf31d2012-08-13 02:50:55 +0000222 if (!sta_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 goto drop;
Ben Hutchingsaadf31d2012-08-13 02:50:55 +0000224 sta_handler(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 goto out;
226}
227
228EXPORT_SYMBOL(llc_add_pack);
229EXPORT_SYMBOL(llc_remove_pack);
230EXPORT_SYMBOL(llc_set_station_handler);