`
haoningabc
  • 浏览: 1496265 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

bsd进程记账

c 
阅读更多
参考 http://blog.chinaunix.net/uid-26822401-id-3153147.html

似乎跟信号那有关系

记账记录的结构体定义在<sys/acct.h>头文件里,并看起来像:

typedef u_short comp_t;  /* 3-bit base 8 exponent; 13-bit fraction */
struct acct
{
  char ac_flag;  /* flag (see following Figure) */
  char ac_stat;  /* termination status (signal & core flag only) */ /* Solaris Only */
  uid_t ac_uid;  /* real user ID */
  gid_t ac_gid;  /*real group ID */
  dev_t ac_tty;  /* controlling terminal */
  time_t ac_btime; /* starting calendar time */
  comp_t ac_utime;  /* user CPU time (clock ticks) */
  comp_t ac_stime;  /* system CPU time (clock ticks) */
  comp_t ac_etime;  /* elapsed time (clock ticks) */
  comp_t ac_mem;  /* average memory usage */
  comp_t ac_io;  /* bytes transfered (by read and write) */ /* "blocks on BSD systems */
  comp_t ac_rw;  /* blocks read or written */  /* (not present on BSD systems) */
  char ac_comm[8];  /* command name: [8] for Solaris, [10] for Mac OS X, [16] for FreeBSD, and [17] for Linux */
}; 


#include <unistd.h>
#include <signal.h>

int
main(void)
{
    pid_t pid;

    if ((pid = fork()) < 0) {
        printf("fork error\n");
        exit(1);
    } else if (pid != 0) { /* parent */
        sleep(2);
        exit(2); /* terminate with exit status 2 */
    }
                        /* first child */
    if ((pid = fork()) < 0) {
        printf("fork error\n");
        exit(1);
    } else if (pid != 0) {
        sleep(4);
        abort(); /* terminate with core dump */
    }

                        /* second child */
    if ((pid = fork()) < 0) {
        printf("fork error\n");
        exit(1);
    } else if (pid != 0) {
        execl("/bin/dd", "dd", "if=/etc/termcap", "of=/dev/null", NULL);
        exit(7); /* shouldn't get here */
    }

                        /* third child */
    if ((pid = fork()) < 0) {
        printf("fork error\n");
        exit(1);
    } else if (pid != 0) {
        sleep(8);
        exit(0); /* normal exit */
    }

                        /* fourth child */
    sleep(6);
    kill(getpid(), SIGKILL); /* terminate w/signal, no core dump */
    exit(6); /* shouldn't get here */
}


#include <sys/acct.h>
#include <unistd.h>
#include <stdio.h>

#ifdef HAS_SA_STAT
#define FMT "%-*.*s e = %6ld, chars = %7ld, stat = %3u: %c %c %c %c\n"
#else
#define FMT "%-*.*s e = %6ld, chars = %7ld, %c %c %c %c\n"
#endif
#ifndef HAS_ACORE
#define ACORE 0
#endif
#ifndef HAS_AXSIG
#define AXSIG 0
#endif

static unsigned long
compt2ulong(comp_t comptime) /* convert comp_t to unsigend long */
{
    unsigned long val;
    int exp;

    val = comptime & 0x1fff; /* 13-bit fraction */
    exp = (comptime >> 13) & 7; /* 3-bit exponent (0-7) */
    while (exp-- > 0)
        val *= 8;
    return(val);
}
int
main(int argc, char *argv[])
{
    struct acct acdata;
    FILE *fp;

    if (argc != 2) {
        printf("usage: parcct filename\n");
        exit(1);
    }
    if ((fp = fopen(argv[1], "r")) == NULL) {
        printf("can't open %s\n", argv[1]);
        exit(1);
    }
    while (fread(&acdata, sizeof(acdata), 1, fp) == 1) {
        printf(FMT, (int)sizeof(acdata.ac_comm),
            (int)sizeof(acdata.ac_comm), acdata.ac_comm,
            compt2ulong(acdata.ac_etime), compt2ulong(acdata.ac_io),
#ifdef HAS_SA_STAT
            (unsigned char) acdata.ac_stat,
#endif
            acdata.ac_flag & ACORE ? 'D' : ' ',
            acdata.ac_flag & AXSIG ? 'X' : ' ',
            acdata.ac_flag & AFORK ? 'F' : ' ',
            acdata.ac_flag & ASU ? 'S' : ' ');
    }
    if (ferror(fp)) {
        printf("read error\n");
        exit(1);
    }
    exit(0);
}
分享到:
评论

相关推荐

    linux内核配置详解

    BSD Process Accounting version 3 file format:这个选项用于启用 BSD 进程记账功能的第三版文件格式,能够记录每个进程的 PID 和父进程的 PID。 Sysctl support:这个选项用于启用 Sysctl 功能,用于控制和监控...

    linux内核配置make-menuconfig菜单详解.doc

    该选项用于启用 BSD 进程记账,它将进程信息写入文件中,包括进程的创建时间、创建者、内存占用等信息。 6. Auditing support 该选项用于启用审计支持,用于和内核的某些子模块同时工作,例如 Security Enhanced ...

    Linux内核配置选项.pdf

    另外,BSD进程记账(BSD Process Accounting)能够通知内核记录程序执行时的统计数据,并将其写入文件中。 系统调用控制支持(Sysctl support)选项允许在不重新编译内核或重启系统的情况下动态更改内核参数和变量...

    Linux_kernel_3.6.4编译操作文档

    例如,启用交换分区的支持(Support for paging of anonymous memory (swap)),启用SystemV IPC(进程间通信机制),启用POSIX消息队列(POSIX Message Queues),以及是否启用BSD进程记账(BSD Process Accounting...

    The Design and Implementation of the 4.4 BSD Operating System

    在操作系统的设计概述中,文档详细介绍了4.4 BSD系统设施和内核的相关内容,包括内核的组织、内核服务、进程管理、信号处理、进程组和会话等。内存管理作为操作系统的核心部分,4.4 BSD采取的设计决策和内核内部的...

Global site tag (gtag.js) - Google Analytics