Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1283330 > unrolled thread
| Started by | Sasha Levin <sasha.levin@oracle.com> |
|---|---|
| First post | 2015-12-03 21:50 +0100 |
| Last post | 2015-12-08 01:30 +0100 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] ntp: verify offset doesn't overflow in ntp_update_offset Sasha Levin <sasha.levin@oracle.com> - 2015-12-03 21:50 +0100
Re: [PATCH] ntp: verify offset doesn't overflow in ntp_update_offset John Stultz <john.stultz@linaro.org> - 2015-12-04 21:30 +0100
Re: [PATCH] ntp: verify offset doesn't overflow in ntp_update_offset John Stultz <john.stultz@linaro.org> - 2015-12-08 01:10 +0100
Re: [PATCH] ntp: verify offset doesn't overflow in ntp_update_offset Sasha Levin <sasha.levin@oracle.com> - 2015-12-08 01:30 +0100
| From | Sasha Levin <sasha.levin@oracle.com> |
|---|---|
| Date | 2015-12-03 21:50 +0100 |
| Subject | [PATCH] ntp: verify offset doesn't overflow in ntp_update_offset |
| Message-ID | <qBIZb-1y2-17@gated-at.bofh.it> |
We need to make sure that the offset is valid before manipulating it, otherwise it might overflow on the multiplication. Signed-off-by: Sasha Levin <sasha.levin@oracle.com> --- kernel/time/ntp.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c index 149cc80..36616c3 100644 --- a/kernel/time/ntp.c +++ b/kernel/time/ntp.c @@ -297,6 +297,9 @@ static void ntp_update_offset(long offset) if (!(time_status & STA_PLL)) return; + /* Make sure the multiplication below won't overflow */ + offset = clamp(offset, -MAXPHASE, MAXPHASE); + if (!(time_status & STA_NANO)) offset *= NSEC_PER_USEC; @@ -304,8 +307,7 @@ static void ntp_update_offset(long offset) * Scale the phase adjustment and * clamp to the operating range. */ - offset = min(offset, MAXPHASE); - offset = max(offset, -MAXPHASE); + offset = clamp(offset, -MAXPHASE, MAXPHASE); /* * Select how the frequency is to be controlled -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | John Stultz <john.stultz@linaro.org> |
|---|---|
| Date | 2015-12-04 21:30 +0100 |
| Message-ID | <qC59n-7to-1@gated-at.bofh.it> |
| In reply to | #1283330 |
On Thu, Dec 3, 2015 at 12:46 PM, Sasha Levin <sasha.levin@oracle.com> wrote: > We need to make sure that the offset is valid before manipulating it, > otherwise it might overflow on the multiplication. > > Signed-off-by: Sasha Levin <sasha.levin@oracle.com> Thanks for sending this in. I've queued it for 4.5 thanks -john -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | John Stultz <john.stultz@linaro.org> |
|---|---|
| Date | 2015-12-08 01:10 +0100 |
| Message-ID | <qDe0W-3li-11@gated-at.bofh.it> |
| In reply to | #1283330 |
On Thu, Dec 3, 2015 at 12:46 PM, Sasha Levin <sasha.levin@oracle.com> wrote: > We need to make sure that the offset is valid before manipulating it, > otherwise it might overflow on the multiplication. > > Signed-off-by: Sasha Levin <sasha.levin@oracle.com> > --- > kernel/time/ntp.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c > index 149cc80..36616c3 100644 > --- a/kernel/time/ntp.c > +++ b/kernel/time/ntp.c > @@ -297,6 +297,9 @@ static void ntp_update_offset(long offset) > if (!(time_status & STA_PLL)) > return; > > + /* Make sure the multiplication below won't overflow */ > + offset = clamp(offset, -MAXPHASE, MAXPHASE); > + > if (!(time_status & STA_NANO)) > offset *= NSEC_PER_USEC; So looking at this a bit closer, this bit looks sort of crazy since we clam the offset, do the multiply and then do the exact same clamp. I'd much rather do a more logical clamp(offset, -USEC_PER_SEC, USEC_PER_SEC), but only in the case where we do the multiply. Any objection to that? thanks -john -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Sasha Levin <sasha.levin@oracle.com> |
|---|---|
| Date | 2015-12-08 01:30 +0100 |
| Message-ID | <qDekh-3rM-13@gated-at.bofh.it> |
| In reply to | #1286116 |
On 12/07/2015 07:02 PM, John Stultz wrote: > On Thu, Dec 3, 2015 at 12:46 PM, Sasha Levin <sasha.levin@oracle.com> wrote: >> > We need to make sure that the offset is valid before manipulating it, >> > otherwise it might overflow on the multiplication. >> > >> > Signed-off-by: Sasha Levin <sasha.levin@oracle.com> >> > --- >> > kernel/time/ntp.c | 6 ++++-- >> > 1 file changed, 4 insertions(+), 2 deletions(-) >> > >> > diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c >> > index 149cc80..36616c3 100644 >> > --- a/kernel/time/ntp.c >> > +++ b/kernel/time/ntp.c >> > @@ -297,6 +297,9 @@ static void ntp_update_offset(long offset) >> > if (!(time_status & STA_PLL)) >> > return; >> > >> > + /* Make sure the multiplication below won't overflow */ >> > + offset = clamp(offset, -MAXPHASE, MAXPHASE); >> > + >> > if (!(time_status & STA_NANO)) >> > offset *= NSEC_PER_USEC; > So looking at this a bit closer, this bit looks sort of crazy since we > clam the offset, do the multiply and then do the exact same clamp. > > I'd much rather do a more logical clamp(offset, -USEC_PER_SEC, > USEC_PER_SEC), but only in the case where we do the multiply. > > Any objection to that? Nope. Sounds right. Thanks, Sasha -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web