udptest.c
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1999,2000  Ross Combs (rocombs@cs.nmsu.edu)
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #include "common/setup_before.h"
  19. #include <stdio.h>
  20. #ifdef HAVE_STDDEF_H
  21. # include <stddef.h>
  22. #else
  23. # ifndef NULL
  24. #  define NULL ((void *)0)
  25. # endif
  26. #endif
  27. #ifdef HAVE_STRING_H
  28. # include <string.h>
  29. #endif
  30. #ifdef HAVE_MEMORY_H
  31. # include <memory.h>
  32. #endif
  33. #include "compat/memset.h"
  34. #include <errno.h>
  35. #include "compat/strerror.h"
  36. #ifdef TIME_WITH_SYS_TIME
  37. # include <sys/time.h>
  38. # include <time.h>
  39. #else
  40. # ifdef HAVE_SYS_TIME_H
  41. #  include <sys/time.h>
  42. # else
  43. #  include <time.h>
  44. # endif
  45. #endif
  46. #ifdef HAVE_UNISTD_H
  47. # include <unistd.h>
  48. #endif
  49. #ifdef HAVE_FCNTL_H
  50. # include <fcntl.h>
  51. #else
  52. # ifdef HAVE_SYS_FILE_H
  53. #  include <sys/file.h>
  54. # endif
  55. #endif
  56. #ifdef HAVE_SYS_TYPES_H
  57. # include <sys/types.h>
  58. #endif
  59. #ifdef HAVE_SYS_SOCKET_H
  60. # include <sys/socket.h>
  61. #endif
  62. #include "compat/socket.h"
  63. #include "compat/recv.h"
  64. #include "compat/send.h"
  65. #ifdef HAVE_SYS_PARAM_H
  66. # include <sys/param.h>
  67. #endif
  68. #ifdef HAVE_NETINET_IN_H
  69. # include <netinet/in.h>
  70. #endif
  71. #include "compat/netinet_in.h"
  72. #include "compat/psock.h"
  73. #include "common/packet.h"
  74. #include "common/init_protocol.h"
  75. #include "common/udp_protocol.h"
  76. #include "common/tag.h"
  77. #include "common/bn_type.h"
  78. #include "common/field_sizes.h"
  79. #include "common/network.h"
  80. #include "client.h"
  81. #include "udptest.h"
  82. #include "common/setup_after.h"
  83. #ifdef CLIENTDEBUG
  84. #define dprintf printf
  85. #else
  86. #define dprintf if (0) printf
  87. #endif
  88. extern int client_udptest_setup(char const * progname, unsigned short * lsock_port_ret)
  89. {
  90.     int                lsock;
  91.     struct sockaddr_in laddr;
  92.     unsigned short     lsock_port;
  93.     
  94.     if (!progname)
  95.     {
  96. fprintf(stderr,"got NULL prognamen");
  97. return -1;
  98.     }
  99.     
  100.     if ((lsock = psock_socket(PF_INET,SOCK_DGRAM,PSOCK_IPPROTO_UDP))<0)
  101.     {
  102. fprintf(stderr,"%s: could not create UDP socket (psock_socket: %s)n",progname,strerror(psock_errno()));
  103. return -1;
  104.     }
  105.     
  106.     if (psock_ctl(lsock,PSOCK_NONBLOCK)<0)
  107. fprintf(stderr,"%s: could not set UDP socket to non-blocking mode (psock_ctl: %s)n",progname,strerror(psock_errno()));
  108.     
  109.     for (lsock_port=BNETD_MIN_TEST_PORT; lsock_port<=BNETD_MAX_TEST_PORT; lsock_port++)
  110.     {
  111. memset(&laddr,0,sizeof(laddr));
  112. laddr.sin_family = PSOCK_AF_INET;
  113. laddr.sin_port = htons(lsock_port);
  114. laddr.sin_addr.s_addr = htonl(INADDR_ANY);
  115. if (psock_bind(lsock,(struct sockaddr *)&laddr,(psock_t_socklen)sizeof(laddr))==0)
  116.     break;
  117. if (lsock_port==BNETD_MIN_TEST_PORT)
  118.     dprintf("Could not bind to standard UDP port %hu, trying others. (psock_bind: %s)n",BNETD_MIN_TEST_PORT,strerror(psock_errno()));
  119.     }
  120.     if (lsock_port>BNETD_MAX_TEST_PORT)
  121.     {
  122. fprintf(stderr,"%s: could not bind to any UDP port %hu through %hu (psock_bind: %s)n",progname,BNETD_MIN_TEST_PORT,BNETD_MAX_TEST_PORT,strerror(psock_errno()));
  123. psock_close(lsock);
  124. return -1;
  125.     }
  126.     
  127.     if (lsock_port_ret)
  128. *lsock_port_ret = lsock_port;
  129.     
  130.     return lsock;
  131. }
  132. extern int client_udptest_recv(char const * progname, int lsock, unsigned short lsock_port, unsigned int timeout)
  133. {
  134.     int          len;
  135.     unsigned int count;
  136.     t_packet *   rpacket;
  137.     time_t       start;
  138.     
  139.     if (!progname)
  140.     {
  141. fprintf(stderr,"%s: got NULL prognamen",progname);
  142. return -1;
  143.     }
  144.     
  145.     if (!(rpacket = packet_create(packet_class_bnet)))
  146.     {
  147. fprintf(stderr,"%s: could not create packetn",progname);
  148. return -1;
  149.     }
  150.     
  151.     start = time(NULL);
  152.     count = 0;
  153.     while (start+(time_t)timeout>=time(NULL))  /* timeout after a few seconds from last packet */
  154.     {
  155. if ((len = psock_recv(lsock,packet_get_raw_data_build(rpacket,0),MAX_PACKET_SIZE,0))<0)
  156. {
  157.     if (psock_errno()!=PSOCK_EAGAIN && psock_errno()!=PSOCK_EWOULDBLOCK)
  158. fprintf(stderr,"%s: failed to receive UDPTEST on port %hu (psock_recv: %s)n",progname,lsock_port,strerror(psock_errno()));
  159.     continue;
  160. }
  161. packet_set_size(rpacket,len);
  162. if (packet_get_type(rpacket)!=SERVER_UDPTEST)
  163. {
  164.     dprintf("Got unexpected UDP packet type %u on port %hun",packet_get_type(rpacket),lsock_port);
  165.     continue;
  166. }
  167. if (bn_int_tag_eq(rpacket->u.server_udptest.bnettag,BNETTAG)<0)
  168. {
  169.     fprintf(stderr,"%s: got bad UDPTEST packet on port %hun",progname,lsock_port);
  170.     continue;
  171. }
  172. count++;
  173. if (count>=2)
  174.     break;
  175. start = time(NULL);
  176.     }
  177.     
  178.     packet_destroy(rpacket);
  179.     
  180.     if (count<2)
  181.     {
  182. printf("Only received %d UDP packets on port %hu. Connection may be slow or firewalled.n",count,lsock_port);
  183. return -1;
  184.     }
  185.     
  186.     return 0;
  187. }