]> code.delx.au - gnu-emacs-elpa/blob - packages/websocket/websocket.el
Merge remote-tracking branch 'ztree/master'
[gnu-emacs-elpa] / packages / websocket / websocket.el
1 ;;; websocket.el --- Emacs WebSocket client and server
2
3 ;; Copyright (c) 2013 Free Software Foundation, Inc.
4
5 ;; Author: Andrew Hyatt <ahyatt at gmail dot com>
6 ;; Maintainer: Andrew Hyatt <ahyatt at gmail dot com>
7 ;; Keywords: Communication, Websocket, Server
8 ;; Version: 1.4
9 ;;
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 3 of the
13 ;; License, or (at your option) any later version.
14 ;;
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ;; General Public License for more details.
19 ;;
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24 ;; This implements RFC 6455, which can be found at
25 ;; http://tools.ietf.org/html/rfc6455.
26 ;;
27 ;; This library contains code to connect Emacs as a client to a
28 ;; websocket server, and for Emacs to act as a server for websocket
29 ;; connections.
30 ;;
31 ;; Websockets clients are created by calling `websocket-open', which
32 ;; returns a `websocket' struct. Users of this library use the
33 ;; websocket struct, and can call methods `websocket-send-text', which
34 ;; sends text over the websocket, or `websocket-send', which sends a
35 ;; `websocket-frame' struct, enabling finer control of what is sent.
36 ;; A callback is passed to `websocket-open' that will retrieve
37 ;; websocket frames called from the websocket. Websockets are
38 ;; eventually closed with `websocket-close'.
39 ;;
40 ;; Server functionality is similar. A server is started with
41 ;; `websocket-server' called with a port and the callbacks to use,
42 ;; which returns a process. The process can later be closed with
43 ;; `websocket-server-close'. A `websocket' struct is also created
44 ;; for every connection, and is exposed through the callbacks.
45
46 (require 'bindat)
47 (require 'url-parse)
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.4"
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 (string-match "HTTP/1.1 \\([[:digit:]]+\\)" output)
454 (unless (equal "101" (match-string 1 output))
455 (signal 'websocket-received-error-http-response
456 (string-to-number (match-string 1 output))))
457 t)
458
459 (defun websocket-parse-repeated-field (output field)
460 "From header-containing OUTPUT, parse out the list from a
461 possibly repeated field."
462 (let ((pos 0)
463 (extensions))
464 (while (and pos
465 (string-match (format "\r\n%s: \\(.*\\)\r\n" field)
466 output pos))
467 (when (setq pos (match-end 1))
468 (setq extensions (append extensions (split-string
469 (match-string 1 output) ", ?")))))
470 extensions))
471
472 (defun websocket-process-frame (websocket frame)
473 "Using the WEBSOCKET's filter and connection, process the FRAME.
474 This returns a lambda that should be executed when all frames have
475 been processed. If the frame has a payload, the lambda has the frame
476 passed to the filter slot of WEBSOCKET. If the frame is a ping,
477 the lambda has a reply with a pong. If the frame is a close, the lambda
478 has connection termination."
479 (let ((opcode (websocket-frame-opcode frame)))
480 (lexical-let ((lex-ws websocket)
481 (lex-frame frame))
482 (cond ((memq opcode '(continuation text binary))
483 (lambda () (websocket-try-callback 'websocket-on-message 'on-message
484 lex-ws lex-frame)))
485 ((eq opcode 'ping)
486 (lambda () (websocket-send lex-ws
487 (make-websocket-frame
488 :opcode 'pong
489 :payload (websocket-frame-payload lex-frame)
490 :completep t))))
491 ((eq opcode 'close)
492 (lambda () (delete-process (websocket-conn lex-ws))))
493 (t (lambda ()))))))
494
495 (defun websocket-process-input-on-open-ws (websocket text)
496 "This handles input processing for both the client and server filters."
497 (let ((current-frame)
498 (processing-queue)
499 (start-point 0))
500 (while (setq current-frame (websocket-read-frame
501 (substring text start-point)))
502 (push (websocket-process-frame websocket current-frame) processing-queue)
503 (incf start-point (websocket-frame-length current-frame)))
504 (when (> (length text) start-point)
505 (setf (websocket-inflight-input websocket)
506 (substring text start-point)))
507 (dolist (to-process (nreverse processing-queue))
508 (funcall to-process))))
509
510 (defun websocket-send-text (websocket text)
511 "To the WEBSOCKET, send TEXT as a complete frame."
512 (websocket-send
513 websocket
514 (make-websocket-frame :opcode 'text
515 :payload (encode-coding-string
516 text 'raw-text)
517 :completep t)))
518
519 (defun websocket-check (frame)
520 "Check FRAME for correctness, returning true if correct."
521 (or
522 ;; Text, binary, and continuation frames need payloads
523 (and (memq (websocket-frame-opcode frame) '(text binary continuation))
524 (websocket-frame-payload frame))
525 ;; Pings and pongs may optionally have them
526 (memq (websocket-frame-opcode frame) '(ping pong))
527 ;; And close shouldn't have any payload, and should always be complete.
528 (and (eq (websocket-frame-opcode frame) 'close)
529 (not (websocket-frame-payload frame))
530 (websocket-frame-completep frame))))
531
532 (defun websocket-send (websocket frame)
533 "To the WEBSOCKET server, send the FRAME.
534 This will raise an error if the frame is illegal.
535
536 The error signaled may be of type `websocket-illegal-frame' if
537 the frame is malformed in some way, also having the condition
538 type of `websocket-error'. The data associated with the signal
539 is the frame being sent.
540
541 If the websocket is closed a signal `websocket-closed' is sent,
542 also with `websocket-error' condition. The data in the signal is
543 also the frame.
544
545 The frame may be too large for this buid of Emacs, in which case
546 `websocket-frame-too-large' is returned, with the data of the
547 size of the frame which was too large to process. This also has
548 the `websocket-error' condition."
549 (unless (websocket-check frame)
550 (signal 'websocket-illegal-frame frame))
551 (websocket-debug websocket "Sending frame, opcode: %s payload: %s"
552 (websocket-frame-opcode frame)
553 (websocket-frame-payload frame))
554 (websocket-ensure-connected websocket)
555 (unless (websocket-openp websocket)
556 (signal 'websocket-closed frame))
557 (process-send-string (websocket-conn websocket)
558 ;; We mask only when we're a client, following the spec.
559 (websocket-encode-frame frame (not (websocket-server-p websocket)))))
560
561 (defun websocket-openp (websocket)
562 "Check WEBSOCKET and return non-nil if it is open, and either
563 connecting or open."
564 (and websocket
565 (not (eq 'close (websocket-ready-state websocket)))
566 (member (process-status (websocket-conn websocket)) '(open run))))
567
568 (defun websocket-close (websocket)
569 "Close WEBSOCKET and erase all the old websocket data."
570 (websocket-debug websocket "Closing websocket")
571 (websocket-try-callback 'websocket-on-close 'on-close websocket)
572 (when (websocket-openp websocket)
573 (websocket-send websocket
574 (make-websocket-frame :opcode 'close
575 :completep t))
576 (setf (websocket-ready-state websocket) 'closed))
577 (delete-process (websocket-conn websocket)))
578
579 (defun websocket-ensure-connected (websocket)
580 "If the WEBSOCKET connection is closed, open it."
581 (unless (and (websocket-conn websocket)
582 (ecase (process-status (websocket-conn websocket))
583 ((run open listen) t)
584 ((stop exit signal closed connect failed nil) nil)))
585 (websocket-close websocket)
586 (websocket-open (websocket-url websocket)
587 :protocols (websocket-protocols websocket)
588 :extensions (websocket-extensions websocket)
589 :on-open (websocket-on-open websocket)
590 :on-message (websocket-on-message websocket)
591 :on-close (websocket-on-close websocket)
592 :on-error (websocket-on-error websocket))))
593
594 ;;;;;;;;;;;;;;;;;;;;;;
595 ;; Websocket client ;;
596 ;;;;;;;;;;;;;;;;;;;;;;
597
598 (defun* websocket-open (url &key protocols extensions (on-open 'identity)
599 (on-message (lambda (_w _f))) (on-close 'identity)
600 (on-error 'websocket-default-error-handler))
601 "Open a websocket connection to URL, returning the `websocket' struct.
602 The PROTOCOL argument is optional, and setting it will declare to
603 the server that this client supports the protocols in the list
604 given. We will require that the server also has to support that
605 protocols.
606
607 Similar logic applies to EXTENSIONS, which is a list of conses,
608 the car of which is a string naming the extension, and the cdr of
609 which is the list of parameter strings to use for that extension.
610 The parameter strings are of the form \"key=value\" or \"value\".
611 EXTENSIONS can be NIL if none are in use. An example value would
612 be '(\"deflate-stream\" . (\"mux\" \"max-channels=4\")).
613
614 Optionally you can specify
615 ON-OPEN, ON-MESSAGE and ON-CLOSE callbacks as well.
616
617 The ON-OPEN callback is called after the connection is
618 established with the websocket as the only argument. The return
619 value is unused.
620
621 The ON-MESSAGE callback is called after receiving a frame, and is
622 called with the websocket as the first argument and
623 `websocket-frame' struct as the second. The return value is
624 unused.
625
626 The ON-CLOSE callback is called after the connection is closed, or
627 failed to open. It is called with the websocket as the only
628 argument, and the return value is unused.
629
630 The ON-ERROR callback is called when any of the other callbacks
631 have an error. It takes the websocket as the first argument, and
632 a symbol as the second argument either `on-open', `on-message',
633 or `on-close', and the error as the third argument. Do NOT
634 rethrow the error, or else you may miss some websocket messages.
635 You similarly must not generate any other errors in this method.
636 If you want to debug errors, set
637 `websocket-callback-debug-on-error' to `t', but this also can be
638 dangerous is the debugger is quit out of. If not specified,
639 `websocket-default-error-handler' is used.
640
641 For each of these event handlers, the client code can store
642 arbitrary data in the `client-data' slot in the returned
643 websocket.
644
645 The following errors might be thrown in this method or in
646 websocket processing, all of them having the error-condition
647 `websocket-error' in addition to their own symbol:
648
649 `websocket-unsupported-protocol': Data in the error signal is the
650 protocol that is unsupported. For example, giving a URL starting
651 with http by mistake raises this error.
652
653 `websocket-wss-needs-emacs-24': Trying to connect wss protocol
654 using Emacs < 24 raises this error. You can catch this error
655 also by `websocket-unsupported-protocol'.
656
657 `websocket-received-error-http-response': Data in the error
658 signal is the integer error number.
659
660 `websocket-invalid-header': Data in the error is a string
661 describing the invalid header received from the server.
662
663 `websocket-unparseable-frame': Data in the error is a string
664 describing the problem with the frame.
665 "
666 (let* ((name (format "websocket to %s" url))
667 (url-struct (url-generic-parse-url url))
668 (key (websocket-genkey))
669 (coding-system-for-read 'binary)
670 (coding-system-for-write 'binary)
671 (conn (if (member (url-type url-struct) '("ws" "wss"))
672 (let* ((type (if (equal (url-type url-struct) "ws")
673 'plain 'tls))
674 (port (if (= 0 (url-port url-struct))
675 (if (eq type 'tls) 443 80)
676 (url-port url-struct)))
677 (host (url-host url-struct)))
678 (if (eq type 'plain)
679 (make-network-process :name name :buffer nil :host host
680 :service port :nowait nil)
681 (condition-case-unless-debug nil
682 (open-network-stream name nil host port :type type :nowait nil)
683 (wrong-number-of-arguments
684 (signal 'websocket-wss-needs-emacs-24 "wss")))))
685 (signal 'websocket-unsupported-protocol (url-type url-struct))))
686 (websocket (websocket-inner-create
687 :conn conn
688 :url url
689 :on-open on-open
690 :on-message on-message
691 :on-close on-close
692 :on-error on-error
693 :protocols protocols
694 :extensions (mapcar 'car extensions)
695 :accept-string
696 (websocket-calculate-accept key))))
697 (unless conn (error "Could not establish the websocket connection to %s" url))
698 (process-put conn :websocket websocket)
699 (set-process-filter conn
700 (lambda (process output)
701 (let ((websocket (process-get process :websocket)))
702 (websocket-outer-filter websocket output))))
703 (set-process-sentinel
704 conn
705 (lambda (process change)
706 (let ((websocket (process-get process :websocket)))
707 (websocket-debug websocket "State change to %s" change)
708 (when (and
709 (member (process-status process) '(closed failed exit signal))
710 (not (eq 'closed (websocket-ready-state websocket))))
711 (websocket-try-callback 'websocket-on-close 'on-close websocket)))))
712 (set-process-query-on-exit-flag conn nil)
713 (process-send-string conn
714 (format "GET %s HTTP/1.1\r\n"
715 (let ((path (url-filename url-struct)))
716 (if (> (length path) 0) path "/"))))
717 (websocket-debug websocket "Sending handshake, key: %s, acceptance: %s"
718 key (websocket-accept-string websocket))
719 (process-send-string conn
720 (websocket-create-headers url key protocols extensions))
721 (websocket-debug websocket "Websocket opened")
722 websocket))
723
724 (defun websocket-outer-filter (websocket output)
725 "Filter the WEBSOCKET server's OUTPUT.
726 This will parse headers and process frames repeatedly until there
727 is no more output or the connection closes. If the websocket
728 connection is invalid, the connection will be closed."
729 (websocket-debug websocket "Received: %s" output)
730 (let ((start-point)
731 (text (concat (websocket-inflight-input websocket) output))
732 (header-end-pos))
733 (setf (websocket-inflight-input websocket) nil)
734 ;; If we've received the complete header, check to see if we've
735 ;; received the desired handshake.
736 (when (and (eq 'connecting (websocket-ready-state websocket))
737 (setq header-end-pos (string-match "\r\n\r\n" text))
738 (setq start-point (+ 4 header-end-pos)))
739 (condition-case err
740 (progn
741 (websocket-verify-response-code text)
742 (websocket-verify-headers websocket text))
743 (error
744 (websocket-close websocket)
745 (signal (car err) (cdr err))))
746 (setf (websocket-ready-state websocket) 'open)
747 (websocket-try-callback 'websocket-on-open 'on-open websocket))
748 (when (eq 'open (websocket-ready-state websocket))
749 (websocket-process-input-on-open-ws
750 websocket (substring text (or start-point 0))))))
751
752 (defun websocket-verify-headers (websocket output)
753 "Based on WEBSOCKET's data, ensure the headers in OUTPUT are valid.
754 The output is assumed to have complete headers. This function
755 will either return t or call `error'. This has the side-effect
756 of populating the list of server extensions to WEBSOCKET."
757 (let ((accept-string
758 (concat "Sec-WebSocket-Accept: " (websocket-accept-string websocket))))
759 (websocket-debug websocket "Checking for accept header: %s" accept-string)
760 (unless (string-match (regexp-quote accept-string) output)
761 (signal 'websocket-invalid-header
762 "Incorrect handshake from websocket: is this really a websocket connection?")))
763 (let ((case-fold-search t))
764 (websocket-debug websocket "Checking for upgrade header")
765 (unless (string-match "\r\nUpgrade: websocket\r\n" output)
766 (signal 'websocket-invalid-header
767 "No 'Upgrade: websocket' header found"))
768 (websocket-debug websocket "Checking for connection header")
769 (unless (string-match "\r\nConnection: upgrade\r\n" output)
770 (signal 'websocket-invalid-header
771 "No 'Connection: upgrade' header found"))
772 (when (websocket-protocols websocket)
773 (dolist (protocol (websocket-protocols websocket))
774 (websocket-debug websocket "Checking for protocol match: %s"
775 protocol)
776 (let ((protocols
777 (if (string-match (format "\r\nSec-Websocket-Protocol: %s\r\n"
778 protocol)
779 output)
780 (list protocol)
781 (signal 'websocket-invalid-header
782 "Incorrect or missing protocol returned by the server."))))
783 (setf (websocket-negotiated-protocols websocket) protocols))))
784 (let* ((extensions (websocket-parse-repeated-field
785 output
786 "Sec-WebSocket-Extensions"))
787 (extra-extensions))
788 (dolist (ext extensions)
789 (let ((x (first (split-string ext "; ?"))))
790 (unless (or (member x (websocket-extensions websocket))
791 (member x extra-extensions))
792 (push x extra-extensions))))
793 (when extra-extensions
794 (signal 'websocket-invalid-header
795 (format "Non-requested extensions returned by server: %S"
796 extra-extensions)))
797 (setf (websocket-negotiated-extensions websocket) extensions)))
798 t)
799
800 ;;;;;;;;;;;;;;;;;;;;;;
801 ;; Websocket server ;;
802 ;;;;;;;;;;;;;;;;;;;;;;
803
804 (defvar websocket-server-websockets nil
805 "A list of current websockets live on any server.")
806
807 (defun* websocket-server (port &rest plist)
808 "Open a websocket server on PORT.
809 This also takes a plist of callbacks: `:on-open', `:on-message',
810 `:on-close' and `:on-error', which operate exactly as documented
811 in the websocket client function `websocket-open'. Returns the
812 connection, which should be kept in order to pass to
813 `websocket-server-close'."
814 (let* ((conn (make-network-process
815 :name (format "websocket server on port %s" port)
816 :server t
817 :family 'ipv4
818 :filter 'websocket-server-filter
819 :log 'websocket-server-accept
820 :filter-multibyte nil
821 :plist plist
822 :service port)))
823 conn))
824
825 (defun websocket-server-close (conn)
826 "Closes the websocket, as well as all open websockets for this server."
827 (let ((to-delete))
828 (dolist (ws websocket-server-websockets)
829 (when (eq (websocket-server-conn ws) conn)
830 (if (eq (websocket-ready-state ws) 'closed)
831 (unless (member ws to-delete)
832 (push ws to-delete))
833 (websocket-close ws))))
834 (dolist (ws to-delete)
835 (setq websocket-server-websockets (remove ws websocket-server-websockets))))
836 (delete-process conn))
837
838 (defun websocket-server-accept (server client message)
839 "Accept a new websocket connection from a client."
840 (let ((ws (websocket-inner-create
841 :server-conn server
842 :conn client
843 :url client
844 :server-p t
845 :on-open (or (process-get server :on-open) 'identity)
846 :on-message (or (process-get server :on-message) (lambda (_ws _frame)))
847 :on-close (lexical-let ((user-method
848 (or (process-get server :on-close) 'identity)))
849 (lambda (ws)
850 (setq websocket-server-websockets
851 (remove ws websocket-server-websockets))
852 (funcall user-method ws)))
853 :on-error (or (process-get server :on-error)
854 'websocket-default-error-handler)
855 :protocols (process-get server :protocol)
856 :extensions (mapcar 'car (process-get server :extensions)))))
857 (unless (member ws websocket-server-websockets)
858 (push ws websocket-server-websockets))
859 (process-put client :websocket ws)
860 (set-process-coding-system client 'binary 'binary)
861 (set-process-sentinel client
862 (lambda (process change)
863 (let ((websocket (process-get process :websocket)))
864 (websocket-debug websocket "State change to %s" change)
865 (when (and
866 (member (process-status process) '(closed failed exit signal))
867 (not (eq 'closed (websocket-ready-state websocket))))
868 (websocket-try-callback 'websocket-on-close 'on-close websocket)))))))
869
870 (defun websocket-create-headers (url key protocol extensions)
871 "Create connections headers for the given URL, KEY, PROTOCOL and EXTENSIONS.
872 These are defined as in `websocket-open'."
873 (format (concat "Host: %s\r\n"
874 "Upgrade: websocket\r\n"
875 "Connection: Upgrade\r\n"
876 "Sec-WebSocket-Key: %s\r\n"
877 "Sec-WebSocket-Version: 13\r\n"
878 (when protocol
879 (concat
880 (mapconcat (lambda (protocol)
881 (format "Sec-WebSocket-Protocol: %s" protocol))
882 protocol "\r\n")
883 "\r\n"))
884 (when extensions
885 (format "Sec-WebSocket-Extensions: %s\r\n"
886 (mapconcat
887 (lambda (ext)
888 (concat (car ext)
889 (when (cdr ext) "; ")
890 (when (cdr ext)
891 (mapconcat 'identity (cdr ext) "; "))))
892 extensions ", ")))
893 "\r\n")
894 (url-host (url-generic-parse-url url))
895 key
896 protocol))
897
898 (defun websocket-get-server-response (websocket client-protocols client-extensions)
899 "Get the websocket response from client WEBSOCKET."
900 (let ((separator "\r\n"))
901 (concat "HTTP/1.1 101 Switching Protocols" separator
902 "Upgrade: websocket" separator
903 "Connection: Upgrade" separator
904 "Sec-WebSocket-Accept: "
905 (websocket-accept-string websocket) separator
906 (let ((protocols
907 (websocket-intersect client-protocols
908 (websocket-protocols websocket))))
909 (when protocols
910 (concat
911 (mapconcat
912 (lambda (protocol) (format "Sec-WebSocket-Protocol: %s"
913 protocol)) protocols separator)
914 separator)))
915 (let ((extensions (websocket-intersect
916 client-extensions
917 (websocket-extensions websocket))))
918 (when extensions
919 (concat
920 (mapconcat
921 (lambda (extension) (format "Sec-Websocket-Extensions: %s"
922 extension)) extensions separator)
923 separator)))
924 separator)))
925
926 (defun websocket-server-filter (process output)
927 "This acts on all OUTPUT from websocket clients PROCESS."
928 (let* ((ws (process-get process :websocket))
929 (text (concat (websocket-inflight-input ws) output)))
930 (setf (websocket-inflight-input ws) nil)
931 (cond ((eq (websocket-ready-state ws) 'connecting)
932 ;; check for connection string
933 (let ((end-of-header-pos
934 (let ((pos (string-match "\r\n\r\n" text)))
935 (when pos (+ 4 pos)))))
936 (if end-of-header-pos
937 (progn
938 (let ((header-info (websocket-verify-client-headers text)))
939 (if header-info
940 (progn (setf (websocket-accept-string ws)
941 (websocket-calculate-accept
942 (plist-get header-info :key)))
943 (process-send-string
944 process
945 (websocket-get-server-response
946 ws (plist-get header-info :protocols)
947 (plist-get header-info :extensions)))
948 (setf (websocket-ready-state ws) 'open)
949 (websocket-try-callback 'websocket-on-open
950 'on-open ws))
951 (message "Invalid client headers found in: %s" output)
952 (process-send-string process "HTTP/1.1 400 Bad Request\r\n\r\n")
953 (websocket-close ws)))
954 (when (> (length text) (+ 1 end-of-header-pos))
955 (websocket-server-filter process (substring
956 text
957 end-of-header-pos))))
958 (setf (websocket-inflight-input ws) text))))
959 ((eq (websocket-ready-state ws) 'open)
960 (websocket-process-input-on-open-ws ws text))
961 ((eq (websocket-ready-state ws) 'closed)
962 (message "WARNING: Should not have received further input on closed websocket")))))
963
964 (defun websocket-verify-client-headers (output)
965 "Verify the headers from the WEBSOCKET client connection in OUTPUT.
966 Unlike `websocket-verify-headers', this is a quieter routine. We
967 don't want to error due to a bad client, so we just print out
968 messages and a plist containing `:key', the websocket key,
969 `:protocols' and `:extensions'."
970 (block nil
971 (let ((case-fold-search t)
972 (plist))
973 (unless (string-match "HTTP/1.1" output)
974 (message "Websocket client connection: HTTP/1.1 not found")
975 (return nil))
976 (unless (string-match "^Host: " output)
977 (message "Websocket client connection: Host header not found")
978 (return nil))
979 (unless (string-match "^Upgrade: websocket\r\n" output)
980 (message "Websocket client connection: Upgrade: websocket not found")
981 (return nil))
982 (if (string-match "^Sec-WebSocket-Key: \\([[:graph:]]+\\)\r\n" output)
983 (setq plist (plist-put plist :key (match-string 1 output)))
984 (message "Websocket client connect: No key sent")
985 (return nil))
986 (unless (string-match "^Sec-WebSocket-Version: 13" output)
987 (message "Websocket client connect: Websocket version 13 not found")
988 (return nil))
989 (when (string-match "^Sec-WebSocket-Protocol:" output)
990 (setq plist (plist-put plist :protocols (websocket-parse-repeated-field
991 output
992 "Sec-Websocket-Protocol"))))
993 (when (string-match "^Sec-WebSocket-Extensions:" output)
994 (setq plist (plist-put plist :extensions (websocket-parse-repeated-field
995 output
996 "Sec-Websocket-Extensions"))))
997 plist)))
998
999 (provide 'websocket)
1000
1001 ;;; websocket.el ends here