diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2006-01-09 23:52:29 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 11:01:37 -0500 |
| commit | 718bcceb5ad72a5def2c2fd1fa3ef964be32a857 (patch) | |
| tree | a38a49d1af0896acfb00c26f3a9e288071207cc3 /kernel | |
| parent | 5f82b2b77e66d452c3037cc47f436d2d76fd5f06 (diff) | |
[PATCH] hrtimer: validate timespec of do_sys_settimeofday
Check if the timespec which is provided from user space is normalized.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/time.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/time.c b/kernel/time.c index bbc8ca194b59..c689b53297cf 100644 --- a/kernel/time.c +++ b/kernel/time.c | |||
| @@ -154,6 +154,9 @@ int do_sys_settimeofday(struct timespec *tv, struct timezone *tz) | |||
| 154 | static int firsttime = 1; | 154 | static int firsttime = 1; |
| 155 | int error = 0; | 155 | int error = 0; |
| 156 | 156 | ||
| 157 | if (!timespec_valid(tv)) | ||
| 158 | return -EINVAL; | ||
| 159 | |||
| 157 | error = security_settime(tv, tz); | 160 | error = security_settime(tv, tz); |
| 158 | if (error) | 161 | if (error) |
| 159 | return error; | 162 | return error; |
