PrepareValidator.java
/*
* Copyright 2020 ConsenSys AG.
*
* Licensed 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.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.besu.consensus.qbft.validation;
import org.hyperledger.besu.consensus.common.bft.ConsensusRoundIdentifier;
import org.hyperledger.besu.consensus.common.bft.payload.SignedData;
import org.hyperledger.besu.consensus.qbft.messagewrappers.Prepare;
import org.hyperledger.besu.consensus.qbft.payload.PreparePayload;
import org.hyperledger.besu.datatypes.Address;
import org.hyperledger.besu.datatypes.Hash;
import java.util.Collection;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** The Prepare validator. */
public class PrepareValidator {
private static final String ERROR_PREFIX = "Invalid Prepare Message";
private static final Logger LOG = LoggerFactory.getLogger(PrepareValidator.class);
private final Collection<Address> validators;
private final ConsensusRoundIdentifier targetRound;
private final Hash expectedDigest;
/**
* Instantiates a new Prepare validator.
*
* @param validators the validators
* @param targetRound the target round
* @param expectedDigest the expected digest
*/
public PrepareValidator(
final Collection<Address> validators,
final ConsensusRoundIdentifier targetRound,
final Hash expectedDigest) {
this.validators = validators;
this.targetRound = targetRound;
this.expectedDigest = expectedDigest;
}
/**
* Validate.
*
* @param msg the msg
* @return the boolean
*/
public boolean validate(final Prepare msg) {
return validate(msg.getSignedPayload());
}
/**
* Validate.
*
* @param signedPayload the signed payload
* @return the boolean
*/
public boolean validate(final SignedData<PreparePayload> signedPayload) {
if (!validators.contains(signedPayload.getAuthor())) {
LOG.info("{}: did not originate from a recognized validator.", ERROR_PREFIX);
return false;
}
final PreparePayload payload = signedPayload.getPayload();
if (!payload.getRoundIdentifier().equals(targetRound)) {
LOG.info("{}: did not target expected round/height", ERROR_PREFIX);
return false;
}
if (!payload.getDigest().equals(expectedDigest)) {
LOG.info("{}: did not contain expected digest", ERROR_PREFIX);
return false;
}
return true;
}
}