proc.c

来自「Linux Kernel 2.6.9 for OMAP1710」· C语言 代码 · 共 858 行 · 第 1/2 页

C
858
字号
/* proc.c: /proc interface for AFS * * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */#include <linux/sched.h>#include <linux/slab.h>#include <linux/module.h>#include <linux/proc_fs.h>#include <linux/seq_file.h>#include "cell.h"#include "volume.h"#include <asm/uaccess.h>#include "internal.h"static struct proc_dir_entry *proc_afs;static int afs_proc_cells_open(struct inode *inode, struct file *file);static void *afs_proc_cells_start(struct seq_file *p, loff_t *pos);static void *afs_proc_cells_next(struct seq_file *p, void *v, loff_t *pos);static void afs_proc_cells_stop(struct seq_file *p, void *v);static int afs_proc_cells_show(struct seq_file *m, void *v);static ssize_t afs_proc_cells_write(struct file *file, const char __user *buf,				    size_t size, loff_t *_pos);static struct seq_operations afs_proc_cells_ops = {	.start	= afs_proc_cells_start,	.next	= afs_proc_cells_next,	.stop	= afs_proc_cells_stop,	.show	= afs_proc_cells_show,};static struct file_operations afs_proc_cells_fops = {	.open		= afs_proc_cells_open,	.read		= seq_read,	.write		= afs_proc_cells_write,	.llseek		= seq_lseek,	.release	= seq_release,};static int afs_proc_rootcell_open(struct inode *inode, struct file *file);static int afs_proc_rootcell_release(struct inode *inode, struct file *file);static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf,				      size_t size, loff_t *_pos);static ssize_t afs_proc_rootcell_write(struct file *file,				       const char __user *buf,				       size_t size, loff_t *_pos);static struct file_operations afs_proc_rootcell_fops = {	.open		= afs_proc_rootcell_open,	.read		= afs_proc_rootcell_read,	.write		= afs_proc_rootcell_write,	.llseek		= no_llseek,	.release	= afs_proc_rootcell_release};static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file);static int afs_proc_cell_volumes_release(struct inode *inode,					 struct file *file);static void *afs_proc_cell_volumes_start(struct seq_file *p, loff_t *pos);static void *afs_proc_cell_volumes_next(struct seq_file *p, void *v,					loff_t *pos);static void afs_proc_cell_volumes_stop(struct seq_file *p, void *v);static int afs_proc_cell_volumes_show(struct seq_file *m, void *v);static struct seq_operations afs_proc_cell_volumes_ops = {	.start	= afs_proc_cell_volumes_start,	.next	= afs_proc_cell_volumes_next,	.stop	= afs_proc_cell_volumes_stop,	.show	= afs_proc_cell_volumes_show,};static struct file_operations afs_proc_cell_volumes_fops = {	.open		= afs_proc_cell_volumes_open,	.read		= seq_read,	.llseek		= seq_lseek,	.release	= afs_proc_cell_volumes_release,};static int afs_proc_cell_vlservers_open(struct inode *inode,					struct file *file);static int afs_proc_cell_vlservers_release(struct inode *inode,					   struct file *file);static void *afs_proc_cell_vlservers_start(struct seq_file *p, loff_t *pos);static void *afs_proc_cell_vlservers_next(struct seq_file *p, void *v,					  loff_t *pos);static void afs_proc_cell_vlservers_stop(struct seq_file *p, void *v);static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v);static struct seq_operations afs_proc_cell_vlservers_ops = {	.start	= afs_proc_cell_vlservers_start,	.next	= afs_proc_cell_vlservers_next,	.stop	= afs_proc_cell_vlservers_stop,	.show	= afs_proc_cell_vlservers_show,};static struct file_operations afs_proc_cell_vlservers_fops = {	.open		= afs_proc_cell_vlservers_open,	.read		= seq_read,	.llseek		= seq_lseek,	.release	= afs_proc_cell_vlservers_release,};static int afs_proc_cell_servers_open(struct inode *inode, struct file *file);static int afs_proc_cell_servers_release(struct inode *inode,					 struct file *file);static void *afs_proc_cell_servers_start(struct seq_file *p, loff_t *pos);static void *afs_proc_cell_servers_next(struct seq_file *p, void *v,					loff_t *pos);static void afs_proc_cell_servers_stop(struct seq_file *p, void *v);static int afs_proc_cell_servers_show(struct seq_file *m, void *v);static struct seq_operations afs_proc_cell_servers_ops = {	.start	= afs_proc_cell_servers_start,	.next	= afs_proc_cell_servers_next,	.stop	= afs_proc_cell_servers_stop,	.show	= afs_proc_cell_servers_show,};static struct file_operations afs_proc_cell_servers_fops = {	.open		= afs_proc_cell_servers_open,	.read		= seq_read,	.llseek		= seq_lseek,	.release	= afs_proc_cell_servers_release,};/*****************************************************************************//* * initialise the /proc/fs/afs/ directory */int afs_proc_init(void){	struct proc_dir_entry *p;	_enter("");	proc_afs = proc_mkdir("fs/afs", NULL);	if (!proc_afs)		goto error;	proc_afs->owner = THIS_MODULE;	p = create_proc_entry("cells", 0, proc_afs);	if (!p)		goto error_proc;	p->proc_fops = &afs_proc_cells_fops;	p->owner = THIS_MODULE;	p = create_proc_entry("rootcell", 0, proc_afs);	if (!p)		goto error_cells;	p->proc_fops = &afs_proc_rootcell_fops;	p->owner = THIS_MODULE;	_leave(" = 0");	return 0; error_cells: 	remove_proc_entry("cells", proc_afs); error_proc:	remove_proc_entry("fs/afs", NULL); error:	_leave(" = -ENOMEM");	return -ENOMEM;} /* end afs_proc_init() *//*****************************************************************************//* * clean up the /proc/fs/afs/ directory */void afs_proc_cleanup(void){	remove_proc_entry("cells", proc_afs);	remove_proc_entry("fs/afs", NULL);} /* end afs_proc_cleanup() *//*****************************************************************************//* * open "/proc/fs/afs/cells" which provides a summary of extant cells */static int afs_proc_cells_open(struct inode *inode, struct file *file){	struct seq_file *m;	int ret;	ret = seq_open(file, &afs_proc_cells_ops);	if (ret < 0)		return ret;	m = file->private_data;	m->private = PDE(inode)->data;	return 0;} /* end afs_proc_cells_open() *//*****************************************************************************//* * set up the iterator to start reading from the cells list and return the * first item */static void *afs_proc_cells_start(struct seq_file *m, loff_t *_pos){	struct list_head *_p;	loff_t pos = *_pos;	/* lock the list against modification */	down_read(&afs_proc_cells_sem);	/* allow for the header line */	if (!pos)		return (void *) 1;	pos--;	/* find the n'th element in the list */	list_for_each(_p, &afs_proc_cells)		if (!pos--)			break;	return _p != &afs_proc_cells ? _p : NULL;} /* end afs_proc_cells_start() *//*****************************************************************************//* * move to next cell in cells list */static void *afs_proc_cells_next(struct seq_file *p, void *v, loff_t *pos){	struct list_head *_p;	(*pos)++;	_p = v;	_p = v == (void *) 1 ? afs_proc_cells.next : _p->next;	return _p != &afs_proc_cells ? _p : NULL;} /* end afs_proc_cells_next() *//*****************************************************************************//* * clean up after reading from the cells list */static void afs_proc_cells_stop(struct seq_file *p, void *v){	up_read(&afs_proc_cells_sem);} /* end afs_proc_cells_stop() *//*****************************************************************************//* * display a header line followed by a load of cell lines */static int afs_proc_cells_show(struct seq_file *m, void *v){	struct afs_cell *cell = list_entry(v, struct afs_cell, proc_link);	/* display header on line 1 */	if (v == (void *) 1) {		seq_puts(m, "USE NAME\n");		return 0;	}	/* display one cell per line on subsequent lines */	seq_printf(m, "%3d %s\n", atomic_read(&cell->usage), cell->name);	return 0;} /* end afs_proc_cells_show() *//*****************************************************************************//* * handle writes to /proc/fs/afs/cells * - to add cells: echo "add <cellname> <IP>[:<IP>][:<IP>]" */static ssize_t afs_proc_cells_write(struct file *file, const char __user *buf,				    size_t size, loff_t *_pos){	char *kbuf, *name, *args;	int ret;	/* start by dragging the command into memory */	if (size <= 1 || size >= PAGE_SIZE)		return -EINVAL;	kbuf = kmalloc(size + 1, GFP_KERNEL);	if (!kbuf)		return -ENOMEM;	ret = -EFAULT;	if (copy_from_user(kbuf, buf, size) != 0)		goto done;	kbuf[size] = 0;	/* trim to first NL */	name = memchr(kbuf, '\n', size);	if (name)		*name = 0;	/* split into command, name and argslist */	name = strchr(kbuf, ' ');	if (!name)		goto inval;	do {		*name++ = 0;	} while(*name == ' ');	if (!*name)		goto inval;	args = strchr(name, ' ');	if (!args)		goto inval;	do {		*args++ = 0;	} while(*args == ' ');	if (!*args)		goto inval;	/* determine command to perform */	_debug("cmd=%s name=%s args=%s", kbuf, name, args);	if (strcmp(kbuf, "add") == 0) {		struct afs_cell *cell;		ret = afs_cell_create(name, args, &cell);		if (ret < 0)			goto done;		printk("kAFS: Added new cell '%s'\n", name);	}	else {		goto inval;	}	ret = size; done:	kfree(kbuf);	_leave(" = %d", ret);	return ret; inval:	ret = -EINVAL;	printk("kAFS: Invalid Command on /proc/fs/afs/cells file\n");	goto done;} /* end afs_proc_cells_write() *//*****************************************************************************//* * Stubs for /proc/fs/afs/rootcell */static int afs_proc_rootcell_open(struct inode *inode, struct file *file){	return 0;}static int afs_proc_rootcell_release(struct inode *inode, struct file *file){	return 0;}static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf,				      size_t size, loff_t *_pos){	return 0;}/*****************************************************************************//* * handle writes to /proc/fs/afs/rootcell * - to initialize rootcell: echo "cell.name:192.168.231.14" */static ssize_t afs_proc_rootcell_write(struct file *file,				       const char __user *buf,				       size_t size, loff_t *_pos){	char *kbuf, *s;	int ret;	/* start by dragging the command into memory */	if (size <= 1 || size >= PAGE_SIZE)		return -EINVAL;	ret = -ENOMEM;	kbuf = kmalloc(size + 1, GFP_KERNEL);	if (!kbuf)		goto nomem;	ret = -EFAULT;	if (copy_from_user(kbuf, buf, size) != 0)		goto infault;	kbuf[size] = 0;	/* trim to first NL */	s = memchr(kbuf, '\n', size);	if (s)		*s = 0;	/* determine command to perform */	_debug("rootcell=%s", kbuf);	ret = afs_cell_init(kbuf);	if (ret >= 0)		ret = size;	/* consume everything, always */ infault:	kfree(kbuf); nomem:	_leave(" = %d", ret);	return ret;} /* end afs_proc_rootcell_write() *//*****************************************************************************//* * initialise /proc/fs/afs/<cell>/ */int afs_proc_cell_setup(struct afs_cell *cell){	struct proc_dir_entry *p;	_enter("%p{%s}", cell, cell->name);	cell->proc_dir = proc_mkdir(cell->name, proc_afs);	if (!cell->proc_dir)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?