File: procfs.c

package info (click to toggle)
gridengine 8.1.9%2Bdfsg-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 56,880 kB
  • sloc: ansic: 432,689; java: 87,068; cpp: 31,958; sh: 29,429; jsp: 7,757; perl: 6,336; xml: 5,828; makefile: 4,701; csh: 3,928; ruby: 2,221; tcl: 1,676; lisp: 669; yacc: 519; python: 503; lex: 361; javascript: 200
file content (890 lines) | stat: -rw-r--r-- 27,816 bytes parent folder | download | duplicates (6)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
 * 
 *  The Contents of this file are made available subject to the terms of
 *  the Sun Industry Standards Source License Version 1.2
 * 
 *  Sun Microsystems Inc., March, 2001
 * 
 * 
 *  Sun Industry Standards Source License Version 1.2
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.2 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 * 
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 * 
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 * 
 *   Copyright: 2001 by Sun Microsystems, Inc.
 *   Copyright (C) 2012, 2013 Dave Love University of Liverpool
 * 
 *   All Rights Reserved.
 * 
 ************************************************************************/
/* Portions of this code are Copyright (c) 2011 Univa Corporation. */
/* Copyright 2012, Dave Love, University of Liverpool */
/*___INFO__MARK_END__*/
#if !defined(COMPILE_DC)

int verydummyprocfs;

#else

#include <stdio.h>
#include <fcntl.h>
#include <time.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/signal.h>

#include <unistd.h>
#include <sys/times.h>
#include <sys/wait.h>
#include <sys/resource.h>
#include <dirent.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>

#if defined(ALPHA) 
#  include <sys/user.h>
#  include <sys/table.h>   
#  include <sys/procfs.h>   
#endif

#if defined(SOLARIS) 
#  include <sys/procfs.h>   
#endif

#if defined(LINUX)
#include "sgeobj/sge_proc.h"
#include "sgeobj/sge_conf.h"
#endif

#include "uti/sge_rmon.h"
#include "uti/sge_stdio.h"
#include "uti/sge_unistd.h"
#include "uti/sge_log.h"

#include "uti2/sge_cgroup.h"

#include "cull/cull.h"

#include "basis_types.h"
#include "sgedefs.h"
#include "exec_ifm.h"
#include "pdc.h"
#include "msg_sge.h"
#include "msg_daemons_common.h"
#include "procfs.h"

#if defined LINUX || defined ALPHA || defined SOLARIS
#ifdef MONITOR_PDC
static bool monitor_pdc = true;
#else
static bool monitor_pdc = false;
#endif
#endif

#ifdef LINUX
#define BIGLINE 1024
static int linux_proc_io(char *proc, uint64 *iochars);
static bool linux_read_status(char *proc, int time_stamp, lnk_link_t *job_list,
                              unsigned long *pid, unsigned long *utime,
                              unsigned long *stime, unsigned long *vsize);
#endif

/*-----------------------------------------------------------------------*/
static gid_t *list = 0;
#if defined(LINUX) || defined(ALPHA) || defined(SOLARIS)

#define PROC_DIR "/proc"

static DIR *cwd;
static struct dirent *dent;
static u_long32 max_groups;

/* search in job list for the pid
   return the proc element */
static lnk_link_t *find_pid_in_jobs(pid_t pid, lnk_link_t *job_list)
{
   lnk_link_t *job, *proc = NULL;
   proc_elem_t *proc_elem = NULL;
   job_elem_t *job_elem = NULL;

   /*
    * try to find a matching job
    */
   for (job=job_list->next; job != job_list; job=job->next) {

      job_elem = LNK_DATA(job, job_elem_t, link);

      /*
       * try to find process in this jobs' proc list
       */

      for (proc=job_elem->procs.next; proc != &job_elem->procs;
               proc=proc->next) {

         proc_elem = LNK_DATA(proc, proc_elem_t, link);
         if (proc_elem->proc.pd_pid == pid)
            break; /* found it */
      }

      if (proc == &job_elem->procs) {
         /* end of procs list - no process found - try next job */
         proc = NULL;
      } else
         /* found a process */
         break;
   }

   return proc;
}


static void touch_time_stamp(const char *d_name, int time_stamp, lnk_link_t *job_list)
{
   pid_t pid;
   proc_elem_t *proc_elem;
   lnk_link_t *proc;

   DENTER(TOP_LAYER, "touch_time_stamp");

   sscanf(d_name, pid_t_fmt, &pid);
   if ((proc = find_pid_in_jobs(pid, job_list))) {
      proc_elem = LNK_DATA(proc, proc_elem_t, link);
      proc_elem->proc.pd_tstamp = time_stamp;
   }
   if (monitor_pdc) {
      if (proc)
         INFO((SGE_EVENT, "found job to process %s: set time stamp\n", d_name));
      else
         INFO((SGE_EVENT, "found no job to process %s\n", d_name));
   }
   DEXIT;
   return;
}

void procfs_kill_addgrpid(gid_t add_grp_id, int sig, tShepherd_trace shepherd_trace)
{
   char procnam[128];
   int i;
   int groups=0;
   u_long32 max_groups;
   gid_t *list;
#if defined(SOLARIS) || defined(ALPHA)
   int fd;
   prcred_t proc_cred;
#elif defined(LINUX)
   FILE *fp;
   char buffer[1024];
   uid_t uids[4] = {0,0,0,0};
   gid_t gids[4] = {0,0,0,0};
#endif

   DENTER(TOP_LAYER, "procfs_kill_addgrpid");

   /* quick return in case of invalid add. group id */
   if (add_grp_id == 0) {
      DEXIT;
      return;
   }

   max_groups = sysconf(_SC_NGROUPS_MAX);
   if (max_groups <= 0)
      if (shepherd_trace) {
         shepherd_trace("%s", MSG_SGE_NGROUPS_MAXOSRECONFIGURATIONNECESSARY);
      }
   list = sge_malloc(max_groups*sizeof(gid_t));

   pt_open();

   /* find next valid entry in procfs  */
   while ((dent = readdir(cwd))) {
      if (!dent->d_name)
         continue;
      if (!dent->d_name[0])
         continue;

      if (!strcmp(dent->d_name, "..") || !strcmp(dent->d_name, "."))
         continue;

      if (atoi(dent->d_name) == 0)
         continue;

#if defined(SOLARIS) || defined(ALPHA)
      snprintf(procnam, sizeof(procnam), "%s/%s", PROC_DIR, dent->d_name);
      if ((fd = open(procnam, O_RDONLY, 0)) == -1) {
         DPRINTF(("open(%s) failed: %s\n", procnam, strerror(errno)));
         continue;
      }
      /* get number of groups */
      if (ioctl(fd, PIOCCRED, &proc_cred) == -1) {
         close(fd);
         continue;
      }

      /* get list of supplementary groups */
      groups = proc_cred.pr_ngroups;
      if (ioctl(fd, PIOCGROUPS, list) == -1) {
         close(fd);
         continue;
      }
      close(fd);
#elif defined(LINUX)
      if (!strcmp(dent->d_name, "self"))
         continue;

      snprintf(procnam, sizeof(procnam), PROC_DIR "/%s/status", dent->d_name);
      if (!(fp = fopen(procnam, "r")))
         continue;
      /* get number of groups and current uids, gids
       * uids[0], gids[0] => UID and GID
       * uids[1], gids[1] => EUID and EGID
       * uids[2], gids[2] => SUID and SGID
       * uids[3], gids[3] => FSUID and FSGID
       */
      groups = 0;
      while (fgets(buffer, sizeof(buffer), fp)) {
         char *label = NULL;
         char *token = NULL;

         label = strtok(buffer, " \t\n");
         if (label) {
            if (!strcmp("Groups:", label)) {
               while ((token = strtok((char*) NULL, " \t\n"))) {
                  list[groups]=(gid_t) atol(token);
                  groups++;
               }
            } else if (!strcmp("Uid:", label)) {
               int i = 0;

               while ((i < 4) && (token = strtok((char*) NULL, " \t\n"))) {
                  uids[i]=(uid_t) atol(token);
                  i++;
               }
            } else if (!strcmp("Gid:", label)) {
               int i = 0;

               while ((i < 4) && (token = strtok((char*) NULL, " \t\n"))) {
                  gids[i]=(gid_t) atol(token);
                  i++;
               }
            }
         }
      }
      FCLOSE(fp);
FCLOSE_ERROR:
#endif  /* SOLARIS || ALPHA */

      /* send each process a signal which belongs to add_grg_id */
      for (i = 0; i < groups; i++) {
         if (list[i] == add_grp_id) {
            pid_t pid;
            pid = (pid_t) atol(dent->d_name);

#if defined(LINUX)
            /* if UID, GID, EUID and EGID == 0
             *  don't kill the process!!! - it could be the rpc.nfs-deamon
             */
            if (!(uids[0] == 0 && gids[0] == 0 &&
                  uids[1] == 0 && gids[1] == 0))
#elif defined(SOLARIS) || defined(ALPHA)
            if (!(proc_cred.pr_ruid == 0 && proc_cred.pr_rgid == 0 &&
                  proc_cred.pr_euid == 0 && proc_cred.pr_egid == 0))
#endif
              {

               if (shepherd_trace) {
                  char err_str[256];

                  snprintf(err_str, sizeof(err_str), MSG_SGE_KILLINGPIDXY_UI,
                           sge_u32c(pid), groups);
                  shepherd_trace("%s", err_str);
               }

               kill(pid, sig);

            } else {
               if (shepherd_trace) {
                  char err_str[256];

                  snprintf(err_str, sizeof(err_str), MSG_SGE_DONOTKILLROOTPROCESSXY_UI,
                           sge_u32c(atol(dent->d_name)), groups);
                  shepherd_trace("%s", err_str);
               }
            }

            break;
         }
      }
   }
   pt_close();
   sge_free(&list);
   DEXIT;
}

int pt_open(void)
{
   cwd = opendir(PROC_DIR);
   return !cwd;
}
void pt_close(void)
{
   closedir(cwd);
}

int pt_dispatch_proc_to_job(char *pidname, lnk_link_t *job_list,
                            int time_stamp, time_t last_time) {
   int fd = -1;
#if defined(LINUX)
   lListElem *pr = NULL;
   SGE_STRUCT_STAT fst;
   unsigned long utime, stime, vsize, pid;
   int pos_pid = lGetPosInDescr(PRO_Type, PRO_pid);
   int pos_utime = lGetPosInDescr(PRO_Type, PRO_utime);
   int pos_stime = lGetPosInDescr(PRO_Type, PRO_stime);
   int pos_vsize = lGetPosInDescr(PRO_Type, PRO_vsize);
   int pos_groups = lGetPosInDescr(PRO_Type, PRO_groups);
   int pos_rel = lGetPosInDescr(PRO_Type, PRO_rel);
   int pos_run = lGetPosInDescr(PRO_Type, PRO_run);
   int pos_io = lGetPosInDescr(PRO_Type, PRO_io);
   int pos_group = lGetPosInDescr(GR_Type, GR_group);
#else
   char procnam[128];
   prstatus_t pr;
   prpsinfo_t pri;
#endif  /* LINUX */

#if defined(SOLARIS) || defined(ALPHA)
   prcred_t proc_cred;
   int ret;
#endif

   int groups=0;
   int pid_tmp;

   proc_elem_t *proc_elem = NULL;
   job_elem_t *job_elem = NULL;
   lnk_link_t *curr;
   double old_time = 0;
   uint64 old_vmem = 0;

   DENTER(TOP_LAYER, "pt_dispatch_proc_to_job");
   if (!pidname || !pidname[0]
       || !strcmp(pidname, "..") || !strcmp(pidname, "."))
      goto return0;
   if (pidname[0] == '.') /* ?? */
      pidname++;
   if (atoi(pidname) == 0)
      goto return0;

#if defined(LINUX)
   /* Ignore process known not to be in a GE job.  */
   if ((pr = get_pr(atoi(pidname))) != NULL) {
      lSetPosBool(pr, pos_run, true); /* set process as still running */
      if (lGetPosBool(pr, pos_rel) != true)
         goto return0;
   }
   if (!(linux_read_status(pidname, time_stamp, job_list,
                           &pid, &utime, &stime, &vsize) != 0))
      goto return0;
   if (pr == NULL) {
      pr = lCreateElem(PRO_Type);
      lSetPosUlong(pr, pos_pid, pid);
      lSetPosBool(pr, pos_rel, false);
      append_pr(pr);
   }
   lSetPosUlong(pr, pos_utime, utime);
   lSetPosUlong(pr, pos_stime, stime);
   lSetPosUlong64(pr, pos_vsize, vsize);
   lSetPosBool(pr, pos_run, true); /* mark proc as running */

   /* get number of groups; get list of supplementary groups */
   {
      char procnam[256];
      lList *groupTable = lGetPosList(pr, pos_groups);

      snprintf(procnam, sizeof(procnam), PROC_DIR "/%s/status", pidname);
      if (stat(procnam, &fst) != 0) {
         if (errno != ENOENT) {
            if (monitor_pdc)
               INFO((SGE_EVENT, "could not stat %s: %s\n", procnam,
                     strerror(errno)));
            touch_time_stamp(pidname, time_stamp, job_list);
         }
         goto return0;
      }
      groups = 0;
      if (fst.st_mtime < last_time && groupTable != NULL) {
         lListElem *group;

         for_each(group, groupTable) {
            list[groups] = lGetPosUlong(group, pos_group);
            groups++;
         }
      } else {
         char buf[1024];
         FILE* f = fopen(procnam, "r");

         if (!f) goto return0;
         /* save groups also in the table */
         groupTable = lCreateList("groupTable", GR_Type);
         while (fgets(buf, sizeof(buf), f)) {
            if (strcmp("Groups:", strtok(buf, "\t")) == 0) {
               char *token;

               while ((token=strtok(NULL, " "))) {
                  lListElem *gr = lCreateElem(GR_Type);
                  long group = atol(token);
                  list[groups] = group;
                  lSetPosUlong(gr, pos_group, group);
                  lAppendElem(groupTable, gr);
                  groups++;
               }
               break;
            }
         }
         lSetPosList(pr, pos_groups, groupTable);
         fclose(f);
      }
   }

#  elif defined(SOLARIS) || defined(ALPHA)

   snprintf(procnam, sizeof(procnam), "%s/%s", PROC_DIR, pidname);
   if ((fd = open(procnam, O_RDONLY, 0)) == -1) {
      if (errno != ENOENT) {
         if (monitor_pdc) {
            if (errno == EACCES)
               INFO((SGE_EVENT, "(uid:"gid_t_fmt" euid:"gid_t_fmt
                     ") could not open %s: %s\n",
                     getuid(), geteuid(), procnam, strerror(errno)));
            else
               INFO((SGE_EVENT, "could not open %s: %s\n", procnam,
                     strerror(errno)));
         }
         touch_time_stamp(pidname, time_stamp, job_list);
      }
      goto return0;
   }

   /**
    ** get a list of supplementary group ids to decide whether this
    ** process will be needed; read also prstatus
    **/

   /* get prstatus */
   if (ioctl(fd, PIOCSTATUS, &pr)==-1) {
      if (errno != ENOENT) {
         if (monitor_pdc)
            INFO((SGE_EVENT, "could not ioctl(PIOCSTATUS) %s: %s\n",
                  procnam, strerror(errno)));
         touch_time_stamp(pidname, time_stamp, job_list);
      }
      goto return0;
   }

   /* get number of groups */
   ret=ioctl(fd, PIOCCRED, &proc_cred);
   if (ret < 0) {
      if (errno != ENOENT) {
         if (monitor_pdc)
            INFO((SGE_EVENT, "could not ioctl(PIOCCRED) %s: %s\n", procnam,
                  strerror(errno)));
         touch_time_stamp(pidname, time_stamp, job_list);
      }
      goto return0;
   }

   /* get list of supplementary groups */
   groups = proc_cred.pr_ngroups;
   ret=ioctl(fd, PIOCGROUPS, list);
   if (ret<0) {
      if (errno != ENOENT) {
         if (monitor_pdc)
            INFO((SGE_EVENT, "could not ioctl(PIOCCRED) %s: %s\n", procnam,
                  strerror(errno)));
         touch_time_stamp(pidname, time_stamp, job_list);
      }
      goto return0;
   }

#  endif  /* LINUX */

   /* try to find a matching job */
   for (curr=job_list->next; curr != job_list; curr=curr->next) {
      int found_it = 0;
      int group;

      job_elem = LNK_DATA(curr, job_elem_t, link);
      for (group=0; !found_it && group<groups; group++) {
         if (job_elem->job.jd_jid == list[group]) {
#if defined(LINUX)
            lSetPosBool(pr, pos_rel, true); /* mark process as relevant */
#endif
            found_it = 1;
         }
      }
      if (found_it) break;
   }

   if (curr == job_list)     /* this is not a traced process */
      goto return0;

   /* try to find process in this jobs' proc list */
#if defined(LINUX)
   pid_tmp = lGetPosUlong(pr, pos_pid);
#else
   pid_tmp = pr.pr_pid;
#endif
   for (curr=job_elem->procs.next; curr != &job_elem->procs; curr=curr->next) {
      proc_elem = LNK_DATA(curr, proc_elem_t, link);
      if (proc_elem->proc.pd_pid == pid_tmp)
         break;
   }

   if (curr == &job_elem->procs) {
      /* new process, add a proc element into jobs proc list */
      proc_elem = sge_malloc(sizeof(proc_elem_t));
      memset(proc_elem, 0, sizeof(proc_elem_t));
      proc_elem->proc.pd_length = sizeof(psProc_t);
      proc_elem->proc.pd_state  = 1; /* active */
      LNK_ADD(job_elem->procs.prev, &proc_elem->link);
      job_elem->job.jd_proccount++;

      if (monitor_pdc) {
         double utime, stime;
#if defined(LINUX)
         utime = ((double)lGetPosUlong(pr, pos_utime))/sysconf(_SC_CLK_TCK);
	 stime = ((double)lGetPosUlong(pr, pos_stime))/sysconf(_SC_CLK_TCK);

         INFO((SGE_EVENT, "new process "sge_u32" for job "pid_t_fmt
               " (utime = %f stime = %f)\n",
               lGetPosUlong(pr, pos_pid), job_elem->job.jd_jid, utime, stime)); 
#else
         utime = pr.pr_utime.tv_sec + pr.pr_utime.tv_nsec*1E-9;
         stime = pr.pr_stime.tv_sec + pr.pr_stime.tv_nsec*1E-9;

         INFO((SGE_EVENT, "new process "pid_t_fmt" for job "pid_t_fmt
               " (utime = %f stime = %f)\n",
               pr.pr_pid, job_elem->job.jd_jid, utime, stime)); 
#endif  /* LINUX */
      }
   } else {
      /* save previous usage data - needed to build delta usage */
      old_time = proc_elem->proc.pd_utime + proc_elem->proc.pd_stime;
      old_vmem  = proc_elem->vmem;
   }

   proc_elem->proc.pd_tstamp = time_stamp;

#if defined(LINUX)
   proc_elem->proc.pd_pid = lGetPosUlong(pr, pos_pid);
   proc_elem->proc.pd_utime  = ((double)lGetPosUlong(pr, pos_utime)) /
     sysconf(_SC_CLK_TCK);
   proc_elem->proc.pd_stime  = ((double)lGetPosUlong(pr, pos_stime)) /
     sysconf(_SC_CLK_TCK);
   /* could retrieve uid/gid using stat() on stat file */
   proc_elem->vmem           = lGetPosUlong64(pr, pos_vsize);

   /* I/O accounting */
   proc_elem->delta_chars = 0UL;
   {
      uint64 new_iochars = 0UL;

      if (linux_proc_io(pidname, &new_iochars) == 0)
         lSetPosUlong(pr, pos_io, new_iochars);
      else
         new_iochars = lGetPosUlong(pr, pos_io);
      /* Update process I/O info */
      if (new_iochars > 0UL) {
         uint64 old_iochars = proc_elem->iochars;

         if (new_iochars > old_iochars) {
            proc_elem->delta_chars = (new_iochars - old_iochars);
            proc_elem->iochars = new_iochars;
         }
      }
   }
#else  /* !LINUX */
   proc_elem->proc.pd_pid    = pr.pr_pid;
   proc_elem->proc.pd_utime  = pr.pr_utime.tv_sec + pr.pr_utime.tv_nsec*1E-9;
   proc_elem->proc.pd_stime  = pr.pr_stime.tv_sec + pr.pr_stime.tv_nsec*1E-9;

   /* Don't care if this part fails */
   if (ioctl(fd, PIOCPSINFO, &pri) != -1) {
      proc_elem->proc.pd_uid    = pri.pr_uid;
      proc_elem->proc.pd_gid    = pri.pr_gid;
      proc_elem->vmem           = pri.pr_size * pagesize;
      proc_elem->rss            = pri.pr_rssize * pagesize;
      proc_elem->proc.pd_pstart = pri.pr_start.tv_sec + pri.pr_start.tv_nsec*1E-9;
   }
#endif  /* LINUX */

   proc_elem->mem = 
         ((proc_elem->proc.pd_stime + proc_elem->proc.pd_utime) - old_time) * 
         (( old_vmem + proc_elem->vmem)/2);

#if defined(ALPHA)
#define BLOCKSIZE 512
   {
      struct user ua;
      uint64 old_ru_ioblock = proc_elem->ru_ioblock;

      /* need to do a table(2) call for each process to retrieve io usage data */   
      /* get user area stuff */
      if (table(TBL_UAREA, proc_elem->proc.pd_pid, (char *)&ua, 1, sizeof ua) == 1) {
         proc_elem->ru_ioblock = (uint64)(ua.u_ru.ru_inblock + ua.u_ru.ru_oublock);
         proc_elem->delta_chars = (proc_elem->ru_ioblock - old_ru_ioblock)* BLOCKSIZE;
      }
   }
#endif  /* ALPHA */
 return0:
   if (fd >= 0) close(fd);
   DRETURN(0);
}

/* There is no way to retrieve a pid list containing all processes of
   a session id.  So, in the absence of cpusets, we have to iterate
   through the whole process table to decide whether a process is
   needed for a job or not.  Otherwise we can get the relevant
   processes from the cpusets.  */
void
pt_dispatch_procs_to_jobs(lnk_link_t *job_list, int time_stamp, time_t last_time)
{
   /* fixme: use fopen_cgroup_procs_dir */
   pt_open();
   while ((dent = readdir(cwd)))
      pt_dispatch_proc_to_job(dent->d_name, job_list, time_stamp, last_time);
   last_time = time_stamp;
#if LINUX
   clean_procList();
#endif
   pt_close();
}
#endif  /* LINUX || ALPHA || SOLARIS */

#ifdef LINUX
/* Return in IOCHARS the number of characters of i/o (read and write)
   for process PROC.  Function value is zero iff the procfs io file is
   found (which needs CONFIG_TASK_IO_ACCOUNTING=y in the Linux
   config.)  */
static int linux_proc_io(char *proc, uint64 *iochars)
{
   char procnam[256];
   SGE_STRUCT_STAT fst;

   snprintf(procnam, sizeof(procnam), PROC_DIR "/%s/io", proc);
   if (stat(procnam, &fst) != 0)
      return 1;
   FILE *fd;

   if ((fd = fopen(procnam, "r"))) {
      char label[21];            /* must match width in sscanf */
      unsigned long long nchar = 0UL;

      /* rchar and wchar are the bytes going through read(2), write(2)
         and friends (such as pread), which may just access the cache.
         read_bytes and write_bytes reflect actual i/o on disk
         devices, but apparently not on network filesystems.  */
      while (fscanf(fd, "%20s %Lu", label, &nchar) == 2) {
         if (!strcmp("rchar:", label) || !strcmp("wchar:", label))
            *iochars += (uint64) nchar;
      }
      fclose(fd);
      return 0;
   }
   return 1;
}

/* True if we can read the swap value from /proc/self/status.
   Not thread-safe; initially called by psStartCollector. */
bool swap_in_status (void)
{
   char buffer[32];
   static bool ret = false, called = false;

   if (called) return ret;
   called = true;
   ret = (file_getvalue(buffer, sizeof buffer, PROC_DIR "/self/status",
                        "VmSwap:") != NULL);
   return ret;
}

/* True if we can read the swap value from /proc/self/smaps.
   smaps present since Linux 2.6.14 iff CONFIG_MMU.
   Not thread-safe; initially called by psStartCollector. */
bool swap_in_smaps(void)
{
   char buffer[32];
   static bool ret = false, called = false;

   if (called) return ret;
   called = true;
   ret = (file_getvalue(buffer, sizeof buffer, PROC_DIR "/self/smaps",
                        "Swap:") != NULL);
   return ret;
}

/* True if we can read PSS from /proc/self/smaps.
   This is the process' proportional share of RSS.  PSS+swap is the most
   useful memory consumption measure.
   It's not clear when PSS was introduced -- it's in Debian 2.6.32 but
   not RHEL 5.  [Why isn't the PSS total in status?]
   Not thread-safe; initially called by psStartCollector. */
bool pss_in_smaps(void)
{
   char buffer[32];
   static bool ret = false, called = false;

   if (called) return ret;
   called = true;
   ret = (file_getvalue(buffer, sizeof buffer, PROC_DIR "/self/smaps",
                        "Pss:") != NULL);
   return ret;
}

/* Read data from the status file in /proc for process named PROC,
   updating the timestamp for the proc in JOB_LIST.  Return process'
   PID, user time (UTIME), system time (STIME) and memory size
   (VMSIZE).  */
static bool
linux_read_status(char *proc, int time_stamp, lnk_link_t *job_list,
                  unsigned long *pid, unsigned long *utime,
                  unsigned long *stime, unsigned long *vmsize)
{
   char procnam[256], buffer[BIGLINE];
   int ret;
   FILE *fp;

   DENTER(TOP_LAYER, "linux_read_status");
   snprintf(procnam, sizeof(procnam), PROC_DIR "/%s/stat", proc);
   errno = 0;
   if ((fp = fopen(procnam, "r")) == NULL) {
      if (errno != ENOENT) {
         if (monitor_pdc) {
            if (errno == EACCES)
               INFO((SGE_EVENT,
                     "(uid:"gid_t_fmt" euid:"gid_t_fmt") could not open %s: %s\n",
                     getuid(), geteuid(), procnam, strerror(errno)));
            else
               INFO((SGE_EVENT, "could not open %s: %s\n", procnam,
                     strerror(errno)));
         }
         touch_time_stamp(proc, time_stamp, job_list);
      }
      DRETURN(false);
   }

      /* data from stat file */
      ret = fscanf(fp, "%lu %*s %*c %*d %*d %*d %*d %*d %*u %*u %*u %*u "
                   "%*u %lu %lu %*d %*d %*d %*d %*d %*d %*u %lu",
                   pid, utime, stime, vmsize);
      fclose(fp);
      if (ret != 4) {
         if (monitor_pdc)
            INFO((SGE_EVENT, "could not read %s: %s\n", procnam, strerror(errno)));
         DRETURN(false);
      }
      /* Get more accurate memory consumption than VMsize if possible.  */
      {
         unsigned long vvmsize = 0;
         FILE *fp;

         errno = 0;
         /* Ideally, use PSS for best accuracy.  */
         if (pss_in_smaps() && mconf_get_use_smaps()) {
            snprintf(procnam, sizeof procnam, PROC_DIR "/%s/smaps", proc);
            if ((fp = fopen(procnam, "r"))) {
               while (fgets(buffer, sizeof buffer, fp))
                  /* This is faster than using sscanf, which is
                     important for big smaps.  */
                  if (strncmp(buffer, "Swap:", 5) == 0)
                     vvmsize += atol(buffer + 5) * 1024;
                  else if (strncmp(buffer, "Pss:", 4) == 0)
                     vvmsize += atol(buffer + 4) * 1024;
               fclose(fp);
            } else if (monitor_pdc)
               INFO((SGE_EVENT, "could not read %s: %s\n", procnam,
                     strerror(errno)));
         } else if (swap_in_status()) {
            /* Faster than parsing smaps, if we have it.  */
            snprintf(procnam, sizeof procnam, PROC_DIR "/%s/status", proc);
            if ((fp = fopen(procnam, "r"))) {
               bool gotone = false;
               while (fgets(buffer, sizeof buffer, fp)) {
                  if (strncmp(buffer, "VmRSS:", 6) == 0)
                     vvmsize += atol(buffer + 6) * 1024;
                  else if (strncmp(buffer, "VmSwap:", 7) == 0)
                     vvmsize += atol(buffer + 7) * 1024;
                  else continue;
                  if (gotone) break;
                  gotone = true;
               }
               fclose(fp);
            }
            else if (monitor_pdc)
               INFO((SGE_EVENT, "could not read %s: %s\n", procnam,
                     strerror(errno)));
         } else if (swap_in_smaps() && mconf_get_use_smaps()) {
            /* Last resort is to examine all the maps in smaps for RSS.  */
            snprintf(procnam, sizeof procnam, PROC_DIR "/%s/smaps", proc);
            if ((fp = fopen(procnam, "r"))) {
               while (fgets(buffer, sizeof buffer, fp))
                  if (strncmp(buffer, "Swap:", 5) == 0)
                     vvmsize += atol(buffer + 5) * 1024;
                  else if (strncmp(buffer, "Rss:", 4) == 0)
                     vvmsize += atol(buffer + 4) * 1024;
               fclose(fp);
            } else if (monitor_pdc)
               INFO((SGE_EVENT, "could not read %s: %s\n", procnam,
                     strerror(errno)));
         }
         if (vvmsize > 0)
           *vmsize = vvmsize;
   }
   DRETURN(true);
}
#endif  /* LINUX */

void
init_procfs(void)
{
   DENTER(TOP_LAYER, "init_procfs");
   if (list) DRETURN_VOID;
#ifdef LINUX
   /* Initialize the tests.  */
   (void) pss_in_smaps();
   (void) swap_in_smaps();
   (void) swap_in_status();
   if (!mconf_get_use_smaps()) {
      INFO ((SGE_EVENT, SFNMAX, MSG_NO_SMAPS));
      if (!swap_in_status())
         INFO ((SGE_EVENT, SFNMAX, MSG_NO_SWAP));
   } else {
      if (!swap_in_smaps() && !swap_in_status())
         INFO ((SGE_EVENT, SFNMAX, MSG_NO_SWAP));
   }
#endif
#if defined(LINUX) || defined(ALPHA) || defined(SOLARIS)
   max_groups = sysconf(_SC_NGROUPS_MAX);
   if (max_groups <= 0) {
      ERROR((SGE_EVENT, SFNMAX, MSG_SGE_NGROUPS_MAXOSRECONFIGURATIONNECESSARY));
      DRETURN_VOID;
   }
   list = sge_malloc(max_groups*sizeof(gid_t));
#endif
   DRETURN_VOID;
}
#endif /* (!COMPILE_DC) */