2005-01-06 18:10:42 +00:00
|
|
|
/*-
|
2012-01-15 13:23:18 +00:00
|
|
|
* Copyright (c) 2001 Dag-Erling Smørgrav
|
2001-12-04 01:35:06 +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.
|
|
|
|
*
|
|
|
|
* @(#)procfs_vfsops.c 8.7 (Berkeley) 5/10/95
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <sys/exec.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/mutex.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/sbuf.h>
|
|
|
|
#include <sys/sysproto.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
|
|
|
|
#include <vm/vm.h>
|
|
|
|
#include <vm/pmap.h>
|
|
|
|
#include <vm/vm_param.h>
|
|
|
|
|
|
|
|
#include <fs/pseudofs/pseudofs.h>
|
|
|
|
#include <fs/procfs/procfs.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Filler function for proc/pid/self
|
|
|
|
*/
|
2001-12-08 22:34:14 +00:00
|
|
|
int
|
2001-12-04 01:35:06 +00:00
|
|
|
procfs_doprocfile(PFS_FILL_ARGS)
|
|
|
|
{
|
2011-08-16 20:13:17 +00:00
|
|
|
char *fullpath;
|
|
|
|
char *freepath;
|
2007-02-07 10:30:49 +00:00
|
|
|
struct vnode *textvp;
|
2011-08-16 20:13:17 +00:00
|
|
|
int error;
|
2001-12-04 01:35:06 +00:00
|
|
|
|
2011-08-16 20:13:17 +00:00
|
|
|
freepath = NULL;
|
2008-11-04 19:04:01 +00:00
|
|
|
PROC_LOCK(p);
|
2007-02-07 10:30:49 +00:00
|
|
|
textvp = p->p_textvp;
|
2008-11-04 19:04:01 +00:00
|
|
|
vhold(textvp);
|
|
|
|
PROC_UNLOCK(p);
|
2011-08-16 20:13:17 +00:00
|
|
|
error = vn_fullpath(td, textvp, &fullpath, &freepath);
|
2008-11-04 19:04:01 +00:00
|
|
|
vdrop(textvp);
|
2011-08-16 20:13:17 +00:00
|
|
|
if (error == 0)
|
|
|
|
sbuf_printf(sb, "%s", fullpath);
|
|
|
|
if (freepath != NULL)
|
2001-12-04 01:35:06 +00:00
|
|
|
free(freepath, M_TEMP);
|
2011-08-16 20:13:17 +00:00
|
|
|
return (error);
|
2001-12-04 01:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Filler function for proc/curproc
|
|
|
|
*/
|
2001-12-08 22:34:14 +00:00
|
|
|
int
|
2001-12-04 01:35:06 +00:00
|
|
|
procfs_docurproc(PFS_FILL_ARGS)
|
|
|
|
{
|
|
|
|
sbuf_printf(sb, "%ld", (long)td->td_proc->p_pid);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adjust mode for some nodes that need it
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
procfs_attr(PFS_ATTR_ARGS)
|
|
|
|
{
|
2003-04-17 22:12:12 +00:00
|
|
|
|
2001-12-04 01:35:06 +00:00
|
|
|
/* XXX inefficient, split into separate functions */
|
2006-06-05 16:41:27 +00:00
|
|
|
if (strcmp(pn->pn_name, "ctl") == 0 ||
|
2001-12-04 01:35:06 +00:00
|
|
|
strcmp(pn->pn_name, "note") == 0 ||
|
|
|
|
strcmp(pn->pn_name, "notepg") == 0)
|
|
|
|
vap->va_mode = 0200;
|
|
|
|
else if (strcmp(pn->pn_name, "mem") == 0 ||
|
|
|
|
strcmp(pn->pn_name, "regs") == 0 ||
|
|
|
|
strcmp(pn->pn_name, "dbregs") == 0 ||
|
2009-09-23 12:08:08 +00:00
|
|
|
strcmp(pn->pn_name, "fpregs") == 0 ||
|
|
|
|
strcmp(pn->pn_name, "osrel") == 0)
|
2001-12-04 01:35:06 +00:00
|
|
|
vap->va_mode = 0600;
|
|
|
|
|
2009-02-16 15:17:26 +00:00
|
|
|
if (p != NULL) {
|
|
|
|
PROC_LOCK_ASSERT(p, MA_OWNED);
|
2006-06-05 16:41:27 +00:00
|
|
|
|
2009-02-16 15:17:26 +00:00
|
|
|
if ((p->p_flag & P_SUGID) && pn->pn_type != pfstype_procdir)
|
|
|
|
vap->va_mode = 0;
|
|
|
|
}
|
2003-12-07 17:40:00 +00:00
|
|
|
|
2001-12-04 01:35:06 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Visibility: some files only exist for non-system processes
|
|
|
|
* Non-static because linprocfs uses it.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
procfs_notsystem(PFS_VIS_ARGS)
|
|
|
|
{
|
2003-04-17 22:12:12 +00:00
|
|
|
PROC_LOCK_ASSERT(p, MA_OWNED);
|
2001-12-04 01:35:06 +00:00
|
|
|
return ((p->p_flag & P_SYSTEM) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Visibility: some files are only visible to process that can debug
|
|
|
|
* the target process.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
procfs_candebug(PFS_VIS_ARGS)
|
|
|
|
{
|
2002-05-19 00:14:50 +00:00
|
|
|
PROC_LOCK_ASSERT(p, MA_OWNED);
|
2003-12-07 17:40:00 +00:00
|
|
|
return ((p->p_flag & P_SYSTEM) == 0 && p_candebug(td, p) == 0);
|
2001-12-04 01:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constructor
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
procfs_init(PFS_INIT_ARGS)
|
|
|
|
{
|
|
|
|
struct pfs_node *root;
|
|
|
|
struct pfs_node *dir;
|
|
|
|
struct pfs_node *node;
|
|
|
|
|
|
|
|
root = pi->pi_root;
|
|
|
|
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_link(root, "curproc", procfs_docurproc,
|
2007-03-12 12:16:52 +00:00
|
|
|
NULL, NULL, NULL, 0);
|
2003-12-07 17:40:00 +00:00
|
|
|
|
2001-12-04 01:35:06 +00:00
|
|
|
dir = pfs_create_dir(root, "pid",
|
2007-03-12 12:16:52 +00:00
|
|
|
procfs_attr, NULL, NULL, PFS_PROCDEP);
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_file(dir, "cmdline", procfs_doproccmdline,
|
2007-03-12 12:16:52 +00:00
|
|
|
NULL, NULL, NULL, PFS_RD);
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_file(dir, "ctl", procfs_doprocctl,
|
2007-03-12 12:16:52 +00:00
|
|
|
procfs_attr, NULL, NULL, PFS_WR);
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_file(dir, "dbregs", procfs_doprocdbregs,
|
2007-03-12 12:16:52 +00:00
|
|
|
procfs_attr, procfs_candebug, NULL, PFS_RDWR|PFS_RAW);
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_file(dir, "etype", procfs_doproctype,
|
2007-03-12 12:16:52 +00:00
|
|
|
NULL, NULL, NULL, PFS_RD);
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_file(dir, "fpregs", procfs_doprocfpregs,
|
2007-03-12 12:16:52 +00:00
|
|
|
procfs_attr, procfs_candebug, NULL, PFS_RDWR|PFS_RAW);
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_file(dir, "map", procfs_doprocmap,
|
2007-03-12 12:16:52 +00:00
|
|
|
NULL, procfs_notsystem, NULL, PFS_RD);
|
2002-10-20 21:30:02 +00:00
|
|
|
node = pfs_create_file(dir, "mem", procfs_doprocmem,
|
2007-03-12 12:16:52 +00:00
|
|
|
procfs_attr, procfs_candebug, NULL, PFS_RDWR|PFS_RAW);
|
2002-10-20 21:30:02 +00:00
|
|
|
node->pn_ioctl = procfs_ioctl;
|
|
|
|
node->pn_close = procfs_close;
|
|
|
|
pfs_create_file(dir, "note", procfs_doprocnote,
|
2007-03-12 12:16:52 +00:00
|
|
|
procfs_attr, procfs_candebug, NULL, PFS_WR);
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_file(dir, "notepg", procfs_doprocnote,
|
2007-03-12 12:16:52 +00:00
|
|
|
procfs_attr, procfs_candebug, NULL, PFS_WR);
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_file(dir, "regs", procfs_doprocregs,
|
2007-03-12 12:16:52 +00:00
|
|
|
procfs_attr, procfs_candebug, NULL, PFS_RDWR|PFS_RAW);
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_file(dir, "rlimit", procfs_doprocrlimit,
|
2007-03-12 12:16:52 +00:00
|
|
|
NULL, NULL, NULL, PFS_RD);
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_file(dir, "status", procfs_doprocstatus,
|
2007-03-12 12:16:52 +00:00
|
|
|
NULL, NULL, NULL, PFS_RD);
|
2009-09-23 12:08:08 +00:00
|
|
|
pfs_create_file(dir, "osrel", procfs_doosrel,
|
|
|
|
procfs_attr, procfs_candebug, NULL, PFS_RDWR);
|
2003-12-07 17:40:00 +00:00
|
|
|
|
2002-10-20 21:30:02 +00:00
|
|
|
pfs_create_link(dir, "file", procfs_doprocfile,
|
2007-03-12 12:16:52 +00:00
|
|
|
NULL, procfs_notsystem, NULL, 0);
|
2003-12-07 17:40:00 +00:00
|
|
|
|
2001-12-04 01:35:06 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Destructor
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
procfs_uninit(PFS_INIT_ARGS)
|
|
|
|
{
|
|
|
|
/* nothing to do, pseudofs will GC */
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2012-02-29 00:30:18 +00:00
|
|
|
PSEUDOFS(procfs, 1, PR_ALLOW_MOUNT_PROCFS);
|