/solr/solrj/src/java/org/apache/solr/common/cloud/VMParamsAllAndReadonlyDigestZkACLProvider.java

http://github.com/apache/lucene-solr · Java · 117 lines · 70 code · 19 blank · 28 comment · 6 complexity · df3c3f572bbc3cbbedc41069ed425315 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.apache.solr.common.cloud;
  18. import java.security.NoSuchAlgorithmException;
  19. import java.util.ArrayList;
  20. import java.util.List;
  21. import org.apache.solr.common.StringUtils;
  22. import org.apache.zookeeper.ZooDefs;
  23. import org.apache.zookeeper.data.ACL;
  24. import org.apache.zookeeper.data.Id;
  25. import org.apache.zookeeper.server.auth.DigestAuthenticationProvider;
  26. public class VMParamsAllAndReadonlyDigestZkACLProvider extends SecurityAwareZkACLProvider {
  27. public static final String DEFAULT_DIGEST_READONLY_USERNAME_VM_PARAM_NAME = "zkDigestReadonlyUsername";
  28. public static final String DEFAULT_DIGEST_READONLY_PASSWORD_VM_PARAM_NAME = "zkDigestReadonlyPassword";
  29. final String zkDigestAllUsernameVMParamName;
  30. final String zkDigestAllPasswordVMParamName;
  31. final String zkDigestReadonlyUsernameVMParamName;
  32. final String zkDigestReadonlyPasswordVMParamName;
  33. public VMParamsAllAndReadonlyDigestZkACLProvider() {
  34. this(
  35. VMParamsSingleSetCredentialsDigestZkCredentialsProvider.DEFAULT_DIGEST_USERNAME_VM_PARAM_NAME,
  36. VMParamsSingleSetCredentialsDigestZkCredentialsProvider.DEFAULT_DIGEST_PASSWORD_VM_PARAM_NAME,
  37. DEFAULT_DIGEST_READONLY_USERNAME_VM_PARAM_NAME,
  38. DEFAULT_DIGEST_READONLY_PASSWORD_VM_PARAM_NAME
  39. );
  40. }
  41. public VMParamsAllAndReadonlyDigestZkACLProvider(String zkDigestAllUsernameVMParamName, String zkDigestAllPasswordVMParamName,
  42. String zkDigestReadonlyUsernameVMParamName, String zkDigestReadonlyPasswordVMParamName) {
  43. this.zkDigestAllUsernameVMParamName = zkDigestAllUsernameVMParamName;
  44. this.zkDigestAllPasswordVMParamName = zkDigestAllPasswordVMParamName;
  45. this.zkDigestReadonlyUsernameVMParamName = zkDigestReadonlyUsernameVMParamName;
  46. this.zkDigestReadonlyPasswordVMParamName = zkDigestReadonlyPasswordVMParamName;
  47. }
  48. /**
  49. * @return Set of ACLs to return for non-security related znodes
  50. */
  51. @Override
  52. protected List<ACL> createNonSecurityACLsToAdd() {
  53. return createACLsToAdd(true);
  54. }
  55. /**
  56. * @return Set of ACLs to return security-related znodes
  57. */
  58. @Override
  59. protected List<ACL> createSecurityACLsToAdd() {
  60. return createACLsToAdd(false);
  61. }
  62. protected List<ACL> createACLsToAdd(boolean includeReadOnly) {
  63. String digestAllUsername = System.getProperty(zkDigestAllUsernameVMParamName);
  64. String digestAllPassword = System.getProperty(zkDigestAllPasswordVMParamName);
  65. String digestReadonlyUsername = System.getProperty(zkDigestReadonlyUsernameVMParamName);
  66. String digestReadonlyPassword = System.getProperty(zkDigestReadonlyPasswordVMParamName);
  67. return createACLsToAdd(includeReadOnly,
  68. digestAllUsername, digestAllPassword,
  69. digestReadonlyUsername, digestReadonlyPassword);
  70. }
  71. /**
  72. * Note: only used for tests
  73. */
  74. protected List<ACL> createACLsToAdd(boolean includeReadOnly,
  75. String digestAllUsername, String digestAllPassword,
  76. String digestReadonlyUsername, String digestReadonlyPassword) {
  77. try {
  78. List<ACL> result = new ArrayList<ACL>();
  79. // Not to have to provide too much credentials and ACL information to the process it is assumed that you want "ALL"-acls
  80. // added to the user you are using to connect to ZK (if you are using VMParamsSingleSetCredentialsDigestZkCredentialsProvider)
  81. if (!StringUtils.isEmpty(digestAllUsername) && !StringUtils.isEmpty(digestAllPassword)) {
  82. result.add(new ACL(ZooDefs.Perms.ALL, new Id("digest", DigestAuthenticationProvider.generateDigest(digestAllUsername + ":" + digestAllPassword))));
  83. }
  84. if (includeReadOnly) {
  85. // Besides that support for adding additional "READONLY"-acls for another user
  86. if (!StringUtils.isEmpty(digestReadonlyUsername) && !StringUtils.isEmpty(digestReadonlyPassword)) {
  87. result.add(new ACL(ZooDefs.Perms.READ, new Id("digest", DigestAuthenticationProvider.generateDigest(digestReadonlyUsername + ":" + digestReadonlyPassword))));
  88. }
  89. }
  90. if (result.isEmpty()) {
  91. result = ZooDefs.Ids.OPEN_ACL_UNSAFE;
  92. }
  93. return result;
  94. } catch (NoSuchAlgorithmException e) {
  95. throw new RuntimeException(e);
  96. }
  97. }
  98. }