| tag | line | file | source code |
| th | 252 | drivers/net/slhc.c | struct tcphdr *th, *oth; |
| th | 268 | drivers/net/slhc.c | th = (struct tcphdr *)(((unsigned char *)ip) + ip->ihl*4); |
| th | 269 | drivers/net/slhc.c | hlen = ip->ihl*4 + th->doff*4; |
| th | 274 | drivers/net/slhc.c | if(th->syn || th->fin || th->rst || |
| th | 275 | drivers/net/slhc.c | ! (th->ack)){ |
| th | 297 | drivers/net/slhc.c | && th->source == cs->cs_tcp.source |
| th | 298 | drivers/net/slhc.c | && th->dest == cs->cs_tcp.dest) |
| th | 356 | drivers/net/slhc.c | || th->doff != cs->cs_tcp.doff |
| th | 358 | drivers/net/slhc.c | || (th->doff > 5 && memcmp(th+1,cs->cs_tcpopt,((th->doff)-5)*4) != 0)){ |
| th | 368 | drivers/net/slhc.c | if(th->urg){ |
| th | 369 | drivers/net/slhc.c | deltaS = ntohs(th->urg_ptr); |
| th | 372 | drivers/net/slhc.c | } else if(th->urg_ptr != oth->urg_ptr){ |
| th | 379 | drivers/net/slhc.c | if((deltaS = ntohs(th->window) - ntohs(oth->window)) != 0){ |
| th | 383 | drivers/net/slhc.c | if((deltaA = ntohl(th->ack_seq) - ntohl(oth->ack_seq)) != 0L){ |
| th | 389 | drivers/net/slhc.c | if((deltaS = ntohl(th->seq) - ntohl(oth->seq)) != 0L){ |
| th | 436 | drivers/net/slhc.c | if(th->psh) |
| th | 441 | drivers/net/slhc.c | deltaA = ntohs(th->check); |
| th | 443 | drivers/net/slhc.c | memcpy(&cs->cs_tcp,th,20); |
| th | 476 | drivers/net/slhc.c | memcpy(&cs->cs_tcp,th,20); |
| th | 479 | drivers/net/slhc.c | if (th->doff > 5) |
| th | 480 | drivers/net/slhc.c | memcpy(cs->cs_tcpopt, th+1, ((th->doff) - 5) * 4); |
| th | 16 | include/asm-alpha/ipsum.h | extern inline unsigned short tcp_check(struct tcphdr *th, int len, u32 saddr, u32 daddr) |
| th | 61 | include/linux/skbuff.h | struct tcphdr *th; |
| th | 14 | include/net/arp.h | unsigned char *dest_hw, unsigned char *src_hw, unsigned char *th); |
| th | 134 | include/net/tcp.h | extern void tcp_send_check(struct tcphdr *th, unsigned long saddr, |
| th | 145 | include/net/tcp.h | extern void tcp_send_ack(u32, u32, struct sock *sk, struct tcphdr *th, u32); |
| th | 146 | include/net/tcp.h | extern void tcp_send_reset(unsigned long saddr, unsigned long daddr, struct tcphdr *th, |
| th | 280 | include/net/tcp.h | static __inline__ u16 tcp_check(struct tcphdr *th, int len, |
| th | 606 | net/ipv4/ip_fw.c | struct tcphdr *th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]); |
| th | 608 | net/ipv4/ip_fw.c | char *p, *data = (char *)&th[1]; |
| th | 625 | net/ipv4/ip_fw.c | seq=ntohl(th->seq); |
| th | 630 | net/ipv4/ip_fw.c | th->seq = htonl(seq + ftp->delta); |
| th | 637 | net/ipv4/ip_fw.c | th->seq = htonl(seq + ftp->previous_delta); |
| th | 877 | net/ipv4/ip_fw.c | struct tcphdr *th; |
| th | 886 | net/ipv4/ip_fw.c | th = (struct tcphdr *)portptr; |
| th | 891 | net/ipv4/ip_fw.c | if (ms->sawfin || th->fin) |
| th | 898 | net/ipv4/ip_fw.c | tcp_send_check(th,iph->saddr,iph->daddr,size,skb->sk); |
| th | 922 | net/ipv4/ip_fw.c | struct tcphdr *th = (struct tcphdr *)(skb_ptr->h.raw+(iph->ihl<<2)); |
| th | 983 | net/ipv4/ip_fw.c | printk("demasq : delta=%d ; previous_delta=%d ; init_seq=%lX ; ack_seq=%lX ; after=%d\n",ms->delta,ms->previous_delta,ntohl(ms->init_seq),ntohl(th->ack_seq),after(ntohl(th->ack_seq),ntohl(ms->init_seq))); |
| th | 985 | net/ipv4/ip_fw.c | ack_seq=ntohl(th->ack_seq); |
| th | 990 | net/ipv4/ip_fw.c | th->ack_seq = htonl(ack_seq-ms->delta); |
| th | 997 | net/ipv4/ip_fw.c | th->ack_seq = htonl(ack_seq-ms->previous_delta); |
| th | 516 | net/ipv4/tcp.c | struct tcphdr *th = (struct tcphdr *)header; |
| th | 525 | net/ipv4/tcp.c | th =(struct tcphdr *)header; |
| th | 526 | net/ipv4/tcp.c | sk = get_sock(&tcp_prot, th->source, daddr, th->dest, saddr); |
| th | 633 | net/ipv4/tcp.c | if (skb->h.th->syn) |
| th | 638 | net/ipv4/tcp.c | if (skb->h.th->syn) |
| th | 658 | net/ipv4/tcp.c | if (skb->h.th->urg) |
| th | 660 | net/ipv4/tcp.c | if (amount && skb->h.th->psh) break; |
| th | 806 | net/ipv4/tcp.c | void tcp_send_check(struct tcphdr *th, unsigned long saddr, |
| th | 812 | net/ipv4/tcp.c | th->check = 0; |
| th | 813 | net/ipv4/tcp.c | th->check = tcp_check(th, len, saddr, daddr, |
| th | 814 | net/ipv4/tcp.c | csum_partial((char *)th,sizeof(*th),skb->csum)); |
| th | 817 | net/ipv4/tcp.c | check = th->check; |
| th | 818 | net/ipv4/tcp.c | th->check = 0; |
| th | 819 | net/ipv4/tcp.c | th->check = tcp_check(th, len, saddr, daddr, |
| th | 820 | net/ipv4/tcp.c | csum_partial((char *)th,len,0)); |
| th | 821 | net/ipv4/tcp.c | if (check != th->check) { |
| th | 824 | net/ipv4/tcp.c | printk("Checksum %x (%x) from %p\n", th->check, check, |
| th | 825 | net/ipv4/tcp.c | (&th)[-1]); |
| th | 826 | net/ipv4/tcp.c | printk("TCP=<off:%d a:%d s:%d f:%d>\n", th->doff*4, th->ack, th->syn, th->fin); |
| th | 837 | net/ipv4/tcp.c | extern __inline int tcp_build_header(struct tcphdr *th, struct sock *sk, int push) |
| th | 840 | net/ipv4/tcp.c | memcpy(th,(void *) &(sk->dummy_th), sizeof(*th)); |
| th | 841 | net/ipv4/tcp.c | th->seq = htonl(sk->write_seq); |
| th | 842 | net/ipv4/tcp.c | th->psh =(push == 0) ? 1 : 0; |
| th | 846 | net/ipv4/tcp.c | th->ack_seq = htonl(sk->acked_seq); |
| th | 848 | net/ipv4/tcp.c | th->window = htons(sk->window); |
| th | 850 | net/ipv4/tcp.c | return(sizeof(*th)); |
| th | 1022 | net/ipv4/tcp.c | tcp_size = skb->tail - (unsigned char *)(skb->h.th + 1); |
| th | 1163 | net/ipv4/tcp.c | skb->h.th =(struct tcphdr *)skb_put(skb,sizeof(struct tcphdr)); |
| th | 1164 | net/ipv4/tcp.c | tmp = tcp_build_header(skb->h.th, sk, seglen-copy); |
| th | 1176 | net/ipv4/tcp.c | skb->h.th->urg = 1; |
| th | 1177 | net/ipv4/tcp.c | skb->h.th->urg_ptr = ntohs(copy); |
| th | 1512 | net/ipv4/tcp.c | if (skb->h.th->syn) |
| th | 1516 | net/ipv4/tcp.c | if (skb->h.th->fin) |
| th | 1623 | net/ipv4/tcp.c | memcpy_toiovec(msg->msg_iov,((unsigned char *)skb->h.th) + |
| th | 1624 | net/ipv4/tcp.c | skb->h.th->doff*4 + offset, used); |
| th | 1645 | net/ipv4/tcp.c | if (skb->h.th->fin) |
| th | 154 | net/ipv4/tcp_input.c | static void bad_tcp_sequence(struct sock *sk, struct tcphdr *th, short len, |
| th | 157 | net/ipv4/tcp_input.c | if (th->rst) |
| th | 169 | net/ipv4/tcp_input.c | tcp_send_reset(sk->saddr,sk->daddr,th,sk->prot,NULL,dev, sk->ip_tos,sk->ip_ttl); |
| th | 182 | net/ipv4/tcp_input.c | tcp_send_ack(sk->sent_seq, sk->acked_seq, sk, th, saddr); |
| th | 252 | net/ipv4/tcp_input.c | static void tcp_options(struct sock *sk, struct tcphdr *th) |
| th | 255 | net/ipv4/tcp_input.c | int length=(th->doff*4)-sizeof(struct tcphdr); |
| th | 258 | net/ipv4/tcp_input.c | ptr = (unsigned char *)(th + 1); |
| th | 279 | net/ipv4/tcp_input.c | if(opsize==4 && th->syn) |
| th | 291 | net/ipv4/tcp_input.c | if (th->syn) |
| th | 317 | net/ipv4/tcp_input.c | struct tcphdr *th; |
| th | 320 | net/ipv4/tcp_input.c | th = skb->h.th; |
| th | 331 | net/ipv4/tcp_input.c | tcp_send_reset(daddr, saddr, th, sk->prot, opt, dev, sk->ip_tos,sk->ip_ttl); |
| th | 440 | net/ipv4/tcp_input.c | newsk->dummy_th.source = skb->h.th->dest; |
| th | 441 | net/ipv4/tcp_input.c | newsk->dummy_th.dest = skb->h.th->source; |
| th | 510 | net/ipv4/tcp_input.c | tcp_options(newsk,skb->h.th); |
| th | 589 | net/ipv4/tcp_input.c | static int tcp_ack(struct sock *sk, struct tcphdr *th, u32 ack, int len) |
| th | 624 | net/ipv4/tcp_input.c | if (len != th->doff*4) |
| th | 630 | net/ipv4/tcp_input.c | window_seq = ntohs(th->window); |
| th | 1005 | net/ipv4/tcp_input.c | tcp_options(sk,th); |
| th | 1006 | net/ipv4/tcp_input.c | sk->dummy_th.dest=th->source; |
| th | 1103 | net/ipv4/tcp_input.c | static int tcp_fin(struct sk_buff *skb, struct sock *sk, struct tcphdr *th) |
| th | 1123 | net/ipv4/tcp_input.c | if (th->rst) |
| th | 1194 | net/ipv4/tcp_input.c | struct tcphdr *th; |
| th | 1198 | net/ipv4/tcp_input.c | th = skb->h.th; |
| th | 1199 | net/ipv4/tcp_input.c | skb_pull(skb,th->doff*4); |
| th | 1200 | net/ipv4/tcp_input.c | skb_trim(skb,len-(th->doff*4)); |
| th | 1209 | net/ipv4/tcp_input.c | if (skb->len == 0 && !th->fin) |
| th | 1215 | net/ipv4/tcp_input.c | if (!th->ack) |
| th | 1216 | net/ipv4/tcp_input.c | tcp_send_ack(sk->sent_seq, sk->acked_seq,sk, th, saddr); |
| th | 1239 | net/ipv4/tcp_input.c | new_seq = skb->seq + skb->len + th->syn; /* Right edge of _data_ part of frame */ |
| th | 1261 | net/ipv4/tcp_input.c | sk->acked_seq = new_seq + th->fin; |
| th | 1262 | net/ipv4/tcp_input.c | tcp_send_reset(sk->saddr, sk->daddr, skb->h.th, |
| th | 1378 | net/ipv4/tcp_input.c | if (skb->h.th->fin) |
| th | 1380 | net/ipv4/tcp_input.c | tcp_fin(skb,sk,skb->h.th); |
| th | 1397 | net/ipv4/tcp_input.c | if (skb2->h.th->fin) |
| th | 1399 | net/ipv4/tcp_input.c | tcp_fin(skb,sk,skb->h.th); |
| th | 1425 | net/ipv4/tcp_input.c | sk->bytes_rcv > sk->max_unacked || th->fin || |
| th | 1477 | net/ipv4/tcp_input.c | tcp_send_ack(sk->sent_seq, sk->acked_seq, sk, th, saddr); |
| th | 1483 | net/ipv4/tcp_input.c | tcp_send_ack(sk->sent_seq, sk->acked_seq, sk, th, saddr); |
| th | 1508 | net/ipv4/tcp_input.c | static void tcp_check_urg(struct sock * sk, struct tcphdr * th) |
| th | 1510 | net/ipv4/tcp_input.c | u32 ptr = ntohs(th->urg_ptr); |
| th | 1514 | net/ipv4/tcp_input.c | ptr += ntohl(th->seq); |
| th | 1540 | net/ipv4/tcp_input.c | static inline void tcp_urg(struct sock *sk, struct tcphdr *th, unsigned long len) |
| th | 1546 | net/ipv4/tcp_input.c | if (th->urg) |
| th | 1547 | net/ipv4/tcp_input.c | tcp_check_urg(sk,th); |
| th | 1559 | net/ipv4/tcp_input.c | ptr = sk->urg_seq - ntohl(th->seq) + th->doff*4; |
| th | 1561 | net/ipv4/tcp_input.c | sk->urg_data = URG_VALID | *(ptr + (unsigned char *) th); |
| th | 1578 | net/ipv4/tcp_input.c | struct tcphdr *th; |
| th | 1588 | net/ipv4/tcp_input.c | th = skb->h.th; |
| th | 1607 | net/ipv4/tcp_input.c | skb->csum = csum_partial((char *)th, len, 0); |
| th | 1609 | net/ipv4/tcp_input.c | if (tcp_check(th, len, saddr, daddr, skb->csum)) |
| th | 1614 | net/ipv4/tcp_input.c | sk = get_tcp_sock(saddr, th->source, daddr, th->dest); |
| th | 1618 | net/ipv4/tcp_input.c | skb->seq = ntohl(th->seq); |
| th | 1619 | net/ipv4/tcp_input.c | skb->end_seq = skb->seq + th->syn + th->fin + len - th->doff*4; |
| th | 1620 | net/ipv4/tcp_input.c | skb->ack_seq = ntohl(th->ack_seq); |
| th | 1686 | net/ipv4/tcp_input.c | if(th->ack) /* These use the socket TOS.. might want to be the received TOS */ |
| th | 1687 | net/ipv4/tcp_input.c | tcp_send_reset(daddr,saddr,th,sk->prot,opt,dev,sk->ip_tos, sk->ip_ttl); |
| th | 1696 | net/ipv4/tcp_input.c | if(th->rst || !th->syn || th->ack || ip_chk_addr(daddr)!=IS_MYADDR) |
| th | 1729 | net/ipv4/tcp_input.c | if (sk->state == TCP_SYN_RECV && th->syn && skb->seq+1 == sk->acked_seq) |
| th | 1745 | net/ipv4/tcp_input.c | if(th->ack) |
| th | 1748 | net/ipv4/tcp_input.c | if(!tcp_ack(sk,th,skb->ack_seq,len)) |
| th | 1753 | net/ipv4/tcp_input.c | tcp_send_reset(daddr, saddr, th, |
| th | 1759 | net/ipv4/tcp_input.c | if(th->rst) |
| th | 1761 | net/ipv4/tcp_input.c | if(!th->syn) |
| th | 1766 | net/ipv4/tcp_input.c | tcp_send_reset(daddr, saddr, th, |
| th | 1780 | net/ipv4/tcp_input.c | tcp_send_ack(sk->sent_seq,sk->acked_seq,sk,th,sk->daddr); |
| th | 1782 | net/ipv4/tcp_input.c | tcp_options(sk,th); |
| th | 1783 | net/ipv4/tcp_input.c | sk->dummy_th.dest=th->source; |
| th | 1799 | net/ipv4/tcp_input.c | if(th->syn && !th->rst) |
| th | 1804 | net/ipv4/tcp_input.c | sk->dummy_th.source==th->source && |
| th | 1805 | net/ipv4/tcp_input.c | sk->dummy_th.dest==th->dest) |
| th | 1836 | net/ipv4/tcp_input.c | if (sk->state == TCP_TIME_WAIT && th->syn && sk->dead && |
| th | 1837 | net/ipv4/tcp_input.c | after(skb->seq, sk->acked_seq) && !th->rst) |
| th | 1849 | net/ipv4/tcp_input.c | sk=get_sock(&tcp_prot, th->dest, saddr, th->source, daddr); |
| th | 1873 | net/ipv4/tcp_input.c | bad_tcp_sequence(sk, th, len, opt, saddr, dev); |
| th | 1879 | net/ipv4/tcp_input.c | if(th->rst) |
| th | 1886 | net/ipv4/tcp_input.c | if(th->syn && !syn_ok) |
| th | 1888 | net/ipv4/tcp_input.c | tcp_send_reset(daddr,saddr,th, &tcp_prot, opt, dev, skb->ip_hdr->tos, 255); |
| th | 1899 | net/ipv4/tcp_input.c | if(th->ack && !tcp_ack(sk,th,skb->ack_seq,len)) |
| th | 1907 | net/ipv4/tcp_input.c | tcp_send_reset(daddr, saddr, th,sk->prot, opt, dev,sk->ip_tos,sk->ip_ttl); |
| th | 1934 | net/ipv4/tcp_input.c | tcp_urg(sk, th, len); |
| th | 1954 | net/ipv4/tcp_input.c | tcp_send_reset(daddr, saddr, th, &tcp_prot, opt,dev,skb->ip_hdr->tos,255); |
| th | 34 | net/ipv4/tcp_output.c | struct tcphdr * th = skb->h.th; |
| th | 40 | net/ipv4/tcp_output.c | size = skb->len - ((unsigned char *) th - skb->data); |
| th | 49 | net/ipv4/tcp_output.c | skb, skb->data, th, skb->len); |
| th | 62 | net/ipv4/tcp_output.c | if(!th->syn && !th->fin) |
| th | 75 | net/ipv4/tcp_output.c | skb->seq = ntohl(th->seq); |
| th | 76 | net/ipv4/tcp_output.c | skb->end_seq = skb->seq + size - 4*th->doff; |
| th | 92 | net/ipv4/tcp_output.c | th->check = 0; |
| th | 110 | net/ipv4/tcp_output.c | th->ack_seq = htonl(sk->acked_seq); |
| th | 111 | net/ipv4/tcp_output.c | th->window = htons(tcp_select_window(sk)); |
| th | 113 | net/ipv4/tcp_output.c | tcp_send_check(th, sk->saddr, sk->daddr, size, skb); |
| th | 260 | net/ipv4/tcp_output.c | struct tcphdr *th; |
| th | 271 | net/ipv4/tcp_output.c | th = (struct tcphdr *)(((char *)iph) +(iph->ihl << 2)); |
| th | 272 | net/ipv4/tcp_output.c | size = skb->len - (((unsigned char *) th) - skb->data); |
| th | 281 | net/ipv4/tcp_output.c | th->ack_seq = htonl(sk->acked_seq); |
| th | 282 | net/ipv4/tcp_output.c | th->window = htons(tcp_select_window(sk)); |
| th | 284 | net/ipv4/tcp_output.c | tcp_send_check(th, sk->saddr, sk->daddr, size, skb); |
| th | 326 | net/ipv4/tcp_output.c | struct tcphdr *th; |
| th | 363 | net/ipv4/tcp_output.c | th = (struct tcphdr *)(((char *)iph) + (iph->ihl << 2)); |
| th | 431 | net/ipv4/tcp_output.c | th->ack_seq = htonl(sk->acked_seq); |
| th | 434 | net/ipv4/tcp_output.c | th->window = ntohs(tcp_select_window(sk)); |
| th | 435 | net/ipv4/tcp_output.c | tcp_send_check(th, sk->saddr, sk->daddr, size, skb); |
| th | 492 | net/ipv4/tcp_output.c | void tcp_send_reset(unsigned long saddr, unsigned long daddr, struct tcphdr *th, |
| th | 504 | net/ipv4/tcp_output.c | if(th->rst) |
| th | 541 | net/ipv4/tcp_output.c | t1->dest = th->source; |
| th | 542 | net/ipv4/tcp_output.c | t1->source = th->dest; |
| th | 546 | net/ipv4/tcp_output.c | if(th->ack) |
| th | 548 | net/ipv4/tcp_output.c | t1->seq = th->ack_seq; |
| th | 553 | net/ipv4/tcp_output.c | if(!th->syn) |
| th | 554 | net/ipv4/tcp_output.c | t1->ack_seq = th->seq; |
| th | 556 | net/ipv4/tcp_output.c | t1->ack_seq = htonl(ntohl(th->seq)+1); |
| th | 571 | net/ipv4/tcp_output.c | struct tcphdr *th =(struct tcphdr *)&sk->dummy_th; |
| th | 630 | net/ipv4/tcp_output.c | memcpy(t1, th, sizeof(*t1)); |
| th | 715 | net/ipv4/tcp_output.c | memcpy(t1, skb->h.th, sizeof(*t1)); |
| th | 721 | net/ipv4/tcp_output.c | t1->dest = skb->h.th->source; |
| th | 763 | net/ipv4/tcp_output.c | struct tcphdr *th, u32 daddr) |
| th | 824 | net/ipv4/tcp_output.c | t1->dest = th->source; |
| th | 825 | net/ipv4/tcp_output.c | t1->source = th->dest; |
| th | 901 | net/ipv4/tcp_output.c | struct tcphdr *th; |
| th | 919 | net/ipv4/tcp_output.c | th = (struct tcphdr *)(((char *)iph) +(iph->ihl << 2)); |
| th | 925 | net/ipv4/tcp_output.c | buff = sock_wmalloc(sk, win_size + th->doff * 4 + |
| th | 961 | net/ipv4/tcp_output.c | nth = (struct tcphdr *) skb_put(buff,sizeof(*th)); |
| th | 963 | net/ipv4/tcp_output.c | memcpy(nth, th, sizeof(*th)); |
| th | 978 | net/ipv4/tcp_output.c | buff->csum = csum_partial_copy((void *)(th + 1), skb_put(buff,win_size), |
| th | 979 | net/ipv4/tcp_output.c | win_size + th->doff*4 - sizeof(*th), 0); |
| th | 987 | net/ipv4/tcp_output.c | if(th->urg && ntohs(th->urg_ptr) < win_size) |