Show More
@@ -1,151 +1,154 b'' | |||
|
1 | 1 | # configitems.py - centralized declaration of configuration option |
|
2 | 2 | # |
|
3 | 3 | # Copyright 2017 Pierre-Yves David <pierre-yves.david@octobus.net> |
|
4 | 4 | # |
|
5 | 5 | # This software may be used and distributed according to the terms of the |
|
6 | 6 | # GNU General Public License version 2 or any later version. |
|
7 | 7 | |
|
8 | 8 | from __future__ import absolute_import |
|
9 | 9 | |
|
10 | 10 | import functools |
|
11 | 11 | |
|
12 | 12 | from . import ( |
|
13 | 13 | error, |
|
14 | 14 | ) |
|
15 | 15 | |
|
16 | 16 | def loadconfigtable(ui, extname, configtable): |
|
17 | 17 | """update config item known to the ui with the extension ones""" |
|
18 | 18 | for section, items in configtable.items(): |
|
19 | 19 | knownitems = ui._knownconfig.setdefault(section, {}) |
|
20 | 20 | knownkeys = set(knownitems) |
|
21 | 21 | newkeys = set(items) |
|
22 | 22 | for key in sorted(knownkeys & newkeys): |
|
23 | 23 | msg = "extension '%s' overwrite config item '%s.%s'" |
|
24 | 24 | msg %= (extname, section, key) |
|
25 | 25 | ui.develwarn(msg, config='warn-config') |
|
26 | 26 | |
|
27 | 27 | knownitems.update(items) |
|
28 | 28 | |
|
29 | 29 | class configitem(object): |
|
30 | 30 | """represent a known config item |
|
31 | 31 | |
|
32 | 32 | :section: the official config section where to find this item, |
|
33 | 33 | :name: the official name within the section, |
|
34 | 34 | :default: default value for this item, |
|
35 | 35 | """ |
|
36 | 36 | |
|
37 | 37 | def __init__(self, section, name, default=None): |
|
38 | 38 | self.section = section |
|
39 | 39 | self.name = name |
|
40 | 40 | self.default = default |
|
41 | 41 | |
|
42 | 42 | coreitems = {} |
|
43 | 43 | |
|
44 | 44 | def _register(configtable, *args, **kwargs): |
|
45 | 45 | item = configitem(*args, **kwargs) |
|
46 | 46 | section = configtable.setdefault(item.section, {}) |
|
47 | 47 | if item.name in section: |
|
48 | 48 | msg = "duplicated config item registration for '%s.%s'" |
|
49 | 49 | raise error.ProgrammingError(msg % (item.section, item.name)) |
|
50 | 50 | section[item.name] = item |
|
51 | 51 | |
|
52 | 52 | # Registering actual config items |
|
53 | 53 | |
|
54 | 54 | def getitemregister(configtable): |
|
55 | 55 | return functools.partial(_register, configtable) |
|
56 | 56 | |
|
57 | 57 | coreconfigitem = getitemregister(coreitems) |
|
58 | 58 | |
|
59 | 59 | coreconfigitem('auth', 'cookiefile', |
|
60 | 60 | default=None, |
|
61 | 61 | ) |
|
62 | 62 | # bookmarks.pushing: internal hack for discovery |
|
63 | 63 | coreconfigitem('bookmarks', 'pushing', |
|
64 | 64 | default=list, |
|
65 | 65 | ) |
|
66 | 66 | # bundle.mainreporoot: internal hack for bundlerepo |
|
67 | 67 | coreconfigitem('bundle', 'mainreporoot', |
|
68 | 68 | default='', |
|
69 | 69 | ) |
|
70 | 70 | # bundle.reorder: experimental config |
|
71 | 71 | coreconfigitem('bundle', 'reorder', |
|
72 | 72 | default='auto', |
|
73 | 73 | ) |
|
74 | 74 | coreconfigitem('color', 'mode', |
|
75 | 75 | default='auto', |
|
76 | 76 | ) |
|
77 | 77 | coreconfigitem('devel', 'all-warnings', |
|
78 | 78 | default=False, |
|
79 | 79 | ) |
|
80 | 80 | coreconfigitem('devel', 'bundle2.debug', |
|
81 | 81 | default=False, |
|
82 | 82 | ) |
|
83 | 83 | coreconfigitem('devel', 'check-locks', |
|
84 | 84 | default=False, |
|
85 | 85 | ) |
|
86 | 86 | coreconfigitem('devel', 'check-relroot', |
|
87 | 87 | default=False, |
|
88 | 88 | ) |
|
89 | 89 | coreconfigitem('devel', 'disableloaddefaultcerts', |
|
90 | 90 | default=False, |
|
91 | 91 | ) |
|
92 | 92 | coreconfigitem('devel', 'legacy.exchange', |
|
93 | 93 | default=list, |
|
94 | 94 | ) |
|
95 | 95 | coreconfigitem('devel', 'servercafile', |
|
96 | 96 | default='', |
|
97 | 97 | ) |
|
98 | 98 | coreconfigitem('devel', 'serverexactprotocol', |
|
99 | 99 | default='', |
|
100 | 100 | ) |
|
101 | 101 | coreconfigitem('devel', 'serverrequirecert', |
|
102 | 102 | default=False, |
|
103 | 103 | ) |
|
104 | 104 | coreconfigitem('devel', 'strip-obsmarkers', |
|
105 | 105 | default=True, |
|
106 | 106 | ) |
|
107 | 107 | coreconfigitem('hostsecurity', 'ciphers', |
|
108 | 108 | default=None, |
|
109 | 109 | ) |
|
110 | 110 | coreconfigitem('hostsecurity', 'disabletls10warning', |
|
111 | 111 | default=False, |
|
112 | 112 | ) |
|
113 | 113 | coreconfigitem('patch', 'fuzz', |
|
114 | 114 | default=2, |
|
115 | 115 | ) |
|
116 | 116 | coreconfigitem('server', 'bundle1', |
|
117 | 117 | default=True, |
|
118 | 118 | ) |
|
119 | 119 | coreconfigitem('server', 'bundle1gd', |
|
120 | 120 | default=None, |
|
121 | 121 | ) |
|
122 | 122 | coreconfigitem('server', 'compressionengines', |
|
123 | 123 | default=list, |
|
124 | 124 | ) |
|
125 | 125 | coreconfigitem('server', 'concurrent-push-mode', |
|
126 | 126 | default='strict', |
|
127 | 127 | ) |
|
128 | 128 | coreconfigitem('server', 'disablefullbundle', |
|
129 | 129 | default=False, |
|
130 | 130 | ) |
|
131 | 131 | coreconfigitem('server', 'maxhttpheaderlen', |
|
132 | 132 | default=1024, |
|
133 | 133 | ) |
|
134 | 134 | coreconfigitem('server', 'preferuncompressed', |
|
135 | 135 | default=False, |
|
136 | 136 | ) |
|
137 | 137 | coreconfigitem('server', 'uncompressedallowsecret', |
|
138 | 138 | default=False, |
|
139 | 139 | ) |
|
140 | 140 | coreconfigitem('server', 'validate', |
|
141 | 141 | default=False, |
|
142 | 142 | ) |
|
143 | coreconfigitem('server', 'zliblevel', | |
|
144 | default=-1, | |
|
145 | ) | |
|
143 | 146 | coreconfigitem('ui', 'clonebundleprefers', |
|
144 | 147 | default=list, |
|
145 | 148 | ) |
|
146 | 149 | coreconfigitem('ui', 'interactive', |
|
147 | 150 | default=None, |
|
148 | 151 | ) |
|
149 | 152 | coreconfigitem('ui', 'quiet', |
|
150 | 153 | default=False, |
|
151 | 154 | ) |
@@ -1,198 +1,198 b'' | |||
|
1 | 1 | # |
|
2 | 2 | # Copyright 21 May 2005 - (c) 2005 Jake Edge <jake@edge2.net> |
|
3 | 3 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> |
|
4 | 4 | # |
|
5 | 5 | # This software may be used and distributed according to the terms of the |
|
6 | 6 | # GNU General Public License version 2 or any later version. |
|
7 | 7 | |
|
8 | 8 | from __future__ import absolute_import |
|
9 | 9 | |
|
10 | 10 | import cgi |
|
11 | 11 | import struct |
|
12 | 12 | |
|
13 | 13 | from .common import ( |
|
14 | 14 | HTTP_OK, |
|
15 | 15 | ) |
|
16 | 16 | |
|
17 | 17 | from .. import ( |
|
18 | 18 | util, |
|
19 | 19 | wireproto, |
|
20 | 20 | ) |
|
21 | 21 | stringio = util.stringio |
|
22 | 22 | |
|
23 | 23 | urlerr = util.urlerr |
|
24 | 24 | urlreq = util.urlreq |
|
25 | 25 | |
|
26 | 26 | HGTYPE = 'application/mercurial-0.1' |
|
27 | 27 | HGTYPE2 = 'application/mercurial-0.2' |
|
28 | 28 | HGERRTYPE = 'application/hg-error' |
|
29 | 29 | |
|
30 | 30 | def decodevaluefromheaders(req, headerprefix): |
|
31 | 31 | """Decode a long value from multiple HTTP request headers.""" |
|
32 | 32 | chunks = [] |
|
33 | 33 | i = 1 |
|
34 | 34 | while True: |
|
35 | 35 | v = req.env.get('HTTP_%s_%d' % ( |
|
36 | 36 | headerprefix.upper().replace('-', '_'), i)) |
|
37 | 37 | if v is None: |
|
38 | 38 | break |
|
39 | 39 | chunks.append(v) |
|
40 | 40 | i += 1 |
|
41 | 41 | |
|
42 | 42 | return ''.join(chunks) |
|
43 | 43 | |
|
44 | 44 | class webproto(wireproto.abstractserverproto): |
|
45 | 45 | def __init__(self, req, ui): |
|
46 | 46 | self.req = req |
|
47 | 47 | self.response = '' |
|
48 | 48 | self.ui = ui |
|
49 | 49 | self.name = 'http' |
|
50 | 50 | |
|
51 | 51 | def getargs(self, args): |
|
52 | 52 | knownargs = self._args() |
|
53 | 53 | data = {} |
|
54 | 54 | keys = args.split() |
|
55 | 55 | for k in keys: |
|
56 | 56 | if k == '*': |
|
57 | 57 | star = {} |
|
58 | 58 | for key in knownargs.keys(): |
|
59 | 59 | if key != 'cmd' and key not in keys: |
|
60 | 60 | star[key] = knownargs[key][0] |
|
61 | 61 | data['*'] = star |
|
62 | 62 | else: |
|
63 | 63 | data[k] = knownargs[k][0] |
|
64 | 64 | return [data[k] for k in keys] |
|
65 | 65 | def _args(self): |
|
66 | 66 | args = self.req.form.copy() |
|
67 | 67 | postlen = int(self.req.env.get('HTTP_X_HGARGS_POST', 0)) |
|
68 | 68 | if postlen: |
|
69 | 69 | args.update(cgi.parse_qs( |
|
70 | 70 | self.req.read(postlen), keep_blank_values=True)) |
|
71 | 71 | return args |
|
72 | 72 | |
|
73 | 73 | argvalue = decodevaluefromheaders(self.req, 'X-HgArg') |
|
74 | 74 | args.update(cgi.parse_qs(argvalue, keep_blank_values=True)) |
|
75 | 75 | return args |
|
76 | 76 | def getfile(self, fp): |
|
77 | 77 | length = int(self.req.env['CONTENT_LENGTH']) |
|
78 | 78 | for s in util.filechunkiter(self.req, limit=length): |
|
79 | 79 | fp.write(s) |
|
80 | 80 | def redirect(self): |
|
81 | 81 | self.oldio = self.ui.fout, self.ui.ferr |
|
82 | 82 | self.ui.ferr = self.ui.fout = stringio() |
|
83 | 83 | def restore(self): |
|
84 | 84 | val = self.ui.fout.getvalue() |
|
85 | 85 | self.ui.ferr, self.ui.fout = self.oldio |
|
86 | 86 | return val |
|
87 | 87 | |
|
88 | 88 | def _client(self): |
|
89 | 89 | return 'remote:%s:%s:%s' % ( |
|
90 | 90 | self.req.env.get('wsgi.url_scheme') or 'http', |
|
91 | 91 | urlreq.quote(self.req.env.get('REMOTE_HOST', '')), |
|
92 | 92 | urlreq.quote(self.req.env.get('REMOTE_USER', ''))) |
|
93 | 93 | |
|
94 | 94 | def responsetype(self, v1compressible=False): |
|
95 | 95 | """Determine the appropriate response type and compression settings. |
|
96 | 96 | |
|
97 | 97 | The ``v1compressible`` argument states whether the response with |
|
98 | 98 | application/mercurial-0.1 media types should be zlib compressed. |
|
99 | 99 | |
|
100 | 100 | Returns a tuple of (mediatype, compengine, engineopts). |
|
101 | 101 | """ |
|
102 | 102 | # For now, if it isn't compressible in the old world, it's never |
|
103 | 103 | # compressible. We can change this to send uncompressed 0.2 payloads |
|
104 | 104 | # later. |
|
105 | 105 | if not v1compressible: |
|
106 | 106 | return HGTYPE, None, None |
|
107 | 107 | |
|
108 | 108 | # Determine the response media type and compression engine based |
|
109 | 109 | # on the request parameters. |
|
110 | 110 | protocaps = decodevaluefromheaders(self.req, 'X-HgProto').split(' ') |
|
111 | 111 | |
|
112 | 112 | if '0.2' in protocaps: |
|
113 | 113 | # Default as defined by wire protocol spec. |
|
114 | 114 | compformats = ['zlib', 'none'] |
|
115 | 115 | for cap in protocaps: |
|
116 | 116 | if cap.startswith('comp='): |
|
117 | 117 | compformats = cap[5:].split(',') |
|
118 | 118 | break |
|
119 | 119 | |
|
120 | 120 | # Now find an agreed upon compression format. |
|
121 | 121 | for engine in wireproto.supportedcompengines(self.ui, self, |
|
122 | 122 | util.SERVERROLE): |
|
123 | 123 | if engine.wireprotosupport().name in compformats: |
|
124 | 124 | opts = {} |
|
125 | 125 | level = self.ui.configint('server', |
|
126 | 126 | '%slevel' % engine.name()) |
|
127 | 127 | if level is not None: |
|
128 | 128 | opts['level'] = level |
|
129 | 129 | |
|
130 | 130 | return HGTYPE2, engine, opts |
|
131 | 131 | |
|
132 | 132 | # No mutually supported compression format. Fall back to the |
|
133 | 133 | # legacy protocol. |
|
134 | 134 | |
|
135 | 135 | # Don't allow untrusted settings because disabling compression or |
|
136 | 136 | # setting a very high compression level could lead to flooding |
|
137 | 137 | # the server's network or CPU. |
|
138 |
opts = {'level': self.ui.configint('server', 'zliblevel' |
|
|
138 | opts = {'level': self.ui.configint('server', 'zliblevel')} | |
|
139 | 139 | return HGTYPE, util.compengines['zlib'], opts |
|
140 | 140 | |
|
141 | 141 | def iscmd(cmd): |
|
142 | 142 | return cmd in wireproto.commands |
|
143 | 143 | |
|
144 | 144 | def call(repo, req, cmd): |
|
145 | 145 | p = webproto(req, repo.ui) |
|
146 | 146 | |
|
147 | 147 | def genversion2(gen, compress, engine, engineopts): |
|
148 | 148 | # application/mercurial-0.2 always sends a payload header |
|
149 | 149 | # identifying the compression engine. |
|
150 | 150 | name = engine.wireprotosupport().name |
|
151 | 151 | assert 0 < len(name) < 256 |
|
152 | 152 | yield struct.pack('B', len(name)) |
|
153 | 153 | yield name |
|
154 | 154 | |
|
155 | 155 | if compress: |
|
156 | 156 | for chunk in engine.compressstream(gen, opts=engineopts): |
|
157 | 157 | yield chunk |
|
158 | 158 | else: |
|
159 | 159 | for chunk in gen: |
|
160 | 160 | yield chunk |
|
161 | 161 | |
|
162 | 162 | rsp = wireproto.dispatch(repo, p, cmd) |
|
163 | 163 | if isinstance(rsp, str): |
|
164 | 164 | req.respond(HTTP_OK, HGTYPE, body=rsp) |
|
165 | 165 | return [] |
|
166 | 166 | elif isinstance(rsp, wireproto.streamres): |
|
167 | 167 | if rsp.reader: |
|
168 | 168 | gen = iter(lambda: rsp.reader.read(32768), '') |
|
169 | 169 | else: |
|
170 | 170 | gen = rsp.gen |
|
171 | 171 | |
|
172 | 172 | # This code for compression should not be streamres specific. It |
|
173 | 173 | # is here because we only compress streamres at the moment. |
|
174 | 174 | mediatype, engine, engineopts = p.responsetype(rsp.v1compressible) |
|
175 | 175 | |
|
176 | 176 | if mediatype == HGTYPE and rsp.v1compressible: |
|
177 | 177 | gen = engine.compressstream(gen, engineopts) |
|
178 | 178 | elif mediatype == HGTYPE2: |
|
179 | 179 | gen = genversion2(gen, rsp.v1compressible, engine, engineopts) |
|
180 | 180 | |
|
181 | 181 | req.respond(HTTP_OK, mediatype) |
|
182 | 182 | return gen |
|
183 | 183 | elif isinstance(rsp, wireproto.pushres): |
|
184 | 184 | val = p.restore() |
|
185 | 185 | rsp = '%d\n%s' % (rsp.res, val) |
|
186 | 186 | req.respond(HTTP_OK, HGTYPE, body=rsp) |
|
187 | 187 | return [] |
|
188 | 188 | elif isinstance(rsp, wireproto.pusherr): |
|
189 | 189 | # drain the incoming bundle |
|
190 | 190 | req.drain() |
|
191 | 191 | p.restore() |
|
192 | 192 | rsp = '0\n%s\n' % rsp.res |
|
193 | 193 | req.respond(HTTP_OK, HGTYPE, body=rsp) |
|
194 | 194 | return [] |
|
195 | 195 | elif isinstance(rsp, wireproto.ooberror): |
|
196 | 196 | rsp = rsp.message |
|
197 | 197 | req.respond(HTTP_OK, HGERRTYPE, body=rsp) |
|
198 | 198 | return [] |
General Comments 0
You need to be logged in to leave comments.
Login now