-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpd_lib.inc
198 lines (171 loc) · 5.99 KB
/
httpd_lib.inc
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
;align 4
;day:
; dd 'Mon,'
; dd 'Tue,'
; dd 'Wed,'
; dd 'Thu,'
; dd 'Fri,'
; dd 'Sat,'
; dd 'Sun,'
;.count = ($ - day) / 4
;
;align 4
;months:
; dd 'Jan '
; dd 'Feb '
; dd 'Mar '
; dd 'Apr '
; dd 'May '
; dd 'Jun '
; dd 'Jul '
; dd 'Aug '
; dd 'Sep '
; dd 'Oct '
; dd 'Nov '
; dd 'Dec '
;.count = ($ - months) / 4 ; count item in this array
; HTTP-date = rfc1123-date | rfc850-date | asctime-date
; rfc1123-date = wkday "," SP date1 SP time SP "GMT"
; asctime-date = wkday SP date3 SP time SP 4DIGIT
; date1 = 2DIGIT SP month SP 4DIGIT
; ; day month year (e.g., 02 Jun 1982)
; date3 = month SP ( 2DIGIT | ( SP 1DIGIT ))
; ; month day (e.g., Jun 2)
; time = 2DIGIT ":" 2DIGIT ":" 2DIGIT
; ; 00:00:00 - 23:59:59
; wkday = "Mon" | "Tue" | "Wed"
; | "Thu" | "Fri" | "Sat" | "Sun"
; month = "Jan" | "Feb" | "Mar" | "Apr"
; | "May" | "Jun" | "Jul" | "Aug"
; | "Sep" | "Oct" | "Nov" | "Dec"
;serv_header:
; .Accept_Ranges db 'Accept-Ranges: bytes',13,10
;http_err_response:
; db 'HTTP/1.1 '
;.code = $ - http_err_response
; db '000 ',13, 10
; db 'Server: simple-httpd/0.0.1', 13, 10 ; httpd(kolibri os)/0.0.1, 13, 10
; db 'Date: '
;.date = $ - http_err_response
; db 'Sun, 30 Oct 2022 09:29:13 GMT',13, 10
; db 'Content-length: 0', 13, 10
; db 'Content-type: text/plain', 13, 10;
; db 'Connection: close', 13, 10
; db 13, 10
;.size = $ - http_err_response
align 4
default_http_version:
db 'HTTP/1.1'
.length = $ - default_http_version
align 4
default_http_connection:
db 'Connection: '
.value = $ - default_http_connection
db 'close ', 13, 10 ; or keep-alive
.length = $ - default_http_connection
align 4
default_http_cont_encod:
db 'Content-Encoding: identity', 13, 10
.length = $ - default_http_cont_encod
align 4
default_http_cont_type:
db 'Content-type: '
.value = $ - default_http_cont_type
db 'text/html ', 13, 10;
.length = $ - default_http_cont_type
align 4
default_http_cache_ctl:
db 'Cache-Control: no-cache', 13, 10
.length = $ - default_http_cache_ctl
align 4
default_http_cont_len:
db 'Content-length: '
db '0000000000000000000000', 13, 10
.length = $ - default_http_cont_len
align 4
default_http_header_server:
db 'Server: simple-httpd/0.3.0', 13, 10
.length = $ - default_http_header_server
align 4
http_header_transfer_chunked:
db 'Transfer-Encoding: chunked', 13, 10
.length = $ - http_header_transfer_chunked
;align 4
;default_http_date_header:
; db 'Date: '
;.date: db 'Sun, 30 Oct 2022 09:29:13 GMT',13, 10
;.length = $ - default_http_date_header
align 4
http_response_err_501:
db 'HTTP/1.1 '
db '501 ',13, 10
db 'Error parsing your request message. The version is not supported or another error.'
db 'Server: simple-httpd/0.3.0', 13, 10
db 'Connection: close', 13, 10
db 13, 10
.size = $ - http_response_err_501
align 4
http_response_err_404:
db 'HTTP/1.1 '
db '404 ',13, 10
db 'Server: simple-httpd/0.3.0', 13, 10
db 'Content-length: 45', 13, 10
db 'Content-type: text/plain', 13, 10;
db 'Connection: close', 13, 10
db 13, 10
db 'The server could not find the requested page.'
.size = $ - http_response_err_404
align 4
http_response_options:
db 'HTTP/1.1 '
db '204 ',13, 10
db 'Server: simple-httpd/0.3.0', 13, 10
db 'Allow: OPTIONS, GET, POST', 13, 10
db 'Connection: close', 13, 10
db 13, 10
.size = $ - http_response_options
; min HTTP request size
; "GET / HTTP/1.1" - 18 byte
min_http_size = 18
align 4
MIME_FILE_FORMAT:
.html: db 5,'.html', 'text/html',0
.css: db 4,'.css', 'text/css ',0
.js: db 3,'.js', 'text/javascript',0
.txt: db 4,'.txt', 'text/plain',0
.pdf: db 4,'.pdf', 'application/pdf',0
.json: db 5,'.json', 'application/json',0
.png: db 4,'.png', 'image/png',0
.mp3: db 4,'.mp3', 'audio/mpeg',0
.mp4: db 4,'.mp4', 'video/mp4',0
.other: dd 0
db 'application/octet-stream',0 ; for unknow file - all file :)
align 4
STD_MIME_TYPE_ARR:
dd MIME_FILE_FORMAT.html, \
MIME_FILE_FORMAT.css, \
MIME_FILE_FORMAT.js, \
MIME_FILE_FORMAT.txt, \
MIME_FILE_FORMAT.pdf, \
MIME_FILE_FORMAT.json, \
MIME_FILE_FORMAT.png, \
MIME_FILE_FORMAT.mp3, \
MIME_FILE_FORMAT.mp4, \
MIME_FILE_FORMAT.other ; terminate
_DIV_10_: dd 10
_DIV_100_: dd 100
_DIV_1000_: dd 1000
align 4
hex_chars:
db '0123456789ABCDEF'
align 16
hex_table db 256 dup -1
repeat 10
store byte %-1 at hex_table + '0' + %-1
end repeat
repeat 6
store byte 0x0A+%-1 at hex_table + 'A' + %-1
end repeat
repeat 6
store byte 0x0A+%-1 at hex_table + 'a' + %-1
end repeat