-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebbridge.c
1364 lines (1226 loc) · 55.7 KB
/
webbridge.c
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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// webbridge.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <arpa/inet.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <errno.h>
#include <dirent.h>
#include <sys/stat.h>
#include <time.h>
#include <locale.h>
#include <ctype.h>
#include <limits.h>
#define DEFAULT_PORT 8080 // Default port to run the server on
#define CHUNK_SIZE 8192 // Size of the chunk to read from the socket
#define TIMEOUT 10 // Timeout in seconds for receiving data
#define PATH_MAX_LENGTH 256
#define REDIRECT_RESPONSE_SIZE 1024
char base_directory[256] = "."; // Base directory for file storage
int server_port = DEFAULT_PORT; // Server port number
char text_filename[256] = ""; // Name of the text file to display
char *text_file_content = NULL; // Content of the text file to display
// Function prototypes
void send_directory_listing(int client_socket, const char *request_path);
void serve_file(int client_socket, const char *request_path);
void handle_text_submission(int client_socket, const char *body, size_t body_length, const char *current_path);
void handle_request(int client_socket);
void handle_file_upload(int client_socket, const char *initial_body, size_t initial_body_length, const char *boundary, int content_length, const char *current_path);
void handle_folder_creation(int client_socket, const char *body, size_t body_length, char *current_path);
void extract_filename(char *header, char *filename);
void print_help();
int hex_to_int(char c);
void url_decode(char *src, char *dest);
void urlencode(const char *src, char *dest, size_t dest_size);
void mkdir_recursive(const char *dir);
void set_socket_timeout(int socket_fd, int timeout);
void sanitize_path(char *path);
void *memmem(const void *haystack, size_t haystacklen, const void *needle, size_t needlelen);
void send_response(int client_socket, const char *status, const char *content_type, const char *body); // Added function prototype
// Function to send HTTP response
void send_response(int client_socket, const char *status, const char *content_type, const char *body) {
char header[1024];
int content_length = strlen(body);
snprintf(header, sizeof(header),
"HTTP/1.1 %s\r\n"
"Content-Length: %d\r\n"
"Content-Type: %s\r\n"
"Connection: close\r\n\r\n",
status, content_length, content_type);
send(client_socket, header, strlen(header), 0);
send(client_socket, body, content_length, 0);
}
// Function to extract filename from the Content-Disposition header
void extract_filename(char *header, char *filename) {
char *pos = strstr(header, "filename=");
if (pos) {
pos += 9; // Skip 'filename='
if (*pos == '"' || *pos == '\'') {
char quote = *pos++;
char *end = strchr(pos, quote);
if (end) {
*end = '\0';
}
strncpy(filename, pos, 255);
filename[255] = '\0';
} else {
char *end = strpbrk(pos, ";\r\n");
if (end) {
*end = '\0';
}
strncpy(filename, pos, 255);
filename[255] = '\0';
}
} else {
strcpy(filename, "uploaded_file");
}
}
// Function to print help message
void print_help() {
printf("Usage: webbridge [folder_to_share] [port_number] [text_file_name]\n");
printf("Options:\n");
printf(" folder_to_share : The directory to share (default is current directory)\n");
printf(" port_number : The port number to listen on (default is 8080)\n");
printf(" text_file_name : Name of a text file whose content will be displayed on the page\n");
}
// Helper function to convert hex character to int
int hex_to_int(char c) {
c = tolower((unsigned char)c);
if (c >= '0' && c <= '9') return c - '0';
if (c >= 'a' && c <= 'f') return c - 'a' + 10;
return 0;
}
// Function to URL-decode a string
void url_decode(char *src, char *dest) {
char *pstr = src, *pbuf = dest;
while (*pstr) {
if (*pstr == '%') {
if (pstr[1] && pstr[2]) {
*pbuf++ = (char)((hex_to_int(pstr[1]) << 4) | hex_to_int(pstr[2]));
pstr += 2;
}
} else if (*pstr == '+') {
*pbuf++ = ' ';
} else {
*pbuf++ = *pstr;
}
pstr++;
}
*pbuf = '\0';
}
// Function to URL-encode a string
void urlencode(const char *src, char *dest, size_t dest_size) {
const char *hex = "0123456789ABCDEF";
size_t i = 0;
while (*src && i < dest_size - 1) {
if (isalnum((unsigned char)*src) || *src == '-' || *src == '_' || *src == '.' || *src == '~') {
dest[i++] = *src;
} else {
if (i + 3 >= dest_size) break;
dest[i++] = '%';
dest[i++] = hex[(*src >> 4) & 0xF];
dest[i++] = hex[*src & 0xF];
}
src++;
}
dest[i] = '\0';
}
// Function to create directories recursively
void mkdir_recursive(const char *dir) {
char tmp[1024];
char *p = NULL;
size_t len;
snprintf(tmp, sizeof(tmp), "%s", dir);
len = strlen(tmp);
if (tmp[len - 1] == '/') tmp[len - 1] = '\0';
for (p = tmp + 1; *p; p++) {
if (*p == '/') {
*p = '\0';
mkdir(tmp, S_IRWXU);
*p = '/';
}
}
mkdir(tmp, S_IRWXU);
}
// Set a timeout for receiving data from the socket
void set_socket_timeout(int socket_fd, int timeout) {
struct timeval tv_timeout;
tv_timeout.tv_sec = timeout;
tv_timeout.tv_usec = 0;
setsockopt(socket_fd, SOL_SOCKET, SO_RCVTIMEO, &tv_timeout, sizeof(tv_timeout));
}
// Function to sanitize the path to prevent directory traversal attacks
void sanitize_path(char *path) {
char sanitized[1024] = "";
char *token;
char *rest = path;
while ((token = strtok_r(rest, "/", &rest))) {
if (strcmp(token, "..") == 0) continue; // Skip parent directory references
if (strlen(sanitized) + strlen(token) + 2 >= sizeof(sanitized)) break;
strcat(sanitized, "/");
strcat(sanitized, token);
}
if (strlen(sanitized) == 0) strcpy(sanitized, "/");
strcpy(path, sanitized);
}
// Implementation of memmem function
void *memmem(const void *haystack, size_t haystacklen,
const void *needle, size_t needlelen) {
if (needlelen == 0) return (void *)haystack;
if (haystacklen < needlelen) return NULL;
const unsigned char *haystack_ptr = haystack;
const unsigned char *needle_ptr = needle;
size_t i;
for (i = 0; i <= haystacklen - needlelen; i++) {
if (memcmp(haystack_ptr + i, needle_ptr, needlelen) == 0) {
return (void *)(haystack_ptr + i);
}
}
return NULL;
}
// Send directory listing as an HTML response with additional features
void send_directory_listing(int client_socket, const char *request_path) {
DIR *dir;
struct dirent *entry;
// Sanitize the request path
char sanitized_path[1024];
strncpy(sanitized_path, request_path, sizeof(sanitized_path) - 1);
sanitized_path[sizeof(sanitized_path) - 1] = '\0';
sanitize_path(sanitized_path);
// Extract query parameters (if any)
char *query = strchr(sanitized_path, '?');
char status_message[256] = "";
if (query) {
*query = '\0'; // Terminate the path to remove query
query++;
if (strncmp(query, "upload=success", 14) == 0) {
strcpy(status_message, "File(s) uploaded successfully.");
} else if (strncmp(query, "upload=error", 12) == 0) {
strcpy(status_message, "No files were selected for upload.");
} else if (strncmp(query, "folder=created", 14) == 0) {
strcpy(status_message, "Folder created successfully.");
} else if (strncmp(query, "folder=error", 12) == 0) {
strcpy(status_message, "Failed to create folder. It may already exist.");
}
}
// Build the full directory path
char directory_path[2048];
snprintf(directory_path, sizeof(directory_path), "%s%s", base_directory, sanitized_path);
// Open the directory
dir = opendir(directory_path);
if (!dir) {
send_response(client_socket, "404 Not Found", "text/plain", "Directory not found");
return;
}
// Collect directories and files separately
struct dirent **namelist;
int n = scandir(directory_path, &namelist, NULL, alphasort);
if (n < 0) {
send_response(client_socket, "500 Internal Server Error", "text/plain", "Failed to read directory");
closedir(dir);
return;
}
// Calculate the required buffer size
size_t body_size = CHUNK_SIZE * 10; // Increased base size for additional HTML structure
if (text_file_content) {
body_size += strlen(text_file_content);
}
// Estimate additional size needed for directory listing
body_size += 1024 * n; // Assuming up to 1 KB per entry
// Allocate body dynamically
char *body = malloc(body_size);
if (body == NULL) {
send_response(client_socket, "500 Internal Server Error",
"text/plain", "Memory allocation failed");
closedir(dir);
return;
}
size_t offset = 0;
offset += snprintf(body + offset, body_size - offset,
"<!DOCTYPE html>"
"<html><head>"
"<meta charset=\"UTF-8\">"
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">"
"<title>webbridge</title>"
"<style>"
"body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; }"
"header { background-color: lightblue; color: black; padding: 20px 10px; text-align: center; }"
"header h1 { margin: 0; font-size: 36px; }"
".container { padding: 20px; }"
"h2 { color: #333; font-size: 24px; margin-bottom: 10px; }"
"form { margin-bottom: 15px; padding: 15px; background-color: #fff; border-radius: 5px; }"
"input[type=file], textarea, input[type=text] { padding: 10px; width: 100%%; font-size: 16px; margin-bottom: 10px; box-sizing: border-box;}"
"input[type=submit], button { padding: 10px 20px; background-color: lightblue; width: 100%%; color: black; border: none; cursor: pointer; font-size: 16px; border-radius: 5px; }"
"input[type=submit]:hover, button:hover { background-color: lightblue; }"
"table { width: 100%%; border-collapse: collapse; margin-bottom: 20px; }"
"th, td { padding: 12px; text-align: left; border-bottom: 1px solid #ddd; font-size: 18px; }"
"th { background-color: #f2f2f2; }"
"tr:nth-child(even) { background-color: #eaf5ff; }"
"tr:nth-child(odd) { background-color: whitesmoke; }"
"tr:hover { background-color: #f1f1f1; }"
"a { text-decoration: none; color: #333; }"
"a:hover { text-decoration: underline; }"
".directory { font-weight: bold; }"
".modal { display: none; position: fixed; z-index: 1; left: 0; top: 0;"
" width: 100%%; height: 100%%; overflow: auto; background-color: rgba(0,0,0,0.4); }"
".modal-content { background-color: #fefefe; margin: 15%% auto; padding: 20px;"
" border: 1px solid #888; width: 80%%; max-width: 400px; border-radius: 5px; }"
".close { color: #aaa; float: right; font-size: 28px; font-weight: bold; }"
".close:hover, .close:focus { color: black; text-decoration: none; cursor: pointer; }"
"footer { background-color: lightblue; color: black; text-align: center; padding: 15px; width: 100%%; }"
"footer p { margin: 5px 0; font-size: 14px; }"
/* Responsive styles for mobile portrait */
"@media screen and (max-width: 600px) and (orientation: portrait) {"
" header h1 { font-size: 28px; }"
" h2 { font-size: 20px; }"
" th, td { font-size: 16px; padding: 10px; }"
" input[type=submit], button { width: 100%%; font-size: 18px; }"
" /* Hide 'Last Modified' column */"
" th:nth-child(3), td:nth-child(3) { display: none; }"
"}"
/* Responsive styles for landscape and larger screens */
"@media screen and (min-width: 601px), (orientation: landscape) {"
" header h1 { font-size: 24px; }"
" h2 { font-size: 18px; }"
" th, td { font-size: 14px; padding: 8px; }"
" input[type=submit], button { font-size: 14px; }"
"}"
"</style>");
// Include JavaScript variable for status message
offset += snprintf(body + offset, body_size - offset,
"<script>"
"var statusMessage = '%s';"
"</script>",
status_message);
offset += snprintf(body + offset, body_size - offset, "</head><body>");
// Add header
offset += snprintf(body + offset, body_size - offset,
"<header><h1>webbridge</h1></header>"
"<div class=\"container\">");
// Display the content of the text file if available
if (text_file_content) {
offset += snprintf(body + offset, body_size - offset,
"<h2>Text Content</h2>"
"<textarea readonly rows=\"5\">%s</textarea><hr>",
text_file_content);
}
// URL-encode the sanitized path for use in form actions
char encoded_sanitized_path[1024];
urlencode(sanitized_path, encoded_sanitized_path, sizeof(encoded_sanitized_path));
// Text area for users to submit text to append to a file
offset += snprintf(body + offset, body_size - offset,
"<h2>Submit Text</h2>"
"<form action=\"/submit-text%s\" method=\"post\">"
"<textarea name=\"user_text\" rows=\"3\" placeholder=\"Enter text to submit...\"></textarea>"
"<input type=\"submit\" value=\"Submit Text\"></form><hr>", encoded_sanitized_path);
// File upload form with validation
offset += snprintf(body + offset, body_size - offset,
"<h2>File Upload</h2>"
"<form action=\"/upload%s\" method=\"post\" "
"enctype=\"multipart/form-data\" onsubmit=\"return validateUploadForm()\">"
"<input type=\"file\" name=\"files[]\" multiple>"
"<input type=\"submit\" value=\"⬆ Upload to %s\">"
"</form><hr>", encoded_sanitized_path, sanitized_path);
// New Folder Button and Modal Dialog
offset += snprintf(body + offset, body_size - offset,
"<button onclick=\"document.getElementById('newFolderModal').style.display='block'\">📁 New Folder</button>"
"<div id=\"newFolderModal\" class=\"modal\">"
"<div class=\"modal-content\">"
"<span onclick=\"document.getElementById('newFolderModal').style.display='none'\" class=\"close\">×</span>"
"<form action=\"/create-folder%s\" method=\"post\" onsubmit=\"return validateFolderForm()\">"
"<h2>Create New Folder</h2>"
"<input type=\"text\" id=\"folderName\" name=\"folder_name\" placeholder=\"Folder Name\" required>"
"<input type=\"submit\" value=\"Create Folder\">"
"</form></div></div><hr>", encoded_sanitized_path);
// Directory listing
offset += snprintf(body + offset, body_size - offset,
"<h2>Files in Directory: %s</h2>"
"<table>"
"<tr><th>Name</th><th>Size</th><th>Last Modified</th></tr>", sanitized_path);
// Include '..' to go back to parent directory if not in root
if (strcmp(sanitized_path, "/") != 0) {
// Build parent directory path
char parent_path[1024];
strncpy(parent_path, sanitized_path, sizeof(parent_path));
parent_path[sizeof(parent_path) - 1] = '\0';
char *last_slash = strrchr(parent_path, '/');
if (last_slash && last_slash != parent_path) {
*last_slash = '\0';
} else {
strcpy(parent_path, "/");
}
offset += snprintf(body + offset, body_size - offset,
"<tr>"
"<td><a href=\"%s\">..</a></td>"
"<td></td>"
"<td></td>"
"</tr>", parent_path);
}
// First, list directories
for (int i = 0; i < n; i++) {
entry = namelist[i];
if (entry->d_type == DT_DIR || entry->d_type == DT_UNKNOWN) {
if (strcmp(entry->d_name, ".") != 0 && strcmp(entry->d_name, "..") != 0) {
char full_path[4096];
snprintf(full_path, sizeof(full_path), "%s/%s", directory_path, entry->d_name);
struct stat file_stat;
if (stat(full_path, &file_stat) == 0 && S_ISDIR(file_stat.st_mode)) {
// Format modification time
char time_str[64];
struct tm *tm_info = localtime(&file_stat.st_mtime);
strftime(time_str, sizeof(time_str), "%Y-%m-%d %H:%M:%S", tm_info);
// URL-encode the entry name
char encoded_name[1024];
urlencode(entry->d_name, encoded_name, sizeof(encoded_name));
// Build the full URL path
char url_path[2048];
if (strcmp(sanitized_path, "/") == 0) {
snprintf(url_path, sizeof(url_path), "/%s", encoded_name);
} else {
snprintf(url_path, sizeof(url_path), "%s/%s", sanitized_path, encoded_name);
}
// Generate the table row
offset += snprintf(body + offset, body_size - offset,
"<tr>"
"<td class=\"directory\"><a href=\"%s\">[ %s ]</a></td>"
"<td>-</td>"
"<td>%s</td>"
"</tr>",
url_path,
entry->d_name,
time_str);
}
}
}
}
// Then, list files
for (int i = 0; i < n; i++) {
entry = namelist[i];
if (entry->d_type != DT_DIR && entry->d_type != DT_UNKNOWN) {
char full_path[4096];
snprintf(full_path, sizeof(full_path), "%s/%s", directory_path, entry->d_name);
struct stat file_stat;
if (stat(full_path, &file_stat) == 0 && S_ISREG(file_stat.st_mode)) {
// Format file size and modification time
char time_str[64];
struct tm *tm_info = localtime(&file_stat.st_mtime);
strftime(time_str, sizeof(time_str), "%Y-%m-%d %H:%M:%S", tm_info);
// Format file size
char size_str[32];
if (file_stat.st_size < 1024) {
// Less than 1 KB, show in bytes
snprintf(size_str, sizeof(size_str), "%'ld bytes", file_stat.st_size);
} else if (file_stat.st_size < 1024 * 1024) {
// Less than 1 MB, show in KB
double size_in_kb = file_stat.st_size / 1024.0;
snprintf(size_str, sizeof(size_str), "%.2f KB", size_in_kb);
} else if (file_stat.st_size < 1024 * 1024 * 1024) {
// Less than 1 GB, show in MB
double size_in_mb = file_stat.st_size / (1024.0 * 1024.0);
snprintf(size_str, sizeof(size_str), "%.2f MB", size_in_mb);
} else {
// 1 GB or larger, show in GB
double size_in_gb = file_stat.st_size / (1024.0 * 1024.0 * 1024.0);
snprintf(size_str, sizeof(size_str), "%.2f GB", size_in_gb);
}
// URL-encode the entry name
char encoded_name[1024];
urlencode(entry->d_name, encoded_name, sizeof(encoded_name));
// Build the full URL path
char url_path[2048];
if (strcmp(sanitized_path, "/") == 0) {
snprintf(url_path, sizeof(url_path), "/%s", encoded_name);
} else {
snprintf(url_path, sizeof(url_path), "%s/%s", sanitized_path, encoded_name);
}
// Generate the table row
offset += snprintf(body + offset, body_size - offset,
"<tr>"
"<td><a href=\"%s\">%s</a></td>"
"<td>%s</td>"
"<td>%s</td>"
"</tr>",
url_path,
entry->d_name,
size_str,
time_str);
}
}
}
// Free the namelist
for (int i = 0; i < n; i++) {
free(namelist[i]);
}
free(namelist);
closedir(dir);
offset += snprintf(body + offset, body_size - offset, "</table>");
// Close container div
offset += snprintf(body + offset, body_size - offset, "</div>");
// Add footer with explanatory text
offset += snprintf(body + offset, body_size - offset,
"<footer>"
"<p>Powered by <strong>webbridge</strong> – A simple web-based file manager.</p>"
"<p>Visit the <a href=\"https://github.com/Delphi-Coder/Web-bridge\" target=\"_blank\" style=\"color: green; text-decoration: underline;\">project page</a> for more info.</p>"
"</footer>");
// JavaScript for validation and modal functionality
offset += snprintf(body + offset, body_size - offset,
"<script>"
"function validateUploadForm() {"
" var fileInput = document.querySelector('input[type=\"file\"]');"
" if (fileInput.files.length === 0) {"
" alert('Please select at least one file to upload.');"
" return false;"
" }"
" return true;"
"}"
"function validateFolderForm() {"
" var folderName = document.getElementById('folderName').value;"
" if (folderName.trim() === '') {"
" alert('Please enter a folder name.');"
" return false;"
" }"
" return true;"
"}"
// Display status message using JavaScript alert
"if (statusMessage !== '') {"
" alert(statusMessage);"
"}"
"</script>");
offset += snprintf(body + offset, body_size - offset, "</body></html>");
send_response(client_socket, "200 OK", "text/html", body);
// Free allocated memory
free(body);
}
// Serve the requested file
void serve_file(int client_socket, const char *request_path) {
// Sanitize the request path
char sanitized_path[1024];
strncpy(sanitized_path, request_path, sizeof(sanitized_path) - 1);
sanitized_path[sizeof(sanitized_path) - 1] = '\0';
sanitize_path(sanitized_path);
// Build the full file path
char file_path[2048];
snprintf(file_path, sizeof(file_path), "%s%s", base_directory, sanitized_path);
// Open the file
int file_fd = open(file_path, O_RDONLY);
if (file_fd < 0) {
send_response(client_socket, "404 Not Found", "text/plain",
"File not found");
return;
}
// Get the file extension to determine the content type
const char *extension = strrchr(file_path, '.');
const char *content_type = "application/octet-stream"; // Default content type
int inline_display = 0; // Flag to determine if file should be displayed inline
if (extension) {
if (strcmp(extension, ".html") == 0 || strcmp(extension, ".htm") == 0) {
content_type = "text/html";
inline_display = 1;
} else if (strcmp(extension, ".txt") == 0) {
content_type = "text/plain";
inline_display = 1;
} else if (strcmp(extension, ".css") == 0) {
content_type = "text/css";
inline_display = 1;
} else if (strcmp(extension, ".js") == 0) {
content_type = "application/javascript";
inline_display = 1;
} else if (strcmp(extension, ".png") == 0) {
content_type = "image/png";
inline_display = 1;
} else if (strcmp(extension, ".jpg") == 0 || strcmp(extension, ".jpeg") == 0) {
content_type = "image/jpeg";
inline_display = 1;
} else if (strcmp(extension, ".gif") == 0) {
content_type = "image/gif";
inline_display = 1;
}
}
// Send the file as an HTTP response
struct stat file_stat;
fstat(file_fd, &file_stat);
// Build the HTTP response header
char header[CHUNK_SIZE];
if (inline_display) {
// For inline display, set Content-Disposition to inline or omit it
snprintf(header, sizeof(header),
"HTTP/1.1 200 OK\r\n"
"Content-Length: %ld\r\n"
"Content-Type: %s\r\n"
"Connection: close\r\n\r\n",
file_stat.st_size, content_type);
} else {
// For other files, prompt download
// Extract the filename from the path
const char *filename = strrchr(file_path, '/');
if (filename) {
filename++; // Move past the '/'
} else {
filename = file_path; // No '/' found, use the whole path
}
// URL-encode the filename for Content-Disposition header
char encoded_filename[256];
urlencode(filename, encoded_filename, sizeof(encoded_filename));
snprintf(header, sizeof(header),
"HTTP/1.1 200 OK\r\n"
"Content-Length: %ld\r\n"
"Content-Type: %s\r\n"
"Content-Disposition: attachment; filename=\"%s\"\r\n"
"Connection: close\r\n\r\n",
file_stat.st_size, content_type, encoded_filename);
}
send(client_socket, header, strlen(header), 0);
// Send file content
ssize_t bytes_read;
char file_buffer[CHUNK_SIZE];
while ((bytes_read = read(file_fd, file_buffer, CHUNK_SIZE)) > 0) {
send(client_socket, file_buffer, bytes_read, 0);
}
close(file_fd);
}
// Function to handle text submission
void handle_text_submission(int client_socket, const char *body, size_t body_length, const char *current_path) {
// Extract the text from the body
char *user_text = strstr(body, "user_text=");
if (!user_text) {
send_response(client_socket, "400 Bad Request", "text/plain",
"No text found in the submission");
return;
}
user_text += strlen("user_text=");
// URL decode the text
char decoded_text[CHUNK_SIZE];
url_decode(user_text, decoded_text);
// Append the text to a file in the current directory
char full_path[1024];
snprintf(full_path, sizeof(full_path), "%s%s/submitted_text.txt", base_directory, current_path);
// Ensure the directory exists
char dir_path[1024];
snprintf(dir_path, sizeof(dir_path), "%s%s", base_directory, current_path);
mkdir_recursive(dir_path);
int file_fd = open(full_path, O_WRONLY | O_CREAT | O_APPEND, 0644);
if (file_fd < 0) {
send_response(client_socket, "500 Internal Server Error",
"text/plain", "Cannot save submitted text");
return;
}
// Write the text with a preceding \r\n
write(file_fd, "\r\n", 2);
write(file_fd, decoded_text, strlen(decoded_text));
close(file_fd);
// Redirect back to the directory listing
char redirect_response[256];
snprintf(redirect_response, sizeof(redirect_response),
"HTTP/1.1 303 See Other\r\n"
"Location: %s\r\n"
"Content-Type: text/plain\r\n"
"Content-Length: 0\r\n\r\n",
current_path);
send(client_socket, redirect_response, strlen(redirect_response), 0);
}
// Function to handle incoming HTTP requests
void handle_request(int client_socket) {
char buffer[CHUNK_SIZE];
int bytes_received;
int total_received = 0;
int header_received = 0;
char *header_end;
// Initialize buffer
memset(buffer, 0, sizeof(buffer));
// Set socket timeout
set_socket_timeout(client_socket, TIMEOUT);
// Read request headers
while ((bytes_received = recv(client_socket, buffer + total_received,
sizeof(buffer) - total_received - 1, 0)) > 0) {
total_received += bytes_received;
buffer[total_received] = '\0'; // Null-terminate
// Check if we have received the end of headers
header_end = strstr(buffer, "\r\n\r\n");
if (header_end) {
header_received = 1;
break;
}
if (total_received >= sizeof(buffer) - 1) {
// Buffer overflow
send_response(client_socket, "400 Bad Request", "text/plain",
"Header too large");
close(client_socket);
return;
}
}
if (bytes_received <= 0) {
// Error or connection closed
close(client_socket);
return;
}
if (!header_received) {
// Headers not fully received
send_response(client_socket, "400 Bad Request", "text/plain",
"Incomplete headers");
close(client_socket);
return;
}
// Now we have the headers in buffer
// Parse the request line
char method[16], path[256], protocol[16];
sscanf(buffer, "%s %s %s", method, path, protocol);
// URL decode the path
char decoded_path[256];
url_decode(path, decoded_path);
// Separate the path and query parameters
char *query = strchr(decoded_path, '?');
if (query) {
*query = '\0'; // Terminate the path at the '?'
query++; // 'query' now points to the query parameters
}
// Initialize current_path
char current_path[256] = "/";
// Parse headers
char *headers = buffer;
char *body = header_end + 4;
size_t header_length = body - buffer;
size_t body_length = total_received - header_length;
// Extract Content-Length header if present
int content_length = 0;
char *content_length_str = strstr(headers, "Content-Length:");
if (content_length_str) {
content_length_str += strlen("Content-Length:");
while (*content_length_str == ' ') content_length_str++;
content_length = atoi(content_length_str);
}
// Extract boundary from Content-Type header if present
char *boundary = NULL;
char boundary_value[256];
char *content_type = strstr(headers, "Content-Type:");
if (content_type) {
char *boundary_start = strstr(content_type, "boundary=");
if (boundary_start) {
boundary_start += strlen("boundary=");
// Handle optional quotes around boundary value
if (*boundary_start == '"') {
boundary_start++;
char *boundary_end = strchr(boundary_start, '"');
if (boundary_end) {
size_t boundary_length = boundary_end - boundary_start;
strncpy(boundary_value, boundary_start, boundary_length);
boundary_value[boundary_length] = '\0';
boundary = boundary_value;
}
} else {
char *boundary_end = strpbrk(boundary_start, ";\r\n");
if (boundary_end) {
size_t boundary_length = boundary_end - boundary_start;
strncpy(boundary_value, boundary_start, boundary_length);
boundary_value[boundary_length] = '\0';
boundary = boundary_value;
} else {
strcpy(boundary_value, boundary_start);
boundary = boundary_value;
}
}
}
}
if (strcmp(method, "GET") == 0) {
// Check if the path corresponds to a directory
char full_path[2048]; // Increased size to 2048
snprintf(full_path, sizeof(full_path), "%s%s", base_directory, decoded_path);
struct stat path_stat;
if (stat(full_path, &path_stat) == 0) {
if (S_ISDIR(path_stat.st_mode)) {
// Check for index.html or index.htm
char index_html_path[2056]; // Increased size to accommodate the longest possible path
char index_htm_path[2056];
if (snprintf(index_html_path, sizeof(index_html_path), "%s/index.html", full_path) >= sizeof(index_html_path)) {
send_response(client_socket, "500 Internal Server Error", "text/plain", "Path too long");
close(client_socket);
return;
}
if (snprintf(index_htm_path, sizeof(index_htm_path), "%s/index.htm", full_path) >= sizeof(index_htm_path)) {
send_response(client_socket, "500 Internal Server Error", "text/plain", "Path too long");
close(client_socket);
return;
}
struct stat index_stat;
if (stat(index_html_path, &index_stat) == 0 && S_ISREG(index_stat.st_mode)) {
// index.html exists, serve it
char index_request_path[1024];
if (snprintf(index_request_path, sizeof(index_request_path), "%s/index.html", decoded_path) >= sizeof(index_request_path)) {
send_response(client_socket, "500 Internal Server Error", "text/plain", "Path too long");
close(client_socket);
return;
}
serve_file(client_socket, index_request_path);
} else if (stat(index_htm_path, &index_stat) == 0 && S_ISREG(index_stat.st_mode)) {
// index.htm exists, serve it
char index_request_path[1024];
if (snprintf(index_request_path, sizeof(index_request_path), "%s/index.htm", decoded_path) >= sizeof(index_request_path)) {
send_response(client_socket, "500 Internal Server Error", "text/plain", "Path too long");
close(client_socket);
return;
}
serve_file(client_socket, index_request_path);
} else {
// Serve directory listing
send_directory_listing(client_socket, decoded_path);
}
} else {
// Serve file download
serve_file(client_socket, decoded_path);
}
} else {
send_response(client_socket, "404 Not Found", "text/plain",
"File or directory not found");
}
} else if (strcmp(method, "POST") == 0 &&
strncmp(decoded_path, "/upload", 7) == 0) {
// Extract current_path from the path after '/upload'
strcpy(current_path, decoded_path + 7); // Get the path after '/upload'
if (strlen(current_path) == 0) {
strcpy(current_path, "/");
}
// Sanitize current_path
sanitize_path(current_path);
// Handle file upload
if (!boundary) {
send_response(client_socket, "400 Bad Request", "text/plain",
"Boundary not found");
close(client_socket);
return;
}
// Pass the client_socket and boundary to the file upload handler
handle_file_upload(client_socket, body, body_length, boundary,
content_length, current_path);
} else if (strcmp(method, "POST") == 0 &&
strncmp(decoded_path, "/submit-text", 12) == 0) {
// Extract current_path from the path after '/submit-text'
strcpy(current_path, decoded_path + 12); // Get the path after '/submit-text'
if (strlen(current_path) == 0) {
strcpy(current_path, "/");
}
// Sanitize current_path
sanitize_path(current_path);
// Handle text submission
// Read the remaining body if necessary
if (content_length > body_length) {
int remaining = content_length - body_length;
if (remaining + total_received > sizeof(buffer) - 1) {
// Buffer overflow
send_response(client_socket, "400 Bad Request", "text/plain",
"Request too large");
close(client_socket);
return;
}
bytes_received = recv(client_socket, buffer + total_received, remaining, 0);
if (bytes_received <= 0) {
// Error or connection closed
close(client_socket);
return;
}
total_received += bytes_received;
buffer[total_received] = '\0'; // Null-terminate
body_length += bytes_received;
body = header_end + 4; // Recalculate body pointer
}
handle_text_submission(client_socket, body, body_length, current_path);
} else if (strcmp(method, "POST") == 0 &&
strncmp(decoded_path, "/create-folder", 14) == 0) {
// Extract current_path from the path after '/create-folder'
strcpy(current_path, decoded_path + 14); // Get the path after '/create-folder'
if (strlen(current_path) == 0) {
strcpy(current_path, "/");
}
// Sanitize current_path
sanitize_path(current_path);
// Handle folder creation
// Read the remaining body if necessary
if (content_length > body_length) {
int remaining = content_length - body_length;
if (remaining + total_received > sizeof(buffer) - 1) {
// Buffer overflow
send_response(client_socket, "400 Bad Request", "text/plain",
"Request too large");
close(client_socket);
return;
}
bytes_received = recv(client_socket, buffer + total_received, remaining, 0);
if (bytes_received <= 0) {
// Error or connection closed
close(client_socket);
return;
}
total_received += bytes_received;
buffer[total_received] = '\0'; // Null-terminate
body_length += bytes_received;
body = header_end + 4; // Recalculate body pointer
}
handle_folder_creation(client_socket, body, body_length, current_path);
} else {
send_response(client_socket, "501 Not Implemented", "text/plain",
"Method not supported");
}
close(client_socket);
}
void handle_folder_creation(int client_socket, const char *body, size_t body_length, char *current_path) {
// Extract the folder name from the body
char *folder_name_param = strstr(body, "folder_name=");
if (!folder_name_param) {
send_response(client_socket, "400 Bad Request", "text/plain",
"No folder name provided.");
return;
}
folder_name_param += strlen("folder_name=");
// URL decode the folder name
char folder_name[256];
url_decode(folder_name_param, folder_name);
// Sanitize the folder name to prevent directory traversal
sanitize_path(folder_name);
if (strlen(folder_name) == 0) {
send_response(client_socket, "400 Bad Request", "text/plain",
"Invalid folder name.");
return;
}
// Build the full path for the new folder
char new_folder_path[1024];
snprintf(new_folder_path, sizeof(new_folder_path), "%s%s/%s", base_directory, current_path, folder_name);
// Ensure current_path starts with '/'
if (current_path[0] != '/') {
char temp_path[PATH_MAX_LENGTH];
snprintf(temp_path, sizeof(temp_path), "/%s", current_path);
strncpy(current_path, temp_path, PATH_MAX_LENGTH - 1);
current_path[PATH_MAX_LENGTH - 1] = '\0'; // Ensure null-termination
}
// URL-encode current_path for the Location header