Skip to content

Commit

Permalink
proc: Supply PDE attribute setting accessor functions
Browse files Browse the repository at this point in the history
Supply accessor functions to set attributes in proc_dir_entry structs.

The following are supplied: proc_set_size() and proc_set_user().

Signed-off-by: David Howells <[email protected]>
Acked-by: Mauro Carvalho Chehab <[email protected]>
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
dhowells authored and Al Viro committed May 1, 2013
1 parent 2f96b8c commit 271a15e
Show file tree
Hide file tree
Showing 14 changed files with 40 additions and 35 deletions.
2 changes: 1 addition & 1 deletion arch/powerpc/kernel/proc_powerpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ static int __init proc_ppc64_init(void)
&page_map_fops, vdso_data);
if (!pde)
return 1;
pde->size = PAGE_SIZE;
proc_set_size(pde, PAGE_SIZE);

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/pseries/reconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ static int proc_ppc64_create_ofdt(void)

ent = proc_create("powerpc/ofdt", S_IWUSR, NULL, &ofdt_fops);
if (ent)
ent->size = 0;
proc_set_size(ent, 0);

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/pci/ttpci/av7110_ir.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ int av7110_ir_init(struct av7110 *av7110)
if (av_cnt == 1) {
e = proc_create("av7110_ir", S_IWUSR, NULL, &av7110_ir_proc_fops);
if (e)
e->size = 4 + 256 * sizeof(u16);
proc_set_size(e, 4 + 256 * sizeof(u16));
}

tasklet_init(&av7110->ir.ir_tasklet, av7110_emit_key, (unsigned long) &av7110->ir);
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/irda/vlsi_ir.c
Original file line number Diff line number Diff line change
Expand Up @@ -1678,7 +1678,7 @@ vlsi_irda_probe(struct pci_dev *pdev, const struct pci_device_id *id)
IRDA_WARNING("%s: failed to create proc entry\n",
__func__);
} else {
ent->size = 0;
proc_set_size(ent, 0);
}
idev->proc_entry = ent;
}
Expand Down
34 changes: 11 additions & 23 deletions drivers/net/wireless/airo.c
Original file line number Diff line number Diff line change
Expand Up @@ -4507,73 +4507,63 @@ static int setup_proc_entry( struct net_device *dev,
airo_entry);
if (!apriv->proc_entry)
goto fail;
apriv->proc_entry->uid = proc_kuid;
apriv->proc_entry->gid = proc_kgid;
proc_set_user(apriv->proc_entry, proc_kuid, proc_kgid);

/* Setup the StatsDelta */
entry = proc_create_data("StatsDelta", S_IRUGO & proc_perm,
apriv->proc_entry, &proc_statsdelta_ops, dev);
if (!entry)
goto fail_stats_delta;
entry->uid = proc_kuid;
entry->gid = proc_kgid;
proc_set_user(entry, proc_kuid, proc_kgid);

/* Setup the Stats */
entry = proc_create_data("Stats", S_IRUGO & proc_perm,
apriv->proc_entry, &proc_stats_ops, dev);
if (!entry)
goto fail_stats;
entry->uid = proc_kuid;
entry->gid = proc_kgid;
proc_set_user(entry, proc_kuid, proc_kgid);

/* Setup the Status */
entry = proc_create_data("Status", S_IRUGO & proc_perm,
apriv->proc_entry, &proc_status_ops, dev);
if (!entry)
goto fail_status;
entry->uid = proc_kuid;
entry->gid = proc_kgid;
proc_set_user(entry, proc_kuid, proc_kgid);

/* Setup the Config */
entry = proc_create_data("Config", proc_perm,
apriv->proc_entry, &proc_config_ops, dev);
if (!entry)
goto fail_config;
entry->uid = proc_kuid;
entry->gid = proc_kgid;
proc_set_user(entry, proc_kuid, proc_kgid);

/* Setup the SSID */
entry = proc_create_data("SSID", proc_perm,
apriv->proc_entry, &proc_SSID_ops, dev);
if (!entry)
goto fail_ssid;
entry->uid = proc_kuid;
entry->gid = proc_kgid;
proc_set_user(entry, proc_kuid, proc_kgid);

/* Setup the APList */
entry = proc_create_data("APList", proc_perm,
apriv->proc_entry, &proc_APList_ops, dev);
if (!entry)
goto fail_aplist;
entry->uid = proc_kuid;
entry->gid = proc_kgid;
proc_set_user(entry, proc_kuid, proc_kgid);

/* Setup the BSSList */
entry = proc_create_data("BSSList", proc_perm,
apriv->proc_entry, &proc_BSSList_ops, dev);
if (!entry)
goto fail_bsslist;
entry->uid = proc_kuid;
entry->gid = proc_kgid;
proc_set_user(entry, proc_kuid, proc_kgid);

/* Setup the WepKey */
entry = proc_create_data("WepKey", proc_perm,
apriv->proc_entry, &proc_wepkey_ops, dev);
if (!entry)
goto fail_wepkey;
entry->uid = proc_kuid;
entry->gid = proc_kgid;

proc_set_user(entry, proc_kuid, proc_kgid);
return 0;

fail_wepkey:
Expand Down Expand Up @@ -5695,10 +5685,8 @@ static int __init airo_init_module( void )

airo_entry = proc_mkdir_mode("driver/aironet", airo_perm, NULL);

if (airo_entry) {
airo_entry->uid = proc_kuid;
airo_entry->gid = proc_kgid;
}
if (airo_entry)
proc_set_user(airo_entry, proc_kuid, proc_kgid);

for (i = 0; i < 4 && io[i] && irq[i]; i++) {
airo_print_info("", "Trying to configure ISA adapter at irq=%d "
Expand Down
2 changes: 1 addition & 1 deletion drivers/pci/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ int pci_proc_attach_device(struct pci_dev *dev)
&proc_bus_pci_operations, dev);
if (!e)
return -ENOMEM;
e->size = dev->cfg_size;
proc_set_size(e, dev->cfg_size);
dev->procent = e;

return 0;
Expand Down
2 changes: 1 addition & 1 deletion drivers/pnp/isapnp/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ static int isapnp_proc_attach_device(struct pnp_dev *dev)
&isapnp_proc_bus_file_operations, dev);
if (!e)
return -ENOMEM;
e->size = 256;
proc_set_size(e, 256);
return 0;
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/zorro/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ static int __init zorro_proc_attach_device(unsigned int slot)
&zorro_autocon[slot]);
if (!entry)
return -ENOMEM;
entry->size = sizeof(struct zorro_dev);
proc_set_size(entry, sizeof(struct zorro_dev));
return 0;
}

Expand Down
13 changes: 13 additions & 0 deletions fs/proc/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,19 @@ struct proc_dir_entry *proc_create_data(const char *name, umode_t mode,
return NULL;
}
EXPORT_SYMBOL(proc_create_data);

void proc_set_size(struct proc_dir_entry *de, loff_t size)
{
de->size = size;
}
EXPORT_SYMBOL(proc_set_size);

void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid)
{
de->uid = uid;
de->gid = gid;
}
EXPORT_SYMBOL(proc_set_user);

static void free_proc_entry(struct proc_dir_entry *de)
{
Expand Down
5 changes: 5 additions & 0 deletions include/linux/proc_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@ static inline struct proc_dir_entry *proc_create(const char *name, umode_t mode,
extern struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name,
struct proc_dir_entry *parent);

extern void proc_set_size(struct proc_dir_entry *, loff_t);
extern void proc_set_user(struct proc_dir_entry *, kuid_t, kgid_t);

extern struct file *proc_ns_fget(int fd);
extern bool proc_ns_inode(struct inode *inode);

Expand Down Expand Up @@ -158,6 +161,8 @@ static inline struct proc_dir_entry *proc_mkdir(const char *name,
struct proc_dir_entry *parent) {return NULL;}
static inline struct proc_dir_entry *proc_mkdir_mode(const char *name,
umode_t mode, struct proc_dir_entry *parent) { return NULL; }
static inline void proc_set_size(struct proc_dir_entry *de, loff_t size) {}
static inline void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid) {}

struct tty_driver;
static inline void proc_tty_register_driver(struct tty_driver *driver) {};
Expand Down
2 changes: 1 addition & 1 deletion kernel/configs.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static int __init ikconfig_init(void)
if (!entry)
return -ENOMEM;

entry->size = kernel_config_data_size;
proc_set_size(entry, kernel_config_data_size);

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion kernel/profile.c
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ int __ref create_proc_profile(void) /* false positive from hotcpu_notifier */
NULL, &proc_profile_operations);
if (!entry)
return 0;
entry->size = (1+prof_len) * sizeof(atomic_t);
proc_set_size(entry, (1 + prof_len) * sizeof(atomic_t));
hotcpu_notifier(profile_cpu_callback, 0);
return 0;
}
Expand Down
3 changes: 1 addition & 2 deletions net/netfilter/xt_recent.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,7 @@ static int recent_mt_check(const struct xt_mtchk_param *par,
ret = -ENOMEM;
goto out;
}
pde->uid = uid;
pde->gid = gid;
proc_set_user(pde, uid, gid);
#endif
spin_lock_bh(&recent_lock);
list_add_tail(&t->list, &recent_net->tables);
Expand Down
2 changes: 1 addition & 1 deletion sound/core/info.c
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,7 @@ int snd_info_register(struct snd_info_entry * entry)
mutex_unlock(&info_mutex);
return -ENOMEM;
}
p->size = entry->size;
proc_set_size(p, entry->size);
}
entry->p = p;
if (entry->parent)
Expand Down

0 comments on commit 271a15e

Please sign in to comment.