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 | 616 | net/ipv4/ip_fw.c | struct tcphdr *th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]); |
th | 618 | net/ipv4/ip_fw.c | char *p, *data = (char *)&th[1]; |
th | 635 | net/ipv4/ip_fw.c | seq=ntohl(th->seq); |
th | 640 | net/ipv4/ip_fw.c | th->seq = htonl(seq + ftp->delta); |
th | 647 | net/ipv4/ip_fw.c | th->seq = htonl(seq + ftp->previous_delta); |
th | 887 | net/ipv4/ip_fw.c | struct tcphdr *th; |
th | 896 | net/ipv4/ip_fw.c | th = (struct tcphdr *)portptr; |
th | 901 | net/ipv4/ip_fw.c | if (ms->sawfin || th->fin) |
th | 908 | net/ipv4/ip_fw.c | skb->csum = csum_partial(th + 1, size - sizeof(*th), 0); |
th | 909 | net/ipv4/ip_fw.c | tcp_send_check(th,iph->saddr,iph->daddr,size,skb); |
th | 933 | net/ipv4/ip_fw.c | struct tcphdr *th = (struct tcphdr *)(skb->h.raw+(iph->ihl<<2)); |
th | 994 | 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 | 996 | net/ipv4/ip_fw.c | ack_seq=ntohl(th->ack_seq); |
th | 1001 | net/ipv4/ip_fw.c | th->ack_seq = htonl(ack_seq-ms->delta); |
th | 1008 | 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 | 1002 | net/ipv4/tcp.c | tcp_size = skb->tail - (unsigned char *)(skb->h.th + 1); |
th | 1109 | net/ipv4/tcp.c | skb->h.th =(struct tcphdr *)skb_put(skb,sizeof(struct tcphdr)); |
th | 1110 | net/ipv4/tcp.c | tmp = tcp_build_header(skb->h.th, sk, seglen-copy); |
th | 1121 | net/ipv4/tcp.c | skb->h.th->urg = 1; |
th | 1122 | net/ipv4/tcp.c | skb->h.th->urg_ptr = ntohs(copy); |
th | 1494 | net/ipv4/tcp.c | if (skb->h.th->syn) |
th | 1498 | net/ipv4/tcp.c | if (skb->h.th->fin) |
th | 1605 | net/ipv4/tcp.c | memcpy_toiovec(msg->msg_iov,((unsigned char *)skb->h.th) + |
th | 1606 | net/ipv4/tcp.c | skb->h.th->doff*4 + offset, used); |
th | 1627 | 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 | 251 | net/ipv4/tcp_input.c | static void tcp_options(struct sock *sk, struct tcphdr *th) |
th | 254 | net/ipv4/tcp_input.c | int length=(th->doff*4)-sizeof(struct tcphdr); |
th | 257 | net/ipv4/tcp_input.c | ptr = (unsigned char *)(th + 1); |
th | 278 | net/ipv4/tcp_input.c | if(opsize==4 && th->syn) |
th | 290 | net/ipv4/tcp_input.c | if (th->syn) |
th | 316 | net/ipv4/tcp_input.c | struct tcphdr *th; |
th | 319 | net/ipv4/tcp_input.c | th = skb->h.th; |
th | 330 | net/ipv4/tcp_input.c | tcp_send_reset(daddr, saddr, th, sk->prot, opt, dev, sk->ip_tos,sk->ip_ttl); |
th | 439 | net/ipv4/tcp_input.c | newsk->dummy_th.source = skb->h.th->dest; |
th | 440 | net/ipv4/tcp_input.c | newsk->dummy_th.dest = skb->h.th->source; |
th | 509 | net/ipv4/tcp_input.c | tcp_options(newsk,skb->h.th); |
th | 588 | net/ipv4/tcp_input.c | static int tcp_ack(struct sock *sk, struct tcphdr *th, u32 ack, int len) |
th | 623 | net/ipv4/tcp_input.c | if (len != th->doff*4) |
th | 629 | net/ipv4/tcp_input.c | window_seq = ntohs(th->window); |
th | 1004 | net/ipv4/tcp_input.c | tcp_options(sk,th); |
th | 1005 | net/ipv4/tcp_input.c | sk->dummy_th.dest=th->source; |
th | 1102 | net/ipv4/tcp_input.c | static int tcp_fin(struct sk_buff *skb, struct sock *sk, struct tcphdr *th) |
th | 1122 | net/ipv4/tcp_input.c | if (th->rst) |
th | 1193 | net/ipv4/tcp_input.c | struct tcphdr *th; |
th | 1197 | net/ipv4/tcp_input.c | th = skb->h.th; |
th | 1198 | net/ipv4/tcp_input.c | skb_pull(skb,th->doff*4); |
th | 1199 | net/ipv4/tcp_input.c | skb_trim(skb,len-(th->doff*4)); |
th | 1208 | net/ipv4/tcp_input.c | if (skb->len == 0 && !th->fin) |
th | 1214 | net/ipv4/tcp_input.c | if (!th->ack) |
th | 1215 | net/ipv4/tcp_input.c | tcp_send_ack(sk->sent_seq, sk->acked_seq,sk, th, saddr); |
th | 1238 | net/ipv4/tcp_input.c | new_seq = skb->seq + skb->len + th->syn; /* Right edge of _data_ part of frame */ |
th | 1260 | net/ipv4/tcp_input.c | sk->acked_seq = new_seq + th->fin; |
th | 1261 | net/ipv4/tcp_input.c | tcp_send_reset(sk->saddr, sk->daddr, skb->h.th, |
th | 1377 | net/ipv4/tcp_input.c | if (skb->h.th->fin) |
th | 1379 | net/ipv4/tcp_input.c | tcp_fin(skb,sk,skb->h.th); |
th | 1396 | net/ipv4/tcp_input.c | if (skb2->h.th->fin) |
th | 1398 | net/ipv4/tcp_input.c | tcp_fin(skb,sk,skb->h.th); |
th | 1424 | net/ipv4/tcp_input.c | sk->bytes_rcv > sk->max_unacked || th->fin || |
th | 1476 | net/ipv4/tcp_input.c | tcp_send_ack(sk->sent_seq, sk->acked_seq, sk, th, saddr); |
th | 1482 | net/ipv4/tcp_input.c | tcp_send_ack(sk->sent_seq, sk->acked_seq, sk, th, saddr); |
th | 1507 | net/ipv4/tcp_input.c | static void tcp_check_urg(struct sock * sk, struct tcphdr * th) |
th | 1509 | net/ipv4/tcp_input.c | u32 ptr = ntohs(th->urg_ptr); |
th | 1513 | net/ipv4/tcp_input.c | ptr += ntohl(th->seq); |
th | 1539 | net/ipv4/tcp_input.c | static inline void tcp_urg(struct sock *sk, struct tcphdr *th, unsigned long len) |
th | 1545 | net/ipv4/tcp_input.c | if (th->urg) |
th | 1546 | net/ipv4/tcp_input.c | tcp_check_urg(sk,th); |
th | 1558 | net/ipv4/tcp_input.c | ptr = sk->urg_seq - ntohl(th->seq) + th->doff*4; |
th | 1560 | net/ipv4/tcp_input.c | sk->urg_data = URG_VALID | *(ptr + (unsigned char *) th); |
th | 1577 | net/ipv4/tcp_input.c | struct tcphdr *th; |
th | 1587 | net/ipv4/tcp_input.c | th = skb->h.th; |
th | 1606 | net/ipv4/tcp_input.c | skb->csum = csum_partial((char *)th, len, 0); |
th | 1608 | net/ipv4/tcp_input.c | if (tcp_check(th, len, saddr, daddr, skb->csum)) |
th | 1613 | net/ipv4/tcp_input.c | sk = get_tcp_sock(saddr, th->source, daddr, th->dest); |
th | 1617 | net/ipv4/tcp_input.c | skb->seq = ntohl(th->seq); |
th | 1618 | net/ipv4/tcp_input.c | skb->end_seq = skb->seq + th->syn + th->fin + len - th->doff*4; |
th | 1619 | net/ipv4/tcp_input.c | skb->ack_seq = ntohl(th->ack_seq); |
th | 1681 | net/ipv4/tcp_input.c | if(th->ack) /* These use the socket TOS.. might want to be the received TOS */ |
th | 1682 | net/ipv4/tcp_input.c | tcp_send_reset(daddr,saddr,th,sk->prot,opt,dev,sk->ip_tos, sk->ip_ttl); |
th | 1691 | net/ipv4/tcp_input.c | if(th->rst || !th->syn || th->ack || ip_chk_addr(daddr)!=IS_MYADDR) |
th | 1722 | net/ipv4/tcp_input.c | if (sk->state == TCP_SYN_RECV && th->syn && skb->seq+1 == sk->acked_seq) |
th | 1737 | net/ipv4/tcp_input.c | if(th->ack) |
th | 1740 | net/ipv4/tcp_input.c | if(!tcp_ack(sk,th,skb->ack_seq,len)) |
th | 1745 | net/ipv4/tcp_input.c | tcp_send_reset(daddr, saddr, th, |
th | 1750 | net/ipv4/tcp_input.c | if(th->rst) |
th | 1752 | net/ipv4/tcp_input.c | if(!th->syn) |
th | 1757 | net/ipv4/tcp_input.c | tcp_send_reset(daddr, saddr, th, |
th | 1770 | net/ipv4/tcp_input.c | tcp_send_ack(sk->sent_seq,sk->acked_seq,sk,th,sk->daddr); |
th | 1772 | net/ipv4/tcp_input.c | tcp_options(sk,th); |
th | 1773 | net/ipv4/tcp_input.c | sk->dummy_th.dest=th->source; |
th | 1789 | net/ipv4/tcp_input.c | if(th->syn && !th->rst) |
th | 1794 | net/ipv4/tcp_input.c | sk->dummy_th.source==th->source && |
th | 1795 | net/ipv4/tcp_input.c | sk->dummy_th.dest==th->dest) |
th | 1830 | net/ipv4/tcp_input.c | if (sk->state == TCP_TIME_WAIT && th->syn && sk->dead && |
th | 1831 | net/ipv4/tcp_input.c | after(skb->seq, sk->acked_seq) && !th->rst) |
th | 1842 | net/ipv4/tcp_input.c | sk=get_sock(&tcp_prot, th->dest, saddr, th->source, daddr); |
th | 1863 | net/ipv4/tcp_input.c | if (!tcp_sequence(sk, skb->seq, skb->end_seq-th->syn)) |
th | 1865 | net/ipv4/tcp_input.c | bad_tcp_sequence(sk, th, len, opt, saddr, dev); |
th | 1870 | net/ipv4/tcp_input.c | if(th->rst) |
th | 1877 | net/ipv4/tcp_input.c | if(th->syn && !syn_ok) |
th | 1879 | net/ipv4/tcp_input.c | tcp_send_reset(daddr,saddr,th, &tcp_prot, opt, dev, skb->ip_hdr->tos, 255); |
th | 1890 | net/ipv4/tcp_input.c | if(th->ack && !tcp_ack(sk,th,skb->ack_seq,len)) |
th | 1898 | net/ipv4/tcp_input.c | tcp_send_reset(daddr, saddr, th,sk->prot, opt, dev,sk->ip_tos,sk->ip_ttl); |
th | 1923 | net/ipv4/tcp_input.c | tcp_urg(sk, th, len); |
th | 1951 | 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 | 627 | net/ipv4/tcp_output.c | memcpy(t1, th, sizeof(*t1)); |
th | 710 | net/ipv4/tcp_output.c | memcpy(t1, skb->h.th, sizeof(*t1)); |
th | 716 | net/ipv4/tcp_output.c | t1->dest = skb->h.th->source; |
th | 757 | net/ipv4/tcp_output.c | struct tcphdr *th, u32 daddr) |
th | 818 | net/ipv4/tcp_output.c | t1->dest = th->source; |
th | 819 | net/ipv4/tcp_output.c | t1->source = th->dest; |
th | 895 | net/ipv4/tcp_output.c | struct tcphdr *th; |
th | 913 | net/ipv4/tcp_output.c | th = (struct tcphdr *)(((char *)iph) +(iph->ihl << 2)); |
th | 919 | net/ipv4/tcp_output.c | buff = sock_wmalloc(sk, win_size + th->doff * 4 + |
th | 955 | net/ipv4/tcp_output.c | nth = (struct tcphdr *) skb_put(buff,sizeof(*th)); |
th | 957 | net/ipv4/tcp_output.c | memcpy(nth, th, sizeof(*th)); |
th | 972 | net/ipv4/tcp_output.c | buff->csum = csum_partial_copy((void *)(th + 1), skb_put(buff,win_size), |
th | 973 | net/ipv4/tcp_output.c | win_size + th->doff*4 - sizeof(*th), 0); |
th | 981 | net/ipv4/tcp_output.c | if(th->urg && ntohs(th->urg_ptr) < win_size) |