Compare commits

..

24 Commits

Author SHA1 Message Date
Richard Holland
ccf3b38fad add startafter to corn 2025-10-21 09:44:03 +11:00
tequ
86a9ea999f clang-format 2025-10-17 15:06:05 +09:00
RichardAH
0755fb186a Update src/ripple/protocol/jss.h
Co-authored-by: tequ <git@tequ.dev>
2025-10-17 16:04:02 +10:00
RichardAH
526154b97a Update src/ripple/protocol/jss.h
Co-authored-by: tequ <git@tequ.dev>
2025-10-17 16:03:46 +10:00
tequ
052135a800 add CronSetFlags to ServerDefinition 2025-10-17 10:29:21 +09:00
tequ
793249d031 SetCron -> CronSet 2025-10-17 10:28:43 +09:00
tequ
c1e011a16a return tesSuccess when deleting cron without cron object 2025-10-16 17:07:01 +09:00
tequ
caa486f19c additional defensive check, malformed check, 2025-10-16 15:34:30 +09:00
tequ
106abfa9e0 remove alreadyExists case 2025-10-16 15:14:43 +09:00
tequ
88828bbf63 add TSH tests for ttCron, ttCronSet 2025-10-16 11:47:20 +09:00
tequ
cf3db6eb42 Merge branch 'dev' into cronjob 2025-10-15 22:48:08 +09:00
tequ
9b1f3ebdd7 use tfCronUnset to delete Cron 2025-10-15 21:00:19 +09:00
tequ
e64692fc8b add ttCron tests 2025-10-15 20:45:47 +09:00
tequ
ac1bf88596 add tests for CronSet 2025-10-15 15:14:59 +09:00
tequ
0d7dd0597d clang-format 2025-10-15 13:40:39 +09:00
Richard Holland
3dddb907c2 hash accids to help randomize cron order for the same timepoint 2025-10-14 17:56:38 +11:00
RichardAH
9d6ea9ac60 Merge branch 'dev' into cronjob 2025-10-14 15:56:39 +10:00
Richard Holland
e9a414cff2 add comment block to keylet::cron, fix accidental TxType casts 2025-10-14 16:43:11 +11:00
Richard Holland
fe1b424bea move static field checks to SetCron preflight, ensure a useful fee is computed. 2025-10-14 16:30:01 +11:00
Richard Holland
b1c366761f add sfOwnerNode to ltCRON 2025-10-14 15:43:31 +11:00
Richard Holland
82af6d9eee 365 days 2025-10-14 11:52:33 +11:00
RichardAH
20e6e62660 Merge branch 'dev' into cronjob 2025-10-14 10:51:45 +10:00
Richard Holland
1d6066127c whoops 2025-10-14 11:16:49 +11:00
Richard Holland
d3d5c757fe initial version of featureCron... compiling untested 2025-10-14 10:58:28 +11:00
8 changed files with 113 additions and 90 deletions

View File

@@ -94,6 +94,21 @@ Change::preflight(PreflightContext const& ctx)
"of sfImportVLKey, sfActiveValidator";
return temMALFORMED;
}
// if we do specify import_vl_keys in config then we won't approve keys
// that aren't on our list
if (ctx.tx.isFieldPresent(sfImportVLKey) &&
!ctx.app.config().IMPORT_VL_KEYS.empty())
{
auto const& inner = const_cast<ripple::STTx&>(ctx.tx)
.getField(sfImportVLKey)
.downcast<STObject>();
auto const pk = inner.getFieldVL(sfPublicKey);
std::string const strPk = strHex(makeSlice(pk));
if (ctx.app.config().IMPORT_VL_KEYS.find(strPk) ==
ctx.app.config().IMPORT_VL_KEYS.end())
return telIMPORT_VL_KEY_NOT_RECOGNISED;
}
}
return tesSUCCESS;
@@ -153,42 +168,9 @@ Change::preclaim(PreclaimContext const& ctx)
return tesSUCCESS;
case ttAMENDMENT:
case ttUNL_MODIFY:
case ttUNL_REPORT:
case ttEMIT_FAILURE:
return tesSUCCESS;
case ttUNL_REPORT: {
if (!ctx.tx.isFieldPresent(sfImportVLKey) ||
ctx.app.config().IMPORT_VL_KEYS.empty())
return tesSUCCESS;
// if we do specify import_vl_keys in config then we won't approve
// keys that aren't on our list and/or aren't in the ledger object
auto const& inner = const_cast<ripple::STTx&>(ctx.tx)
.getField(sfImportVLKey)
.downcast<STObject>();
auto const pkBlob = inner.getFieldVL(sfPublicKey);
std::string const strPk = strHex(makeSlice(pkBlob));
if (ctx.app.config().IMPORT_VL_KEYS.find(strPk) !=
ctx.app.config().IMPORT_VL_KEYS.end())
return tesSUCCESS;
auto const pkType = publicKeyType(makeSlice(pkBlob));
if (!pkType)
return tefINTERNAL;
PublicKey const pk(makeSlice(pkBlob));
// check on ledger
if (auto const unlRep = ctx.view.read(keylet::UNLReport());
unlRep && unlRep->isFieldPresent(sfImportVLKeys))
{
auto const& vlKeys = unlRep->getFieldArray(sfImportVLKeys);
for (auto const& k : vlKeys)
if (PublicKey(k[sfPublicKey]) == pk)
return tesSUCCESS;
}
return telIMPORT_VL_KEY_NOT_RECOGNISED;
}
default:
return temUNKNOWN;
}

View File

@@ -51,55 +51,87 @@ SetCron::preflight(PreflightContext const& ctx)
return temINVALID_FLAG;
}
// DelaySeconds (D), RepeatCount (R)
// DR - Set Cron with Delay and Repeat
// D- - Set Cron (once off) with Delay only (repat implicitly 0)
// -R - Invalid
// -- - Clear any existing cron (succeeds even if there isn't one) / with
// StartAfter(s) DelaySeconds (D), RepeatCount (R)
// SDR - Set Cron with After, Delay and Repeat
// SD- - Invalid, if repeat count isn't included then only start or delay
// S-R - Invalid
// S-- - Set Cron with After for a once off execution
// -DR - Set Cron with Delay and Repeat
// -D- - Set Cron (once off) with Delay only (repat implicitly 0)
// --R - Invalid
// --- - Clear any existing cron (succeeds even if there isn't one) / with
// tfCronUnset flag set
bool const hasStart = tx.isFieldPresent(sfStartAfter);
bool const hasDelay = tx.isFieldPresent(sfDelaySeconds);
bool const hasRepeat = tx.isFieldPresent(sfRepeatCount);
// unset is a special case, handle first
if (tx.isFlag(tfCronUnset))
{
if (hasDelay || hasRepeat)
if (hasDelay || hasRepeat || hasStart)
{
JLOG(j.debug()) << "SetCron: tfCronUnset flag cannot be used with "
"DelaySeconds or RepeatCount.";
return temMALFORMED;
}
return preflight2(ctx);
}
else
if (hasStart)
{
if (!hasDelay)
if (hasRepeat && hasDelay)
{
JLOG(j.debug()) << "SetCron: DelaySeconds must be "
"specified to create a cron.";
// valid, this is a fully specified cron
// fall through to validate other fields
}
else if (!hasRepeat && !hasDelay)
{
// valid this is a once off cron
// no other fields to validate, done
return preflight2(ctx);
}
else
{
// invalid, must specify both or neither repeat and delay count with
// startafter
JLOG(j.debug()) << "SetCron: StartAfter can only be used with "
"either both or neither of "
"DelaySeconds and RepeatCount.";
return temMALFORMED;
}
}
// check delay is not too high
auto delay = tx.getFieldU32(sfDelaySeconds);
if (delay > 31536000UL /* 365 days in seconds */)
if (!hasDelay)
{
JLOG(j.debug()) << "SetCron: DelaySeconds or StartAfter must be "
"specified to create a cron.";
return temMALFORMED;
}
// check delay is not too high
auto delay = tx.getFieldU32(sfDelaySeconds);
if (delay > 31536000UL /* 365 days in seconds */)
{
JLOG(j.debug()) << "SetCron: DelaySeconds was too high. (max 365 "
"days in seconds).";
return temMALFORMED;
}
// check repeat is not too high
if (hasRepeat)
{
auto recur = tx.getFieldU32(sfRepeatCount);
if (recur > 256)
{
JLOG(j.debug()) << "SetCron: DelaySeconds was too high. (max 365 "
"days in seconds).";
JLOG(j.debug())
<< "SetCron: RepeatCount too high. Limit is 256. Issue "
"new SetCron to increase.";
return temMALFORMED;
}
// check repeat is not too high
if (hasRepeat)
{
auto recur = tx.getFieldU32(sfRepeatCount);
if (recur > 256)
{
JLOG(j.debug())
<< "SetCron: RepeatCount too high. Limit is 256. Issue "
"new SetCron to increase.";
return temMALFORMED;
}
}
}
return preflight2(ctx);
@@ -108,6 +140,32 @@ SetCron::preflight(PreflightContext const& ctx)
TER
SetCron::preclaim(PreclaimContext const& ctx)
{
if (ctx.tx.isFieldPresent(sfStartAfter))
{
uint32_t currentTime =
ctx.view.parentCloseTime().time_since_epoch().count();
uint32_t afterTime = ctx.tx.getFieldU32(sfStartAfter);
if (afterTime <= currentTime)
{
// we'll pass this as though they meant execute asap, similar to a
// delay of 0
return tesSUCCESS;
}
uint32_t waitSeconds = afterTime - currentTime;
if (waitSeconds > afterTime)
return tefINTERNAL;
if (waitSeconds >> 31536000UL /* 365 days in seconds */)
{
JLOG(ctx.j.debug())
<< "SetCron: DelaySeconds was too high. (max 365 "
"days in seconds).";
return tecSTART_AFTER_TOO_HIGH;
}
}
return tesSUCCESS;
}
@@ -123,6 +181,7 @@ SetCron::doApply()
// ledger.
uint32_t delay{0};
uint32_t recur{0};
uint32_t after{0};
if (!isDelete)
{
@@ -137,7 +196,10 @@ SetCron::doApply()
// do all this sanity checking before we modify the ledger...
// even for a delete operation this will fall through without incident
uint32_t afterTime = currentTime + delay;
uint32_t afterTime = tx.isFieldPresent(sfStartAfter)
? tx.getFieldU32(sfStartAfter)
: currentTime + delay;
if (afterTime < currentTime)
return tefINTERNAL;

View File

@@ -412,6 +412,7 @@ extern SF_UINT32 const sfImportSequence;
extern SF_UINT32 const sfXahauActivationLgrSeq;
extern SF_UINT32 const sfDelaySeconds;
extern SF_UINT32 const sfRepeatCount;
extern SF_UINT32 const sfStartAfter;
// 64-bit integers (common)
extern SF_UINT64 const sfIndexNext;

View File

@@ -343,6 +343,7 @@ enum TECcodes : TERUnderlyingType {
tecINSUF_RESERVE_SELLER = 187,
tecIMMUTABLE = 188,
tecTOO_MANY_REMARKS = 189,
tecSTART_AFTER_TOO_HIGH = 190,
tecLAST_POSSIBLE_ENTRY = 255,
};

View File

@@ -157,6 +157,7 @@ CONSTRUCT_TYPED_SFIELD(sfLockCount, "LockCount", UINT32,
CONSTRUCT_TYPED_SFIELD(sfFirstNFTokenSequence, "FirstNFTokenSequence", UINT32, 50);
CONSTRUCT_TYPED_SFIELD(sfStartAfter, "StartAfter", UINT32, 93);
CONSTRUCT_TYPED_SFIELD(sfRepeatCount, "RepeatCount", UINT32, 94);
CONSTRUCT_TYPED_SFIELD(sfDelaySeconds, "DelaySeconds", UINT32, 95);
CONSTRUCT_TYPED_SFIELD(sfXahauActivationLgrSeq, "XahauActivationLgrSeq",UINT32, 96);

View File

@@ -94,6 +94,7 @@ transResults()
MAKE_ERROR(tecINSUF_RESERVE_SELLER, "The seller of an object has insufficient reserves, and thus cannot complete the sale."),
MAKE_ERROR(tecIMMUTABLE, "The remark is marked immutable on the object, and therefore cannot be updated."),
MAKE_ERROR(tecTOO_MANY_REMARKS, "The number of remarks on the object would exceed the limit of 32."),
MAKE_ERROR(tecSTART_AFTER_TOO_HIGH, "The proposed StartAfter time is greater than one year away."),
MAKE_ERROR(tefALREADY, "The exact transaction was already in this ledger."),
MAKE_ERROR(tefBAD_ADD_AUTH, "Not authorized to add account."),
MAKE_ERROR(tefBAD_AUTH, "Transaction's public key is not authorized."),

View File

@@ -486,6 +486,7 @@ TxFormats::TxFormats()
{
{sfDelaySeconds, soeOPTIONAL},
{sfRepeatCount, soeOPTIONAL},
{sfStartAfter, soeOPTIONAL},
},
commonFields);
}

View File

@@ -357,32 +357,6 @@ class UNLReport_test : public beast::unit_test::suite
BEAST_EXPECT(isImportVL(env, ivlKeys[0]) == true);
BEAST_EXPECT(isImportVL(env, ivlKeys[1]) == false);
BEAST_EXPECT(isActiveValidator(env, vlKeys[0]) == true);
// now test unrecognised keys that are already present in the ledger
// object (flap fix)
l = std::make_shared<Ledger>(
*l, env.app().timeKeeper().closeTime());
// insert a ttUNL_REPORT pseudo into the open ledger
env.app().openLedger().modify(
[&](OpenView& view, beast::Journal j) -> bool {
STTx tx = createUNLRTx(l->seq(), ivlKeys[1], vlKeys[0]);
uint256 txID = tx.getTransactionID();
auto s = std::make_shared<ripple::Serializer>();
tx.add(*s);
env.app().getHashRouter().setFlags(txID, SF_PRIVATE2);
view.rawTxInsert(txID, std::move(s), nullptr);
return true;
});
BEAST_EXPECT(hasUNLReport(env) == true);
// close the ledger
env.close();
BEAST_EXPECT(isImportVL(env, ivlKeys[0]) == true);
BEAST_EXPECT(isImportVL(env, ivlKeys[1]) == false);
BEAST_EXPECT(isActiveValidator(env, vlKeys[0]) == true);
}
}
@@ -1350,4 +1324,4 @@ createUNLRTx(
}
} // namespace test
} // namespace ripple
} // namespace ripple