Use msg-val everywhere and fix some definitions' argument lists.
[mudsync.git] / mudsync / networking.scm
1 ;;; Mudsync --- Live hackable MUD
2 ;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
3 ;;;
4 ;;; This file is part of Mudsync.
5 ;;;
6 ;;; Mudsync is free software; you can redistribute it and/or modify it
7 ;;; under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 3 of the License, or
9 ;;; (at your option) any later version.
10 ;;;
11 ;;; Mudsync is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 ;;; General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU General Public License
17 ;;; along with Mudsync.  If not, see <http://www.gnu.org/licenses/>.
18
19 (define-module (mudsync networking)
20   #:use-module (8sync systems actors)
21   #:use-module (8sync agenda)
22   #:use-module (ice-9 format)
23   #:use-module (ice-9 match)
24   #:use-module (ice-9 rdelim)
25   #:use-module (oop goops)
26
27   #:export (;; Should we be exporting these?
28             %default-server
29             %default-port
30
31             <network-manager>
32             nm-close-everything))
33
34 ;;; Networking
35 ;;; ==========
36
37 (define %default-server #f)
38 (define %default-port 8889)
39
40 (define-class <network-manager> (<actor>)
41   (server-socket #:getter nm-server-socket)
42   ;; mapping of client -> client-id
43   (clients #:getter nm-clients
44            #:init-thunk make-hash-table)
45   ;; send input to this actor
46   (send-input-to #:getter nm-send-input-to
47                  #:init-keyword #:send-input-to)
48   (message-handler
49    #:init-value
50    (make-action-dispatch
51     (start-listening
52      (lambda* (actor message
53                      #:key (server %default-server)
54                      (port %default-port))
55        (nm-install-socket actor server port)))
56     (send-to-client
57      (lambda* (actor message #:key client data)
58        (nm-send-to-client-id actor client data))))))
59
60 ;;; TODO: We should provide something like this, but this isn't used currently,
61 ;;;    and uses old deprecated code (the 8sync-port-remove stuff).
62 ;; (define-method (nm-close-everything (nm <network-manager>) remove-from-agenda)
63 ;;   "Shut it down!"
64 ;;   ;; close all clients
65 ;;   (hash-for-each
66 ;;    (lambda (_ client)
67 ;;      (close client)
68 ;;      (if remove-from-agenda
69 ;;          (8sync-port-remove client)))
70 ;;    (nm-clients nm))
71 ;;   ;; reset the clients list
72 ;;   (set! (nm-clients) (make-hash-table))
73 ;;   ;; close the server
74 ;;   (close (nm-server-socket nm))
75 ;;   (if remove-from-agenda
76 ;;       (8sync-port-remove (nm-server-socket nm))))
77
78 ;; Maximum number of backlogged connections when we listen
79 (define %maximum-backlog-conns 128)     ; same as SOMAXCONN on Linux 2.X,
80                                         ; says the intarwebs
81
82 (define (nm-install-socket nm server port)
83   "Install socket on SERVER with PORT"
84   (define s
85     (socket PF_INET  ; ipv4
86             SOCK_STREAM  ; two-way connection-based byte stream
87             0))
88   (define addr
89     (if server
90         (inet-pton AF_INET server)
91         INADDR_LOOPBACK))
92
93   ;; Totally mimed from the Guile manual.  Not sure if we need this, but:
94   ;; http://www.unixguide.net/network/socketfaq/4.5.shtml
95   (setsockopt s SOL_SOCKET SO_REUSEADDR 1) ; reuse port even if port is busy
96   ;; Connecting to a non-specific address:
97   ;;   (bind s AF_INET INADDR_ANY port)
98   ;; Should this be an option?  Guess I don't know why we'd need it
99   ;; @@: If we wanted to support listening on a particular hostname,
100   ;;   could see 8sync's irc.scm...
101   (bind s AF_INET addr port)
102   ;; Listen to connections
103   (listen s %maximum-backlog-conns)
104
105   ;; Make port non-blocking
106   (fcntl s F_SETFL (logior O_NONBLOCK (fcntl s F_GETFL)))
107
108   ;; @@: This is used in Guile's http server under the commit:
109   ;;       * module/web/server/http.scm (http-open): Ignore SIGPIPE. Keeps the
110   ;;         server from dying in some circumstances.
111   ;;   (sigaction SIGPIPE SIG_IGN)
112   ;; Will this break other things that use pipes for us though?
113
114   (slot-set! nm 'server-socket s)
115
116   (format #t "Listening for clients in pid: ~s\n" (getpid))
117
118   ;; TODO: set up periodic close of idle connections?
119   (let loop ()
120     ;; (yield)  ;; @@: Do we need this?
121     (define client-connection (accept s))
122     (8sync (nm-new-client nm s client-connection))
123     (loop)))
124
125 (define (nm-new-client nm s client-connection)
126   "Handle new client coming in to socket S"
127   (define client-details (cdr client-connection))
128   (define client (car client-connection))
129   (define client-id (big-random-number))
130   (format #t "New client: ~s\n" client-details)
131   (format #t "Client address: ~s\n"
132           (gethostbyaddr
133            (sockaddr:addr client-details)))
134   (fcntl client F_SETFL (logior O_NONBLOCK (fcntl client F_GETFL)))
135   (hash-set! (nm-clients nm) client-id client)
136   (<- nm (nm-send-input-to nm) 'new-client #:client client-id)
137   (nm-client-receive-loop nm client client-id))
138
139 (define (nm-client-receive-loop nm client client-id)
140   "Make a method to receive client data"
141   (define (loop)
142     (define line (read-line client))
143     (if (eof-object? line)
144         (nm-handle-port-eof nm client client-id)
145         (begin
146           (nm-handle-line nm client client-id
147                           (string-trim-right line #\return))
148           (loop))))
149   (loop))
150
151 (define (nm-handle-port-closed nm client client-id)
152   "Handle a closed port"
153   (format #t "DEBUG: handled closed port ~x\n" client-id)
154   (hash-remove! (nm-clients nm) client-id)
155   (<- nm (nm-send-input-to nm) 'client-closed #:client client-id))
156
157 (define-method (nm-handle-port-eof nm client client-id)
158   "Handle seeing an EOF on port"
159   (format #t "DEBUG: handled eof-object on port ~x\n" client-id)
160       (close client)
161   (hash-remove! (nm-clients nm) client-id)
162   (<- nm (nm-send-input-to nm) 'client-closed #:client client-id))
163
164 (define-method (nm-handle-line nm client client-id line)
165   "Handle an incoming line of input from a client"
166   (<- nm (nm-send-input-to nm) 'client-input
167       #:data line
168       #:client client-id))
169
170 (define-method (nm-send-to-client-id nm client-id data)
171   "Send DATA to TO-CLIENT id"
172   (define client-obj (hash-ref (nm-clients nm) client-id))
173   (if (not client-obj)
174       (throw 'no-such-client
175              "Asked to send data to client but that client doesn't exist"
176              #:client-id client-id
177              #:data data))
178   (display data client-obj))