mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 11:16:11 +00:00
pnpbios: convert to seq_file
Convert code away from ->read_proc/->write_proc interfaces. Switch to
proc_create()/proc_create_data() which make addition of proc entries
reliable wrt NULL ->proc_fops, NULL ->data and so on.
Problem with ->read_proc et al is described here commit
786d7e1612
"Fix rmmod/read/write races in
/proc entries"
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Adam Belay <abelay@mit.edu>
Cc: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
d52f235f17
commit
5116fa2b3a
1 changed files with 131 additions and 77 deletions
|
@ -24,6 +24,7 @@
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
#include <linux/proc_fs.h>
|
#include <linux/proc_fs.h>
|
||||||
#include <linux/pnp.h>
|
#include <linux/pnp.h>
|
||||||
|
#include <linux/seq_file.h>
|
||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
|
|
||||||
#include <asm/uaccess.h>
|
#include <asm/uaccess.h>
|
||||||
|
@ -33,42 +34,65 @@
|
||||||
static struct proc_dir_entry *proc_pnp = NULL;
|
static struct proc_dir_entry *proc_pnp = NULL;
|
||||||
static struct proc_dir_entry *proc_pnp_boot = NULL;
|
static struct proc_dir_entry *proc_pnp_boot = NULL;
|
||||||
|
|
||||||
static int proc_read_pnpconfig(char *buf, char **start, off_t pos,
|
static int pnpconfig_proc_show(struct seq_file *m, void *v)
|
||||||
int count, int *eof, void *data)
|
|
||||||
{
|
{
|
||||||
struct pnp_isa_config_struc pnps;
|
struct pnp_isa_config_struc pnps;
|
||||||
|
|
||||||
if (pnp_bios_isapnp_config(&pnps))
|
if (pnp_bios_isapnp_config(&pnps))
|
||||||
return -EIO;
|
return -EIO;
|
||||||
return snprintf(buf, count,
|
seq_printf(m, "structure_revision %d\n"
|
||||||
"structure_revision %d\n"
|
"number_of_CSNs %d\n"
|
||||||
"number_of_CSNs %d\n"
|
"ISA_read_data_port 0x%x\n",
|
||||||
"ISA_read_data_port 0x%x\n",
|
pnps.revision, pnps.no_csns, pnps.isa_rd_data_port);
|
||||||
pnps.revision, pnps.no_csns, pnps.isa_rd_data_port);
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int proc_read_escdinfo(char *buf, char **start, off_t pos,
|
static int pnpconfig_proc_open(struct inode *inode, struct file *file)
|
||||||
int count, int *eof, void *data)
|
{
|
||||||
|
return single_open(file, pnpconfig_proc_show, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct file_operations pnpconfig_proc_fops = {
|
||||||
|
.owner = THIS_MODULE,
|
||||||
|
.open = pnpconfig_proc_open,
|
||||||
|
.read = seq_read,
|
||||||
|
.llseek = seq_lseek,
|
||||||
|
.release = single_release,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int escd_info_proc_show(struct seq_file *m, void *v)
|
||||||
{
|
{
|
||||||
struct escd_info_struc escd;
|
struct escd_info_struc escd;
|
||||||
|
|
||||||
if (pnp_bios_escd_info(&escd))
|
if (pnp_bios_escd_info(&escd))
|
||||||
return -EIO;
|
return -EIO;
|
||||||
return snprintf(buf, count,
|
seq_printf(m, "min_ESCD_write_size %d\n"
|
||||||
"min_ESCD_write_size %d\n"
|
|
||||||
"ESCD_size %d\n"
|
"ESCD_size %d\n"
|
||||||
"NVRAM_base 0x%x\n",
|
"NVRAM_base 0x%x\n",
|
||||||
escd.min_escd_write_size,
|
escd.min_escd_write_size,
|
||||||
escd.escd_size, escd.nv_storage_base);
|
escd.escd_size, escd.nv_storage_base);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int escd_info_proc_open(struct inode *inode, struct file *file)
|
||||||
|
{
|
||||||
|
return single_open(file, escd_info_proc_show, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct file_operations escd_info_proc_fops = {
|
||||||
|
.owner = THIS_MODULE,
|
||||||
|
.open = escd_info_proc_open,
|
||||||
|
.read = seq_read,
|
||||||
|
.llseek = seq_lseek,
|
||||||
|
.release = single_release,
|
||||||
|
};
|
||||||
|
|
||||||
#define MAX_SANE_ESCD_SIZE (32*1024)
|
#define MAX_SANE_ESCD_SIZE (32*1024)
|
||||||
static int proc_read_escd(char *buf, char **start, off_t pos,
|
static int escd_proc_show(struct seq_file *m, void *v)
|
||||||
int count, int *eof, void *data)
|
|
||||||
{
|
{
|
||||||
struct escd_info_struc escd;
|
struct escd_info_struc escd;
|
||||||
char *tmpbuf;
|
char *tmpbuf;
|
||||||
int escd_size, escd_left_to_read, n;
|
int escd_size;
|
||||||
|
|
||||||
if (pnp_bios_escd_info(&escd))
|
if (pnp_bios_escd_info(&escd))
|
||||||
return -EIO;
|
return -EIO;
|
||||||
|
@ -76,7 +100,7 @@ static int proc_read_escd(char *buf, char **start, off_t pos,
|
||||||
/* sanity check */
|
/* sanity check */
|
||||||
if (escd.escd_size > MAX_SANE_ESCD_SIZE) {
|
if (escd.escd_size > MAX_SANE_ESCD_SIZE) {
|
||||||
printk(KERN_ERR
|
printk(KERN_ERR
|
||||||
"PnPBIOS: proc_read_escd: ESCD size reported by BIOS escd_info call is too great\n");
|
"PnPBIOS: %s: ESCD size reported by BIOS escd_info call is too great\n", __func__);
|
||||||
return -EFBIG;
|
return -EFBIG;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -94,56 +118,75 @@ static int proc_read_escd(char *buf, char **start, off_t pos,
|
||||||
|
|
||||||
/* sanity check */
|
/* sanity check */
|
||||||
if (escd_size > MAX_SANE_ESCD_SIZE) {
|
if (escd_size > MAX_SANE_ESCD_SIZE) {
|
||||||
printk(KERN_ERR "PnPBIOS: proc_read_escd: ESCD size reported by"
|
printk(KERN_ERR "PnPBIOS: %s: ESCD size reported by"
|
||||||
" BIOS read_escd call is too great\n");
|
" BIOS read_escd call is too great\n", __func__);
|
||||||
kfree(tmpbuf);
|
kfree(tmpbuf);
|
||||||
return -EFBIG;
|
return -EFBIG;
|
||||||
}
|
}
|
||||||
|
|
||||||
escd_left_to_read = escd_size - pos;
|
seq_write(m, tmpbuf, escd_size);
|
||||||
if (escd_left_to_read < 0)
|
|
||||||
escd_left_to_read = 0;
|
|
||||||
if (escd_left_to_read == 0)
|
|
||||||
*eof = 1;
|
|
||||||
n = min(count, escd_left_to_read);
|
|
||||||
memcpy(buf, tmpbuf + pos, n);
|
|
||||||
kfree(tmpbuf);
|
kfree(tmpbuf);
|
||||||
*start = buf;
|
return 0;
|
||||||
return n;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int proc_read_legacyres(char *buf, char **start, off_t pos,
|
static int escd_proc_open(struct inode *inode, struct file *file)
|
||||||
int count, int *eof, void *data)
|
|
||||||
{
|
{
|
||||||
/* Assume that the following won't overflow the buffer */
|
return single_open(file, escd_proc_show, NULL);
|
||||||
if (pnp_bios_get_stat_res(buf))
|
|
||||||
return -EIO;
|
|
||||||
|
|
||||||
return count; // FIXME: Return actual length
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int proc_read_devices(char *buf, char **start, off_t pos,
|
static const struct file_operations escd_proc_fops = {
|
||||||
int count, int *eof, void *data)
|
.owner = THIS_MODULE,
|
||||||
|
.open = escd_proc_open,
|
||||||
|
.read = seq_read,
|
||||||
|
.llseek = seq_lseek,
|
||||||
|
.release = single_release,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int pnp_legacyres_proc_show(struct seq_file *m, void *v)
|
||||||
|
{
|
||||||
|
void *buf;
|
||||||
|
|
||||||
|
buf = kmalloc(65536, GFP_KERNEL);
|
||||||
|
if (!buf)
|
||||||
|
return -ENOMEM;
|
||||||
|
if (pnp_bios_get_stat_res(buf)) {
|
||||||
|
kfree(buf);
|
||||||
|
return -EIO;
|
||||||
|
}
|
||||||
|
|
||||||
|
seq_write(m, buf, 65536);
|
||||||
|
kfree(buf);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int pnp_legacyres_proc_open(struct inode *inode, struct file *file)
|
||||||
|
{
|
||||||
|
return single_open(file, pnp_legacyres_proc_show, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct file_operations pnp_legacyres_proc_fops = {
|
||||||
|
.owner = THIS_MODULE,
|
||||||
|
.open = pnp_legacyres_proc_open,
|
||||||
|
.read = seq_read,
|
||||||
|
.llseek = seq_lseek,
|
||||||
|
.release = single_release,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int pnp_devices_proc_show(struct seq_file *m, void *v)
|
||||||
{
|
{
|
||||||
struct pnp_bios_node *node;
|
struct pnp_bios_node *node;
|
||||||
u8 nodenum;
|
u8 nodenum;
|
||||||
char *p = buf;
|
|
||||||
|
|
||||||
if (pos >= 0xff)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
node = kzalloc(node_info.max_node_size, GFP_KERNEL);
|
node = kzalloc(node_info.max_node_size, GFP_KERNEL);
|
||||||
if (!node)
|
if (!node)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
for (nodenum = pos; nodenum < 0xff;) {
|
for (nodenum = 0; nodenum < 0xff;) {
|
||||||
u8 thisnodenum = nodenum;
|
u8 thisnodenum = nodenum;
|
||||||
/* 26 = the number of characters per line sprintf'ed */
|
|
||||||
if ((p - buf + 26) > count)
|
|
||||||
break;
|
|
||||||
if (pnp_bios_get_dev_node(&nodenum, PNPMODE_DYNAMIC, node))
|
if (pnp_bios_get_dev_node(&nodenum, PNPMODE_DYNAMIC, node))
|
||||||
break;
|
break;
|
||||||
p += sprintf(p, "%02x\t%08x\t%02x:%02x:%02x\t%04x\n",
|
seq_printf(m, "%02x\t%08x\t%02x:%02x:%02x\t%04x\n",
|
||||||
node->handle, node->eisa_id,
|
node->handle, node->eisa_id,
|
||||||
node->type_code[0], node->type_code[1],
|
node->type_code[0], node->type_code[1],
|
||||||
node->type_code[2], node->flags);
|
node->type_code[2], node->flags);
|
||||||
|
@ -153,20 +196,29 @@ static int proc_read_devices(char *buf, char **start, off_t pos,
|
||||||
"PnPBIOS: proc_read_devices:",
|
"PnPBIOS: proc_read_devices:",
|
||||||
(unsigned int)nodenum,
|
(unsigned int)nodenum,
|
||||||
(unsigned int)thisnodenum);
|
(unsigned int)thisnodenum);
|
||||||
*eof = 1;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
kfree(node);
|
kfree(node);
|
||||||
if (nodenum == 0xff)
|
return 0;
|
||||||
*eof = 1;
|
|
||||||
*start = (char *)((off_t) nodenum - pos);
|
|
||||||
return p - buf;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int proc_read_node(char *buf, char **start, off_t pos,
|
static int pnp_devices_proc_open(struct inode *inode, struct file *file)
|
||||||
int count, int *eof, void *data)
|
|
||||||
{
|
{
|
||||||
|
return single_open(file, pnp_devices_proc_show, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct file_operations pnp_devices_proc_fops = {
|
||||||
|
.owner = THIS_MODULE,
|
||||||
|
.open = pnp_devices_proc_open,
|
||||||
|
.read = seq_read,
|
||||||
|
.llseek = seq_lseek,
|
||||||
|
.release = single_release,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int pnpbios_proc_show(struct seq_file *m, void *v)
|
||||||
|
{
|
||||||
|
void *data = m->private;
|
||||||
struct pnp_bios_node *node;
|
struct pnp_bios_node *node;
|
||||||
int boot = (long)data >> 8;
|
int boot = (long)data >> 8;
|
||||||
u8 nodenum = (long)data;
|
u8 nodenum = (long)data;
|
||||||
|
@ -180,14 +232,20 @@ static int proc_read_node(char *buf, char **start, off_t pos,
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
len = node->size - sizeof(struct pnp_bios_node);
|
len = node->size - sizeof(struct pnp_bios_node);
|
||||||
memcpy(buf, node->data, len);
|
seq_write(m, node->data, len);
|
||||||
kfree(node);
|
kfree(node);
|
||||||
return len;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int proc_write_node(struct file *file, const char __user * buf,
|
static int pnpbios_proc_open(struct inode *inode, struct file *file)
|
||||||
unsigned long count, void *data)
|
|
||||||
{
|
{
|
||||||
|
return single_open(file, pnpbios_proc_show, PDE(inode)->data);
|
||||||
|
}
|
||||||
|
|
||||||
|
static ssize_t pnpbios_proc_write(struct file *file, const char __user *buf,
|
||||||
|
size_t count, loff_t *pos)
|
||||||
|
{
|
||||||
|
void *data = PDE(file->f_path.dentry->d_inode)->data;
|
||||||
struct pnp_bios_node *node;
|
struct pnp_bios_node *node;
|
||||||
int boot = (long)data >> 8;
|
int boot = (long)data >> 8;
|
||||||
u8 nodenum = (long)data;
|
u8 nodenum = (long)data;
|
||||||
|
@ -218,34 +276,33 @@ out:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const struct file_operations pnpbios_proc_fops = {
|
||||||
|
.owner = THIS_MODULE,
|
||||||
|
.open = pnpbios_proc_open,
|
||||||
|
.read = seq_read,
|
||||||
|
.llseek = seq_lseek,
|
||||||
|
.release = single_release,
|
||||||
|
.write = pnpbios_proc_write,
|
||||||
|
};
|
||||||
|
|
||||||
int pnpbios_interface_attach_device(struct pnp_bios_node *node)
|
int pnpbios_interface_attach_device(struct pnp_bios_node *node)
|
||||||
{
|
{
|
||||||
char name[3];
|
char name[3];
|
||||||
struct proc_dir_entry *ent;
|
|
||||||
|
|
||||||
sprintf(name, "%02x", node->handle);
|
sprintf(name, "%02x", node->handle);
|
||||||
|
|
||||||
if (!proc_pnp)
|
if (!proc_pnp)
|
||||||
return -EIO;
|
return -EIO;
|
||||||
if (!pnpbios_dont_use_current_config) {
|
if (!pnpbios_dont_use_current_config) {
|
||||||
ent = create_proc_entry(name, 0, proc_pnp);
|
proc_create_data(name, 0644, proc_pnp, &pnpbios_proc_fops,
|
||||||
if (ent) {
|
(void *)(long)(node->handle));
|
||||||
ent->read_proc = proc_read_node;
|
|
||||||
ent->write_proc = proc_write_node;
|
|
||||||
ent->data = (void *)(long)(node->handle);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!proc_pnp_boot)
|
if (!proc_pnp_boot)
|
||||||
return -EIO;
|
return -EIO;
|
||||||
ent = create_proc_entry(name, 0, proc_pnp_boot);
|
if (proc_create_data(name, 0644, proc_pnp_boot, &pnpbios_proc_fops,
|
||||||
if (ent) {
|
(void *)(long)(node->handle + 0x100)))
|
||||||
ent->read_proc = proc_read_node;
|
|
||||||
ent->write_proc = proc_write_node;
|
|
||||||
ent->data = (void *)(long)(node->handle + 0x100);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
|
||||||
|
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -262,14 +319,11 @@ int __init pnpbios_proc_init(void)
|
||||||
proc_pnp_boot = proc_mkdir("boot", proc_pnp);
|
proc_pnp_boot = proc_mkdir("boot", proc_pnp);
|
||||||
if (!proc_pnp_boot)
|
if (!proc_pnp_boot)
|
||||||
return -EIO;
|
return -EIO;
|
||||||
create_proc_read_entry("devices", 0, proc_pnp, proc_read_devices, NULL);
|
proc_create("devices", 0, proc_pnp, &pnp_devices_proc_fops);
|
||||||
create_proc_read_entry("configuration_info", 0, proc_pnp,
|
proc_create("configuration_info", 0, proc_pnp, &pnpconfig_proc_fops);
|
||||||
proc_read_pnpconfig, NULL);
|
proc_create("escd_info", 0, proc_pnp, &escd_info_proc_fops);
|
||||||
create_proc_read_entry("escd_info", 0, proc_pnp, proc_read_escdinfo,
|
proc_create("escd", S_IRUSR, proc_pnp, &escd_proc_fops);
|
||||||
NULL);
|
proc_create("legacy_device_resources", 0, proc_pnp, &pnp_legacyres_proc_fops);
|
||||||
create_proc_read_entry("escd", S_IRUSR, proc_pnp, proc_read_escd, NULL);
|
|
||||||
create_proc_read_entry("legacy_device_resources", 0, proc_pnp,
|
|
||||||
proc_read_legacyres, NULL);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue