1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1993 Jan-Simon Pendry
|
|
|
|
* Copyright (c) 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Jan-Simon Pendry.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1997-02-10 02:22:35 +00:00
|
|
|
* @(#)procfs_fpregs.c 8.2 (Berkeley) 6/15/94
|
1994-05-24 10:09:53 +00:00
|
|
|
*
|
1997-02-10 02:22:35 +00:00
|
|
|
* From:
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/mutex.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/proc.h>
|
Dissociate ptrace from procfs.
Until now, the ptrace syscall was implemented as a wrapper that called
various functions in procfs depending on which ptrace operation was
requested. Most of these functions were themselves wrappers around
procfs_{read,write}_{,db,fp}regs(), with only some extra error checks,
which weren't necessary in the ptrace case anyway.
This commit moves procfs_rwmem() from procfs_mem.c into sys_process.c
(renaming it to proc_rwmem() in the process), and implements ptrace()
directly in terms of procfs_{read,write}_{,db,fp}regs() instead of
having it fake up a struct uio and then call procfs_do{,db,fp}regs().
It also moves the prototypes for procfs_{read,write}_{,db,fp}regs()
and proc_rwmem() from proc.h to ptrace.h, and marks all procfs files
except procfs_machdep.c as "optional procfs" instead of "standard".
2001-10-07 20:08:42 +00:00
|
|
|
#include <sys/ptrace.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/vnode.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <machine/reg.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
|
2001-05-23 09:42:29 +00:00
|
|
|
#include <fs/procfs/procfs.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
|
1996-01-24 18:41:41 +00:00
|
|
|
#include <vm/vm.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
procfs_dofpregs(curp, p, pfs, uio)
|
|
|
|
struct proc *curp;
|
|
|
|
struct proc *p;
|
|
|
|
struct pfsnode *pfs;
|
|
|
|
struct uio *uio;
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
struct fpreg r;
|
|
|
|
char *kv;
|
|
|
|
int kl;
|
|
|
|
|
2001-07-05 17:10:46 +00:00
|
|
|
if (p_candebug(curp, p))
|
1997-08-12 05:23:51 +00:00
|
|
|
return EPERM;
|
1994-05-24 10:09:53 +00:00
|
|
|
kl = sizeof(r);
|
|
|
|
kv = (char *) &r;
|
|
|
|
|
|
|
|
kv += uio->uio_offset;
|
|
|
|
kl -= uio->uio_offset;
|
|
|
|
if (kl > uio->uio_resid)
|
|
|
|
kl = uio->uio_resid;
|
|
|
|
|
1996-01-24 18:41:41 +00:00
|
|
|
PHOLD(p);
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
if (kl < 0)
|
|
|
|
error = EINVAL;
|
|
|
|
else
|
2001-09-12 08:38:13 +00:00
|
|
|
error = procfs_read_fpregs(&p->p_thread, &r);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (error == 0)
|
|
|
|
error = uiomove(kv, kl, uio);
|
|
|
|
if (error == 0 && uio->uio_rw == UIO_WRITE) {
|
|
|
|
if (p->p_stat != SSTOP)
|
|
|
|
error = EBUSY;
|
|
|
|
else
|
2001-09-12 08:38:13 +00:00
|
|
|
error = procfs_write_fpregs(&p->p_thread, &r);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1996-01-24 18:41:41 +00:00
|
|
|
PRELE(p);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
uio->uio_offset = 0;
|
|
|
|
return (error);
|
|
|
|
}
|
1996-01-24 18:41:41 +00:00
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
procfs_validfpregs(struct thread *td)
|
1996-01-24 18:41:41 +00:00
|
|
|
{
|
2001-03-07 02:07:56 +00:00
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
return (( td->td_proc->p_flag & P_SYSTEM) == 0);
|
1996-01-24 18:41:41 +00:00
|
|
|
}
|