forked from apache/hadoop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HDFS-17522. JournalNode web interfaces lack configs for X-FRAME-OPTIO…
…NS protection (apache#6814). Contributed by wangzhihui. Signed-off-by: Vinayakumar B <[email protected]> Signed-off-by: He Xiaoqiao <[email protected]>
- Loading branch information
1 parent
ce7d01f
commit 12e0ca6
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
...src/test/java/org/apache/hadoop/hdfs/qjournal/server/TestJournalNodeHttpServerXFrame.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with this | ||
* work for additional information regarding copyright ownership. The ASF | ||
* licenses this file to you 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 | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* 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 org.apache.hadoop.hdfs.qjournal.server; | ||
|
||
import java.io.IOException; | ||
import java.net.HttpURLConnection; | ||
import java.net.URL; | ||
|
||
import org.junit.After; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
import org.apache.hadoop.conf.Configuration; | ||
import org.apache.hadoop.hdfs.DFSConfigKeys; | ||
import org.apache.hadoop.hdfs.qjournal.MiniJournalCluster; | ||
import org.apache.hadoop.http.HttpServer2; | ||
|
||
/** | ||
* Test that X-Frame-Options works correctly with JournalNodeHttpServer. | ||
*/ | ||
public class TestJournalNodeHttpServerXFrame { | ||
|
||
private static final int NUM_JN = 1; | ||
|
||
private MiniJournalCluster cluster; | ||
|
||
@Test | ||
public void testJournalNodeXFrameOptionsEnabled() throws Exception { | ||
boolean xFrameEnabled = true; | ||
cluster = createCluster(xFrameEnabled); | ||
HttpURLConnection conn = getConn(cluster); | ||
String xfoHeader = conn.getHeaderField("X-FRAME-OPTIONS"); | ||
Assert.assertTrue("X-FRAME-OPTIONS is absent in the header", xfoHeader != null); | ||
Assert.assertTrue(xfoHeader.endsWith(HttpServer2.XFrameOption.SAMEORIGIN.toString())); | ||
} | ||
|
||
@Test | ||
public void testJournalNodeXFrameOptionsDisabled() throws Exception { | ||
boolean xFrameEnabled = false; | ||
cluster = createCluster(xFrameEnabled); | ||
HttpURLConnection conn = getConn(cluster); | ||
String xfoHeader = conn.getHeaderField("X-FRAME-OPTIONS"); | ||
System.out.println(xfoHeader); | ||
Assert.assertTrue("unexpected X-FRAME-OPTION in header", xfoHeader == null); | ||
} | ||
|
||
@After | ||
public void cleanup() throws IOException { | ||
if (cluster != null) { | ||
cluster.shutdown(); | ||
cluster = null; | ||
} | ||
} | ||
|
||
private static MiniJournalCluster createCluster(boolean enabled) throws IOException { | ||
Configuration conf = new Configuration(); | ||
conf.setBoolean(DFSConfigKeys.DFS_XFRAME_OPTION_ENABLED, enabled); | ||
MiniJournalCluster jCluster = | ||
new MiniJournalCluster.Builder(conf).format(true).numJournalNodes(NUM_JN).build(); | ||
jCluster.waitActive(); | ||
return jCluster; | ||
} | ||
|
||
private static HttpURLConnection getConn(MiniJournalCluster journalCluster) throws IOException { | ||
JournalNode journalNode = journalCluster.getJournalNode(0); | ||
URL newURL = new URL(journalNode.getHttpServerURI()); | ||
HttpURLConnection conn = (HttpURLConnection) newURL.openConnection(); | ||
conn.connect(); | ||
return conn; | ||
} | ||
} |