Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "feat(2fa): Add auth scheme to require 2FA on session token" #17968

Merged
merged 2 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

const AppError = require('../../error');
const Boom = require('@hapi/boom');
const error = require('../../error');

// The following regexes and Hawk header parsing are taken from the Hawk library.
// See https://github.com/mozilla/hawk/blob/01f3d35479fe76654bb50f2886b37310555d088e/lib/utils.js#L126
Expand Down Expand Up @@ -109,15 +108,8 @@ function strategy(

try {
token = await getCredentialsFunc(parsedHeader.id);
} catch (err) {
// An error in the getCredentialsFunc means that the token was not found
// or it does not have a high enough assurance level to be used for this request.
// (e.g. a session token that is not 2FA verified)
if (err.errno === error.ERRNO.SESSION_UNVERIFIED) {
throw err;
}

// handle the empty token case below
} catch (_) {
// we'll handle the empty token case below
}

// If a token isn't found, this means it doesn't exist or expired and
Expand Down
2 changes: 1 addition & 1 deletion packages/fxa-auth-server/lib/routes/emails.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ module.exports = (
options: {
...EMAILS_DOCS.RECOVERY_EMAIL_STATUS_GET,
auth: {
strategy: 'sessionTokenNoAssurance',
strategy: 'sessionToken',
},
validate: {
query: {
Expand Down
2 changes: 1 addition & 1 deletion packages/fxa-auth-server/lib/routes/oauth/token.js
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ module.exports = ({ log, oauthDB, db, mailer, devices, statsd, glean }) => {
// XXX TODO: To be able to fully replace the /token route from oauth-server,
// this route must also be able to accept 'client_secret' as Basic Auth in header.
mode: 'optional',
strategy: 'sessionTokenNoAssurance',
strategy: 'sessionToken',
},
validate: {
// Note: the use of 'alternatives' here means that `grant_type` will default to
Expand Down
2 changes: 1 addition & 1 deletion packages/fxa-auth-server/lib/routes/recovery-codes.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ module.exports = (log, db, config, customs, mailer, glean) => {
options: {
...RECOVERY_CODES_DOCS.SESSION_VERIFY_RECOVERYCODE_POST,
auth: {
strategy: 'sessionTokenNoAssurance',
strategy: 'sessionToken',
payload: 'required',
},
validate: {
Expand Down
2 changes: 1 addition & 1 deletion packages/fxa-auth-server/lib/routes/session.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ module.exports = function (
options: {
...SESSION_DOCS.SESSION_REAUTH_POST,
auth: {
strategy: 'sessionTokenNoAssurance',
strategy: 'sessionToken',
payload: 'required',
},
validate: {
Expand Down
4 changes: 2 additions & 2 deletions packages/fxa-auth-server/lib/routes/totp.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ module.exports = (log, db, mailer, customs, config, glean, profileClient) => {
options: {
...TOTP_DOCS.TOTP_DESTROY_POST,
auth: {
strategy: 'sessionTokenNoAssurance',
strategy: 'sessionToken',
},
response: {},
},
Expand Down Expand Up @@ -397,7 +397,7 @@ module.exports = (log, db, mailer, customs, config, glean, profileClient) => {
options: {
...TOTP_DOCS.SESSION_VERIFY_TOTP_POST,
auth: {
strategy: 'sessionTokenNoAssurance',
strategy: 'sessionToken',
payload: 'required',
},
validate: {
Expand Down
21 changes: 0 additions & 21 deletions packages/fxa-auth-server/lib/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ async function create(log, error, config, routes, db, statsd, glean) {
const metricsContext = require('./metrics/context')(log, config);
const metricsEvents = require('./metrics/events')(log, config, glean);
const { sharedSecret: SUBSCRIPTIONS_SECRET } = config.subscriptions;
const otpUtils = require('./routes/utils/otp')(log, config, db);

function makeCredentialFn(dbGetFn) {
return function (id) {
Expand Down Expand Up @@ -377,22 +376,6 @@ async function create(log, error, config, routes, db, statsd, glean) {
// Register auth strategies for all token types. These strategies support Hawk (without validation) and FxA token types.
server.auth.scheme(
'fxa-hawk-session-token',
hawkFxAToken.strategy(
makeCredentialFn(async function (id) {
const sessionToken = await db.sessionToken(id);

const hasTotpToken = await otpUtils.hasTotpToken(sessionToken);

if (hasTotpToken && sessionToken.authenticatorAssuranceLevel <= 1) {
throw error.unverifiedSession();
}

return sessionToken;
})
)
);
server.auth.scheme(
'fxa-hawk-session-token-no-assurance',
hawkFxAToken.strategy(makeCredentialFn(db.sessionToken.bind(db)))
);
server.auth.scheme(
Expand Down Expand Up @@ -437,10 +420,6 @@ async function create(log, error, config, routes, db, statsd, glean) {
);

server.auth.strategy('sessionToken', 'fxa-hawk-session-token');
server.auth.strategy(
'sessionTokenNoAssurance',
'fxa-hawk-session-token-no-assurance'
);
server.auth.strategy('keyFetchToken', 'fxa-hawk-keyFetch-token');
server.auth.strategy(
// This strategy fetches the keyFetchToken with its
Expand Down
Loading