socketserver.py 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757
  1. """Generic socket server classes.
  2. This module tries to capture the various aspects of defining a server:
  3. For socket-based servers:
  4. - address family:
  5. - AF_INET{,6}: IP (Internet Protocol) sockets (default)
  6. - AF_UNIX: Unix domain sockets
  7. - others, e.g. AF_DECNET are conceivable (see <socket.h>
  8. - socket type:
  9. - SOCK_STREAM (reliable stream, e.g. TCP)
  10. - SOCK_DGRAM (datagrams, e.g. UDP)
  11. For request-based servers (including socket-based):
  12. - client address verification before further looking at the request
  13. (This is actually a hook for any processing that needs to look
  14. at the request before anything else, e.g. logging)
  15. - how to handle multiple requests:
  16. - synchronous (one request is handled at a time)
  17. - forking (each request is handled by a new process)
  18. - threading (each request is handled by a new thread)
  19. The classes in this module favor the server type that is simplest to
  20. write: a synchronous TCP/IP server. This is bad class design, but
  21. save some typing. (There's also the issue that a deep class hierarchy
  22. slows down method lookups.)
  23. There are five classes in an inheritance diagram, four of which represent
  24. synchronous servers of four types:
  25. +------------+
  26. | BaseServer |
  27. +------------+
  28. |
  29. v
  30. +-----------+ +------------------+
  31. | TCPServer |------->| UnixStreamServer |
  32. +-----------+ +------------------+
  33. |
  34. v
  35. +-----------+ +--------------------+
  36. | UDPServer |------->| UnixDatagramServer |
  37. +-----------+ +--------------------+
  38. Note that UnixDatagramServer derives from UDPServer, not from
  39. UnixStreamServer -- the only difference between an IP and a Unix
  40. stream server is the address family, which is simply repeated in both
  41. unix server classes.
  42. Forking and threading versions of each type of server can be created
  43. using the ForkingMixIn and ThreadingMixIn mix-in classes. For
  44. instance, a threading UDP server class is created as follows:
  45. class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass
  46. The Mix-in class must come first, since it overrides a method defined
  47. in UDPServer! Setting the various member variables also changes
  48. the behavior of the underlying server mechanism.
  49. To implement a service, you must derive a class from
  50. BaseRequestHandler and redefine its handle() method. You can then run
  51. various versions of the service by combining one of the server classes
  52. with your request handler class.
  53. The request handler class must be different for datagram or stream
  54. services. This can be hidden by using the request handler
  55. subclasses StreamRequestHandler or DatagramRequestHandler.
  56. Of course, you still have to use your head!
  57. For instance, it makes no sense to use a forking server if the service
  58. contains state in memory that can be modified by requests (since the
  59. modifications in the child process would never reach the initial state
  60. kept in the parent process and passed to each child). In this case,
  61. you can use a threading server, but you will probably have to use
  62. locks to avoid two requests that come in nearly simultaneous to apply
  63. conflicting changes to the server state.
  64. On the other hand, if you are building e.g. an HTTP server, where all
  65. data is stored externally (e.g. in the file system), a synchronous
  66. class will essentially render the service "deaf" while one request is
  67. being handled -- which may be for a very long time if a client is slow
  68. to read all the data it has requested. Here a threading or forking
  69. server is appropriate.
  70. In some cases, it may be appropriate to process part of a request
  71. synchronously, but to finish processing in a forked child depending on
  72. the request data. This can be implemented by using a synchronous
  73. server and doing an explicit fork in the request handler class
  74. handle() method.
  75. Another approach to handling multiple simultaneous requests in an
  76. environment that supports neither threads nor fork (or where these are
  77. too expensive or inappropriate for the service) is to maintain an
  78. explicit table of partially finished requests and to use a selector to
  79. decide which request to work on next (or whether to handle a new
  80. incoming request). This is particularly important for stream services
  81. where each client can potentially be connected for a long time (if
  82. threads or subprocesses cannot be used).
  83. Future work:
  84. - Standard classes for Sun RPC (which uses either UDP or TCP)
  85. - Standard mix-in classes to implement various authentication
  86. and encryption schemes
  87. XXX Open problems:
  88. - What to do with out-of-band data?
  89. BaseServer:
  90. - split generic "request" functionality out into BaseServer class.
  91. Copyright (C) 2000 Luke Kenneth Casson Leighton <lkcl@samba.org>
  92. example: read entries from a SQL database (requires overriding
  93. get_request() to return a table entry from the database).
  94. entry is processed by a RequestHandlerClass.
  95. """
  96. # Author of the BaseServer patch: Luke Kenneth Casson Leighton
  97. __version__ = "0.4"
  98. import socket
  99. import selectors
  100. import os
  101. import errno
  102. try:
  103. import threading
  104. except ImportError:
  105. import dummy_threading as threading
  106. from time import monotonic as time
  107. __all__ = ["BaseServer", "TCPServer", "UDPServer", "ForkingUDPServer",
  108. "ForkingTCPServer", "ThreadingUDPServer", "ThreadingTCPServer",
  109. "BaseRequestHandler", "StreamRequestHandler",
  110. "DatagramRequestHandler", "ThreadingMixIn", "ForkingMixIn"]
  111. if hasattr(socket, "AF_UNIX"):
  112. __all__.extend(["UnixStreamServer","UnixDatagramServer",
  113. "ThreadingUnixStreamServer",
  114. "ThreadingUnixDatagramServer"])
  115. # poll/select have the advantage of not requiring any extra file descriptor,
  116. # contrarily to epoll/kqueue (also, they require a single syscall).
  117. if hasattr(selectors, 'PollSelector'):
  118. _ServerSelector = selectors.PollSelector
  119. else:
  120. _ServerSelector = selectors.SelectSelector
  121. class BaseServer:
  122. """Base class for server classes.
  123. Methods for the caller:
  124. - __init__(server_address, RequestHandlerClass)
  125. - serve_forever(poll_interval=0.5)
  126. - shutdown()
  127. - handle_request() # if you do not use serve_forever()
  128. - fileno() -> int # for selector
  129. Methods that may be overridden:
  130. - server_bind()
  131. - server_activate()
  132. - get_request() -> request, client_address
  133. - handle_timeout()
  134. - verify_request(request, client_address)
  135. - server_close()
  136. - process_request(request, client_address)
  137. - shutdown_request(request)
  138. - close_request(request)
  139. - service_actions()
  140. - handle_error()
  141. Methods for derived classes:
  142. - finish_request(request, client_address)
  143. Class variables that may be overridden by derived classes or
  144. instances:
  145. - timeout
  146. - address_family
  147. - socket_type
  148. - allow_reuse_address
  149. Instance variables:
  150. - RequestHandlerClass
  151. - socket
  152. """
  153. timeout = None
  154. def __init__(self, server_address, RequestHandlerClass):
  155. """Constructor. May be extended, do not override."""
  156. self.server_address = server_address
  157. self.RequestHandlerClass = RequestHandlerClass
  158. self.__is_shut_down = threading.Event()
  159. self.__shutdown_request = False
  160. def server_activate(self):
  161. """Called by constructor to activate the server.
  162. May be overridden.
  163. """
  164. pass
  165. def serve_forever(self, poll_interval=0.5):
  166. """Handle one request at a time until shutdown.
  167. Polls for shutdown every poll_interval seconds. Ignores
  168. self.timeout. If you need to do periodic tasks, do them in
  169. another thread.
  170. """
  171. self.__is_shut_down.clear()
  172. try:
  173. # XXX: Consider using another file descriptor or connecting to the
  174. # socket to wake this up instead of polling. Polling reduces our
  175. # responsiveness to a shutdown request and wastes cpu at all other
  176. # times.
  177. with _ServerSelector() as selector:
  178. selector.register(self, selectors.EVENT_READ)
  179. while not self.__shutdown_request:
  180. ready = selector.select(poll_interval)
  181. if ready:
  182. self._handle_request_noblock()
  183. self.service_actions()
  184. finally:
  185. self.__shutdown_request = False
  186. self.__is_shut_down.set()
  187. def shutdown(self):
  188. """Stops the serve_forever loop.
  189. Blocks until the loop has finished. This must be called while
  190. serve_forever() is running in another thread, or it will
  191. deadlock.
  192. """
  193. self.__shutdown_request = True
  194. self.__is_shut_down.wait()
  195. def service_actions(self):
  196. """Called by the serve_forever() loop.
  197. May be overridden by a subclass / Mixin to implement any code that
  198. needs to be run during the loop.
  199. """
  200. pass
  201. # The distinction between handling, getting, processing and finishing a
  202. # request is fairly arbitrary. Remember:
  203. #
  204. # - handle_request() is the top-level call. It calls selector.select(),
  205. # get_request(), verify_request() and process_request()
  206. # - get_request() is different for stream or datagram sockets
  207. # - process_request() is the place that may fork a new process or create a
  208. # new thread to finish the request
  209. # - finish_request() instantiates the request handler class; this
  210. # constructor will handle the request all by itself
  211. def handle_request(self):
  212. """Handle one request, possibly blocking.
  213. Respects self.timeout.
  214. """
  215. # Support people who used socket.settimeout() to escape
  216. # handle_request before self.timeout was available.
  217. timeout = self.socket.gettimeout()
  218. if timeout is None:
  219. timeout = self.timeout
  220. elif self.timeout is not None:
  221. timeout = min(timeout, self.timeout)
  222. if timeout is not None:
  223. deadline = time() + timeout
  224. # Wait until a request arrives or the timeout expires - the loop is
  225. # necessary to accommodate early wakeups due to EINTR.
  226. with _ServerSelector() as selector:
  227. selector.register(self, selectors.EVENT_READ)
  228. while True:
  229. ready = selector.select(timeout)
  230. if ready:
  231. return self._handle_request_noblock()
  232. else:
  233. if timeout is not None:
  234. timeout = deadline - time()
  235. if timeout < 0:
  236. return self.handle_timeout()
  237. def _handle_request_noblock(self):
  238. """Handle one request, without blocking.
  239. I assume that selector.select() has returned that the socket is
  240. readable before this function was called, so there should be no risk of
  241. blocking in get_request().
  242. """
  243. try:
  244. request, client_address = self.get_request()
  245. except OSError:
  246. return
  247. if self.verify_request(request, client_address):
  248. try:
  249. self.process_request(request, client_address)
  250. except:
  251. self.handle_error(request, client_address)
  252. self.shutdown_request(request)
  253. else:
  254. self.shutdown_request(request)
  255. def handle_timeout(self):
  256. """Called if no new request arrives within self.timeout.
  257. Overridden by ForkingMixIn.
  258. """
  259. pass
  260. def verify_request(self, request, client_address):
  261. """Verify the request. May be overridden.
  262. Return True if we should proceed with this request.
  263. """
  264. return True
  265. def process_request(self, request, client_address):
  266. """Call finish_request.
  267. Overridden by ForkingMixIn and ThreadingMixIn.
  268. """
  269. self.finish_request(request, client_address)
  270. self.shutdown_request(request)
  271. def server_close(self):
  272. """Called to clean-up the server.
  273. May be overridden.
  274. """
  275. pass
  276. def finish_request(self, request, client_address):
  277. """Finish one request by instantiating RequestHandlerClass."""
  278. self.RequestHandlerClass(request, client_address, self)
  279. def shutdown_request(self, request):
  280. """Called to shutdown and close an individual request."""
  281. self.close_request(request)
  282. def close_request(self, request):
  283. """Called to clean up an individual request."""
  284. pass
  285. def handle_error(self, request, client_address):
  286. """Handle an error gracefully. May be overridden.
  287. The default is to print a traceback and continue.
  288. """
  289. print('-'*40)
  290. print('Exception happened during processing of request from', end=' ')
  291. print(client_address)
  292. import traceback
  293. traceback.print_exc() # XXX But this goes to stderr!
  294. print('-'*40)
  295. class TCPServer(BaseServer):
  296. """Base class for various socket-based server classes.
  297. Defaults to synchronous IP stream (i.e., TCP).
  298. Methods for the caller:
  299. - __init__(server_address, RequestHandlerClass, bind_and_activate=True)
  300. - serve_forever(poll_interval=0.5)
  301. - shutdown()
  302. - handle_request() # if you don't use serve_forever()
  303. - fileno() -> int # for selector
  304. Methods that may be overridden:
  305. - server_bind()
  306. - server_activate()
  307. - get_request() -> request, client_address
  308. - handle_timeout()
  309. - verify_request(request, client_address)
  310. - process_request(request, client_address)
  311. - shutdown_request(request)
  312. - close_request(request)
  313. - handle_error()
  314. Methods for derived classes:
  315. - finish_request(request, client_address)
  316. Class variables that may be overridden by derived classes or
  317. instances:
  318. - timeout
  319. - address_family
  320. - socket_type
  321. - request_queue_size (only for stream sockets)
  322. - allow_reuse_address
  323. Instance variables:
  324. - server_address
  325. - RequestHandlerClass
  326. - socket
  327. """
  328. address_family = socket.AF_INET
  329. socket_type = socket.SOCK_STREAM
  330. request_queue_size = 5
  331. allow_reuse_address = False
  332. def __init__(self, server_address, RequestHandlerClass, bind_and_activate=True):
  333. """Constructor. May be extended, do not override."""
  334. BaseServer.__init__(self, server_address, RequestHandlerClass)
  335. self.socket = socket.socket(self.address_family,
  336. self.socket_type)
  337. if bind_and_activate:
  338. try:
  339. self.server_bind()
  340. self.server_activate()
  341. except:
  342. self.server_close()
  343. raise
  344. def server_bind(self):
  345. """Called by constructor to bind the socket.
  346. May be overridden.
  347. """
  348. if self.allow_reuse_address:
  349. self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
  350. self.socket.bind(self.server_address)
  351. self.server_address = self.socket.getsockname()
  352. def server_activate(self):
  353. """Called by constructor to activate the server.
  354. May be overridden.
  355. """
  356. self.socket.listen(self.request_queue_size)
  357. def server_close(self):
  358. """Called to clean-up the server.
  359. May be overridden.
  360. """
  361. self.socket.close()
  362. def fileno(self):
  363. """Return socket file number.
  364. Interface required by selector.
  365. """
  366. return self.socket.fileno()
  367. def get_request(self):
  368. """Get the request and client address from the socket.
  369. May be overridden.
  370. """
  371. return self.socket.accept()
  372. def shutdown_request(self, request):
  373. """Called to shutdown and close an individual request."""
  374. try:
  375. #explicitly shutdown. socket.close() merely releases
  376. #the socket and waits for GC to perform the actual close.
  377. request.shutdown(socket.SHUT_WR)
  378. except OSError:
  379. pass #some platforms may raise ENOTCONN here
  380. self.close_request(request)
  381. def close_request(self, request):
  382. """Called to clean up an individual request."""
  383. request.close()
  384. class UDPServer(TCPServer):
  385. """UDP server class."""
  386. allow_reuse_address = False
  387. socket_type = socket.SOCK_DGRAM
  388. max_packet_size = 8192
  389. def get_request(self):
  390. data, client_addr = self.socket.recvfrom(self.max_packet_size)
  391. return (data, self.socket), client_addr
  392. def server_activate(self):
  393. # No need to call listen() for UDP.
  394. pass
  395. def shutdown_request(self, request):
  396. # No need to shutdown anything.
  397. self.close_request(request)
  398. def close_request(self, request):
  399. # No need to close anything.
  400. pass
  401. class ForkingMixIn:
  402. """Mix-in class to handle each request in a new process."""
  403. timeout = 300
  404. active_children = None
  405. max_children = 40
  406. def collect_children(self):
  407. """Internal routine to wait for children that have exited."""
  408. if self.active_children is None:
  409. return
  410. # If we're above the max number of children, wait and reap them until
  411. # we go back below threshold. Note that we use waitpid(-1) below to be
  412. # able to collect children in size(<defunct children>) syscalls instead
  413. # of size(<children>): the downside is that this might reap children
  414. # which we didn't spawn, which is why we only resort to this when we're
  415. # above max_children.
  416. while len(self.active_children) >= self.max_children:
  417. try:
  418. pid, _ = os.waitpid(-1, 0)
  419. self.active_children.discard(pid)
  420. except ChildProcessError:
  421. # we don't have any children, we're done
  422. self.active_children.clear()
  423. except OSError:
  424. break
  425. # Now reap all defunct children.
  426. for pid in self.active_children.copy():
  427. try:
  428. pid, _ = os.waitpid(pid, os.WNOHANG)
  429. # if the child hasn't exited yet, pid will be 0 and ignored by
  430. # discard() below
  431. self.active_children.discard(pid)
  432. except ChildProcessError:
  433. # someone else reaped it
  434. self.active_children.discard(pid)
  435. except OSError:
  436. pass
  437. def handle_timeout(self):
  438. """Wait for zombies after self.timeout seconds of inactivity.
  439. May be extended, do not override.
  440. """
  441. self.collect_children()
  442. def service_actions(self):
  443. """Collect the zombie child processes regularly in the ForkingMixIn.
  444. service_actions is called in the BaseServer's serve_forver loop.
  445. """
  446. self.collect_children()
  447. def process_request(self, request, client_address):
  448. """Fork a new subprocess to process the request."""
  449. pid = os.fork()
  450. if pid:
  451. # Parent process
  452. if self.active_children is None:
  453. self.active_children = set()
  454. self.active_children.add(pid)
  455. self.close_request(request)
  456. return
  457. else:
  458. # Child process.
  459. # This must never return, hence os._exit()!
  460. try:
  461. self.finish_request(request, client_address)
  462. self.shutdown_request(request)
  463. os._exit(0)
  464. except:
  465. try:
  466. self.handle_error(request, client_address)
  467. self.shutdown_request(request)
  468. finally:
  469. os._exit(1)
  470. class ThreadingMixIn:
  471. """Mix-in class to handle each request in a new thread."""
  472. # Decides how threads will act upon termination of the
  473. # main process
  474. daemon_threads = False
  475. def process_request_thread(self, request, client_address):
  476. """Same as in BaseServer but as a thread.
  477. In addition, exception handling is done here.
  478. """
  479. try:
  480. self.finish_request(request, client_address)
  481. self.shutdown_request(request)
  482. except:
  483. self.handle_error(request, client_address)
  484. self.shutdown_request(request)
  485. def process_request(self, request, client_address):
  486. """Start a new thread to process the request."""
  487. t = threading.Thread(target = self.process_request_thread,
  488. args = (request, client_address))
  489. t.daemon = self.daemon_threads
  490. t.start()
  491. class ForkingUDPServer(ForkingMixIn, UDPServer): pass
  492. class ForkingTCPServer(ForkingMixIn, TCPServer): pass
  493. class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass
  494. class ThreadingTCPServer(ThreadingMixIn, TCPServer): pass
  495. if hasattr(socket, 'AF_UNIX'):
  496. class UnixStreamServer(TCPServer):
  497. address_family = socket.AF_UNIX
  498. class UnixDatagramServer(UDPServer):
  499. address_family = socket.AF_UNIX
  500. class ThreadingUnixStreamServer(ThreadingMixIn, UnixStreamServer): pass
  501. class ThreadingUnixDatagramServer(ThreadingMixIn, UnixDatagramServer): pass
  502. class BaseRequestHandler:
  503. """Base class for request handler classes.
  504. This class is instantiated for each request to be handled. The
  505. constructor sets the instance variables request, client_address
  506. and server, and then calls the handle() method. To implement a
  507. specific service, all you need to do is to derive a class which
  508. defines a handle() method.
  509. The handle() method can find the request as self.request, the
  510. client address as self.client_address, and the server (in case it
  511. needs access to per-server information) as self.server. Since a
  512. separate instance is created for each request, the handle() method
  513. can define other arbitrary instance variables.
  514. """
  515. def __init__(self, request, client_address, server):
  516. self.request = request
  517. self.client_address = client_address
  518. self.server = server
  519. self.setup()
  520. try:
  521. self.handle()
  522. finally:
  523. self.finish()
  524. def setup(self):
  525. pass
  526. def handle(self):
  527. pass
  528. def finish(self):
  529. pass
  530. # The following two classes make it possible to use the same service
  531. # class for stream or datagram servers.
  532. # Each class sets up these instance variables:
  533. # - rfile: a file object from which receives the request is read
  534. # - wfile: a file object to which the reply is written
  535. # When the handle() method returns, wfile is flushed properly
  536. class StreamRequestHandler(BaseRequestHandler):
  537. """Define self.rfile and self.wfile for stream sockets."""
  538. # Default buffer sizes for rfile, wfile.
  539. # We default rfile to buffered because otherwise it could be
  540. # really slow for large data (a getc() call per byte); we make
  541. # wfile unbuffered because (a) often after a write() we want to
  542. # read and we need to flush the line; (b) big writes to unbuffered
  543. # files are typically optimized by stdio even when big reads
  544. # aren't.
  545. rbufsize = -1
  546. wbufsize = 0
  547. # A timeout to apply to the request socket, if not None.
  548. timeout = None
  549. # Disable nagle algorithm for this socket, if True.
  550. # Use only when wbufsize != 0, to avoid small packets.
  551. disable_nagle_algorithm = False
  552. def setup(self):
  553. self.connection = self.request
  554. if self.timeout is not None:
  555. self.connection.settimeout(self.timeout)
  556. if self.disable_nagle_algorithm:
  557. self.connection.setsockopt(socket.IPPROTO_TCP,
  558. socket.TCP_NODELAY, True)
  559. self.rfile = self.connection.makefile('rb', self.rbufsize)
  560. self.wfile = self.connection.makefile('wb', self.wbufsize)
  561. def finish(self):
  562. if not self.wfile.closed:
  563. try:
  564. self.wfile.flush()
  565. except socket.error:
  566. # A final socket error may have occurred here, such as
  567. # the local error ECONNABORTED.
  568. pass
  569. self.wfile.close()
  570. self.rfile.close()
  571. class DatagramRequestHandler(BaseRequestHandler):
  572. """Define self.rfile and self.wfile for datagram sockets."""
  573. def setup(self):
  574. from io import BytesIO
  575. self.packet, self.socket = self.request
  576. self.rfile = BytesIO(self.packet)
  577. self.wfile = BytesIO()
  578. def finish(self):
  579. self.socket.sendto(self.wfile.getvalue(), self.client_address)