Skip to content

Commit

Permalink
Restrict master key reading from cluster settings API
Browse files Browse the repository at this point in the history
Signed-off-by: Vamsi Manohar <reddyvam@amazon.com>
  • Loading branch information
vamsi-amazon committed Jul 10, 2023
1 parent a816a58 commit c3cfd1a
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,10 @@
import java.util.ArrayList;
import java.util.List;
import lombok.SneakyThrows;
import org.apache.commons.lang3.StringUtils;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.opensearch.action.update.UpdateRequest;
import org.opensearch.client.Request;
import org.opensearch.client.RequestOptions;
import org.opensearch.client.Response;
import org.opensearch.client.ResponseException;
import org.opensearch.sql.datasource.model.DataSourceMetadata;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package org.opensearch.sql.datasource;

import static org.hamcrest.Matchers.equalTo;

import java.io.IOException;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.json.JSONObject;
import org.junit.Test;
import org.opensearch.client.ResponseException;
import org.opensearch.sql.legacy.TestUtils;
import org.opensearch.sql.ppl.PPLIntegTestCase;

public class DatasourceClusterSettingsIT extends PPLIntegTestCase {

private static final Logger LOG = LogManager.getLogger();
@Test
public void testGetDatasourceClusterSettings() throws IOException {
JSONObject clusterSettings = getAllClusterSettings();
assertThat(clusterSettings.query("/defaults/plugins.query.datasources.encryption.masterkey"),
equalTo(null));
}


@Test
public void testPutDatasourceClusterSettings() throws IOException {
final ResponseException exception =
expectThrows(ResponseException.class, () -> updateClusterSettings(new ClusterSetting(PERSISTENT,
"plugins.query.datasources.encryption.masterkey",
"masterkey")));
JSONObject resp = new JSONObject(TestUtils.getResponseBody(exception.getResponse()));
assertThat(resp.getInt("status"), equalTo(400));
assertThat(resp.query("/error/root_cause/0/reason"),
equalTo("final persistent setting [plugins.query.datasources.encryption.masterkey], not updateable"));
assertThat(resp.query("/error/type"), equalTo("settings_exception"));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ public class OpenSearchSettings extends Settings {
ENCYRPTION_MASTER_KEY.getKeyValue(),
"0000000000000000",
Setting.Property.NodeScope,
Setting.Property.Final);
Setting.Property.Final,
Setting.Property.Filtered);

public static final Setting<String> DATASOURCE_URI_ALLOW_HOSTS = Setting.simpleString(
Key.DATASOURCES_URI_ALLOWHOSTS.getKeyValue(),
Expand Down

0 comments on commit c3cfd1a

Please sign in to comment.