mirror of https://github.com/hyperledger/besu
[PAN-2829] - add hooks for validation (#1671)
EIP-1602 specifies a new validation step. Add hooks for those to occur. Move contract size checking into the validation hooks. Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>pull/2/head
parent
9a9b7e9dd6
commit
ab6962b37f
@ -0,0 +1,21 @@ |
||||
/* |
||||
* Copyright 2019 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. |
||||
*/ |
||||
package tech.pegasys.pantheon.ethereum.mainnet; |
||||
|
||||
import tech.pegasys.pantheon.ethereum.vm.MessageFrame; |
||||
|
||||
@FunctionalInterface |
||||
public interface ContractValidationRule { |
||||
|
||||
boolean validate(MessageFrame frame); |
||||
} |
@ -0,0 +1,48 @@ |
||||
/* |
||||
* Copyright 2019 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. |
||||
*/ |
||||
package tech.pegasys.pantheon.ethereum.mainnet.contractvalidation; |
||||
|
||||
import tech.pegasys.pantheon.ethereum.mainnet.ContractValidationRule; |
||||
import tech.pegasys.pantheon.ethereum.vm.MessageFrame; |
||||
|
||||
import org.apache.logging.log4j.LogManager; |
||||
import org.apache.logging.log4j.Logger; |
||||
|
||||
public class MaxCodeSizeRule implements ContractValidationRule { |
||||
|
||||
private static final Logger LOG = LogManager.getLogger(); |
||||
|
||||
private final int maxCodeSize; |
||||
|
||||
private MaxCodeSizeRule(final int maxCodeSize) { |
||||
this.maxCodeSize = maxCodeSize; |
||||
} |
||||
|
||||
@Override |
||||
public boolean validate(final MessageFrame frame) { |
||||
final int contractCodeSize = frame.getOutputData().size(); |
||||
if (contractCodeSize <= maxCodeSize) { |
||||
return true; |
||||
} else { |
||||
LOG.trace( |
||||
"Contract creation error: code size {} exceeds code size limit {}", |
||||
contractCodeSize, |
||||
maxCodeSize); |
||||
return false; |
||||
} |
||||
} |
||||
|
||||
public static ContractValidationRule of(final int maxCodeSize) { |
||||
return new MaxCodeSizeRule(maxCodeSize); |
||||
} |
||||
} |
Loading…
Reference in new issue