2019-05-09 03:06:10 +00:00
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// ENiGMA½
|
|
|
|
const UserProps = require('./user_property.js');
|
|
|
|
const {
|
|
|
|
Errors,
|
|
|
|
ErrorReasons,
|
|
|
|
} = require('./enig_error.js');
|
|
|
|
const User = require('./user.js');
|
|
|
|
const {
|
|
|
|
recordLogin,
|
|
|
|
transformLoginError,
|
|
|
|
} = require('./user_login.js');
|
2019-05-10 01:56:04 +00:00
|
|
|
const Config = require('./config.js').get;
|
2019-05-09 03:06:10 +00:00
|
|
|
|
|
|
|
// deps
|
|
|
|
const _ = require('lodash');
|
|
|
|
const crypto = require('crypto');
|
2019-05-10 01:56:04 +00:00
|
|
|
const qrGen = require('qrcode-generator');
|
2019-05-09 03:06:10 +00:00
|
|
|
|
2019-05-10 01:56:04 +00:00
|
|
|
exports.prepareOTP = prepareOTP;
|
2019-06-14 01:47:04 +00:00
|
|
|
exports.createBackupCodes = createBackupCodes;
|
2019-05-25 04:27:50 +00:00
|
|
|
exports.createQRCode = createQRCode;
|
|
|
|
exports.otpFromType = otpFromType;
|
2019-05-10 01:56:04 +00:00
|
|
|
exports.loginFactor2_OTP = loginFactor2_OTP;
|
2019-05-09 03:06:10 +00:00
|
|
|
|
|
|
|
const OTPTypes = exports.OTPTypes = {
|
|
|
|
RFC6238_TOTP : 'rfc6238_TOTP', // Time-Based, SHA-512
|
|
|
|
RFC4266_HOTP : 'rfc4266_HOTP', // HMAC-Based, SHA-512
|
|
|
|
GoogleAuthenticator : 'googleAuth', // Google Authenticator is basically TOTP + quirks
|
|
|
|
};
|
|
|
|
|
|
|
|
function otpFromType(otpType) {
|
2019-05-10 01:56:04 +00:00
|
|
|
try {
|
|
|
|
return {
|
|
|
|
[ OTPTypes.RFC6238_TOTP ] : () => {
|
|
|
|
const totp = require('otplib/totp');
|
|
|
|
totp.options = { crypto, algorithm : 'sha256' };
|
|
|
|
return totp;
|
|
|
|
},
|
|
|
|
[ OTPTypes.RFC4266_HOTP ] : () => {
|
|
|
|
const hotp = require('otplib/hotp');
|
|
|
|
hotp.options = { crypto, algorithm : 'sha256' };
|
|
|
|
return hotp;
|
|
|
|
},
|
|
|
|
[ OTPTypes.GoogleAuthenticator ] : () => {
|
|
|
|
const googleAuth = require('otplib/authenticator');
|
|
|
|
googleAuth.options = { crypto };
|
|
|
|
return googleAuth;
|
|
|
|
},
|
|
|
|
}[otpType]();
|
|
|
|
} catch(e) {
|
|
|
|
// nothing
|
|
|
|
}
|
2019-05-09 03:06:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function generateOTPBackupCode() {
|
|
|
|
const consonants = 'bdfghjklmnprstvz'.split('');
|
|
|
|
const vowels = 'aiou'.split('');
|
|
|
|
|
|
|
|
const bits = [];
|
|
|
|
const rng = crypto.randomBytes(4);
|
|
|
|
|
|
|
|
for(let i = 0; i < rng.length / 2; ++i) {
|
|
|
|
const n = rng.readUInt16BE(i * 2);
|
|
|
|
|
|
|
|
const c1 = n & 0x0f;
|
|
|
|
const v1 = (n >> 4) & 0x03;
|
|
|
|
const c2 = (n >> 6) & 0x0f;
|
|
|
|
const v2 = (n >> 10) & 0x03;
|
|
|
|
const c3 = (n >> 12) & 0x0f;
|
|
|
|
|
|
|
|
bits.push([
|
|
|
|
consonants[c1],
|
|
|
|
vowels[v1],
|
|
|
|
consonants[c2],
|
|
|
|
vowels[v2],
|
|
|
|
consonants[c3],
|
|
|
|
].join(''));
|
|
|
|
}
|
|
|
|
|
|
|
|
return bits.join('-');
|
|
|
|
}
|
|
|
|
|
2019-06-14 01:47:04 +00:00
|
|
|
function createBackupCodes() {
|
2019-05-10 02:25:47 +00:00
|
|
|
const codes = [...Array(6)].map(() => generateOTPBackupCode());
|
|
|
|
return codes;
|
2019-05-09 03:06:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function validateAndConsumeBackupCode(user, token, cb) {
|
|
|
|
try
|
|
|
|
{
|
|
|
|
let validCodes = JSON.parse(user.getProperty(UserProps.AuthFactor2OTPBackupCodes));
|
2019-05-10 02:25:47 +00:00
|
|
|
const matchingCode = validCodes.find(c => c === token);
|
|
|
|
if(!matchingCode) {
|
|
|
|
return cb(Errors.BadLogin('Invalid OTP value supplied', ErrorReasons.Invalid2FA));
|
|
|
|
}
|
|
|
|
|
|
|
|
// We're consuming a match - remove it from available backup codes
|
|
|
|
validCodes = validCodes.filter(c => c !== matchingCode);
|
|
|
|
validCodes = JSON.stringify(validCodes);
|
|
|
|
user.persistProperty(UserProps.AuthFactor2OTPBackupCodes, validCodes, err => {
|
|
|
|
return cb(err);
|
2019-05-09 03:06:10 +00:00
|
|
|
});
|
|
|
|
} catch(e) {
|
|
|
|
return cb(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-10 01:56:04 +00:00
|
|
|
function createQRCode(otp, options, secret) {
|
2019-05-11 06:20:02 +00:00
|
|
|
try {
|
|
|
|
const uri = otp.keyuri(options.username || 'user', Config().general.boardName, secret);
|
|
|
|
const qrCode = qrGen(0, 'L');
|
|
|
|
qrCode.addData(uri);
|
|
|
|
qrCode.make();
|
|
|
|
|
|
|
|
options.qrType = options.qrType || 'ascii';
|
|
|
|
return {
|
|
|
|
ascii : qrCode.createASCII,
|
|
|
|
data : qrCode.createDataURL,
|
|
|
|
img : qrCode.createImgTag,
|
|
|
|
svg : qrCode.createSvgTag,
|
2019-06-14 01:47:04 +00:00
|
|
|
}[options.qrType](options.cellSize);
|
2019-05-11 06:20:02 +00:00
|
|
|
} catch(e) {
|
2019-06-14 04:54:56 +00:00
|
|
|
return '';
|
2019-05-11 06:20:02 +00:00
|
|
|
}
|
2019-05-10 01:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function prepareOTP(otpType, options, cb) {
|
|
|
|
if(!_.isFunction(cb)) {
|
|
|
|
cb = options;
|
|
|
|
options = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
const otp = otpFromType(otpType);
|
|
|
|
if(!otp) {
|
|
|
|
return cb(Errors.Invalid(`Unknown OTP type: ${otpType}`));
|
|
|
|
}
|
|
|
|
|
|
|
|
const secret = OTPTypes.GoogleAuthenticator === otpType ?
|
|
|
|
otp.generateSecret() :
|
|
|
|
crypto.randomBytes(64).toString('base64').substr(0, 32);
|
|
|
|
|
2019-06-14 01:47:04 +00:00
|
|
|
const qr = createQRCode(otp, options, secret);
|
2019-05-10 02:25:47 +00:00
|
|
|
|
2019-06-14 01:47:04 +00:00
|
|
|
return cb(null, { secret, qr } );
|
2019-05-10 01:56:04 +00:00
|
|
|
}
|
|
|
|
|
2019-05-09 03:06:10 +00:00
|
|
|
function loginFactor2_OTP(client, token, cb) {
|
|
|
|
if(client.user.authFactor < User.AuthFactors.Factor1) {
|
|
|
|
return cb(Errors.AccessDenied('OTP requires prior authentication factor 1'));
|
|
|
|
}
|
|
|
|
|
|
|
|
const otpType = client.user.getProperty(UserProps.AuthFactor2OTP);
|
2019-05-10 01:56:04 +00:00
|
|
|
const otp = otpFromType(otpType);
|
|
|
|
|
|
|
|
if(!otp) {
|
2019-05-09 03:06:10 +00:00
|
|
|
return cb(Errors.Invalid(`Unknown OTP type: ${otpType}`));
|
|
|
|
}
|
|
|
|
|
|
|
|
const secret = client.user.getProperty(UserProps.AuthFactor2OTPSecret);
|
|
|
|
if(!secret) {
|
|
|
|
return cb(Errors.Invalid('Missing OTP secret'));
|
|
|
|
}
|
|
|
|
|
|
|
|
const valid = otp.verify( { token, secret } );
|
|
|
|
|
|
|
|
const allowLogin = () => {
|
|
|
|
client.user.authFactor = User.AuthFactors.Factor2;
|
|
|
|
client.user.authenticated = true;
|
|
|
|
return recordLogin(client, cb);
|
|
|
|
};
|
|
|
|
|
|
|
|
if(valid) {
|
|
|
|
return allowLogin();
|
|
|
|
}
|
|
|
|
|
|
|
|
// maybe they punched in a backup code?
|
|
|
|
validateAndConsumeBackupCode(client.user, token, err => {
|
|
|
|
if(err) {
|
|
|
|
return cb(transformLoginError(err, client, client.user.username));
|
|
|
|
}
|
|
|
|
|
|
|
|
return allowLogin();
|
|
|
|
});
|
|
|
|
}
|