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
|
#| rep.net.rpc -- simple RPC mechanisms for inter-host communication
$Id: rpc.jl,v 1.13 2002/03/31 03:43:30 jsh Exp $
Copyright (C) 2001 John Harper <jsh@pixelslut.com>
This file is part of librep.
librep is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
librep is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with librep; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|#
;; Commentary:
;; This module implements a very simple RPC mechanism over TCP/IP
;; sockets.
;; Servers register functions that may be called by remote systems,
;; producing an id that can be used by the remote system (together with
;; the host name and chosen port number) to create a proxy function.
;; Calling the proxy function is then exactly the same as calling the
;; real function (with the exception that all data must be able to be
;; printed and re-read)
;; Using this module to create proxies for functions returned by the
;; `object' macro defined by rep.data.objects gives an object-oriented
;; rpc mechanism, somewhat like a dynamically-typed version of CORBA!
;; Example:
;; =Server=
;; (rpc-create-server) -- create rpc listener on a random port
;; (define (foo x) (+ x 42))
;; (define foo-id (make-rpc-servant foo))
;; `foo-id' is now a symbol that uniquely identifies the `foo' function
;; on this server. E.g. it may be something like `9s72fdln00-61vxd7'
;; To turn this into a globally valid id, use the servant-id->global-id
;; function:
;; (define foo-global-id (servant-id->global-id foo-id))
;; this creates a string, e.g.: "9s72fdln00-61vxd7@1.2.3.4:2000"
;; =Client=
;; (define proxy (global-id->rpc-proxy "9s72fdln00-61vxd7@1.2.3.4:2000"))
;; Now `proxy' is a function that when called marshals all its
;; arguments, sends them to the server, along with the unique id, and
;; waits for a result to be returned, which it then unmarshals and
;; returns
;; Unlike CORBA it's not possible to transparently pass object
;; references (proxies) over an RPC call, and have them work at the
;; other end.
;; The solution is to convert the proxy to a global id, then pass that
;; over the RPC call, so that the other side can convert it into a new
;; proxy.
;; It's also possible to pass references from servers behind firewalls
;; (and thus can't create usable global ids). The solution here is to
;; pass the local servant-id to the remote server, which can then use
;; the remote-servant-id->rpc-proxy function. This knows that the given
;; servant id refers to the connection used to invoke the currently
;; executing rpc call
(define-structure rep.net.rpc
(export rpc-socket-listener
rpc-output-handler
rpc-create-server
rpc-destroy-server
register-rpc-server
deregister-rpc-server
make-rpc-servant
destroy-rpc-servant
call-with-rpc-servant
async-rpc-call
rpc-proxy->global-id
rpc-proxy->servant-id
servant-id->global-id
remote-servant-id->global-id
global-id->rpc-proxy)
(open rep
rep.io.sockets
rep.io.processes
rep.system
rep.regexp
rep.data.tables
rep.data.records)
(define debug-rpc nil)
(define (debug fmt . args)
(when debug-rpc
(let ((print-escape t))
(apply format standard-error fmt args))))
(define-record-type :socket-data
(make-socket-data closable)
;; no predicate
(pending-data socket-pending-data socket-pending-data-set!)
(closable socket-closable-p)
(pending-calls socket-pending-calls socket-pending-calls-set!))
;; The socket used to listen for connections to this server (or false)
(define listener-socket nil)
;; The socket that was used to invoke the innermost called servant
;; implementation
(define active-socket (make-fluid))
;;; connection cache
;; maps from (SERVER-NAME . PORT-NUMBER) -> SOCKET
(define socket-cache (make-table equal-hash equal))
;; maps from SOCKET -> SOCKET-DATA
(define socket-data-table (make-weak-table eq-hash eq))
;; Return the socket associated with SERVER:PORT. If there isn't one,
;; try to connect to the server. Signals an error on failure
(define (server-socket server port)
(or (table-ref socket-cache (cons server port))
(open-server server port)))
(define (register-rpc-server socket #!key closable)
"Add the connection SOCKET to the table of known rpc connections. If
CLOSABLE is true, then the socket could be closed and reopened simply
by knowing its address and port number."
(let ((server (socket-peer-address socket))
(port (socket-peer-port socket)))
(table-set socket-cache (cons server port) socket)
(table-set socket-data-table socket (make-socket-data closable))))
(define (deregister-rpc-server socket)
"Remove SOCKET from the table of rpc connections."
(let ((server (socket-peer-address socket))
(port (socket-peer-port socket)))
(when (eq (table-ref socket-cache (cons server port)) socket)
(table-unset socket-cache (cons server port)))
(let ((data (socket-data socket)))
(if (not data)
(close-socket socket)
(when (socket-closable-p data)
(close-socket socket))
(table-unset socket-data-table socket)
;; fail-out any pending calls on this socket
(mapc (lambda (id)
(dispatch-pending-call
socket id nil
(list 'rpc-error "Lost connection" server port)))
(socket-pending-calls data))))))
;; Return the data structure associated with SOCKET
(define (socket-data socket) (table-ref socket-data-table socket))
;;; socket I/O
;; maps from ID -> (CALLBACK ERROR? VALUE)
(define pending-calls (make-table eq-hash eq))
;; XXX make this unspoofable
(define make-call-id
(let ((counter 0))
(lambda ()
(setq counter (1+ counter)))))
(define (record-pending-call socket id callback)
(table-set pending-calls id callback)
(let ((data (socket-data socket)))
(socket-pending-calls-set! data (cons id (socket-pending-calls data)))))
(define (dispatch-pending-call socket id succeeded value)
(let ((data (socket-data socket)))
(socket-pending-calls-set! data (delq id (socket-pending-calls data))))
(let ((callback (table-ref pending-calls id)))
(when callback
(table-unset pending-calls id)
(callback succeeded value))))
(define (rpc-socket-listener master-socket)
"The function that should be used to listen for connections on rpc
server sockets."
(let (socket)
(setq socket (socket-accept master-socket
(lambda (output)
(rpc-output-handler socket output))
(lambda ()
(deregister-rpc-server socket))))
(register-rpc-server socket #:closable nil)
socket))
;; Open an rpc connection to HOST:PORT; signals an error on failure
(define (open-server host port)
(let (socket)
(setq socket (socket-client host port
(lambda (x)
(rpc-output-handler socket x))
(lambda ()
(deregister-rpc-server socket))))
(register-rpc-server socket #:closable t)
socket))
(define (rpc-output-handler socket output)
"The function used to handle any OUTPUT from SOCKET."
(let ((sock-data (socket-data socket)))
(socket-pending-data-set!
sock-data (concat (socket-pending-data sock-data) output))
;;(debug "Input: %S\n" (socket-pending-data sock-data))
(catch 'out
(while t
(let ((stream (make-string-input-stream
(socket-pending-data sock-data)))
form)
(condition-case nil
(setq form (read stream))
((premature-end-of-stream end-of-stream)
(throw 'out))
((invalid-read-syntax)
(error "Can't parse rpc message: %S"
(socket-pending-data sock-data))))
(debug "Parsed: %S\n" form)
;; this function may be called reentrantly, so make sure the
;; state is always consistent..
(socket-pending-data-set!
;; stream is (STRING . POINT)
sock-data (substring (cdr stream) (car stream)))
(case (car form)
((result)
;; (result CALL-ID RETURNED? VALUE-OR-EXCEPTION)
(let ((id (nth 1 form))
(succeeded (nth 2 form))
(value (nth 3 form)))
(dispatch-pending-call socket id succeeded value)))
((call)
;; (call CALL-ID SERVANT-ID ARGS...)
(let ((id (nth 1 form))
(servant-id (nth 2 form))
(args (nthcdr 3 form)))
(let ((result (call-with-exception-handler
(lambda ()
(let ((impl (servant-ref servant-id)))
(unless impl
(error
"No such RPC servant: %s" servant-id))
(let-fluids ((active-socket socket))
(list t (apply impl args)))))
(lambda (data)
(list nil data)))))
(when id
(let ((response (list* 'result id result)))
(debug "Wrote: %S\n" response)
(write socket (prin1-to-string response)))))))))))))
(define (invoke-method socket id callback servant-id args)
(record-pending-call socket id callback)
(let ((request (list* 'call id servant-id args)))
(debug "Wrote: %S\n" request)
(write socket (prin1-to-string request))))
(define (invoke-oneway-method socket servant-id args)
(let ((request (list* 'call nil servant-id args)))
(debug "Wrote: %S\n" request)
(write socket (prin1-to-string request))))
(define (synchronous-method-call socket servant-id args)
(let ((id (make-call-id))
(done nil)
succeeded value)
(invoke-method socket id
(lambda (a b)
(setq done t)
(setq succeeded a)
(setq value b))
servant-id args)
(while (not done)
(accept-process-output 60))
(if succeeded
value
(raise-exception value))))
(define (asynchronous-method-call socket callback servant-id args)
(invoke-method socket (make-call-id) callback servant-id args))
(define (oneway-method-call socket servant-id args)
(invoke-oneway-method socket servant-id args))
(define (rpc-create-server)
"Start listening for rpc connections on the current machine"
(unless listener-socket
(setq listener-socket (socket-server nil nil rpc-socket-listener))))
(define (rpc-destroy-server)
"Stop listening for rpc connections on the current machine"
(when listener-socket
(close-socket listener-socket)
(setq listener-socket nil)))
;;; servants
;; map from ID->RPC-IMPL
(define servant-table (make-table eq-hash eq))
;; Create a new (unique) servant id
(define (make-servant-id)
(intern (concat (number->string (current-utime) 36)
#\- (number->string (random) 36))))
;; Return the servant implementation associated with ID
(define (servant-ref id) (table-ref servant-table id))
(define (make-rpc-servant impl)
"Register the function IMPL as an rpc servant, and return the created
servant-id."
(let ((id (make-servant-id)))
(table-set servant-table id impl)
id))
(define (destroy-rpc-servant id)
"Remove the servant with servant-id ID from the table of servants."
(table-unset servant-table id))
(define (call-with-rpc-servant impl callback)
"Call the function CALLBACK with a single argument, the servant-id that
can be used to call the function IMPL. Once CALLBACK returns, the servant-id
becomes invalid."
(let ((id (make-rpc-servant impl)))
(unwind-protect
(callback id)
(destroy-rpc-servant id))))
;;; proxies
;; magic object used to get information from proxies
(define proxy-token (cons))
;; table mapping GLOBAL-ID -> PROXY-WEAK-REF
(define proxy-table (make-table string-hash string=))
(define (make-proxy server port servant-id)
(let ((global-id (make-global-id server port servant-id)))
(define (proxy)
(lambda args
(if (eq (car args) proxy-token)
;; when called like this, do special things
(case (cadr args)
((global-id) global-id)
((servant-id) servant-id)
((oneway)
;; async request - no result required
(oneway-method-call
(server-socket server port) servant-id (cddr args)))
((async)
(asynchronous-method-call
(server-socket server port)
(caddr args) servant-id (cdddr args))))
;; otherwise, just forward to the server
(synchronous-method-call
(server-socket server port) servant-id args))))
;; Avoid consing a new proxy each time..
(let ((ref (table-ref proxy-table global-id)))
(if ref
(or (weak-ref ref)
(let ((p (proxy)))
(weak-ref-set ref p)
p))
(let ((p (proxy)))
(table-set proxy-table global-id (make-weak-ref p))
p)))))
(define (async-rpc-call proxy #!key callback . args)
"Call the rpc proxy function PROXY with arguments ARGS. It will be called
asynchronously. No result will be returned from the remote function
unless CALLBACK is given, in which case (CALLBACK STATUS VALUE) will be
called at some point in the future."
(if callback
(apply proxy proxy-token 'async callback args)
(apply proxy proxy-token 'oneway args))
#undefined)
(define (rpc-proxy->global-id proxy)
"Return the globally-valid servant-id (a string) that can be used to
reference the RPC proxy function PROXY."
(proxy proxy-token 'global-id))
(define (rpc-proxy->servant-id proxy)
"Return the unqualified servant-id (a symbol) that can be used to
reference the RPC proxy function PROXY."
(proxy proxy-token 'servant-id))
;;; globally referenceable ids
;; Create the global servant id for ID@SERVER:PORT
(define (make-global-id server port id)
(format nil "%s@%s:%s" id server port))
(define (servant-id->global-id id)
"Return the globally referenceable RPC servant id for local servant id ID."
(unless listener-socket
(error "Need an active local RPC server"))
(make-global-id (socket-address listener-socket)
(socket-port listener-socket) id))
(define (remote-servant-id->global-id id)
"Return the globally referenceable RPC servant id for the local servant
id ID (a symbol) associated with the invoker of the currently active RPC
request."
(unless (fluid active-socket)
(error "Not called from an RPC servant"))
(make-global-id (socket-peer-address (fluid active-socket))
(socket-peer-port (fluid active-socket)) id))
(define (global-id->rpc-proxy id)
"Return a function that can be used to call the RPC associated with the
global servant id ID (a string)."
(unless (string-looking-at "(.+)@(.+):(.+)" id)
(error "Badly formed global RPC servant id: %s" id))
(let ((servant-id (intern (expand-last-match "\\1")))
(server (expand-last-match "\\2"))
(port (string->number (expand-last-match "\\3"))))
(make-proxy server port servant-id)))
;;; initialization
;; ensure that the random numbers are random..
(random t))
|