⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 select.c

📁 Linux下进程监控相关源代码
💻 C
字号:
/* * Copyright 1998 by Albert Cahalan; all rights resered.          * This file may be used subject to the terms and conditions of the * GNU Library General Public License Version 2, or any later version   * at your option, as published by the Free Software Foundation. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. */                                 #include <string.h>#include <stdlib.h>#include <stdio.h>#include "common.h"#include "../proc/readproc.h"#include "../proc/procps.h"#define session_leader(p)       ((p)->session == (p)->pid)#define process_group_leader(p) ((p)->pgid    == (p)->pid)#define without_a_tty(p)        ((unsigned short)((p)->tty) == (unsigned short)-1)#define some_other_user(p)      ((p)->euid    != cached_euid)#define running(p)              (((p)->state=='R')||((p)->state=='D'))#define has_our_euid(p)         ((unsigned short)((p)->euid) == (unsigned short)cached_euid)#define on_our_tty(p)           ((unsigned short)((p)->tty)  == (unsigned short)cached_tty)static unsigned long select_bits = 0;/***** prepare select_bits for use */const char *select_bits_setup(void){  if(!simple_select){  /* don't want a 'g' added to this (or do we?) */    select_bits = 0xaa00;    return NULL;  }  /* For everybody but Sun, the 'g' option is a NOP */  if( !(personality & PER_SUN_MUTATE_a) && !(simple_select&(SS_U_a|SS_U_d)) )    simple_select |= SS_B_g;  switch(simple_select){  case SS_U_a | SS_U_d:  case          SS_B_x | SS_B_a:  case SS_U_d:                    select_bits = 0x3333; break;  case SS_U_a:                    select_bits = 0x0303; break;  case                   SS_B_a:  select_bits = 0x3300; break;  case          SS_B_x         :  select_bits = 0x2222; break;  case SS_B_g                  :  select_bits = 0xaa00; break;  case SS_B_g |          SS_B_a:  select_bits = 0x0f00; break;  case SS_B_g | SS_B_x         :  select_bits = 0xaaaa; break;  case SS_B_g | SS_B_x | SS_B_a:    all_processes = 1;    simple_select = 0;    break;  default:    return "Process selection options conflict.";    break;  }  return NULL;}/***** selected by simple option? */static int table_accept(proc_t *buf){  unsigned proc_index;  proc_index = (has_our_euid(buf)    <<0)             | (session_leader(buf)  <<1)             | (without_a_tty(buf)   <<2)             | (on_our_tty(buf)      <<3);  return (select_bits & (1<<proc_index));}#if 0/***** selected by simple option? */static int table_accept(proc_t *buf){  unsigned proc_index;#ifdef ACT_LIKE_SUNOS4  static unsigned table[] = {    0xfffffff0, 0xfffffff0, 0xccccccc0, 0xccccccc0,  /* process has some other tty */    0xfafafaf0, 0xfafafafa, 0xc8c8c8c0, 0xc8c8c8c8,  /* no tty, ps itself has one */    0xfffffff0, 0xffffffff, 0xccccccc0, 0xcccccccc,  /* process has same tty as ps */    0xfafafaf0, 0xfafafafa, 0xc8c8c8c0, 0xc8c8c8c8   /* nobody has a tty */  };#else  static unsigned table[] = {    0xfffffff0, 0xfffffff0, 0xffffccc0, 0xffffccc0,  /* process has some other tty */    0xfafafaf0, 0xfafafafa, 0xfafac8c0, 0xfafac8c8,  /* no tty, ps itself has one */    0xfffffff0, 0xffffffff, 0xffffccc0, 0xffffcccc,  /* process has same tty as ps */    0xfafafaf0, 0xfafafafa, 0xfafac8c0, 0xfafac8c8   /* nobody has a tty */  };#endif  proc_index = (has_our_euid(buf)    <<0)             | (session_leader(buf)  <<1)             | (without_a_tty(buf)   <<2)             | (on_our_tty(buf)      <<3);/*  printf("0x%08x 0x%08x 0x%08x %-8.8s\n",         table[proc_index],         (1<<simple_select),         table[proc_index] & (1<<simple_select),         buf->cmd);*/  return (table[proc_index] & (1<<simple_select));}#endif/***** selected by some kind of list? */static int proc_was_listed(proc_t *buf){  selection_node *sn = selection_list;  int i;  if(!sn) return 0;  while(sn){    switch(sn->typecode){    default:      printf("Internal error in ps! Please report this bug.\n");#define return_if_match(foo,bar) \        i=sn->n; while(i--) \        if((unsigned short )(buf->foo) == (unsigned short)(*(sn->u+i)).bar) \        return 1    break; case SEL_RUID: return_if_match(ruid,uid);    break; case SEL_EUID: return_if_match(euid,uid);    break; case SEL_SUID: return_if_match(suid,uid);    break; case SEL_FUID: return_if_match(fuid,uid);    break; case SEL_RGID: return_if_match(rgid,gid);    break; case SEL_EGID: return_if_match(egid,gid);    break; case SEL_SGID: return_if_match(sgid,gid);    break; case SEL_FGID: return_if_match(fgid,gid);    break; case SEL_PGRP: return_if_match(pgrp,pid);    break; case SEL_PID : return_if_match(pid,pid);    break; case SEL_TTY : return_if_match(tty,tty);    break; case SEL_SESS: return_if_match(session,pid);    /* TODO Should use a long long cast for performance */    break; case SEL_COMM: i=sn->n; while(i--)    if(!strncmp( buf->cmd, (*(sn->u+i)).cmd, 8 )) return 1;#undef return_if_match    }    sn = sn->next;  }  return 0;}/***** This must satisfy Unix98 and as much BSD as possible */int want_this_proc(proc_t *buf){  int accepted_proc = 1; /* assume success */  /* elsewhere, convert T to list, U sets x implicitly */  /* handle -e -A */  if(all_processes) goto finish;  /* use table for -a a d g x */  if((simple_select || !selection_list))    if(table_accept(buf)) goto finish;  /* search lists */  if(proc_was_listed(buf)) goto finish;  /* fail, fall through to loose ends */  accepted_proc = 0;  /* do r N */finish:  if(running_only && !running(buf)) accepted_proc = 0;  if(negate_selection) return !accepted_proc;  return accepted_proc;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -