2 * llc_input.c - Minimal input path for LLC
4 * Copyright (c) 1997 by Procom Technology, Inc.
5 * 2001-2003 by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
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.
12 * See the GNU General Public License for more details.
14 #include <linux/netdevice.h>
15 #include <linux/slab.h>
16 #include <linux/export.h>
17 #include <net/net_namespace.h>
19 #include <net/llc_pdu.h>
20 #include <net/llc_sap.h>
23 #define dprintk(args...) printk(KERN_DEBUG args)
25 #define dprintk(args...)
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.
34 static void (*llc_station_handler
)(struct sk_buff
*skb
);
37 * Packet handlers for LLC_DEST_SAP and LLC_DEST_CONN.
39 static void (*llc_type_handlers
[2])(struct llc_sap
*sap
,
42 void llc_add_pack(int type
, void (*handler
)(struct llc_sap
*sap
,
45 smp_wmb(); /* ensure initialisation is complete before it's called */
46 if (type
== LLC_DEST_SAP
|| type
== LLC_DEST_CONN
)
47 llc_type_handlers
[type
- 1] = handler
;
50 void llc_remove_pack(int type
)
52 if (type
== LLC_DEST_SAP
|| type
== LLC_DEST_CONN
)
53 llc_type_handlers
[type
- 1] = NULL
;
57 void llc_set_station_handler(void (*handler
)(struct sk_buff
*skb
))
59 /* Ensure initialisation is complete before it's called */
63 llc_station_handler
= handler
;
70 * llc_pdu_type - returns which LLC component must handle for PDU
73 * This function returns which LLC component must handle this PDU.
75 static __inline__
int llc_pdu_type(struct sk_buff
*skb
)
77 int type
= LLC_DEST_CONN
; /* I-PDU or S-PDU type */
78 struct llc_pdu_sn
*pdu
= llc_pdu_sn_hdr(skb
);
80 if ((pdu
->ctrl_1
& LLC_PDU_TYPE_MASK
) != LLC_PDU_TYPE_U
)
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
:
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
:
95 type
= LLC_DEST_INVALID
;
103 * llc_fixup_skb - initializes skb pointers
104 * @skb: This argument points to incoming skb
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.
111 static inline int llc_fixup_skb(struct sk_buff
*skb
)
114 struct llc_pdu_un
*pdu
;
116 if (unlikely(!pskb_may_pull(skb
, sizeof(*pdu
))))
119 pdu
= (struct llc_pdu_un
*)skb
->data
;
120 if ((pdu
->ctrl_1
& LLC_PDU_TYPE_MASK
) == LLC_PDU_TYPE_U
)
124 if (unlikely(!pskb_may_pull(skb
, llc_len
)))
127 skb_pull(skb
, llc_len
);
128 skb_reset_transport_header(skb
);
129 if (skb
->protocol
== htons(ETH_P_802_2
)) {
133 if (skb
->mac_len
< ETH_HLEN
)
136 pdulen
= eth_hdr(skb
)->h_proto
;
137 data_size
= ntohs(pdulen
) - llc_len
;
140 !pskb_may_pull(skb
, data_size
))
142 if (unlikely(pskb_trim_rcsum(skb
, data_size
)))
149 * llc_rcv - 802.2 entry point from net lower layers
151 * @dev: device that receive pdu
153 * @orig_dev: the original receive net device
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.
161 int llc_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
162 struct packet_type
*pt
, struct net_device
*orig_dev
)
165 struct llc_pdu_sn
*pdu
;
167 int (*rcv
)(struct sk_buff
*, struct net_device
*,
168 struct packet_type
*, struct net_device
*);
169 void (*sta_handler
)(struct sk_buff
*skb
);
170 void (*sap_handler
)(struct llc_sap
*sap
, struct sk_buff
*skb
);
173 * When the interface is in promisc. mode, drop all the crap that it
174 * receives, do not try to analyse it.
176 if (unlikely(skb
->pkt_type
== PACKET_OTHERHOST
)) {
177 dprintk("%s: PACKET_OTHERHOST\n", __func__
);
180 skb
= skb_share_check(skb
, GFP_ATOMIC
);
183 if (unlikely(!llc_fixup_skb(skb
)))
185 pdu
= llc_pdu_sn_hdr(skb
);
186 if (unlikely(!pdu
->dsap
)) /* NULL DSAP, refer to station */
188 sap
= llc_sap_find(pdu
->dsap
);
189 if (unlikely(!sap
)) {/* unknown SAP */
190 dprintk("%s: llc_sap_find(%02X) failed!\n", __func__
,
195 * First the upper layer protocols that don't need the full
198 rcv
= rcu_dereference(sap
->rcv_func
);
199 dest
= llc_pdu_type(skb
);
200 sap_handler
= dest
? READ_ONCE(llc_type_handlers
[dest
- 1]) : NULL
;
201 if (unlikely(!sap_handler
)) {
203 rcv(skb
, dev
, pt
, orig_dev
);
208 struct sk_buff
*cskb
= skb_clone(skb
, GFP_ATOMIC
);
210 rcv(cskb
, dev
, pt
, orig_dev
);
212 sap_handler(sap
, skb
);
221 sta_handler
= READ_ONCE(llc_station_handler
);
228 EXPORT_SYMBOL(llc_add_pack
);
229 EXPORT_SYMBOL(llc_remove_pack
);
230 EXPORT_SYMBOL(llc_set_station_handler
);