]> code.delx.au - gnu-emacs-elpa/blob - packages/websocket/websocket.el
* websocket/websocket.el (websocket-server-accept): Mark arg as unused
[gnu-emacs-elpa] / packages / websocket / websocket.el
1 ;;; websocket.el --- Emacs WebSocket client and server
2
3 ;; Copyright (c) 2013, 2016 Free Software Foundation, Inc.
4
5 ;; Author: Andrew Hyatt <ahyatt@gmail.com>
6 ;; Keywords: Communication, Websocket, Server
7 ;; Version: 1.6
8 ;;
9 ;; This program is free software; you can redistribute it and/or
10 ;; modify it under the terms of the GNU General Public License as
11 ;; published by the Free Software Foundation; either version 3 of the
12 ;; License, or (at your option) any later version.
13 ;;
14 ;; This program is distributed in the hope that it will be useful, but
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 ;; General Public License for more details.
18 ;;
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22 ;;; Commentary:
23 ;; This implements RFC 6455, which can be found at
24 ;; http://tools.ietf.org/html/rfc6455.
25 ;;
26 ;; This library contains code to connect Emacs as a client to a
27 ;; websocket server, and for Emacs to act as a server for websocket
28 ;; connections.
29 ;;
30 ;; Websockets clients are created by calling `websocket-open', which
31 ;; returns a `websocket' struct. Users of this library use the
32 ;; websocket struct, and can call methods `websocket-send-text', which
33 ;; sends text over the websocket, or `websocket-send', which sends a
34 ;; `websocket-frame' struct, enabling finer control of what is sent.
35 ;; A callback is passed to `websocket-open' that will retrieve
36 ;; websocket frames called from the websocket. Websockets are
37 ;; eventually closed with `websocket-close'.
38 ;;
39 ;; Server functionality is similar. A server is started with
40 ;; `websocket-server' called with a port and the callbacks to use,
41 ;; which returns a process. The process can later be closed with
42 ;; `websocket-server-close'. A `websocket' struct is also created
43 ;; for every connection, and is exposed through the callbacks.
44
45 (require 'bindat)
46 (require 'url-parse)
47 (require 'url-cookie)
48 (eval-when-compile (require 'cl))
49
50 ;;; Code:
51
52 (defstruct (websocket
53 (:constructor nil)
54 (:constructor websocket-inner-create))
55 "A websocket structure.
56 This follows the W3C Websocket API, except translated to elisp
57 idioms. The API is implemented in both the websocket struct and
58 additional methods. Due to how defstruct slots are accessed, all
59 API methods are prefixed with \"websocket-\" and take a websocket
60 as an argument, so the distrinction between the struct API and
61 the additional helper APIs are not visible to the caller.
62
63 A websocket struct is created with `websocket-open'.
64
65 `ready-state' contains one of 'connecting, 'open, or
66 'closed, depending on the state of the websocket.
67
68 The W3C API \"bufferedAmount\" call is not currently implemented,
69 since there is no elisp API to get the buffered amount from the
70 subprocess. There may, in fact, be output data buffered,
71 however, when the `on-message' or `on-close' callbacks are
72 called.
73
74 `on-open', `on-message', `on-close', and `on-error' are described
75 in `websocket-open'.
76
77 The `negotiated-extensions' slot lists the extensions accepted by
78 both the client and server, and `negotiated-protocols' does the
79 same for the protocols.
80 "
81 ;; API
82 (ready-state 'connecting)
83 client-data
84 on-open
85 on-message
86 on-close
87 on-error
88 negotiated-protocols
89 negotiated-extensions
90 (server-p nil :read-only t)
91
92 ;; Other data - clients should not have to access this.
93 (url (assert nil) :read-only t)
94 (protocols nil :read-only t)
95 (extensions nil :read-only t)
96 (conn (assert nil) :read-only t)
97 ;; Only populated for servers, this is the server connection.
98 server-conn
99 accept-string
100 (inflight-input nil))
101
102 (defvar websocket-version "1.5"
103 "Version numbers of this version of websocket.el.")
104
105 (defvar websocket-debug nil
106 "Set to true to output debugging info to a per-websocket buffer.
107 The buffer is ` *websocket URL debug*' where URL is the
108 URL of the connection.")
109
110 (defconst websocket-guid "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"
111 "The websocket GUID as defined in RFC 6455.
112 Do not change unless the RFC changes.")
113
114 (defvar websocket-callback-debug-on-error nil
115 "If true, when an error happens in a client callback, invoke the debugger.
116 Having this on can cause issues with missing frames if the debugger is
117 exited by quitting instead of continuing, so it's best to have this set
118 to nil unless it is especially needed.")
119
120 (defmacro websocket-document-function (function docstring)
121 "Document FUNCTION with DOCSTRING. Use this for defstruct accessor etc."
122 (declare (indent defun)
123 (doc-string 2))
124 `(put ',function 'function-documentation ,docstring))
125
126 (websocket-document-function websocket-on-open
127 "Accessor for websocket on-open callback.
128 See `websocket-open' for details.
129
130 \(fn WEBSOCKET)")
131
132 (websocket-document-function websocket-on-message
133 "Accessor for websocket on-message callback.
134 See `websocket-open' for details.
135
136 \(fn WEBSOCKET)")
137
138 (websocket-document-function websocket-on-close
139 "Accessor for websocket on-close callback.
140 See `websocket-open' for details.
141
142 \(fn WEBSOCKET)")
143
144 (websocket-document-function websocket-on-error
145 "Accessor for websocket on-error callback.
146 See `websocket-open' for details.
147
148 \(fn WEBSOCKET)")
149
150 (defun websocket-genbytes (nbytes)
151 "Generate NBYTES random bytes."
152 (let ((s (make-string nbytes ?\s)))
153 (dotimes (i nbytes)
154 (aset s i (random 256)))
155 s))
156
157 (defun websocket-try-callback (websocket-callback callback-type websocket
158 &rest rest)
159 "Invoke function WEBSOCKET-CALLBACK with WEBSOCKET and REST args.
160 If an error happens, it is handled according to
161 `websocket-callback-debug-on-error'."
162 ;; This looks like it should be able to done more efficiently, but
163 ;; I'm not sure that's the case. We can't do it as a macro, since
164 ;; we want it to change whenever websocket-callback-debug-on-error
165 ;; changes.
166 (let ((args rest)
167 (debug-on-error websocket-callback-debug-on-error))
168 (push websocket args)
169 (if websocket-callback-debug-on-error
170 (condition-case err
171 (apply (funcall websocket-callback websocket) args)
172 ((debug error) (funcall (websocket-on-error websocket)
173 websocket callback-type err)))
174 (condition-case err
175 (apply (funcall websocket-callback websocket) args)
176 (error (funcall (websocket-on-error websocket) websocket
177 callback-type err))))))
178
179 (defun websocket-genkey ()
180 "Generate a key suitable for the websocket handshake."
181 (base64-encode-string (websocket-genbytes 16)))
182
183 (defun websocket-calculate-accept (key)
184 "Calculate the expect value of the accept header.
185 This is based on the KEY from the Sec-WebSocket-Key header."
186 (base64-encode-string
187 (sha1 (concat key websocket-guid) nil nil t)))
188
189 (defun websocket-get-bytes (s n)
190 "From string S, retrieve the value of N bytes.
191 Return the value as an unsigned integer. The value N must be a
192 power of 2, up to 8.
193
194 We support getting frames up to 536870911 bytes (2^29 - 1),
195 approximately 537M long."
196 (if (= n 8)
197 (let* ((32-bit-parts
198 (bindat-get-field (bindat-unpack '((:val vec 2 u32)) s) :val))
199 (cval
200 (logior (lsh (aref 32-bit-parts 0) 32) (aref 32-bit-parts 1))))
201 (if (and (= (aref 32-bit-parts 0) 0)
202 (= (lsh (aref 32-bit-parts 1) -29) 0))
203 cval
204 (signal 'websocket-unparseable-frame
205 "Frame value found too large to parse!")))
206 ;; n is not 8
207 (bindat-get-field
208 (condition-case _
209 (bindat-unpack
210 `((:val
211 ,(cond ((= n 1) 'u8)
212 ((= n 2) 'u16)
213 ((= n 4) 'u32)
214 ;; This is an error with the library,
215 ;; not a user-facing, meaningful error.
216 (t (error
217 "websocket-get-bytes: Unknown N: %s" n)))))
218 s)
219 (args-out-of-range (signal 'websocket-unparseable-frame
220 (format "Frame unexpectedly shortly: %s" s))))
221 :val)))
222
223 (defun websocket-to-bytes (val nbytes)
224 "Encode the integer VAL in NBYTES of data.
225 NBYTES much be a power of 2, up to 8.
226
227 This supports encoding values up to 536870911 bytes (2^29 - 1),
228 approximately 537M long."
229 (when (and (< nbytes 8)
230 (> val (expt 2 (* 8 nbytes))))
231 ;; not a user-facing error, this must be caused from an error in
232 ;; this library
233 (error "websocket-to-bytes: Value %d could not be expressed in %d bytes"
234 val nbytes))
235 (if (= nbytes 8)
236 (progn
237 (let ((hi-32bits (lsh val -32))
238 ;; Test for systems that don't have > 32 bits, and
239 ;; for those systems just return the value.
240 (low-32bits (if (= 0 (expt 2 32))
241 val
242 (logand #xffffffff val))))
243 (when (or (> hi-32bits 0) (> (lsh low-32bits -29) 0))
244 (signal 'websocket-frame-too-large val))
245 (bindat-pack `((:val vec 2 u32))
246 `((:val . [,hi-32bits ,low-32bits])))))
247 (bindat-pack
248 `((:val ,(cond ((= nbytes 1) 'u8)
249 ((= nbytes 2) 'u16)
250 ((= nbytes 4) 'u32)
251 ;; Library error, not system error
252 (t (error "websocket-to-bytes: Unknown NBYTES: %s" nbytes)))))
253 `((:val . ,val)))))
254
255 (defun websocket-get-opcode (s)
256 "Retrieve the opcode from first byte of string S."
257 (websocket-ensure-length s 1)
258 (let ((opcode (logand #xf (websocket-get-bytes s 1))))
259 (cond ((= opcode 0) 'continuation)
260 ((= opcode 1) 'text)
261 ((= opcode 2) 'binary)
262 ((= opcode 8) 'close)
263 ((= opcode 9) 'ping)
264 ((= opcode 10) 'pong))))
265
266 (defun websocket-get-payload-len (s)
267 "Parse out the payload length from the string S.
268 We start at position 0, and return a cons of the payload length and how
269 many bytes were consumed from the string."
270 (websocket-ensure-length s 1)
271 (let* ((initial-val (logand 127 (websocket-get-bytes s 1))))
272 (cond ((= initial-val 127)
273 (websocket-ensure-length s 9)
274 (cons (websocket-get-bytes (substring s 1) 8) 9))
275 ((= initial-val 126)
276 (websocket-ensure-length s 3)
277 (cons (websocket-get-bytes (substring s 1) 2) 3))
278 (t (cons initial-val 1)))))
279
280 (defstruct websocket-frame opcode payload length completep)
281
282 (defun websocket-mask (key data)
283 "Using string KEY, mask string DATA according to the RFC.
284 This is used to both mask and unmask data."
285 (apply
286 'string
287 (loop for b across data
288 for i from 0 to (length data)
289 collect (logxor (websocket-get-bytes (substring key (mod i 4)) 1) b))))
290
291 (defun websocket-ensure-length (s n)
292 "Ensure the string S has at most N bytes.
293 Otherwise we throw the error `websocket-incomplete-frame'."
294 (when (< (length s) n)
295 (throw 'websocket-incomplete-frame nil)))
296
297 (defun websocket-encode-frame (frame should-mask)
298 "Encode the FRAME struct to the binary representation.
299 We mask the frame or not, depending on SHOULD-MASK."
300 (let* ((opcode (websocket-frame-opcode frame))
301 (payload (websocket-frame-payload frame))
302 (fin (websocket-frame-completep frame))
303 (payloadp (and payload
304 (memq opcode '(continuation ping pong text binary))))
305 (mask-key (when should-mask (websocket-genbytes 4))))
306 (apply 'unibyte-string
307 (let ((val (append (list
308 (logior (cond ((eq opcode 'continuation) 0)
309 ((eq opcode 'text) 1)
310 ((eq opcode 'binary) 2)
311 ((eq opcode 'close) 8)
312 ((eq opcode 'ping) 9)
313 ((eq opcode 'pong) 10))
314 (if fin 128 0)))
315 (when payloadp
316 (list
317 (logior
318 (if should-mask 128 0)
319 (cond ((< (length payload) 126) (length payload))
320 ((< (length payload) 65536) 126)
321 (t 127)))))
322 (when (and payloadp (>= (length payload) 126))
323 (append (websocket-to-bytes
324 (length payload)
325 (cond ((< (length payload) 126) 1)
326 ((< (length payload) 65536) 2)
327 (t 8))) nil))
328 (when (and payloadp should-mask)
329 (append mask-key nil))
330 (when payloadp
331 (append (if should-mask (websocket-mask mask-key payload)
332 payload)
333 nil)))))
334 ;; We have to make sure the non-payload data is a full 32-bit frame
335 (if (= 1 (length val))
336 (append val '(0)) val)))))
337
338 (defun websocket-read-frame (s)
339 "Read from string S a `websocket-frame' struct with the contents.
340 This only gets complete frames. Partial frames need to wait until
341 the frame finishes. If the frame is not completed, return NIL."
342 (catch 'websocket-incomplete-frame
343 (websocket-ensure-length s 1)
344 (let* ((opcode (websocket-get-opcode s))
345 (fin (logand 128 (websocket-get-bytes s 1)))
346 (payloadp (memq opcode '(continuation text binary ping pong)))
347 (payload-len (when payloadp
348 (websocket-get-payload-len (substring s 1))))
349 (maskp (and
350 payloadp
351 (= 128 (logand 128 (websocket-get-bytes (substring s 1) 1)))))
352 (payload-start (when payloadp (+ (if maskp 5 1) (cdr payload-len))))
353 (payload-end (when payloadp (+ payload-start (car payload-len))))
354 (unmasked-payload (when payloadp
355 (websocket-ensure-length s payload-end)
356 (substring s payload-start payload-end))))
357 (make-websocket-frame
358 :opcode opcode
359 :payload
360 (if maskp
361 (let ((masking-key (substring s (+ 1 (cdr payload-len))
362 (+ 5 (cdr payload-len)))))
363 (websocket-mask masking-key unmasked-payload))
364 unmasked-payload)
365 :length (if payloadp payload-end 1)
366 :completep (> fin 0)))))
367
368 (defun websocket-format-error (err)
369 "Format an error message like command level does.
370 ERR should be a cons of error symbol and error data."
371
372 ;; Formatting code adapted from `edebug-report-error'
373 (concat (or (get (car err) 'error-message)
374 (format "peculiar error (%s)" (car err)))
375 (when (cdr err)
376 (format ": %s"
377 (mapconcat #'prin1-to-string
378 (cdr err) ", ")))))
379
380 (defun websocket-default-error-handler (_websocket type err)
381 "The default error handler used to handle errors in callbacks."
382 (display-warning 'websocket
383 (format "in callback `%S': %s"
384 type
385 (websocket-format-error err))
386 :error))
387
388 ;; Error symbols in use by the library
389 (put 'websocket-unsupported-protocol 'error-conditions
390 '(error websocket-error websocket-unsupported-protocol))
391 (put 'websocket-unsupported-protocol 'error-message "Unsupported websocket protocol")
392 (put 'websocket-wss-needs-emacs-24 'error-conditions
393 '(error websocket-error websocket-unsupported-protocol
394 websocket-wss-needs-emacs-24))
395 (put 'websocket-wss-needs-emacs-24 'error-message
396 "wss protocol is not supported for Emacs before version 24.")
397 (put 'websocket-received-error-http-response 'error-conditions
398 '(error websocket-error websocket-received-error-http-response))
399 (put 'websocket-received-error-http-response 'error-message
400 "Error response received from websocket server")
401 (put 'websocket-invalid-header 'error-conditions
402 '(error websocket-error websocket-invalid-header))
403 (put 'websocket-invalid-header 'error-message
404 "Invalid HTTP header sent")
405 (put 'websocket-illegal-frame 'error-conditions
406 '(error websocket-error websocket-illegal-frame))
407 (put 'websocket-illegal-frame 'error-message
408 "Cannot send illegal frame to websocket")
409 (put 'websocket-closed 'error-conditions
410 '(error websocket-error websocket-closed))
411 (put 'websocket-closed 'error-message
412 "Cannot send message to a closed websocket")
413 (put 'websocket-unparseable-frame 'error-conditions
414 '(error websocket-error websocket-unparseable-frame))
415 (put 'websocket-unparseable-frame 'error-message
416 "Received an unparseable frame")
417 (put 'websocket-frame-too-large 'error-conditions
418 '(error websocket-error websocket-frame-too-large))
419 (put 'websocket-frame-too-large 'error-message
420 "The frame being sent is too large for this emacs to handle")
421
422 (defun websocket-intersect (a b)
423 "Simple list intersection, should function like Common Lisp's `intersection'."
424 (let ((result))
425 (dolist (elem a (nreverse result))
426 (when (member elem b)
427 (push elem result)))))
428
429 (defun websocket-get-debug-buffer-create (websocket)
430 "Get or create the buffer corresponding to WEBSOCKET."
431 (let ((buf (get-buffer-create (format "*websocket %s debug*"
432 (websocket-url websocket)))))
433 (when (= 0 (buffer-size buf))
434 (buffer-disable-undo buf))
435 buf))
436
437 (defun websocket-debug (websocket msg &rest args)
438 "In the WEBSOCKET's debug buffer, send MSG, with format ARGS."
439 (when websocket-debug
440 (let ((buf (websocket-get-debug-buffer-create websocket)))
441 (save-excursion
442 (with-current-buffer buf
443 (goto-char (point-max))
444 (insert "[WS] ")
445 (insert (apply 'format (append (list msg) args)))
446 (insert "\n"))))))
447
448 (defun websocket-verify-response-code (output)
449 "Verify that OUTPUT contains a valid HTTP response code.
450 The only acceptable one to websocket is responce code 101.
451 A t value will be returned on success, and an error thrown
452 if not."
453 (unless (string-match "^HTTP/1.1 \\([[:digit:]]+\\)" output)
454 (signal 'websocket-invalid-header "Invalid HTTP status line"))
455 (unless (equal "101" (match-string 1 output))
456 (signal 'websocket-received-error-http-response
457 (string-to-number (match-string 1 output))))
458 t)
459
460 (defun websocket-parse-repeated-field (output field)
461 "From header-containing OUTPUT, parse out the list from a
462 possibly repeated field."
463 (let ((pos 0)
464 (extensions))
465 (while (and pos
466 (string-match (format "\r\n%s: \\(.*\\)\r\n" field)
467 output pos))
468 (when (setq pos (match-end 1))
469 (setq extensions (append extensions (split-string
470 (match-string 1 output) ", ?")))))
471 extensions))
472
473 (defun websocket-process-frame (websocket frame)
474 "Using the WEBSOCKET's filter and connection, process the FRAME.
475 This returns a lambda that should be executed when all frames have
476 been processed. If the frame has a payload, the lambda has the frame
477 passed to the filter slot of WEBSOCKET. If the frame is a ping,
478 the lambda has a reply with a pong. If the frame is a close, the lambda
479 has connection termination."
480 (let ((opcode (websocket-frame-opcode frame)))
481 (lexical-let ((lex-ws websocket)
482 (lex-frame frame))
483 (cond ((memq opcode '(continuation text binary))
484 (lambda () (websocket-try-callback 'websocket-on-message 'on-message
485 lex-ws lex-frame)))
486 ((eq opcode 'ping)
487 (lambda () (websocket-send lex-ws
488 (make-websocket-frame
489 :opcode 'pong
490 :payload (websocket-frame-payload lex-frame)
491 :completep t))))
492 ((eq opcode 'close)
493 (lambda () (delete-process (websocket-conn lex-ws))))
494 (t (lambda ()))))))
495
496 (defun websocket-process-input-on-open-ws (websocket text)
497 "This handles input processing for both the client and server filters."
498 (let ((current-frame)
499 (processing-queue)
500 (start-point 0))
501 (while (setq current-frame (websocket-read-frame
502 (substring text start-point)))
503 (push (websocket-process-frame websocket current-frame) processing-queue)
504 (incf start-point (websocket-frame-length current-frame)))
505 (when (> (length text) start-point)
506 (setf (websocket-inflight-input websocket)
507 (substring text start-point)))
508 (dolist (to-process (nreverse processing-queue))
509 (funcall to-process))))
510
511 (defun websocket-send-text (websocket text)
512 "To the WEBSOCKET, send TEXT as a complete frame."
513 (websocket-send
514 websocket
515 (make-websocket-frame :opcode 'text
516 :payload (encode-coding-string
517 text 'raw-text)
518 :completep t)))
519
520 (defun websocket-check (frame)
521 "Check FRAME for correctness, returning true if correct."
522 (or
523 ;; Text, binary, and continuation frames need payloads
524 (and (memq (websocket-frame-opcode frame) '(text binary continuation))
525 (websocket-frame-payload frame))
526 ;; Pings and pongs may optionally have them
527 (memq (websocket-frame-opcode frame) '(ping pong))
528 ;; And close shouldn't have any payload, and should always be complete.
529 (and (eq (websocket-frame-opcode frame) 'close)
530 (not (websocket-frame-payload frame))
531 (websocket-frame-completep frame))))
532
533 (defun websocket-send (websocket frame)
534 "To the WEBSOCKET server, send the FRAME.
535 This will raise an error if the frame is illegal.
536
537 The error signaled may be of type `websocket-illegal-frame' if
538 the frame is malformed in some way, also having the condition
539 type of `websocket-error'. The data associated with the signal
540 is the frame being sent.
541
542 If the websocket is closed a signal `websocket-closed' is sent,
543 also with `websocket-error' condition. The data in the signal is
544 also the frame.
545
546 The frame may be too large for this buid of Emacs, in which case
547 `websocket-frame-too-large' is returned, with the data of the
548 size of the frame which was too large to process. This also has
549 the `websocket-error' condition."
550 (unless (websocket-check frame)
551 (signal 'websocket-illegal-frame frame))
552 (websocket-debug websocket "Sending frame, opcode: %s payload: %s"
553 (websocket-frame-opcode frame)
554 (websocket-frame-payload frame))
555 (websocket-ensure-connected websocket)
556 (unless (websocket-openp websocket)
557 (signal 'websocket-closed frame))
558 (process-send-string (websocket-conn websocket)
559 ;; We mask only when we're a client, following the spec.
560 (websocket-encode-frame frame (not (websocket-server-p websocket)))))
561
562 (defun websocket-openp (websocket)
563 "Check WEBSOCKET and return non-nil if it is open, and either
564 connecting or open."
565 (and websocket
566 (not (eq 'close (websocket-ready-state websocket)))
567 (member (process-status (websocket-conn websocket)) '(open run))))
568
569 (defun websocket-close (websocket)
570 "Close WEBSOCKET and erase all the old websocket data."
571 (websocket-debug websocket "Closing websocket")
572 (websocket-try-callback 'websocket-on-close 'on-close websocket)
573 (when (websocket-openp websocket)
574 (websocket-send websocket
575 (make-websocket-frame :opcode 'close
576 :completep t))
577 (setf (websocket-ready-state websocket) 'closed))
578 (delete-process (websocket-conn websocket)))
579
580 (defun websocket-ensure-connected (websocket)
581 "If the WEBSOCKET connection is closed, open it."
582 (unless (and (websocket-conn websocket)
583 (ecase (process-status (websocket-conn websocket))
584 ((run open listen) t)
585 ((stop exit signal closed connect failed nil) nil)))
586 (websocket-close websocket)
587 (websocket-open (websocket-url websocket)
588 :protocols (websocket-protocols websocket)
589 :extensions (websocket-extensions websocket)
590 :on-open (websocket-on-open websocket)
591 :on-message (websocket-on-message websocket)
592 :on-close (websocket-on-close websocket)
593 :on-error (websocket-on-error websocket))))
594
595 ;;;;;;;;;;;;;;;;;;;;;;
596 ;; Websocket client ;;
597 ;;;;;;;;;;;;;;;;;;;;;;
598
599 (defun* websocket-open (url &key protocols extensions (on-open 'identity)
600 (on-message (lambda (_w _f))) (on-close 'identity)
601 (on-error 'websocket-default-error-handler))
602 "Open a websocket connection to URL, returning the `websocket' struct.
603 The PROTOCOL argument is optional, and setting it will declare to
604 the server that this client supports the protocols in the list
605 given. We will require that the server also has to support that
606 protocols.
607
608 Similar logic applies to EXTENSIONS, which is a list of conses,
609 the car of which is a string naming the extension, and the cdr of
610 which is the list of parameter strings to use for that extension.
611 The parameter strings are of the form \"key=value\" or \"value\".
612 EXTENSIONS can be NIL if none are in use. An example value would
613 be '(\"deflate-stream\" . (\"mux\" \"max-channels=4\")).
614
615 Cookies that are set via `url-cookie-store' will be used during
616 communication with the server, and cookies received from the
617 server will be stored in the same cookie storage that the
618 `url-cookie' package uses.
619
620 Optionally you can specify
621 ON-OPEN, ON-MESSAGE and ON-CLOSE callbacks as well.
622
623 The ON-OPEN callback is called after the connection is
624 established with the websocket as the only argument. The return
625 value is unused.
626
627 The ON-MESSAGE callback is called after receiving a frame, and is
628 called with the websocket as the first argument and
629 `websocket-frame' struct as the second. The return value is
630 unused.
631
632 The ON-CLOSE callback is called after the connection is closed, or
633 failed to open. It is called with the websocket as the only
634 argument, and the return value is unused.
635
636 The ON-ERROR callback is called when any of the other callbacks
637 have an error. It takes the websocket as the first argument, and
638 a symbol as the second argument either `on-open', `on-message',
639 or `on-close', and the error as the third argument. Do NOT
640 rethrow the error, or else you may miss some websocket messages.
641 You similarly must not generate any other errors in this method.
642 If you want to debug errors, set
643 `websocket-callback-debug-on-error' to `t', but this also can be
644 dangerous is the debugger is quit out of. If not specified,
645 `websocket-default-error-handler' is used.
646
647 For each of these event handlers, the client code can store
648 arbitrary data in the `client-data' slot in the returned
649 websocket.
650
651 The following errors might be thrown in this method or in
652 websocket processing, all of them having the error-condition
653 `websocket-error' in addition to their own symbol:
654
655 `websocket-unsupported-protocol': Data in the error signal is the
656 protocol that is unsupported. For example, giving a URL starting
657 with http by mistake raises this error.
658
659 `websocket-wss-needs-emacs-24': Trying to connect wss protocol
660 using Emacs < 24 raises this error. You can catch this error
661 also by `websocket-unsupported-protocol'.
662
663 `websocket-received-error-http-response': Data in the error
664 signal is the integer error number.
665
666 `websocket-invalid-header': Data in the error is a string
667 describing the invalid header received from the server.
668
669 `websocket-unparseable-frame': Data in the error is a string
670 describing the problem with the frame.
671 "
672 (let* ((name (format "websocket to %s" url))
673 (url-struct (url-generic-parse-url url))
674 (key (websocket-genkey))
675 (coding-system-for-read 'binary)
676 (coding-system-for-write 'binary)
677 (conn (if (member (url-type url-struct) '("ws" "wss"))
678 (let* ((type (if (equal (url-type url-struct) "ws")
679 'plain 'tls))
680 (port (if (= 0 (url-port url-struct))
681 (if (eq type 'tls) 443 80)
682 (url-port url-struct)))
683 (host (url-host url-struct)))
684 (if (eq type 'plain)
685 (make-network-process :name name :buffer nil :host host
686 :service port :nowait nil)
687 (condition-case-unless-debug nil
688 (open-network-stream name nil host port :type type :nowait nil)
689 (wrong-number-of-arguments
690 (signal 'websocket-wss-needs-emacs-24 "wss")))))
691 (signal 'websocket-unsupported-protocol (url-type url-struct))))
692 (websocket (websocket-inner-create
693 :conn conn
694 :url url
695 :on-open on-open
696 :on-message on-message
697 :on-close on-close
698 :on-error on-error
699 :protocols protocols
700 :extensions (mapcar 'car extensions)
701 :accept-string
702 (websocket-calculate-accept key))))
703 (unless conn (error "Could not establish the websocket connection to %s" url))
704 (process-put conn :websocket websocket)
705 (set-process-filter conn
706 (lambda (process output)
707 (let ((websocket (process-get process :websocket)))
708 (websocket-outer-filter websocket output))))
709 (set-process-sentinel
710 conn
711 (lambda (process change)
712 (let ((websocket (process-get process :websocket)))
713 (websocket-debug websocket "State change to %s" change)
714 (when (and
715 (member (process-status process) '(closed failed exit signal))
716 (not (eq 'closed (websocket-ready-state websocket))))
717 (websocket-try-callback 'websocket-on-close 'on-close websocket)))))
718 (set-process-query-on-exit-flag conn nil)
719 (process-send-string conn
720 (format "GET %s HTTP/1.1\r\n"
721 (let ((path (url-filename url-struct)))
722 (if (> (length path) 0) path "/"))))
723 (websocket-debug websocket "Sending handshake, key: %s, acceptance: %s"
724 key (websocket-accept-string websocket))
725 (process-send-string conn
726 (websocket-create-headers url key protocols extensions))
727 (websocket-debug websocket "Websocket opened")
728 websocket))
729
730 (defun websocket-process-headers (url headers)
731 "On opening URL, process the HEADERS sent from the server."
732 (when (string-match "Set-Cookie: \(.*\)\r\n" headers)
733 ;; The url-current-object is assumed to be set by
734 ;; url-cookie-handle-set-cookie.
735 (let ((url-current-object (url-generic-parse-url url)))
736 (url-cookie-handle-set-cookie (match-string 1 headers)))))
737
738 (defun websocket-outer-filter (websocket output)
739 "Filter the WEBSOCKET server's OUTPUT.
740 This will parse headers and process frames repeatedly until there
741 is no more output or the connection closes. If the websocket
742 connection is invalid, the connection will be closed."
743 (websocket-debug websocket "Received: %s" output)
744 (let ((start-point)
745 (text (concat (websocket-inflight-input websocket) output))
746 (header-end-pos))
747 (setf (websocket-inflight-input websocket) nil)
748 ;; If we've received the complete header, check to see if we've
749 ;; received the desired handshake.
750 (when (and (eq 'connecting (websocket-ready-state websocket)))
751 (if (and (setq header-end-pos (string-match "\r\n\r\n" text))
752 (setq start-point (+ 4 header-end-pos)))
753 (progn
754 (condition-case err
755 (progn
756 (websocket-verify-response-code text)
757 (websocket-verify-headers websocket text)
758 (websocket-process-headers (websocket-url websocket) text))
759 (error
760 (websocket-close websocket)
761 (signal (car err) (cdr err))))
762 (setf (websocket-ready-state websocket) 'open)
763 (websocket-try-callback 'websocket-on-open 'on-open websocket))
764 (setf (websocket-inflight-input websocket) text)))
765 (when (eq 'open (websocket-ready-state websocket))
766 (websocket-process-input-on-open-ws
767 websocket (substring text (or start-point 0))))))
768
769 (defun websocket-verify-headers (websocket output)
770 "Based on WEBSOCKET's data, ensure the headers in OUTPUT are valid.
771 The output is assumed to have complete headers. This function
772 will either return t or call `error'. This has the side-effect
773 of populating the list of server extensions to WEBSOCKET."
774 (let ((accept-string
775 (concat "Sec-WebSocket-Accept: " (websocket-accept-string websocket))))
776 (websocket-debug websocket "Checking for accept header: %s" accept-string)
777 (unless (string-match (regexp-quote accept-string) output)
778 (signal 'websocket-invalid-header
779 "Incorrect handshake from websocket: is this really a websocket connection?")))
780 (let ((case-fold-search t))
781 (websocket-debug websocket "Checking for upgrade header")
782 (unless (string-match "\r\nUpgrade: websocket\r\n" output)
783 (signal 'websocket-invalid-header
784 "No 'Upgrade: websocket' header found"))
785 (websocket-debug websocket "Checking for connection header")
786 (unless (string-match "\r\nConnection: upgrade\r\n" output)
787 (signal 'websocket-invalid-header
788 "No 'Connection: upgrade' header found"))
789 (when (websocket-protocols websocket)
790 (dolist (protocol (websocket-protocols websocket))
791 (websocket-debug websocket "Checking for protocol match: %s"
792 protocol)
793 (let ((protocols
794 (if (string-match (format "\r\nSec-Websocket-Protocol: %s\r\n"
795 protocol)
796 output)
797 (list protocol)
798 (signal 'websocket-invalid-header
799 "Incorrect or missing protocol returned by the server."))))
800 (setf (websocket-negotiated-protocols websocket) protocols))))
801 (let* ((extensions (websocket-parse-repeated-field
802 output
803 "Sec-WebSocket-Extensions"))
804 (extra-extensions))
805 (dolist (ext extensions)
806 (let ((x (first (split-string ext "; ?"))))
807 (unless (or (member x (websocket-extensions websocket))
808 (member x extra-extensions))
809 (push x extra-extensions))))
810 (when extra-extensions
811 (signal 'websocket-invalid-header
812 (format "Non-requested extensions returned by server: %S"
813 extra-extensions)))
814 (setf (websocket-negotiated-extensions websocket) extensions)))
815 t)
816
817 ;;;;;;;;;;;;;;;;;;;;;;
818 ;; Websocket server ;;
819 ;;;;;;;;;;;;;;;;;;;;;;
820
821 (defvar websocket-server-websockets nil
822 "A list of current websockets live on any server.")
823
824 (defun* websocket-server (port &rest plist)
825 "Open a websocket server on PORT.
826 If the plist contains a `:host' HOST pair, this value will be
827 used to configure the addresses the socket listens on. The symbol
828 `local' specifies the local host. If unspecified or nil, the
829 socket will listen on all addresses.
830
831 This also takes a plist of callbacks: `:on-open', `:on-message',
832 `:on-close' and `:on-error', which operate exactly as documented
833 in the websocket client function `websocket-open'. Returns the
834 connection, which should be kept in order to pass to
835 `websocket-server-close'."
836 (let* ((conn (make-network-process
837 :name (format "websocket server on port %s" port)
838 :server t
839 :family 'ipv4
840 :filter 'websocket-server-filter
841 :log 'websocket-server-accept
842 :filter-multibyte nil
843 :plist plist
844 :host (plist-get plist :host)
845 :service port)))
846 conn))
847
848 (defun websocket-server-close (conn)
849 "Closes the websocket, as well as all open websockets for this server."
850 (let ((to-delete))
851 (dolist (ws websocket-server-websockets)
852 (when (eq (websocket-server-conn ws) conn)
853 (if (eq (websocket-ready-state ws) 'closed)
854 (unless (member ws to-delete)
855 (push ws to-delete))
856 (websocket-close ws))))
857 (dolist (ws to-delete)
858 (setq websocket-server-websockets (remove ws websocket-server-websockets))))
859 (delete-process conn))
860
861 (defun websocket-server-accept (server client _message)
862 "Accept a new websocket connection from a client."
863 (let ((ws (websocket-inner-create
864 :server-conn server
865 :conn client
866 :url client
867 :server-p t
868 :on-open (or (process-get server :on-open) 'identity)
869 :on-message (or (process-get server :on-message) (lambda (_ws _frame)))
870 :on-close (lexical-let ((user-method
871 (or (process-get server :on-close) 'identity)))
872 (lambda (ws)
873 (setq websocket-server-websockets
874 (remove ws websocket-server-websockets))
875 (funcall user-method ws)))
876 :on-error (or (process-get server :on-error)
877 'websocket-default-error-handler)
878 :protocols (process-get server :protocol)
879 :extensions (mapcar 'car (process-get server :extensions)))))
880 (unless (member ws websocket-server-websockets)
881 (push ws websocket-server-websockets))
882 (process-put client :websocket ws)
883 (set-process-coding-system client 'binary 'binary)
884 (set-process-sentinel client
885 (lambda (process change)
886 (let ((websocket (process-get process :websocket)))
887 (websocket-debug websocket "State change to %s" change)
888 (when (and
889 (member (process-status process) '(closed failed exit signal))
890 (not (eq 'closed (websocket-ready-state websocket))))
891 (websocket-try-callback 'websocket-on-close 'on-close websocket)))))))
892
893 (defun websocket-create-headers (url key protocol extensions)
894 "Create connections headers for the given URL, KEY, PROTOCOL and EXTENSIONS.
895 These are defined as in `websocket-open'."
896 (let* ((parsed-url (url-generic-parse-url url))
897 (host-port (if (url-port-if-non-default parsed-url)
898 (format "%s:%s" (url-host parsed-url) (url-port parsed-url))
899 (url-host parsed-url)))
900 (cookie-header (url-cookie-generate-header-lines
901 host-port (car (url-path-and-query parsed-url))
902 (equal (url-type parsed-url) "wss"))))
903 (format (concat "Host: %s\r\n"
904 "Upgrade: websocket\r\n"
905 "Connection: Upgrade\r\n"
906 "Sec-WebSocket-Key: %s\r\n"
907 "Sec-WebSocket-Version: 13\r\n"
908 (when protocol
909 (concat
910 (mapconcat
911 (lambda (protocol)
912 (format "Sec-WebSocket-Protocol: %s" protocol))
913 protocol "\r\n")
914 "\r\n"))
915 (when extensions
916 (format "Sec-WebSocket-Extensions: %s\r\n"
917 (mapconcat
918 (lambda (ext)
919 (concat
920 (car ext)
921 (when (cdr ext) "; ")
922 (when (cdr ext)
923 (mapconcat 'identity (cdr ext) "; "))))
924 extensions ", ")))
925 (when cookie-header cookie-header)
926 "\r\n")
927 host-port
928 key
929 protocol)))
930
931 (defun websocket-get-server-response (websocket client-protocols client-extensions)
932 "Get the websocket response from client WEBSOCKET."
933 (let ((separator "\r\n"))
934 (concat "HTTP/1.1 101 Switching Protocols" separator
935 "Upgrade: websocket" separator
936 "Connection: Upgrade" separator
937 "Sec-WebSocket-Accept: "
938 (websocket-accept-string websocket) separator
939 (let ((protocols
940 (websocket-intersect client-protocols
941 (websocket-protocols websocket))))
942 (when protocols
943 (concat
944 (mapconcat
945 (lambda (protocol) (format "Sec-WebSocket-Protocol: %s"
946 protocol)) protocols separator)
947 separator)))
948 (let ((extensions (websocket-intersect
949 client-extensions
950 (websocket-extensions websocket))))
951 (when extensions
952 (concat
953 (mapconcat
954 (lambda (extension) (format "Sec-Websocket-Extensions: %s"
955 extension)) extensions separator)
956 separator)))
957 separator)))
958
959 (defun websocket-server-filter (process output)
960 "This acts on all OUTPUT from websocket clients PROCESS."
961 (let* ((ws (process-get process :websocket))
962 (text (concat (websocket-inflight-input ws) output)))
963 (setf (websocket-inflight-input ws) nil)
964 (cond ((eq (websocket-ready-state ws) 'connecting)
965 ;; check for connection string
966 (let ((end-of-header-pos
967 (let ((pos (string-match "\r\n\r\n" text)))
968 (when pos (+ 4 pos)))))
969 (if end-of-header-pos
970 (progn
971 (let ((header-info (websocket-verify-client-headers text)))
972 (if header-info
973 (progn (setf (websocket-accept-string ws)
974 (websocket-calculate-accept
975 (plist-get header-info :key)))
976 (process-send-string
977 process
978 (websocket-get-server-response
979 ws (plist-get header-info :protocols)
980 (plist-get header-info :extensions)))
981 (setf (websocket-ready-state ws) 'open)
982 (websocket-try-callback 'websocket-on-open
983 'on-open ws))
984 (message "Invalid client headers found in: %s" output)
985 (process-send-string process "HTTP/1.1 400 Bad Request\r\n\r\n")
986 (websocket-close ws)))
987 (when (> (length text) (+ 1 end-of-header-pos))
988 (websocket-server-filter process (substring
989 text
990 end-of-header-pos))))
991 (setf (websocket-inflight-input ws) text))))
992 ((eq (websocket-ready-state ws) 'open)
993 (websocket-process-input-on-open-ws ws text))
994 ((eq (websocket-ready-state ws) 'closed)
995 (message "WARNING: Should not have received further input on closed websocket")))))
996
997 (defun websocket-verify-client-headers (output)
998 "Verify the headers from the WEBSOCKET client connection in OUTPUT.
999 Unlike `websocket-verify-headers', this is a quieter routine. We
1000 don't want to error due to a bad client, so we just print out
1001 messages and a plist containing `:key', the websocket key,
1002 `:protocols' and `:extensions'."
1003 (block nil
1004 (let ((case-fold-search t)
1005 (plist))
1006 (unless (string-match "HTTP/1.1" output)
1007 (message "Websocket client connection: HTTP/1.1 not found")
1008 (return nil))
1009 (unless (string-match "^Host: " output)
1010 (message "Websocket client connection: Host header not found")
1011 (return nil))
1012 (unless (string-match "^Upgrade: websocket\r\n" output)
1013 (message "Websocket client connection: Upgrade: websocket not found")
1014 (return nil))
1015 (if (string-match "^Sec-WebSocket-Key: \\([[:graph:]]+\\)\r\n" output)
1016 (setq plist (plist-put plist :key (match-string 1 output)))
1017 (message "Websocket client connect: No key sent")
1018 (return nil))
1019 (unless (string-match "^Sec-WebSocket-Version: 13" output)
1020 (message "Websocket client connect: Websocket version 13 not found")
1021 (return nil))
1022 (when (string-match "^Sec-WebSocket-Protocol:" output)
1023 (setq plist (plist-put plist :protocols (websocket-parse-repeated-field
1024 output
1025 "Sec-Websocket-Protocol"))))
1026 (when (string-match "^Sec-WebSocket-Extensions:" output)
1027 (setq plist (plist-put plist :extensions (websocket-parse-repeated-field
1028 output
1029 "Sec-Websocket-Extensions"))))
1030 plist)))
1031
1032 (provide 'websocket)
1033
1034 ;;; websocket.el ends here