2
0

web.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. # web.py -- WSGI smart-http server
  2. # Copyright (C) 2010 Google, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; version 2
  7. # or (at your option) any later version of the License.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  17. # MA 02110-1301, USA.
  18. """HTTP server for dulwich that implements the git smart HTTP protocol."""
  19. from cStringIO import StringIO
  20. import os
  21. import re
  22. import sys
  23. import time
  24. try:
  25. from urlparse import parse_qs
  26. except ImportError:
  27. from dulwich._compat import parse_qs
  28. from dulwich import log_utils
  29. from dulwich.protocol import (
  30. ReceivableProtocol,
  31. )
  32. from dulwich.repo import (
  33. Repo,
  34. )
  35. from dulwich.server import (
  36. DictBackend,
  37. DEFAULT_HANDLERS,
  38. generate_info_refs,
  39. generate_objects_info_packs,
  40. )
  41. logger = log_utils.getLogger(__name__)
  42. # HTTP error strings
  43. HTTP_OK = '200 OK'
  44. HTTP_NOT_FOUND = '404 Not Found'
  45. HTTP_FORBIDDEN = '403 Forbidden'
  46. HTTP_ERROR = '500 Internal Server Error'
  47. def date_time_string(timestamp=None):
  48. # From BaseHTTPRequestHandler.date_time_string in BaseHTTPServer.py in the
  49. # Python 2.6.5 standard library, following modifications:
  50. # - Made a global rather than an instance method.
  51. # - weekdayname and monthname are renamed and locals rather than class
  52. # variables.
  53. # Copyright (c) 2001-2010 Python Software Foundation; All Rights Reserved
  54. weekdays = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
  55. months = [None,
  56. 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
  57. 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
  58. if timestamp is None:
  59. timestamp = time.time()
  60. year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp)
  61. return '%s, %02d %3s %4d %02d:%02d:%02d GMD' % (
  62. weekdays[wd], day, months[month], year, hh, mm, ss)
  63. def url_prefix(mat):
  64. """Extract the URL prefix from a regex match.
  65. :param mat: A regex match object.
  66. :returns: The URL prefix, defined as the text before the match in the
  67. original string. Normalized to start with one leading slash and end with
  68. zero.
  69. """
  70. return '/' + mat.string[:mat.start()].strip('/')
  71. def get_repo(backend, mat):
  72. """Get a Repo instance for the given backend and URL regex match."""
  73. return backend.open_repository(url_prefix(mat))
  74. def send_file(req, f, content_type):
  75. """Send a file-like object to the request output.
  76. :param req: The HTTPGitRequest object to send output to.
  77. :param f: An open file-like object to send; will be closed.
  78. :param content_type: The MIME type for the file.
  79. :return: Iterator over the contents of the file, as chunks.
  80. """
  81. if f is None:
  82. yield req.not_found('File not found')
  83. return
  84. try:
  85. req.respond(HTTP_OK, content_type)
  86. while True:
  87. data = f.read(10240)
  88. if not data:
  89. break
  90. yield data
  91. f.close()
  92. except IOError:
  93. f.close()
  94. yield req.error('Error reading file')
  95. except:
  96. f.close()
  97. raise
  98. def _url_to_path(url):
  99. return url.replace('/', os.path.sep)
  100. def get_text_file(req, backend, mat):
  101. req.nocache()
  102. path = _url_to_path(mat.group())
  103. logger.info('Sending plain text file %s', path)
  104. return send_file(req, get_repo(backend, mat).get_named_file(path),
  105. 'text/plain')
  106. def get_loose_object(req, backend, mat):
  107. sha = mat.group(1) + mat.group(2)
  108. logger.info('Sending loose object %s', sha)
  109. object_store = get_repo(backend, mat).object_store
  110. if not object_store.contains_loose(sha):
  111. yield req.not_found('Object not found')
  112. return
  113. try:
  114. data = object_store[sha].as_legacy_object()
  115. except IOError:
  116. yield req.error('Error reading object')
  117. return
  118. req.cache_forever()
  119. req.respond(HTTP_OK, 'application/x-git-loose-object')
  120. yield data
  121. def get_pack_file(req, backend, mat):
  122. req.cache_forever()
  123. path = _url_to_path(mat.group())
  124. logger.info('Sending pack file %s', path)
  125. return send_file(req, get_repo(backend, mat).get_named_file(path),
  126. 'application/x-git-packed-objects')
  127. def get_idx_file(req, backend, mat):
  128. req.cache_forever()
  129. path = _url_to_path(mat.group())
  130. logger.info('Sending pack file %s', path)
  131. return send_file(req, get_repo(backend, mat).get_named_file(path),
  132. 'application/x-git-packed-objects-toc')
  133. def get_info_refs(req, backend, mat):
  134. params = parse_qs(req.environ['QUERY_STRING'])
  135. service = params.get('service', [None])[0]
  136. if service and not req.dumb:
  137. handler_cls = req.handlers.get(service, None)
  138. if handler_cls is None:
  139. yield req.forbidden('Unsupported service %s' % service)
  140. return
  141. req.nocache()
  142. write = req.respond(HTTP_OK, 'application/x-%s-advertisement' % service)
  143. proto = ReceivableProtocol(StringIO().read, write)
  144. handler = handler_cls(backend, [url_prefix(mat)], proto,
  145. http_req=req, advertise_refs=True)
  146. handler.proto.write_pkt_line('# service=%s\n' % service)
  147. handler.proto.write_pkt_line(None)
  148. handler.handle()
  149. else:
  150. # non-smart fallback
  151. # TODO: select_getanyfile() (see http-backend.c)
  152. req.nocache()
  153. req.respond(HTTP_OK, 'text/plain')
  154. logger.info('Emulating dumb info/refs')
  155. repo = get_repo(backend, mat)
  156. for text in generate_info_refs(repo):
  157. yield text
  158. def get_info_packs(req, backend, mat):
  159. req.nocache()
  160. req.respond(HTTP_OK, 'text/plain')
  161. logger.info('Emulating dumb info/packs')
  162. return generate_objects_info_packs(get_repo(backend, mat))
  163. class _LengthLimitedFile(object):
  164. """Wrapper class to limit the length of reads from a file-like object.
  165. This is used to ensure EOF is read from the wsgi.input object once
  166. Content-Length bytes are read. This behavior is required by the WSGI spec
  167. but not implemented in wsgiref as of 2.5.
  168. """
  169. def __init__(self, input, max_bytes):
  170. self._input = input
  171. self._bytes_avail = max_bytes
  172. def read(self, size=-1):
  173. if self._bytes_avail <= 0:
  174. return ''
  175. if size == -1 or size > self._bytes_avail:
  176. size = self._bytes_avail
  177. self._bytes_avail -= size
  178. return self._input.read(size)
  179. # TODO: support more methods as necessary
  180. def handle_service_request(req, backend, mat):
  181. service = mat.group().lstrip('/')
  182. logger.info('Handling service request for %s', service)
  183. handler_cls = req.handlers.get(service, None)
  184. if handler_cls is None:
  185. yield req.forbidden('Unsupported service %s' % service)
  186. return
  187. req.nocache()
  188. write = req.respond(HTTP_OK, 'application/x-%s-result' % service)
  189. input = req.environ['wsgi.input']
  190. # This is not necessary if this app is run from a conforming WSGI server.
  191. # Unfortunately, there's no way to tell that at this point.
  192. # TODO: git may used HTTP/1.1 chunked encoding instead of specifying
  193. # content-length
  194. content_length = req.environ.get('CONTENT_LENGTH', '')
  195. if content_length:
  196. input = _LengthLimitedFile(input, int(content_length))
  197. proto = ReceivableProtocol(input.read, write)
  198. handler = handler_cls(backend, [url_prefix(mat)], proto, http_req=req)
  199. handler.handle()
  200. class HTTPGitRequest(object):
  201. """Class encapsulating the state of a single git HTTP request.
  202. :ivar environ: the WSGI environment for the request.
  203. """
  204. def __init__(self, environ, start_response, dumb=False, handlers=None):
  205. self.environ = environ
  206. self.dumb = dumb
  207. self.handlers = handlers
  208. self._start_response = start_response
  209. self._cache_headers = []
  210. self._headers = []
  211. def add_header(self, name, value):
  212. """Add a header to the response."""
  213. self._headers.append((name, value))
  214. def respond(self, status=HTTP_OK, content_type=None, headers=None):
  215. """Begin a response with the given status and other headers."""
  216. if headers:
  217. self._headers.extend(headers)
  218. if content_type:
  219. self._headers.append(('Content-Type', content_type))
  220. self._headers.extend(self._cache_headers)
  221. return self._start_response(status, self._headers)
  222. def not_found(self, message):
  223. """Begin a HTTP 404 response and return the text of a message."""
  224. self._cache_headers = []
  225. logger.info('Not found: %s', message)
  226. self.respond(HTTP_NOT_FOUND, 'text/plain')
  227. return message
  228. def forbidden(self, message):
  229. """Begin a HTTP 403 response and return the text of a message."""
  230. self._cache_headers = []
  231. logger.info('Forbidden: %s', message)
  232. self.respond(HTTP_FORBIDDEN, 'text/plain')
  233. return message
  234. def error(self, message):
  235. """Begin a HTTP 500 response and return the text of a message."""
  236. self._cache_headers = []
  237. logger.error('Error: %s', message)
  238. self.respond(HTTP_ERROR, 'text/plain')
  239. return message
  240. def nocache(self):
  241. """Set the response to never be cached by the client."""
  242. self._cache_headers = [
  243. ('Expires', 'Fri, 01 Jan 1980 00:00:00 GMT'),
  244. ('Pragma', 'no-cache'),
  245. ('Cache-Control', 'no-cache, max-age=0, must-revalidate'),
  246. ]
  247. def cache_forever(self):
  248. """Set the response to be cached forever by the client."""
  249. now = time.time()
  250. self._cache_headers = [
  251. ('Date', date_time_string(now)),
  252. ('Expires', date_time_string(now + 31536000)),
  253. ('Cache-Control', 'public, max-age=31536000'),
  254. ]
  255. class HTTPGitApplication(object):
  256. """Class encapsulating the state of a git WSGI application.
  257. :ivar backend: the Backend object backing this application
  258. """
  259. services = {
  260. ('GET', re.compile('/HEAD$')): get_text_file,
  261. ('GET', re.compile('/info/refs$')): get_info_refs,
  262. ('GET', re.compile('/objects/info/alternates$')): get_text_file,
  263. ('GET', re.compile('/objects/info/http-alternates$')): get_text_file,
  264. ('GET', re.compile('/objects/info/packs$')): get_info_packs,
  265. ('GET', re.compile('/objects/([0-9a-f]{2})/([0-9a-f]{38})$')): get_loose_object,
  266. ('GET', re.compile('/objects/pack/pack-([0-9a-f]{40})\\.pack$')): get_pack_file,
  267. ('GET', re.compile('/objects/pack/pack-([0-9a-f]{40})\\.idx$')): get_idx_file,
  268. ('POST', re.compile('/git-upload-pack$')): handle_service_request,
  269. ('POST', re.compile('/git-receive-pack$')): handle_service_request,
  270. }
  271. def __init__(self, backend, dumb=False, handlers=None):
  272. self.backend = backend
  273. self.dumb = dumb
  274. self.handlers = dict(DEFAULT_HANDLERS)
  275. if handlers is not None:
  276. self.handlers.update(handlers)
  277. def __call__(self, environ, start_response):
  278. path = environ['PATH_INFO']
  279. method = environ['REQUEST_METHOD']
  280. req = HTTPGitRequest(environ, start_response, dumb=self.dumb,
  281. handlers=self.handlers)
  282. # environ['QUERY_STRING'] has qs args
  283. handler = None
  284. for smethod, spath in self.services.iterkeys():
  285. if smethod != method:
  286. continue
  287. mat = spath.search(path)
  288. if mat:
  289. handler = self.services[smethod, spath]
  290. break
  291. if handler is None:
  292. return req.not_found('Sorry, that method is not supported')
  293. return handler(req, self.backend, mat)
  294. # The reference server implementation is based on wsgiref, which is not
  295. # distributed with python 2.4. If wsgiref is not present, users will not be able
  296. # to use the HTTP server without a little extra work.
  297. try:
  298. from wsgiref.simple_server import (
  299. WSGIRequestHandler,
  300. make_server,
  301. )
  302. class HTTPGitRequestHandler(WSGIRequestHandler):
  303. """Handler that uses dulwich's logger for logging exceptions."""
  304. def log_exception(self, exc_info):
  305. logger.exception('Exception happened during processing of request',
  306. exc_info=exc_info)
  307. def log_message(self, format, *args):
  308. logger.info(format, *args)
  309. def log_error(self, *args):
  310. logger.error(*args)
  311. def main(argv=sys.argv):
  312. """Entry point for starting an HTTP git server."""
  313. if len(argv) > 1:
  314. gitdir = argv[1]
  315. else:
  316. gitdir = os.getcwd()
  317. # TODO: allow serving on other addresses/ports via command-line flag
  318. listen_addr=''
  319. port = 8000
  320. log_utils.default_logging_config()
  321. backend = DictBackend({'/': Repo(gitdir)})
  322. app = HTTPGitApplication(backend)
  323. server = make_server(listen_addr, port, app,
  324. handler_class=HTTPGitRequestHandler)
  325. logger.info('Listening for HTTP connections on %s:%d', listen_addr,
  326. port)
  327. server.serve_forever()
  328. except ImportError:
  329. # No wsgiref found; don't provide the reference functionality, but leave the
  330. # rest of the WSGI-based implementation.
  331. def main(argv=sys.argv):
  332. """Stub entry point for failing to start a server without wsgiref."""
  333. sys.stderr.write('Sorry, the wsgiref module is required for dul-web.\n')
  334. sys.exit(1)