001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *     http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS,
014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 * See the License for the specific language governing permissions and
016 * limitations under the License.
017 */
018package org.apache.hadoop.hbase.http;
019
020import java.io.IOException;
021
022import javax.servlet.Filter;
023import javax.servlet.FilterChain;
024import javax.servlet.FilterConfig;
025import javax.servlet.ServletException;
026import javax.servlet.ServletRequest;
027import javax.servlet.ServletResponse;
028import javax.servlet.http.HttpServletRequest;
029import javax.servlet.http.HttpServletResponse;
030
031import org.apache.hadoop.conf.Configuration;
032import org.apache.hadoop.security.authorize.AccessControlList;
033import org.apache.yetus.audience.InterfaceAudience;
034
035@InterfaceAudience.Private
036public class AdminAuthorizedFilter implements Filter {
037
038  private Configuration conf;
039  private AccessControlList adminsAcl;
040
041  @Override public void init(FilterConfig filterConfig) throws ServletException {
042    adminsAcl = (AccessControlList) filterConfig.getServletContext().getAttribute(
043        HttpServer.ADMINS_ACL);
044    conf = (Configuration) filterConfig.getServletContext().getAttribute(
045        HttpServer.CONF_CONTEXT_ATTRIBUTE);
046  }
047
048  @Override
049  public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
050      throws IOException, ServletException {
051    if (!(request instanceof HttpServletRequest) || !(response instanceof HttpServletResponse)) {
052      throw new UnsupportedOperationException("Only accepts HTTP");
053    }
054    HttpServletRequest httpReq = (HttpServletRequest) request;
055    HttpServletResponse httpResp = (HttpServletResponse) response;
056
057    if (!HttpServer.hasAdministratorAccess(conf, adminsAcl, httpReq, httpResp)) {
058      return;
059    }
060
061    chain.doFilter(request, response);
062  }
063
064  @Override public void destroy() {}
065}