aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
blob: 9420c4773f60fa527b1ed94434f8b4d231822ecb (plain)
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <signal.h>

#include "log.h"
#include "server.h"

#define BUF_CAP 80000
#define COMMON_CAP 1024
#define PORT "8079"

#define RM_LF(str) do {                                     \
        signed long len = strlen(str)-1;                  \
        if(len >= 0 && str[len] == '\n') str[len] = '\0';   \
    } while(0)

#define _SEND_BUF_ADD(str) do {                             \
        memcpy(&send_buf[send_buf_sz], str, strlen(str));   \
        send_buf_sz += strlen(str);                         \
    } while(0)
#define _SEND_BUF_ADD_LINE(str) do {                  \
        _SEND_BUF_ADD(str);                           \
        _SEND_BUF_ADD("\r\n");                        \
    } while(0)

#define SEND_BUF_ADD(str) do {                               \
        memcpy(&send_buf[*send_buf_sz], str, strlen(str));   \
        *send_buf_sz += strlen(str);                         \
    } while(0)
#define SEND_BUF_ADD_LINE(str) do {                  \
        SEND_BUF_ADD(str);                           \
        SEND_BUF_ADD("\r\n");                        \
    } while(0)

#define LOAD_FILE() do {                                                \
        if(is_binary) {                                                 \
            fseek(fp, 0, SEEK_END);                                     \
            size_t file_sz = ftell(fp);                                 \
            rewind(fp);                                                 \
                                                                        \
            fread(&send_buf[*send_buf_sz], sizeof(char), file_sz, fp);  \
            *send_buf_sz += file_sz;                                    \
        } else {                                                        \
            char line[BUF_CAP];                                         \
            while(fgets(line, sizeof(line), fp) != NULL)                \
            {                                                           \
                RM_LF(line);                                            \
                SEND_BUF_ADD_LINE(line);                                \
            }                                                           \
        }                                                               \
    } while(0)

static int get_content_type(char *file_path, char *content_type)
{
    char cmd[COMMON_CAP + 64];
    sprintf(cmd, "/usr/bin/file -ib %s", file_path);

    FILE *fp = popen(cmd, "r");
    if(!fp) {
        err("popen: cmd %s: %s", cmd, strerror(errno));
        return 1;
    }

    if(fgets(content_type, COMMON_CAP, fp) == NULL) {
        err("get_mime_type: no output from fgets");
        return 1;
    }

    pclose(fp);
    RM_LF(content_type);

    char ct_cpy[COMMON_CAP];
    strcpy(ct_cpy, content_type);
    strtok(ct_cpy, "=");

    // the only thing after the '=' should be the either binary or something else (text)
    char *charset = strtok(NULL, "=");
    if(charset == NULL || strcmp(charset, "binary") != 0) {
        return 0;
    }

    return -1;
}

static int try_file(char *req_path, FILE **fp, char *content_type)
{
    char file_path[COMMON_CAP];
    sprintf(file_path, "%s%s", FILES,
            (strlen(req_path) == 1) ? "/index.html" : req_path);

    *fp = fopen(file_path, "r");
    if(!(*fp)) {
        err("fopen: file %s: %s", file_path, strerror(errno));
        return 1;
    }
    info("fopen: file %s was opened", file_path);

    return get_content_type(file_path, content_type);
}

static int on_get(char *send_buf, ssize_t *send_buf_sz, char *req_path)
{
    char content_type[COMMON_CAP];
    int is_binary; // 0 - no; -1 - yes; 1 - error

    FILE *fp;
    if((is_binary = try_file(req_path, &fp, content_type)) == 1) {
        if(errno == 2) { // 2 is 'No such file or directory'
            SEND_BUF_ADD_LINE("404");
            if((is_binary = try_file("/404.html", &fp, content_type)) != 0) return 1;
        } else {
            SEND_BUF_ADD_LINE("500");
            if((is_binary = try_file("/500.html", &fp, content_type)) != 0) return 1;
        }
    } else {
        SEND_BUF_ADD_LINE("200");
    }

    SEND_BUF_ADD_LINE("Server: potato");
    SEND_BUF_ADD("Content-Type: ");
    SEND_BUF_ADD_LINE(content_type);
    SEND_BUF_ADD("\r\n");
    LOAD_FILE();

    fclose(fp);
    return 0;
}

static int handle_connection(sock_t *conn)
{
    char recv_buf[BUF_CAP] = {0};
    ssize_t recv_buf_len = server_recv(conn, recv_buf, BUF_CAP);

    if(recv_buf_len == 0) {
        return 0;
    } else if(recv_buf_len < 0) {
        err("server_recv: %s", strerror(errno));
        return 1;
    }

    /* HANDLE REQUEST */

    char send_buf[BUF_CAP];
    ssize_t send_buf_sz = 0;
    _SEND_BUF_ADD("HTTP/1.1 ");

    char recv_buf_cpy[BUF_CAP];
    memcpy(recv_buf_cpy, recv_buf, recv_buf_len);

    char *req_method = strtok(recv_buf_cpy, " ");
    if(strcmp(req_method, "GET") == 0) {
        if(on_get(send_buf, &send_buf_sz, strtok(NULL, " "))) {
            err("on_get: failed");
            return 1;
        }
    } else {
        err("request method %s has not been implemented", req_method);
        return 1;
    }

    // TODO: handle when the whole message is not sent
    ssize_t sent_sz = server_send(conn, send_buf, send_buf_sz);
    if(sent_sz < 0) {
        err("server_send: %s", strerror(errno));
        return 1;
    }

    info("server_send: sent %ld out of %ld bytes", sent_sz, send_buf_sz);
    return 0;
}

int main(void)
{
    signal(SIGCHLD, SIG_IGN);  // now i dont have to wait()

    sock_t *sock = server_sock_create();

    if(server_start(PORT, sock) != 0) {
        err("server_init: failed");
        return 1;
    }

    for(int i = 0; ; i++) {
        sock_t *conn = server_sock_create();
        if(server_accept(sock, conn) != 0) {
            err("server_accept: failed");
        }

        info("server: got connection with %s", server_connection_ip(conn));

        pid_t p = fork();
        if(p == 0) {
            server_sock_close(sock);
            if(handle_connection(conn) != 0) {
                err("handle_connection: failed");
            } else {
                info("server: got disconnected with %s", server_connection_ip(conn));
            }
            server_sock_close(conn);
            return 0;
        } else if (p < 0){
            err("fork: %s", strerror(errno));
            return 1;
        }
        server_sock_close(conn);
    }

    server_sock_close(sock);
    return 0;
}