aboutsummaryrefslogtreecommitdiff
path: root/main.f90
blob: c5873459bb1dff18ad56deff67d81c248946f3b2 (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
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
! Copyright (c) 2020 Jeffrey Armstrong <jeff@rainbow-100.com>
!
! Permission is hereby granted, free of charge, to any person obtaining a copy
! of this software and associated documentation files (the "Software"), to deal
! in the Software without restriction, including without limitation the rights
! to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
! copies of the Software, and to permit persons to whom the Software is
! furnished to do so, subject to the following conditions:
!
! The above copyright notice and this permission notice shall be included in
! all copies or substantial portions of the Software.
!
! The Software shall be used for Good, not Evil.
!
! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
! AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
! LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
! OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
! SOFTWARE.

program gnc
use jessl
use iso_c_binding
use iso_fortran_env
implicit none

    ! For our TLS connection
    type(c_ptr)::ctx
    type(c_ptr)::method
    type(c_ptr)::ssl
    integer(kind=c_long)::res
    
    ! Cert stuff
    character(512)::cert_public, cert_private
    
    ! Requested file
    character(1024)::request
    character(512)::mimetype
    integer::request_unit
    
    ! Argument handling
    integer::i
    character(512)::arg
    
    ! Logfile
    integer, parameter::logunit = 1097
    character(512)::logfile
    
    ! root serving dir
    character(512), target::rootdir

    logfile = "/tmp/gnc.log"
    rootdir = " "
    cert_public = " "
    cert_private = " "
    
    if(command_argument_count() < 4) then
        call usage()
        stop
    end if
    
    i = 1
    do while(i <= command_argument_count())
        call get_command_argument(i, arg)
        if(trim(arg) == "-pub") then
            i = i + 1
            call get_command_argument(i, cert_public)
        else if(trim(arg) == "-priv") then
            i = i + 1
            call get_command_argument(i, cert_private)
        else if(trim(arg) == "-l") then
            i = i + 1
            call get_command_argument(i, logfile)
        else if(trim(arg) == "-root") then
            i = i + 1
            call get_command_argument(i, rootdir)
        end if
        i = i + 1
    end do
   
    open(unit=logunit, file=trim(logfile), action="write", status="unknown", position="append")
   
    call write_log("Initiating program")
   
    ! Diagnostics
    do i = 1,command_argument_count()
        call get_command_argument(i, arg)
        call write_log("Argument: "//trim(arg))
    end do
   
    call random_seed()
    
    call library_init()
    method = tls_server_method()
    ctx = ctx_new(method)
    
    if(.not. C_ASSOCIATED(ctx)) then
        call write_log("Context failed")
        close(logunit)
        stop
    end if
    
    ! Seems to be a dummy now...
    !res = ctx_set_ecdh_auto(ctx, 1)
    
    if(.not. ctx_use_certificate_file(ctx, trim(cert_public), SSL_FILETYPE_PEM)) then
        call write_log("Cert file failed")
        call write_log("Public: "//trim(cert_public))
        !call print_error()
        close(logunit)
        stop
    end if
    
    if(.not. ctx_use_private_key_file(ctx, trim(cert_private), SSL_FILETYPE_PEM)) then
        call write_log("Cert file failed")
        call write_log("Private: "//trim(cert_private))
        !call print_error()
        close(logunit)
        stop
    end if
    
    ssl = ssl_new(ctx)

    call write_log("Initiating connection")

    ! So this is a GNU Extension...
    res = set_read_fd(ssl, fnum(input_unit))
    if(res /= 1) then
        call write_log("set rfd failed")
        !call print_error()
        close(logunit)
        stop
    end if
    
    res = set_write_fd(ssl, fnum(output_unit))
    if(res /= 1) then
        call write_log("set wfd failed")
        !call print_error()
        close(logunit)
        stop
    end if
    
    res = ssl_accept(ssl)
    if(res <= 0) then
        call write_log("ssl_accept failed")
        !call print_error()
        close(logunit)
        stop
    end if

    call write_log("Handling read_request")

    ! Do the actual protocol nonsense
    call read_request(ssl, request)
    
    call write_log("Request is "//trim(request))
    
    ! If it ends in a slash, let's manually and silently add "index.gmi"
    if(request(len_trim(request):len_trim(request)) == "/") then
        request = trim(request)//"index.gmi"
    end if
    
    res = process_request(trim(request), trim(rootdir), request_unit, mimetype)
    
    call write_log("Request processed")
    
    select case(res)
    
        case(2) ! Success
            call write_log("Delivering")
            call write_file(ssl, request_unit, mimetype)
            close(request_unit)
            
        case(3) ! Redirect
            call write_log("Redirecting")
            call write_redirect(ssl, request)
            
        case(5) ! Not Found
            call write_log("Notfound")
            call write_notfound(ssl)
            
    end select
    
    call write_log("Shutdown")
    
    res = ssl_shutdown(ssl)
    res = ssl_free(ssl)
    res = ctx_free(ctx)
    
    close(logunit)
    
contains

    subroutine write_string(ssl, string)
    use jessl, only: ssl_write
    use iso_c_binding, only: c_ptr
    implicit none
    
        type(c_ptr)::ssl
        character(*)::string
        character, dimension(:), allocatable::buf
        integer::i
        
        allocate(buf(len(string)))
        
        do i = 1, len(string)
            buf(i) = string(i:i)
        end do
        
        i = ssl_write(ssl, buf)
        
        deallocate(buf)
    
    end subroutine write_string

    subroutine write_notfound(ssl)
    use iso_c_binding, only: c_ptr, c_carriage_return, c_new_line
    implicit none

        type(c_ptr)::ssl
        character(*), parameter::notfound_response = "50 Not Found"

        call write_string(ssl, notfound_response//c_carriage_return//c_new_line)

    end subroutine write_notfound

    function read_into_buffer(unit_number, buffer)
    implicit none
    
        integer, intent(in)::unit_number
        character, dimension(*), intent(out)::buffer
        integer::read_into_buffer
        
        integer::i, ierr
        
        ierr = 0
        i = 0
        do while(ierr == 0 .and. i < len(buffer))
            i = i + 1
            read(unit_number, iostat=ierr) buffer(i)
        end do
            
        if(ierr /= 0) then
            i = i - 1
        end if
        
        read_into_buffer = i
    
    end function read_into_buffer

    subroutine write_file(ssl, unit_number, mimetype)
    use iso_c_binding, only: c_ptr, c_carriage_return, c_new_line
    use jessl, only: ssl_write
    implicit none
    
        type(c_ptr)::ssl
        integer, intent(in)::unit_number
        character(*), intent(in)::mimetype
        character, dimension(64)::buf
        integer::buflen, written
        
        call write_string(ssl, "20 "//trim(mimetype)//c_carriage_return//c_new_line)
        
        buflen = read_into_buffer(unit_number, buf)
        do while(buflen > 0)
            written = ssl_write(ssl, buf(1:buflen))
            buflen = read_into_buffer(unit_number, buf)
        end do
            
    end subroutine write_file

    subroutine write_redirect(ssl, req)
    use iso_c_binding, only: c_ptr, c_carriage_return, c_new_line
    implicit none
    
        type(c_ptr)::ssl
        character(*), intent(in)::req
        integer::i
        
        character(*), parameter::index_file = "index.gmi"
        
        i = len_trim(req)
        if(req(i:i) == '/') then
            call write_string(ssl, "30 "//trim(req)//index_file//c_carriage_return//c_new_line)
        else
            call write_string(ssl, "30 "//trim(req)//"/"//index_file//c_carriage_return//c_new_line)
        end if
    
    end subroutine write_redirect

    function requires_redirect(req)
    implicit none
    
        character(*), intent(in)::req
        logical::requires_redirect
    
        integer::i
        
        requires_redirect = .false.
        
        i = len_trim(req)
        if(req(i:i) == '/') then
            requires_redirect = .true.
        else
            ! The root url without any further slashes also requires redirect
            i = index(req, "://")
            if(i > 0) then
                requires_redirect = (index(req(i+3:len_trim(req)), "/") <= 0)
            end if
        end if
    
    end function requires_redirect

    subroutine determine_mimetype(filename, mimetype)
    implicit none
    
        character(*), intent(in)::filename
        character(*), intent(out)::mimetype
    
    
        character(256)::tmpfile
        character(1024)::cmdline
        character, dimension(5)::rand_string
        real, dimension(5)::rand_values
    
        integer::i, readback_unit
        
        i = index(filename, ".gmi")
        if(i == (len_trim(filename)-3)) then
        
            mimetype = "text/gemini"
            
        else
        
            call random_number(rand_values)
            rand_string = char(ichar('A') + int(25*rand_values))
            tmpfile = "/tmp/gemini_"
            do i = 1, 5
                tmpfile = trim(tmpfile)//rand_string(i)
            end do
            
            cmdline = "file -b --mime-type "//trim(filename)//" > "//trim(tmpfile)
            call write_log("Executing: "//trim(cmdline))
            call execute_command_line(cmdline, wait=.true.)
            
            open(newunit=readback_unit, file=tmpfile, action="read", status="old")
            read(readback_unit, *) mimetype
            close(readback_unit)
            
            ! I saw this happen once...
            if(trim(mimetype) == "text") then
                mimetype = "text/plain"
            end if
            
            ! GNU Extenstion... :(
            call unlink(tmpfile)
            
        end if
    
    end subroutine determine_mimetype

    function process_request(request, rootdir, request_unit, mimetype) result(status_code)
    implicit none
    
        character(*), intent(in)::request
        character(*), intent(in)::rootdir
        integer, intent(out)::request_unit
        character(*), intent(out)::mimetype
        integer::status_code
    
        character(1024)::filename
        integer::i, j, ioerror
    
        if(requires_redirect(request)) then
        
            status_code = 3
        
        else
        
            ! Get the file of interest
            i = index(request, "://")
            if(i <= 0) then
                filename = request
            else
                j = index(request(i+3:len_trim(request)), "/")
                filename = request((i+j+2):len_trim(request))
            end if
            
            if(len_trim(rootdir) > 0) then
            
                filename = rootdir//"/"//trim(filename)
                call write_log("Canonicalize: "//trim(filename))
                
                ! Here we'll get rid of any dots or whatever and 
                if(.not. canonicalize_path(filename) .or. index(filename, rootdir) /= 1) then
                    call write_log("File outside root requested: "//trim(filename))
                    status_code = 5
                    return
                end if
                
            end if
    
            call write_log("Opening: "//trim(filename))
            
            ! First, check if exists by opening
            open(newunit=request_unit, file=trim(filename), status="old", &
                form="unformatted", iostat=ioerror, access="stream")
            
            if(ioerror /= 0) then
                
                status_code = 5
                
            else
            
                call determine_mimetype(filename, mimetype)
                status_code = 2
            
            end if
        
        end if
    
    end function process_request

    subroutine read_request(ssl, req)
    use jessl, only: ssl_read
    use iso_c_binding, only: c_ptr
    implicit none
    
        type(c_ptr)::ssl
        character(*), intent(out)::req
        
        character, dimension(64)::buf
        integer::bufread
        
        integer::i, j
        
        req = " "
        i = 1
        
        bufread = ssl_read(ssl, buf)
        do while(bufread > 0)
            
            do j = 1, bufread
                if(buf(j) == c_new_line) then
                    exit
                end if
                
                if(buf(j) /= c_carriage_return) then
                    req(i:i) = buf(j)
                    i = i + 1
                end if
                
            end do
            
            if(buf(j) == c_new_line) then
                exit
            end if
            
            bufread = ssl_read(ssl, buf)
        end do
    
    end subroutine read_request
    
    function canonicalize_path(path)
    use iso_c_binding, only: c_char, c_null_char
    implicit none
    
        character(*), intent(inout)::path
        character(kind=c_char), allocatable, dimension(:), target::srcpath
        logical::canonicalize_path
        
        type(c_ptr)::cdst
        character(kind=c_char), dimension(:), pointer::dstpath
        
        character(256)::errr
        integer::pathlen, i
        
        interface
            function realpath(src, dst) bind(c)
            use iso_c_binding
            type(c_ptr)::realpath
            type(c_ptr), value::src, dst
            end function realpath
        end interface
        
        interface
            subroutine c_free(p) bind(c, name="free")
            use iso_c_binding
            type(c_ptr), value::p
            end subroutine c_free
        end interface
            
        pathlen = (len_trim(path)+1)
        
        allocate(srcpath(len(path)))
        
        srcpath = c_null_char
        
        do i = 1, pathlen-1
            srcpath(i) = path(i:i)
        end do
        srcpath(pathlen) = c_null_char

        cdst = realpath(c_loc(srcpath), c_null_ptr)
        if(c_associated(cdst)) then
        
            path = " "
            call c_f_pointer(cdst, dstpath, [1])
            
            i = 1
            do while(dstpath(i) /= c_null_char)
                path(i:i) = dstpath(i)
                i = i + 1
            end do
            
            dstpath => null()
            call c_free(cdst)
            
            canonicalize_path = .true.
            
        else
        
            write(errr, *) "realpath error: ", ierrno()
            call write_log(trim(errr))
        
            canonicalize_path = .false.
        
        end if
        
        deallocate(srcpath)
        
    end function canonicalize_path

    subroutine usage()
    implicit none
    
        character(256)::exe
        
        call get_command_argument(0, exe)
        
        Print *, "Usage: "//trim(exe)//" -pub <public cert> -priv <private cert> [-l <logfile>] [-root <rootdir>]"
        
    end subroutine usage
    
    subroutine write_log(string)
    implicit none
    
        character(*), intent(in)::string
        
        ! GNU Extension... :(
        write(logunit, *) fdate()//" :: "//string
        call flush(logunit)
        
    end subroutine write_log
    
end program gnc