Home
last modified time | relevance | path

Searched refs:tcphdr (Results 1 – 25 of 188) sorted by relevance

12345678

/linux/tools/testing/selftests/bpf/progs/
H A Dcgroup_tcp_skb.c25 int needed_tcp_pkt(struct __sk_buff *skb, struct tcphdr *tcph) in needed_tcp_pkt()
48 static int egress_accept(struct tcphdr *tcph) in egress_accept()
61 static int ingress_accept(struct tcphdr *tcph) in ingress_accept()
84 static int egress_connect(struct tcphdr *tcph) in egress_connect()
97 static int ingress_connect(struct tcphdr *tcph) in ingress_connect()
111 static int egress_close_remote(struct tcphdr *tcph) in egress_close_remote()
135 static int ingress_close_remote(struct tcphdr *tcph) in ingress_close_remote()
156 static int egress_close_local(struct tcphdr *tcph) in egress_close_local()
176 static int ingress_close_local(struct tcphdr *tcph) in ingress_close_local()
208 struct tcphdr tcph; in server_egress()
[all …]
H A Dtest_parse_tcp_hdr_opt_dynptr.c77 __u8 buffer[sizeof(struct tcphdr)] = {}; in xdp_ingress_v6()
79 struct tcphdr *tcp_hdr; in xdp_ingress_v6()
94 tcp_hdr_opt_len = (tcp_hdr->doff * 4) - sizeof(struct tcphdr); in xdp_ingress_v6()
100 off += sizeof(struct tcphdr); in xdp_ingress_v6()
H A Dtest_parse_tcp_hdr_opt.c88 struct tcphdr *tcp_hdr; in xdp_ingress_v6()
93 tcp_hdr = (struct tcphdr *)(data + tcp_offset); in xdp_ingress_v6()
97 tcp_hdr_opt_len = (tcp_hdr->doff * 4) - sizeof(struct tcphdr); in xdp_ingress_v6()
102 opt_state.byte_offset = sizeof(struct tcphdr) + tcp_offset; in xdp_ingress_v6()
H A Dtest_tcpbpf_kern.c34 char header[sizeof(struct ipv6hdr) + sizeof(struct tcphdr)]; in bpf_testcb()
36 struct tcphdr *thdr; in bpf_testcb()
108 sizeof(struct tcphdr))); in bpf_testcb()
112 thdr = (struct tcphdr *)(header + offset); in bpf_testcb()
H A Dtest_pkt_access.c89 struct tcphdr *tcp = NULL; in test_pkt_write_access_subprog()
108 struct tcphdr *tcp = NULL; in test_pkt_access()
122 tcp = (struct tcphdr *)((void *)(iph) + ihl_len); in test_pkt_access()
130 tcp = (struct tcphdr *)((void *)(ip6h) + ihl_len); in test_pkt_access()
H A Dtest_assign_reuse.c20 struct tcphdr tcp;
81 maybe_assign_tcp(struct __sk_buff *skb, struct tcphdr *th) in maybe_assign_tcp()
124 return maybe_assign_tcp(skb, (struct tcphdr *)(iph + 1)); in tc_main()
136 return maybe_assign_tcp(skb, (struct tcphdr *)(ip6h + 1)); in tc_main()
H A Dcgroup_skb_sk_lookup_kern.c31 const struct tcphdr *tcph) in set_tuple()
41 const struct tcphdr *tcph) in is_allowed_peer_cg()
70 struct tcphdr tcph; in ingress_lookup()
H A Dtest_migrate_reuseport.c50 struct tcphdr *tcp = NULL; in drop_ack()
65 tcp = (struct tcphdr *)((void *)ip + ip->ihl * 4); in drop_ack()
77 tcp = (struct tcphdr *)(ipv6 + 1); in drop_ack()
/linux/net/ipv4/netfilter/
H A Dnf_reject_ipv4.c44 const struct tcphdr *oth; in nf_reject_skb_v4_tcp_reset()
47 struct tcphdr _oth; in nf_reject_skb_v4_tcp_reset()
56 nskb = alloc_skb(sizeof(struct iphdr) + sizeof(struct tcphdr) + in nf_reject_skb_v4_tcp_reset()
139 const struct tcphdr *nf_reject_ip_tcphdr_get(struct sk_buff *oldskb, in nf_reject_ip_tcphdr_get()
140 struct tcphdr *_oth, int hook) in nf_reject_ip_tcphdr_get()
142 const struct tcphdr *oth; in nf_reject_ip_tcphdr_get()
152 sizeof(struct tcphdr), _oth); in nf_reject_ip_tcphdr_get()
194 const struct tcphdr *oth) in nf_reject_ip_tcphdr_put()
197 struct tcphdr *tcph; in nf_reject_ip_tcphdr_put()
200 tcph = skb_put_zero(nskb, sizeof(struct tcphdr)); in nf_reject_ip_tcphdr_put()
[all …]
/linux/net/ipv6/netfilter/
H A Dnf_reject_ipv6.c65 const struct tcphdr *oth; in nf_reject_skb_v6_tcp_reset()
66 struct tcphdr _oth; in nf_reject_skb_v6_tcp_reset()
77 nskb = alloc_skb(sizeof(struct ipv6hdr) + sizeof(struct tcphdr) + in nf_reject_skb_v6_tcp_reset()
149 const struct tcphdr *nf_reject_ip6_tcphdr_get(struct sk_buff *oldskb, in nf_reject_ip6_tcphdr_get()
150 struct tcphdr *otcph, in nf_reject_ip6_tcphdr_get()
170 if (proto != IPPROTO_TCP || *otcplen < sizeof(struct tcphdr)) { in nf_reject_ip6_tcphdr_get()
176 otcph = skb_header_pointer(oldskb, tcphoff, sizeof(struct tcphdr), in nf_reject_ip6_tcphdr_get()
223 const struct tcphdr *oth, unsigned int otcplen) in nf_reject_ip6_tcphdr_put()
225 struct tcphdr *tcph; in nf_reject_ip6_tcphdr_put()
228 tcph = skb_put_zero(nskb, sizeof(struct tcphdr)); in nf_reject_ip6_tcphdr_put()
[all …]
/linux/net/ipv4/
H A Dtcp_offload.c38 struct tcphdr *th; in __tcpv4_gso_segment_csum()
57 const struct tcphdr *th; in __tcpv4_gso_segment_list_csum()
60 struct tcphdr *th2; in __tcpv4_gso_segment_list_csum()
104 if (!pskb_may_pull(skb, sizeof(struct tcphdr))) in tcp4_gso_segment()
108 struct tcphdr *th = tcp_hdr(skb); in tcp4_gso_segment()
118 struct tcphdr *th = tcp_hdr(skb); in tcp4_gso_segment()
137 struct tcphdr *th; in tcp_gso_segment()
260 struct sk_buff *tcp_gro_lookup(struct list_head *head, struct tcphdr *th) in tcp_gro_lookup()
262 struct tcphdr *th2; in tcp_gro_lookup()
281 struct tcphdr *tcp_gro_pull_header(struct sk_buff *skb) in tcp_gro_pull_header()
[all …]
/linux/net/ipv6/
H A Dtcpv6_offload.c18 struct tcphdr *th) in tcp6_check_fraglist_gro()
52 struct tcphdr *th; in tcp6_gro_receive()
77 struct tcphdr *th = tcp_hdr(skb); in tcp6_gro_complete()
99 struct tcphdr *th; in __tcpv6_gso_segment_csum()
111 const struct tcphdr *th; in __tcpv6_gso_segment_list_csum()
114 struct tcphdr *th2; in __tcpv6_gso_segment_list_csum()
154 struct tcphdr *th; in tcp6_gso_segment()
163 struct tcphdr *th = tcp_hdr(skb); in tcp6_gso_segment()
173 struct tcphdr *th = tcp_hdr(skb); in tcp6_gso_segment()
/linux/net/netfilter/
H A Dxt_TCPMSS.c78 struct tcphdr *tcph; in tcpmss_mangle_packet()
93 if (len < (int)sizeof(struct tcphdr)) in tcpmss_mangle_packet()
96 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff); in tcpmss_mangle_packet()
99 if (len < tcp_hdrlen || tcp_hdrlen < sizeof(struct tcphdr)) in tcpmss_mangle_packet()
117 for (i = sizeof(struct tcphdr); i <= tcp_hdrlen - TCPOLEN_MSS; i += optlen(opt, i)) { in tcpmss_mangle_packet()
159 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff); in tcpmss_mangle_packet()
176 opt = (u_int8_t *)tcph + sizeof(struct tcphdr); in tcpmss_mangle_packet()
177 memmove(opt + TCPOLEN_MSS, opt, len - sizeof(struct tcphdr)); in tcpmss_mangle_packet()
205 sizeof(*iph) + sizeof(struct tcphdr)); in tcpmss_tg4()
234 sizeof(*ipv6h) + sizeof(struct tcphdr)); in tcpmss_tg6()
H A Dnf_synproxy_core.c29 const struct tcphdr *th, struct synproxy_options *opts) in synproxy_parse_options()
115 synproxy_build_options(struct tcphdr *th, const struct synproxy_options *opts) in synproxy_build_options()
186 struct tcphdr *th, struct nf_conn *ct, in synproxy_tstamp_adjust()
196 optoff = protoff + sizeof(struct tcphdr); in synproxy_tstamp_adjust()
421 struct iphdr *niph, struct tcphdr *nth, in synproxy_send_tcp()
427 nskb->csum_offset = offsetof(struct tcphdr, check); in synproxy_send_tcp()
448 const struct sk_buff *skb, const struct tcphdr *th, in synproxy_send_client_synack()
453 struct tcphdr *nth; in synproxy_send_client_synack()
491 const struct sk_buff *skb, const struct tcphdr *th, in synproxy_send_server_syn()
497 struct tcphdr *nth; in synproxy_send_server_syn()
[all …]
H A Dnfnetlink_osf.c165 static const struct tcphdr *nf_osf_hdr_ctx_init(struct nf_osf_hdr_ctx *ctx, in nf_osf_hdr_ctx_init()
169 struct tcphdr *_tcph) in nf_osf_hdr_ctx_init()
171 const struct tcphdr *tcp; in nf_osf_hdr_ctx_init()
173 tcp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(struct tcphdr), _tcph); in nf_osf_hdr_ctx_init()
184 if (tcp->doff * 4 > sizeof(struct tcphdr)) { in nf_osf_hdr_ctx_init()
185 ctx->optsize = tcp->doff * 4 - sizeof(struct tcphdr); in nf_osf_hdr_ctx_init()
188 sizeof(struct tcphdr), ctx->optsize, opts); in nf_osf_hdr_ctx_init()
209 const struct tcphdr *tcp; in nf_osf_match()
210 struct tcphdr _tcph; in nf_osf_match()
270 const struct tcphdr *tcp; in nf_osf_find()
[all …]
H A Dnft_synproxy.c24 const struct tcphdr *tcp, in nft_synproxy_tcp_options()
47 const struct tcphdr *tcp, in nft_synproxy_eval_v4()
48 struct tcphdr *_tcph, in nft_synproxy_eval_v4()
78 const struct tcphdr *tcp, in nft_synproxy_eval_v6()
79 struct tcphdr *_tcph, in nft_synproxy_eval_v6()
113 const struct tcphdr *tcp; in nft_synproxy_do_eval()
114 struct tcphdr _tcph; in nft_synproxy_do_eval()
127 sizeof(struct tcphdr), in nft_synproxy_do_eval()
H A Dxt_TCPOPTSTRIP.c34 struct tcphdr *tcph, _th; in tcpoptstrip_mangle_packet()
49 if (tcp_hdrlen < sizeof(struct tcphdr)) in tcpoptstrip_mangle_packet()
56 tcph = (struct tcphdr *)(skb_network_header(skb) + tcphoff); in tcpoptstrip_mangle_packet()
63 for (i = sizeof(struct tcphdr); i < tcp_hdrlen - 1; i += optl) { in tcpoptstrip_mangle_packet()
H A Dnf_conntrack_seqadj.c64 const struct tcphdr *th; in nf_ct_tcp_seqadj_set()
69 th = (struct tcphdr *)(skb_network_header(skb) + ip_hdrlen(skb)); in nf_ct_tcp_seqadj_set()
76 struct tcphdr *tcph, in nf_ct_sack_block_adjust()
122 struct tcphdr *tcph = (void *)skb->data + protoff; in nf_ct_sack_adjust()
126 optoff = protoff + sizeof(struct tcphdr); in nf_ct_sack_adjust()
169 struct tcphdr *tcph; in nf_ct_seq_adjust()
H A Dnf_conntrack_proto_tcp.c275 static unsigned int get_conntrack_index(const struct tcphdr *tcph) in get_conntrack_index()
316 const struct tcphdr *tcph) in segment_seq_plus_len()
335 const struct tcphdr *tcph, in tcp_options()
338 unsigned char buff[(15 * 4) - sizeof(struct tcphdr)]; in tcp_options()
340 int length = (tcph->doff*4) - sizeof(struct tcphdr); in tcp_options()
345 ptr = skb_header_pointer(skb, dataoff + sizeof(struct tcphdr), in tcp_options()
392 const struct tcphdr *tcph, __u32 *sack) in tcp_sack()
394 unsigned char buff[(15 * 4) - sizeof(struct tcphdr)]; in tcp_sack()
396 int length = (tcph->doff*4) - sizeof(struct tcphdr); in tcp_sack()
402 ptr = skb_header_pointer(skb, dataoff + sizeof(struct tcphdr), in tcp_sack()
[all …]
/linux/include/net/netfilter/
H A Dnf_synproxy.h46 const struct tcphdr *th,
53 const struct tcphdr *th,
58 const struct tcphdr *th,
71 const struct tcphdr *th,
75 const struct tcphdr *th,
/linux/tools/testing/selftests/net/
H A Dgro.c69 #define TOTAL_HDR_LEN (ETH_HLEN + sizeof(struct ipv6hdr) + sizeof(struct tcphdr))
70 #define MSS (4096 - sizeof(struct tcphdr) - sizeof(struct ipv6hdr))
71 #define MAX_PAYLOAD (IP_MAXPACKET - sizeof(struct tcphdr) - sizeof(struct ipv6hdr))
73 #define MAX_HDR_LEN (ETH_HLEN + sizeof(struct ipv6hdr) + sizeof(struct tcphdr))
111 const int dport_off = tcp_offset + offsetof(struct tcphdr, dest); in setup_sock_filter()
213 ph6.payload_len = htons(sizeof(struct tcphdr) + payload_len); in tcp_checksum()
222 ph4.payload_len = htons(sizeof(struct tcphdr) + payload_len); in tcp_checksum()
227 return checksum_fold(buf, sizeof(struct tcphdr) + payload_len, sum); in tcp_checksum()
256 ip6h->payload_len = htons(sizeof(struct tcphdr) + payload_len); in fill_networklayer()
270 iph->tot_len = htons(sizeof(struct tcphdr) + in fill_networklayer()
[all …]
/linux/include/net/netfilter/ipv4/
H A Dnf_reject.h13 const struct tcphdr *nf_reject_ip_tcphdr_get(struct sk_buff *oldskb,
14 struct tcphdr *_oth, int hook);
19 const struct tcphdr *oth);
/linux/include/net/netfilter/ipv6/
H A Dnf_reject.h12 const struct tcphdr *nf_reject_ip6_tcphdr_get(struct sk_buff *oldskb,
13 struct tcphdr *otcph,
20 const struct tcphdr *oth, unsigned int otcplen);
/linux/include/net/
H A Dip6_checksum.h58 struct tcphdr *th = tcp_hdr(skb); in __tcp_v6_send_check()
62 skb->csum_offset = offsetof(struct tcphdr, check); in __tcp_v6_send_check()
68 struct tcphdr *th = tcp_hdr(skb); in tcp_v6_gso_csum_prep()
/linux/include/linux/
H A Dnetfilter_ipv6.h52 const struct tcphdr *th, u16 *mssp);
54 const struct tcphdr *th);
165 const struct tcphdr *th, in nf_ipv6_cookie_init_sequence()
182 const struct tcphdr *th) in nf_cookie_v6_check()

12345678