Files
cloudron-box/src/routes/provision.js

168 lines
8.3 KiB
JavaScript
Raw Normal View History

2018-01-29 15:47:26 -08:00
'use strict';
exports = module.exports = {
providerTokenAuth,
2024-04-26 20:06:53 +02:00
verifyUnprovisioned,
setup,
activate,
restore,
getStatus,
setupTokenAuth,
getBlockDevices,
detectIP
2018-01-29 15:47:26 -08:00
};
2021-06-29 14:26:34 -07:00
const assert = require('assert'),
AuditSource = require('../auditsource.js'),
2019-10-23 15:45:09 -07:00
BoxError = require('../boxerror.js'),
2018-01-29 15:47:26 -08:00
HttpError = require('connect-lastmile').HttpError,
HttpSuccess = require('connect-lastmile').HttpSuccess,
network = require('../network.js'),
paths = require('../paths.js'),
2018-12-11 15:29:47 -08:00
provision = require('../provision.js'),
safe = require('safetydance'),
superagent = require('../superagent.js'),
system = require('../system.js'),
users = require('../users.js');
2018-01-29 15:47:26 -08:00
function setupTokenAuth(req, res, next) {
assert.strictEqual(typeof req.body, 'object');
const setupToken = safe.fs.readFileSync(paths.SETUP_TOKEN_FILE, 'utf8');
if (!setupToken) return next();
if (!req.body.setupToken) return next(new HttpError(400, 'setup token required'));
if (setupToken.trim() !== req.body.setupToken) return next(new HttpError(422, 'setup token does not match'));
return next();
}
2024-04-26 20:06:53 +02:00
async function verifyUnprovisioned(req, res, next) {
const activated = await users.isActivated();
if (activated) return next(new HttpError(405, 'route unavailable post activation'));
next();
}
2021-08-25 19:41:46 -07:00
async function providerTokenAuth(req, res, next) {
2018-01-29 15:47:26 -08:00
assert.strictEqual(typeof req.body, 'object');
if (system.getProvider() === 'ami') {
2018-01-29 15:47:26 -08:00
if (typeof req.body.providerToken !== 'string' || !req.body.providerToken) return next(new HttpError(400, 'providerToken must be a non empty string'));
// IMDSv2 https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-instance-metadata-options.html
// https://aws.amazon.com/blogs/security/defense-in-depth-open-firewalls-reverse-proxies-ssrf-vulnerabilities-ec2-instance-metadata-service/
const imdsIp = req.body.ipv4Config?.provider === 'noop' ? '[fd00:ec2::254]' : '169.254.169.254'; // use ipv4config carefully, it's not validated yet at this point
const [tokenError, tokenResponse] = await safe(superagent.put(`http://${imdsIp}/latest/api/token`).set('x-aws-ec2-metadata-token-ttl-seconds', 600).timeout(30 * 1000).ok(() => true));
if (tokenError) return next(new HttpError(422, `Network error getting EC2 metadata session token: ${tokenError.message}`));
if (tokenResponse.status !== 200) return next(new HttpError(422, `Unable to get EC2 meta data session token. status: ${tokenResponse.status}`));
const imdsToken = tokenResponse.text;
const [error, response] = await safe(superagent.get(`http://${imdsIp}/latest/meta-data/instance-id`).set('x-aws-ec2-metadata-token', imdsToken).timeout(30 * 1000).ok(() => true));
2021-08-25 19:41:46 -07:00
if (error) return next(new HttpError(422, `Network error getting EC2 metadata: ${error.message}`));
if (response.status !== 200) return next(new HttpError(422, `Unable to get EC2 meta data. status: ${response.status}`));
2021-11-17 19:05:26 -08:00
if (response.text !== req.body.providerToken) return next(new HttpError(422, 'Instance ID does not match'));
2018-01-29 15:47:26 -08:00
2021-08-25 19:41:46 -07:00
next();
2018-01-29 15:47:26 -08:00
} else {
next();
}
}
async function setup(req, res, next) {
2018-01-29 15:47:26 -08:00
assert.strictEqual(typeof req.body, 'object');
if (!req.body.domainConfig || typeof req.body.domainConfig !== 'object') return next(new HttpError(400, 'domainConfig is required'));
2018-01-29 15:47:26 -08:00
const domainConfig = req.body.domainConfig;
2018-01-29 15:47:26 -08:00
if (typeof domainConfig.provider !== 'string' || !domainConfig.provider) return next(new HttpError(400, 'provider is required'));
if (typeof domainConfig.domain !== 'string' || !domainConfig.domain) return next(new HttpError(400, 'domain is required'));
if ('zoneName' in domainConfig && typeof domainConfig.zoneName !== 'string') return next(new HttpError(400, 'zoneName must be a string'));
if (!domainConfig.config || typeof domainConfig.config !== 'object') return next(new HttpError(400, 'config must be an object'));
if ('tlsConfig' in domainConfig && typeof domainConfig.tlsConfig !== 'object') return next(new HttpError(400, 'tlsConfig must be an object'));
if (domainConfig.tlsConfig && (!domainConfig.tlsConfig.provider || typeof domainConfig.tlsConfig.provider !== 'string')) return next(new HttpError(400, 'tlsConfig.provider must be a string'));
if ('ipv4Config' in req.body && typeof req.body.ipv4Config !== 'object') return next(new HttpError(400, 'ipv4Config must be an object'));
2024-04-25 19:33:04 +02:00
if ('ipv6Config' in req.body && typeof req.body.ipv6Config !== 'object') return next(new HttpError(400, 'ipv6Config must be an object'));
2018-11-02 17:24:38 -07:00
// it can take sometime to setup DNS, register cloudron
req.clearTimeout();
2024-04-25 19:33:04 +02:00
const [error] = await safe(provision.setup(domainConfig, req.body.ipv4Config || { provider: 'generic' }, req.body.ipv6Config || { provider: 'generic' }, AuditSource.fromRequest(req)));
if (error) return next(BoxError.toHttpError(error));
2018-01-29 15:47:26 -08:00
next(new HttpSuccess(200, {}));
2018-01-29 15:47:26 -08:00
}
2021-07-15 09:50:11 -07:00
async function activate(req, res, next) {
2018-01-29 15:47:26 -08:00
assert.strictEqual(typeof req.body, 'object');
if (typeof req.body.username !== 'string') return next(new HttpError(400, 'username must be string'));
if (typeof req.body.password !== 'string') return next(new HttpError(400, 'password must be string'));
if (typeof req.body.email !== 'string') return next(new HttpError(400, 'email must be string'));
if ('displayName' in req.body && typeof req.body.displayName !== 'string') return next(new HttpError(400, 'displayName must be string'));
2021-07-15 09:50:11 -07:00
const { username, password, email } = req.body;
const displayName = req.body.displayName || '';
2018-01-29 15:47:26 -08:00
const ip = req.headers['x-forwarded-for'] || req.socket.remoteAddress;
2018-01-29 15:47:26 -08:00
const [error, info] = await safe(provision.activate(username, password, email, displayName, ip, AuditSource.fromRequest(req)));
2021-07-15 09:50:11 -07:00
if (error) return next(BoxError.toHttpError(error));
2018-01-29 15:47:26 -08:00
2021-07-15 09:50:11 -07:00
next(new HttpSuccess(201, info));
2018-01-29 15:47:26 -08:00
}
async function restore(req, res, next) {
2018-01-29 15:47:26 -08:00
assert.strictEqual(typeof req.body, 'object');
if (!req.body.backupConfig || typeof req.body.backupConfig !== 'object') return next(new HttpError(400, 'backupConfig is required'));
const backupConfig = req.body.backupConfig;
2018-01-29 15:47:26 -08:00
if (typeof backupConfig.provider !== 'string') return next(new HttpError(400, 'provider is required'));
if (typeof backupConfig.format !== 'string') return next(new HttpError(400, 'format must be a string'));
if ('password' in backupConfig && typeof backupConfig.password !== 'string') return next(new HttpError(400, 'password must be a string'));
2022-06-27 09:17:01 -07:00
if ('encryptedFilenames' in req.body && typeof req.body.encryptedFilenames !== 'boolean') return next(new HttpError(400, 'encryptedFilenames must be a boolean'));
if (typeof req.body.remotePath !== 'string') return next(new HttpError(400, 'remotePath must be a string'));
2018-01-29 15:47:26 -08:00
if (typeof req.body.version !== 'string') return next(new HttpError(400, 'version must be a string'));
if ('ipv4Config' in req.body && typeof req.body.ipv4Config !== 'object') return next(new HttpError(400, 'ipv4Config must be an object'));
2024-04-25 19:33:04 +02:00
if ('ipv6Config' in req.body && typeof req.body.ipv6Config !== 'object') return next(new HttpError(400, 'ipv6Config must be an object'));
if ('skipDnsSetup' in req.body && typeof req.body.skipDnsSetup !== 'boolean') return next(new HttpError(400, 'skipDnsSetup must be a boolean'));
2019-11-11 09:49:18 -08:00
const options = {
skipDnsSetup: req.body.skipDnsSetup || false
};
2024-04-25 19:33:04 +02:00
const [error] = await safe(provision.restore(backupConfig, req.body.remotePath, req.body.version, req.body.ipv4Config || { provider: 'generic' }, req.body.ipv6Config || { provider: 'generic' }, options, AuditSource.fromRequest(req)));
if (error) return next(BoxError.toHttpError(error));
2018-01-29 15:47:26 -08:00
next(new HttpSuccess(200, {}));
2018-01-29 15:47:26 -08:00
}
async function getStatus(req, res, next) {
const [error, status] = await safe(provision.getStatus());
if (error) return next(BoxError.toHttpError(error));
next(new HttpSuccess(200, status));
}
async function getBlockDevices(req, res, next) {
const [error, devices] = await safe(system.getBlockDevices());
if (error) return next(new HttpError(500, error));
next(new HttpSuccess(200, { devices }));
}
async function detectIP(req, res, next) {
const result = await network.detectIP();
next(new HttpSuccess(200, { ipv4: result.ipv4, ipv6: result.ipv6 }));
}