-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcpulimit.c
1000 lines (878 loc) · 29 KB
/
cpulimit.c
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
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* This program is licensed under the GNU General Public License,
* version 2. A copy of the license can be found in the accompanying
* LICENSE file.
*
**********************************************************************
*
* Simple program to limit the cpu usage of a process
* If you modify this code, send me a copy please
*
* Author: Angelo Marletta
* Date: 26/06/2005
* Version: 1.1
*
* Modifications and updates by: Jesse Smith
* Date: May 4, 2011
* Version 1.2
* Date: Jan 29, 2013
* Version 1.2 and newer
*
* Modifications and updates by: Hasnain Lakhani
* Date: Mar 26, 2014
* Version 2.1
*/
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <sys/types.h>
#include <signal.h>
#include <sys/resource.h>
#include <string.h>
#include <dirent.h>
#include <errno.h>
#include <string.h>
#include <limits.h> // for compatibility
#ifdef __APPLE__
#include <mach/clock.h>
#include <mach/mach.h>
#endif
#ifdef FREEBSD
#include <fcntl.h>
#include <kvm.h>
#include <paths.h>
#include <sys/param.h>
#include <sys/sysctl.h>
#include <sys/user.h>
#endif
//kernel time resolution (inverse of one jiffy interval) in Hertz
//i don't know how to detect it, then define to the default (not very clean!)
#define HZ 100
//some useful macro
#define min(a,b) (a<b?a:b)
#define max(a,b) (a>b?a:b)
// For platforms without PATH_MAX
#ifndef PATH_MAX
#define PATH_MAX 4096
#endif
#define BEST_PRIORITY -10
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef VERSION
#define VERSION 2.1
#endif
//pid of the controlled process
pid_t pid = 0;
pid_t my_pid; // this process's PID
//executable file name
char *program_name;
//verbose mode
int verbose = FALSE;
//lazy mode
int lazy = FALSE;
// is higher priority nice possible?
int nice_lim;
// number of CPUs we detected
int NCPU;
// quiet mode
int quiet = FALSE;
//reverse byte search
// void *memrchr(const void *s, int c, size_t n);
//return ta-tb in microseconds (no overflow checks!)
inline long timediff(const struct timespec *ta,const struct timespec *tb) {
unsigned long us = (ta->tv_sec-tb->tv_sec)*1000000 + (ta->tv_nsec/1000 - tb->tv_nsec/1000);
return us;
}
int Check_Us(pid_t target_pid)
{
pid_t this_pid;
this_pid = getpid();
if (this_pid == target_pid)
{
fprintf(stderr, "We cannot throttle ourselves.\n");
exit(7);
}
return TRUE;
}
int waitforpid(int pid) {
//switch to low priority
// if (setpriority(PRIO_PROCESS,getpid(),19)!=0) {
/*
if ( (nice_lim < INT_MAX) &&
(setpriority(PRIO_PROCESS, my_pid, 19) != 0) ) {
printf("Warning: cannot renice\n");
}
*/
int i=0;
while(1) {
DIR *dip;
struct dirent *dit;
//open a directory stream to /proc directory
if ((dip = opendir("/proc")) == NULL) {
perror("opendir");
return -1;
}
//read in from /proc and seek for process dirs
while ((dit = readdir(dip)) != NULL) {
//get pid
if (pid==atoi(dit->d_name)) {
//pid detected
Check_Us(pid);
if (kill(pid,SIGSTOP)==0 && kill(pid,SIGCONT)==0) {
//process is ok!
if (closedir(dip) == -1) {
perror("closedir");
return -1;
}
goto done;
}
else {
fprintf(stderr,"Error: Process %d detected, but you don't have permission to control it\n",pid);
}
}
}
//close the dir stream and check for errors
if (closedir(dip) == -1) {
perror("closedir");
return -1;
}
//no suitable target found
if (i++==0) {
if (lazy) {
fprintf(stderr,"No process found\n");
exit(2);
}
else {
fprintf(stderr, "Warning: no target process found. Waiting for it...\n");
}
}
//sleep for a while
sleep(2);
}
done:
if (!quiet)
printf("Process %d detected\n",pid);
//now set high priority, if possible
// if (setpriority(PRIO_PROCESS,getpid(),-20)!=0) {
/*
if ( (nice_lim < INT_MAX) &&
(setpriority(PRIO_PROCESS, my_pid, nice_lim) != 0) ) {
printf("Warning: cannot renice.\nTo work better you should run this program as root.\n");
}
*/
return 0;
}
//this function periodically scans process list and looks for executable path names
//it should be executed in a low priority context, since precise timing does not matter
//if a process is found then its pid is returned
//process: the name of the wanted process, can be an absolute path name to the executable file
// or simply its name
//return: pid of the found process
int getpidof(const char *process) {
//set low priority
// if (setpriority(PRIO_PROCESS,getpid(),19)!=0) {
/*
if ( (nice_lim < INT_MAX) &&
(setpriority(PRIO_PROCESS, my_pid, 19) != 0) ) {
printf("Warning: cannot renice\n");
}
*/
char exelink[20];
char exepath[PATH_MAX+1];
int pid=0;
int i=0;
while(1) {
DIR *dip;
struct dirent *dit;
//open a directory stream to /proc directory
if ((dip = opendir("/proc")) == NULL) {
perror("opendir");
return -1;
}
//read in from /proc and seek for process dirs
while ((dit = readdir(dip)) != NULL) {
//get pid
pid=atoi(dit->d_name);
if (pid>0) {
sprintf(exelink,"/proc/%d/exe",pid);
int size=readlink(exelink,exepath,sizeof(exepath));
if (size>0) {
int found=0;
if (process[0]=='/' && strncmp(exepath,process,size)==0 && size==strlen(process)) {
//process starts with / then it's an absolute path
found=1;
}
else {
//process is the name of the executable file
if (strncmp(exepath+size-strlen(process),process,strlen(process))==0) {
found=1;
}
}
if (found==1) {
Check_Us(pid);
if (kill(pid,SIGSTOP)==0 && kill(pid,SIGCONT)==0) {
//process is ok!
if (closedir(dip) == -1) {
perror("closedir");
return -1;
}
goto done;
}
else {
fprintf(stderr,"Error: Process %d detected, but you don't have permission to control it\n",pid);
}
}
}
}
}
//close the dir stream and check for errors
if (closedir(dip) == -1) {
perror("closedir");
return -1;
}
//no suitable target found
if (i++==0) {
if (lazy) {
fprintf(stderr,"No process found\n");
exit(2);
}
else {
fprintf(stderr, "Warning: no target process found. Waiting for it...\n");
}
}
//sleep for a while
sleep(2);
}
done:
if (!quiet)
printf("Process %d detected\n",pid);
//now set high priority, if possible
// if (setpriority(PRIO_PROCESS,getpid(),-20)!=0) {
/*
if ( (nice_lim < INT_MAX) &&
(setpriority(PRIO_PROCESS, my_pid, nice_lim) != 0) ) {
printf("Warning: cannot renice.\nTo work better you should run this program as root.\n");
}
*/
return pid;
}
//SIGINT and SIGTERM signal handler
void quit(int sig) {
//let the process continue if it's stopped
kill(pid,SIGCONT);
printf("Exiting...\n");
exit(0);
}
#ifdef FREEBSD
//get jiffies count from /proc filesystem
int getjiffies(int pid)
{
kvm_t *my_kernel = NULL;
struct kinfo_proc *process_data = NULL;
int processes;
int my_jiffies = -1;
my_kernel = kvm_open(0, 0, 0, O_RDONLY, "kvm_open");
if (! my_kernel)
{
fprintf(stderr, "Error opening kernel vm. You should be running as root.\n");
return -1;
}
process_data = kvm_getprocs(my_kernel, KERN_PROC_PID, pid, &processes);
if ( (process_data) && (processes >= 1) )
my_jiffies = process_data->ki_runtime;
kvm_close(my_kernel);
if (my_jiffies >= 0)
my_jiffies /= 1000;
return my_jiffies;
}
#endif
#ifdef LINUX
int getjiffies(int pid) {
static char stat[20];
static char buffer[1024];
char *p;
sprintf(stat,"/proc/%d/stat",pid);
FILE *f=fopen(stat,"r");
if (f==NULL) return -1;
p = fgets(buffer,sizeof(buffer),f);
fclose(f);
// char *p=buffer;
if (p)
{
p=memchr(p+1,')',sizeof(buffer)-(p-buffer));
int sp=12;
while (sp--)
p=memchr(p+1,' ',sizeof(buffer)-(p-buffer));
//user mode jiffies
int utime=atoi(p+1);
p=memchr(p+1,' ',sizeof(buffer)-(p-buffer));
//kernel mode jiffies
int ktime=atoi(p+1);
return utime+ktime;
}
// could not read info
return -1;
}
#endif
//process instant photo
struct process_screenshot {
struct timespec when; //timestamp
int jiffies; //jiffies count of the process
int cputime; //microseconds of work from previous screenshot to current
};
//extracted process statistics
struct cpu_usage {
float pcpu;
float workingrate;
};
//this function is an autonomous dynamic system
//it works with static variables (state variables of the system), that keep memory of recent past
//its aim is to estimate the cpu usage of the process
//to work properly it should be called in a fixed periodic way
//perhaps i will put it in a separate thread...
int compute_cpu_usage(int pid,int last_working_quantum,struct cpu_usage *pusage) {
#define MEM_ORDER 10
//circular buffer containing last MEM_ORDER process screenshots
static struct process_screenshot ps[MEM_ORDER];
//the last screenshot recorded in the buffer
static int front=-1;
//the oldest screenshot recorded in the buffer
static int tail=0;
if (pusage==NULL) {
//reinit static variables
front=-1;
tail=0;
return 0;
}
//let's advance front index and save the screenshot
front=(front+1)%MEM_ORDER;
int j=getjiffies(pid);
if (j>=0) ps[front].jiffies=j;
else return -1; //error: pid does not exist
#ifdef __APPLE__
// OS X does not have clock_gettime, use clock_get_time
clock_serv_t cclock;
mach_timespec_t mts;
host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock);
clock_get_time(cclock, &mts);
mach_port_deallocate(mach_task_self(), cclock);
ps[front].when.tv_sec = mts.tv_sec;
ps[front].when.tv_nsec = mts.tv_nsec;
#else
// Linux and BSD can use real time
clock_gettime(CLOCK_REALTIME,&(ps[front].when));
ps[front].cputime=last_working_quantum;
#endif
//buffer actual size is: (front-tail+MEM_ORDER)%MEM_ORDER+1
int size=(front-tail+MEM_ORDER)%MEM_ORDER+1;
if (size==1) {
//not enough samples taken (it's the first one!), return -1
pusage->pcpu=-1;
pusage->workingrate=1;
return 0;
}
else {
//now we can calculate cpu usage, interval dt and dtwork are expressed in microseconds
long dt=timediff(&(ps[front].when),&(ps[tail].when));
long dtwork=0;
int i=(tail+1)%MEM_ORDER;
int max=(front+1)%MEM_ORDER;
do {
dtwork+=ps[i].cputime;
i=(i+1)%MEM_ORDER;
} while (i!=max);
int used=ps[front].jiffies-ps[tail].jiffies;
float usage=(used*1000000.0/HZ)/dtwork;
pusage->workingrate=1.0*dtwork/dt;
pusage->pcpu=usage*pusage->workingrate;
if (size==MEM_ORDER)
tail=(tail+1)%MEM_ORDER;
return 0;
}
#undef MEM_ORDER
}
void print_caption() {
printf("\n%%CPU\twork quantum\tsleep quantum\tactive rate\n");
}
void increase_priority()
{
//find the best available nice value
int old_priority = getpriority(PRIO_PROCESS, 0);
int priority = old_priority;
while ( (setpriority(PRIO_PROCESS, 0, priority-1) == 0) &&
(priority > BEST_PRIORITY) )
{
priority--;
}
if (priority != old_priority) {
if (verbose) printf("Priority changed to %d\n", priority);
}
else {
if (verbose) printf("Warning: Cannot change priority. Run as root or renice for best results.\n");
}
}
void print_usage(FILE *stream,int exit_code) {
fprintf(stream, "CPUlimit version %1.1f\n", VERSION);
fprintf(stream, "Usage: %s TARGET [OPTIONS...] [-- PROGRAM]\n",program_name);
fprintf(stream, " TARGET must be exactly one of these:\n");
fprintf(stream, " -p, --pid=N pid of the process\n");
fprintf(stream, " -e, --exe=FILE name of the executable program file\n");
fprintf(stream, " The -e option only works when\n");
fprintf(stream, " cpulimit is run with admin rights.\n");
fprintf(stream, " -P, --path=PATH absolute path name of the\n");
fprintf(stream, " executable program file\n");
fprintf(stream, " OPTIONS\n");
fprintf(stream, " -b --background run in background\n");
fprintf(stream, " -c --cpu=N override the detection of CPUs on the machine.\n");
fprintf(stream, " -l, --limit=N percentage of cpu allowed from 1 up.\n");
fprintf(stream, " Usually 1 - %d00, but can be higher\n", NCPU);
fprintf(stream, " on multi-core CPUs (mandatory)\n");
fprintf(stream, " -q, --quiet run in quiet mode (only print errors).\n");
fprintf(stream, " -k, --kill kill processes going over their limit\n");
fprintf(stream, " instead of just throttling them.\n");
fprintf(stream, " -r, --restore Restore processes after they have\n");
fprintf(stream, " been killed. Works with the -k flag.\n");
fprintf(stream, " -v, --verbose show control statistics\n");
fprintf(stream, " -z, --lazy exit if there is no suitable target process,\n");
fprintf(stream, " or if it dies\n");
fprintf(stream, " -- This is the final CPUlimit option. All following\n");
fprintf(stream, " options are for another program we will launch.\n");
fprintf(stream, " -h, --help display this help and exit\n");
exit(exit_code);
}
// Get the number of CPU cores on this machine.
int get_ncpu()
{
int ncpu = 1;
#ifdef _SC_NPROCESSORS_ONLN
ncpu = sysconf(_SC_NPROCESSORS_ONLN);
#endif
return ncpu;
}
int main(int argc, char **argv) {
//get program name
// char *p=(char*)memrchr(argv[0],(unsigned int)'/',strlen(argv[0]));
// program_name = p==NULL?argv[0]:(p+1);
program_name = argv[0];
int run_in_background = FALSE;
//parse arguments
int next_option;
/* A string listing valid short options letters. */
const char* short_options="p:e:P:l:c:bqkrvzh";
/* An array describing valid long options. */
const struct option long_options[] = {
{ "pid", required_argument, NULL, 'p' },
{ "exe", required_argument, NULL, 'e' },
{ "path", required_argument, NULL, 'P' },
{ "limit", required_argument, NULL, 'l' },
{ "background", no_argument, NULL, 'b' },
{ "quiet", no_argument, NULL, 'q' },
{ "verbose", no_argument, NULL, 'v' },
{ "lazy", no_argument, NULL, 'z' },
{ "help", no_argument, NULL, 'h' },
{ "cpu", required_argument, NULL, 'c'},
{ NULL, 0, NULL, 0 }
};
//argument variables
const char *exe=NULL;
const char *path=NULL;
int perclimit=0;
int pid_ok = FALSE;
int process_ok = FALSE;
int limit_ok = FALSE;
int last_known_argument = 0;
int kill_process = FALSE; // kill process instead of stopping it
int restore_process = FALSE; // restore killed process
// struct rlimit maxlimit;
NCPU = get_ncpu();
opterr = 0; // avoid unwanted error messages for unknown parameters
do {
next_option = getopt_long (argc, argv, short_options,long_options, NULL);
switch(next_option) {
case 'b':
run_in_background = TRUE;
last_known_argument++;
break;
case 'p':
pid=atoi(optarg);
if (pid) // valid PID
{
pid_ok = TRUE;
lazy = TRUE;
}
last_known_argument += 2;
break;
case 'e':
exe=optarg;
process_ok = TRUE;
last_known_argument += 2;
break;
case 'P':
path=optarg;
process_ok = TRUE;
last_known_argument += 2;
break;
case 'l':
perclimit=atoi(optarg);
limit_ok = TRUE;
last_known_argument += 2;
break;
case 'c':
NCPU = atoi(optarg);
last_known_argument += 2;
break;
case 'k':
kill_process = TRUE;
last_known_argument++;
break;
case 'r':
restore_process = TRUE;
last_known_argument++;
break;
case 'v':
verbose = TRUE;
last_known_argument++;
break;
case 'q':
quiet = TRUE;
last_known_argument++;
break;
case 'z':
lazy = TRUE;
last_known_argument++;
break;
case 'h':
print_usage (stdout, 1);
last_known_argument++;
break;
case 'o':
last_known_argument++;
next_option = -1;
break;
case '?':
print_usage (stderr, 1);
last_known_argument++;
break;
case -1:
break;
// default:
// abort();
}
} while(next_option != -1);
// try to launch a program passed on the command line
// But only if we do not already have a PID to watch
if ( (last_known_argument + 1 < argc) && (pid_ok == FALSE) )
{
last_known_argument++;
// if we stopped on "--" jump to the next parameter
if ( (last_known_argument + 1 < argc) && (! strcmp(argv[last_known_argument], "--") ) )
last_known_argument++;
pid_t forked_pid;
// try to launch remaining arguments
if (verbose)
{
int index = last_known_argument;
printf("Launching %s", argv[index]);
for (index = last_known_argument + 1; index < argc; index++)
printf(" %s", argv[index]);
printf(" with limit %d\n", perclimit);
}
forked_pid = fork();
if (forked_pid == -1) // error
{
printf("Failed to launch specified process.\n");
exit(1);
}
else if (forked_pid == 0) // target child
{
execvp(argv[last_known_argument],
&(argv[last_known_argument]) );
exit(2);
}
else // parent who will now fork the throttler
{
pid_t limit_pid;
// if we are planning to kill a process, give it
// a running head start to avoid death at start-up
if (kill_process)
sleep(5);
limit_pid = fork();
if (limit_pid == 0) // child
{
pid = forked_pid; // the first child
lazy = TRUE;
pid_ok = TRUE;
if (verbose)
printf("Throttling process %d\n", (int) pid);
}
else // parent
exit(0);
}
/*
else if (forked_pid == 0) // child
{
lazy = TRUE;
pid_ok = TRUE;
pid = getppid();
if (verbose)
printf("Throttling process %d\n", (int) pid);
}
else // parent
{
execvp(argv[last_known_argument],
&(argv[last_known_argument]));
// we should never return
exit(2);
}
*/
} // end of launching child process
if (!process_ok && !pid_ok) {
fprintf(stderr,"Error: You must specify a target process\n");
print_usage (stderr, 1);
exit(1);
}
if ((exe!=NULL && path!=NULL) || (pid_ok && (exe!=NULL || path!=NULL))) {
fprintf(stderr,"Error: You must specify exactly one target process\n");
print_usage (stderr, 1);
exit(1);
}
if (!limit_ok) {
fprintf(stderr,"Error: You must specify a cpu limit\n");
print_usage (stderr, 1);
exit(1);
}
float limit=perclimit/100.0;
if ( (limit <= 0.00) || (limit > NCPU) )
{
fprintf(stderr,"Error: limit must be in the range of 1 to %d00\n", NCPU);
print_usage (stderr, 1);
exit(1);
}
// check to see if we should fork
if (run_in_background)
{
pid_t process_id;
process_id = fork();
if (! process_id)
exit(0);
else
{
setsid();
process_id = fork();
if (process_id)
exit(0);
}
}
//parameters are all ok!
signal(SIGINT,quit);
signal(SIGTERM,quit);
my_pid = getpid();
if (verbose)
printf("%d CPUs detected.\n", NCPU);
increase_priority();
/*
Instead of all this big block of code to detect and change
priority settings, let us just use the increase_priority()
function. It is a little more simple and takes a more
gradual approach, rather than "all or nothing".
-- Jesse
if (setpriority(PRIO_PROCESS, my_pid,-20)!=0) {
//if that failed, check if we have a limit
// by how much we can raise the priority
#ifdef RLIMIT_NICE
//check if non-root can even make changes
// (ifdef because it's only available in linux >= 2.6.13)
nice_lim=getpriority(PRIO_PROCESS, my_pid);
getrlimit(RLIMIT_NICE, &maxlimit);
//if we can do better then current
if( (20 - (signed)maxlimit.rlim_cur) < nice_lim &&
setpriority(PRIO_PROCESS, my_pid,
20 - (signed)maxlimit.rlim_cur)==0 //and it actually works
) {
//if we can do better, but not by much, warn about it
if( (nice_lim - (20 - (signed)maxlimit.rlim_cur)) < 9)
{
printf("Warning, can only increase priority by %d.\n", nice_lim - (20 - (signed)maxlimit.rlim_cur));
}
//our new limit
nice_lim = 20 - (signed)maxlimit.rlim_cur;
} else
// otherwise don't try to change priority.
// The below will also run if it's not possible
// for non-root to change priority
#endif
{
printf("Warning: cannot renice.\nTo work better you should run this program as root, or adjust RLIMIT_NICE.\nFor example in /etc/security/limits.conf add a line with: * - nice -10\n\n");
nice_lim=INT_MAX;
}
} else {
nice_lim=-20;
}
*/
//time quantum in microseconds. it's splitted in a working period and a sleeping one
int period=100000;
struct timespec twork,tsleep; //working and sleeping intervals
memset(&twork,0,sizeof(struct timespec));
memset(&tsleep,0,sizeof(struct timespec));
wait_for_process:
//look for the target process..or wait for it
if (exe != NULL)
pid=getpidof(exe);
else if (path != NULL)
pid=getpidof(path);
else
waitforpid(pid);
//process detected...let's play
//init compute_cpu_usage internal stuff
compute_cpu_usage(0,0,NULL);
//main loop counter
int i=0;
struct timespec startwork,endwork;
long workingtime=0; //last working time in microseconds
if (verbose) print_caption();
float pcpu_avg=0;
//here we should already have high priority, for time precision
while(1) {
//estimate how much the controlled process is using the cpu in its working interval
struct cpu_usage cu;
if (compute_cpu_usage(pid,workingtime,&cu)==-1) {
if (!quiet)
fprintf(stderr,"Process %d dead!\n",pid);
if (lazy) exit(2);
//wait until our process appears
goto wait_for_process;
}
//cpu actual usage of process (range 0-1)
float pcpu=cu.pcpu;
//rate at which we are keeping active the process (range 0-1)
float workingrate=cu.workingrate;
//adjust work and sleep time slices
if (pcpu>0) {
twork.tv_nsec=min(period*limit*1000/pcpu*workingrate,period*1000);
}
else if (pcpu==0) {
twork.tv_nsec=period*1000;
}
else if (pcpu==-1) {
//not yet a valid idea of cpu usage
pcpu=limit;
workingrate=limit;
twork.tv_nsec=min(period*limit*1000,period*1000);
}
tsleep.tv_nsec=period*1000-twork.tv_nsec;
//update average usage
pcpu_avg=(pcpu_avg*i+pcpu)/(i+1);
if (verbose && i%10==0 && i>0) {
printf("%0.2f%%\t%6ld us\t%6ld us\t%0.2f%%\n",pcpu*100,twork.tv_nsec/1000,tsleep.tv_nsec/1000,workingrate*100);
if (i%200 == 0)
print_caption();
}
// if (limit<1 && limit>0) {
// printf("Comparing %f to %f\n", pcpu, limit);
if (pcpu < limit)
{
// printf("Continue\n");
//resume process
if (kill(pid,SIGCONT)!=0) {
if (!quiet)
fprintf(stderr,"Process %d dead!\n",pid);
if (lazy) exit(2);
//wait until our process appears
goto wait_for_process;
}
}
#ifdef __APPLE_
// OS X does not have clock_gettime, use clock_get_time
clock_serv_t cclock;
mach_timespec_t mts;
host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock);
clock_get_time(cclock, &mts);
mach_port_deallocate(mach_task_self(), cclock);
startwork.tv_sec = mts.tv_sec;
startwork.tv_nsec = mts.tv_nsec;
#else
clock_gettime(CLOCK_REALTIME,&startwork);
#endif
nanosleep(&twork,NULL); //now process is working
#ifdef __APPLE__
// OS X does not have clock_gettime, use clock_get_time
// clock_serv_t cclock;
// mach_timespec_t mts;
host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock);
clock_get_time(cclock, &mts);
mach_port_deallocate(mach_task_self(), cclock);
endwork.tv_sec = mts.tv_sec;
endwork.tv_nsec = mts.tv_nsec;
#else
clock_gettime(CLOCK_REALTIME,&endwork);
#endif
workingtime=timediff(&endwork,&startwork);
// if (limit<1) {
// printf("Checking %f vs %f\n", pcpu, limit);
if (pcpu > limit)
{
// When over our limit we may run into
// situations where we want to kill
// the offending process, then restart it
if (kill_process)
{
kill(pid, SIGKILL);
if (!quiet)
fprintf(stderr, "Process %d killed.\n", pid);
if ( (lazy) && (! restore_process) )
exit(2);
// restart killed process
if (restore_process)
{
pid_t new_process;
new_process = fork();
if (new_process == -1)
{
fprintf(stderr, "Failed to restore killed process.\n");
}
else if (new_process == 0)
{
// child which becomes new process
if (verbose)
printf("Relaunching %s\n",
argv[last_known_argument]);
execvp(argv[last_known_argument],
&(argv[last_known_argument]) );
}
else // parent
{
// we need to track new process
pid = new_process;
// avoid killing child process
sleep(5);
}
}
}
// do not kll process, just throttle it
else
{
// printf("Stop\n");
//stop process, it has worked enough
if (kill(pid,SIGSTOP)!=0) {
if (!quiet)
fprintf(stderr,"Process %d dead!\n", pid);
if (lazy) exit(2);
//wait until our process appears
goto wait_for_process;
}
nanosleep(&tsleep,NULL); //now process is sleeping
} // end of throttle process
} // end of process using too much CPU
i++;
}
return 0;
}