免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
123下一页
最近访问板块 发新帖
查看: 8621 | 回复: 20
打印 上一主题 下一主题

[网络子系统] 在内核中创建HTTP Response的疑惑 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-04-23 23:26 |只看该作者 |倒序浏览
思路是当收取HTTP GET包时, 构造一个HTTP Redirect response包, 重定向过去.
HTTP GET ( PSH/ACK ) ->
                                   <-  HTTP Redirect (PSH/ACK)

不过在过程中发现构造的response客户端始终都无法正确识别, 不知道是TCP 哪个部分出了问题! 恳请各位大牛帮忙看一看!万分感谢!

构造TCP sk_buff代码:
  1. struct sk_buff* tcp_newpack( u32 saddr, u32 daddr,
  2.                 u16 sport, u16 dport,
  3.                 u32 seq, u32 ack_seq,
  4.                 const struct tcp_out_options *opts,
  5.                 u8 *msg, int len )
  6. {
  7.         struct sk_buff *skb = NULL;
  8.         int total_len, eth_len, ip_len, header_len;
  9.         int tcp_opt_len, tcp_len;       
  10.     struct tcphdr *th;
  11.     struct iphdr *iph;          
  12.         __wsum tcp_hdr_csum;
  13.         __be32 *ptr = NULL;
  14.        
  15.         tcp_opt_len = 0;
  16.         if ( likely(OPTION_TS & opts->options) ){
  17.                 tcp_opt_len = TCPOLEN_TSTAMP_ALIGNED;
  18.         }
  19.     // 设置各个协议数据长度
  20.     tcp_len = len + sizeof( *th ) + tcp_opt_len;
  21.     ip_len = tcp_len + sizeof( *iph );
  22.    
  23.     eth_len = ip_len + ETH_HLEN;
  24.     //
  25.     total_len = eth_len + NET_IP_ALIGN;
  26.     total_len += LL_MAX_HEADER;
  27.    
  28.     header_len = total_len - len;

  29.     // 分配skb
  30.     skb = alloc_skb( total_len, GFP_ATOMIC );
  31.     if ( !skb ) {
  32.         dbg_err( "alloc_skb length %d failed.\n", total_len );
  33.         return NULL;
  34.     }

  35.     // 预先保留skb的协议首部长度大小
  36.     skb_reserve( skb, header_len );

  37.     // 拷贝负载数据
  38.     skb_copy_to_linear_data( skb, msg, len );
  39.     skb->len += len;
  40.        
  41.         if ( tcp_opt_len ){
  42.                 ptr = (__be32 *)skb_push( skb, tcp_opt_len );

  43.                 *ptr++ = htonl((TCPOPT_NOP << 24) |
  44.                                        (TCPOPT_NOP << 16) |
  45.                                        (TCPOPT_TIMESTAMP << 8) |
  46.                                        TCPOLEN_TIMESTAMP);                                  
  47.                 *ptr++ = htonl(opts->tsval);
  48.                 *ptr++ = htonl(opts->tsecr);
  49.         }
  50.     // skb->data 移动到udp首部
  51.     skb_push( skb, sizeof( *th ) );
  52.     skb_reset_transport_header( skb );
  53.     th = tcp_hdr( skb );
  54.    
  55.     if ( tcp_opt_len ) {
  56.             th->doff = (tcp_opt_len + sizeof(*th)) >> 2;
  57.     }
  58.     else {
  59.             th->doff    = 5;
  60.         }
  61.     th->source  = sport;
  62.     th->dest    = dport;   
  63.     th->seq     = seq;
  64.         th->ack_seq = ack_seq;
  65.        
  66.         th->urg_ptr = 0;
  67.        
  68.         th->psh = 0x1;
  69.         th->ack = 0x1;
  70.        
  71.         th->window = htons( 63857 );
  72.        
  73.     th->check    = 0;
  74.     #if 0
  75.     tcp_hdr_csum = csum_partial( th, tcp_len - TCP_HDR_LEN(th), 0 );
  76.     th->check = csum_tcpudp_magic( saddr,
  77.             daddr,
  78.             tcp_len, IPPROTO_TCP,
  79.             tcp_hdr_csum );
  80.     #else
  81.     th->check = tcp_v4_check(tcp_len,
  82.                                                    saddr, daddr,
  83.                                                    csum_partial(th,
  84.                                                                 tcp_len, 0));
  85.         #endif                                                                  
  86.     if ( th->check == 0 )
  87.         th->check = CSUM_MANGLED_0;

  88.         skb_iphdr_init( skb, IPPROTO_TCP, saddr, daddr, ip_len );
  89.         return skb;
  90. }
复制代码
初始化IP头代码:

  1. int skb_iphdr_init( struct sk_buff *skb, u8 protocol,
  2.                 u32 saddr, u32 daddr, int ip_len )
  3. {
  4.         struct iphdr *iph = NULL;
  5.        
  6.     // skb->data 移动到ip首部
  7.     skb_push( skb, sizeof( *iph ) );
  8.     skb_reset_network_header( skb );
  9.     iph = ip_hdr( skb );

  10.     /* iph->version = 4; iph->ihl = 5; */
  11. #if 0   
  12.     put_unaligned( 0x45, ( unsigned char * )iph );
  13.     iph->tos      = 0;
  14.     put_unaligned( htons( ip_len ), &( iph->tot_len ) );
  15.     iph->id       = 0;
  16.     iph->frag_off = htons(IP_DF);
  17.     iph->ttl      = 64;
  18.     iph->protocol = IPPROTO_UDP;
  19.     iph->check    = 0;
  20.     put_unaligned( saddr, &( iph->saddr ) );
  21.     put_unaligned( daddr, &( iph->daddr ) );
  22.     iph->check    = ip_fast_csum( ( unsigned char * )iph, iph->ihl );
  23. #else
  24.     iph->version  = 4;
  25.     iph->ihl      = 5;
  26.     iph->tos      = 0;
  27.     iph->tot_len  = htons( ip_len );
  28.     iph->id       = 0;
  29.     iph->frag_off = htons(IP_DF);
  30.     iph->ttl      = 64;
  31.     iph->protocol = protocol;
  32.     iph->check    = 0;
  33.     iph->saddr    = saddr;
  34.     iph->daddr    = daddr;
  35.     iph->check    = ip_fast_csum( ( unsigned char * )iph, iph->ihl );       
  36. #endif               
  37.         return 0;
  38. }
复制代码
这是抓包的截图, 客户端始终再重传HTTP GET:

这个是wrieshark pcap的抓包
http redirect 3.rar (861 Bytes, 下载次数: 62)

论坛徽章:
0
2 [报告]
发表于 2010-04-23 23:28 |只看该作者
疑惑可能是跟tcp timestamp有关!

要去深读TCP/IP了

论坛徽章:
0
3 [报告]
发表于 2010-04-23 23:35 |只看该作者
这个是正确的HTTP redirect response包!
http redirect.rar (898 Bytes, 下载次数: 68)

论坛徽章:
36
IT运维版块每日发帖之星
日期:2016-04-10 06:20:00IT运维版块每日发帖之星
日期:2016-04-16 06:20:0015-16赛季CBA联赛之广东
日期:2016-04-16 19:59:32IT运维版块每日发帖之星
日期:2016-04-18 06:20:00IT运维版块每日发帖之星
日期:2016-04-19 06:20:00每日论坛发贴之星
日期:2016-04-19 06:20:00IT运维版块每日发帖之星
日期:2016-04-25 06:20:00IT运维版块每日发帖之星
日期:2016-05-06 06:20:00IT运维版块每日发帖之星
日期:2016-05-08 06:20:00IT运维版块每日发帖之星
日期:2016-05-13 06:20:00IT运维版块每日发帖之星
日期:2016-05-28 06:20:00每日论坛发贴之星
日期:2016-05-28 06:20:00
4 [报告]
发表于 2010-04-24 10:20 |只看该作者
校验和计算对了吗

论坛徽章:
0
5 [报告]
发表于 2010-04-24 10:44 |只看该作者
校验和计算对了吗
Godbach 发表于 2010-04-24 10:20



    谢谢!校验和已经计算对了! 可以通过看上面的截包的! 其他就是不知道什么原因了!

论坛徽章:
36
IT运维版块每日发帖之星
日期:2016-04-10 06:20:00IT运维版块每日发帖之星
日期:2016-04-16 06:20:0015-16赛季CBA联赛之广东
日期:2016-04-16 19:59:32IT运维版块每日发帖之星
日期:2016-04-18 06:20:00IT运维版块每日发帖之星
日期:2016-04-19 06:20:00每日论坛发贴之星
日期:2016-04-19 06:20:00IT运维版块每日发帖之星
日期:2016-04-25 06:20:00IT运维版块每日发帖之星
日期:2016-05-06 06:20:00IT运维版块每日发帖之星
日期:2016-05-08 06:20:00IT运维版块每日发帖之星
日期:2016-05-13 06:20:00IT运维版块每日发帖之星
日期:2016-05-28 06:20:00每日论坛发贴之星
日期:2016-05-28 06:20:00
6 [报告]
发表于 2010-04-24 10:57 |只看该作者
第5个包是你构造的吧

论坛徽章:
36
IT运维版块每日发帖之星
日期:2016-04-10 06:20:00IT运维版块每日发帖之星
日期:2016-04-16 06:20:0015-16赛季CBA联赛之广东
日期:2016-04-16 19:59:32IT运维版块每日发帖之星
日期:2016-04-18 06:20:00IT运维版块每日发帖之星
日期:2016-04-19 06:20:00每日论坛发贴之星
日期:2016-04-19 06:20:00IT运维版块每日发帖之星
日期:2016-04-25 06:20:00IT运维版块每日发帖之星
日期:2016-05-06 06:20:00IT运维版块每日发帖之星
日期:2016-05-08 06:20:00IT运维版块每日发帖之星
日期:2016-05-13 06:20:00IT运维版块每日发帖之星
日期:2016-05-28 06:20:00每日论坛发贴之星
日期:2016-05-28 06:20:00
7 [报告]
发表于 2010-04-24 11:03 |只看该作者
LZ讲一下你构造回应包的过程,以及怎么构造的数据部分。HTTP的回应包应该有多种类型吧。

论坛徽章:
0
8 [报告]
发表于 2010-04-24 11:22 |只看该作者
上代码...
你构造好skb后,dev_queue_xmit发的包?
mac处理没?

论坛徽章:
0
9 [报告]
发表于 2010-04-24 11:23 |只看该作者
LZ讲一下你构造回应包的过程,以及怎么构造的数据部分。HTTP的回应包应该有多种类型吧。
Godbach 发表于 2010-04-24 11:03



    godbach兄.. 每次到这个板块,你依旧你这里的常青树啊!!我最近搞起ndis,windows内核了

论坛徽章:
0
10 [报告]
发表于 2010-04-24 12:10 |只看该作者
谢谢各位!
搞定了 犯了超低级错误
一行行代码 审了一遍 居然MAC地址 copy的时候 写错了!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP