1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46#include <linux/config.h>
47#include <linux/errno.h>
48#include <linux/kernel.h>
49
50#ifdef CONFIG_BSD_PROCESS_ACCT
51#include <linux/mm.h>
52#include <linux/slab.h>
53#include <linux/acct.h>
54#include <linux/smp_lock.h>
55#include <linux/file.h>
56#include <linux/tty.h>
57
58#include <asm/uaccess.h>
59
60
61
62
63
64
65
66
67int acct_parm[3] = {4, 2, 30};
68#define RESUME (acct_parm[0])
69#define SUSPEND (acct_parm[1])
70#define ACCT_TIMEOUT (acct_parm[2])
71
72
73
74
75
76static volatile int acct_active;
77static volatile int acct_needcheck;
78static struct file *acct_file;
79static struct timer_list acct_timer;
80static void do_acct_process(long, struct file *);
81
82
83
84
85static void acct_timeout(unsigned long unused)
86{
87 acct_needcheck = 1;
88}
89
90
91
92
93static int check_free_space(struct file *file)
94{
95 struct statfs sbuf;
96 int res;
97 int act;
98
99 lock_kernel();
100 res = acct_active;
101 if (!file || !acct_needcheck)
102 goto out;
103 unlock_kernel();
104
105
106 if (vfs_statfs(file->f_dentry->d_inode->i_sb, &sbuf))
107 return res;
108
109 if (sbuf.f_bavail <= SUSPEND * sbuf.f_blocks / 100)
110 act = -1;
111 else if (sbuf.f_bavail >= RESUME * sbuf.f_blocks / 100)
112 act = 1;
113 else
114 act = 0;
115
116
117
118
119
120 lock_kernel();
121 if (file != acct_file) {
122 if (act)
123 res = act>0;
124 goto out;
125 }
126
127 if (acct_active) {
128 if (act < 0) {
129 acct_active = 0;
130 printk(KERN_INFO "Process accounting paused\n");
131 }
132 } else {
133 if (act > 0) {
134 acct_active = 1;
135 printk(KERN_INFO "Process accounting resumed\n");
136 }
137 }
138
139 del_timer(&acct_timer);
140 acct_needcheck = 0;
141 acct_timer.expires = jiffies + ACCT_TIMEOUT*HZ;
142 add_timer(&acct_timer);
143 res = acct_active;
144out:
145 unlock_kernel();
146 return res;
147}
148
149
150
151
152
153
154
155asmlinkage long sys_acct(const char *name)
156{
157 struct file *file = NULL, *old_acct = NULL;
158 char *tmp;
159 int error;
160
161 if (!capable(CAP_SYS_PACCT))
162 return -EPERM;
163
164 if (name) {
165 tmp = getname(name);
166 error = PTR_ERR(tmp);
167 if (IS_ERR(tmp))
168 goto out;
169
170 file = filp_open(tmp, O_WRONLY|O_APPEND, 0);
171 putname(tmp);
172 if (IS_ERR(file)) {
173 error = PTR_ERR(file);
174 goto out;
175 }
176 error = -EACCES;
177 if (!S_ISREG(file->f_dentry->d_inode->i_mode))
178 goto out_err;
179
180 error = -EIO;
181 if (!file->f_op->write)
182 goto out_err;
183 }
184
185 error = 0;
186 lock_kernel();
187 if (acct_file) {
188 old_acct = acct_file;
189 del_timer(&acct_timer);
190 acct_active = 0;
191 acct_needcheck = 0;
192 acct_file = NULL;
193 }
194 if (name) {
195 acct_file = file;
196 acct_needcheck = 0;
197 acct_active = 1;
198
199 init_timer(&acct_timer);
200 acct_timer.function = acct_timeout;
201 acct_timer.expires = jiffies + ACCT_TIMEOUT*HZ;
202 add_timer(&acct_timer);
203 }
204 unlock_kernel();
205 if (old_acct) {
206 do_acct_process(0,old_acct);
207 filp_close(old_acct, NULL);
208 }
209out:
210 return error;
211out_err:
212 filp_close(file, NULL);
213 goto out;
214}
215
216void acct_auto_close(kdev_t dev)
217{
218 lock_kernel();
219 if (acct_file && acct_file->f_dentry->d_inode->i_dev == dev)
220 sys_acct(NULL);
221 unlock_kernel();
222}
223
224
225
226
227
228
229
230
231
232#define MANTSIZE 13
233#define EXPSIZE 3
234#define MAXFRACT ((1 << MANTSIZE) - 1)
235
236static comp_t encode_comp_t(unsigned long value)
237{
238 int exp, rnd;
239
240 exp = rnd = 0;
241 while (value > MAXFRACT) {
242 rnd = value & (1 << (EXPSIZE - 1));
243 value >>= EXPSIZE;
244 exp++;
245 }
246
247
248
249
250 if (rnd && (++value > MAXFRACT)) {
251 value >>= EXPSIZE;
252 exp++;
253 }
254
255
256
257
258 exp <<= MANTSIZE;
259 exp += value;
260 return exp;
261}
262
263
264
265
266
267
268
269
270
271
272
273
274
275static void do_acct_process(long exitcode, struct file *file)
276{
277 struct acct ac;
278 mm_segment_t fs;
279 unsigned long vsize;
280 unsigned long flim;
281
282
283
284
285
286 if (!check_free_space(file))
287 return;
288
289
290
291
292
293 memset((caddr_t)&ac, 0, sizeof(struct acct));
294
295 strncpy(ac.ac_comm, current->comm, ACCT_COMM);
296 ac.ac_comm[ACCT_COMM - 1] = '\0';
297
298 ac.ac_btime = CT_TO_SECS(current->start_time) + (xtime.tv_sec - (jiffies / HZ));
299 ac.ac_etime = encode_comp_t(jiffies - current->start_time);
300 ac.ac_utime = encode_comp_t(current->times.tms_utime);
301 ac.ac_stime = encode_comp_t(current->times.tms_stime);
302 ac.ac_uid = current->uid;
303 ac.ac_gid = current->gid;
304 ac.ac_tty = (current->tty) ? kdev_t_to_nr(current->tty->device) : 0;
305
306 ac.ac_flag = 0;
307 if (current->flags & PF_FORKNOEXEC)
308 ac.ac_flag |= AFORK;
309 if (current->flags & PF_SUPERPRIV)
310 ac.ac_flag |= ASU;
311 if (current->flags & PF_DUMPCORE)
312 ac.ac_flag |= ACORE;
313 if (current->flags & PF_SIGNALED)
314 ac.ac_flag |= AXSIG;
315
316 vsize = 0;
317 if (current->mm) {
318 struct vm_area_struct *vma;
319 down_read(¤t->mm->mmap_sem);
320 vma = current->mm->mmap;
321 while (vma) {
322 vsize += vma->vm_end - vma->vm_start;
323 vma = vma->vm_next;
324 }
325 up_read(¤t->mm->mmap_sem);
326 }
327 vsize = vsize / 1024;
328 ac.ac_mem = encode_comp_t(vsize);
329 ac.ac_io = encode_comp_t(0 );
330 ac.ac_rw = encode_comp_t(ac.ac_io / 1024);
331 ac.ac_minflt = encode_comp_t(current->min_flt);
332 ac.ac_majflt = encode_comp_t(current->maj_flt);
333 ac.ac_swaps = encode_comp_t(current->nswap);
334 ac.ac_exitcode = exitcode;
335
336
337
338
339
340 fs = get_fs();
341 set_fs(KERNEL_DS);
342
343
344
345 flim = current->rlim[RLIMIT_FSIZE].rlim_cur;
346 current->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
347 file->f_op->write(file, (char *)&ac,
348 sizeof(struct acct), &file->f_pos);
349 current->rlim[RLIMIT_FSIZE].rlim_cur = flim;
350 set_fs(fs);
351}
352
353
354
355
356int acct_process(long exitcode)
357{
358 struct file *file = NULL;
359 lock_kernel();
360 if (acct_file) {
361 file = acct_file;
362 get_file(file);
363 unlock_kernel();
364 do_acct_process(exitcode, file);
365 fput(file);
366 } else
367 unlock_kernel();
368 return 0;
369}
370
371#else
372
373
374
375
376
377asmlinkage long sys_acct(const char * filename)
378{
379 return -ENOSYS;
380}
381#endif
382