Show More
@@ -1,276 +1,275 b'' | |||
|
1 | 1 | Proper https client requires the built-in ssl from Python 2.6. |
|
2 | 2 | |
|
3 | 3 | $ "$TESTDIR/hghave" ssl || exit 80 |
|
4 | 4 | |
|
5 | 5 | Certificates created with: |
|
6 | 6 | printf '.\n.\n.\n.\n.\nlocalhost\nhg@localhost\n' | \ |
|
7 | 7 | openssl req -newkey rsa:512 -keyout priv.pem -nodes -x509 -days 9000 -out pub.pem |
|
8 | 8 | Can be dumped with: |
|
9 | 9 | openssl x509 -in pub.pem -text |
|
10 | 10 | |
|
11 | 11 | $ cat << EOT > priv.pem |
|
12 | 12 | > -----BEGIN PRIVATE KEY----- |
|
13 | 13 | > MIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEApjCWeYGrIa/Vo7LH |
|
14 | 14 | > aRF8ou0tbgHKE33Use/whCnKEUm34rDaXQd4lxxX6aDWg06n9tiVStAKTgQAHJY8 |
|
15 | 15 | > j/xgSwIDAQABAkBxHC6+Qlf0VJXGlb6NL16yEVVTQxqDS6hA9zqu6TZjrr0YMfzc |
|
16 | 16 | > EGNIiZGt7HCBL0zO+cPDg/LeCZc6HQhf0KrhAiEAzlJq4hWWzvguWFIJWSoBeBUG |
|
17 | 17 | > MF1ACazQO7PYE8M0qfECIQDONHHP0SKZzz/ZwBZcAveC5K61f/v9hONFwbeYulzR |
|
18 | 18 | > +wIgc9SvbtgB/5Yzpp//4ZAEnR7oh5SClCvyB+KSx52K3nECICbhQphhoXmI10wy |
|
19 | 19 | > aMTellaq0bpNMHFDziqH9RsqAHhjAiEAgYGxfzkftt5IUUn/iFK89aaIpyrpuaAh |
|
20 | 20 | > HY8gUVkVRVs= |
|
21 | 21 | > -----END PRIVATE KEY----- |
|
22 | 22 | > EOT |
|
23 | 23 | |
|
24 | 24 | $ cat << EOT > pub.pem |
|
25 | 25 | > -----BEGIN CERTIFICATE----- |
|
26 | 26 | > MIIBqzCCAVWgAwIBAgIJANAXFFyWjGnRMA0GCSqGSIb3DQEBBQUAMDExEjAQBgNV |
|
27 | 27 | > BAMMCWxvY2FsaG9zdDEbMBkGCSqGSIb3DQEJARYMaGdAbG9jYWxob3N0MB4XDTEw |
|
28 | 28 | > MTAxNDIwMzAxNFoXDTM1MDYwNTIwMzAxNFowMTESMBAGA1UEAwwJbG9jYWxob3N0 |
|
29 | 29 | > MRswGQYJKoZIhvcNAQkBFgxoZ0Bsb2NhbGhvc3QwXDANBgkqhkiG9w0BAQEFAANL |
|
30 | 30 | > ADBIAkEApjCWeYGrIa/Vo7LHaRF8ou0tbgHKE33Use/whCnKEUm34rDaXQd4lxxX |
|
31 | 31 | > 6aDWg06n9tiVStAKTgQAHJY8j/xgSwIDAQABo1AwTjAdBgNVHQ4EFgQUE6sA+amm |
|
32 | 32 | > r24dGX0kpjxOgO45hzQwHwYDVR0jBBgwFoAUE6sA+ammr24dGX0kpjxOgO45hzQw |
|
33 | 33 | > DAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAANBAFArvQFiAZJgQczRsbYlG1xl |
|
34 | 34 | > t+truk37w5B3m3Ick1ntRcQrqs+hf0CO1q6Squ144geYaQ8CDirSR92fICELI1c= |
|
35 | 35 | > -----END CERTIFICATE----- |
|
36 | 36 | > EOT |
|
37 | 37 | $ cat priv.pem pub.pem >> server.pem |
|
38 | 38 | $ PRIV=`pwd`/server.pem |
|
39 | 39 | |
|
40 | 40 | $ cat << EOT > pub-other.pem |
|
41 | 41 | > -----BEGIN CERTIFICATE----- |
|
42 | 42 | > MIIBqzCCAVWgAwIBAgIJALwZS731c/ORMA0GCSqGSIb3DQEBBQUAMDExEjAQBgNV |
|
43 | 43 | > BAMMCWxvY2FsaG9zdDEbMBkGCSqGSIb3DQEJARYMaGdAbG9jYWxob3N0MB4XDTEw |
|
44 | 44 | > MTAxNDIwNDUxNloXDTM1MDYwNTIwNDUxNlowMTESMBAGA1UEAwwJbG9jYWxob3N0 |
|
45 | 45 | > MRswGQYJKoZIhvcNAQkBFgxoZ0Bsb2NhbGhvc3QwXDANBgkqhkiG9w0BAQEFAANL |
|
46 | 46 | > ADBIAkEAsxsapLbHrqqUKuQBxdpK4G3m2LjtyrTSdpzzzFlecxd5yhNP6AyWrufo |
|
47 | 47 | > K4VMGo2xlu9xOo88nDSUNSKPuD09MwIDAQABo1AwTjAdBgNVHQ4EFgQUoIB1iMhN |
|
48 | 48 | > y868rpQ2qk9dHnU6ebswHwYDVR0jBBgwFoAUoIB1iMhNy868rpQ2qk9dHnU6ebsw |
|
49 | 49 | > DAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAANBAJ544f125CsE7J2t55PdFaF6 |
|
50 | 50 | > bBlNBb91FCywBgSjhBjf+GG3TNPwrPdc3yqeq+hzJiuInqbOBv9abmMyq8Wsoig= |
|
51 | 51 | > -----END CERTIFICATE----- |
|
52 | 52 | > EOT |
|
53 | 53 | |
|
54 | 54 | pub.pem patched with other notBefore / notAfter: |
|
55 | 55 | |
|
56 | 56 | $ cat << EOT > pub-not-yet.pem |
|
57 | 57 | > -----BEGIN CERTIFICATE----- |
|
58 | 58 | > MIIBqzCCAVWgAwIBAgIJANAXFFyWjGnRMA0GCSqGSIb3DQEBBQUAMDExEjAQBgNVBAMMCWxvY2Fs |
|
59 | 59 | > aG9zdDEbMBkGCSqGSIb3DQEJARYMaGdAbG9jYWxob3N0MB4XDTM1MDYwNTIwMzAxNFoXDTM1MDYw |
|
60 | 60 | > NTIwMzAxNFowMTESMBAGA1UEAwwJbG9jYWxob3N0MRswGQYJKoZIhvcNAQkBFgxoZ0Bsb2NhbGhv |
|
61 | 61 | > c3QwXDANBgkqhkiG9w0BAQEFAANLADBIAkEApjCWeYGrIa/Vo7LHaRF8ou0tbgHKE33Use/whCnK |
|
62 | 62 | > EUm34rDaXQd4lxxX6aDWg06n9tiVStAKTgQAHJY8j/xgSwIDAQABo1AwTjAdBgNVHQ4EFgQUE6sA |
|
63 | 63 | > +ammr24dGX0kpjxOgO45hzQwHwYDVR0jBBgwFoAUE6sA+ammr24dGX0kpjxOgO45hzQwDAYDVR0T |
|
64 | 64 | > BAUwAwEB/zANBgkqhkiG9w0BAQUFAANBAJXV41gWnkgC7jcpPpFRSUSZaxyzrXmD1CIqQf0WgVDb |
|
65 | 65 | > /12E0vR2DuZitgzUYtBaofM81aTtc0a2/YsrmqePGm0= |
|
66 | 66 | > -----END CERTIFICATE----- |
|
67 | 67 | > EOT |
|
68 | 68 | $ cat priv.pem pub-not-yet.pem > server-not-yet.pem |
|
69 | 69 | |
|
70 | 70 | $ cat << EOT > pub-expired.pem |
|
71 | 71 | > -----BEGIN CERTIFICATE----- |
|
72 | 72 | > MIIBqzCCAVWgAwIBAgIJANAXFFyWjGnRMA0GCSqGSIb3DQEBBQUAMDExEjAQBgNVBAMMCWxvY2Fs |
|
73 | 73 | > aG9zdDEbMBkGCSqGSIb3DQEJARYMaGdAbG9jYWxob3N0MB4XDTEwMTAxNDIwMzAxNFoXDTEwMTAx |
|
74 | 74 | > NDIwMzAxNFowMTESMBAGA1UEAwwJbG9jYWxob3N0MRswGQYJKoZIhvcNAQkBFgxoZ0Bsb2NhbGhv |
|
75 | 75 | > c3QwXDANBgkqhkiG9w0BAQEFAANLADBIAkEApjCWeYGrIa/Vo7LHaRF8ou0tbgHKE33Use/whCnK |
|
76 | 76 | > EUm34rDaXQd4lxxX6aDWg06n9tiVStAKTgQAHJY8j/xgSwIDAQABo1AwTjAdBgNVHQ4EFgQUE6sA |
|
77 | 77 | > +ammr24dGX0kpjxOgO45hzQwHwYDVR0jBBgwFoAUE6sA+ammr24dGX0kpjxOgO45hzQwDAYDVR0T |
|
78 | 78 | > BAUwAwEB/zANBgkqhkiG9w0BAQUFAANBAJfk57DTRf2nUbYaMSlVAARxMNbFGOjQhAUtY400GhKt |
|
79 | 79 | > 2uiKCNGKXVXD3AHWe13yHc5KttzbHQStE5Nm/DlWBWQ= |
|
80 | 80 | > -----END CERTIFICATE----- |
|
81 | 81 | > EOT |
|
82 | 82 | $ cat priv.pem pub-expired.pem > server-expired.pem |
|
83 | 83 | |
|
84 | 84 | $ hg init test |
|
85 | 85 | $ cd test |
|
86 | 86 | $ echo foo>foo |
|
87 | 87 | $ mkdir foo.d foo.d/bAr.hg.d foo.d/baR.d.hg |
|
88 | 88 | $ echo foo>foo.d/foo |
|
89 | 89 | $ echo bar>foo.d/bAr.hg.d/BaR |
|
90 | 90 | $ echo bar>foo.d/baR.d.hg/bAR |
|
91 | 91 | $ hg commit -A -m 1 |
|
92 | 92 | adding foo |
|
93 | 93 | adding foo.d/bAr.hg.d/BaR |
|
94 | 94 | adding foo.d/baR.d.hg/bAR |
|
95 | 95 | adding foo.d/foo |
|
96 | 96 | $ hg serve -p $HGPORT -d --pid-file=../hg0.pid --certificate=$PRIV |
|
97 | 97 | $ cat ../hg0.pid >> $DAEMON_PIDS |
|
98 | 98 | |
|
99 | 99 | cacert not found |
|
100 | 100 | |
|
101 | 101 | $ hg in --config web.cacerts=no-such.pem https://localhost:$HGPORT/ |
|
102 | 102 | abort: could not find web.cacerts: no-such.pem |
|
103 | 103 | [255] |
|
104 | 104 | |
|
105 | 105 | Test server address cannot be reused |
|
106 | 106 | |
|
107 | 107 | $ hg serve -p $HGPORT --certificate=$PRIV 2>&1 |
|
108 | 108 | abort: cannot start server at ':$HGPORT': Address already in use |
|
109 | 109 | [255] |
|
110 | 110 | $ cd .. |
|
111 | 111 | |
|
112 | 112 | clone via pull |
|
113 | 113 | |
|
114 | 114 | $ hg clone https://localhost:$HGPORT/ copy-pull |
|
115 | 115 | warning: localhost certificate with fingerprint 91:4f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca not verified (check hostfingerprints or web.cacerts config setting) |
|
116 | 116 | requesting all changes |
|
117 | 117 | adding changesets |
|
118 | 118 | adding manifests |
|
119 | 119 | adding file changes |
|
120 | 120 | added 1 changesets with 4 changes to 4 files |
|
121 | warning: localhost certificate with fingerprint 91:4f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca not verified (check hostfingerprints or web.cacerts config setting) | |
|
122 | 121 | updating to branch default |
|
123 | 122 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
124 | 123 | warning: localhost certificate with fingerprint 91:4f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca not verified (check hostfingerprints or web.cacerts config setting) |
|
125 | 124 | $ hg verify -R copy-pull |
|
126 | 125 | checking changesets |
|
127 | 126 | checking manifests |
|
128 | 127 | crosschecking files in changesets and manifests |
|
129 | 128 | checking files |
|
130 | 129 | 4 files, 1 changesets, 4 total revisions |
|
131 | 130 | $ cd test |
|
132 | 131 | $ echo bar > bar |
|
133 | 132 | $ hg commit -A -d '1 0' -m 2 |
|
134 | 133 | adding bar |
|
135 | 134 | $ cd .. |
|
136 | 135 | |
|
137 | 136 | pull without cacert |
|
138 | 137 | |
|
139 | 138 | $ cd copy-pull |
|
140 | 139 | $ echo '[hooks]' >> .hg/hgrc |
|
141 | 140 | $ echo "changegroup = python '$TESTDIR'/printenv.py changegroup" >> .hg/hgrc |
|
142 | 141 | $ hg pull |
|
143 | 142 | warning: localhost certificate with fingerprint 91:4f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca not verified (check hostfingerprints or web.cacerts config setting) |
|
144 | 143 | pulling from https://localhost:$HGPORT/ |
|
145 | 144 | searching for changes |
|
146 | 145 | adding changesets |
|
147 | 146 | adding manifests |
|
148 | 147 | adding file changes |
|
149 | 148 | added 1 changesets with 1 changes to 1 files |
|
150 | 149 | changegroup hook: HG_NODE=5fed3813f7f5e1824344fdc9cf8f63bb662c292d HG_SOURCE=pull HG_URL=https://localhost:$HGPORT/ |
|
151 | 150 | warning: localhost certificate with fingerprint 91:4f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca not verified (check hostfingerprints or web.cacerts config setting) |
|
152 | 151 | (run 'hg update' to get a working copy) |
|
153 | 152 | $ cd .. |
|
154 | 153 | |
|
155 | 154 | cacert configured in local repo |
|
156 | 155 | |
|
157 | 156 | $ cp copy-pull/.hg/hgrc copy-pull/.hg/hgrc.bu |
|
158 | 157 | $ echo "[web]" >> copy-pull/.hg/hgrc |
|
159 | 158 | $ echo "cacerts=`pwd`/pub.pem" >> copy-pull/.hg/hgrc |
|
160 | 159 | $ hg -R copy-pull pull --traceback |
|
161 | 160 | pulling from https://localhost:$HGPORT/ |
|
162 | 161 | searching for changes |
|
163 | 162 | no changes found |
|
164 | 163 | $ mv copy-pull/.hg/hgrc.bu copy-pull/.hg/hgrc |
|
165 | 164 | |
|
166 | 165 | cacert configured globally, also testing expansion of environment |
|
167 | 166 | variables in the filename |
|
168 | 167 | |
|
169 | 168 | $ echo "[web]" >> $HGRCPATH |
|
170 | 169 | $ echo 'cacerts=$P/pub.pem' >> $HGRCPATH |
|
171 | 170 | $ P=`pwd` hg -R copy-pull pull |
|
172 | 171 | pulling from https://localhost:$HGPORT/ |
|
173 | 172 | searching for changes |
|
174 | 173 | no changes found |
|
175 | 174 | $ P=`pwd` hg -R copy-pull pull --insecure |
|
176 | 175 | warning: localhost certificate with fingerprint 91:4f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca not verified (check hostfingerprints or web.cacerts config setting) |
|
177 | 176 | pulling from https://localhost:$HGPORT/ |
|
178 | 177 | searching for changes |
|
179 | 178 | no changes found |
|
180 | 179 | |
|
181 | 180 | cacert mismatch |
|
182 | 181 | |
|
183 | 182 | $ hg -R copy-pull pull --config web.cacerts=pub.pem https://127.0.0.1:$HGPORT/ |
|
184 | 183 | abort: 127.0.0.1 certificate error: certificate is for localhost (use --insecure to connect insecurely) |
|
185 | 184 | [255] |
|
186 | 185 | $ hg -R copy-pull pull --config web.cacerts=pub.pem https://127.0.0.1:$HGPORT/ --insecure |
|
187 | 186 | warning: 127.0.0.1 certificate with fingerprint 91:4f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca not verified (check hostfingerprints or web.cacerts config setting) |
|
188 | 187 | pulling from https://127.0.0.1:$HGPORT/ |
|
189 | 188 | searching for changes |
|
190 | 189 | no changes found |
|
191 | 190 | $ hg -R copy-pull pull --config web.cacerts=pub-other.pem |
|
192 | 191 | abort: error: *:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed (glob) |
|
193 | 192 | [255] |
|
194 | 193 | $ hg -R copy-pull pull --config web.cacerts=pub-other.pem --insecure |
|
195 | 194 | warning: localhost certificate with fingerprint 91:4f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca not verified (check hostfingerprints or web.cacerts config setting) |
|
196 | 195 | pulling from https://localhost:$HGPORT/ |
|
197 | 196 | searching for changes |
|
198 | 197 | no changes found |
|
199 | 198 | |
|
200 | 199 | Test server cert which isn't valid yet |
|
201 | 200 | |
|
202 | 201 | $ hg -R test serve -p $HGPORT1 -d --pid-file=hg1.pid --certificate=server-not-yet.pem |
|
203 | 202 | $ cat hg1.pid >> $DAEMON_PIDS |
|
204 | 203 | $ hg -R copy-pull pull --config web.cacerts=pub-not-yet.pem https://localhost:$HGPORT1/ |
|
205 | 204 | abort: error: *:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed (glob) |
|
206 | 205 | [255] |
|
207 | 206 | |
|
208 | 207 | Test server cert which no longer is valid |
|
209 | 208 | |
|
210 | 209 | $ hg -R test serve -p $HGPORT2 -d --pid-file=hg2.pid --certificate=server-expired.pem |
|
211 | 210 | $ cat hg2.pid >> $DAEMON_PIDS |
|
212 | 211 | $ hg -R copy-pull pull --config web.cacerts=pub-expired.pem https://localhost:$HGPORT2/ |
|
213 | 212 | abort: error: *:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed (glob) |
|
214 | 213 | [255] |
|
215 | 214 | |
|
216 | 215 | Fingerprints |
|
217 | 216 | |
|
218 | 217 | $ echo "[hostfingerprints]" >> copy-pull/.hg/hgrc |
|
219 | 218 | $ echo "localhost = 91:4f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca" >> copy-pull/.hg/hgrc |
|
220 | 219 | $ echo "127.0.0.1 = 914f1aff87249c09b6859b88b1906d30756491ca" >> copy-pull/.hg/hgrc |
|
221 | 220 | |
|
222 | 221 | - works without cacerts |
|
223 | 222 | $ hg -R copy-pull id https://localhost:$HGPORT/ --config web.cacerts= |
|
224 | 223 | 5fed3813f7f5 |
|
225 | 224 | |
|
226 | 225 | - fails when cert doesn't match hostname (port is ignored) |
|
227 | 226 | $ hg -R copy-pull id https://localhost:$HGPORT1/ |
|
228 | 227 | abort: invalid certificate for localhost with fingerprint 28:ff:71:bf:65:31:14:23:ad:62:92:b4:0e:31:99:18:fc:83:e3:9b |
|
229 | 228 | [255] |
|
230 | 229 | |
|
231 | 230 | - ignores that certificate doesn't match hostname |
|
232 | 231 | $ hg -R copy-pull id https://127.0.0.1:$HGPORT/ |
|
233 | 232 | 5fed3813f7f5 |
|
234 | 233 | |
|
235 | 234 | Prepare for connecting through proxy |
|
236 | 235 | |
|
237 | 236 | $ kill `cat hg1.pid` |
|
238 | 237 | $ sleep 1 |
|
239 | 238 | |
|
240 | 239 | $ ("$TESTDIR/tinyproxy.py" $HGPORT1 localhost >proxy.log 2>&1 </dev/null & |
|
241 | 240 | $ echo $! > proxy.pid) |
|
242 | 241 | $ cat proxy.pid >> $DAEMON_PIDS |
|
243 | 242 | $ sleep 2 |
|
244 | 243 | |
|
245 | 244 | $ echo "[http_proxy]" >> copy-pull/.hg/hgrc |
|
246 | 245 | $ echo "always=True" >> copy-pull/.hg/hgrc |
|
247 | 246 | $ echo "[hostfingerprints]" >> copy-pull/.hg/hgrc |
|
248 | 247 | $ echo "localhost =" >> copy-pull/.hg/hgrc |
|
249 | 248 | |
|
250 | 249 | Test unvalidated https through proxy |
|
251 | 250 | |
|
252 | 251 | $ http_proxy=http://localhost:$HGPORT1/ hg -R copy-pull pull --insecure --traceback |
|
253 | 252 | warning: localhost certificate with fingerprint 91:4f:1a:ff:87:24:9c:09:b6:85:9b:88:b1:90:6d:30:75:64:91:ca not verified (check hostfingerprints or web.cacerts config setting) |
|
254 | 253 | pulling from https://localhost:$HGPORT/ |
|
255 | 254 | searching for changes |
|
256 | 255 | no changes found |
|
257 | 256 | |
|
258 | 257 | Test https with cacert and fingerprint through proxy |
|
259 | 258 | |
|
260 | 259 | $ http_proxy=http://localhost:$HGPORT1/ hg -R copy-pull pull --config web.cacerts=pub.pem |
|
261 | 260 | pulling from https://localhost:$HGPORT/ |
|
262 | 261 | searching for changes |
|
263 | 262 | no changes found |
|
264 | 263 | $ http_proxy=http://localhost:$HGPORT1/ hg -R copy-pull pull https://127.0.0.1:$HGPORT/ |
|
265 | 264 | pulling from https://127.0.0.1:$HGPORT/ |
|
266 | 265 | searching for changes |
|
267 | 266 | no changes found |
|
268 | 267 | |
|
269 | 268 | Test https with cert problems through proxy |
|
270 | 269 | |
|
271 | 270 | $ http_proxy=http://localhost:$HGPORT1/ hg -R copy-pull pull --config web.cacerts=pub-other.pem |
|
272 | 271 | abort: error: *:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed (glob) |
|
273 | 272 | [255] |
|
274 | 273 | $ http_proxy=http://localhost:$HGPORT1/ hg -R copy-pull pull --config web.cacerts=pub-expired.pem https://localhost:$HGPORT2/ |
|
275 | 274 | abort: error: *:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed (glob) |
|
276 | 275 | [255] |
General Comments 0
You need to be logged in to leave comments.
Login now