Overview
Comment: | Added range support |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
409fc328b78b656874a41d63fecfe52f |
User & Date: | rkeene on 2014-02-06 04:15:54 |
Other Links: | manifest | tags |
Context
2014-02-06
| ||
06:02 | Updated to ignore SIGPIPE and made several Range handling improvements check-in: f27754658d user: rkeene tags: trunk | |
04:15 | Added range support check-in: 409fc328b7 user: rkeene tags: trunk | |
2014-02-05
| ||
18:06 | Updated to statically link check-in: d37dd3792a user: rkeene tags: trunk | |
Changes
Modified filed.c from [1af4b31488] to [460b9a234e].
︙ | ︙ | |||
31 32 33 34 35 36 37 38 39 40 41 42 43 44 | char *path; int fd; size_t len; char *lastmod; char lastmod_b[64]; char *type; }; /* Global variables */ struct filed_fileinfo *filed_fileinfo_fdcache; unsigned int filed_fileinfo_fdcache_size = CACHE_SIZE; /* Initialize process */ static int filed_init(void) { | > > > > > > > > > > > > > | 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 | char *path; int fd; size_t len; char *lastmod; char lastmod_b[64]; char *type; }; /* Request variables */ struct filed_http_request { /** Buffers **/ struct filed_fileinfo fileinfo; char path_b[1010]; char tmpbuf[1010]; /** HTTP Request information **/ char *path; /*** Path being requested ***/ off_t offset; /*** Range start ***/ ssize_t length; /*** Range length ***/ }; /* Global variables */ struct filed_fileinfo *filed_fileinfo_fdcache; unsigned int filed_fileinfo_fdcache_size = CACHE_SIZE; /* Initialize process */ static int filed_init(void) { |
︙ | ︙ | |||
101 102 103 104 105 106 107 | return(-1); } return(fd); } /* Log a message */ | | | 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | return(-1); } return(fd); } /* Log a message */ //#define FILED_DONT_LOG #ifdef FILED_DONT_LOG # define filed_logging_thread_init() 0 # define filed_log_msg_debug(x, ...) /**/ # define filed_log_msg(x) /**/ #else /* Initialize logging thread */ static int filed_logging_thread_init(void) { |
︙ | ︙ | |||
233 234 235 236 237 238 239 | pthread_mutex_unlock(&cache->mutex); return(buffer); } /* Process an HTTP request and return the path requested */ | | > | > > > > > > > > > > > > | 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 | pthread_mutex_unlock(&cache->mutex); return(buffer); } /* Process an HTTP request and return the path requested */ static struct filed_http_request *filed_get_http_request(FILE *fp, struct filed_http_request *buffer_st) { char *method, *path; char *buffer, *tmpbuffer, *workbuffer, *workbuffer_next; size_t buffer_len, tmpbuffer_len; off_t range_start, range_end; ssize_t range_length; int i; range_start = 0; range_end = 0; range_length = -1; buffer = buffer_st->path_b; buffer_len = sizeof(buffer_st->path_b); tmpbuffer = buffer_st->tmpbuf; tmpbuffer_len = sizeof(buffer_st->tmpbuf); filed_log_msg("WAIT_FOR_REQUEST FD=..."); fgets(buffer, buffer_len, fp); method = buffer; buffer = strchr(buffer, ' '); |
︙ | ︙ | |||
267 268 269 270 271 272 273 | } filed_log_msg("GOT_REQUEST FD=... PATH=..."); filed_log_msg("WAIT_FOR_HEADERS FD=..."); for (i = 0; i < 100; i++) { | | > > > > > > > > > > > > > > > > > > > > > | > > > | > > > > > > > > > > > | | | > | > > | > > | > > > > > > > > > > > > > > > > > > > > > | > | | | > | | | | | | | | | | | | | | | | | | > > | 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 | } filed_log_msg("GOT_REQUEST FD=... PATH=..."); filed_log_msg("WAIT_FOR_HEADERS FD=..."); for (i = 0; i < 100; i++) { fgets(tmpbuffer, tmpbuffer_len, fp); if (strncasecmp(tmpbuffer, "Range: ", 7) == 0) { workbuffer = tmpbuffer + 7; if (strncasecmp(workbuffer, "bytes=", 6) == 0) { workbuffer += 6; range_start = strtoul(workbuffer, &workbuffer_next, 10); workbuffer = workbuffer_next; if (*workbuffer == '-') { workbuffer++; if (*workbuffer != '\r' && *workbuffer != '\n') { range_end = strtoul(workbuffer, &workbuffer_next, 10); } } } } if (memcmp(tmpbuffer, "\r\n", 2) == 0) { break; } } filed_log_msg("GOT_HEADERS FD=..."); /* We only handle the "GET" method */ if (strcasecmp(method, "get") != 0) { return(NULL); } /* Determine range */ if (range_end != 0) { if (range_end <= range_start) { return(NULL); } range_length = range_end - range_start; } /* Fill up structure to return */ buffer_st->path = path; buffer_st->offset = range_start; buffer_st->length = range_length; return(buffer_st); } /* Return an error page */ static void filed_error_page(FILE *fp, const char *date_current, int error_number) { char *error_string = "<html><head><title>ERROR</title></head><body>Unable to process request</body></html>"; fprintf(fp, "HTTP/1.1 %i OK\r\nDate: %s\r\nServer: filed\r\nLast-Modified: %s\r\nContent-Length: %llu\r\nContent-Type: %s\r\nConnection: close\r\n\r\n%s", error_number, date_current, date_current, (unsigned long long) strlen(error_string), "text/html", error_string ); } /* Handle a single request from a client */ static void filed_handle_client(int fd, struct filed_http_request *request) { struct filed_fileinfo *fileinfo; ssize_t sendfile_ret; size_t sendfile_len; off_t sendfile_offset; char *path; char *date_current, date_current_b[64]; int http_code; FILE *fp; /* Determine current time */ date_current = filed_format_time(date_current_b, sizeof(date_current_b), time(NULL)); /* Open socket as ANSI I/O for ease of use */ fp = fdopen(fd, "w+b"); if (fp == NULL) { close(fd); return; } request = filed_get_http_request(fp, request); path = request->path; filed_log_msg("PROCESS_REPLY_START FD=... PATH=... RANGE_START=... RANGE_LENGTH=..."); if (path == NULL) { filed_error_page(fp, date_current, 500); filed_log_msg("PROCESS_REPLY_COMPLETE FD=... ERROR=500"); fclose(fp); return; } http_code = -1; fileinfo = filed_open_file(path, &request->fileinfo); if (fileinfo == NULL) { filed_error_page(fp, date_current, 404); filed_log_msg("PROCESS_REPLY_COMPLETE FD=... ERROR=404"); } else { if (request->offset != 0 || request->length >= 0) { if ((size_t) request->offset >= fileinfo->len) { filed_log_msg("PROCESS_REPLY_COMPLETE FD=... ERROR=416"); filed_error_page(fp, date_current, 416); } if (request->length < 0) { request->length = fileinfo->len - request->offset; } filed_log_msg_debug("Partial request, starting at: %lu and running for %lu bytes", (unsigned long) request->offset, (unsigned long) request->length); http_code = 216; } else { http_code = 200; request->offset = 0; request->length = fileinfo->len; } if (http_code > 0) { fprintf(fp, "HTTP/1.1 %i OK\r\nDate: %s\r\nServer: filed\r\nLast-Modified: %s\r\nContent-Length: %llu\r\nContent-Range: %llu-%llu/%llu\r\nContent-Type: %s\r\nConnection: close\r\n\r\n", http_code, date_current, fileinfo->lastmod, (unsigned long long) request->length, (unsigned long long) request->offset, (unsigned long long) (request->offset + request->length - 1), (unsigned long long) fileinfo->len, fileinfo->type ); fflush(fp); filed_log_msg("PROCESS_REPLY_COMPLETE FD=... STATUS=200"); filed_log_msg("SEND_START IFD=... OFD=... BYTES=..."); sendfile_offset = request->offset; sendfile_len = request->length; while (1) { sendfile_ret = sendfile(fd, fileinfo->fd, &sendfile_offset, sendfile_len); if (sendfile_ret <= 0) { break; } sendfile_len -= sendfile_ret; if (sendfile_len == 0) { break; } } filed_log_msg("SEND_COMPLETE STATUS=... IFD=... OFD=... BYTES=... BYTES_SENT=..."); } close(fileinfo->fd); filed_log_msg("CLOSE_FILE FD=..."); } filed_log_msg("CLOSE_CONNECTION FD=..."); fclose(fp); return; } /* Handle incoming connections */ static void *filed_worker_thread(void *arg_v) { struct filed_worker_thread_args *arg; struct filed_http_request request; struct sockaddr_in6 addr; socklen_t addrlen; int failure_count = 0, max_failure_count = MAX_FAILURE_COUNT; int master_fd, fd; /* Read arguments */ arg = arg_v; |
︙ | ︙ | |||
421 422 423 424 425 426 427 | /* Log the new connection */ filed_log_msg("NEW_CONNECTION SRC_ADDR=... SRC_PORT=... FD=..."); /* Reset failure count*/ failure_count = 0; /* Handle socket */ | | | 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 | /* Log the new connection */ filed_log_msg("NEW_CONNECTION SRC_ADDR=... SRC_PORT=... FD=..."); /* Reset failure count*/ failure_count = 0; /* Handle socket */ filed_handle_client(fd, &request); } /* Report error */ filed_log_msg("THREAD_DIED ABNORMAL"); return(NULL); } |
︙ | ︙ |