Skip to content

Commit

Permalink
Merge pull request #8542 from krisstern/feat/stable-2.414/backporting…
Browse files Browse the repository at this point in the history
…-2.414.3-1

Backporting for 2.414.3
  • Loading branch information
NotMyFault authored Oct 3, 2023
2 parents 74bd941 + be8fef2 commit ca94927
Show file tree
Hide file tree
Showing 7 changed files with 183 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ THE SOFTWARE.
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.23.0</version>
<version>1.24.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
Expand Down
7 changes: 7 additions & 0 deletions core/src/main/java/hudson/ProxyConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
import hudson.model.Descriptor;
import hudson.model.Saveable;
import hudson.model.listeners.SaveableListener;
import hudson.util.DaemonThreadFactory;
import hudson.util.FormValidation;
import hudson.util.NamingThreadFactory;
import hudson.util.Scrambler;
import hudson.util.Secret;
import hudson.util.XStream2;
Expand All @@ -58,6 +60,8 @@
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import java.util.regex.Pattern;
import jenkins.UserAgentURLConnectionDecorator;
Expand Down Expand Up @@ -370,6 +374,8 @@ public static HttpClient newHttpClient() {
return newHttpClientBuilder().followRedirects(HttpClient.Redirect.NORMAL).build();
}

private static final Executor httpClientExecutor = Executors.newCachedThreadPool(new NamingThreadFactory(new DaemonThreadFactory(), "Jenkins HttpClient"));

/**
* Create a new {@link HttpClient.Builder} preconfigured with Jenkins-specific default settings.
*
Expand Down Expand Up @@ -397,6 +403,7 @@ public static HttpClient.Builder newHttpClientBuilder() {
if (DEFAULT_CONNECT_TIMEOUT_MILLIS > 0) {
httpClientBuilder.connectTimeout(Duration.ofMillis(DEFAULT_CONNECT_TIMEOUT_MILLIS));
}
httpClientBuilder.executor(httpClientExecutor);
return httpClientBuilder;
}

Expand Down
15 changes: 7 additions & 8 deletions core/src/main/java/hudson/util/XStream2.java
Original file line number Diff line number Diff line change
Expand Up @@ -475,12 +475,8 @@ protected Class<? extends ConverterMatcher> computeValue(Class<?> type) {
return computeConverterClass(type);
}
};
private final ClassValue<Converter> cache = new ClassValue<Converter>() {
@Override
protected Converter computeValue(Class<?> type) {
return computeConverter(type);
}
};
private final ConcurrentHashMap<Class<?>, Converter> cache =
new ConcurrentHashMap<>();

private AssociatedConverterImpl(XStream xstream) {
this.xstream = xstream;
Expand All @@ -491,7 +487,9 @@ private Converter findConverter(@CheckForNull Class<?> t) {
if (t == null) {
return null;
}
return cache.get(t);
Converter result = cache.computeIfAbsent(t, unused -> computeConverter(t));
// ConcurrentHashMap does not allow null, so use this object to represent null
return result == this ? null : result;
}

@CheckForNull
Expand All @@ -515,7 +513,8 @@ private static Class<? extends ConverterMatcher> computeConverterClass(@NonNull
private Converter computeConverter(@NonNull Class<?> t) {
Class<? extends ConverterMatcher> cl = classCache.get(t);
if (cl == null) {
return null;
// See above.. this object in cache represents null
return this;
}
try {
Constructor<?> c = cl.getConstructors()[0];
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*
* The MIT License
*
* Copyright (c) 2023, CloudBees, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/

package jenkins.telemetry.impl;

import edu.umd.cs.findbugs.annotations.NonNull;
import hudson.Extension;
import hudson.ExtensionList;
import hudson.TcpSlaveAgentListener;
import hudson.security.csrf.CrumbIssuer;
import java.time.LocalDate;
import jenkins.model.Jenkins;
import jenkins.security.apitoken.ApiTokenPropertyConfiguration;
import jenkins.telemetry.Telemetry;
import net.sf.json.JSONObject;

@Extension
public class SecurityConfiguration extends Telemetry {
@NonNull
@Override
public String getDisplayName() {
return "Basic information about security-related settings";

Check warning on line 43 in core/src/main/java/jenkins/telemetry/impl/SecurityConfiguration.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered line

Line 43 is not covered by tests
}

@NonNull
@Override
public LocalDate getStart() {
return LocalDate.of(2023, 8, 1);
}

@NonNull
@Override
public LocalDate getEnd() {
return LocalDate.of(2023, 12, 1);
}

@Override
public JSONObject createContent() {
final Jenkins j = Jenkins.get();
final JSONObject o = new JSONObject();
o.put("components", buildComponentInformation());

o.put("authorizationStrategy", j.getAuthorizationStrategy().getClass().getName());
o.put("securityRealm", j.getSecurityRealm().getClass().getName());
final CrumbIssuer crumbIssuer = j.getCrumbIssuer();
o.put("crumbIssuer", crumbIssuer == null ? null : crumbIssuer.getClass().getName());

Check warning on line 67 in core/src/main/java/jenkins/telemetry/impl/SecurityConfiguration.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Partially covered line

Line 67 is only partially covered, one branch is missing
o.put("markupFormatter", j.getMarkupFormatter().getClass().getName());
final TcpSlaveAgentListener tcpSlaveAgentListener = j.getTcpSlaveAgentListener();
o.put("inboundAgentListener", tcpSlaveAgentListener == null ? null : tcpSlaveAgentListener.configuredPort != -1);

Check warning on line 70 in core/src/main/java/jenkins/telemetry/impl/SecurityConfiguration.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Partially covered line

Line 70 is only partially covered, 2 branches are missing

final ApiTokenPropertyConfiguration apiTokenPropertyConfiguration = ExtensionList.lookupSingleton(ApiTokenPropertyConfiguration.class);
o.put("apiTokenCreationOfLegacyTokenEnabled", apiTokenPropertyConfiguration.isCreationOfLegacyTokenEnabled());
o.put("apiTokenTokenGenerationOnCreationEnabled", apiTokenPropertyConfiguration.isTokenGenerationOnCreationEnabled());
o.put("apiTokenUsageStatisticsEnabled", apiTokenPropertyConfiguration.isUsageStatisticsEnabled());

return o;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core">
This trial collects basic information about security settings:
<ul>
<li>The type of the currently configured security realm, e.g., <code>hudson.security.HudsonPrivateSecurityRealm</code></li>
<li>The type of the currently configured authorization strategy, e.g., <code>hudson.security.ProjectMatrixAuthorizationStrategy</code></li>
<li>The type of the currently configured crumb issuer, e.g., <code>hudson.security.csrf.DefaultCrumbIssuer</code></li>
<li>The type of the currently configured markup formatter, e.g., <code>hudson.markup.RawHtmlMarkupFormatter</code></li>
<li>Whether the TCP port for inbound agents is enabled (fixed or random) or disabled</li>
<li>Whether the API token option labeled <em>Generate a legacy API token for each newly created user (Not recommended)</em> is enabled or disabled</li>
<li>Whether the API token option labeled <em>Allow users to manually create a legacy API token (Not recommended)</em> is enabled or disabled</li>
<li>Whether the API token option labeled <em>Enable API Token usage statistics</em> is enabled or disabled</li>
</ul>

Additionally this trial collects the list of installed plugins, their version, and the version of Jenkins.
This data will be used to understand the popularity of the various implementations for each of these features.
</j:jelly>
71 changes: 71 additions & 0 deletions test/src/test/java/hudson/ProxyConfigurationTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*
* The MIT License
*
* Copyright 2023 CloudBees, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/

package hudson;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;

import hudson.model.InvisibleAction;
import hudson.model.UnprotectedRootAction;
import java.net.URI;
import org.junit.Assume;
import org.junit.Rule;
import org.junit.Test;
import org.jvnet.hudson.test.JenkinsRule;
import org.jvnet.hudson.test.TestExtension;
import org.kohsuke.stapler.HttpResponse;
import org.kohsuke.stapler.HttpResponses;

public final class ProxyConfigurationTest {

@Rule
public JenkinsRule r = new JenkinsRule();

@Test
public void httpClientExecutor() throws Exception {
Assume.assumeFalse("Too slow on Windows", Functions.isWindows());
for (int i = 0; i < 50_000; i++) {
if (i % 1_000 == 0) {
System.err.println("#" + i);
}
assertThat(ProxyConfiguration.newHttpClient().send(ProxyConfiguration.newHttpRequestBuilder(URI.create(r.getURL() + "ping/")).build(),
java.net.http.HttpResponse.BodyHandlers.discarding()).statusCode(),
is(200));
}
}

@TestExtension("httpClientExecutor")
public static final class Ping extends InvisibleAction implements UnprotectedRootAction {
@Override
public String getUrlName() {
return "ping";
}

public HttpResponse doIndex() {
return HttpResponses.ok();
}
}

}
2 changes: 1 addition & 1 deletion war/src/main/js/components/dropdowns/jumplists.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function init() {
* Appends a ⌄ button at the end of links which support jump lists
*/
function generateJumplistAccessors() {
document.querySelectorAll("A.model-link").forEach((link) => {
behaviorShim.specify("A.model-link", "-jumplist-", 999, (link) => {
const isFirefox = navigator.userAgent.indexOf("Firefox") !== -1;
// Firefox adds unwanted lines when copying buttons in text, so use a span instead
const dropdownChevron = document.createElement(
Expand Down

0 comments on commit ca94927

Please sign in to comment.