source: Main/trunk/Server/main.c@ 92

Last change on this file since 92 was 92, checked in by Nishi, on Sep 19, 2024 at 10:15:48 PM

fix select

  • Property svn:keywords set to Id
File size: 4.0 KB
Line 
1/* $Id: main.c 92 2024-09-19 13:15:48Z nishi $ */
2
3#define SOURCE
4
5#include "../config.h"
6
7#include <stdio.h>
8#include <stdbool.h>
9#include <string.h>
10#include <signal.h>
11
12#ifndef NO_SSL
13#include <openssl/opensslv.h>
14#endif
15
16#include <cm_log.h>
17#include <cm_string.h>
18
19#include "tw_config.h"
20#include "tw_server.h"
21#include "tw_version.h"
22
23#ifdef __MINGW32__
24#include <windows.h>
25#endif
26
27extern bool cm_do_log;
28extern struct tw_config config;
29extern FILE* logfile;
30
31char tw_server[2048];
32
33int startup(int argc, char** argv);
34
35#ifdef SERVICE
36SERVICE_STATUS status;
37SERVICE_STATUS_HANDLE status_handle;
38
39void WINAPI servhandler(DWORD control) {
40 switch(control) {
41 case SERVICE_CONTROL_STOP:
42 case SERVICE_CONTROL_SHUTDOWN:
43 status.dwCurrentState = SERVICE_STOP_PENDING;
44 break;
45 }
46 SetServiceStatus(status_handle, &status);
47}
48
49void WINAPI servmain(DWORD argc, LPSTR* argv) {
50 logfile = fopen(PREFIX "/logs/tewi.log", "a");
51 if(logfile == NULL) logfile = stderr;
52 status.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
53 status.dwCurrentState = SERVICE_START_PENDING;
54 status.dwControlsAccepted = SERVICE_ACCEPT_STOP | SERVICE_ACCEPT_SHUTDOWN;
55 status.dwWin32ExitCode = NO_ERROR;
56 status.dwServiceSpecificExitCode = 0;
57 status.dwCheckPoint = 0;
58 status.dwWaitHint = 0;
59 status_handle = RegisterServiceCtrlHandler("Tewi HTTPd", servhandler);
60 if(status_handle == NULL) return;
61 if(SetServiceStatus(status_handle, &status) == 0) return;
62 int st = startup(argc, argv);
63 if(st != -1) {
64 status.dwWin32ExitCode = NO_ERROR;
65 status.dwServiceSpecificExitCode = st;
66 status.dwCurrentState = SERVICE_STOPPED;
67 SetServiceStatus(status_handle, &status);
68 return;
69 }
70 status.dwCurrentState = SERVICE_RUNNING;
71 SetServiceStatus(status_handle, &status);
72 tw_server_loop();
73 status.dwCurrentState = SERVICE_STOPPED;
74 SetServiceStatus(status_handle, &status);
75}
76#endif
77
78void sig(int sign){
79 printf("%d\n", sign);
80 exit(0);
81}
82
83int main(int argc, char** argv) {
84 logfile = stderr;
85#ifdef SERVICE
86 SERVICE_TABLE_ENTRY table[] = {{"Tewi HTTPd", servmain}, {NULL, NULL}};
87 StartServiceCtrlDispatcher(table);
88#else
89 int st = startup(argc, argv);
90 if(st != -1) return st;
91 tw_server_loop();
92#endif
93}
94
95int startup(int argc, char** argv) {
96 int i;
97 const char* confpath = PREFIX "/etc/tewi.conf";
98 if(argv != NULL) {
99 for(i = 1; i < argc; i++) {
100 if(argv[i][0] == '-') {
101 if(strcmp(argv[i], "--verbose") == 0 || strcmp(argv[i], "-v") == 0) {
102 if(!cm_do_log) {
103 cm_do_log = true;
104#ifndef NO_SSL
105 cm_log("", "This is Tewi HTTPd, version %s, using %s", tw_get_version(), OPENSSL_VERSION_TEXT);
106#else
107 cm_log("", "This is Tewi HTTPd, version %s", tw_get_version());
108#endif
109 } else {
110 cm_do_log = true;
111 }
112 } else if(strcmp(argv[i], "--config") == 0 || strcmp(argv[i], "-C") == 0) {
113 i++;
114 if(argv[i] == NULL) {
115 fprintf(stderr, "Missing argument\n");
116 return 1;
117 }
118 confpath = argv[i];
119 } else if(strcmp(argv[i], "--version") == 0 || strcmp(argv[i], "-V") == 0) {
120 printf("Tewi HTTPd Tewi/%s\n", tw_get_version());
121 printf("Under public domain.\n");
122 printf("Original by 2024 Nishi\n");
123 printf("\n");
124 printf("Usage: %s [--config|-C config] [--verbose|-v] [--version|-V]\n", argv[0]);
125 printf("--config | -C config : Specify config\n");
126 printf("--verbose | -v : Verbose mode\n");
127 printf("--version | -V : Version information\n");
128 return 0;
129 } else {
130 fprintf(stderr, "Unknown option: %s\n", argv[i]);
131 return 1;
132 }
133 }
134 }
135 }
136 tw_config_init();
137 if(tw_config_read(confpath) != 0) {
138 fprintf(stderr, "Could not read the config\n");
139 return 1;
140 }
141 if(tw_server_init() != 0) {
142 fprintf(stderr, "Could not initialize the server\n");
143 return 1;
144 }
145 sprintf(tw_server, "Tewi/%s (%s)%s", tw_get_version(), tw_get_platform(), config.extension == NULL ? "" : config.extension);
146 char* r = cm_strcat(tw_server, " running...");
147 cm_force_log(r);
148 free(r);
149#ifndef __MINGW32__
150 signal(SIGCHLD, SIG_IGN);
151 signal(SIGPIPE, SIG_IGN);
152 signal(SIGCONT, SIG_IGN);
153 for(i = 1; i < 32; i++) signal(i, sig);
154#else
155 SetConsoleTitle(tw_server);
156#endif
157 return -1;
158}
Note: See TracBrowser for help on using the repository browser.