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