mirror of https://github.com/apache/lucene.git
Merge branch 'apache-https-master' into jira/solr-8593
This commit is contained in:
commit
3856ce4b5c
|
@ -113,7 +113,7 @@ Bug Fixes
|
|||
* LUCENE-7429: AnalyzerWrapper can now modify the normalization chain too and
|
||||
DelegatingAnalyzerWrapper does the right thing automatically. (Adrien Grand)
|
||||
|
||||
* Lucene's check for 32 or 64 bit JVM now works around security
|
||||
* LUCENE-7135: Lucene's check for 32 or 64 bit JVM now works around security
|
||||
manager blocking access to some properties (Aaron Madlon-Kay via
|
||||
Mike McCandless)
|
||||
|
||||
|
|
|
@ -89,6 +89,10 @@ New Features
|
|||
* SOLR-9442: Adds Array of NamedValuePair (json.nl=arrnvp) style to JSONResponseWriter.
|
||||
(Jonny Marks, Christine Poerschke)
|
||||
|
||||
* SOLR-9481: Authentication and Authorization plugins now work in standalone mode if security.json is placed in
|
||||
SOLR_HOME on every node. Editing config through API is supported but affects only that one node.
|
||||
(janhoy)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
* SOLR-9704: Facet Module / JSON Facet API: Optimize blockChildren facets that have
|
||||
|
@ -99,6 +103,9 @@ Bug Fixes
|
|||
* SOLR-9701: NPE in export handler when "fl" parameter is omitted.
|
||||
(Erick Erickson)
|
||||
|
||||
* SOLR-9433: SolrCore clean-up logic uses incorrect path to delete dataDir on failure to create a core.
|
||||
(Evan Sayer, shalin)
|
||||
|
||||
Other Changes
|
||||
----------------------
|
||||
|
||||
|
@ -202,10 +209,6 @@ New Features
|
|||
* SOLR-9654: Add "overrequest" parameter to JSON Facet API to control amount of overrequest
|
||||
on a distributed terms facet. (yonik)
|
||||
|
||||
* SOLR-9481: Authentication and Authorization plugins now work in standalone mode if security.json is placed in
|
||||
SOLR_HOME on every node. Editing config through API is supported but affects only that one node.
|
||||
(janhoy)
|
||||
|
||||
* SOLR-2212: Add a factory class corresponding to Lucene's NoMergePolicy. (Lance Norskog, Cao Manh Dat via shalin)
|
||||
|
||||
* SOLR-9670: Support SOLR_AUTHENTICATION_OPTS in solr.cmd (janhoy)
|
||||
|
|
|
@ -2631,7 +2631,7 @@ public final class SolrCore implements SolrInfoMBean, Closeable {
|
|||
|
||||
public static void deleteUnloadedCore(CoreDescriptor cd, boolean deleteDataDir, boolean deleteInstanceDir) {
|
||||
if (deleteDataDir) {
|
||||
File dataDir = new File(cd.getDataDir());
|
||||
File dataDir = new File(cd.getInstanceDir().resolve(cd.getDataDir()).toAbsolutePath().toString());
|
||||
try {
|
||||
FileUtils.deleteDirectory(dataDir);
|
||||
} catch (IOException e) {
|
||||
|
|
|
@ -119,6 +119,7 @@ public class BasicAuthPlugin extends AuthenticationPlugin implements ConfigEdita
|
|||
final String username = credentials.substring(0, p).trim();
|
||||
String pwd = credentials.substring(p + 1).trim();
|
||||
if (!authenticate(username, pwd)) {
|
||||
log.debug("Bad auth credentials supplied in Authorization header");
|
||||
authenticationFailure(response, "Bad credentials");
|
||||
} else {
|
||||
HttpServletRequestWrapper wrapper = new HttpServletRequestWrapper(request) {
|
||||
|
|
|
@ -20,6 +20,7 @@ import java.io.File;
|
|||
import java.nio.charset.StandardCharsets;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.Map;
|
||||
|
||||
import com.carrotsearch.randomizedtesting.rules.SystemPropertiesRestoreRule;
|
||||
|
@ -28,6 +29,7 @@ import org.apache.solr.SolrTestCaseJ4;
|
|||
import org.apache.solr.client.solrj.embedded.JettySolrRunner;
|
||||
import org.apache.solr.client.solrj.impl.HttpSolrClient;
|
||||
import org.apache.solr.client.solrj.request.CoreAdminRequest;
|
||||
import org.apache.solr.client.solrj.request.CoreStatus;
|
||||
import org.apache.solr.common.SolrException;
|
||||
import org.apache.solr.common.SolrInputDocument;
|
||||
import org.apache.solr.common.params.CoreAdminParams;
|
||||
|
@ -279,6 +281,59 @@ public class CoreAdminHandlerTest extends SolrTestCaseJ4 {
|
|||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteInstanceDirAfterCreateFailure() throws Exception {
|
||||
File solrHomeDirectory = new File(initCoreDataDir, getClass().getName() + "-corex-"
|
||||
+ System.nanoTime());
|
||||
solrHomeDirectory.mkdirs();
|
||||
copySolrHomeToTemp(solrHomeDirectory, "corex");
|
||||
File corex = new File(solrHomeDirectory, "corex");
|
||||
FileUtils.write(new File(corex, "core.properties"), "", StandardCharsets.UTF_8);
|
||||
JettySolrRunner runner = new JettySolrRunner(solrHomeDirectory.getAbsolutePath(), buildJettyConfig("/solr"));
|
||||
runner.start();
|
||||
|
||||
try (HttpSolrClient client = getHttpSolrClient(runner.getBaseUrl() + "/corex")) {
|
||||
client.setConnectionTimeout(SolrTestCaseJ4.DEFAULT_CONNECTION_TIMEOUT);
|
||||
client.setSoTimeout(SolrTestCaseJ4.DEFAULT_CONNECTION_TIMEOUT);
|
||||
SolrInputDocument doc = new SolrInputDocument();
|
||||
doc.addField("id", "123");
|
||||
client.add(doc);
|
||||
client.commit();
|
||||
}
|
||||
|
||||
Path dataDir = null;
|
||||
try (HttpSolrClient client = getHttpSolrClient(runner.getBaseUrl().toString())) {
|
||||
CoreStatus status = CoreAdminRequest.getCoreStatus("corex", true, client);
|
||||
String dataDirectory = status.getDataDirectory();
|
||||
dataDir = Paths.get(dataDirectory);
|
||||
assertTrue(Files.exists(dataDir));
|
||||
}
|
||||
|
||||
File subHome = new File(solrHomeDirectory, "corex" + File.separator + "conf");
|
||||
String top = SolrTestCaseJ4.TEST_HOME() + "/collection1/conf";
|
||||
FileUtils.copyFile(new File(top, "bad-error-solrconfig.xml"), new File(subHome, "solrconfig.xml"));
|
||||
|
||||
try (HttpSolrClient client = getHttpSolrClient(runner.getBaseUrl().toString())) {
|
||||
client.setConnectionTimeout(SolrTestCaseJ4.DEFAULT_CONNECTION_TIMEOUT);
|
||||
client.setSoTimeout(SolrTestCaseJ4.DEFAULT_CONNECTION_TIMEOUT);
|
||||
try {
|
||||
CoreAdminRequest.reloadCore("corex", client);
|
||||
} catch (Exception e) {
|
||||
// this is expected because we put a bad solrconfig -- ignore
|
||||
}
|
||||
|
||||
CoreAdminRequest.Unload req = new CoreAdminRequest.Unload(false);
|
||||
req.setDeleteDataDir(true);
|
||||
req.setDeleteInstanceDir(false); // important because the data directory is inside the instance directory
|
||||
req.setCoreName("corex");
|
||||
req.process(client);
|
||||
}
|
||||
|
||||
runner.stop();
|
||||
|
||||
assertTrue("The data directory was not cleaned up on unload after a failed core reload", Files.notExists(dataDir));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testNonexistentCoreReload() throws Exception {
|
||||
final CoreAdminHandler admin = new CoreAdminHandler(h.getCoreContainer());
|
||||
|
|
|
@ -73,6 +73,7 @@ public class BasicAuthStandaloneTest extends AbstractSolrTestCase {
|
|||
instance.setUp();
|
||||
jetty = createJetty(instance);
|
||||
securityConfHandler = new SecurityConfHandlerLocalForTesting(jetty.getCoreContainer());
|
||||
HttpClientUtil.clearRequestInterceptors(); // Clear out any old Authorization headers
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -101,8 +102,6 @@ public class BasicAuthStandaloneTest extends AbstractSolrTestCase {
|
|||
securityConfHandler.persistConf(new SecurityConfHandler.SecurityConfig()
|
||||
.setData(Utils.fromJSONString(STD_CONF.replaceAll("'", "\""))));
|
||||
securityConfHandler.securityConfEdited();
|
||||
log.debug("Newly written security.json is " + securityConfHandler.getSecurityConfig(false) +
|
||||
" and baseUrl is " + baseUrl);
|
||||
verifySecurityStatus(cl, baseUrl + authcPrefix, "authentication/class", "solr.BasicAuthPlugin", 20);
|
||||
|
||||
String command = "{\n" +
|
||||
|
|
Loading…
Reference in New Issue