blob: 9e4b6bcf6920d216530c9ac89cdb197a32bed473 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * llc_output.c - LLC minimal output path
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 version 2 as published by the Free Software
9 * Foundation.
10 * This program is distributed without any warranty or implied warranty
11 * of merchantability or fitness for a particular purpose.
12 *
13 * See the GNU General Public License version 2 for more details.
14 */
15
16#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/skbuff.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040019#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <net/llc.h>
21#include <net/llc_pdu.h>
22
23/**
24 * llc_mac_hdr_init - fills MAC header fields
25 * @skb: Address of the frame to initialize its MAC header
26 * @sa: The MAC source address
27 * @da: The MAC destination address
28 *
29 * Fills MAC header fields, depending on MAC type. Returns 0, If MAC type
30 * is a valid type and initialization completes correctly 1, otherwise.
31 */
Stephen Hemmingerf4ad2b12006-03-20 22:59:36 -080032int llc_mac_hdr_init(struct sk_buff *skb,
33 const unsigned char *sa, const unsigned char *da)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
Octavian Purdilabf9ae532009-12-26 11:50:59 +000035 int rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37 switch (skb->dev->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 case ARPHRD_ETHER:
Octavian Purdilabf9ae532009-12-26 11:50:59 +000039 case ARPHRD_LOOPBACK:
40 rc = dev_hard_header(skb, skb->dev, ETH_P_802_2, da, sa,
41 skb->len);
42 if (rc > 0)
43 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 default:
Dave Jones0f1a24c2014-01-28 16:30:52 -050046 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 }
48 return rc;
49}
50
51/**
52 * llc_build_and_send_ui_pkt - unitdata request interface for upper layers
53 * @sap: sap to use
54 * @skb: packet to send
55 * @dmac: destination mac address
56 * @dsap: destination sap
57 *
58 * Upper layers calls this function when upper layer wants to send data
59 * using connection-less mode communication (UI pdu).
60 *
61 * Accept data frame from network layer to be sent using connection-
62 * less mode communication; timeout/retries handled by network layer;
63 * package primitive as an event and send to SAP event handler
64 */
65int llc_build_and_send_ui_pkt(struct llc_sap *sap, struct sk_buff *skb,
66 unsigned char *dmac, unsigned char dsap)
67{
68 int rc;
69 llc_pdu_header_init(skb, LLC_PDU_TYPE_U, sap->laddr.lsap,
70 dsap, LLC_PDU_CMD);
71 llc_pdu_init_as_ui_cmd(skb);
72 rc = llc_mac_hdr_init(skb, skb->dev->dev_addr, dmac);
Arnaldo Carvalho de Melo249ff1c2005-09-22 04:32:10 -030073 if (likely(!rc))
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 rc = dev_queue_xmit(skb);
Eric Dumazet724a84a2019-05-27 17:35:52 -070075 else
76 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return rc;
78}
79
80EXPORT_SYMBOL(llc_mac_hdr_init);
81EXPORT_SYMBOL(llc_build_and_send_ui_pkt);