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.
16 #include <linux/if_ether.h>
17 #include <linux/list.h>
18 #include <linux/spinlock.h>
19 #include <linux/rculist_nulls.h>
20 #include <linux/hash.h>
21 #include <linux/jhash.h>
23 #include <linux/atomic.h>
31 unsigned char mac
[IFHWADDRLEN
];
34 #define LLC_SAP_STATE_INACTIVE 1
35 #define LLC_SAP_STATE_ACTIVE 2
37 #define LLC_SK_DEV_HASH_BITS 6
38 #define LLC_SK_DEV_HASH_ENTRIES (1<<LLC_SK_DEV_HASH_BITS)
40 #define LLC_SK_LADDR_HASH_BITS 6
41 #define LLC_SK_LADDR_HASH_ENTRIES (1<<LLC_SK_LADDR_HASH_BITS)
44 * struct llc_sap - Defines the SAP component
46 * @station - station this sap belongs to
48 * @p_bit - only lowest-order bit used
49 * @f_bit - only lowest-order bit used
50 * @laddr - SAP value in this 'lsap'
51 * @node - entry in station sap_list
52 * @sk_list - LLC sockets this one manages
59 int (*rcv_func
)(struct sk_buff
*skb
,
60 struct net_device
*dev
,
61 struct packet_type
*pt
,
62 struct net_device
*orig_dev
);
63 struct llc_addr laddr
;
64 struct list_head node
;
67 struct hlist_nulls_head sk_laddr_hash
[LLC_SK_LADDR_HASH_ENTRIES
];
68 struct hlist_head sk_dev_hash
[LLC_SK_DEV_HASH_ENTRIES
];
73 struct hlist_head
*llc_sk_dev_hash(struct llc_sap
*sap
, int ifindex
)
75 return &sap
->sk_dev_hash
[ifindex
% LLC_SK_DEV_HASH_ENTRIES
];
79 u32
llc_sk_laddr_hashfn(struct llc_sap
*sap
, const struct llc_addr
*laddr
)
81 return hash_32(jhash(laddr
->mac
, sizeof(laddr
->mac
), 0),
82 LLC_SK_LADDR_HASH_BITS
);
86 struct hlist_nulls_head
*llc_sk_laddr_hash(struct llc_sap
*sap
,
87 const struct llc_addr
*laddr
)
89 return &sap
->sk_laddr_hash
[llc_sk_laddr_hashfn(sap
, laddr
)];
92 #define LLC_DEST_INVALID 0 /* Invalid LLC PDU type */
93 #define LLC_DEST_SAP 1 /* Type 1 goes here */
94 #define LLC_DEST_CONN 2 /* Type 2 goes here */
96 extern struct list_head llc_sap_list
;
98 int llc_rcv(struct sk_buff
*skb
, struct net_device
*dev
, struct packet_type
*pt
,
99 struct net_device
*orig_dev
);
101 int llc_mac_hdr_init(struct sk_buff
*skb
, const unsigned char *sa
,
102 const unsigned char *da
);
104 void llc_add_pack(int type
,
105 void (*handler
)(struct llc_sap
*sap
, struct sk_buff
*skb
));
106 void llc_remove_pack(int type
);
108 void llc_set_station_handler(void (*handler
)(struct sk_buff
*skb
));
110 struct llc_sap
*llc_sap_open(unsigned char lsap
,
111 int (*rcv
)(struct sk_buff
*skb
,
112 struct net_device
*dev
,
113 struct packet_type
*pt
,
114 struct net_device
*orig_dev
));
115 static inline void llc_sap_hold(struct llc_sap
*sap
)
117 refcount_inc(&sap
->refcnt
);
120 static inline bool llc_sap_hold_safe(struct llc_sap
*sap
)
122 return refcount_inc_not_zero(&sap
->refcnt
);
125 void llc_sap_close(struct llc_sap
*sap
);
127 static inline void llc_sap_put(struct llc_sap
*sap
)
129 if (refcount_dec_and_test(&sap
->refcnt
))
133 struct llc_sap
*llc_sap_find(unsigned char sap_value
);
135 int llc_build_and_send_ui_pkt(struct llc_sap
*sap
, struct sk_buff
*skb
,
136 unsigned char *dmac
, unsigned char dsap
);
138 void llc_sap_handler(struct llc_sap
*sap
, struct sk_buff
*skb
);
139 void llc_conn_handler(struct llc_sap
*sap
, struct sk_buff
*skb
);
141 void llc_station_init(void);
142 void llc_station_exit(void);
144 #ifdef CONFIG_PROC_FS
145 int llc_proc_init(void);
146 void llc_proc_exit(void);
148 #define llc_proc_init() (0)
149 #define llc_proc_exit() do { } while(0)
150 #endif /* CONFIG_PROC_FS */
152 int llc_sysctl_init(void);
153 void llc_sysctl_exit(void);
155 extern int sysctl_llc2_ack_timeout
;
156 extern int sysctl_llc2_busy_timeout
;
157 extern int sysctl_llc2_p_timeout
;
158 extern int sysctl_llc2_rej_timeout
;
160 #define llc_sysctl_init() (0)
161 #define llc_sysctl_exit() do { } while(0)
162 #endif /* CONFIG_SYSCTL */