blob: 60788a39b7671c7c9c5673750611f6ea59bf6d55 [file] [log] [blame]
// Copyright (C) 2013 The Android Open Source Project
//
// 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.googlesource.gerrit.plugins.javamelody;
import com.google.gerrit.extensions.annotations.PluginData;
import com.google.gerrit.httpd.AllRequestFilter;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.StringJoiner;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.bull.javamelody.MonitoringFilter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Singleton
class GerritMonitoringFilter extends AllRequestFilter {
private final JavamelodyFilter monitoring;
private final CapabilityChecker capabilityChecker;
@Inject
GerritMonitoringFilter(JavamelodyFilter monitoring, CapabilityChecker capabilityChecker) {
this.monitoring = monitoring;
this.capabilityChecker = capabilityChecker;
}
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
throws IOException, ServletException {
if (!(request instanceof HttpServletRequest) || !(response instanceof HttpServletResponse)) {
chain.doFilter(request, response);
return;
}
HttpServletResponse httpResponse = (HttpServletResponse) response;
HttpServletRequest httpRequest = (HttpServletRequest) request;
if (canMonitor(httpRequest)) {
monitoring.doFilter(request, response, chain);
} else {
httpResponse.sendError(HttpServletResponse.SC_FORBIDDEN, "Forbidden access");
}
}
@Override
public void init(FilterConfig config) throws ServletException {
monitoring.init(config);
}
@Override
public void destroy() {
monitoring.destroy();
}
private boolean canMonitor(HttpServletRequest httpRequest) {
if (httpRequest.getRequestURI().equals(monitoring.getJavamelodyUrl(httpRequest))) {
return capabilityChecker.canMonitor();
}
return true;
}
static class JavamelodyFilter extends MonitoringFilter {
private static final Logger log = LoggerFactory.getLogger(JavamelodyFilter.class);
private static final String JAVAMELODY_PREFIX = "javamelody";
private static final String HTTP_TRANSFORM_PATTERN = "http-transform-pattern";
private static final String GLOBAL_HTTP_TRANSFORM_PATTERN =
String.format("%s.%s", JAVAMELODY_PREFIX, HTTP_TRANSFORM_PATTERN);
private static final String STORAGE_DIR = "storage-directory";
private static final String GLOBAL_STORAGE_DIR =
String.format("%s.%s", JAVAMELODY_PREFIX, STORAGE_DIR);
static final String GERRIT_GROUPING =
new StringJoiner("|")
.add("[0-9a-f]{64}") // Long SHA for LFS
.add("[0-9a-f]{40}") // SHA-1
.add("[0-9A-F]{32}") // GWT cache ID
.add("(?<=files/)[^/]+") // review files part
.add("(?<=/projects/)[^/]+") // project name
.add("(?<=/accounts/)[^/]+") // account id
.add("(.+)(?=/git-upload-pack)") // Git fetch/clone
.add("(.+)(?=/git-receive-pack)") // Git push
.add("(.+)(?=/info/)") // Git and LFS operations
.add("\\d+") // various ids e.g. change id
.toString();
private final Path defaultDataDir;
@Inject
JavamelodyFilter(@PluginData Path defaultDataDir) {
this.defaultDataDir = defaultDataDir;
}
@Override
public void init(FilterConfig config) throws ServletException {
if (isPropertyUndefined(config, HTTP_TRANSFORM_PATTERN, GLOBAL_HTTP_TRANSFORM_PATTERN)) {
System.setProperty(GLOBAL_HTTP_TRANSFORM_PATTERN, GERRIT_GROUPING);
}
if (isPropertyUndefined(config, STORAGE_DIR, GLOBAL_STORAGE_DIR)) {
System.setProperty(GLOBAL_STORAGE_DIR, getStorageDir());
}
super.init(config);
}
public String getJavamelodyUrl(HttpServletRequest httpRequest) {
return getMonitoringUrl(httpRequest);
}
private String getStorageDir() {
// default to old path for javamelody storage-directory if it exists
final Path tmp = Paths.get(System.getProperty("java.io.tmpdir")).resolve(JAVAMELODY_PREFIX);
if (Files.isDirectory(tmp)) {
return tmp.toString();
}
// put javamelody data in default plugin data dir
if (!Files.isDirectory(defaultDataDir)) {
try {
Files.createDirectories(defaultDataDir);
} catch (IOException e) {
log.error("Creation of javamelody data dir [{}] failed.", defaultDataDir, e);
throw new RuntimeException(e);
}
}
return defaultDataDir.toString();
}
private boolean isPropertyUndefined(FilterConfig config, String name, String globalName) {
return System.getProperty(globalName) == null
&& config.getServletContext().getInitParameter(globalName) == null
&& config.getInitParameter(name) == null;
}
}
}