-
Notifications
You must be signed in to change notification settings - Fork 796
/
Copy pathmain.ts
293 lines (260 loc) · 10.2 KB
/
main.ts
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
// Copyright 2018 The Outline Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import * as fs from 'fs';
import * as http from 'http';
import * as path from 'path';
import * as process from 'process';
import * as prometheus from 'prom-client';
import * as restify from 'restify';
import * as corsMiddleware from 'restify-cors-middleware2';
import {RealClock} from '../infrastructure/clock';
import {PortProvider} from '../infrastructure/get_port';
import * as json_config from '../infrastructure/json_config';
import * as logging from '../infrastructure/logging';
import {PrometheusClient, startPrometheus} from '../infrastructure/prometheus_scraper';
import {RolloutTracker} from '../infrastructure/rollout';
import {AccessKeyId} from '../model/access_key';
import * as version from './version';
import {PrometheusManagerMetrics} from './manager_metrics';
import {bindService, ShadowsocksManagerService} from './manager_service';
import {OutlineShadowsocksServer} from './outline_shadowsocks_server';
import {AccessKeyConfigJson, ServerAccessKeyRepository} from './server_access_key';
import * as server_config from './server_config';
import {
OutlineSharedMetricsPublisher,
PrometheusUsageMetrics,
RestMetricsCollectorClient,
SharedMetricsPublisher,
} from './shared_metrics';
const APP_BASE_DIR = path.join(__dirname, '..');
const DEFAULT_STATE_DIR = '/root/shadowbox/persisted-state';
const MMDB_LOCATION_COUNTRY = '/var/lib/libmaxminddb/ip-country.mmdb';
const MMDB_LOCATION_ASN = '/var/lib/libmaxminddb/ip-asn.mmdb';
async function exportPrometheusMetrics(registry: prometheus.Registry, port): Promise<http.Server> {
return new Promise<http.Server>((resolve, _) => {
const server = http.createServer((_, res) => {
res.write(registry.metrics());
res.end();
});
server.on('listening', () => {
resolve(server);
});
server.listen({port, host: 'localhost', exclusive: true});
});
}
function reserveExistingAccessKeyPorts(
keyConfig: json_config.JsonConfig<AccessKeyConfigJson>,
portProvider: PortProvider
) {
const accessKeys = keyConfig.data().accessKeys || [];
const dedupedPorts = new Set(accessKeys.map((ak) => ak.port));
dedupedPorts.forEach((p) => portProvider.addReservedPort(p));
}
function createRolloutTracker(
serverConfig: json_config.JsonConfig<server_config.ServerConfigJson>
): RolloutTracker {
const rollouts = new RolloutTracker(serverConfig.data().serverId);
if (serverConfig.data().rollouts) {
for (const rollout of serverConfig.data().rollouts) {
rollouts.forceRollout(rollout.id, rollout.enabled);
}
}
return rollouts;
}
async function main() {
const verbose = process.env.LOG_LEVEL === 'debug';
logging.info('======== Outline Server main() ========');
logging.info(`Version is ${version.getPackageVersion()}`);
const portProvider = new PortProvider();
const accessKeyConfig = json_config.loadFileConfig<AccessKeyConfigJson>(
getPersistentFilename('shadowbox_config.json')
);
reserveExistingAccessKeyPorts(accessKeyConfig, portProvider);
prometheus.collectDefaultMetrics({register: prometheus.register});
// Default to production metrics, as some old Docker images may not have
// SB_METRICS_URL properly set.
const metricsCollectorUrl = process.env.SB_METRICS_URL || 'https://prod.metrics.getoutline.org';
if (!process.env.SB_METRICS_URL) {
logging.warn('process.env.SB_METRICS_URL not set, using default');
}
const DEFAULT_PORT = 8081;
const apiPortNumber = Number(process.env.SB_API_PORT || DEFAULT_PORT);
if (isNaN(apiPortNumber)) {
logging.error(`Invalid SB_API_PORT: ${process.env.SB_API_PORT}`);
process.exit(1);
}
portProvider.addReservedPort(apiPortNumber);
const serverConfig = server_config.readServerConfig(
getPersistentFilename('shadowbox_server_config.json')
);
const proxyHostname = serverConfig.data().hostname;
if (!proxyHostname) {
logging.error('Need to specify hostname in shadowbox_server_config.json');
process.exit(1);
}
logging.info(`Hostname: ${proxyHostname}`);
logging.info(`SB_METRICS_URL: ${metricsCollectorUrl}`);
const prometheusPort = await portProvider.reserveFirstFreePort(9090);
// Use 127.0.0.1 instead of localhost for Prometheus because it's resolving incorrectly for some users.
// See https://github.com/Jigsaw-Code/outline-server/issues/341
const prometheusLocation = `127.0.0.1:${prometheusPort}`;
const nodeMetricsPort = await portProvider.reserveFirstFreePort(prometheusPort + 1);
exportPrometheusMetrics(prometheus.register, nodeMetricsPort);
const nodeMetricsLocation = `127.0.0.1:${nodeMetricsPort}`;
const ssMetricsPort = await portProvider.reserveFirstFreePort(nodeMetricsPort + 1);
logging.info(`Prometheus is at ${prometheusLocation}`);
logging.info(`Node metrics is at ${nodeMetricsLocation}`);
const prometheusConfigJson = {
global: {
scrape_interval: '1m',
},
scrape_configs: [
{job_name: 'prometheus', static_configs: [{targets: [prometheusLocation]}]},
{job_name: 'outline-server-main', static_configs: [{targets: [nodeMetricsLocation]}]},
],
};
const ssMetricsLocation = `127.0.0.1:${ssMetricsPort}`;
logging.info(`outline-ss-server metrics is at ${ssMetricsLocation}`);
prometheusConfigJson.scrape_configs.push({
job_name: 'outline-server-ss',
static_configs: [{targets: [ssMetricsLocation]}],
});
const shadowsocksServer = new OutlineShadowsocksServer(
getBinaryFilename('outline-ss-server'),
getPersistentFilename('outline-ss-server/config.yml'),
verbose,
ssMetricsLocation
);
if (fs.existsSync(MMDB_LOCATION_COUNTRY)) {
shadowsocksServer.configureCountryMetrics(MMDB_LOCATION_COUNTRY);
}
if (fs.existsSync(MMDB_LOCATION_ASN)) {
shadowsocksServer.configureAsnMetrics(MMDB_LOCATION_ASN);
if (serverConfig.data().experimental?.asnMetricsEnabled) {
shadowsocksServer.enableAsnMetrics(true);
}
}
const isReplayProtectionEnabled = createRolloutTracker(serverConfig).isRolloutEnabled(
'replay-protection',
100
);
logging.info(`Replay protection enabled: ${isReplayProtectionEnabled}`);
if (isReplayProtectionEnabled) {
shadowsocksServer.enableReplayProtection();
}
// Start Prometheus subprocess and wait for it to be up and running.
const prometheusConfigFilename = getPersistentFilename('prometheus/config.yml');
const prometheusTsdbFilename = getPersistentFilename('prometheus/data');
const prometheusEndpoint = `http://${prometheusLocation}`;
const prometheusBinary = getBinaryFilename('prometheus');
const prometheusArgs = [
'--config.file',
prometheusConfigFilename,
'--web.enable-admin-api',
'--storage.tsdb.retention.time',
'31d',
'--storage.tsdb.path',
prometheusTsdbFilename,
'--web.listen-address',
prometheusLocation,
'--log.level',
verbose ? 'debug' : 'info',
];
await startPrometheus(
prometheusBinary,
prometheusConfigFilename,
prometheusConfigJson,
prometheusArgs,
prometheusEndpoint
);
const prometheusClient = new PrometheusClient(prometheusEndpoint);
if (!serverConfig.data().portForNewAccessKeys) {
serverConfig.data().portForNewAccessKeys = await portProvider.reserveNewPort();
serverConfig.write();
}
const accessKeyRepository = new ServerAccessKeyRepository(
serverConfig.data().portForNewAccessKeys,
proxyHostname,
accessKeyConfig,
shadowsocksServer,
prometheusClient,
serverConfig.data().accessKeyDataLimit
);
const metricsReader = new PrometheusUsageMetrics(prometheusClient);
const toMetricsId = (id: AccessKeyId) => {
try {
return accessKeyRepository.getMetricsId(id);
} catch (e) {
logging.warn(`Failed to get metrics id for access key ${id}: ${e}`);
}
};
const managerMetrics = new PrometheusManagerMetrics(prometheusClient);
const metricsCollector = new RestMetricsCollectorClient(metricsCollectorUrl);
const metricsPublisher: SharedMetricsPublisher = new OutlineSharedMetricsPublisher(
new RealClock(),
serverConfig,
accessKeyConfig,
metricsReader,
toMetricsId,
metricsCollector
);
const managerService = new ShadowsocksManagerService(
process.env.SB_DEFAULT_SERVER_NAME || 'Outline Server',
serverConfig,
accessKeyRepository,
shadowsocksServer,
managerMetrics,
metricsPublisher
);
const certificateFilename = process.env.SB_CERTIFICATE_FILE;
const privateKeyFilename = process.env.SB_PRIVATE_KEY_FILE;
const apiServer = restify.createServer({
certificate: fs.readFileSync(certificateFilename),
key: fs.readFileSync(privateKeyFilename),
});
// Pre-routing handlers
const cors = corsMiddleware({
origins: ['*'],
allowHeaders: [],
exposeHeaders: [],
credentials: false,
});
apiServer.pre(cors.preflight);
apiServer.pre(restify.pre.sanitizePath());
// All routes handlers
const apiPrefix = process.env.SB_API_PREFIX ? `/${process.env.SB_API_PREFIX}` : '';
apiServer.use(restify.plugins.jsonp());
apiServer.use(restify.plugins.bodyParser({mapParams: true}));
apiServer.use(cors.actual);
bindService(apiServer, apiPrefix, managerService);
apiServer.listen(apiPortNumber, () => {
logging.info(`Manager listening at ${apiServer.url}${apiPrefix}`);
});
await accessKeyRepository.start(new RealClock());
}
function getPersistentFilename(file: string): string {
const stateDir = process.env.SB_STATE_DIR || DEFAULT_STATE_DIR;
return path.join(stateDir, file);
}
function getBinaryFilename(file: string): string {
const binDir = path.join(APP_BASE_DIR, 'bin');
return path.join(binDir, file);
}
process.on('unhandledRejection', (error: Error) => {
logging.error(`unhandledRejection: ${error.stack}`);
});
main().catch((error) => {
logging.error(error.stack);
process.exit(1);
});