aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ieee802154.h
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-11-02 04:18:45 +0100
committerMarcel Holtmann <marcel@holtmann.org>2014-11-02 04:51:08 +0100
commitcb904b0a16305f9b2a98200cc6eb9dc3610278b0 (patch)
tree131593c09e3b67bc9fccdc9c6dc861eeaef055b3 /include/linux/ieee802154.h
parentmac802154: move phy settings into netlink receive (diff)
downloadlinux-dev-cb904b0a16305f9b2a98200cc6eb9dc3610278b0.tar.xz
linux-dev-cb904b0a16305f9b2a98200cc6eb9dc3610278b0.zip
ieee802154: add extended address validation helper
This patch introduce an extended address validation helper to check if an extended address is valid or not. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/linux/ieee802154.h')
-rw-r--r--include/linux/ieee802154.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/linux/ieee802154.h b/include/linux/ieee802154.h
index 6e50a2a1d485..9bba5ca7f0ad 100644
--- a/include/linux/ieee802154.h
+++ b/include/linux/ieee802154.h
@@ -197,4 +197,18 @@ static inline bool ieee802154_is_valid_psdu_len(const u8 len)
return (len >= IEEE802154_MIN_PSDU_LEN && len <= IEEE802154_MTU);
}
+/**
+ * ieee802154_is_valid_psdu_len - check if extended addr is valid
+ * @addr: extended addr to check
+ */
+static inline bool ieee802154_is_valid_extended_addr(const __le64 addr)
+{
+ /* These EUI-64 addresses are reserved by IEEE. 0xffffffffffffffff
+ * is used internally as extended to short address broadcast mapping.
+ * This is currently a workaround because neighbor discovery can't
+ * deal with short addresses types right now.
+ */
+ return ((addr != 0x0000000000000000) || (addr != 0xffffffffffffffff));
+}
+
#endif /* LINUX_IEEE802154_H */