#include "array_list.h" #include "chunk.h" #include "config.h" #include "data.h" #include "file.h" #include "log.h" #include "multiprocessing.h" #include "protocol.h" #include "queue.h" #include "transport_tcp.h" #include "transport_tls.h" #include "unistd.h" #include "utils.h" #include #include #include #include static const char* filename_from_path(const char* path) { const char* slash = strrchr(path, '/'); return slash ? slash + 1 : path; } static bool should_exclude_file(const Config* config, const char* filename) { for (int i = 0; i < config->exclude_count; i++) { if (glob_match(config->exclude_patterns[i], filename)) return true; } if (config->include_count > 0) { for (int i = 0; i < config->include_count; i++) { if (glob_match(config->include_patterns[i], filename)) return true; } return false; } return false; } int receive_files(Config* config, int fd) { Status status; if (!receive_status(fd, &status)) return -1; while (status == STATUS_NEXT || status == STATUS_CHUNK || status == STATUS_CHECK) { if (status == STATUS_CHECK) { bool skipped; File* file = receive_incremental_check(fd, config, &skipped); if (skipped) goto next; if (file == NULL && !skipped) return -1; if (config->save_to_disk) { if (!should_exclude_file(config, filename_from_path(file->path))) file_save_to_disk(config->receive_root_directory, file); } file_destroy(file); } else if (status == STATUS_CHUNK) { Chunk* chunk = receive_chunk_data(fd, config); if (chunk == NULL) { send_status(fd, STATUS_ERROR); return -1; } for (int i = 0; i < chunk->element_count; i++) { if (config->save_to_disk) { if (!should_exclude_file(config, filename_from_path(chunk->items[i]->path))) file_save_to_disk(config->receive_root_directory, chunk->items[i]); } } chunk_destroy(chunk); } else { File* file = file_receive(config, fd); if (file == NULL) { log_message(LOG_LEVEL_ERROR, "Failed to receive file"); send_status(fd, STATUS_ERROR); return -1; } if (config->save_to_disk) { if (!should_exclude_file(config, filename_from_path(file->path))) file_save_to_disk(config->receive_root_directory, file); } file_destroy(file); } next: if (!receive_status(fd, &status)) { send_status(fd, STATUS_ERROR); return -1; } } if (status == STATUS_MANIFEST) { if (receive_manifest(fd, config, &status) != 0) return -1; } if (status != STATUS_FINISHED) { log_message(LOG_LEVEL_ERROR, "Did not receive FINISHED Status"); send_status(fd, STATUS_ERROR); return -1; } send_status(fd, STATUS_OK); return 0; } void handler(int file_descriptor) { Config* config = config_receive(file_descriptor); if (config == NULL) { log_message(LOG_LEVEL_ERROR, "Failed to receive config"); close(file_descriptor); return; } if (config->use_multithreading) { Queue* q = queue_create(100, file_destroy); if (q == NULL) { config_delete(config); close(file_descriptor); return; } PipelineContextReceiver* context = pipeline_context_receiver_create(config, q, file_descriptor); if (context == NULL) { queue_destroy(q); config_delete(config); close(file_descriptor); return; } thrd_t receiver, writer; if (thrd_create(&receiver, receive_thread, context) != thrd_success || thrd_create(&writer, write_thread, context) != thrd_success) { perror("Error creating Threads"); pipeline_context_receiver_destroy(context); close(file_descriptor); return; } thrd_join(receiver, NULL); thrd_join(writer, NULL); send_status(file_descriptor, STATUS_OK); pipeline_context_receiver_destroy(context); } else receive_files(config, file_descriptor); close(file_descriptor); } /* Signal-safe flag: set by the signal handler, checked in main loop. * We cannot safely access g_server from the signal handler because it's * not sig_atomic_t. Instead, the handler sets this flag and calls _exit * (which is async-signal-safe). The server is fork-based (not threaded), * so g_server is only accessed from the main thread and cleanup() only * runs in the parent process — no concurrent access from children. */ static volatile sig_atomic_t g_server_cleanup_requested = 0; static Server* g_server = NULL; static void cleanup(int sig) { (void)sig; g_server_cleanup_requested = 1; /* _exit is async-signal-safe; we must not call server_delete() from a * signal handler (it may call non-async-signal-safe functions). The OS * will reclaim resources on exit. */ _exit(0); } static void print_server_usage(void) { printf("FastSync Server\n"); printf("Usage: fastsync-server [options]\n"); printf("\n"); printf("Options:\n"); printf(" --stdio Run in stdio mode (SSH transport)\n"); printf(" -p TCP port (default: 8080, range: 1-65535)\n"); printf(" --tls Enable TLS encryption\n"); printf(" --cert TLS certificate file (PEM)\n"); printf(" --key TLS private key file (PEM)\n"); printf(" --ca TLS CA certificate file (PEM)\n"); printf(" -v, --verbose Enable debug logging\n"); printf(" --help Show this help\n"); } int main(int argc, char* argv[]) { bool use_tls = false; char* tls_cert = NULL; char* tls_key = NULL; char* tls_ca = NULL; int port = 8080; signal(SIGPIPE, SIG_IGN); for (int i = 1; i < argc; i++) { if (strcmp(argv[i], "--help") == 0) { print_server_usage(); return 0; } else if (strcmp(argv[i], "--stdio") == 0) { io_set_fds(STDIN_FILENO, STDOUT_FILENO); handler(STDIN_FILENO); return 0; } else if (strcmp(argv[i], "-v") == 0 || strcmp(argv[i], "--verbose") == 0) { set_log_level(LOG_LEVEL_DEBUG); } else if (strcmp(argv[i], "--tls") == 0) { use_tls = true; } else if (strcmp(argv[i], "--cert") == 0 && i + 1 < argc) { tls_cert = argv[++i]; } else if (strcmp(argv[i], "--key") == 0 && i + 1 < argc) { tls_key = argv[++i]; } else if (strcmp(argv[i], "--ca") == 0 && i + 1 < argc) { tls_ca = argv[++i]; } else if (strcmp(argv[i], "-p") == 0 && i + 1 < argc) { char* end; long p = strtol(argv[++i], &end, 10); if (*end || p <= 0 || p > 65535) { fprintf(stderr, "Error: invalid port '%s' (must be 1-65535)\n", argv[i]); return 1; } port = (int)p; } else if (argv[i][0] == '-') { fprintf(stderr, "Unknown option: %s\n", argv[i]); print_server_usage(); return 1; } } if (tls_ca && !use_tls) { log_message(LOG_LEVEL_WARNING, "--ca has no effect without --tls"); } signal(SIGINT, cleanup); signal(SIGTERM, cleanup); g_server = server_create(port); if (g_server == NULL) { log_message(LOG_LEVEL_ERROR, "Failed to create server"); return 1; } if (use_tls) { if (!tls_cert || !tls_key) { fprintf(stderr, "Error: --tls requires --cert and --key\n"); server_delete(&g_server); return 1; } tls_global_init(); if (!server_create_tls(g_server, tls_cert, tls_key, tls_ca)) { log_message(LOG_LEVEL_ERROR, "Failed to set up TLS"); server_delete(&g_server); return 1; } server_listen_tls(g_server, handler); } else { server_listen(g_server, handler); } return 0; }