Skip to content

Commit

Permalink
[FIXED JENKINS-25897] Add range check for H(X-Y) syntax
Browse files Browse the repository at this point in the history
(cherry picked from commit 9a8329e)
  • Loading branch information
daniel-beck authored and olivergondza committed Mar 2, 2015
1 parent dd2083a commit 6e67cb9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/src/main/grammar/crontab.g
Expand Up @@ -110,7 +110,7 @@ throws ANTLRException
}
| ("H" "(")=> "H" "(" s=token "-" e=token ")" ( "/" d=token )?
{
bits = doHash(s,e,d);
bits = doHash(s,e,d,field);
}
| "H" ( "/" d=token )?
{
Expand Down
6 changes: 4 additions & 2 deletions core/src/main/java/hudson/scheduler/BaseParser.java
Expand Up @@ -96,10 +96,12 @@ protected long doHash(int step, int field) throws ANTLRException {
int u = UPPER_BOUNDS[field];
if (field==2) u = 28; // day of month can vary depending on month, so to make life simpler, just use [1,28] that's always safe
if (field==4) u = 6; // Both 0 and 7 of day of week are Sunday. For better distribution, limit upper bound to 6
return doHash(LOWER_BOUNDS[field], u, step);
return doHash(LOWER_BOUNDS[field], u, step, field);
}

protected long doHash(int s, int e, int step) throws ANTLRException {
protected long doHash(int s, int e, int step, int field) throws ANTLRException {
rangeCheck(s, field);
rangeCheck(e, field);
if (step > e - s + 1) {
error(Messages.BaseParser_OutOfRange(step, 1, e - s + 1));
throw new AssertionError();
Expand Down

0 comments on commit 6e67cb9

Please sign in to comment.