1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/lib/auth.js

384 lines
9.9 KiB
JavaScript
Raw Permalink Normal View History

/* eslint prefer-spread: "off" */
'use strict';
const Crypto = require('crypto');
const jju = require('jju');
const Error = require('http-errors');
const Logger = require('./logger');
const load_plugins = require('./plugin-loader').load_plugins;
module.exports = Auth;
function Auth(config) {
let self = Object.create(Auth.prototype);
self.config = config;
self.logger = Logger.logger.child({sub: 'auth'});
self.secret = config.secret;
let plugin_params = {
config: config,
logger: self.logger,
};
if (config.users_file) {
if (!config.auth || !config.auth.htpasswd) {
// b/w compat
config.auth = config.auth || {};
config.auth.htpasswd = {file: config.users_file};
}
}
self.plugins = load_plugins(config, config.auth, plugin_params, function(p) {
return p.authenticate || p.allow_access || p.allow_publish;
});
self.plugins.unshift({
2016-11-07 18:15:38 +01:00
verdaccio_version: '1.1.0',
2015-04-08 22:54:59 +02:00
authenticate: function(user, password, cb) {
if (config.users != null
&& config.users[user] != null
&& (Crypto.createHash('sha1').update(password).digest('hex')
=== config.users[user].password)
) {
return cb(null, [user]);
}
return cb();
},
adduser: function(user, password, cb) {
if (config.users && config.users[user])
return cb( Error[403]('this user already exists') );
return cb();
},
});
2015-04-08 22:54:59 +02:00
function allow_action(action) {
return function(user, pkg, cb) {
let ok = pkg[action].reduce(function(prev, curr) {
if (user.groups.indexOf(curr) !== -1) return true;
return prev;
}, false);
2015-04-08 22:54:59 +02:00
if (ok) return cb(null, true);
2015-04-08 22:54:59 +02:00
if (user.name) {
cb( Error[403]('user ' + user.name + ' is not allowed to ' + action + ' package ' + pkg.name) );
2015-04-08 22:54:59 +02:00
} else {
cb( Error[403]('unregistered users are not allowed to ' + action + ' package ' + pkg.name) );
2015-04-08 22:54:59 +02:00
}
};
2015-04-08 22:54:59 +02:00
}
self.plugins.push({
authenticate: function(user, password, cb) {
return cb( Error[403]('bad username/password, access denied') );
},
2015-04-08 22:54:59 +02:00
add_user: function(user, password, cb) {
return cb( Error[409]('registration is disabled') );
},
2015-04-08 22:54:59 +02:00
allow_access: allow_action('access'),
allow_publish: allow_action('publish'),
});
return self;
}
Auth.prototype.authenticate = function(user, password, cb) {
let plugins = this.plugins.slice(0)
;(function next() {
let p = plugins.shift();
2015-04-08 22:54:59 +02:00
if (typeof(p.authenticate) !== 'function') {
return next();
2015-04-08 22:54:59 +02:00
}
p.authenticate(user, password, function(err, groups) {
if (err) return cb(err);
2014-11-16 13:37:50 +01:00
if (groups != null && groups != false)
return cb(err, authenticatedUser(user, groups));
next();
});
})();
};
Auth.prototype.add_user = function(user, password, cb) {
let self = this;
let plugins = this.plugins.slice(0)
;(function next() {
let p = plugins.shift();
let n = 'adduser';
if (typeof(p[n]) !== 'function') {
n = 'add_user';
}
if (typeof(p[n]) !== 'function') {
next();
} else {
p[n](user, password, function(err, ok) {
if (err) return cb(err);
if (ok) return self.authenticate(user, password, cb);
next();
});
}
})();
};
2015-04-08 22:54:59 +02:00
Auth.prototype.allow_access = function(package_name, user, callback) {
let plugins = this.plugins.slice(0);
let pkg = Object.assign({name: package_name},
2015-04-08 22:54:59 +02:00
this.config.get_package_spec(package_name))
;(function next() {
let p = plugins.shift();
2015-04-08 22:54:59 +02:00
if (typeof(p.allow_access) !== 'function') {
return next();
2015-04-08 22:54:59 +02:00
}
p.allow_access(user, pkg, function(err, ok) {
if (err) return callback(err);
if (ok) return callback(null, ok);
next(); // cb(null, false) causes next plugin to roll
});
})();
};
2015-04-08 22:54:59 +02:00
Auth.prototype.allow_publish = function(package_name, user, callback) {
let plugins = this.plugins.slice(0);
let pkg = Object.assign({name: package_name},
2015-04-08 22:54:59 +02:00
this.config.get_package_spec(package_name))
;(function next() {
let p = plugins.shift();
2015-04-08 22:54:59 +02:00
2015-04-21 18:41:50 +02:00
if (typeof(p.allow_publish) !== 'function') {
return next();
2015-04-08 22:54:59 +02:00
}
p.allow_publish(user, pkg, function(err, ok) {
if (err) return callback(err);
if (ok) return callback(null, ok);
next(); // cb(null, false) causes next plugin to roll
});
})();
};
2015-04-08 22:54:59 +02:00
2014-11-16 13:37:50 +01:00
Auth.prototype.basic_middleware = function() {
let self = this;
return function(req, res, _next) {
req.pause();
function next(err) {
req.resume();
// uncomment this to reject users with bad auth headers
// return _next.apply(null, arguments)
// swallow error, user remains unauthorized
// set remoteUserError to indicate that user was attempting authentication
if (err) req.remote_user.error = err.message;
return _next();
}
if (req.remote_user != null && req.remote_user.name !== undefined)
return next();
req.remote_user = buildAnonymousUser();
let authorization = req.headers.authorization;
if (authorization == null) return next();
let parts = authorization.split(' ');
if (parts.length !== 2)
return next( Error[400]('bad authorization header') );
let scheme = parts[0];
if (scheme === 'Basic') {
var credentials = new Buffer(parts[1], 'base64').toString();
} else if (scheme === 'Bearer') {
var credentials = self.aes_decrypt(new Buffer(parts[1], 'base64')).toString('utf8');
if (!credentials) return next();
} else {
return next();
}
let index = credentials.indexOf(':');
if (index < 0) return next();
let user = credentials.slice(0, index);
let pass = credentials.slice(index + 1);
2014-11-16 13:37:50 +01:00
self.authenticate(user, pass, function(err, user) {
if (!err) {
req.remote_user = user;
next();
} else {
req.remote_user = buildAnonymousUser();
next(err);
}
});
};
};
2014-11-16 13:37:50 +01:00
Auth.prototype.bearer_middleware = function() {
let self = this;
2014-11-16 13:37:50 +01:00
return function(req, res, _next) {
req.pause();
function next(_err) {
req.resume();
return _next.apply(null, arguments);
2014-11-16 13:37:50 +01:00
}
if (req.remote_user != null && req.remote_user.name !== undefined)
return next();
req.remote_user = buildAnonymousUser();
2014-11-16 13:37:50 +01:00
let authorization = req.headers.authorization;
if (authorization == null) return next();
2014-11-16 13:37:50 +01:00
let parts = authorization.split(' ');
2014-11-16 13:37:50 +01:00
if (parts.length !== 2)
return next( Error[400]('bad authorization header') );
2014-11-16 13:37:50 +01:00
let scheme = parts[0];
let token = parts[1];
2014-11-16 13:37:50 +01:00
if (scheme !== 'Bearer')
return next();
2014-11-16 13:37:50 +01:00
try {
var user = self.decode_token(token);
2014-11-16 13:37:50 +01:00
} catch(err) {
return next(err);
2014-11-16 13:37:50 +01:00
}
req.remote_user = authenticatedUser(user.u, user.g);
req.remote_user.token = token;
next();
};
};
2014-11-16 13:37:50 +01:00
Auth.prototype.cookie_middleware = function() {
let self = this;
return function(req, res, _next) {
req.pause();
function next(_err) {
req.resume();
return _next();
}
if (req.remote_user != null && req.remote_user.name !== undefined)
return next();
req.remote_user = buildAnonymousUser();
let token = req.cookies.get('token');
if (token == null) return next();
/* try {
var user = self.decode_token(token, 60*60)
2014-11-16 13:37:50 +01:00
} catch(err) {
return next()
}
req.remote_user = authenticatedUser(user.u, user.g)
2014-11-16 13:37:50 +01:00
req.remote_user.token = token
next()*/
let credentials = self.aes_decrypt(new Buffer(token, 'base64')).toString('utf8');
if (!credentials) return next();
let index = credentials.indexOf(':');
if (index < 0) return next();
let user = credentials.slice(0, index);
let pass = credentials.slice(index + 1);
self.authenticate(user, pass, function(err, user) {
if (!err) {
req.remote_user = user;
next();
} else {
req.remote_user = buildAnonymousUser();
next(err);
}
});
};
};
2014-11-04 15:47:03 +01:00
2014-11-16 13:37:50 +01:00
Auth.prototype.issue_token = function(user) {
let data = jju.stringify({
2014-11-16 13:37:50 +01:00
u: user.name,
g: user.real_groups && user.real_groups.length ? user.real_groups : undefined,
t: ~~(Date.now()/1000),
}, {indent: false});
2014-11-16 13:37:50 +01:00
data = new Buffer(data, 'utf8');
let mac = Crypto.createHmac('sha256', this.secret).update(data).digest();
return Buffer.concat([data, mac]).toString('base64');
};
2014-11-16 13:37:50 +01:00
Auth.prototype.decode_token = function(str, expire_time) {
let buf = new Buffer(str, 'base64');
if (buf.length <= 32) throw Error[401]('invalid token');
2014-11-16 13:37:50 +01:00
let data = buf.slice(0, buf.length - 32);
let their_mac = buf.slice(buf.length - 32);
let good_mac = Crypto.createHmac('sha256', this.secret).update(data).digest();
2014-11-16 13:37:50 +01:00
their_mac = Crypto.createHash('sha512').update(their_mac).digest('hex');
good_mac = Crypto.createHash('sha512').update(good_mac).digest('hex');
if (their_mac !== good_mac) throw Error[401]('bad signature');
2014-11-16 13:37:50 +01:00
// make token expire in 24 hours
// TODO: make configurable?
expire_time = expire_time || 24*60*60;
2014-11-16 13:37:50 +01:00
data = jju.parse(data.toString('utf8'));
2014-11-16 13:37:50 +01:00
if (Math.abs(data.t - ~~(Date.now()/1000)) > expire_time)
throw Error[401]('token expired');
2014-11-16 13:37:50 +01:00
return data;
};
2014-11-16 13:37:50 +01:00
Auth.prototype.aes_encrypt = function(buf) {
let c = Crypto.createCipher('aes192', this.secret);
let b1 = c.update(buf);
let b2 = c.final();
return Buffer.concat([b1, b2]);
};
Auth.prototype.aes_decrypt = function(buf) {
try {
let c = Crypto.createDecipher('aes192', this.secret);
let b1 = c.update(buf);
let b2 = c.final();
return Buffer.concat([b1, b2]);
} catch(_) {
return new Buffer(0);
}
};
function buildAnonymousUser() {
return {
name: undefined,
// groups without '$' are going to be deprecated eventually
groups: ['$all', '$anonymous', '@all', '@anonymous', 'all', 'undefined', 'anonymous'],
2014-11-16 13:37:50 +01:00
real_groups: [],
};
}
function authenticatedUser(name, groups) {
let _groups = (groups || []).concat(['$all', '$authenticated', '@all', '@authenticated', 'all']);
return {
name: name,
2014-11-16 13:37:50 +01:00
groups: _groups,
real_groups: groups,
};
}