aboutsummaryrefslogtreecommitdiffstats
path: root/P4/server.c
blob: b306defd24de82077226bf33b4acc728fd4439e7 (plain) (blame)
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <pthread.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <fcntl.h>
#include <sys/time.h>
#include <time.h>
#include "util.h"
#include <stdbool.h>
#include <unistd.h>
#include <signal.h>

#define MAX_THREADS 100
#define MAX_queue_len 100
#define MAX_CE 100
#define INVALID -1
#define BUFF_SIZE 1024

// structs:
typedef struct request_queue {
  int fd;
  char *request;
} request_t;

typedef struct cache_entry {
  int len;
  char *request;
  char *content;
} cache_entry_t;


// globals:
FILE *logfile;

// Dispatcher Threads
pthread_t dispatch_threads[MAX_THREADS];
// Worker Threads
pthread_t worker_threads[MAX_THREADS];
// Thread ID array
int wid_arr[MAX_THREADS];
int did_arr[MAX_THREADS];


pthread_mutex_t cache_mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t log_mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t req_queue_mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t req_queue_notfull = PTHREAD_COND_INITIALIZER; // wait until queue isn't full (dispatch)
pthread_cond_t req_queue_notempty = PTHREAD_COND_INITIALIZER; // wait until queue isn't empty (worker)
request_t requests[MAX_queue_len];

int req_remove_index = 0;
int req_insert_index = 0;
int curr_queue_len = 0;
int queue_len;
int cache_size = INVALID;
int cache_evict_index = 0;
int num_worker = INVALID;

// Cache
cache_entry_t *cache;

void *dispatch(void *arg);

void *worker(void *arg);

// For grace termination
static volatile sig_atomic_t doneflag = 0;
static void setdoneflag(int signo) {
  doneflag = 1;
}

/* ************************ Dynamic Pool Code ***********************************/
bool alive_pool[MAX_THREADS];

// Extra Credit: This function implements the policy to change the worker thread pool dynamically
// depending on the number of requests
void *dynamic_pool_size_update(void *arg) {
  while (1) {
    usleep(500000);
    // Lock the mutex to dynamically change thread pool
    if (pthread_mutex_lock(&req_queue_mutex) < 0) {
      printf("Failed to lock queue! %s\n", strerror(errno));
      continue;
    }

    int i;
    // Cancel some threads
    // printf("curr_queue_len: %d --- num_worker: %d\n", curr_queue_len, num_worker);
    if (curr_queue_len < num_worker) {
      if (num_worker > 1) {
        printf("Deleted %d worker threads because server load decreased\n", num_worker - curr_queue_len - 1);
      }
      for (i = 0; (i < MAX_THREADS) && (curr_queue_len < num_worker) && (num_worker > 1); i++) {
        if (alive_pool[i] == true) {
          alive_pool[i] = false;
          num_worker--;
        }
      }
      pthread_cond_broadcast(&req_queue_notempty);
    }

    // Create new threads
    else if (curr_queue_len > num_worker) {
      pthread_attr_t attr;
      int s;
      s = pthread_attr_init(&attr);
      if (s != 0) {
        fprintf(stderr, "error - attribute init failed.\n");
        exit(EXIT_FAILURE);
      }
      s = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
      if (s != 0) {
        fprintf(stderr, "error - setting detached state failed.\n");
        exit(EXIT_FAILURE);
      }
      printf("Created %d worker threads because server load increased\n", curr_queue_len - num_worker);
      for (i = 0; i < MAX_THREADS && curr_queue_len > num_worker; i++) {
        if (alive_pool[i] == false) {
          alive_pool[i] = true;
          s = pthread_create(worker_threads + i, &attr, worker, (void *) &wid_arr[i]);
          if (s != 0) {
            fprintf(stderr, "error - pthread_create for worker threads dynamically.\n");
          }
          num_worker++;
        }
      }
    }

    if (pthread_mutex_unlock(&req_queue_mutex) < 0) {
      printf("Failed to unlock queue! %s\n", strerror(errno));
    }
  }
}
/**********************************************************************************/

/* ************************************ Cache Code ********************************/

// Function to check whether the given request is present in cache
int getCacheIndex(char *request) {
  //printf("Checking cache\n");
  int i;
  for (i = 0; i < cache_size; i++) {
    if (cache[i].request != NULL && strcmp(cache[i].request, request) == 0) {
      //printf("Found in cache %d\n",i);
      return i;
    }
  }
  //printf("Not in cache\n");
  return INVALID;
}

// Function to add the request and its file content into the cache
// It should add the request at an index according to the cache replacement policy you are using
void addIntoCache(char *mybuf, char *memory, int memory_size) {
  //printf("Adding to cache\n");
  if (cache[cache_evict_index].request != NULL) {
    free(cache[cache_evict_index].request);
  }
  if (cache[cache_evict_index].content != NULL) {
    free(cache[cache_evict_index].content);
  }

  //printf("Allocating cache entry\n");
  cache[cache_evict_index].request = (char *) malloc(BUFF_SIZE * sizeof(char));
  cache[cache_evict_index].content = (char *) malloc(memory_size);

  //printf("Filling cache entry\n");
  strcpy(cache[cache_evict_index].request, mybuf);
  memcpy(cache[cache_evict_index].content, memory, memory_size);
  cache[cache_evict_index].len = memory_size;

  cache_evict_index = (cache_evict_index + 1) % cache_size;
  //printf("Cache add done\n");
}

// clear the memory allocated to the cache
void deleteCache() {
  int i;
  for (i = 0; i < cache_size; i++) {
    free(cache[i].request);
    free(cache[i].content);
  }
  free(cache);
}

// Function to initialize the cache
void initCache() {
  cache = malloc(sizeof(cache_entry_t) * cache_size);
  int i;
  for (i = 0; i < cache_size; i++) {
    cache[i].len = 0;
    cache[i].request = NULL;
    cache[i].content = NULL;
  }
}


/**********************************************************************************/

// Function to get the content type from the request
char *getContentType(char *mybuf) {
  int requeue_len = strlen(mybuf);
  char *contenttype;
  if (strcmp(&mybuf[requeue_len - 5], ".html") == 0) {
    contenttype = "text/html";
  } else if (strcmp(&mybuf[requeue_len - 4], ".jpg") == 0) {
    contenttype = "image/jpeg";
  } else if (strcmp(&mybuf[requeue_len - 4], ".gif") == 0) {
    contenttype = "image/gif";
  } else {
    contenttype = "text/plain";
  }
  return contenttype;
}


// Function to open and read the file from the disk into the memory
// You can return the file size if it is useful
int readFromDisk(int fd, char *mybuf, void **memory, int id, int myreqnum) {
  int filefd;
  if ((filefd = open(mybuf + 1, O_RDONLY)) == -1) {
    // it is mybuf + 1 because get request will return the path with a '/' in the front
    return_error(fd, "Requested file not found.");
    // Stop recording the time
    pthread_mutex_lock(&log_mutex);
    printf("[%d][%d][%d][%s][%s][%s]\n", id, myreqnum, fd, mybuf, "Requested file not found.", "MISS");
    fprintf(logfile, "[%d][%d][%d][%s][%s][%s]\n", id, myreqnum, fd, mybuf, "Requested file not found.", "MISS");
    fflush(logfile);
    pthread_mutex_unlock(&log_mutex);
    return -1;
  }
  struct stat st;
  fstat(filefd, &st);
  int filesize = st.st_size;
  *memory = malloc(filesize);
  read(filefd, *memory, filesize);
  close(filefd);
  return filesize;
}


/**********************************************************************************/
// Function to receive the request from the client and put into the queue
void *dispatch(void *arg) {
  int fd;
  char mybuf[BUFF_SIZE];
  char *reqptr;

  while (1) {
    fd = accept_connection();
    if (fd < 0) { return NULL; }
    if (get_request(fd, mybuf) != 0) { continue; /*back to top of loop!*/ }

    reqptr = (char *) malloc(strlen(mybuf) + 1);
    if (reqptr == NULL) {
      printf("Failed to allocate memory: %s", strerror(errno));
    }
    strcpy(reqptr, mybuf);

    // put request in queue
    if (pthread_mutex_lock(&req_queue_mutex) < 0) {
      printf("Failed to lock queue! %s\n", strerror(errno));
    }
    while (curr_queue_len == queue_len) { // the queue is full!
      pthread_cond_wait(&req_queue_notfull, &req_queue_mutex);
    }

    requests[req_insert_index].fd = fd;
    requests[req_insert_index].request = reqptr;

    curr_queue_len++;
    req_insert_index = (req_insert_index + 1) % queue_len; // ring buffer

    pthread_cond_signal(&req_queue_notempty);
    if (pthread_mutex_unlock(&req_queue_mutex) < 0) {
      printf("Failed to unlock queue! %s\n", strerror(errno));
    }
  }
  return NULL;
}

/**********************************************************************************/

// Function to take the request from the queue, process it and then return a result to the client
void *worker(void *arg) {
  int id = *(int *) arg;
  int fd, filesize, myreqnum;
  void *memory;
  char mybuf[BUFF_SIZE];
  myreqnum = 0;

  while (1) {
    // get request from queue
    if (pthread_mutex_lock(&req_queue_mutex) < 0) {
      printf("Failed to lock! %s\n", strerror(errno));
      continue;
    }

    while (curr_queue_len == 0) { // the queue is empty!
      if (pthread_cond_wait(&req_queue_notempty, &req_queue_mutex) < 0) {
        printf("Failed to wait! %s\n", strerror(errno));
      }
      if (alive_pool[id] == false) {
        if (pthread_mutex_unlock(&req_queue_mutex) < 0) {
          printf("Failed to unlock queue! %s\n", strerror(errno));
        }
        return NULL;
      }
    }

    if (alive_pool[id] == false) {
      if (pthread_mutex_unlock(&req_queue_mutex) < 0) {
        printf("Failed to unlock queue! %s\n", strerror(errno));
      }
      return NULL;
    }

    // Code to get the request from the queue
    fd = requests[req_remove_index].fd;
    strcpy(mybuf, requests[req_remove_index].request);
    free(requests[req_remove_index].request);

    curr_queue_len--;
    req_remove_index = (req_remove_index + 1) % queue_len; // ring buffer

    if (pthread_cond_signal(&req_queue_notfull) < 0) {
      printf("Failed to signal! %s\n", strerror(errno));
    }

    if (pthread_mutex_unlock(&req_queue_mutex) < 0) {
      printf("Failed to unlock! %s\n", strerror(errno));
    }

    myreqnum++;

    if (strcmp(mybuf, "/") == 0) {
      strcpy(mybuf, "/index.html");
    }

    // Code to get the data from cache or from the disk
    bool hit = false;
    if (pthread_mutex_lock(&cache_mutex) < 0) {
      printf("Failed to lock cache mutex! %s\n", strerror(errno));
    }

    int index = getCacheIndex(mybuf);
    if (index != INVALID) {
      filesize = cache[index].len;
      memory = malloc(filesize);
      memcpy(memory, cache[index].content, filesize);
      hit = true;
    } else {
      filesize = readFromDisk(fd, mybuf, &memory, id, myreqnum);
      if (filesize == -1) {
        if (pthread_mutex_unlock(&cache_mutex) < 0) {
          printf("Failed to unlock cache mutex! %s\n", strerror(errno));
        }
        continue;
      }
      addIntoCache(mybuf, memory, filesize);
    }

    if (pthread_mutex_unlock(&cache_mutex) < 0) {
      printf("Failed to unlock cache mutex! %s\n", strerror(errno));
    }

    // Code to log the request into the file and terminal
    if (pthread_mutex_lock(&log_mutex) < 0) {
      printf("Failed to lock log mutex! %s\n", strerror(errno));
    }

    printf("[%d][%d][%d][%s][%d][%s]\n", id, myreqnum, fd, mybuf, filesize, (hit == true) ? "HIT" : "MISS");
    if (fprintf(logfile, "[%d][%d][%d][%s][%d][%s]\n", id, myreqnum, fd, mybuf, filesize,
          (hit == true) ? "HIT" : "MISS") < 0) {
      printf("Failed to print to log file! %s\n", strerror(errno));
    }

    fflush(logfile);

    if (pthread_mutex_unlock(&log_mutex) < 0) {
      printf("Failed to unlock log mutex! %s\n", strerror(errno));
    }

    char *contenttype = getContentType(mybuf);
    if (return_result(fd, contenttype, memory, filesize) != 0) {
      printf("Couldn't return result, thread id=%d\n", id);
    }

    free(memory);
  }
  return NULL;
}

/**********************************************************************************/

int main(int argc, char **argv) {

  // Error check on number of arguments
  // Decided to check if caching is enabled [argc == 8 -> Caching enabled]
  if (argc != 8) {
    printf("usage: %s port path num_dispatcher num_workers dynamic_flag queue_length cache_size\n", argv[0]);
    return -1;
  }

  // Init variables
  int port = atoi(argv[1]);
  int num_dispatch = atoi(argv[3]);
  num_worker = atoi(argv[4]);
  int dynamic_flag = atoi(argv[5]);
  queue_len = atoi(argv[6]);
  if (atoi(argv[7]) > 0) {
    cache_size = atoi(argv[7]);
  }

  // Sanity error checks
  if (num_dispatch > MAX_THREADS || num_dispatch < 1) {
    fprintf(stderr, "Invalid number of dispatch threads.\n");
    return -2;
  }
  if (num_worker > MAX_THREADS || num_worker < 1) {
    fprintf(stderr, "Invalid number of worker threads.\n");
    return -2;
  }
  if (queue_len > MAX_queue_len || queue_len < 1) {
    fprintf(stderr, "Invalid queue_len size.\n");
    return -2;
  }
  if (cache_size > MAX_CE || cache_size < 1) {
    fprintf(stderr, "Invalid cache_size.\n");
    return -2;
  }

  // Change SIGINT action for grace termination
  struct sigaction act;
  act.sa_handler = setdoneflag;
  act.sa_flags = 0;
  if ((sigemptyset(&act.sa_mask) == -1) || (sigaction(SIGINT, &act, NULL) == -1)) {
    perror("Failed to set SIGINT handler");
    return 1;
  }

  // Open log file
  logfile = fopen("webserver_log", "w");

  // Change the current working directory to server root directory
  if (chdir(argv[2]) != 0) {
    perror("Couldn't change directory to server root.");
    return -1;
  }

  // Init cache if required
  initCache();

  // Start the server
  init(port);
  printf("Starting server on port %d: %d disp, %d work\n", port, num_dispatch, num_worker);

  // Create dispatcher and worker threads
  int i;
  for (i = 0; i < MAX_THREADS; i++) {
    alive_pool[i] = false;
  }
  for (i = 0; i < num_worker; i++) {
    wid_arr[i] = i;
  }
  for (i = 0; i < num_dispatch; i++) {
    did_arr[i] = i;
  }

  pthread_attr_t attr;
  int s;

  s = pthread_attr_init(&attr);
  if (s != 0) {
    fprintf(stderr, "error - attribute init failed.\n");
    exit(EXIT_FAILURE);
  }
  s = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
  if (s != 0) {
    fprintf(stderr, "error - setting detached state failed.\n");
    exit(EXIT_FAILURE);
  }

  for (i = 0; i < num_worker; i++) {
    alive_pool[i] = true;
    s = pthread_create(worker_threads + i, &attr, worker, (void *) &wid_arr[i]);
    /* Alternative */
    //        s = pthread_create(worker_threads + i, NULL, worker, (void *) &wid_arr[i]);
    //        s = pthread_detach(*(worker_threads + i));
    if (s != 0) {
      fprintf(stderr, "error - pthread_create for worker threads.\n");
      exit(EXIT_FAILURE);
    }
  }
  for (i = 0; i < num_dispatch; i++) {
    s = pthread_create(dispatch_threads + i, &attr, dispatch, (void *) &did_arr[i]);
    if (s != 0) {
      fprintf(stderr, "error - pthread_create for dispatcher threads.\n");
      exit(EXIT_FAILURE);
    }
  }

  pthread_t dynamic_pool_deamon;
  if (dynamic_flag == 1) {
    int dynamic_pool_deamon_id = MAX_THREADS + 1;
    s = pthread_create(&dynamic_pool_deamon, &attr, dynamic_pool_size_update, (void *) &dynamic_pool_deamon_id);
    if (s != 0) {
      fprintf(stderr, "error - pthread_create for dynamic pool management.\n");
      exit(EXIT_FAILURE);
    }
  }

  // Terminate server gracefully
  while (!doneflag) {
    sleep(1);
  }

  printf("Server terminating ...\n");

  // Print the number of pending requests in the request queue
  printf("The number of pending requests in the request queue: %d\n", curr_queue_len);


  if (pthread_mutex_lock(&log_mutex) < 0) {
    printf("Failed to lock log mutex! %s\n", strerror(errno));
  }

  // close log file
  fclose(logfile);

  if (pthread_mutex_unlock(&log_mutex) < 0) {
    printf("Failed to unlock log mutex! %s\n", strerror(errno));
  }



  if (pthread_mutex_lock(&cache_mutex) < 0) {
    printf("Failed to lock cache mutex! %s\n", strerror(errno));
  }

  // Remove cache
  deleteCache();

  if (pthread_mutex_unlock(&cache_mutex) < 0) {
    printf("Failed to unlock cache mutex! %s\n", strerror(errno));
  }

  printf("Main thread exiting.\n");
  return 0;
}