2019-05-27 06:55:01 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* INET An implementation of the TCP/IP protocol suite for the LINUX
|
|
|
|
* operating system. INET is implemented using the BSD Socket
|
|
|
|
* interface as the means of communication with the user level.
|
|
|
|
*
|
|
|
|
* Definitions of the Internet Protocol.
|
|
|
|
*
|
|
|
|
* Version: @(#)in.h 1.0.1 04/21/93
|
|
|
|
*
|
|
|
|
* Authors: Original taken from the GNU Project <netinet/in.h> file.
|
|
|
|
* Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
|
|
|
|
*/
|
|
|
|
#ifndef _LINUX_IN_H
|
|
|
|
#define _LINUX_IN_H
|
|
|
|
|
2007-12-16 21:42:49 +00:00
|
|
|
|
2010-08-17 19:03:44 +00:00
|
|
|
#include <linux/errno.h>
|
2012-10-13 09:46:48 +00:00
|
|
|
#include <uapi/linux/in.h>
|
2010-08-17 19:03:44 +00:00
|
|
|
|
|
|
|
static inline int proto_ports_offset(int proto)
|
|
|
|
{
|
|
|
|
switch (proto) {
|
|
|
|
case IPPROTO_TCP:
|
|
|
|
case IPPROTO_UDP:
|
|
|
|
case IPPROTO_DCCP:
|
|
|
|
case IPPROTO_ESP: /* SPI */
|
|
|
|
case IPPROTO_SCTP:
|
|
|
|
case IPPROTO_UDPLITE:
|
|
|
|
return 0;
|
|
|
|
case IPPROTO_AH: /* SPI */
|
|
|
|
return 4;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-16 21:42:49 +00:00
|
|
|
static inline bool ipv4_is_loopback(__be32 addr)
|
|
|
|
{
|
|
|
|
return (addr & htonl(0xff000000)) == htonl(0x7f000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool ipv4_is_multicast(__be32 addr)
|
|
|
|
{
|
|
|
|
return (addr & htonl(0xf0000000)) == htonl(0xe0000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool ipv4_is_local_multicast(__be32 addr)
|
|
|
|
{
|
|
|
|
return (addr & htonl(0xffffff00)) == htonl(0xe0000000);
|
|
|
|
}
|
|
|
|
|
2008-01-21 11:18:08 +00:00
|
|
|
static inline bool ipv4_is_lbcast(__be32 addr)
|
2007-12-16 21:42:49 +00:00
|
|
|
{
|
2008-01-21 11:18:08 +00:00
|
|
|
/* limited broadcast */
|
2008-03-18 05:48:46 +00:00
|
|
|
return addr == htonl(INADDR_BROADCAST);
|
2007-12-16 21:42:49 +00:00
|
|
|
}
|
|
|
|
|
2019-01-21 06:26:28 +00:00
|
|
|
static inline bool ipv4_is_all_snoopers(__be32 addr)
|
|
|
|
{
|
|
|
|
return addr == htonl(INADDR_ALLSNOOPERS_GROUP);
|
|
|
|
}
|
|
|
|
|
2007-12-16 21:42:49 +00:00
|
|
|
static inline bool ipv4_is_zeronet(__be32 addr)
|
|
|
|
{
|
|
|
|
return (addr & htonl(0xff000000)) == htonl(0x00000000);
|
|
|
|
}
|
|
|
|
|
2007-11-29 11:11:40 +00:00
|
|
|
/* Special-Use IPv4 Addresses (RFC3330) */
|
2007-12-16 21:42:49 +00:00
|
|
|
|
|
|
|
static inline bool ipv4_is_private_10(__be32 addr)
|
|
|
|
{
|
|
|
|
return (addr & htonl(0xff000000)) == htonl(0x0a000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool ipv4_is_private_172(__be32 addr)
|
|
|
|
{
|
|
|
|
return (addr & htonl(0xfff00000)) == htonl(0xac100000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool ipv4_is_private_192(__be32 addr)
|
|
|
|
{
|
|
|
|
return (addr & htonl(0xffff0000)) == htonl(0xc0a80000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool ipv4_is_linklocal_169(__be32 addr)
|
|
|
|
{
|
|
|
|
return (addr & htonl(0xffff0000)) == htonl(0xa9fe0000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool ipv4_is_anycast_6to4(__be32 addr)
|
|
|
|
{
|
|
|
|
return (addr & htonl(0xffffff00)) == htonl(0xc0586300);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool ipv4_is_test_192(__be32 addr)
|
|
|
|
{
|
|
|
|
return (addr & htonl(0xffffff00)) == htonl(0xc0000200);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool ipv4_is_test_198(__be32 addr)
|
|
|
|
{
|
|
|
|
return (addr & htonl(0xfffe0000)) == htonl(0xc6120000);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* _LINUX_IN_H */
|