summaryrefslogtreecommitdiffstats
path: root/openecomp-be/backend/openecomp-sdc-security-util/src/main/java/org/openecomp/sdc/securityutil/filters/SessionValidationFilter.java
blob: 1684df4017f7fe0d31819f51f3c12734525d3087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.sdc.securityutil.filters;

import org.openecomp.sdc.securityutil.AuthenticationCookieUtils;
import org.openecomp.sdc.securityutil.CipherUtilException;
import org.openecomp.sdc.securityutil.ISessionValidationFilterConfiguration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;

public abstract class SessionValidationFilter implements Filter {
    private static final Logger log = LoggerFactory.getLogger(SessionValidationFilter.class.getName());
    private ISessionValidationFilterConfiguration filterConfiguration;
    private List<String> excludedUrls;

    public abstract ISessionValidationFilterConfiguration getFilterConfiguration();
    protected abstract Cookie addRoleToCookie(Cookie updatedCookie);
    protected abstract boolean isRoleValid(Cookie cookie);

    @Override
    public final void init(FilterConfig filterConfig) throws ServletException {
        filterConfiguration = getFilterConfiguration();
        excludedUrls = filterConfiguration.getExcludedUrls();
    }

    @Override
    public final void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
        final HttpServletRequest httpRequest = (HttpServletRequest) servletRequest;
        final HttpServletResponse httpResponse = (HttpServletResponse) servletResponse;

        long starTime = System.nanoTime();
        log.debug("SessionValidationFilter: Validation started, received request with URL {}", httpRequest.getRequestURL());

        // request preprocessing
        boolean isContinueProcessing = preProcessingRequest(servletRequest, servletResponse, filterChain, httpRequest, httpResponse);
        List<Cookie> cookies = null;

        // request processing
        if (isContinueProcessing) {
            cookies = extractAuthenticationCookies(httpRequest.getCookies());
            isContinueProcessing = processRequest(httpRequest, httpResponse, cookies.get(0));
        }

        // response processing
        if(isContinueProcessing){
            log.debug("SessionValidationFilter: Cookie from request {} is valid, passing request to session extension ...", httpRequest.getRequestURL());
            Cookie updatedCookie = processResponse(cookies.get(cookies.size()-1));

            cleanResponceFromLeftoverCookies(httpResponse, cookies);

            // Use responce wrapper if servlet remove Cookie header from responce
//            OutputStream out = httpResponse.getOutputStream();
//            ResponceWrapper responceWrapper = new ResponceWrapper(httpResponse);

            log.debug("SessionValidationFilter: request {} passed all validations, passing request to endpoint ...", httpRequest.getRequestURL());
            httpResponse.addCookie(updatedCookie);
            filterChain.doFilter(servletRequest, httpResponse);

            // Use responce wrapper if servlet remove Cookie header from responce
//            responceWrapper.addCookie(updatedCookie);
//            httpResponse.setContentLength(responceWrapper.getData().length);
//            out.write(responceWrapper.getData());
//            out.close();
        }
        long durationSec = TimeUnit.NANOSECONDS.toSeconds(System.nanoTime() - starTime);
        long durationMil = TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - starTime);
        log.debug("SessionValidationFilter: Validation ended, running time for URL {} is: {} seconds {} miliseconds", httpRequest.getPathInfo(), durationSec, durationMil);
    }


    private boolean preProcessingRequest(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain, HttpServletRequest httpRequest, HttpServletResponse httpResponse) throws IOException, ServletException {

        boolean isPreProcessingSucceeded = true;
        if (isUrlFromWhiteList(httpRequest)) {
            log.debug("SessionValidationFilter: URL {} excluded from access validation , passing request to endpoint ... ", httpRequest.getRequestURL());
            filterChain.doFilter(servletRequest, servletResponse);
            isPreProcessingSucceeded = false;

        } else if (!isCookiePresent(httpRequest.getCookies())) {
            //redirect to portal app
            log.debug("SessionValidationFilter: Cookie from request {} is not valid, redirecting request to portal", httpRequest.getRequestURL());
            httpResponse.sendRedirect(filterConfiguration.getRedirectURL());
            isPreProcessingSucceeded = false;
        }
        return isPreProcessingSucceeded;
    }

    private boolean processRequest(HttpServletRequest httpRequest, HttpServletResponse httpResponse, Cookie cookie) throws IOException {
        boolean isProcessSuccessful= true;
        try {
            if (AuthenticationCookieUtils.isSessionExpired(cookie, filterConfiguration)) {
                //redirect to portal app
                log.debug("SessionValidationFilter: Session is expired, redirecting request {} to portal", httpRequest.getRequestURL());
                httpResponse.sendRedirect(filterConfiguration.getRedirectURL());
                isProcessSuccessful = false;
            }
        } catch (CipherUtilException e) {
            log.error("SessionValidationFilter: Cookie decryption error : {}", e.getMessage());
            log.debug("SessionValidationFilter: Cookie decryption error : {}", e.getMessage(), e);
            isProcessSuccessful = false;
        }

        if (!isRoleValid(cookie)) {
            //redirect to portal app
            log.debug("SessionValidationFilter: Role is not valid, redirecting request {} to portal", httpRequest.getRequestURL());
            httpResponse.sendRedirect(filterConfiguration.getRedirectURL());
            isProcessSuccessful = false;
        }
        return isProcessSuccessful;
    }

    private Cookie processResponse(Cookie cookie) throws IOException, ServletException {
        Cookie updatedCookie;
        try {
            updatedCookie = AuthenticationCookieUtils.updateSessionTime(cookie, filterConfiguration);
        } catch (CipherUtilException e) {
            log.error("SessionValidationFilter: Cookie cipher error ...");
            log.debug("SessionValidationFilter: Cookie cipher error : {}", e.getMessage(), e);
            throw new ServletException(e.getMessage());
        }
        updatedCookie = addRoleToCookie(updatedCookie);
        return updatedCookie;
    }

    private boolean isCookiePresent(Cookie[] cookies) {
        if (cookies == null) {
            return false;
        }
        String actualCookieName = filterConfiguration.getCookieName();
        boolean isPresent = Arrays.stream(cookies).anyMatch(c -> isCookieNameMatch(actualCookieName, c));
        if (!isPresent) {
            log.error("SessionValidationFilter: Session Validation Cookie missing ...");
            return false;
        }
        return true;
    }

    private List<Cookie> extractAuthenticationCookies(Cookie[] cookies) {
        String actualCookieName = filterConfiguration.getCookieName();
        log.debug("SessionValidationFilter: Extracting authentication cookies, {} cookies in request", cookies.length);
        List<Cookie> authenticationCookies = Arrays.stream(cookies).filter(c -> isCookieNameMatch(actualCookieName, c)).collect(Collectors.toList());
        log.debug("SessionValidationFilter: Extracted {} authentication cookies from request", authenticationCookies.size());
        if( authenticationCookies.size() > 1 ){
            authenticationCookies.forEach( cookie -> log.debug("SessionValidationFilter: Multiple cookies found cookie name, {} cookie value {}", cookie.getName(), cookie.getValue()));
        }
        return authenticationCookies;
    }


    // use contains for matching due issue with ecomp portal ( change cookie name, add prefix ), temp solution
    private boolean isCookieNameMatch(String actualCookieName, Cookie c) {
        return c.getName().contains(actualCookieName);
    }

    private boolean isUrlFromWhiteList(HttpServletRequest httpRequest) {
        if (httpRequest.getPathInfo() == null){
            final String servletPath = httpRequest.getServletPath().toLowerCase();
            log.debug("SessionValidationFilter: pathInfo is null, trying to check by servlet path white list validation -> ServletPath: {} ", servletPath);
            return excludedUrls.stream().
                    anyMatch( e -> servletPath.matches(e));
        }
        String pathInfo = httpRequest.getPathInfo().toLowerCase();
        log.debug("SessionValidationFilter: white list validation ->  PathInfo: {} ", pathInfo);
        return excludedUrls.stream().
                anyMatch( e -> pathInfo.matches(e));
    }

    private void cleanResponceFromLeftoverCookies(HttpServletResponse httpResponse, List<Cookie> cookiesList) {
        for (Cookie cookie:cookiesList){
            Cookie cleanCookie = AuthenticationCookieUtils.createUpdatedCookie(cookie, null, filterConfiguration);
            cleanCookie.setMaxAge(0);
            log.debug("SessionValidationFilter Cleaning Cookie cookie name: {} added to responce", cleanCookie.getName());
            httpResponse.addCookie(cleanCookie);
        }
    }

    @Override
    public void destroy() {

    }
}