2014-02-28 14:32:50 +08:00
|
|
|
#ifndef __IEEE802154_6LOWPAN_REASSEMBLY_H__
|
|
|
|
#define __IEEE802154_6LOWPAN_REASSEMBLY_H__
|
|
|
|
|
|
|
|
#include <net/inet_frag.h>
|
|
|
|
|
|
|
|
struct lowpan_create_arg {
|
|
|
|
__be16 tag;
|
|
|
|
u16 d_size;
|
2014-03-15 04:23:57 +08:00
|
|
|
const struct ieee802154_addr_sa *src;
|
|
|
|
const struct ieee802154_addr_sa *dst;
|
2014-02-28 14:32:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Equivalent of ipv4 struct ip
|
|
|
|
*/
|
|
|
|
struct lowpan_frag_queue {
|
|
|
|
struct inet_frag_queue q;
|
|
|
|
|
|
|
|
__be16 tag;
|
|
|
|
u16 d_size;
|
2014-03-15 04:23:57 +08:00
|
|
|
struct ieee802154_addr_sa saddr;
|
|
|
|
struct ieee802154_addr_sa daddr;
|
2014-02-28 14:32:50 +08:00
|
|
|
};
|
|
|
|
|
2014-03-15 04:23:57 +08:00
|
|
|
static inline u32 ieee802154_addr_hash(const struct ieee802154_addr_sa *a)
|
2014-02-28 14:32:50 +08:00
|
|
|
{
|
|
|
|
switch (a->addr_type) {
|
|
|
|
case IEEE802154_ADDR_LONG:
|
|
|
|
return (__force u32)((((u32 *)a->hwaddr))[0] ^
|
|
|
|
((u32 *)(a->hwaddr))[1]);
|
|
|
|
case IEEE802154_ADDR_SHORT:
|
|
|
|
return (__force u32)(a->short_addr);
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-15 04:23:57 +08:00
|
|
|
static inline bool
|
|
|
|
ieee802154_addr_addr_equal(const struct ieee802154_addr_sa *a1,
|
|
|
|
const struct ieee802154_addr_sa *a2)
|
2014-02-28 14:32:50 +08:00
|
|
|
{
|
|
|
|
if (a1->pan_id != a2->pan_id)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (a1->addr_type != a2->addr_type)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (a1->addr_type) {
|
|
|
|
case IEEE802154_ADDR_LONG:
|
|
|
|
if (memcmp(a1->hwaddr, a2->hwaddr, IEEE802154_ADDR_LEN))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case IEEE802154_ADDR_SHORT:
|
|
|
|
if (a1->short_addr != a2->short_addr)
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int lowpan_frag_rcv(struct sk_buff *skb, const u8 frag_type);
|
|
|
|
void lowpan_net_frag_exit(void);
|
|
|
|
int lowpan_net_frag_init(void);
|
|
|
|
|
|
|
|
#endif /* __IEEE802154_6LOWPAN_REASSEMBLY_H__ */
|