/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/protocol/datatransfer/WhitelistBasedTrustedChannelResolver.java

http://github.com/apache/hadoop-common · Java · 119 lines · 61 code · 17 blank · 41 comment · 2 complexity · f5cc6b98d739f0c614e39fe919afd08b MD5 · raw file

  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. package org.apache.hadoop.hdfs.protocol.datatransfer;
  19. import java.net.InetAddress;
  20. import java.net.UnknownHostException;
  21. import org.apache.hadoop.conf.Configuration;
  22. import org.apache.hadoop.hdfs.protocol.datatransfer.TrustedChannelResolver;
  23. import org.apache.hadoop.util.CombinedIPWhiteList;
  24. public class WhitelistBasedTrustedChannelResolver extends TrustedChannelResolver {
  25. private CombinedIPWhiteList whiteListForServer;
  26. private CombinedIPWhiteList whitelistForClient;
  27. private static final String FIXEDWHITELIST_DEFAULT_LOCATION = "/etc/hadoop/fixedwhitelist";
  28. private static final String VARIABLEWHITELIST_DEFAULT_LOCATION = "/etc/hadoop/whitelist";
  29. /**
  30. * Path to the file to containing subnets and ip addresses to form fixed whitelist.
  31. */
  32. public static final String DFS_DATATRANSFER_SERVER_FIXEDWHITELIST_FILE =
  33. "dfs.datatransfer.server.fixedwhitelist.file";
  34. /**
  35. * Enables/Disables variable whitelist
  36. */
  37. public static final String DFS_DATATRANSFER_SERVER_VARIABLEWHITELIST_ENABLE =
  38. "dfs.datatransfer.server.variablewhitelist.enable";
  39. /**
  40. * Path to the file to containing subnets and ip addresses to form variable whitelist.
  41. */
  42. public static final String DFS_DATATRANSFER_SERVER_VARIABLEWHITELIST_FILE =
  43. "dfs.datatransfer.server.variablewhitelist.file";
  44. /**
  45. * time in seconds by which the variable whitelist file is checked for updates
  46. */
  47. public static final String DFS_DATATRANSFER_SERVER_VARIABLEWHITELIST_CACHE_SECS =
  48. "dfs.datatransfer.server.variablewhitelist.cache.secs";
  49. /**
  50. * Path to the file to containing subnets and ip addresses to form fixed whitelist.
  51. */
  52. public static final String DFS_DATATRANSFER_CLIENT_FIXEDWHITELIST_FILE =
  53. "dfs.datatransfer.client.fixedwhitelist.file";
  54. /**
  55. * Enables/Disables variable whitelist
  56. */
  57. public static final String DFS_DATATRANSFER_CLIENT_VARIABLEWHITELIST_ENABLE =
  58. "dfs.datatransfer.client.variablewhitelist.enable";
  59. /**
  60. * Path to the file to containing subnets and ip addresses to form variable whitelist.
  61. */
  62. public static final String DFS_DATATRANSFER_CLIENT_VARIABLEWHITELIST_FILE =
  63. "dfs.datatransfer.client.variablewhitelist.file";
  64. /**
  65. * time in seconds by which the variable whitelist file is checked for updates
  66. */
  67. public static final String DFS_DATATRANSFER_CLIENT_VARIABLEWHITELIST_CACHE_SECS =
  68. "dfs.datatransfer.client.variablewhitelist.cache.secs";
  69. @Override
  70. public void setConf(Configuration conf) {
  71. super.setConf(conf);
  72. String fixedFile = conf.get(DFS_DATATRANSFER_SERVER_FIXEDWHITELIST_FILE,
  73. FIXEDWHITELIST_DEFAULT_LOCATION);
  74. String variableFile = null;
  75. long expiryTime = 0;
  76. if (conf.getBoolean(DFS_DATATRANSFER_SERVER_VARIABLEWHITELIST_ENABLE, false)) {
  77. variableFile = conf.get(DFS_DATATRANSFER_SERVER_VARIABLEWHITELIST_FILE,
  78. VARIABLEWHITELIST_DEFAULT_LOCATION);
  79. expiryTime =
  80. conf.getLong(DFS_DATATRANSFER_SERVER_VARIABLEWHITELIST_CACHE_SECS,3600) * 1000;
  81. }
  82. whiteListForServer = new CombinedIPWhiteList(fixedFile,variableFile,expiryTime);
  83. fixedFile = conf.get(DFS_DATATRANSFER_CLIENT_FIXEDWHITELIST_FILE, fixedFile);
  84. expiryTime = 0;
  85. if (conf.getBoolean(DFS_DATATRANSFER_CLIENT_VARIABLEWHITELIST_ENABLE, false)) {
  86. variableFile = conf.get(DFS_DATATRANSFER_CLIENT_VARIABLEWHITELIST_FILE,variableFile);
  87. expiryTime =
  88. conf.getLong(DFS_DATATRANSFER_CLIENT_VARIABLEWHITELIST_CACHE_SECS,3600) * 1000;
  89. }
  90. whitelistForClient = new CombinedIPWhiteList(fixedFile,variableFile,expiryTime);
  91. }
  92. public boolean isTrusted() {
  93. try {
  94. return whitelistForClient.isIn(InetAddress.getLocalHost().getHostAddress());
  95. } catch (UnknownHostException e) {
  96. return false;
  97. }
  98. }
  99. public boolean isTrusted(InetAddress clientAddress) {
  100. return whiteListForServer.isIn(clientAddress.getHostAddress());
  101. }
  102. }