]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
basic/calendarspec: add check for repeat values that would overflow
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 19 Mar 2018 08:21:02 +0000 (09:21 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 20 Mar 2018 23:46:13 +0000 (00:46 +0100)
https://oss-fuzz.com/v2/issue/4651449704251392/7004

src/basic/calendarspec.c
test/fuzz-regressions/fuzz-unit-file/oss-fuzz-7004 [new file with mode: 0644]
test/fuzz-regressions/meson.build

index 648ac29af367533c3e3ffe9afe437a5c7a67601f..029fd9f990cdb368ab7d3561b06ae0efddeb4cfa 100644 (file)
@@ -187,6 +187,8 @@ int calendar_spec_normalize(CalendarSpec *c) {
 }
 
 _pure_ static bool chain_valid(CalendarComponent *c, int from, int to, bool end_of_month) {
+        assert(to >= from);
+
         if (!c)
                 return true;
 
@@ -197,6 +199,10 @@ _pure_ static bool chain_valid(CalendarComponent *c, int from, int to, bool end_
         if (c->start < from || c->start > to)
                 return false;
 
+        /* Avoid overly large values that could cause overflow */
+        if (c->repeat > to - from)
+                return false;
+
         /*
          * c->repeat must be short enough so at least one repetition may
          * occur before the end of the interval.  For dates scheduled
diff --git a/test/fuzz-regressions/fuzz-unit-file/oss-fuzz-7004 b/test/fuzz-regressions/fuzz-unit-file/oss-fuzz-7004
new file mode 100644 (file)
index 0000000..77a5e5e
--- /dev/null
@@ -0,0 +1,3 @@
+timer
+[Timer]
+OnCalendar=*-31/2147483640
\ No newline at end of file
index d36a3574e677d80ecdbefe2e9268e3af6cc76fe5..778228693b49d5d70cf59a6a53bfe9662f574a7f 100644 (file)
@@ -37,4 +37,5 @@ fuzz_regression_tests = '''
         fuzz-unit-file/oss-fuzz-6908
         fuzz-unit-file/oss-fuzz-6897
         fuzz-unit-file/oss-fuzz-6897-evverx
+        fuzz-unit-file/oss-fuzz-7004
 '''.split()