aboutsummaryrefslogtreecommitdiff
path: root/src/Sockets.c
blob: 1ee3753a3b2d0d74d4e48fa23ed2ff2c3b338e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
 /*@@
   @file      Sockets.c
   @date      Wed Sep 13 20:39:15 2000
   @author    Tom Goodale
   @desc 
   Routines which deal with sockets.  
   These should probably move into thorn Socket at some point if
   they aren't already there.
   @enddesc
   @version $Header$
 @@*/

#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <sys/time.h>
#include <sys/types.h>

#include "cctk.h"

#include "httpd.h"

static char *rcsid = "$Header$";

CCTK_FILEVERSION(DevThorns_httpd_Socket_c)

/********************************************************************
 *********************     Local Data Types   ***********************
 ********************************************************************/

/********************************************************************
 ********************* Local Routine Prototypes *********************
 ********************************************************************/

int HTTP_MakeSocket (unsigned long port);

/********************************************************************
 ********************* Other Routine Prototypes *********************
 ********************************************************************/

/********************************************************************
 *********************     Local Data   *****************************
 ********************************************************************/

/* Active file descriptors */
static fd_set active_fd_set;

/* Main server socket */
static int sock;

/********************************************************************
 *********************     External Routines   **********************
 ********************************************************************/


 /*@@
   @routine    HTTP_SetupServer
   @date       Wed Sep 13 20:39:15 2000
   @author     Tom Goodale
   @desc 
   Creates a socket to listen on.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int HTTP_SetupServer(int port, int queue_size)
{
  /* Create the socket and set it up to accept connections. */
  sock = HTTP_MakeSocket (port);
  if (listen (sock, queue_size) < 0)
  {
    perror ("listen");
    exit (EXIT_FAILURE);
  }

  /* Initialize the set of active sockets. */
  FD_ZERO (&active_fd_set);
  FD_SET (sock, &active_fd_set);

  return 0;
}

 /*@@
   @routine    HTTP_ShutdownServer
   @date       Wed Sep 13 20:39:15 2000
   @author     Tom Goodale
   @desc 
   Closes all sockets we are interested in.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int HTTP_ShutdownServer(void)
{
  int i;

  /* Close all sockets in our active set */
  for(i = FD_SETSIZE-1; i >=0; i--)
  {
    if(FD_ISSET(i, &active_fd_set))
    {
      close(i);
    }
  }

  return 0;
}

 /*@@
   @routine    HTTP_Poll
   @date       Wed Sep 13 20:39:15 2000
   @author     Tom Goodale
   @desc 
   Main workhorse routine.
   Looks for activity on any of the sockets which are open
   and dispatches work.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int HTTP_Poll(cGH *cctkGH, long sec, long usec)
{
  int i;

#ifdef HAVE_SOCKLEN_T
  socklen_t size;
#else
  int size;
#endif

  fd_set read_fd_set;

  struct sockaddr_in clientname;
  struct timeval timeout;

  timeout.tv_sec = sec;
  timeout.tv_usec = usec;

  /* Block until input arrives on one or more active sockets. */
  read_fd_set = active_fd_set;

  if (select (FD_SETSIZE, &read_fd_set, NULL, NULL, &timeout) < 0)
  {
    perror ("select");
    exit (EXIT_FAILURE);
  }
    
  /* Service all the sockets with input pending. */
  for (i = 0; i < FD_SETSIZE; ++i)
  {
    if (FD_ISSET (i, &read_fd_set))
    {
      if (i == sock)
      {
        /* Connection request on original socket. */
        int new;
        size = sizeof (clientname);
        new = accept (sock,
                      (struct sockaddr *) &clientname,
                      &size);
        if (new < 0)
        {
          perror ("accept");
          exit (EXIT_FAILURE);
        }
        fprintf (stderr,
                 "Server: connect from host %s, port %hd.\n",
                 inet_ntoa (clientname.sin_addr),
                 ntohs (clientname.sin_port));
        FD_SET (new, &active_fd_set);
      }
      else
      {
        /* Data arriving on an already-connected socket. */
        if (HTTP_ReadFromClient (cctkGH, i) < 0)
        {
          close (i);
          FD_CLR (i, &active_fd_set);
        }
      }
    }
  }

  return 0;
}

/********************************************************************
 *********************     Local Routines   *************************
 ********************************************************************/

 /*@@
   @routine    HTTP_MakeSocket
   @date       Wed Sep 13 20:39:15 2000
   @author     Tom Goodale
   @desc 
   Creates a socket.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int HTTP_MakeSocket (unsigned long port)
{
  int sock;
  struct sockaddr_in name;

  /* Create the socket. */
  sock = socket (PF_INET, SOCK_STREAM, 0);
  if (sock < 0)
  {
    perror ("socket");
    exit (EXIT_FAILURE);
  }

  /* Give the socket a name. */
  name.sin_family = AF_INET;
  name.sin_port = htons (port);
  name.sin_addr.s_addr = htonl (INADDR_ANY);
  if (bind (sock, (struct sockaddr *) &name, sizeof (name)) < 0)
  {
    perror ("bind");
    exit (EXIT_FAILURE);
  }

  return sock;
}