| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684 |
- const AuthenticationManager = require('./AuthenticationManager')
- const SessionManager = require('./SessionManager')
- const OError = require('@overleaf/o-error')
- const LoginRateLimiter = require('../Security/LoginRateLimiter')
- const UserUpdater = require('../User/UserUpdater')
- const Metrics = require('@overleaf/metrics')
- const logger = require('@overleaf/logger')
- const querystring = require('querystring')
- const Settings = require('@overleaf/settings')
- const basicAuth = require('basic-auth')
- const tsscmp = require('tsscmp')
- const UserHandler = require('../User/UserHandler')
- const UserSessionsManager = require('../User/UserSessionsManager')
- 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 _ = require('lodash')
- const UserAuditLogHandler = require('../User/UserAuditLogHandler')
- const AnalyticsRegistrationSourceHelper = require('../Analytics/AnalyticsRegistrationSourceHelper')
- const {
- acceptsJson,
- } = require('../../infrastructure/RequestContentTypeDetection')
- const { hasAdminAccess } = require('../Helpers/AdminAuthorizationHelper')
- const Modules = require('../../infrastructure/Modules')
- const { expressify, promisify } = require('@overleaf/promise-utils')
- const { handleAuthenticateErrors } = require('./AuthenticationErrors')
- const EmailHelper = require('../Helpers/EmailHelper')
- function send401WithChallenge(res) {
- res.setHeader('WWW-Authenticate', 'OverleafLogin')
- res.sendStatus(401)
- }
- function checkCredentials(userDetailsMap, user, password) {
- const expectedPassword = userDetailsMap.get(user)
- const userExists = userDetailsMap.has(user) && expectedPassword // user exists with a non-null password
- let isValid = false
- if (userExists) {
- if (Array.isArray(expectedPassword)) {
- const isValidPrimary = Boolean(
- expectedPassword[0] && tsscmp(expectedPassword[0], password)
- )
- const isValidFallback = Boolean(
- expectedPassword[1] && tsscmp(expectedPassword[1], password)
- )
- isValid = isValidPrimary || isValidFallback
- } else {
- isValid = tsscmp(expectedPassword, password)
- }
- }
- if (!isValid) {
- logger.err({ user }, 'invalid login details')
- }
- Metrics.inc('security.http-auth.check-credentials', 1, {
- path: userExists ? 'known-user' : 'unknown-user',
- status: isValid ? 'pass' : 'fail',
- })
- return isValid
- }
- function reduceStaffAccess(staffAccess) {
- const reducedStaffAccess = {}
- for (const field in staffAccess) {
- if (staffAccess[field]) {
- reducedStaffAccess[field] = true
- }
- }
- return reducedStaffAccess
- }
- function userHasStaffAccess(user) {
- return user.staffAccess && Object.values(user.staffAccess).includes(true)
- }
- // TODO: Finish making these methods async
- 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,
- 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,
- analyticsId: user.analyticsId || user._id,
- alphaProgram: user.alphaProgram || undefined, // only store if set
- betaProgram: user.betaProgram || undefined, // only store if set
- }
- if (user.isAdmin) {
- lightUser.isAdmin = true
- }
- if (userHasStaffAccess(user)) {
- lightUser.staffAccess = reduceStaffAccess(user.staffAccess)
- }
- 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',
- { keepSessionInfo: true },
- async function (err, user, info) {
- if (err) {
- return next(err)
- }
- if (user) {
- // `user` is either a user object or false
- AuthenticationController.setAuditInfo(req, {
- method: 'Password login',
- })
- try {
- // We could investigate whether this can be done together with 'preFinishLogin' instead of being its own hook
- await Modules.promises.hooks.fire(
- 'saasLogin',
- { email: user.email },
- req
- )
- await AuthenticationController.promises.finishLogin(user, req, res)
- } catch (err) {
- return next(err)
- }
- } else {
- if (info.redir != null) {
- return res.json({ redir: info.redir })
- } else {
- res.status(info.status || 200)
- delete info.status
- const body = { message: info }
- const { errorReason } = info
- if (errorReason) {
- body.errorReason = errorReason
- delete info.errorReason
- }
- return res.json(body)
- }
- }
- }
- )(req, res, next)
- },
- async _finishLoginAsync(user, req, res) {
- if (user === false) {
- return AsyncFormHelper.redirect(req, res, '/login')
- } // OAuth2 'state' mismatch
- if (user.suspended) {
- return AsyncFormHelper.redirect(req, res, '/account-suspended')
- }
- if (Settings.adminOnlyLogin && !hasAdminAccess(user)) {
- return res.status(403).json({
- message: { type: 'error', text: 'Admin only panel' },
- })
- }
- const auditInfo = AuthenticationController.getAuditInfo(req)
- const anonymousAnalyticsId = req.session.analyticsId
- const isNewUser = req.session.justRegistered || false
- const results = await Modules.promises.hooks.fire(
- 'preFinishLogin',
- req,
- res,
- user
- )
- 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, anonymousAnalyticsId, isNewUser)
- const userId = user._id
- await UserAuditLogHandler.promises.addEntry(
- userId,
- 'login',
- userId,
- req.ip,
- auditInfo
- )
- await _afterLoginSessionSetupAsync(req, user)
- AuthenticationController._clearRedirectFromSession(req)
- AnalyticsRegistrationSourceHelper.clearSource(req.session)
- AnalyticsRegistrationSourceHelper.clearInbound(req.session)
- AsyncFormHelper.redirect(req, res, redir)
- },
- finishLogin(user, req, res, next) {
- AuthenticationController._finishLoginAsync(user, req, res).catch(err =>
- next(err)
- )
- },
- async doPassportLogin(req, username, password, done) {
- let user, info
- try {
- ;({ user, info } = await AuthenticationController._doPassportLogin(
- req,
- username,
- password
- ))
- } catch (error) {
- return done(error)
- }
- return done(undefined, user, info)
- },
- /**
- *
- * @param req
- * @param username
- * @param password
- * @returns {Promise<{ user: any, info: any}>}
- */
- async _doPassportLogin(req, username, password) {
- const email = EmailHelper.parseEmail(username)
- if (!email) {
- Metrics.inc('login_failure_reason', 1, { status: 'invalid_email' })
- return {
- user: null,
- info: {
- status: 400,
- type: 'error',
- text: req.i18n.translate('email_address_is_invalid'),
- },
- }
- }
- AuthenticationController.setAuditInfo(req, { method: 'Password login' })
- const { fromKnownDevice } = AuthenticationController.getAuditInfo(req)
- const auditLog = {
- ipAddress: req.ip,
- info: { method: 'Password login', fromKnownDevice },
- }
- let user, isPasswordReused
- try {
- ;({ user, isPasswordReused } =
- await AuthenticationManager.promises.authenticate(
- { email },
- password,
- auditLog,
- {
- enforceHIBPCheck: !fromKnownDevice,
- }
- ))
- } catch (error) {
- return {
- user: false,
- info: handleAuthenticateErrors(error, req),
- }
- }
- if (user && AuthenticationController.captchaRequiredForLogin(req, user)) {
- Metrics.inc('login_failure_reason', 1, { status: 'captcha_missing' })
- return {
- user: false,
- info: {
- text: req.i18n.translate('cannot_verify_user_not_robot'),
- type: 'error',
- errorReason: 'cannot_verify_user_not_robot',
- status: 400,
- },
- }
- } else if (user) {
- if (
- isPasswordReused &&
- AuthenticationController.getRedirectFromSession(req) == null
- ) {
- AuthenticationController.setRedirectInSession(
- req,
- '/compromised-password'
- )
- }
- // async actions
- return { user, info: undefined }
- } else {
- Metrics.inc('login_failure_reason', 1, { status: 'password_invalid' })
- AuthenticationController._recordFailedLogin()
- logger.debug({ email }, 'failed log in')
- return {
- user: false,
- info: {
- type: 'error',
- key: 'invalid-password-retry-or-reset',
- status: 401,
- },
- }
- }
- },
- captchaRequiredForLogin(req, user) {
- switch (AuthenticationController.getAuditInfo(req).captcha) {
- case 'trusted':
- case 'disabled':
- return false
- case 'solved':
- return false
- case 'skipped': {
- let required = false
- if (user.lastFailedLogin) {
- const requireCaptchaUntil =
- user.lastFailedLogin.getTime() +
- Settings.elevateAccountSecurityAfterFailedLogin
- required = requireCaptchaUntil >= Date.now()
- }
- Metrics.inc('force_captcha_on_login', 1, {
- status: required ? 'yes' : 'no',
- })
- return required
- }
- default:
- throw new Error('captcha middleware missing in handler chain')
- }
- },
- ipMatchCheck(req, user) {
- if (req.ip !== user.lastLoginIp) {
- NotificationsBuilder.ipMatcherAffiliation(user._id.toString()).create(
- req.ip,
- () => {}
- )
- }
- return UserUpdater.updateUser(
- user._id.toString(),
- {
- $set: { lastLoginIp: req.ip },
- },
- () => {}
- )
- },
- requireLogin() {
- const doRequest = function (req, res, next) {
- if (next == null) {
- next = function () {}
- }
- if (!SessionManager.isUserLoggedIn(req.session)) {
- if (acceptsJson(req)) return send401WithChallenge(res)
- return AuthenticationController._redirectToLoginOrRegisterPage(req, res)
- } else {
- req.user = SessionManager.getSessionUser(req.session)
- req.logger?.addFields({ userId: req.user._id })
- return next()
- }
- }
- return doRequest
- },
- /**
- * @param {string} scope
- * @return {import('express').Handler}
- */
- requireOauth(scope) {
- if (typeof scope !== 'string' || !scope) {
- throw new Error(
- "requireOauth() expects a non-empty string as 'scope' parameter"
- )
- }
- // require this here because module may not be included in some versions
- const Oauth2Server = require('../../../../modules/oauth2-server/app/src/Oauth2Server')
- const middleware = async (req, res, next) => {
- const request = new Oauth2Server.Request(req)
- const response = new Oauth2Server.Response(res)
- try {
- const token = await Oauth2Server.server.authenticate(
- request,
- response,
- { scope }
- )
- req.oauth = { access_token: token.accessToken }
- req.oauth_token = token
- req.oauth_user = token.user
- next()
- } catch (err) {
- if (
- err.code === 400 &&
- err.message === 'Invalid request: malformed authorization header'
- ) {
- err.code = 401
- }
- // send all other errors
- res
- .status(err.code)
- .json({ error: err.name, error_description: err.message })
- }
- }
- return expressify(middleware)
- },
- _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.requirePrivateApiAuth()(req, res, next)
- } else if (SessionManager.isUserLoggedIn(req.session)) {
- next()
- } else {
- logger.debug(
- { 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 = SessionManager.getSessionUser(req.session)
- if (!hasAdminAccess(user)) {
- 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,
- userId: user._id,
- })
- )
- }
- return next()
- },
- checkCredentials,
- requireBasicAuth: function (userDetails) {
- const userDetailsMap = new Map(Object.entries(userDetails))
- return function (req, res, next) {
- const credentials = basicAuth(req)
- if (
- !credentials ||
- !checkCredentials(userDetailsMap, credentials.name, credentials.pass)
- ) {
- send401WithChallenge(res)
- Metrics.inc('security.http-auth', 1, { status: 'reject' })
- } else {
- Metrics.inc('security.http-auth', 1, { status: 'accept' })
- next()
- }
- }
- },
- requirePrivateApiAuth() {
- return AuthenticationController.requireBasicAuth(Settings.httpAuthUsers)
- },
- setAuditInfo(req, info) {
- if (!req.__authAuditInfo) {
- req.__authAuditInfo = {}
- }
- Object.assign(req.__authAuditInfo, info)
- },
- getAuditInfo(req) {
- return req.__authAuditInfo || {}
- },
- 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.session.sharedProjectData ||
- req.path === '/user/subscription/new'
- ) {
- AuthenticationController._redirectToRegisterPage(req, res)
- } else {
- AuthenticationController._redirectToLoginPage(req, res)
- }
- },
- _redirectToLoginPage(req, res) {
- logger.debug(
- { 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.debug(
- { 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.debug(
- { 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) {
- req.login(user, { keepSessionInfo: true }, function (err) {
- if (err) {
- OError.tag(err, 'error from req.login', {
- user_id: user._id,
- })
- return callback(err)
- }
- delete req.session.__tmp
- delete req.session.csrfSecret
- 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 () {})
- if (!req.deviceHistory) {
- // Captcha disabled or SSO-based login.
- return callback()
- }
- req.deviceHistory.add(user.email)
- req.deviceHistory
- .serialize(req.res)
- .catch(err => {
- logger.err({ err }, 'cannot serialize deviceHistory')
- })
- .finally(() => callback())
- })
- })
- }
- const _afterLoginSessionSetupAsync = promisify(_afterLoginSessionSetup)
- function _loginAsyncHandlers(req, user, anonymousAnalyticsId, isNewUser) {
- UserHandler.promises.populateTeamInvites(user).catch(err => {
- logger.warn({ err }, 'error setting up login data')
- })
- LoginRateLimiter.recordSuccessfulLogin(user.email, () => {})
- AuthenticationController._recordSuccessfulLogin(user._id, () => {})
- AuthenticationController.ipMatchCheck(req, user)
- Analytics.recordEventForUserInBackground(user._id, 'user-logged-in', {
- source: req.session.saml
- ? 'saml'
- : req.user_info?.auth_provider || 'email-password',
- })
- Analytics.identifyUser(user._id, anonymousAnalyticsId, isNewUser)
- logger.debug(
- { email: user.email, userId: 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)
- }
- AuthenticationController.promises = {
- finishLogin: AuthenticationController._finishLoginAsync,
- }
- module.exports = AuthenticationController
|