2016-12-28 16:49:51 -06:00
|
|
|
/**
|
2017-01-02 15:09:17 -06:00
|
|
|
* Misskey Entry Point!
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
Error.stackTraceLimit = Infinity;
|
|
|
|
|
2018-08-06 07:35:49 -05:00
|
|
|
require('events').EventEmitter.defaultMaxListeners = 128;
|
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
import * as os from 'os';
|
|
|
|
import * as cluster from 'cluster';
|
2017-01-23 19:28:14 -06:00
|
|
|
import * as debug from 'debug';
|
2017-11-06 04:59:14 -06:00
|
|
|
import chalk from 'chalk';
|
2018-07-13 09:25:32 -05:00
|
|
|
import * as portscanner from 'portscanner';
|
2019-01-30 10:09:52 -06:00
|
|
|
import * as isRoot from 'is-root';
|
2017-06-08 11:03:54 -05:00
|
|
|
import Xev from 'xev';
|
2018-07-28 03:52:54 -05:00
|
|
|
import * as program from 'commander';
|
2018-11-18 22:39:10 -06:00
|
|
|
import * as sysUtils from 'systeminformation';
|
2018-11-10 23:27:00 -06:00
|
|
|
import mongo, { nativeDbConn } from './db/mongodb';
|
2017-04-04 19:58:29 -05:00
|
|
|
|
2018-07-07 05:19:00 -05:00
|
|
|
import Logger from './misc/logger';
|
2018-06-10 16:48:25 -05:00
|
|
|
import serverStats from './daemons/server-stats';
|
|
|
|
import notesStats from './daemons/notes-stats';
|
2018-04-01 23:15:53 -05:00
|
|
|
import loadConfig from './config/load';
|
|
|
|
import { Config } from './config/types';
|
2018-11-10 23:27:00 -06:00
|
|
|
import { lessThan } from './prelude/array';
|
2019-01-30 10:08:43 -06:00
|
|
|
import * as pkg from '../package.json';
|
2017-01-16 17:19:34 -06:00
|
|
|
|
2019-02-02 10:20:21 -06:00
|
|
|
const logger = new Logger('core');
|
2019-02-02 10:24:59 -06:00
|
|
|
const bootLogger = logger.createSubLogger('boot');
|
|
|
|
const clusterLog = logger.createSubLogger('cluster');
|
2017-06-08 11:03:54 -05:00
|
|
|
const ev = new Xev();
|
2017-01-23 19:28:14 -06:00
|
|
|
|
2018-08-16 13:51:42 -05:00
|
|
|
if (process.env.NODE_ENV != 'production' && process.env.DEBUG == null) {
|
2018-07-28 04:01:49 -05:00
|
|
|
debug.enable('misskey');
|
2018-04-05 04:08:51 -05:00
|
|
|
}
|
|
|
|
|
2018-07-28 03:57:24 -05:00
|
|
|
//#region Command line argument definitions
|
2018-07-28 03:52:54 -05:00
|
|
|
program
|
|
|
|
.version(pkg.version)
|
|
|
|
.option('--no-daemons', 'Disable daemon processes (for debbuging)')
|
|
|
|
.option('--disable-clustering', 'Disable clustering')
|
|
|
|
.parse(process.argv);
|
2018-07-28 03:57:24 -05:00
|
|
|
//#endregion
|
2018-07-28 03:52:54 -05:00
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
/**
|
2017-02-27 01:11:49 -06:00
|
|
|
* Init process
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
2017-01-23 19:28:14 -06:00
|
|
|
function main() {
|
2018-08-15 10:13:24 -05:00
|
|
|
process.title = `Misskey (${cluster.isMaster ? 'master' : 'worker'})`;
|
2018-07-28 03:57:24 -05:00
|
|
|
|
2018-07-28 03:52:54 -05:00
|
|
|
if (cluster.isMaster || program.disableClustering) {
|
2018-07-07 05:19:00 -05:00
|
|
|
masterMain();
|
2017-06-08 11:03:54 -05:00
|
|
|
|
2018-07-28 03:52:54 -05:00
|
|
|
if (cluster.isMaster) {
|
|
|
|
ev.mount();
|
|
|
|
}
|
|
|
|
|
2018-07-28 15:34:08 -05:00
|
|
|
if (program.daemons) {
|
2018-07-28 03:52:54 -05:00
|
|
|
serverStats();
|
|
|
|
notesStats();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cluster.isWorker || program.disableClustering) {
|
2018-07-07 05:19:00 -05:00
|
|
|
workerMain();
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-27 01:11:49 -06:00
|
|
|
* Init master process
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
2018-07-07 05:19:00 -05:00
|
|
|
async function masterMain() {
|
2017-04-04 19:58:29 -05:00
|
|
|
let config: Config;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-02-02 10:33:34 -06:00
|
|
|
bootLogger.info('Welcome to Misskey!');
|
|
|
|
bootLogger.info(`Misskey v${pkg.version}`, true);
|
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
try {
|
|
|
|
// initialize app
|
2017-04-04 19:58:29 -05:00
|
|
|
config = await init();
|
2016-12-28 16:49:51 -06:00
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
2019-02-02 10:01:40 -06:00
|
|
|
bootLogger.error('Fatal error occurred during initialization');
|
2017-04-23 01:40:13 -05:00
|
|
|
process.exit(1);
|
2017-04-04 19:58:29 -05:00
|
|
|
}
|
|
|
|
|
2019-02-02 10:01:40 -06:00
|
|
|
bootLogger.succ('Misskey initialized');
|
2017-04-04 19:58:29 -05:00
|
|
|
|
2018-07-28 03:52:54 -05:00
|
|
|
if (!program.disableClustering) {
|
|
|
|
await spawnWorkers(config.clusterLimit);
|
|
|
|
}
|
|
|
|
|
2019-02-02 10:20:21 -06:00
|
|
|
bootLogger.succ(`Now listening on port ${config.port} on ${config.url}`, true);
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-27 01:11:49 -06:00
|
|
|
* Init worker process
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
2018-07-07 05:19:00 -05:00
|
|
|
async function workerMain() {
|
|
|
|
// start server
|
|
|
|
await require('./server').default();
|
2018-03-28 11:20:40 -05:00
|
|
|
|
2018-07-28 03:52:54 -05:00
|
|
|
if (cluster.isWorker) {
|
|
|
|
// Send a 'ready' message to parent process
|
|
|
|
process.send('ready');
|
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2018-11-18 22:27:38 -06:00
|
|
|
const runningNodejsVersion = process.version.slice(1).split('.').map(x => parseInt(x, 10));
|
|
|
|
const requiredNodejsVersion = [10, 0, 0];
|
|
|
|
const satisfyNodejsVersion = !lessThan(runningNodejsVersion, requiredNodejsVersion);
|
|
|
|
|
2018-11-19 20:23:32 -06:00
|
|
|
function isWellKnownPort(port: number): boolean {
|
|
|
|
return port < 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function isPortAvailable(port: number): Promise<boolean> {
|
|
|
|
return await portscanner.checkPortStatus(port, '127.0.0.1') === 'closed';
|
|
|
|
}
|
|
|
|
|
2018-11-18 22:39:10 -06:00
|
|
|
async function showMachine() {
|
2019-02-02 10:24:59 -06:00
|
|
|
const logger = bootLogger.createSubLogger('machine');
|
2018-11-18 22:39:10 -06:00
|
|
|
logger.info(`Hostname: ${os.hostname()}`);
|
|
|
|
logger.info(`Platform: ${process.platform}`);
|
|
|
|
logger.info(`Architecture: ${process.arch}`);
|
|
|
|
logger.info(`CPU: ${os.cpus().length} core`);
|
|
|
|
const mem = await sysUtils.mem();
|
|
|
|
const totalmem = (mem.total / 1024 / 1024 / 1024).toFixed(1);
|
|
|
|
const availmem = (mem.available / 1024 / 1024 / 1024).toFixed(1);
|
|
|
|
logger.info(`MEM: ${totalmem}GB (available: ${availmem}GB)`);
|
|
|
|
}
|
|
|
|
|
|
|
|
function showEnvironment(): void {
|
|
|
|
const env = process.env.NODE_ENV;
|
2019-02-02 10:24:59 -06:00
|
|
|
const logger = bootLogger.createSubLogger('env');
|
2018-11-18 22:39:10 -06:00
|
|
|
logger.info(typeof env == 'undefined' ? 'NODE_ENV is not set' : `NODE_ENV: ${env}`);
|
|
|
|
|
|
|
|
if (env !== 'production') {
|
2019-02-02 10:33:34 -06:00
|
|
|
logger.warn('The environment is not in production mode.');
|
|
|
|
logger.warn('Do not use for production purpose!', true);
|
2018-11-18 22:39:10 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
logger.info(`You ${isRoot() ? '' : 'do not '}have root privileges`);
|
|
|
|
}
|
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Init app
|
|
|
|
*/
|
2017-04-04 19:58:29 -05:00
|
|
|
async function init(): Promise<Config> {
|
2019-02-02 10:33:34 -06:00
|
|
|
showEnvironment();
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-02-02 10:24:59 -06:00
|
|
|
const nodejsLogger = bootLogger.createSubLogger('nodejs');
|
2019-02-02 10:01:40 -06:00
|
|
|
|
|
|
|
nodejsLogger.info(`Version ${runningNodejsVersion.join('.')}`);
|
2018-11-18 22:27:38 -06:00
|
|
|
|
|
|
|
if (!satisfyNodejsVersion) {
|
2019-02-02 10:01:40 -06:00
|
|
|
nodejsLogger.error(`Node.js version is less than ${requiredNodejsVersion.join('.')}. Please upgrade it.`);
|
2018-11-15 07:17:06 -06:00
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2018-11-18 22:39:10 -06:00
|
|
|
await showMachine();
|
2016-12-30 12:14:38 -06:00
|
|
|
|
2019-02-02 10:24:59 -06:00
|
|
|
const configLogger = bootLogger.createSubLogger('config');
|
2018-04-01 23:15:53 -05:00
|
|
|
let config;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-04-01 23:15:53 -05:00
|
|
|
try {
|
|
|
|
config = loadConfig();
|
|
|
|
} catch (exception) {
|
2018-07-14 06:58:21 -05:00
|
|
|
if (typeof exception === 'string') {
|
|
|
|
configLogger.error(exception);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
2018-04-01 23:15:53 -05:00
|
|
|
if (exception.code === 'ENOENT') {
|
2018-07-14 06:58:21 -05:00
|
|
|
configLogger.error('Configuration file not found');
|
|
|
|
process.exit(1);
|
2018-04-01 23:15:53 -05:00
|
|
|
}
|
|
|
|
throw exception;
|
|
|
|
}
|
2017-01-16 17:19:34 -06:00
|
|
|
|
2018-07-14 08:05:19 -05:00
|
|
|
configLogger.succ('Loaded');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-11-15 12:25:35 -06:00
|
|
|
if (config.port == null) {
|
2019-02-02 10:01:40 -06:00
|
|
|
bootLogger.error('The port is not configured. Please configure port.');
|
2018-11-15 12:25:35 -06:00
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2018-11-19 20:23:32 -06:00
|
|
|
if (process.platform === 'linux' && isWellKnownPort(config.port) && !isRoot()) {
|
2019-02-02 10:01:40 -06:00
|
|
|
bootLogger.error('You need root privileges to listen on well-known port on Linux');
|
2018-07-13 09:52:28 -05:00
|
|
|
process.exit(1);
|
2016-12-29 10:35:25 -06:00
|
|
|
}
|
|
|
|
|
2018-11-19 20:23:32 -06:00
|
|
|
if (!await isPortAvailable(config.port)) {
|
2019-02-02 10:01:40 -06:00
|
|
|
bootLogger.error(`Port ${config.port} is already in use`);
|
2018-07-13 09:52:28 -05:00
|
|
|
process.exit(1);
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Try to connect to MongoDB
|
2018-11-20 21:45:40 -06:00
|
|
|
await checkMongoDB(config);
|
2018-07-28 03:52:54 -05:00
|
|
|
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
2018-11-20 06:19:14 -06:00
|
|
|
const requiredMongoDBVersion = [3, 6];
|
|
|
|
|
2018-11-20 21:45:40 -06:00
|
|
|
function checkMongoDB(config: Config) {
|
2019-02-02 10:24:59 -06:00
|
|
|
const mongoDBLogger = bootLogger.createSubLogger('db');
|
2018-08-15 10:13:24 -05:00
|
|
|
const u = config.mongodb.user ? encodeURIComponent(config.mongodb.user) : null;
|
|
|
|
const p = config.mongodb.pass ? encodeURIComponent(config.mongodb.pass) : null;
|
|
|
|
const uri = `mongodb://${u && p ? `${u}:****@` : ''}${config.mongodb.host}:${config.mongodb.port}/${config.mongodb.db}`;
|
|
|
|
mongoDBLogger.info(`Connecting to ${uri}`);
|
2018-08-21 18:46:31 -05:00
|
|
|
|
2018-11-20 21:45:40 -06:00
|
|
|
mongo.then(() => {
|
2018-08-21 18:46:31 -05:00
|
|
|
mongoDBLogger.succ('Connectivity confirmed');
|
2018-11-20 06:19:14 -06:00
|
|
|
|
2018-11-20 21:45:40 -06:00
|
|
|
nativeDbConn().then(db => db.admin().serverInfo()).then(x => x.version).then((version: string) => {
|
|
|
|
mongoDBLogger.info(`Version: ${version}`);
|
|
|
|
if (lessThan(version.split('.').map(x => parseInt(x, 10)), requiredMongoDBVersion)) {
|
|
|
|
mongoDBLogger.error(`MongoDB version is less than ${requiredMongoDBVersion.join('.')}. Please upgrade it.`);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
});
|
2018-11-20 06:19:14 -06:00
|
|
|
}).catch(err => {
|
|
|
|
mongoDBLogger.error(err.message);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-11-20 14:26:48 -06:00
|
|
|
async function spawnWorkers(limit: number = Infinity) {
|
2018-11-19 21:25:58 -06:00
|
|
|
const workers = Math.min(limit, os.cpus().length);
|
2019-02-02 10:01:40 -06:00
|
|
|
bootLogger.info(`Starting ${workers} worker${workers === 1 ? '' : 's'}...`);
|
2018-11-19 21:25:58 -06:00
|
|
|
await Promise.all([...Array(workers)].map(spawnWorker));
|
2019-02-02 10:01:40 -06:00
|
|
|
bootLogger.succ('All workers started');
|
2018-11-19 21:25:58 -06:00
|
|
|
}
|
2018-11-05 12:48:23 -06:00
|
|
|
|
2018-11-19 21:25:58 -06:00
|
|
|
function spawnWorker(): Promise<void> {
|
2018-07-28 03:52:54 -05:00
|
|
|
return new Promise(res => {
|
2018-11-19 21:25:58 -06:00
|
|
|
const worker = cluster.fork();
|
|
|
|
worker.on('message', message => {
|
|
|
|
if (message !== 'ready') return;
|
|
|
|
res();
|
|
|
|
});
|
2017-08-10 08:06:47 -05:00
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2018-07-28 03:57:24 -05:00
|
|
|
//#region Events
|
|
|
|
|
2017-01-23 19:28:14 -06:00
|
|
|
// Listen new workers
|
|
|
|
cluster.on('fork', worker => {
|
2019-02-02 10:01:40 -06:00
|
|
|
clusterLog.info(`Process forked: [${worker.id}]`);
|
2017-01-23 19:28:14 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
// Listen online workers
|
|
|
|
cluster.on('online', worker => {
|
2019-02-02 10:01:40 -06:00
|
|
|
clusterLog.succ(`Process is now online: [${worker.id}]`);
|
2017-01-23 19:28:14 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
// Listen for dying workers
|
|
|
|
cluster.on('exit', worker => {
|
|
|
|
// Replace the dead worker,
|
|
|
|
// we're not sentimental
|
2019-02-02 10:01:40 -06:00
|
|
|
clusterLog.error(chalk.red(`[${worker.id}] died :(`));
|
2017-01-23 19:28:14 -06:00
|
|
|
cluster.fork();
|
|
|
|
});
|
|
|
|
|
2017-01-18 17:04:17 -06:00
|
|
|
// Display detail of unhandled promise rejection
|
|
|
|
process.on('unhandledRejection', console.dir);
|
|
|
|
|
2018-05-20 05:24:54 -05:00
|
|
|
// Display detail of uncaught exception
|
|
|
|
process.on('uncaughtException', err => {
|
2019-02-02 10:20:21 -06:00
|
|
|
logger.error(err);
|
2018-05-20 05:24:54 -05:00
|
|
|
});
|
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
// Dying away...
|
2018-05-20 05:24:54 -05:00
|
|
|
process.on('exit', code => {
|
2019-02-02 10:20:21 -06:00
|
|
|
logger.info(`The process is going to exit with code ${code}`);
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
2018-07-28 03:57:24 -05:00
|
|
|
|
|
|
|
//#endregion
|
2018-11-18 21:58:58 -06:00
|
|
|
|
|
|
|
main();
|