server.c 6.2 KB
Newer Older
S
Shuaiqiang Chang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
S
Shuaiqiang Chang 已提交
15

S
Shuaiqiang Chang 已提交
16
#include <argp.h>
S
Shuaiqiang Chang 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29
#include <arpa/inet.h>
#include <errno.h>
#include <fcntl.h>
#include <netdb.h>
#include <netinet/in.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
H
Hui Li 已提交
30
#include <pthread.h>
S
Shuaiqiang Chang 已提交
31 32 33 34 35

#define BUFFER_SIZE 200

typedef struct {
  int port;
H
Hui Li 已提交
36
} info_s;
S
Shuaiqiang Chang 已提交
37

S
Shuaiqiang Chang 已提交
38 39 40 41 42 43 44 45
typedef struct Arguments {
  char *   host;
  uint16_t port;
  uint16_t max_port;
} SArguments;

static struct argp_option options[] = {
    {0, 'h', "host", 0, "The host to connect to TDEngine. Default is localhost.", 0},
H
Hui Li 已提交
46
    {0, 'p', "port", 0, "The TCP or UDP port number to use for the connection. Default is 6041.", 1},
S
Shuaiqiang Chang 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    {0, 'm', "max port", 0, "The max TCP or UDP port number to use for the connection. Default is 6050.", 2}};

static error_t parse_opt(int key, char *arg, struct argp_state *state) {

  SArguments *arguments = state->input;
  switch (key) {
    case 'h':
      arguments->host = arg;
      break;
    case 'p':
      arguments->port = atoi(arg);
      break;
    case 'm':
      arguments->max_port = atoi(arg);
      break;
  }
  return 0;
}

static struct argp argp = {options, parse_opt, 0, 0};

H
Hui Li 已提交
68 69
static void *bindTcpPort(void *sarg) {
  info_s *pinfo = (info_s *)sarg;
S
Shuaiqiang Chang 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
  int   port = pinfo->port;
  int   serverSocket;

  struct sockaddr_in server_addr;
  struct sockaddr_in clientAddr;
  int                addr_len = sizeof(clientAddr);
  int                client;
  char               buffer[BUFFER_SIZE];
  int                iDataNum;

  if ((serverSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0) {
    perror("socket");
    return NULL;
  }

  bzero(&server_addr, sizeof(server_addr));
  server_addr.sin_family = AF_INET;
  server_addr.sin_port = htons(port);
  server_addr.sin_addr.s_addr = htonl(INADDR_ANY);

  if (bind(serverSocket, (struct sockaddr *)&server_addr, sizeof(server_addr)) < 0) {
    perror("connect");
    return NULL;
  }

  if (listen(serverSocket, 5) < 0) {
    perror("listen");
    return NULL;
  }

H
Hui Li 已提交
100
  //printf("Bind port: %d success\n", port);
S
Shuaiqiang Chang 已提交
101 102 103 104 105 106
  while (1) {
    client = accept(serverSocket, (struct sockaddr *)&clientAddr, (socklen_t *)&addr_len);
    if (client < 0) {
      perror("accept");
      continue;
    }
H
Hui Li 已提交
107
    //printf("=================================\n");
S
Shuaiqiang Chang 已提交
108 109 110 111 112 113 114 115 116 117 118 119

    printf("Client ip is %s, Server port is %d\n", inet_ntoa(clientAddr.sin_addr), port);
    while (1) {
      buffer[0] = '\0';
      iDataNum = recv(client, buffer, BUFFER_SIZE, 0);

      if (iDataNum < 0) {
        perror("recv null");
        continue;
      }
      if (iDataNum > 0) {
        buffer[iDataNum] = '\0';
H
Hui Li 已提交
120
        //printf("read msg:%s\n", buffer);
S
Shuaiqiang Chang 已提交
121 122 123 124
        if (strcmp(buffer, "quit") == 0) break;
        buffer[0] = '\0';

        sprintf(buffer, "ack port_%d", port);
H
Hui Li 已提交
125
        //printf("send ack msg:%s\n", buffer);
S
Shuaiqiang Chang 已提交
126 127 128 129 130

        send(client, buffer, strlen(buffer), 0);
        break;
      }
    }
H
Hui Li 已提交
131
    //printf("=================================\n");
S
Shuaiqiang Chang 已提交
132 133 134 135 136
  }
  close(serverSocket);
  return NULL;
}

H
Hui Li 已提交
137 138
static void *bindUdpPort(void *sarg) {
  info_s *pinfo = (info_s *)sarg;
S
Shuaiqiang Chang 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
  int   port = pinfo->port;
  int   serverSocket;

  struct sockaddr_in server_addr;
  struct sockaddr_in clientAddr;
  char               buffer[BUFFER_SIZE];
  int                iDataNum;

  if ((serverSocket = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0) {
    perror("socket");
    return NULL;
  }

  bzero(&server_addr, sizeof(server_addr));
  server_addr.sin_family = AF_INET;
  server_addr.sin_port = htons(port);
  server_addr.sin_addr.s_addr = htonl(INADDR_ANY);

  if (bind(serverSocket, (struct sockaddr *)&server_addr, sizeof(server_addr)) < 0) {
    perror("connect");
    return NULL;
  }

  socklen_t sin_size;
H
Hui Li 已提交
163
  //printf("Bind port: %d success\n", port);
S
Shuaiqiang Chang 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176

  while (1) {
    buffer[0] = '\0';

    sin_size = sizeof(*(struct sockaddr *)&server_addr);

    iDataNum = recvfrom(serverSocket, buffer, BUFFER_SIZE, 0, (struct sockaddr *)&clientAddr, &sin_size);

    if (iDataNum < 0) {
      perror("recvfrom null");
      continue;
    }
    if (iDataNum > 0) {
H
Hui Li 已提交
177
      //printf("=================================\n");
S
Shuaiqiang Chang 已提交
178 179 180

      printf("Client ip is %s, Server port is %d\n", inet_ntoa(clientAddr.sin_addr), port);
      buffer[iDataNum] = '\0';
H
Hui Li 已提交
181
      //printf("Read msg from udp:%s\n", buffer);
S
Shuaiqiang Chang 已提交
182 183 184 185
      if (strcmp(buffer, "quit") == 0) break;
      buffer[0] = '\0';

      sprintf(buffer, "ack port_%d by udp", port);
H
Hui Li 已提交
186
      //printf("Send ack msg by udp:%s\n", buffer);
S
Shuaiqiang Chang 已提交
187 188

      sendto(serverSocket, buffer, strlen(buffer), 0, (struct sockaddr *)&clientAddr, (int)sin_size);
H
Hui Li 已提交
189
      //printf("=================================\n");
S
Shuaiqiang Chang 已提交
190 191 192 193 194 195 196 197
    }
  }

  close(serverSocket);
  return NULL;
}


S
Shuaiqiang Chang 已提交
198
int main(int argc, char *argv[]) {
H
Hui Li 已提交
199
  SArguments arguments = {"127.0.0.1", 6030, 6060};
S
Shuaiqiang Chang 已提交
200 201
  argp_parse(&argp, argc, argv, 0, 0, &arguments);
  int port = arguments.port;
S
Shuaiqiang Chang 已提交
202

H
Hui Li 已提交
203
  int num = arguments.max_port - arguments.port + 1;
S
Shuaiqiang Chang 已提交
204 205 206 207 208

  if (num < 0) {
    num = 1;
  }
  pthread_t *pids = malloc(2 * num * sizeof(pthread_t));
H
Hui Li 已提交
209 210
  info_s *     tinfos = malloc(num * sizeof(info_s));
  info_s *     uinfos = malloc(num * sizeof(info_s));
S
Shuaiqiang Chang 已提交
211

S
Shuaiqiang Chang 已提交
212
  for (size_t i = 0; i < num; i++) {
H
Hui Li 已提交
213 214
    info_s *tcpInfo = tinfos + i;
    tcpInfo->port = port + i;
S
Shuaiqiang Chang 已提交
215

H
Hui Li 已提交
216 217 218 219
    if (pthread_create(pids + i, NULL, bindTcpPort, tcpInfo) != 0) 
    {
      printf("create thread fail, port:%d.\n", port);
      exit(-1);
S
Shuaiqiang Chang 已提交
220 221
    }

H
Hui Li 已提交
222 223 224 225 226 227
    info_s *udpInfo = uinfos + i;
    udpInfo->port = port + i;
    if (pthread_create(pids + num + i, NULL, bindUdpPort, udpInfo) != 0)
    {                          
      printf("create thread fail, port:%d.\n", port);
      exit(-1);
S
Shuaiqiang Chang 已提交
228 229
    }
  }
H
Hui Li 已提交
230
  
S
Shuaiqiang Chang 已提交
231
  for (int i = 0; i < num; i++) {
S
Shuaiqiang Chang 已提交
232
    pthread_join(pids[i], NULL);
S
Shuaiqiang Chang 已提交
233
    pthread_join(pids[(num + i)], NULL);
S
Shuaiqiang Chang 已提交
234 235
  }
}