| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- const AuthenticationManager = require('./AuthenticationManager')
- const OError = require('@overleaf/o-error')
- const LoginRateLimiter = require('../Security/LoginRateLimiter')
- const UserUpdater = require('../User/UserUpdater')
- const Metrics = require('metrics-sharelatex')
- const logger = require('logger-sharelatex')
- const querystring = require('querystring')
- const Settings = require('settings-sharelatex')
- const basicAuth = require('basic-auth-connect')
- const crypto = require('crypto')
- const UserHandler = require('../User/UserHandler')
- const UserSessionsManager = require('../User/UserSessionsManager')
- const SessionStoreManager = require('../../infrastructure/SessionStoreManager')
- const Analytics = require('../Analytics/AnalyticsManager')
- const passport = require('passport')
- const NotificationsBuilder = require('../Notifications/NotificationsBuilder')
- const UrlHelper = require('../Helpers/UrlHelper')
- const AsyncFormHelper = require('../Helpers/AsyncFormHelper')
- const SudoModeHandler = require('../SudoMode/SudoModeHandler')
- const _ = require('lodash')
- const OError = require('@overleaf/o-error')
- const {
- acceptsJson
- } = require('../../infrastructure/RequestContentTypeDetection')
- function send401WithChallenge(res) {
- res.setHeader('WWW-Authenticate', 'OverleafLogin')
- res.sendStatus(401)
- }
- const AuthenticationController = {
- serializeUser(user, callback) {
- if (!user._id || !user.email) {
- const err = new Error('serializeUser called with non-user object')
- logger.warn({ user }, err.message)
- return callback(err)
- }
- const lightUser = {
- _id: user._id,
- first_name: user.first_name,
- last_name: user.last_name,
- isAdmin: user.isAdmin,
- staffAccess: user.staffAccess,
- email: user.email,
- referal_id: user.referal_id,
- session_created: new Date().toISOString(),
- ip_address: user._login_req_ip,
- must_reconfirm: user.must_reconfirm,
- v1_id: user.overleaf != null ? user.overleaf.id : undefined
- }
- callback(null, lightUser)
- },
- deserializeUser(user, cb) {
- cb(null, user)
- },
- passportLogin(req, res, next) {
- // This function is middleware which wraps the passport.authenticate middleware,
- // so we can send back our custom `{message: {text: "", type: ""}}` responses on failure,
- // and send a `{redir: ""}` response on success
- passport.authenticate('local', function(err, user, info) {
- if (err) {
- return next(err)
- }
- if (user) {
- // `user` is either a user object or false
- return AuthenticationController.finishLogin(user, req, res, next)
- } else {
- if (info.redir != null) {
- return res.json({ redir: info.redir })
- } else {
- return res.json({ message: info })
- }
- }
- })(req, res, next)
- },
- finishLogin(user, req, res, next) {
- if (user === false) {
- return res.redirect('/login')
- } // OAuth2 'state' mismatch
- const Modules = require('../../infrastructure/Modules')
- Modules.hooks.fire('preFinishLogin', req, res, user, function(
- error,
- results
- ) {
- if (error) {
- return next(error)
- }
- if (results.some(result => result && result.doNotFinish)) {
- return
- }
- if (user.must_reconfirm) {
- return AuthenticationController._redirectToReconfirmPage(req, res, user)
- }
- const redir =
- AuthenticationController._getRedirectFromSession(req) || '/project'
- _loginAsyncHandlers(req, user)
- _afterLoginSessionSetup(req, user, function(err) {
- if (err) {
- return next(err)
- }
- SudoModeHandler.activateSudoMode(user._id, function(err) {
- if (err) {
- logger.err(
- { err, user_id: user._id },
- 'Error activating Sudo Mode on login, continuing'
- )
- }
- AuthenticationController._clearRedirectFromSession(req)
- AsyncFormHelper.redirect(req, res, redir)
- })
- })
- })
- },
- doPassportLogin(req, username, password, done) {
- const email = username.toLowerCase()
- const Modules = require('../../infrastructure/Modules')
- Modules.hooks.fire('preDoPassportLogin', req, email, function(
- err,
- infoList
- ) {
- if (err) {
- return done(err)
- }
- const info = infoList.find(i => i != null)
- if (info != null) {
- return done(null, false, info)
- }
- LoginRateLimiter.processLoginRequest(email, function(err, isAllowed) {
- if (err) {
- return done(err)
- }
- if (!isAllowed) {
- logger.log({ email }, 'too many login requests')
- return done(null, null, {
- text: req.i18n.translate('to_many_login_requests_2_mins'),
- type: 'error'
- })
- }
- AuthenticationManager.authenticate({ email }, password, function(
- error,
- user
- ) {
- if (error != null) {
- return done(error)
- }
- if (user != null) {
- // async actions
- done(null, user)
- } else {
- AuthenticationController._recordFailedLogin()
- logger.log({ email }, 'failed log in')
- done(null, false, {
- text: req.i18n.translate('email_or_password_wrong_try_again'),
- type: 'error'
- })
- }
- })
- })
- })
- },
- ipMatchCheck(req, user) {
- if (req.ip !== user.lastLoginIp) {
- NotificationsBuilder.ipMatcherAffiliation(user._id).create(req.ip)
- }
- return UserUpdater.updateUser(user._id.toString(), {
- $set: { lastLoginIp: req.ip }
- })
- },
- setInSessionUser(req, props) {
- const sessionUser = AuthenticationController.getSessionUser(req)
- if (!sessionUser) {
- return
- }
- for (let key in props) {
- const value = props[key]
- sessionUser[key] = value
- }
- return null
- },
- isUserLoggedIn(req) {
- const userId = AuthenticationController.getLoggedInUserId(req)
- return ![null, undefined, false].includes(userId)
- },
- // TODO: perhaps should produce an error if the current user is not present
- getLoggedInUserId(req) {
- const user = AuthenticationController.getSessionUser(req)
- if (user) {
- return user._id
- } else {
- return null
- }
- },
- getLoggedInUserV1Id(req) {
- const user = AuthenticationController.getSessionUser(req)
- if ((user != null ? user.v1_id : undefined) != null) {
- return user.v1_id
- } else {
- return null
- }
- },
- getSessionUser(req) {
- const sessionUser = _.get(req, ['session', 'user'])
- const sessionPassportUser = _.get(req, ['session', 'passport', 'user'])
- return sessionUser || sessionPassportUser || null
- },
- requireLogin() {
- const doRequest = function(req, res, next) {
- if (next == null) {
- next = function() {}
- }
- if (!AuthenticationController.isUserLoggedIn(req)) {
- if (acceptsJson(req)) return send401WithChallenge(res)
- return AuthenticationController._redirectToLoginOrRegisterPage(req, res)
- } else {
- req.user = AuthenticationController.getSessionUser(req)
- return next()
- }
- }
- return doRequest
- },
- requireOauth() {
- // require this here because module may not be included in some versions
- const Oauth2Server = require('../../../../modules/oauth2-server/app/src/Oauth2Server')
- return function(req, res, next) {
- if (next == null) {
- next = function() {}
- }
- const request = new Oauth2Server.Request(req)
- const response = new Oauth2Server.Response(res)
- return Oauth2Server.server.authenticate(request, response, {}, function(
- err,
- token
- ) {
- if (err) {
- // use a 401 status code for malformed header for git-bridge
- if (
- err.code === 400 &&
- err.message === 'Invalid request: malformed authorization header'
- ) {
- err.code = 401
- }
- // send all other errors
- return res
- .status(err.code)
- .json({ error: err.name, error_description: err.message })
- }
- req.oauth = { access_token: token.accessToken }
- req.oauth_token = token
- req.oauth_user = token.user
- return next()
- })
- }
- },
- validateUserSession: function() {
- // Middleware to check that the user's session is still good on key actions,
- // such as opening a a project. Could be used to check that session has not
- // exceeded a maximum lifetime (req.session.session_created), or for session
- // hijacking checks (e.g. change of ip address, req.session.ip_address). For
- // now, just check that the session has been loaded from the session store
- // correctly.
- return function(req, res, next) {
- // check that the session store is returning valid results
- if (req.session && !SessionStoreManager.hasValidationToken(req)) {
- // force user to update session
- req.session.regenerate(() => {
- // need to destroy the existing session and generate a new one
- // otherwise they will already be logged in when they are redirected
- // to the login page
- if (acceptsJson(req)) return send401WithChallenge(res)
- AuthenticationController._redirectToLoginOrRegisterPage(req, res)
- })
- } else {
- next()
- }
- }
- },
- _globalLoginWhitelist: [],
- addEndpointToLoginWhitelist(endpoint) {
- return AuthenticationController._globalLoginWhitelist.push(endpoint)
- },
- requireGlobalLogin(req, res, next) {
- if (
- AuthenticationController._globalLoginWhitelist.includes(
- req._parsedUrl.pathname
- )
- ) {
- return next()
- }
- if (req.headers['authorization'] != null) {
- AuthenticationController.httpAuth(req, res, next)
- } else if (AuthenticationController.isUserLoggedIn(req)) {
- next()
- } else {
- logger.log(
- { url: req.url },
- 'user trying to access endpoint not in global whitelist'
- )
- if (acceptsJson(req)) return send401WithChallenge(res)
- AuthenticationController.setRedirectInSession(req)
- res.redirect('/login')
- }
- },
- validateAdmin(req, res, next) {
- const adminDomains = Settings.adminDomains
- if (
- !adminDomains ||
- !(Array.isArray(adminDomains) && adminDomains.length)
- ) {
- return next()
- }
- const user = AuthenticationController.getSessionUser(req)
- if (!(user && user.isAdmin)) {
- return next()
- }
- const email = user.email
- if (email == null) {
- return next(
- new OError('[ValidateAdmin] Admin user without email address', {
- userId: user._id
- })
- )
- }
- if (!adminDomains.find(domain => email.endsWith(`@${domain}`))) {
- return next(
- new OError('[ValidateAdmin] Admin user with invalid email domain', {
- email: email,
- userId: user._id
- })
- )
- }
- return next()
- },
- httpAuth: basicAuth(function(user, pass) {
- let expectedPassword = Settings.httpAuthUsers[user]
- const isValid =
- expectedPassword &&
- expectedPassword.length === pass.length &&
- crypto.timingSafeEqual(Buffer.from(expectedPassword), Buffer.from(pass))
- if (!isValid) {
- logger.err({ user, pass }, 'invalid login details')
- }
- return isValid
- }),
- setRedirectInSession(req, value) {
- if (value == null) {
- value =
- Object.keys(req.query).length > 0
- ? `${req.path}?${querystring.stringify(req.query)}`
- : `${req.path}`
- }
- if (
- req.session != null &&
- !/^\/(socket.io|js|stylesheets|img)\/.*$/.test(value) &&
- !/^.*\.(png|jpeg|svg)$/.test(value)
- ) {
- const safePath = UrlHelper.getSafeRedirectPath(value)
- return (req.session.postLoginRedirect = safePath)
- }
- },
- _redirectToLoginOrRegisterPage(req, res) {
- if (
- req.query.zipUrl != null ||
- req.query.project_name != null ||
- req.path === '/user/subscription/new'
- ) {
- AuthenticationController._redirectToRegisterPage(req, res)
- } else {
- AuthenticationController._redirectToLoginPage(req, res)
- }
- },
- _redirectToLoginPage(req, res) {
- logger.log(
- { url: req.url },
- 'user not logged in so redirecting to login page'
- )
- AuthenticationController.setRedirectInSession(req)
- const url = `/login?${querystring.stringify(req.query)}`
- res.redirect(url)
- Metrics.inc('security.login-redirect')
- },
- _redirectToReconfirmPage(req, res, user) {
- logger.log(
- { url: req.url },
- 'user needs to reconfirm so redirecting to reconfirm page'
- )
- req.session.reconfirm_email = user != null ? user.email : undefined
- const redir = '/user/reconfirm'
- AsyncFormHelper.redirect(req, res, redir)
- },
- _redirectToRegisterPage(req, res) {
- logger.log(
- { url: req.url },
- 'user not logged in so redirecting to register page'
- )
- AuthenticationController.setRedirectInSession(req)
- const url = `/register?${querystring.stringify(req.query)}`
- res.redirect(url)
- Metrics.inc('security.login-redirect')
- },
- _recordSuccessfulLogin(userId, callback) {
- if (callback == null) {
- callback = function() {}
- }
- UserUpdater.updateUser(
- userId.toString(),
- {
- $set: { lastLoggedIn: new Date() },
- $inc: { loginCount: 1 }
- },
- function(error) {
- if (error != null) {
- callback(error)
- }
- Metrics.inc('user.login.success')
- callback()
- }
- )
- },
- _recordFailedLogin(callback) {
- Metrics.inc('user.login.failed')
- if (callback) callback()
- },
- _getRedirectFromSession(req) {
- let safePath
- const value = _.get(req, ['session', 'postLoginRedirect'])
- if (value) {
- safePath = UrlHelper.getSafeRedirectPath(value)
- }
- return safePath || null
- },
- _clearRedirectFromSession(req) {
- if (req.session != null) {
- delete req.session.postLoginRedirect
- }
- }
- }
- function _afterLoginSessionSetup(req, user, callback) {
- if (callback == null) {
- callback = function() {}
- }
- req.login(user, function(err) {
- if (err) {
- OError.tag(err, 'error from req.login', {
- user_id: user._id
- })
- return callback(err)
- }
- // Regenerate the session to get a new sessionID (cookie value) to
- // protect against session fixation attacks
- const oldSession = req.session
- req.session.destroy(function(err) {
- if (err) {
- OError.tag(err, 'error when trying to destroy old session', {
- user_id: user._id
- })
- return callback(err)
- }
- req.sessionStore.generate(req)
- // Note: the validation token is not writable, so it does not get
- // transferred to the new session below.
- for (let key in oldSession) {
- const value = oldSession[key]
- if (key !== '__tmp') {
- req.session[key] = value
- }
- }
- req.session.save(function(err) {
- if (err) {
- OError.tag(err, 'error saving regenerated session after login', {
- user_id: user._id
- })
- return callback(err)
- }
- UserSessionsManager.trackSession(user, req.sessionID, function() {})
- callback(null)
- })
- })
- })
- }
- function _loginAsyncHandlers(req, user) {
- UserHandler.setupLoginData(user, err => {
- if (err != null) {
- logger.warn({ err }, 'error setting up login data')
- }
- })
- LoginRateLimiter.recordSuccessfulLogin(user.email)
- AuthenticationController._recordSuccessfulLogin(user._id)
- AuthenticationController.ipMatchCheck(req, user)
- Analytics.recordEvent(user._id, 'user-logged-in', { ip: req.ip })
- Analytics.identifyUser(user._id, req.sessionID)
- logger.log(
- { email: user.email, user_id: user._id.toString() },
- 'successful log in'
- )
- req.session.justLoggedIn = true
- // capture the request ip for use when creating the session
- return (user._login_req_ip = req.ip)
- }
- module.exports = AuthenticationController
|