1 /* drivers/misc/uid_stat.c
3 * Copyright (C) 2008 - 2009 Google, Inc.
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
16 #include <asm/atomic.h>
18 #include <linux/err.h>
19 #include <linux/init.h>
20 #include <linux/kernel.h>
21 #include <linux/list.h>
22 #include <linux/proc_fs.h>
23 #include <linux/seq_file.h>
24 #include <linux/slab.h>
25 #include <linux/spinlock.h>
26 #include <linux/stat.h>
27 #include <linux/uid_stat.h>
28 #include <net/activity_stats.h>
30 static DEFINE_SPINLOCK(uid_lock);
31 static LIST_HEAD(uid_list);
32 static struct proc_dir_entry *parent;
35 struct list_head link;
41 static struct uid_stat *find_uid_stat(uid_t uid) {
42 struct uid_stat *entry;
44 list_for_each_entry(entry, &uid_list, link) {
45 if (entry->uid == uid) {
52 static int uid_stat_atomic_int_show(struct seq_file *m, void *v)
55 atomic_t *counter = m->private;
57 bytes = (unsigned int) (atomic_read(counter) + INT_MIN);
58 return seq_printf(m, "%u\n", bytes);
61 static int uid_stat_read_atomic_int_open(struct inode *inode, struct file *file)
63 return single_open(file, uid_stat_atomic_int_show, PDE_DATA(inode));
66 static const struct file_operations uid_stat_read_atomic_int_fops = {
67 .open = uid_stat_read_atomic_int_open,
70 .release = seq_release,
73 /* Create a new entry for tracking the specified uid. */
74 static struct uid_stat *create_stat(uid_t uid) {
75 struct uid_stat *new_uid;
76 /* Create the uid stat struct and append it to the list. */
77 new_uid = kmalloc(sizeof(struct uid_stat), GFP_ATOMIC);
82 /* Counters start at INT_MIN, so we can track 4GB of network traffic. */
83 atomic_set(&new_uid->tcp_rcv, INT_MIN);
84 atomic_set(&new_uid->tcp_snd, INT_MIN);
86 list_add_tail(&new_uid->link, &uid_list);
90 static void create_stat_proc(struct uid_stat *new_uid)
93 struct proc_dir_entry *entry;
94 sprintf(uid_s, "%d", new_uid->uid);
95 entry = proc_mkdir(uid_s, parent);
97 /* Keep reference to uid_stat so we know what uid to read stats from. */
98 proc_create_data("tcp_snd", S_IRUGO, entry,
99 &uid_stat_read_atomic_int_fops, &new_uid->tcp_snd);
101 proc_create_data("tcp_rcv", S_IRUGO, entry,
102 &uid_stat_read_atomic_int_fops, &new_uid->tcp_rcv);
105 static struct uid_stat *find_or_create_uid_stat(uid_t uid)
107 struct uid_stat *entry;
109 spin_lock_irqsave(&uid_lock, flags);
110 entry = find_uid_stat(uid);
112 spin_unlock_irqrestore(&uid_lock, flags);
115 entry = create_stat(uid);
116 spin_unlock_irqrestore(&uid_lock, flags);
118 create_stat_proc(entry);
122 int uid_stat_tcp_snd(uid_t uid, int size) {
123 struct uid_stat *entry;
124 activity_stats_update();
125 entry = find_or_create_uid_stat(uid);
128 atomic_add(size, &entry->tcp_snd);
132 int uid_stat_tcp_rcv(uid_t uid, int size) {
133 struct uid_stat *entry;
134 activity_stats_update();
135 entry = find_or_create_uid_stat(uid);
138 atomic_add(size, &entry->tcp_rcv);
142 static int __init uid_stat_init(void)
144 parent = proc_mkdir("uid_stat", NULL);
146 pr_err("uid_stat: failed to create proc entry\n");
152 __initcall(uid_stat_init);