-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathscenario.go
407 lines (376 loc) · 11.1 KB
/
scenario.go
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
package netemx
import (
"net/http"
"github.com/apex/log"
"github.com/ooni/netem"
"github.com/ooni/probe-cli/v3/internal/netxlite"
"github.com/ooni/probe-cli/v3/internal/testingx"
)
const (
// ScenarioRolePublicDNS means we should create DNS-over-HTTPS and DNS-over-UDP servers.
ScenarioRolePublicDNS = iota
// ScenarioRoleWebServer means we should instantiate a webserver using a specific factory.
ScenarioRoleWebServer
// ScenarioRoleOONIAPI means we should instantiate the OONI API.
ScenarioRoleOONIAPI
// ScenarioRoleUbuntuGeoIP means we should instantiate the Ubuntu geoip service.
ScenarioRoleUbuntuGeoIP
// ScenarioRoleOONITestHelper means we should instantiate the oohelperd.
ScenarioRoleOONITestHelper
// ScenarioRoleBlockpageServer means we should serve a blockpage using HTTP.
ScenarioRoleBlockpageServer
// ScenarioRoleProxy means the host is a transparent proxy.
ScenarioRoleProxy
// ScenarioRoleURLShortener means that the host is an URL shortener.
ScenarioRoleURLShortener
// ScenarioRoleBadSSL means that the host hosts services to
// measure against common TLS issues.
ScenarioRoleBadSSL
)
// ScenarioDomainAddresses describes a domain and address used in a scenario.
type ScenarioDomainAddresses struct {
// Addresses contains the MANDATORY list of addresses belonging to the domain.
Addresses []string
// Domains contains a related set of domains domains (MANDATORY field).
Domains []string
// Role is the MANDATORY role of this domain (e.g., ScenarioRoleOONIAPI).
Role uint64
// ServerNameMain is the MANDATORY server name to use as common name for X.509 certs.
ServerNameMain string
// ServerNameExtras contains OPTIONAL extra names to also configure into the cert.
ServerNameExtras []string
// WebServerFactory is the factory to use when Role is ScenarioRoleWebServer.
WebServerFactory HTTPHandlerFactory
}
// InternetScenario contains the domains and addresses used by [NewInternetScenario].
var InternetScenario = []*ScenarioDomainAddresses{{
Domains: []string{"api.ooni.io"},
Addresses: []string{
AddressApiOONIIo,
},
Role: ScenarioRoleOONIAPI,
ServerNameMain: "api.ooni.io",
ServerNameExtras: []string{},
}, {
Domains: []string{"geoip.ubuntu.com"},
Addresses: []string{
AddressGeoIPUbuntuCom,
},
Role: ScenarioRoleUbuntuGeoIP,
ServerNameMain: "geoip.ubuntu.com",
ServerNameExtras: []string{},
}, {
Domains: []string{"www.example.com", "example.com", "www.example.org", "example.org"},
Addresses: []string{
AddressWwwExampleCom,
},
Role: ScenarioRoleWebServer,
WebServerFactory: ExampleWebPageHandlerFactory(),
ServerNameMain: "www.example.com",
ServerNameExtras: []string{"example.com", "www.example.org", "example.org"},
}, {
Domains: []string{"0.th.ooni.org"},
Addresses: []string{
AddressZeroThOONIOrg,
},
Role: ScenarioRoleOONITestHelper,
ServerNameMain: "0.th.ooni.org",
ServerNameExtras: []string{},
}, {
Domains: []string{"1.th.ooni.org"},
Addresses: []string{
AddressOneThOONIOrg,
},
Role: ScenarioRoleOONITestHelper,
ServerNameMain: "1.th.ooni.org",
ServerNameExtras: []string{},
}, {
Domains: []string{"2.th.ooni.org"},
Addresses: []string{
AddressTwoThOONIOrg,
},
Role: ScenarioRoleOONITestHelper,
ServerNameMain: "2.th.ooni.org",
ServerNameExtras: []string{},
}, {
Domains: []string{"3.th.ooni.org"},
Addresses: []string{
AddressThreeThOONIOrg,
},
Role: ScenarioRoleOONITestHelper,
ServerNameMain: "3.th.ooni.org",
ServerNameExtras: []string{},
}, {
Domains: []string{"d33d1gs9kpq1c5.cloudfront.net"},
Addresses: []string{
AddressTHCloudfront,
},
Role: ScenarioRoleOONITestHelper,
ServerNameMain: "d33d1gs9kpq1c5.cloudfront.net",
ServerNameExtras: []string{},
}, {
Domains: []string{"dns.quad9.net"},
Addresses: []string{
AddressDNSQuad9Net9999,
AddressDNSQuad9NetOther,
},
Role: ScenarioRolePublicDNS,
ServerNameMain: "dns.quad9.net",
ServerNameExtras: []string{},
}, {
Domains: []string{"cloudflare-dns.com"},
Addresses: []string{
AddressCloudflareDNSCom1001,
AddressCloudflareDNSCom1111,
},
Role: ScenarioRolePublicDNS,
ServerNameMain: "cloudflare-dns.com",
ServerNameExtras: []string{},
}, {
Domains: []string{"doh.opendns.com"},
Addresses: []string{
AddressOpenDNS220,
AddressOpenDNS222,
},
Role: ScenarioRolePublicDNS,
ServerNameMain: "doh.opendns.com",
ServerNameExtras: []string{},
}, {
Domains: []string{"mozilla.cloudflare-dns.com"},
Addresses: []string{
AddressMozillaCloudflareDNSCom,
},
Role: ScenarioRolePublicDNS,
ServerNameMain: "mozilla.cloudflare-dns.com",
ServerNameExtras: []string{},
}, {
Domains: []string{"dns.google", "dns.google.com"},
Addresses: []string{
AddressDNSGoogle8844,
AddressDNSGoogle8888,
},
Role: ScenarioRolePublicDNS,
ServerNameMain: "dns.google",
ServerNameExtras: []string{"dns.google.com"},
}, {
Domains: []string{},
Addresses: []string{
AddressPublicBlockpage,
},
Role: ScenarioRoleBlockpageServer,
WebServerFactory: BlockpageHandlerFactory(),
ServerNameMain: "blockpage.local",
ServerNameExtras: []string{},
}, {
Domains: []string{},
Addresses: []string{
ISPProxyAddress,
},
Role: ScenarioRoleProxy,
ServerNameMain: "proxy.local",
ServerNameExtras: []string{},
}, {
Domains: []string{"bit.ly", "bitly.com"},
Addresses: []string{
AddressBitly,
},
Role: ScenarioRoleURLShortener,
ServerNameMain: "bit.ly",
ServerNameExtras: []string{"bitly.com"},
}, {
Domains: []string{
"wrong.host.badssl.com",
"untrusted-root.badssl.com",
"expired.badssl.com",
},
Addresses: []string{
AddressBadSSLCom,
},
Role: ScenarioRoleBadSSL,
ServerNameMain: "badssl.com",
ServerNameExtras: []string{},
}, {
Addresses: []string{
AddressYandexCom1,
},
Domains: []string{
"yandex.com",
"ya.ru",
"xn--d1acpjx3f.xn--p1ai",
},
Role: ScenarioRoleWebServer,
ServerNameMain: "ya.ru",
ServerNameExtras: []string{
"yandex.com",
"xn--d1acpjx3f.xn--p1ai",
},
WebServerFactory: YandexHandlerFactory(),
}, {
Addresses: []string{
AddressLargeFileCom1,
},
Domains: []string{
"largefile.com",
"www.largefile.com",
},
Role: ScenarioRoleWebServer,
ServerNameMain: "largefile.com",
ServerNameExtras: []string{
"www.largefile.com",
},
WebServerFactory: LargeFileHandlerFactory(),
}, {
Addresses: []string{
AddressCloudflareCache1,
},
Domains: []string{
"www.cloudflare-cache.com",
},
Role: ScenarioRoleWebServer,
ServerNameMain: "www.cloudflare-cache.com",
ServerNameExtras: []string{},
WebServerFactory: CloudflareCAPTCHAHandlerFactory(),
}, {
Addresses: []string{
AddressHTTPBinCom1,
},
Domains: []string{
"httpbin.com",
},
Role: ScenarioRoleWebServer,
ServerNameMain: "httpbin.com",
ServerNameExtras: []string{},
WebServerFactory: HTTPBinHandlerFactory(),
}, {
Domains: []string{"dns.nextdns.io"},
Addresses: []string{
AddressNextDNSIo,
},
Role: ScenarioRolePublicDNS,
ServerNameMain: "dns.nextdns.io",
ServerNameExtras: []string{},
}}
// MustNewScenario constructs a complete testing scenario using the domains and IP
// addresses contained by the given [ScenarioDomainAddresses] array.
func MustNewScenario(config []*ScenarioDomainAddresses) *QAEnv {
var opts []QAEnvOption
// fill options based on the scenario config
for _, sad := range config {
switch sad.Role {
case ScenarioRolePublicDNS:
for _, addr := range sad.Addresses {
opts = append(opts, QAEnvOptionNetStack(
addr,
&DNSOverUDPServerFactory{},
&HTTPSecureServerFactory{
Factory: &DNSOverHTTPSHandlerFactory{},
Ports: []int{443},
ServerNameMain: sad.ServerNameMain,
ServerNameExtras: sad.ServerNameExtras,
},
&HTTP3ServerFactory{
Factory: &DNSOverHTTPSHandlerFactory{},
Ports: []int{443},
ServerNameMain: sad.ServerNameMain,
ServerNameExtras: sad.ServerNameExtras,
},
))
}
case ScenarioRoleWebServer:
for _, addr := range sad.Addresses {
opts = append(opts, qaEnvOptionNetStack(
addr,
&HTTPCleartextServerFactory{
Factory: sad.WebServerFactory,
Ports: []int{80},
},
&HTTPSecureServerFactory{
Factory: sad.WebServerFactory,
Ports: []int{443},
ServerNameMain: sad.ServerNameMain,
ServerNameExtras: sad.ServerNameExtras,
},
&HTTP3ServerFactory{
Factory: sad.WebServerFactory,
Ports: []int{443},
ServerNameMain: sad.ServerNameMain,
ServerNameExtras: sad.ServerNameExtras,
},
))
}
case ScenarioRoleOONIAPI:
for _, addr := range sad.Addresses {
opts = append(opts, QAEnvOptionNetStack(addr, &HTTPSecureServerFactory{
Factory: &OOAPIHandlerFactory{},
Ports: []int{443},
ServerNameMain: sad.ServerNameMain,
ServerNameExtras: sad.ServerNameExtras,
}))
}
case ScenarioRoleOONITestHelper:
for _, addr := range sad.Addresses {
opts = append(opts, QAEnvOptionNetStack(addr, &HTTPSecureServerFactory{
Factory: &OOHelperDFactory{},
Ports: []int{443},
ServerNameMain: sad.ServerNameMain,
ServerNameExtras: sad.ServerNameExtras,
}))
}
case ScenarioRoleUbuntuGeoIP:
for _, addr := range sad.Addresses {
opts = append(opts, QAEnvOptionNetStack(addr, &HTTPSecureServerFactory{
Factory: &GeoIPHandlerFactoryUbuntu{
ProbeIP: DefaultClientAddress,
},
Ports: []int{443},
ServerNameMain: sad.ServerNameMain,
ServerNameExtras: sad.ServerNameExtras,
}))
}
case ScenarioRoleBlockpageServer:
for _, addr := range sad.Addresses {
opts = append(opts, QAEnvOptionNetStack(addr, &HTTPCleartextServerFactory{
Factory: BlockpageHandlerFactory(),
Ports: []int{80},
}))
}
case ScenarioRoleProxy:
for _, addr := range sad.Addresses {
opts = append(opts, QAEnvOptionNetStack(addr,
&HTTPCleartextServerFactory{
Factory: HTTPHandlerFactoryFunc(func(env NetStackServerFactoryEnv, stack *netem.UNetStack) http.Handler {
return testingx.NewHTTPProxyHandler(env.Logger(), &netxlite.Netx{
Underlying: &netxlite.NetemUnderlyingNetworkAdapter{UNet: stack}})
}),
Ports: []int{80},
},
NewTLSProxyServerFactory(log.Log, 443),
))
}
case ScenarioRoleURLShortener:
for _, addr := range sad.Addresses {
opts = append(opts, QAEnvOptionNetStack(addr,
&HTTPSecureServerFactory{
Factory: URLShortenerFactory(DefaultURLShortenerMapping),
Ports: []int{443},
ServerNameMain: sad.ServerNameMain,
ServerNameExtras: sad.ServerNameExtras,
},
))
}
case ScenarioRoleBadSSL:
for _, addr := range sad.Addresses {
opts = append(opts, qaEnvOptionNetStack(addr, &BadSSLServerFactory{}))
}
}
}
// create QAEnv
env := MustNewQAEnv(opts...)
// configure all the domain names
for _, sad := range config {
for _, domain := range sad.Domains {
env.AddRecordToAllResolvers(domain, "", sad.Addresses...)
}
}
return env
}