📄 in_msf.h
字号:
/* $KAME: in_msf.h,v 1.15 2004/05/26 10:08:00 itojun Exp $ *//* * Copyright (c) 1984-2005 Wind River Systems, Inc. * * The right to copy, distribute, modify or otherwise make use * of this software may be licensed only pursuant to the terms * of an applicable Wind River license agreement. *//* * Copyright (C) 1998 WIDE Project. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *//* * Copyright (c) 2002 INRIA. All rights reserved. * * Implementation of Internet Group Management Protocol, Version 3. * Developed by Hitoshi Asaeda, INRIA, February 2002. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of INRIA nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *//* * Implementation of Internet Group Management Protocol, Version 3. * * Developed by Hitoshi Asaeda, INRIA, February 2002. *//*modification history--------------------01c,25may05,kch Modified IMO_MSF_ALLOC() and IMO_MSF_FREE() to use DS_MALLOC() and DS_FREE().01b,19apr05,rp merged from comp_wn_ipv6_mld_interim-dev01a,24feb05,rp Added WR copyrights and mod history*/#ifndef _NETINET_INMSF_H_#define _NETINET_INMSF_H_#include <sys/queue.h>#include <netinet/ip_var.h>#ifdef __cplusplusextern "C" {#endif/* * Multicast source filters list per group address. */LIST_HEAD(ias_head, in_addr_source);#ifdef __FreeBSD__#ifdef MALLOC_DECLAREMALLOC_DECLARE(M_MSFILTER);MALLOC_DECLARE(M_IPMOPTS);#endif /* MALLOC_DECLARE */#endifstruct in_addr_source { struct sockaddr_in ias_addr; /* source address */ LIST_ENTRY(in_addr_source) ias_list; /* list of source addresses */ u_int ias_refcount; /* reference count of the source */};struct in_addr_slist { struct ias_head *head; /* head point of this list */ u_int16_t numsrc; /* num of sources of this list */};struct in_multi_source { u_int ims_mode; /* current source filter mode */ u_int ims_grpjoin; /* (*,G) join request bit */ struct in_addr_slist *ims_cur; /* current filtered source list */ struct in_addr_slist *ims_rec; /* recorded source address list */ struct in_addr_slist *ims_in; /* include source address list */ struct in_addr_slist *ims_ex; /* exclude source address list */ u_int ims_excnt; /* max source count of EX list */ struct in_addr_slist *ims_alw; /* pending ALLOW source address */ struct in_addr_slist *ims_blk; /* pending BLOCK source address */ struct in_addr_slist *ims_toin; /* pending TO_IN source address */ struct in_addr_slist *ims_toex; /* pending TO_EX source address */ u_int ims_timer; /* state-change report timer */ u_int ims_robvar; /* robusutness var. of grp record */};#ifdef _WRS_KERNEL/* * Filter definition of State Change Report of IGMP/MLD, given from the state * change of current filter mode and new filter mode. */#define REPORT_FILTER1 1 /* INCLUDE(A) -> INCLUDE(B) */#define REPORT_FILTER2 2 /* EXCLUDE(A) -> EXCLUDE(B) */#define REPORT_FILTER3 3 /* INCLUDE(A) -> EXCLUDE(B) */#define REPORT_FILTER4 4 /* EXCLUDE(A) -> INCLUDE(B) */#define IMS_ADD_SOURCE 1 /* request to add source to list */#define IMS_DELETE_SOURCE 2 /* request to delete source to list *//* * Filter definition of State Change Report, given from the state change of * current filter mode and new filter mode. */#define REPORT_FILTER1 1 /* INCLUDE(A) -> INCLUDE(B) */#define REPORT_FILTER2 2 /* EXCLUDE(A) -> EXCLUDE(B) */#define REPORT_FILTER3 3 /* INCLUDE(A) -> EXCLUDE(B) */#define REPORT_FILTER4 4 /* EXCLUDE(A) -> INCLUDE(B) */#define IGMP_JOINLEAVE_OPS(optname) \ (((optname) == IP_ADD_SOURCE_MEMBERSHIP) || \ ((optname) == IP_DROP_SOURCE_MEMBERSHIP) || \ ((optname) == MCAST_JOIN_SOURCE_GROUP) || \ ((optname) == MCAST_LEAVE_SOURCE_GROUP))#define IGMP_BLOCK_OPS(optname) \ (((optname) == IP_BLOCK_SOURCE) || \ ((optname) == IP_UNBLOCK_SOURCE) || \ ((optname) == MCAST_BLOCK_SOURCE) || \ ((optname) == MCAST_UNBLOCK_SOURCE))#define IGMP_MSFON_OPS(optname) \ (((optname) == IP_ADD_SOURCE_MEMBERSHIP) || \ ((optname) == IP_BLOCK_SOURCE) || \ ((optname) == MCAST_JOIN_SOURCE_GROUP) || \ ((optname) == MCAST_BLOCK_SOURCE))#define IGMP_MSFOFF_OPS(optname) \ (((optname) == IP_DROP_SOURCE_MEMBERSHIP) || \ ((optname) == IP_UNBLOCK_SOURCE) || \ ((optname) == MCAST_LEAVE_SOURCE_GROUP) || \ ((optname) == MCAST_UNBLOCK_SOURCE))#define IMO_MSF_ALLOC(msf) do { \ (msf) = (struct sock_msf *) \ DS_MALLOC(SOCK_MSF_DS_SZ, SOCK_MSF_DS_ID); \ if ((msf) == NULL) { \ error = ENOBUFS; \ break; \ } \ (msf)->msf_head = (struct msf_head *) \ DS_MALLOC(MSF_HEAD_DS_SZ, MSF_HEAD_DS_ID); \ if ((msf)->msf_head == NULL) { \ IMO_MSF_FREE((msf)); \ error = ENOBUFS; \ break; \ } \ LIST_INIT((msf)->msf_head); \ (msf)->msf_numsrc = 0; \ (msf)->msf_blkhead = (struct msf_head *) \ DS_MALLOC(MSF_HEAD_DS_SZ, MSF_HEAD_DS_ID); \ if ((msf)->msf_blkhead == NULL) { \ IMO_MSF_FREE((msf)); \ error = ENOBUFS; \ break; \ } \ LIST_INIT((msf)->msf_blkhead); \ (msf)->msf_blknumsrc = 0; \ (msf)->msf_grpjoin = 0; \} while (0)#define IMO_MSF_FREE(msf) { \ if ((msf)->msf_head != NULL) \ DS_FREE((msf)->msf_head, MSF_HEAD_DS_ID); \ if ((msf)->msf_blkhead != NULL) \ DS_FREE((msf)->msf_blkhead, MSF_HEAD_DS_ID); \ if ((msf) != NULL) \ DS_FREE ((msf), SOCK_MSF_DS_ID); \}/* * Macros for Protocol-Independent programming */#define SIN(x) ((struct sockaddr_in *)(x))#define SIN_ADDR(x) (SIN(x)->sin_addr.s_addr)#define SIN6(x) ((struct sockaddr_in6 *)(x))#define SIN6_ADDR(x) (&(SIN6(x)->sin6_addr))#define SIN6_ADDR16(x, y) \ (ntohs(*(const u_int16_t *)(const void *)(&(SIN6_ADDR(x)->s6_addr[y * 2]))))/* * Compares two sockaddrs; * Assuming both point to the same sockaddr_XX */#define SS_IS_ADDR_MULTICAST(x) \ (((struct sockaddr *)(x))->sa_family == AF_INET ? \ (ntohl(SIN_ADDR(x)) >> 24) == 224 : \ /* the endian of IN_MULTICAST() arg varies OS by OS */ \ ((struct sockaddr *)(x))->sa_family == AF_INET6 ? \ IN6_IS_ADDR_MULTICAST(SIN6_ADDR(x)) : \ 0)#define SS_IS_ADDR_UNSPECIFIED(x) \ (((struct sockaddr *)(x))->sa_family == AF_INET ? \ (ntohl(SIN_ADDR(x)) == INADDR_ANY) : \ ((struct sockaddr *)(x))->sa_family == AF_INET6 ? \ IN6_IS_ADDR_UNSPECIFIED(SIN6_ADDR(x)) : \ 0)#define IN_IS_LOCAL_GROUP(x) /* struct in_addr x */ \ ((ntohl((x).sin_addr.s_addr) & 0xffffff00) == 0xe0000000)#define SS_CMP(a, op, b) \ (sa_cmp((struct sockaddr *)(a), (struct sockaddr *)(b)) op 0)int in_addmultisrc(struct in_multi *, u_int16_t, struct sockaddr_storage *, u_int, int, struct ias_head **, u_int *, u_int16_t *);int in_delmultisrc(struct in_multi *, u_int16_t, struct sockaddr_storage *, u_int, int, struct ias_head **, u_int *, u_int16_t *);int in_modmultisrc(struct in_multi *, u_int16_t, struct sockaddr_storage *, u_int, u_int16_t, struct sockaddr_storage *, u_int, u_int, struct ias_head **, u_int *, u_int16_t *);void in_undomultisrc(struct in_multi *, u_int16_t, struct sockaddr_storage *, u_int, int);int in_get_new_msf_state(struct in_multi *, struct ias_head **, u_int *, u_int16_t *);int in_merge_msf_state(struct in_multi *, struct ias_head *, u_int, u_int16_t);void in_free_all_msf_source_list(struct in_multi *);void in_free_msf_source_list(struct ias_head *);void in_free_msf_source_addr(struct in_addr_slist *, struct sockaddr_in *);void in_clear_all_pending_report(struct in_multi *);int in_merge_msf_source_addr(struct in_addr_slist *, struct sockaddr_in *, int);int ip_setmopt_srcfilter(struct socket *, struct ip_msfilter **);int ip_getmopt_srcfilter(struct socket *, struct ip_msfilter **);int sock_setmopt_srcfilter(struct socket *, struct group_filter **);int sock_getmopt_srcfilter(struct socket *, struct group_filter **);int in_getmopt_source_list(struct sock_msf *, u_int16_t *, struct sockaddr_storage **, u_int *);int in_setmopt_source_addr(struct sockaddr_storage *, struct sock_msf *, int);int in_setmopt_source_list(struct sock_msf *, u_int16_t, struct sockaddr_storage *, struct sockaddr_storage *, u_int, u_int16_t *, u_int16_t *);void in_freemopt_source_list(struct sock_msf *, struct msf_head *, struct msf_head *);void in_cleanmopt_source_addr(struct sock_msf *, int);void in_undomopt_source_addr(struct sock_msf *, int);void in_undomopt_source_list(struct sock_msf *, u_int);int sa_cmp(struct sockaddr *, struct sockaddr *);int match_msf4_per_if(struct in_multi *, struct in_addr *, struct in_addr *);int match_msf4_per_socket(struct inpcb *, struct in_addr *, struct in_addr *);#endif /* _WRS_KERNEL */#ifdef __cplusplus}#endif#endif /* _NETINET_INMSF_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -