tun_dev.cpp 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. /*
  2. * tun.cpp
  3. *
  4. * Created on: Oct 26, 2017
  5. * Author: root
  6. */
  7. #include "tun_dev.h"
  8. my_time_t last_keep_alive_time=0;
  9. int get_tun_fd(char * dev_name)
  10. {
  11. int tun_fd=open("/dev/net/tun",O_RDWR);
  12. if(tun_fd <0)
  13. {
  14. mylog(log_fatal,"open /dev/net/tun failed");
  15. myexit(-1);
  16. }
  17. struct ifreq ifr;
  18. memset(&ifr, 0, sizeof(ifr));
  19. ifr.ifr_flags = IFF_TUN|IFF_NO_PI;
  20. strncpy(ifr.ifr_name, dev_name, IFNAMSIZ);
  21. if(ioctl(tun_fd, TUNSETIFF, (void *)&ifr) != 0)
  22. {
  23. mylog(log_fatal,"open /dev/net/tun failed");
  24. myexit(-1);
  25. }
  26. return tun_fd;
  27. }
  28. int set_tun(char *if_name,u32_t local_ip,u32_t remote_ip,int mtu)
  29. {
  30. if(manual_tun) return 0;
  31. //printf("i m here1\n");
  32. struct ifreq ifr;
  33. struct sockaddr_in sai;
  34. memset(&ifr,0,sizeof(ifr));
  35. memset(&sai, 0, sizeof(struct sockaddr));
  36. int sockfd = socket(AF_INET, SOCK_DGRAM, 0);
  37. strncpy(ifr.ifr_name, if_name, IFNAMSIZ);
  38. sai.sin_family = AF_INET;
  39. sai.sin_port = 0;
  40. sai.sin_addr.s_addr = local_ip;
  41. memcpy(&ifr.ifr_addr,&sai, sizeof(struct sockaddr));
  42. assert(ioctl(sockfd, SIOCSIFADDR, &ifr)==0); //set source ip
  43. sai.sin_addr.s_addr = remote_ip;
  44. memcpy(&ifr.ifr_addr,&sai, sizeof(struct sockaddr));
  45. assert(ioctl(sockfd, SIOCSIFDSTADDR, &ifr)==0);//set dest ip
  46. ifr.ifr_mtu=mtu;
  47. assert(ioctl(sockfd, SIOCSIFMTU, &ifr)==0);//set mtu
  48. assert(ioctl(sockfd, SIOCGIFFLAGS, &ifr)==0);
  49. // ifr.ifr_flags |= ( IFF_UP|IFF_POINTOPOINT|IFF_RUNNING|IFF_NOARP|IFF_MULTICAST );
  50. ifr.ifr_flags = ( IFF_UP|IFF_POINTOPOINT|IFF_RUNNING|IFF_NOARP|IFF_MULTICAST );//set interface flags
  51. assert(ioctl(sockfd, SIOCSIFFLAGS, &ifr)==0);
  52. //printf("i m here2\n");
  53. return 0;
  54. }
  55. int put_header(char header,char * data,int &len)
  56. {
  57. assert(len>=0);
  58. data[len]=header;
  59. len+=1;
  60. return 0;
  61. }
  62. int get_header(char &header,char * data,int &len)
  63. {
  64. assert(len>=0);
  65. if(len<1) return -1;
  66. len-=1;
  67. header=data[len];
  68. return 0;
  69. }
  70. int from_normal_to_fec2(conn_info_t & conn_info,dest_t &dest,char * data,int len,char header)
  71. {
  72. int out_n;char **out_arr;int *out_len;my_time_t *out_delay;
  73. from_normal_to_fec(conn_info,data,len,out_n,out_arr,out_len,out_delay);
  74. for(int i=0;i<out_n;i++)
  75. {
  76. char tmp_buf[buf_len];
  77. int tmp_len=out_len[i];
  78. memcpy(tmp_buf,out_arr[i],out_len[i]);
  79. put_header(header,tmp_buf,tmp_len);
  80. delay_send(out_delay[i],dest,tmp_buf,tmp_len);//this is slow but safer.just use this one
  81. //put_header(header,out_arr[i],out_len[i]);//modify in place
  82. //delay_send(out_delay[i],dest,out_arr[i],out_len[i]);//warning this is currently okay,but if you modified fec encoder,you may have to use the above code
  83. }
  84. return 0;
  85. }
  86. int from_fec_to_normal2(conn_info_t & conn_info,dest_t &dest,char * data,int len)
  87. {
  88. int out_n;char **out_arr;int *out_len;my_time_t *out_delay;
  89. from_fec_to_normal(conn_info,data,len,out_n,out_arr,out_len,out_delay);
  90. for(int i=0;i<out_n;i++)
  91. {
  92. #ifndef NOLIMIT
  93. if(program_mode==server_mode)
  94. {
  95. char * tmp_data=out_arr[i];
  96. int tmp_len=out_len[i];
  97. iphdr * iph;
  98. iph = (struct iphdr *) tmp_data;
  99. if(tmp_len>=int(sizeof(iphdr))&&iph->version==4)
  100. {
  101. u32_t dest_ip=iph->daddr;
  102. //printf("%s\n",my_ntoa(dest_ip));
  103. if( ( ntohl(sub_net_uint32)&0xFFFFFF00 ) != ( ntohl (dest_ip) &0xFFFFFF00) )
  104. {
  105. string sub=my_ntoa(dest_ip);
  106. string dst=my_ntoa( htonl( ntohl (sub_net_uint32) &0xFFFFFF00) );
  107. mylog(log_warn,"[restriction]packet's dest ip [%s] not in subnet [%s],dropped, maybe you need to compile an un-restricted server\n", sub.c_str(), dst.c_str());
  108. continue;
  109. }
  110. }
  111. }
  112. #endif
  113. delay_send(out_delay[i],dest,out_arr[i],out_len[i]);
  114. }
  115. return 0;
  116. }
  117. int do_mssfix(char * s,int len)
  118. {
  119. if(mssfix==0)
  120. {
  121. return 0;
  122. }
  123. if(len<int(sizeof(iphdr)))
  124. {
  125. mylog(log_debug,"packet from tun len=%d <20\n",len);
  126. return -1;
  127. }
  128. iphdr * iph;
  129. iph = (struct iphdr *) s;
  130. if(iph->version!=4)
  131. {
  132. //mylog(log_trace,"not ipv4");
  133. return 0;
  134. }
  135. if(iph->protocol!=IPPROTO_TCP)
  136. {
  137. //mylog(log_trace,"not tcp");
  138. return 0;
  139. }
  140. int ip_len=ntohs(iph->tot_len);
  141. int ip_hdr_len=iph->ihl*4;
  142. if(len<ip_hdr_len)
  143. {
  144. mylog(log_debug,"len<ip_hdr_len,%d %d\n",len,ip_hdr_len);
  145. return -1;
  146. }
  147. if(len<ip_len)
  148. {
  149. mylog(log_debug,"len<ip_len,%d %d\n",len,ip_len);
  150. return -1;
  151. }
  152. if(ip_hdr_len>ip_len)
  153. {
  154. mylog(log_debug,"ip_hdr_len<ip_len,%d %d\n",ip_hdr_len,ip_len);
  155. return -1;
  156. }
  157. if( ( ntohs(iph->frag_off) &(short)(0x1FFF) ) !=0 )
  158. {
  159. //not first segment
  160. //printf("line=%d %x %x \n",__LINE__,(u32_t)ntohs(iph->frag_off),u32_t( ntohs(iph->frag_off) &0xFFF8));
  161. return 0;
  162. }
  163. if( ( ntohs(iph->frag_off) &(short)(0x80FF) ) !=0 )
  164. {
  165. //not whole segment
  166. //printf("line=%d \n",__LINE__);
  167. return 0;
  168. }
  169. char * tcp_begin=s+ip_hdr_len;
  170. int tcp_len=ip_len-ip_hdr_len;
  171. if(tcp_len<20)
  172. {
  173. mylog(log_debug,"tcp_len<20,%d\n",tcp_len);
  174. return -1;
  175. }
  176. tcphdr * tcph=(struct tcphdr*)tcp_begin;
  177. if(int(tcph->syn)==0) //fast fail
  178. {
  179. mylog(log_trace,"tcph->syn==0\n");
  180. return 0;
  181. }
  182. int tcp_hdr_len = tcph->doff*4;
  183. if(tcp_len<tcp_hdr_len)
  184. {
  185. mylog(log_debug,"tcp_len <tcp_hdr_len, %d %d\n",tcp_len,tcp_hdr_len);
  186. return -1;
  187. }
  188. /*
  189. if(tcp_hdr_len==20)
  190. {
  191. //printf("line=%d\n",__LINE__);
  192. mylog(log_trace,"no tcp option\n");
  193. return 0;
  194. }*/
  195. char *ptr=tcp_begin+20;
  196. char *option_end=tcp_begin+tcp_hdr_len;
  197. while(ptr<option_end)
  198. {
  199. if(*ptr==0)
  200. {
  201. return 0;
  202. }
  203. else if(*ptr==1)
  204. {
  205. ptr++;
  206. }
  207. else if(*ptr==2)
  208. {
  209. if(ptr+1>=option_end)
  210. {
  211. mylog(log_debug,"invaild option ptr+1==option_end,for mss\n");
  212. return -1;
  213. }
  214. if(*(ptr+1)!=4)
  215. {
  216. mylog(log_debug,"invaild mss len\n");
  217. return -1;
  218. }
  219. if(ptr+3>=option_end)
  220. {
  221. mylog(log_debug,"ptr+4>option_end for mss\n");
  222. return -1;
  223. }
  224. int mss= read_u16(ptr+2);//uint8_t(ptr[2])*256+uint8_t(ptr[3]);
  225. int new_mss=mss;
  226. if(new_mss>::mssfix-40-10) //minus extra 10 for safe
  227. {
  228. new_mss=::mssfix-40-10;
  229. }
  230. write_u16(ptr+2,(unsigned short)new_mss);
  231. pseudo_header psh;
  232. psh.source_address =iph->saddr;
  233. psh.dest_address = iph->daddr;
  234. psh.placeholder = 0;
  235. psh.protocol = iph->protocol;
  236. psh.tcp_length = htons(tcp_len);
  237. tcph->check=0;
  238. tcph->check=tcp_csum(psh,(unsigned short *)tcph,tcp_len);
  239. mylog(log_trace,"mss=%d syn=%d ack=%d, changed mss to %d \n",mss,(int)tcph->syn,(int)tcph->ack,new_mss);
  240. //printf("test=%x\n",u32_t(1));
  241. //printf("frag=%x\n",u32_t( ntohs(iph->frag_off) ));
  242. return 0;
  243. }
  244. else
  245. {
  246. if(ptr+1>=option_end)
  247. {
  248. mylog(log_debug,"invaild option ptr+1==option_end\n");
  249. return -1;
  250. }
  251. else
  252. {
  253. int len=(unsigned char)*(ptr+1);
  254. if(len<=1)
  255. {
  256. mylog(log_debug,"invaild option len %d\n",len);
  257. return -1;
  258. }
  259. ptr+=len;
  260. }
  261. }
  262. }
  263. return 0;
  264. }
  265. int do_keep_alive(dest_t & dest)
  266. {
  267. if(get_current_time()-last_keep_alive_time>u64_t(keep_alive_interval))
  268. {
  269. last_keep_alive_time=get_current_time();
  270. char data[buf_len];int len;
  271. data[0]=header_keep_alive;
  272. len=1;
  273. assert(dest.cook==1);
  274. //do_cook(data,len);
  275. delay_send(0,dest,data,len);
  276. }
  277. return 0;
  278. }