Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QPID-8657: [Broker-J] ACL - Posting unknown attributes leaves broker in bad internal state #229

Merged
merged 2 commits into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,40 +36,37 @@ public class RuleBasedVirtualHostAccessControlProviderImpl
implements RuleBasedVirtualHostAccessControlProvider<RuleBasedVirtualHostAccessControlProviderImpl>
{
private static final EnumSet<ObjectType> ALLOWED_OBJECT_TYPES = EnumSet.of(ObjectType.ALL,
ObjectType.QUEUE,
ObjectType.EXCHANGE,
ObjectType.VIRTUALHOST,
ObjectType.METHOD);
ObjectType.QUEUE,
ObjectType.EXCHANGE,
ObjectType.VIRTUALHOST,
ObjectType.METHOD);

static
{
Handler.register();
}



@ManagedObjectFactoryConstructor
public RuleBasedVirtualHostAccessControlProviderImpl(Map<String, Object> attributes, QueueManagingVirtualHost<?> virtualHost)
public RuleBasedVirtualHostAccessControlProviderImpl(final Map<String, Object> attributes,
final QueueManagingVirtualHost<?> virtualHost)
{
super(attributes, virtualHost);
}


@Override
protected void validateChange(final ConfiguredObject<?> proxyForValidation, final Set<String> changedAttributes)
{
super.validateChange(proxyForValidation, changedAttributes);
if(changedAttributes.contains(RULES))
if (changedAttributes.contains(RULES))
{
for(AclRule rule : ((RuleBasedVirtualHostAccessControlProvider<?>)proxyForValidation).getRules())
for (AclRule rule : ((RuleBasedVirtualHostAccessControlProvider<?>) proxyForValidation).getRules())
{
if(!ALLOWED_OBJECT_TYPES.contains(rule.getObjectType()))
if (!ALLOWED_OBJECT_TYPES.contains(rule.getObjectType()))
{
throw new IllegalArgumentException("Cannot use the object type " + rule.getObjectType() + " only the following object types are allowed: " + ALLOWED_OBJECT_TYPES);
}
rule.getAttributes();
}
}
}


}
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/*
*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.qpid.server.security.access.plugins;

import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;

import java.util.List;
import java.util.Map;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import org.apache.qpid.server.model.BrokerTestHelper;
import org.apache.qpid.server.virtualhost.QueueManagingVirtualHost;
import org.apache.qpid.server.virtualhost.TestMemoryVirtualHost;
import org.apache.qpid.test.utils.UnitTestBase;

public class RuleBasedVirtualHostAccessControlProviderImplTest extends UnitTestBase
{
private RuleBasedVirtualHostAccessControlProviderImpl _aclProvider;

@BeforeEach
void setUp()
{
final Map<String, Object> virtualHostAttributes = Map.of(QueueManagingVirtualHost.NAME, "testVH",
QueueManagingVirtualHost.TYPE, TestMemoryVirtualHost.VIRTUAL_HOST_TYPE);
final Map<String, Object> attributes = Map.of(RuleBasedAccessControlProvider.NAME, RuleBasedVirtualHostAccessControlProviderImplTest.class.getName());
final QueueManagingVirtualHost<?> virtualHost = BrokerTestHelper.createVirtualHost(virtualHostAttributes, this);
_aclProvider = new RuleBasedVirtualHostAccessControlProviderImpl(attributes, virtualHost);
_aclProvider.create();
}

@Test
void setValidAttributes()
{
final List<Object> rules = List.of(Map.of("identity", "user",
"operation", "PUBLISH",
"outcome", "ALLOW_LOG",
"objectType", "EXCHANGE",
"attributes", Map.of("ROUTING_KEY", "routing_key", "NAME", "xxx")));
final Map<String, Object> attributes = Map.of("name", "changed", "rules", rules);

assertDoesNotThrow(() ->_aclProvider.setAttributes(attributes));
}

@Test
void setInvalidAttributes()
{
final List<Object> rules = List.of(Map.of("identity", "user",
"operation", "PUBLISH",
"outcome", "ALLOW_LOG",
"objectType", "EXCHANGE",
"attributes", Map.of("FOO", "bar", "ROUTING_KEY", "routing_key", "NAME", "xxx")));
final Map<String, Object> attributes = Map.of("name", "changed", "rules", rules);

final IllegalArgumentException exception = assertThrows(IllegalArgumentException.class,
() -> _aclProvider.setAttributes(attributes), "Expected exception not thrown");

assertEquals("No enum constant org.apache.qpid.server.security.access.config.Property.FOO", exception.getMessage());
}
}