* [PATCH] convert verify_area to access_ok in xtensa/kernel/signal.c
@ 2005-08-29 17:31 Jesper Juhl
2005-08-29 17:39 ` linux-os (Dick Johnson)
0 siblings, 1 reply; 3+ messages in thread
From: Jesper Juhl @ 2005-08-29 17:31 UTC (permalink / raw)
To: Chris Zankel; +Cc: linux-kernel
verify_area() is deprecated and has been for quite a while.
I thought I had cleaned up all users and was planning to submit the final
patches to get rid of it completely, but when I did a final check I found
that xtensa has been added after my initial cleanup and it still uses
verify_area(), so we have to get that cleaned up before I can get on with
the final verify_area removal.
This patch converts all uses of verify_area() in xtensa/kernel/signal.c to
use access_ok() instead.
Please apply.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
---
diff -upr -X ./linux-2.6.13/Documentation/dontdiff linux-2.6.13-orig/arch/xtensa/kernel/signal.c linux-2.6.13/arch/xtensa/kernel/signal.c
--- linux-2.6.13-orig/arch/xtensa/kernel/signal.c 2005-08-29 01:41:01.000000000 +0200
+++ linux-2.6.13/arch/xtensa/kernel/signal.c 2005-08-29 03:40:12.000000000 +0200
@@ -104,7 +104,7 @@ sys_sigaction(int sig, const struct old_
if (act) {
old_sigset_t mask;
- if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
+ if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
__get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
__get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
return -EFAULT;
@@ -116,7 +116,7 @@ sys_sigaction(int sig, const struct old_
ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
if (!ret && oact) {
- if (verify_area(VERIFY_WRITE, oact, sizeof(*oact)) ||
+ if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
__put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
__put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
return -EFAULT;
@@ -236,7 +236,7 @@ restore_sigcontext(struct pt_regs *regs,
err |= __copy_from_user (regs->areg, sc->sc_areg, XCHAL_NUM_AREGS*4);
err |= __get_user(buf, &sc->sc_cpstate);
if (buf) {
- if (verify_area(VERIFY_READ, buf, sizeof(*buf)))
+ if (!access_ok(VERIFY_READ, buf, sizeof(*buf)))
goto badframe;
err |= restore_cpextra(buf);
}
@@ -357,7 +357,7 @@ asmlinkage int sys_sigreturn(struct pt_r
if (regs->depc > 64)
panic ("Double exception sys_sigreturn\n");
- if (verify_area(VERIFY_READ, frame, sizeof(*frame)))
+ if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
goto badframe;
if (__get_user(set.sig[0], &frame->sc.oldmask)
@@ -394,7 +394,7 @@ asmlinkage int sys_rt_sigreturn(struct p
return 0;
}
- if (verify_area(VERIFY_READ, frame, sizeof(*frame)))
+ if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
goto badframe;
if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] convert verify_area to access_ok in xtensa/kernel/signal.c
2005-08-29 17:31 [PATCH] convert verify_area to access_ok in xtensa/kernel/signal.c Jesper Juhl
@ 2005-08-29 17:39 ` linux-os (Dick Johnson)
2005-08-29 17:45 ` Jesper Juhl
0 siblings, 1 reply; 3+ messages in thread
From: linux-os (Dick Johnson) @ 2005-08-29 17:39 UTC (permalink / raw)
To: Jesper Juhl; +Cc: Chris Zankel, linux-kernel
On Mon, 29 Aug 2005, Jesper Juhl wrote:
>
> verify_area() is deprecated and has been for quite a while.
> I thought I had cleaned up all users and was planning to submit the final
> patches to get rid of it completely, but when I did a final check I found
> that xtensa has been added after my initial cleanup and it still uses
> verify_area(), so we have to get that cleaned up before I can get on with
> the final verify_area removal.
>
>
> This patch converts all uses of verify_area() in xtensa/kernel/signal.c to
> use access_ok() instead.
>
> Please apply.
>
Isn't access_ok() also gone, handled by the put/get/copy/to/from/user
stuff?
> Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
> ---
>
> diff -upr -X ./linux-2.6.13/Documentation/dontdiff linux-2.6.13-orig/arch/xtensa/kernel/signal.c linux-2.6.13/arch/xtensa/kernel/signal.c
> --- linux-2.6.13-orig/arch/xtensa/kernel/signal.c 2005-08-29 01:41:01.000000000 +0200
> +++ linux-2.6.13/arch/xtensa/kernel/signal.c 2005-08-29 03:40:12.000000000 +0200
> @@ -104,7 +104,7 @@ sys_sigaction(int sig, const struct old_
>
> if (act) {
> old_sigset_t mask;
> - if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
> + if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
> __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
> __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
> return -EFAULT;
> @@ -116,7 +116,7 @@ sys_sigaction(int sig, const struct old_
> ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
>
> if (!ret && oact) {
> - if (verify_area(VERIFY_WRITE, oact, sizeof(*oact)) ||
> + if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
> __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
> __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
> return -EFAULT;
> @@ -236,7 +236,7 @@ restore_sigcontext(struct pt_regs *regs,
> err |= __copy_from_user (regs->areg, sc->sc_areg, XCHAL_NUM_AREGS*4);
> err |= __get_user(buf, &sc->sc_cpstate);
> if (buf) {
> - if (verify_area(VERIFY_READ, buf, sizeof(*buf)))
> + if (!access_ok(VERIFY_READ, buf, sizeof(*buf)))
> goto badframe;
> err |= restore_cpextra(buf);
> }
> @@ -357,7 +357,7 @@ asmlinkage int sys_sigreturn(struct pt_r
> if (regs->depc > 64)
> panic ("Double exception sys_sigreturn\n");
>
> - if (verify_area(VERIFY_READ, frame, sizeof(*frame)))
> + if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
> goto badframe;
>
> if (__get_user(set.sig[0], &frame->sc.oldmask)
> @@ -394,7 +394,7 @@ asmlinkage int sys_rt_sigreturn(struct p
> return 0;
> }
>
> - if (verify_area(VERIFY_READ, frame, sizeof(*frame)))
> + if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
> goto badframe;
>
> if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
> -
> 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/
>
Cheers,
Dick Johnson
Penguin : Linux version 2.6.13 on an i686 machine (5591.77 BogoMips).
Warning : 98.36% of all statistics are fiction.
.
I apologize for the following. I tried to kill it with the above dot :
****************************************************************
The information transmitted in this message is confidential and may be privileged. Any review, retransmission, dissemination, or other use of this information by persons or entities other than the intended recipient is prohibited. If you are not the intended recipient, please notify Analogic Corporation immediately - by replying to this message or by sending an email to DeliveryErrors@analogic.com - and destroy all copies of this information, including any attachments, without reading or disclosing them.
Thank you.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] convert verify_area to access_ok in xtensa/kernel/signal.c
2005-08-29 17:39 ` linux-os (Dick Johnson)
@ 2005-08-29 17:45 ` Jesper Juhl
0 siblings, 0 replies; 3+ messages in thread
From: Jesper Juhl @ 2005-08-29 17:45 UTC (permalink / raw)
To: linux-os (Dick Johnson); +Cc: Chris Zankel, linux-kernel
On 8/29/05, linux-os (Dick Johnson) <linux-os@analogic.com> wrote:
>
> On Mon, 29 Aug 2005, Jesper Juhl wrote:
>
> >
> > verify_area() is deprecated and has been for quite a while.
[snip]
> >
> > This patch converts all uses of verify_area() in xtensa/kernel/signal.c to
> > use access_ok() instead.
> >
> > Please apply.
> >
>
> Isn't access_ok() also gone, handled by the put/get/copy/to/from/user
> stuff?
>
No. access_ok() is still used extensively.
--
Jesper Juhl <jesper.juhl@gmail.com>
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please http://www.expita.com/nomime.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-08-29 17:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-29 17:31 [PATCH] convert verify_area to access_ok in xtensa/kernel/signal.c Jesper Juhl
2005-08-29 17:39 ` linux-os (Dick Johnson)
2005-08-29 17:45 ` Jesper Juhl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox