1 /* SPDX-License-Identifier: GPL-2.0-or-later * 1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 2 /* 3 * INET An implementation of the TCP/I 3 * INET An implementation of the TCP/IP protocol suite for the LINUX 4 * operating system. INET is imp 4 * operating system. INET is implemented using the BSD Socket 5 * interface as the means of comm 5 * interface as the means of communication with the user level. 6 * 6 * 7 * Definitions for the RAW-IP mod 7 * Definitions for the RAW-IP module. 8 * 8 * 9 * Version: @(#)raw.h 1.0.2 05/07/ 9 * Version: @(#)raw.h 1.0.2 05/07/93 10 * 10 * 11 * Author: Fred N. van Kempen, <waltje@uW 11 * Author: Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> 12 */ 12 */ 13 #ifndef _RAW_H 13 #ifndef _RAW_H 14 #define _RAW_H 14 #define _RAW_H 15 15 16 #include <net/inet_sock.h> 16 #include <net/inet_sock.h> 17 #include <net/protocol.h> 17 #include <net/protocol.h> 18 #include <net/netns/hash.h> << 19 #include <linux/hash.h> << 20 #include <linux/icmp.h> 18 #include <linux/icmp.h> 21 19 22 extern struct proto raw_prot; 20 extern struct proto raw_prot; 23 21 24 extern struct raw_hashinfo raw_v4_hashinfo; 22 extern struct raw_hashinfo raw_v4_hashinfo; 25 bool raw_v4_match(struct net *net, const struc !! 23 struct sock *__raw_v4_lookup(struct net *net, struct sock *sk, 26 __be32 raddr, __be32 laddr, !! 24 unsigned short num, __be32 raddr, >> 25 __be32 laddr, int dif, int sdif); 27 26 28 int raw_abort(struct sock *sk, int err); 27 int raw_abort(struct sock *sk, int err); 29 void raw_icmp_error(struct sk_buff *, int, u32 28 void raw_icmp_error(struct sk_buff *, int, u32); 30 int raw_local_deliver(struct sk_buff *, int); 29 int raw_local_deliver(struct sk_buff *, int); 31 30 32 int raw_rcv(struct sock *, struct sk_buff *); 31 int raw_rcv(struct sock *, struct sk_buff *); 33 32 34 #define RAW_HTABLE_LOG 8 !! 33 #define RAW_HTABLE_SIZE MAX_INET_PROTOS 35 #define RAW_HTABLE_SIZE (1U << RAW_HTABLE_LOG) << 36 34 37 struct raw_hashinfo { 35 struct raw_hashinfo { 38 spinlock_t lock; !! 36 rwlock_t lock; 39 !! 37 struct hlist_head ht[RAW_HTABLE_SIZE]; 40 struct hlist_head ht[RAW_HTABLE_SIZE] << 41 }; 38 }; 42 39 43 static inline u32 raw_hashfunc(const struct ne << 44 { << 45 return hash_32(net_hash_mix(net) ^ pro << 46 } << 47 << 48 static inline void raw_hashinfo_init(struct ra << 49 { << 50 int i; << 51 << 52 spin_lock_init(&hashinfo->lock); << 53 for (i = 0; i < RAW_HTABLE_SIZE; i++) << 54 INIT_HLIST_HEAD(&hashinfo->ht[ << 55 } << 56 << 57 #ifdef CONFIG_PROC_FS 40 #ifdef CONFIG_PROC_FS 58 int raw_proc_init(void); 41 int raw_proc_init(void); 59 void raw_proc_exit(void); 42 void raw_proc_exit(void); 60 43 61 struct raw_iter_state { 44 struct raw_iter_state { 62 struct seq_net_private p; 45 struct seq_net_private p; 63 int bucket; 46 int bucket; 64 }; 47 }; 65 48 66 static inline struct raw_iter_state *raw_seq_p 49 static inline struct raw_iter_state *raw_seq_private(struct seq_file *seq) 67 { 50 { 68 return seq->private; 51 return seq->private; 69 } 52 } 70 void *raw_seq_start(struct seq_file *seq, loff 53 void *raw_seq_start(struct seq_file *seq, loff_t *pos); 71 void *raw_seq_next(struct seq_file *seq, void 54 void *raw_seq_next(struct seq_file *seq, void *v, loff_t *pos); 72 void raw_seq_stop(struct seq_file *seq, void * 55 void raw_seq_stop(struct seq_file *seq, void *v); 73 #endif 56 #endif 74 57 75 int raw_hash_sk(struct sock *sk); 58 int raw_hash_sk(struct sock *sk); 76 void raw_unhash_sk(struct sock *sk); 59 void raw_unhash_sk(struct sock *sk); 77 void raw_init(void); 60 void raw_init(void); 78 61 79 struct raw_sock { 62 struct raw_sock { 80 /* inet_sock has to be the first membe 63 /* inet_sock has to be the first member */ 81 struct inet_sock inet; 64 struct inet_sock inet; 82 struct icmp_filter filter; 65 struct icmp_filter filter; 83 u32 ipmr_table; 66 u32 ipmr_table; 84 }; 67 }; 85 68 86 #define raw_sk(ptr) container_of_const(ptr, st !! 69 static inline struct raw_sock *raw_sk(const struct sock *sk) >> 70 { >> 71 return (struct raw_sock *)sk; >> 72 } 87 73 88 static inline bool raw_sk_bound_dev_eq(struct 74 static inline bool raw_sk_bound_dev_eq(struct net *net, int bound_dev_if, 89 int dif 75 int dif, int sdif) 90 { 76 { 91 #if IS_ENABLED(CONFIG_NET_L3_MASTER_DEV) 77 #if IS_ENABLED(CONFIG_NET_L3_MASTER_DEV) 92 return inet_bound_dev_eq(READ_ONCE(net !! 78 return inet_bound_dev_eq(!!net->ipv4.sysctl_raw_l3mdev_accept, 93 bound_dev_if, 79 bound_dev_if, dif, sdif); 94 #else 80 #else 95 return inet_bound_dev_eq(true, bound_d 81 return inet_bound_dev_eq(true, bound_dev_if, dif, sdif); 96 #endif 82 #endif 97 } 83 } 98 84 99 #endif /* _RAW_H */ 85 #endif /* _RAW_H */ 100 86
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.