All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.networknt.auth.StatelessAuthHandler Maven / Gradle / Ivy

Go to download

A auth handler that handles OAuth 2.0 authorization code and get jwt token for the Single Page Applications.

The newest version!
/*
 * Copyright (c) 2018 Network New Technologies Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.networknt.auth;

import com.networknt.client.oauth.*;
import com.networknt.config.Config;
import com.networknt.config.ConfigException;
import com.networknt.config.JsonMapper;
import com.networknt.handler.Handler;
import com.networknt.handler.MiddlewareHandler;
import com.networknt.httpstring.HttpStringConstants;
import com.networknt.monad.Result;
import com.networknt.security.JwtVerifier;
import com.networknt.security.SecurityConfig;
import com.networknt.status.Status;
import com.networknt.utility.Constants;
import com.networknt.utility.ModuleRegistry;
import com.networknt.utility.Util;
import io.undertow.Handlers;
import io.undertow.server.HttpHandler;
import io.undertow.server.HttpServerExchange;
import io.undertow.server.handlers.Cookie;
import io.undertow.server.handlers.CookieImpl;
import io.undertow.server.handlers.CookieSameSiteMode;
import io.undertow.util.Headers;
import io.undertow.util.StatusCodes;
import org.jose4j.jwt.JwtClaims;
import org.jose4j.jwt.consumer.InvalidJwtException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.*;

/**
 * This is a handler that receives authorization code from OAuth 2.0 provider with authorization grant type.
 * It will take the redirected code and get JWT token along with client_id and client_secret defined in
 * client.yml and secret.yml config files. Once the tokens are received, they will be sent to the browser
 * with cookies immediately.
 *
 * This middleware handler also handles CSRF token in the header to prevent CSRF attack. After this action,
 * all subsequent requests from the browser will have jwt token in cookies and a CSRF token in headers.
 *
 * This handler get the access token and expiresIn from cookie. If the token is about to expire, renew it.
 * Next the access token will be parsed and put into the auditInfo object so that subsequent logic can
 * compare the csrf token from the jwt with the one from header.
 *
 * This handler usually will be used on the light-router and it must be injected after the CORS handler or tracing
 * handler is CORS is not enabled.
 *
 * If token does not exist or is not matched, an error will be returned. For the stateless SPA application,
 * the jwt access token is passed in a cookie instead of normal API to API calls with jwt token in Authorization
 * header.
 *
 * If the token is expired, it will use the refresh token to renew the access token and put both new access token
 * and refresh token into the response cookies in the same request.
 *
 * This is a handler that checks if CSRF token exists in the header for services exposed to Single Page
 * Application running on browsers. Normally, this handler only needs to be injected on the services in
 * the DMZ. For example, an aggregator or light-router to aggregate calls to multiple services or router
 * calls to multiple services from internal network.
 *
 * It compares the token from header to the token inside the JWT to ensure that it matches. If token does
 * not exist or is not matched, an error will be returned. For the stateless SPA application, the jwt
 * access token is passed in a cookie instead of normal API to API calls with jwt token in Authorization
 * header.
 *
 * This handler is a middleware handler and must be injected in handler.yml if needed.
 *
 * @author Steve Hu
 */
public class StatelessAuthHandler implements MiddlewareHandler {
    private static final Logger logger = LoggerFactory.getLogger(StatelessAuthHandler.class);
    private static final String CODE = "code";
    private static final String AUTHORIZATION_CODE_MISSING = "ERR10035";
    private static final String JWT_NOT_FOUND_IN_COOKIES = "ERR10040";
    private static final String INVALID_AUTH_TOKEN = "ERR10000";
    private static final String CSRF_HEADER_MISSING = "ERR10036";
    private static final String CSRF_TOKEN_MISSING_IN_JWT = "ERR10038";
    private static final String HEADER_CSRF_JWT_CSRF_NOT_MATCH = "ERR10039";
    private static final String REFRESH_TOKEN_RESPONSE_EMPTY = "ERR10037";
    private static final String ACCESS_TOKEN = "accessToken";
    private static final String REFRESH_TOKEN = "refreshToken";
    private static final String USER_TYPE = "userType";
    private static final String USER_ID = "userId";
    protected static final String SCOPES = "scopes";
    private static final String SCOPE = "scope";
    private static final String SCP = "scp";
    private static final String ROLE = "role";

    public static StatelessAuthConfig config =
            (StatelessAuthConfig)Config.getInstance().getJsonObjectConfig(StatelessAuthConfig.CONFIG_NAME, StatelessAuthConfig.class);
    static SecurityConfig securityConfig;
    static JwtVerifier jwtVerifier;
    static {
        securityConfig = SecurityConfig.load();
        jwtVerifier = new JwtVerifier(securityConfig);
    }

    private volatile HttpHandler next;

    public StatelessAuthHandler() {
        logger.info("StatelessAuthHandler is constructed.");
    }

    @Override
    public void handleRequest(final HttpServerExchange exchange) throws Exception {
        // This handler only cares about /authorization path. Pass to the next handler if path is not matched.
        if(logger.isDebugEnabled())
            logger.debug("exchange path = {} config path = {}", exchange.getRelativePath(), config.getAuthPath());

        if(exchange.getRelativePath().equals(config.getAuthPath())) {
            // first time authentication and return both access and refresh tokens in cookies
            Deque deque = exchange.getQueryParameters().get(CODE);
            String code = deque == null ? null : deque.getFirst();
            if (logger.isDebugEnabled()) logger.debug("code = {}", code);
            // check if code is in the query parameter
            if (code == null || code.trim().isEmpty()) {
                setExchangeStatus(exchange, AUTHORIZATION_CODE_MISSING);
                return;
            }
            String csrf = Util.getUUID();
            TokenRequest request = new AuthorizationCodeRequest();
            ((AuthorizationCodeRequest) request).setAuthCode(code);
            request.setCsrf(csrf);
            Result result = OauthHelper.getTokenResult(request);
            if(logger.isDebugEnabled()) logger.debug("result = {}", result);
            if (result.isFailure()) {
                Status status = result.getError();
                // we don't have access token in the response. Must be a status object.
                exchange.setStatusCode(status.getStatusCode());
                exchange.getResponseSender().send(status.toString());
                logger.error(status.toString());
                return;
            }
            List scopes = setCookies(exchange, result.getResult(), csrf);
            if(logger.isDebugEnabled()) logger.debug("scopes = {}", scopes);
            if (config.getRedirectUri() != null && !config.getRedirectUri().isEmpty()) {
                exchange.setStatusCode(StatusCodes.OK);
                Map rs = new HashMap<>();
                rs.put(SCOPES, scopes);
                // add redirectUri and denyUri to the returned json.
                rs.put("redirectUri", config.redirectUri);
                rs.put("denyUri", config.denyUri != null ? config.denyUri : config.redirectUri);
                exchange.getResponseSender().send(JsonMapper.toJson(rs));
            } else {
                exchange.setStatusCode(StatusCodes.OK);
                exchange.endExchange();
            }
            return;
        } else if (exchange.getRelativePath().equals(config.getLogoutPath())) {
            removeCookies(exchange);
            exchange.endExchange();
            return;
        } else {
            // first get the jwt token from httpOnly cookie sent by first step authentication
            String jwt = null;
            Cookie cookie = exchange.getRequestCookie(ACCESS_TOKEN);
            if(cookie != null) {
                jwt = cookie.getValue();
                // verify the jwt without caring about expiration and compare csrf token
                JwtClaims claims = jwtVerifier.verifyJwt(jwt, true, true);
                String jwtCsrf = claims.getStringClaimValue(Constants.CSRF);
                // get csrf token from the header. Return error is it doesn't exist.
                String headerCsrf = exchange.getRequestHeaders().getFirst(HttpStringConstants.CSRF_TOKEN);
                if(headerCsrf == null || headerCsrf.trim().length() == 0) {
                    setExchangeStatus(exchange, CSRF_HEADER_MISSING);
                    return;
                }
                // verify csrf from jwt token in httpOnly cookie
                if(jwtCsrf == null || jwtCsrf.trim().length() == 0) {
                    setExchangeStatus(exchange, CSRF_TOKEN_MISSING_IN_JWT);
                    return;
                }
                if(logger.isDebugEnabled()) logger.debug("headerCsrf = " + headerCsrf + " jwtCsrf = " + jwtCsrf);
                if(!headerCsrf.equals(jwtCsrf)) {
                    setExchangeStatus(exchange, HEADER_CSRF_JWT_CSRF_NOT_MATCH, headerCsrf, jwtCsrf);
                    return;
                }
                // renew the token 1.5 minute before it is expired to keep the session if the user is still using it
                // regardless the refreshToken is long term remember me or not. The private message API access repeatedly
                // per minute will make the session continue until the browser tab is closed.
                if(claims.getExpirationTime().getValueInMillis() - System.currentTimeMillis() < 90000) {
                    jwt = renewToken(exchange, exchange.getRequestCookie(REFRESH_TOKEN));
                }
            } else {
                // renew the token and set the cookies
                jwt = renewToken(exchange, exchange.getRequestCookie(REFRESH_TOKEN));
            }

            if(logger.isDebugEnabled()) logger.debug("jwt = " + jwt);
            if(jwt != null) exchange.getRequestHeaders().put(Headers.AUTHORIZATION, "Bearer " + jwt);
            // if there is no jwt and refresh token available in the cookies, the user not logged in or
            // the session is expired. Or the endpoint that is trying to access doesn't need a token
            // for example, in the light-portal command side, createUser doesn't need a token. let it go
            // to the service and an error will be back if the service does require a token.
            // don't call the next handler is the exchange is completed in renewToken when error occurs.
            if(!exchange.isComplete()) Handler.next(exchange, next);
        }
    }

    private String renewToken(HttpServerExchange exchange, Cookie cookie) throws Exception {
        String jwt = null;
        if(cookie != null) {
            String refreshToken = cookie.getValue();
            if(refreshToken != null) {
                TokenRequest tokenRequest = new RefreshTokenRequest();
                String csrf = Util.getUUID();
                tokenRequest.setCsrf(csrf);
                ((RefreshTokenRequest) tokenRequest).setRefreshToken(refreshToken);
                Result result = OauthHelper.getTokenResult(tokenRequest);
                if(result.isSuccess()) {
                    TokenResponse response = result.getResult();
                    setCookies(exchange, response, csrf);
                    jwt = response.getAccessToken();
                } else {
                    if(logger.isDebugEnabled()) logger.debug("Failed to get the access token from refresh token with error: {}", result.getError());
                    // remove the cookies to log out the user
                    removeCookies(exchange);
                    exchange.endExchange();
                }
            }
        }
        return jwt;
    }

    private void removeCookies(final HttpServerExchange exchange) {
        // first get the cookie from the request.
        Cookie accessTokenCookie = exchange.getRequestCookie(ACCESS_TOKEN);
        if(accessTokenCookie != null) {
            accessTokenCookie.setMaxAge(0)
                    .setValue("")
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setHttpOnly(true)
                    .setSecure(config.cookieSecure);
            exchange.setResponseCookie(accessTokenCookie);
        }
        Cookie refreshTokenCookie = exchange.getRequestCookie(REFRESH_TOKEN);
        if(refreshTokenCookie != null) {
            refreshTokenCookie.setMaxAge(0)
                    .setValue("")
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setHttpOnly(true)
                    .setSecure(config.cookieSecure);
            exchange.setResponseCookie(refreshTokenCookie);
        }
        Cookie csrfCookie = exchange.getRequestCookie(Constants.CSRF);
        if(csrfCookie != null) {
            csrfCookie.setMaxAge(0)
                    .setValue("")
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setHttpOnly(true)
                    .setSecure(config.cookieSecure);
            exchange.setResponseCookie(csrfCookie);
        }
        // remove userId
        Cookie userIdCookie = exchange.getRequestCookie(USER_ID);
        if(userIdCookie != null) {
            userIdCookie.setMaxAge(0)
                    .setValue("")
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setHttpOnly(false)
                    .setSecure(config.cookieSecure);

            exchange.setResponseCookie(userIdCookie);
        }
        Cookie userTypeCookie = exchange.getRequestCookie(USER_TYPE);
        if(userTypeCookie != null) {
            userTypeCookie.setMaxAge(0)
                    .setValue("")
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setHttpOnly(false)
                    .setSecure(config.cookieSecure);
            exchange.setResponseCookie(userTypeCookie);
        }
        Cookie rolesCookie = exchange.getRequestCookie(Constants.ROLES);
        if(rolesCookie != null) {
            rolesCookie.setMaxAge(0)
                    .setValue("")
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setHttpOnly(false)
                    .setSecure(config.cookieSecure);
            exchange.setResponseCookie(rolesCookie);
        }
        Cookie hostCookie = exchange.getRequestCookie(Constants.HOST);
        if(hostCookie != null) {
            hostCookie.setMaxAge(0)
                    .setValue("")
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setHttpOnly(false)
                    .setSecure(config.cookieSecure);
            exchange.setResponseCookie(hostCookie);
        }
        Cookie emailCookie = exchange.getRequestCookie(Constants.EMAIL);
        if(emailCookie != null) {
            emailCookie.setMaxAge(0)
                    .setValue("")
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setHttpOnly(false)
                    .setSecure(config.cookieSecure);
            exchange.setResponseCookie(emailCookie);
        }
        Cookie eidCookie = exchange.getRequestCookie(Constants.EID);
        if(eidCookie != null) {
            eidCookie.setMaxAge(0)
                    .setValue("")
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setHttpOnly(false)
                    .setSecure(config.cookieSecure);
            exchange.setResponseCookie(eidCookie);
        }

    }

    protected List setCookies(final HttpServerExchange exchange, TokenResponse response, String csrf) throws Exception {
        String accessToken = response.getAccessToken();
        String refreshToken = response.getRefreshToken();
        String remember = response.getRemember();
        int expiresIn = (int)response.getExpiresIn(); // used to set the cookie max age so that there is no chance for expired jwt.
        // parse the access token.
        JwtClaims claims = null;
        String roles = null;
        String userType = null;
        String userId = null;
        String eid = null;
        String host = null;
        String email = null;
        // The scopes list is returned and will be part of the response.
        List scopes = null;
        try {
            claims = jwtVerifier.verifyJwt(accessToken, true, true);
            roles = claims.getStringClaimValue(ROLE);
            if(roles == null) {
                roles = "user"; // default role for all authenticated users.
            }
            userType = claims.getStringClaimValue(Constants.USER_TYPE);
            userId = claims.getStringClaimValue(Constants.UID);
            eid = claims.getStringClaimValue(Constants.EID);
            scopes = claims.getStringListClaimValue(SCP);
            host = claims.getStringClaimValue(Constants.HOST);
            email = claims.getStringClaimValue(Constants.EML);
        } catch (InvalidJwtException e) {
            logger.error("Exception: ", e);
            setExchangeStatus(exchange, INVALID_AUTH_TOKEN);
            return null;
        }

        // put all the info into a cookie object
        exchange.setResponseCookie(new CookieImpl(ACCESS_TOKEN, accessToken)
                .setDomain(config.cookieDomain)
                .setPath(config.getCookiePath())
                .setMaxAge(expiresIn)
                .setHttpOnly(true)
                .setSameSiteMode(CookieSameSiteMode.NONE.toString())
                .setSecure(config.cookieSecure));
        exchange.setResponseCookie(new CookieImpl(REFRESH_TOKEN, refreshToken)
                .setDomain(config.cookieDomain)
                .setPath(config.getCookiePath())
                .setMaxAge((remember == null || remember.equals("N")) ? expiresIn : 7776000)  // 90 days if remember is "Y"
                .setHttpOnly(true)
                .setSameSiteMode(CookieSameSiteMode.NONE.toString())
                .setSecure(config.cookieSecure));
        // this is user info in cookie, and it is accessible for Javascript.
        exchange.setResponseCookie(new CookieImpl(USER_ID, userId)
                .setDomain(config.cookieDomain)
                .setPath(config.cookiePath)
                .setMaxAge(expiresIn)
                .setHttpOnly(false)
                .setSameSiteMode(CookieSameSiteMode.NONE.toString())
                .setSecure(config.cookieSecure));
        if(userType != null) {
            exchange.setResponseCookie(new CookieImpl(USER_TYPE, userType)
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setMaxAge(expiresIn)
                    .setHttpOnly(false)
                    .setSameSiteMode(CookieSameSiteMode.NONE.toString())
                    .setSecure(config.cookieSecure));
        }
        if(roles != null) {
            exchange.setResponseCookie(new CookieImpl(Constants.ROLES, roles)
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setMaxAge(expiresIn)
                    .setHttpOnly(false)
                    .setSameSiteMode(CookieSameSiteMode.NONE.toString())
                    .setSecure(config.cookieSecure));
        }
        if(host != null) {
            exchange.setResponseCookie(new CookieImpl(Constants.HOST, host)
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setMaxAge(expiresIn)
                    .setHttpOnly(false)
                    .setSameSiteMode(CookieSameSiteMode.NONE.toString())
                    .setSecure(config.cookieSecure));
        }
        if(email != null) {
            exchange.setResponseCookie(new CookieImpl(Constants.EMAIL, email)
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setMaxAge(expiresIn)
                    .setHttpOnly(false)
                    .setSameSiteMode(CookieSameSiteMode.NONE.toString())
                    .setSecure(config.cookieSecure));
        }
        if(eid != null) {
            exchange.setResponseCookie(new CookieImpl(Constants.EID, eid)
                    .setDomain(config.cookieDomain)
                    .setPath(config.cookiePath)
                    .setMaxAge(expiresIn)
                    .setHttpOnly(false)
                    .setSameSiteMode(CookieSameSiteMode.NONE.toString())
                    .setSecure(config.cookieSecure));
        }

        // this is another csrf token in cookie, and it is accessible for Javascript.
        exchange.setResponseCookie(new CookieImpl(Constants.CSRF, csrf)
                .setDomain(config.cookieDomain)
                .setPath(config.cookiePath)
                .setMaxAge(expiresIn)
                .setHttpOnly(false)
                .setSameSiteMode(CookieSameSiteMode.NONE.toString())
                .setSecure(config.cookieSecure));
        return scopes;
    }

    @Override
    public HttpHandler getNext() {
        return next;
    }

    @Override
    public MiddlewareHandler setNext(final HttpHandler next) {
        Handlers.handlerNotNull(next);
        this.next = next;
        return this;
    }

    @Override
    public boolean isEnabled() {
        return config.isEnabled();
    }

    @Override
    public void register() {
        ModuleRegistry.registerModule(StatelessAuthConfig.CONFIG_NAME, StatelessAuthHandler.class.getName(), Config.getNoneDecryptedInstance().getJsonMapConfigNoCache(StatelessAuthConfig.CONFIG_NAME), null);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy