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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdio.h> /* Standard */
#include <stdlib.h>
#include <fcntl.h>
#include <sys/types.h>
#include <time.h>
#include <string.h>
#include <errno.h>
#include <pwd.h>
#include <procfs.h>
#include <dirent.h>
#include <thread.h>
#include <limits.h>
#include <sys/todio.h> /* Time-Of-Day chip */
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/ipc.h> /* IPC functions */
#include <signal.h> /* signal handling */
#include <syslog.h>
#include <unistd.h>
#include <libdevinfo.h>
#include <poll.h>
#include <sys/pm.h> /* power management driver */
#include <sys/uadmin.h>
#include <sys/openpromio.h> /* for prom access */
#include <sys/sysmacros.h> /* for MIN & MAX macros */
#include <sys/modctl.h>
#include <sys/stropts.h> /* for INFTIM */
#include <sys/pbio.h>
#include <sys/cpr.h>
#include <stdarg.h>
#include "powerd.h"
/* External Functions */
extern struct tm *localtime_r(const time_t *, struct tm *);
extern void sysstat_init(void);
extern int check_tty(hrtime_t *, int);
extern int check_disks(hrtime_t *, int);
extern int check_load_ave(hrtime_t *, float);
extern int check_nfs(hrtime_t *, int);
extern int last_disk_activity(hrtime_t *, int);
extern int last_tty_activity(hrtime_t *, int);
extern int last_load_ave_activity(hrtime_t *);
extern int last_nfs_activity(hrtime_t *, int);
#define PM "/dev/pm"
#define TOD "/dev/tod"
#define PROM "/dev/openprom"
#define PB "/dev/power_button"
#define LOGFILE "./powerd.log"
#define PBM_THREAD 0
#define ATTACH_THREAD 1
#define NUM_THREADS 2
#define CHECK_INTERVAL 5
#define IDLECHK_INTERVAL 15
#define MINS_TO_SECS 60
#define HOURS_TO_SECS (60 * 60)
#define DAYS_TO_SECS (24 * 60 * 60)
#define HOURS_TO_MINS 60
#define DAYS_TO_MINS (24 * 60)
#define LIFETIME_SECS (7 * 365 * DAYS_TO_SECS)
#define DEFAULT_POWER_CYCLE_LIMIT 10000
#define DEFAULT_SYSTEM_BOARD_DATE 804582000 /* July 1, 1995 */
#define LLEN 80
typedef enum {root, options} prom_node_t;
/* State Variables */
static struct cprconfig asinfo;
static time_t shutdown_time; /* Time for next shutdown check */
static time_t checkidle_time; /* Time for next idleness check */
static time_t last_resume;
pwr_info_t *info; /* private as config data buffer */
static int pb_fd; /* power button driver */
static int broadcast; /* Enables syslog messages */
static int start_calc;
static int autoshutdown_en;
static int do_idlecheck;
static int got_sighup;
static int estar_v2_prop;
#ifdef sparc
static int estar_v3_prop;
#endif
static int log_power_cycles_error = 0;
static int log_system_board_date_error = 0;
static int log_no_autoshutdown_warning = 0;
static mutex_t poweroff_mutex;
static char *autoshutdown_cmd[] = {
"/usr/openwin/bin/sys-suspend",
"-n", "-d", ":0", NULL
};
static char *power_button_cmd[] = {
"/usr/openwin/bin/sys-suspend",
"-h", "-d", ":0", NULL
};
static char pidpath[] = PIDPATH;
static char scratch[PATH_MAX];
static char *prog;
/* Local Functions */
static void alarm_handler(int);
static void thaw_handler(int);
static void kill_handler(int);
static void work_handler(int);
static void check_shutdown(time_t *, hrtime_t *);
static void check_idleness(time_t *, hrtime_t *);
static int last_system_activity(hrtime_t *);
static int run_idlecheck(void);
static void set_alarm(time_t);
static int poweroff(const char *, char **);
static int is_ok2shutdown(time_t *);
static int get_prom(int, prom_node_t, char *, char *, size_t);
static void power_button_monitor(void *);
static int open_pidfile(char *);
static int write_pidfile(int, pid_t);
static int read_cpr_config(void);
static void system_activity_monitor(void);
#ifdef sparc
static void do_attach(void);
static void *attach_devices(void *);
#endif
/* PRINTFLIKE1 */
static void
logerror(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
if (broadcast)
vsyslog(LOG_ERR, fmt, args);
va_end(args);
}
static void
estrcpy(char *dst, char *src, size_t dlen)
{
size_t slen;
slen = strlcpy(dst, src, dlen);
if (slen >= dlen) {
logerror("%s: string too long \"%s ...\"\n"
"(len %d, max %d)\n", prog, dst, slen, dlen - 1);
exit(EXIT_FAILURE);
}
}
int
main(int argc, char *argv[])
{
pid_t pid;
int pm_fd;
struct sigaction act;
sigset_t sigmask;
int c;
char errmsg[PATH_MAX + 64];
int pid_fd;
prog = argv[0];
if (geteuid() != 0) {
(void) fprintf(stderr, "%s: Must be root\n", prog);
exit(EXIT_FAILURE);
}
if ((pid_fd = open_pidfile(prog)) == -1)
exit(EXIT_FAILURE);
/*
* Process options
*/
broadcast = 1;
while ((c = getopt(argc, argv, "n")) != EOF) {
switch (c) {
case 'n':
broadcast = 0;
break;
case '?':
(void) fprintf(stderr, "Usage: %s [-n]\n", prog);
exit(EXIT_FAILURE);
}
}
pm_fd = open(PM, O_RDWR);
if (pm_fd == -1) {
(void) snprintf(errmsg, sizeof (errmsg), "%s: %s", prog, PM);
perror(errmsg);
exit(EXIT_FAILURE);
}
(void) close(pm_fd);
/*
* Initialize mutex lock used to insure only one command to
* run at a time.
*/
if (mutex_init(&poweroff_mutex, USYNC_THREAD, NULL) != 0) {
(void) fprintf(stderr,
"%s: Unable to initialize mutex lock\n", prog);
exit(EXIT_FAILURE);
}
if ((info = (pwr_info_t *)malloc(sizeof (pwr_info_t))) == NULL) {
(void) snprintf(errmsg, sizeof (errmsg), "%s: malloc", prog);
perror(errmsg);
exit(EXIT_FAILURE);
}
/*
* Daemon is set to go...
*/
if ((pid = fork()) < 0)
exit(EXIT_FAILURE);
else if (pid != 0)
exit(EXIT_SUCCESS);
pid = getpid();
openlog(prog, 0, LOG_DAEMON);
if (write_pidfile(pid_fd, pid) == -1) /* logs errors on failure */
exit(EXIT_FAILURE);
(void) close(pid_fd);
/*
* Close all the parent's file descriptors (Bug 1225843).
*/
closefrom(0);
(void) setsid();
(void) chdir("/");
(void) umask(0);
#ifdef DEBUG
/*
* Connect stdout to the console.
*/
if (dup2(open("/dev/console", O_WRONLY|O_NOCTTY), 1) == -1) {
logerror("Unable to connect to the console.");
}
#endif
info->pd_flags = PD_AC;
info->pd_idle_time = -1;
info->pd_start_time = 0;
info->pd_finish_time = 0;
/*
* Allow SIGQUIT, SIGINT and SIGTERM signals to terminate us
* any time
*/
act.sa_handler = kill_handler;
(void) sigemptyset(&act.sa_mask);
act.sa_flags = 0;
(void) sigaction(SIGQUIT, &act, NULL);
(void) sigaction(SIGINT, &act, NULL);
(void) sigaction(SIGTERM, &act, NULL);
(void) sigfillset(&sigmask);
(void) sigdelset(&sigmask, SIGQUIT);
(void) sigdelset(&sigmask, SIGINT);
(void) sigdelset(&sigmask, SIGTERM);
(void) thr_sigsetmask(SIG_SETMASK, &sigmask, NULL);
/*
* If "power_button" device node can be opened, create a new
* thread to monitor the power button.
*/
if ((pb_fd = open(PB, O_RDONLY)) != -1) {
if (thr_create(NULL, NULL,
(void *(*)(void *))power_button_monitor, NULL,
THR_DAEMON, NULL) != 0) {
logerror("Unable to monitor system's power button.");
}
}
#ifdef sparc
do_attach();
#endif
/*
* Create a new thread to monitor system activity and suspend
* system if idle.
*/
if (thr_create(NULL, NULL,
(void *(*)(void *))system_activity_monitor, NULL,
THR_DAEMON, NULL) != 0) {
logerror("Unable to create thread to monitor system activity.");
}
/*
* Block until we receive an explicit terminate signal
*/
(void) sigsuspend(&sigmask);
return (1);
}
static void
system_activity_monitor(void)
{
struct sigaction act;
sigset_t sigmask;
/*
* Setup for gathering system's statistic.
*/
sysstat_init();
/*
* In addition to the SIGQUIT, SIGINT and SIGTERM signals already
* being handled, this thread also needs to handle SIGHUP, SIGALRM
* and SIGTHAW signals.
*/
(void) sigemptyset(&act.sa_mask);
act.sa_flags = 0;
act.sa_handler = alarm_handler;
(void) sigaction(SIGALRM, &act, NULL);
act.sa_handler = work_handler;
(void) sigaction(SIGHUP, &act, NULL);
act.sa_handler = thaw_handler;
(void) sigaction(SIGTHAW, &act, NULL);
/*
* Invoke work_handler with a dummy SIGHUP signal to read
* cpr config file, get autoshutdown properties and schedule
* an alarm if needed.
*/
work_handler(SIGHUP);
/*
* Wait for signal to read file
*/
(void) thr_sigsetmask(0, 0, &sigmask);
(void) sigdelset(&sigmask, SIGHUP);
(void) sigdelset(&sigmask, SIGALRM);
(void) sigdelset(&sigmask, SIGTHAW);
(void) thr_sigsetmask(SIG_SETMASK, &sigmask, NULL);
do {
(void) sigsuspend(&sigmask);
} while (errno == EINTR);
}
static int
read_cpr_config(void)
{
int asfd;
if ((asfd = open(CPR_CONFIG, O_RDONLY)) < 0) {
logerror("Unable to open CPR config file '%s'", CPR_CONFIG);
return (-1);
}
if (read(asfd, (void *)&asinfo, sizeof (asinfo)) != sizeof (asinfo)) {
logerror("Unable to read CPR config file '%s'", CPR_CONFIG);
close(asfd);
return (-1);
}
(void) close(asfd);
return (0);
}
/*ARGSUSED*/
static void
thaw_handler(int sig)
{
start_calc = 0;
last_resume = time(NULL);
}
/*ARGSUSED*/
static void
kill_handler(int sig)
{
int ret_code = EXIT_SUCCESS;
/*
* Free resources
*/
free(info);
if (pb_fd != -1) {
(void) close(pb_fd);
}
(void) mutex_destroy(&poweroff_mutex);
(void) unlink(pidpath);
closelog();
exit(ret_code);
}
/*ARGSUSED*/
static void
alarm_handler(int sig)
{
time_t now;
hrtime_t hr_now;
now = time(NULL);
hr_now = gethrtime();
if (checkidle_time <= now && checkidle_time != 0)
check_idleness(&now, &hr_now);
if (shutdown_time <= now && shutdown_time != 0)
check_shutdown(&now, &hr_now);
set_alarm(now);
}
/*ARGSUSED*/
static void
work_handler(int sig)
{
time_t now;
hrtime_t hr_now;
struct stat stat_buf;
do_idlecheck = 0;
info->pd_flags = PD_AC;
/*
* Parse the config file for autoshutdown and idleness entries.
*/
if (read_cpr_config() < 0)
return;
/*
* Since Oct. 1, 1995, any new system shipped had root
* property "energystar-v2" defined in its prom. Systems
* shipped after July 1, 1999, will have "energystar-v3"
* property.
*/
estar_v2_prop = asinfo.is_cpr_default;
info->pd_flags |= asinfo.is_autowakeup_capable;
if (strlen(asinfo.idlecheck_path) > 0) {
if (stat(asinfo.idlecheck_path, &stat_buf) != 0) {
logerror("unable to access idlecheck program \"%s\".",
asinfo.idlecheck_path);
} else if (!(stat_buf.st_mode & S_IXUSR)) {
logerror("idlecheck program \"%s\" is not executable.",
asinfo.idlecheck_path);
} else {
do_idlecheck = 1;
}
}
if (strlen(asinfo.as_behavior) == 0 ||
strcmp(asinfo.as_behavior, "noshutdown") == 0 ||
strcmp(asinfo.as_behavior, "unconfigured") == 0) {
info->pd_autoshutdown = 0;
} else if (strcmp(asinfo.as_behavior, "default") == 0) {
info->pd_autoshutdown = estar_v2_prop;
} else if (strcmp(asinfo.as_behavior, "shutdown") == 0 ||
strcmp(asinfo.as_behavior, "autowakeup") == 0) {
info->pd_autoshutdown = asinfo.is_cpr_capable;
} else {
logerror("autoshutdown behavior \"%s\" unrecognized.",
asinfo.as_behavior);
info->pd_autoshutdown = 0;
}
if (info->pd_autoshutdown) {
info->pd_idle_time = asinfo.as_idle;
info->pd_start_time =
(asinfo.as_sh * 60 + asinfo.as_sm) % DAYS_TO_MINS;
info->pd_finish_time =
(asinfo.as_fh * 60 + asinfo.as_fm) % DAYS_TO_MINS;
info->pd_autoresume =
(strcmp(asinfo.as_behavior, "autowakeup") == 0) ? 1 : 0;
}
autoshutdown_en = (asinfo.as_idle >= 0 && info->pd_autoshutdown)
? 1 : 0;
#ifdef DEBUG
(void) fprintf(stderr, "autoshutdown_en = %d, as_idle = %d, "
"pd_autoresume = %d\n",
autoshutdown_en, asinfo.as_idle, info->pd_autoresume);
(void) fprintf(stderr, " pd_start_time=%d, pd_finish_time=%d\n",
info->pd_start_time, info->pd_finish_time);
#endif
got_sighup = 1;
now = last_resume = time(NULL);
hr_now = gethrtime();
check_idleness(&now, &hr_now);
check_shutdown(&now, &hr_now);
set_alarm(now);
}
static void
check_shutdown(time_t *now, hrtime_t *hr_now)
{
int tod_fd = -1;
int kbd, mouse, system, least_idle, idlecheck_time;
int next_time;
int s, f;
struct tm tmp_time;
time_t start_of_day, time_since_last_resume;
time_t wakeup_time;
extern long conskbd_idle_time(void);
extern long consms_idle_time(void);
static int warned_kbd, warned_ms; /* print error msg one time */
if (!autoshutdown_en) {
shutdown_time = 0;
return;
}
(void) localtime_r(now, &tmp_time);
tmp_time.tm_sec = 0;
tmp_time.tm_min = 0;
tmp_time.tm_hour = 0;
start_of_day = mktime(&tmp_time);
s = start_of_day + info->pd_start_time * 60;
f = start_of_day + info->pd_finish_time * 60;
if ((s < f && *now >= s && *now < f) ||
(s >= f && (*now < f || *now >= s))) {
if ((mouse = (int)consms_idle_time()) < 0) {
if (! warned_ms) {
warned_ms = 1;
logerror("powerd: failed to get "
"idle time for console mouse");
}
return;
}
if ((kbd = (int)conskbd_idle_time()) < 0) {
if (! warned_kbd) {
warned_kbd = 1;
logerror("powerd: failed to get "
"idle time for console keyboard");
}
return;
}
system = last_system_activity(hr_now);
/* who is the last to go idle */
least_idle = MIN(system, MIN(kbd, mouse));
/*
* Calculate time_since_last_resume and the next_time
* to auto suspend.
*/
start_calc = 1;
time_since_last_resume = time(NULL) - last_resume;
next_time = info->pd_idle_time * 60 -
MIN(least_idle, time_since_last_resume);
#ifdef DEBUG
fprintf(stderr, " check_shutdown: next_time=%d\n",
next_time);
#endif
/*
* If we have get the SIGTHAW signal at this point - our
* calculation of time_since_last_resume is wrong so
* - we need to recalculate.
*/
while (start_calc == 0) {
/* need to redo calculation */
start_calc = 1;
time_since_last_resume = time(NULL) - last_resume;
next_time = info->pd_idle_time * 60 -
MIN(least_idle, time_since_last_resume);
}
/*
* Only when everything else is idle, run the user's idlecheck
* script.
*/
if (next_time <= 0 && do_idlecheck) {
got_sighup = 0;
idlecheck_time = run_idlecheck();
next_time = info->pd_idle_time * 60 -
MIN(idlecheck_time, MIN(least_idle,
time_since_last_resume));
/*
* If we have caught SIGTHAW or SIGHUP, need to
* recalculate.
*/
while (start_calc == 0 || got_sighup == 1) {
start_calc = 1;
got_sighup = 0;
idlecheck_time = run_idlecheck();
time_since_last_resume = time(NULL) -
last_resume;
next_time = info->pd_idle_time * 60 -
MIN(idlecheck_time, MIN(least_idle,
time_since_last_resume));
}
}
if (next_time <= 0) {
if (is_ok2shutdown(now)) {
/*
* Setup the autowakeup alarm. Clear it
* right after poweroff, just in case if
* shutdown doesn't go through.
*/
if (info->pd_autoresume)
tod_fd = open(TOD, O_RDWR);
if (info->pd_autoresume && tod_fd != -1) {
wakeup_time = (*now < f) ? f :
(f + DAYS_TO_SECS);
/*
* A software fix for hardware
* bug 1217415.
*/
if ((wakeup_time - *now) < 180) {
logerror(
"Since autowakeup time is less than 3 minutes away, "
"autoshutdown will not occur.");
shutdown_time = *now + 180;
close(tod_fd);
return;
}
if (ioctl(tod_fd, TOD_SET_ALARM,
&wakeup_time) == -1) {
logerror("Unable to program "
"TOD alarm for "
"autowakeup.");
close(tod_fd);
return;
}
}
(void) poweroff("Autoshutdown",
autoshutdown_cmd);
if (info->pd_autoresume && tod_fd != -1) {
if (ioctl(tod_fd, TOD_CLEAR_ALARM,
NULL) == -1)
logerror("Unable to clear "
"alarm in TOD device.");
close(tod_fd);
}
(void) time(now);
/* wait at least 5 mins */
shutdown_time = *now +
((info->pd_idle_time * 60) > 300 ?
(info->pd_idle_time * 60) : 300);
} else {
/* wait 5 mins */
shutdown_time = *now + 300;
}
} else
shutdown_time = *now + next_time;
} else if (s < f && *now >= f) {
shutdown_time = s + DAYS_TO_SECS;
} else
shutdown_time = s;
}
static int
is_ok2shutdown(time_t *now)
{
int prom_fd = -1;
char power_cycles_st[LLEN];
char power_cycle_limit_st[LLEN];
char system_board_date_st[LLEN];
int power_cycles, power_cycle_limit, free_cycles, scaled_cycles;
time_t life_began, life_passed;
int no_power_cycles = 0;
int no_system_board_date = 0;
int ret = 1;
/* CONSTCOND */
while (1) {
if ((prom_fd = open(PROM, O_RDWR)) == -1 &&
(errno == EAGAIN))
continue;
break;
}
/*
* when #power-cycles property does not exist
* power cycles are unlimited.
*/
if (get_prom(prom_fd, options, "#power-cycles",
power_cycles_st, sizeof (power_cycles_st)) == 0)
goto ckdone;
if (get_prom(prom_fd, root, "power-cycle-limit",
power_cycle_limit_st, sizeof (power_cycle_limit_st)) == 0) {
power_cycle_limit = DEFAULT_POWER_CYCLE_LIMIT;
} else {
power_cycle_limit = atoi(power_cycle_limit_st);
}
/*
* Allow 10% of power_cycle_limit as free cycles.
*/
free_cycles = power_cycle_limit / 10;
power_cycles = atoi(power_cycles_st);
if (power_cycles < 0)
no_power_cycles++;
else if (power_cycles <= free_cycles)
goto ckdone;
if (no_power_cycles && log_power_cycles_error == 0) {
logerror("Invalid PROM property \"#power-cycles\" was found.");
log_power_cycles_error++;
}
if (get_prom(prom_fd, options, "system-board-date",
system_board_date_st, sizeof (system_board_date_st)) == 0) {
no_system_board_date++;
} else {
life_began = strtol(system_board_date_st, (char **)NULL, 16);
if (life_began > *now) {
no_system_board_date++;
}
}
if (no_system_board_date) {
if (log_system_board_date_error == 0) {
logerror("No or invalid PROM property "
"\"system-board-date\" was found.");
log_system_board_date_error++;
}
life_began = DEFAULT_SYSTEM_BOARD_DATE;
}
life_passed = *now - life_began;
/*
* Since we don't keep the date that last free_cycle is ended, we
* need to spread (power_cycle_limit - free_cycles) over the entire
* 7-year life span instead of (lifetime - date free_cycles ended).
*/
scaled_cycles = (int)(((float)life_passed / (float)LIFETIME_SECS) *
(power_cycle_limit - free_cycles));
if (no_power_cycles)
goto ckdone;
#ifdef DEBUG
(void) fprintf(stderr, "Actual power_cycles = %d\t"
"Scaled power_cycles = %d\n",
power_cycles, scaled_cycles);
#endif
if (power_cycles > scaled_cycles) {
if (log_no_autoshutdown_warning == 0) {
logerror("Automatic shutdown has been temporarily "
"suspended in order to preserve the reliability "
"of this system.");
log_no_autoshutdown_warning++;
}
ret = 0;
goto ckdone;
}
ckdone:
if (prom_fd != -1)
close(prom_fd);
return (ret);
}
static void
check_idleness(time_t *now, hrtime_t *hr_now)
{
/*
* Check idleness only when autoshutdown is enabled.
*/
if (!autoshutdown_en) {
checkidle_time = 0;
return;
}
info->pd_ttychars_idle = check_tty(hr_now, asinfo.ttychars_thold);
info->pd_loadaverage_idle =
check_load_ave(hr_now, asinfo.loadaverage_thold);
info->pd_diskreads_idle = check_disks(hr_now, asinfo.diskreads_thold);
info->pd_nfsreqs_idle = check_nfs(hr_now, asinfo.nfsreqs_thold);
#ifdef DEBUG
(void) fprintf(stderr, "Idle ttychars for %d secs.\n",
info->pd_ttychars_idle);
(void) fprintf(stderr, "Idle loadaverage for %d secs.\n",
info->pd_loadaverage_idle);
(void) fprintf(stderr, "Idle diskreads for %d secs.\n",
info->pd_diskreads_idle);
(void) fprintf(stderr, "Idle nfsreqs for %d secs.\n",
info->pd_nfsreqs_idle);
#endif
checkidle_time = *now + IDLECHK_INTERVAL;
}
static int
last_system_activity(hrtime_t *hr_now)
{
int act_idle, latest;
latest = info->pd_idle_time * 60;
act_idle = last_tty_activity(hr_now, asinfo.ttychars_thold);
latest = MIN(latest, act_idle);
act_idle = last_load_ave_activity(hr_now);
latest = MIN(latest, act_idle);
act_idle = last_disk_activity(hr_now, asinfo.diskreads_thold);
latest = MIN(latest, act_idle);
act_idle = last_nfs_activity(hr_now, asinfo.nfsreqs_thold);
latest = MIN(latest, act_idle);
return (latest);
}
static int
run_idlecheck()
{
char pm_variable[LLEN];
char *cp;
int status;
pid_t child;
/*
* Reap any child process which has been left over.
*/
while (waitpid((pid_t)-1, &status, WNOHANG) > 0);
/*
* Execute the user's idlecheck script and set variable PM_IDLETIME.
* Returned exit value is the idle time in minutes.
*/
if ((child = fork1()) == 0) {
(void) sprintf(pm_variable, "PM_IDLETIME=%d",
info->pd_idle_time);
(void) putenv(pm_variable);
cp = strrchr(asinfo.idlecheck_path, '/');
if (cp == NULL)
cp = asinfo.idlecheck_path;
else
cp++;
(void) execl(asinfo.idlecheck_path, cp, NULL);
exit(-1);
} else if (child == -1) {
return (info->pd_idle_time * 60);
}
/*
* Wait until the idlecheck program completes.
*/
if (waitpid(child, &status, 0) != child) {
/*
* We get here if the calling process gets a signal.
*/
return (info->pd_idle_time * 60);
}
if (WEXITSTATUS(status) < 0) {
return (info->pd_idle_time * 60);
} else {
return (WEXITSTATUS(status) * 60);
}
}
static void
set_alarm(time_t now)
{
time_t itime, stime, next_time, max_time;
int next_alarm;
max_time = MAX(checkidle_time, shutdown_time);
if (max_time == 0) {
(void) alarm(0);
return;
}
itime = (checkidle_time == 0) ? max_time : checkidle_time;
stime = (shutdown_time == 0) ? max_time : shutdown_time;
next_time = MIN(itime, stime);
next_alarm = (next_time <= now) ? 1 : (next_time - now);
(void) alarm(next_alarm);
#ifdef DEBUG
(void) fprintf(stderr, "Currently @ %s", ctime(&now));
(void) fprintf(stderr, "Checkidle in %d secs\n", checkidle_time - now);
(void) fprintf(stderr, "Shutdown in %d secs\n", shutdown_time - now);
(void) fprintf(stderr, "Next alarm goes off in %d secs\n", next_alarm);
(void) fprintf(stderr, "************************************\n");
#endif
}
static int
poweroff(const char *msg, char **cmd_argv)
{
struct stat statbuf;
pid_t pid, child;
struct passwd *pwd;
char *home, *user;
char ehome[] = "HOME=";
char euser[] = "LOGNAME=";
int status;
char **ca;
if (mutex_trylock(&poweroff_mutex) != 0)
return (0);
if (stat("/dev/console", &statbuf) == -1 ||
(pwd = getpwuid(statbuf.st_uid)) == NULL) {
mutex_unlock(&poweroff_mutex);
return (1);
}
if (msg)
syslog(LOG_NOTICE, msg);
if (*cmd_argv == NULL) {
logerror("No command to run.");
mutex_unlock(&poweroff_mutex);
return (1);
}
home = malloc(strlen(pwd->pw_dir) + sizeof (ehome));
user = malloc(strlen(pwd->pw_name) + sizeof (euser));
if (home == NULL || user == NULL) {
free(home);
free(user);
logerror("No memory.");
mutex_unlock(&poweroff_mutex);
return (1);
}
(void) strcpy(home, ehome);
(void) strcat(home, pwd->pw_dir);
(void) strcpy(user, euser);
(void) strcat(user, pwd->pw_name);
/*
* Need to simulate the user enviroment, minimaly set HOME, and USER.
*/
if ((child = fork1()) == 0) {
(void) putenv(home);
(void) putenv(user);
(void) setgid(pwd->pw_gid);
(void) setuid(pwd->pw_uid);
/*
* check for shutdown flag and set environment
*/
for (ca = cmd_argv; *ca; ca++) {
if (strcmp("-h", *ca) == 0) {
(void) putenv("SYSSUSPENDDODEFAULT=");
break;
}
}
(void) execv(cmd_argv[0], cmd_argv);
exit(EXIT_FAILURE);
} else {
free(home);
free(user);
if (child == -1) {
mutex_unlock(&poweroff_mutex);
return (1);
}
}
pid = 0;
while (pid != child)
pid = wait(&status);
if (WEXITSTATUS(status)) {
(void) syslog(LOG_ERR, "Failed to exec \"%s\".", cmd_argv[0]);
mutex_unlock(&poweroff_mutex);
return (1);
}
mutex_unlock(&poweroff_mutex);
return (0);
}
#define PBUFSIZE 256
/*
* Gets the value of a prom property at either root or options node. It
* returns 1 if it is successful, otherwise it returns 0 .
*/
static int
get_prom(int prom_fd, prom_node_t node_name,
char *property_name, char *property_value, size_t len)
{
union {
char buf[PBUFSIZE + sizeof (uint_t)];
struct openpromio opp;
} oppbuf;
register struct openpromio *opp = &(oppbuf.opp);
int got_it = 0;
if (prom_fd == -1) {
return (0);
}
switch (node_name) {
case root:
(void *) memset(oppbuf.buf, 0, PBUFSIZE);
opp->oprom_size = PBUFSIZE;
if (ioctl(prom_fd, OPROMNEXT, opp) < 0) {
return (0);
}
/*
* Passing null string will give us the first property.
*/
(void *) memset(oppbuf.buf, 0, PBUFSIZE);
do {
opp->oprom_size = PBUFSIZE;
if (ioctl(prom_fd, OPROMNXTPROP, opp) < 0) {
return (0);
}
if (strcmp(opp->oprom_array, property_name) == 0) {
got_it++;
break;
}
} while (opp->oprom_size > 0);
if (!got_it) {
return (0);
}
if (got_it && property_value == NULL) {
return (1);
}
opp->oprom_size = PBUFSIZE;
if (ioctl(prom_fd, OPROMGETPROP, opp) < 0) {
return (0);
}
if (opp->oprom_size == 0) {
*property_value = '\0';
} else {
estrcpy(property_value, opp->oprom_array, len);
}
break;
case options:
estrcpy(opp->oprom_array, property_name, PBUFSIZE);
opp->oprom_size = PBUFSIZE;
if (ioctl(prom_fd, OPROMGETOPT, opp) < 0) {
return (0);
}
if (opp->oprom_size == 0) {
return (0);
}
if (property_value != NULL) {
estrcpy(property_value, opp->oprom_array, len);
}
break;
default:
logerror("Only root node and options node are supported.\n");
return (0);
}
return (1);
}
#define isspace(ch) ((ch) == ' ' || (ch) == '\t')
#define iseol(ch) ((ch) == '\n' || (ch) == '\r' || (ch) == '\f')
/*ARGSUSED*/
static void
power_button_monitor(void *arg)
{
struct pollfd pfd;
int events;
if (ioctl(pb_fd, PB_BEGIN_MONITOR, NULL) == -1) {
logerror("Failed to monitor the power button.");
thr_exit((void *) 0);
}
pfd.fd = pb_fd;
pfd.events = POLLIN;
/*CONSTCOND*/
while (1) {
if (poll(&pfd, 1, INFTIM) == -1) {
logerror("Failed to poll for power button events.");
thr_exit((void *) 0);
}
if (!(pfd.revents & POLLIN))
continue;
if (ioctl(pfd.fd, PB_GET_EVENTS, &events) == -1) {
logerror("Failed to get power button events.");
thr_exit((void *) 0);
}
if ((events & PB_BUTTON_PRESS) &&
(poweroff(NULL, power_button_cmd) != 0)) {
logerror("Power button is pressed, powering "
"down the system!");
/*
* Send SIGPWR signal to the init process to
* shut down the system.
*/
if (kill(1, SIGPWR) == -1)
(void) uadmin(A_SHUTDOWN, AD_POWEROFF, 0);
}
/*
* Clear any power button event that has happened
* meanwhile we were busy processing the last one.
*/
if (ioctl(pfd.fd, PB_GET_EVENTS, &events) == -1) {
logerror("Failed to get power button events.");
thr_exit((void *) 0);
}
}
}
#ifdef sparc
static void
do_attach(void)
{
if (read_cpr_config() < 0)
return;
/*
* If autopm behavior is explicitly enabled for energystar-v2, or
* set to default for energystar-v3, create a new thread to attach
* all devices.
*/
estar_v3_prop = asinfo.is_autopm_default;
if ((strcmp(asinfo.apm_behavior, "enable") == 0) ||
(estar_v3_prop && strcmp(asinfo.apm_behavior, "default") == 0)) {
if (thr_create(NULL, NULL, attach_devices, NULL,
THR_DAEMON, NULL) != 0) {
logerror("Unable to create thread to attach devices.");
}
}
}
/*ARGSUSED*/
static void *
attach_devices(void *arg)
{
di_node_t root_node;
sleep(60); /* let booting finish first */
if ((root_node = di_init("/", DINFOFORCE)) == DI_NODE_NIL) {
logerror("Failed to attach devices.");
return (NULL);
}
di_fini(root_node);
/*
* Unload all the modules.
*/
(void) modctl(MODUNLOAD, 0);
return (NULL);
}
#endif
/*
* Create a file which will contain our pid. Pmconfig will check this file
* to see if we are running and can use the pid to signal us. Returns the
* file descriptor if successful, -1 otherwise.
*
* Note: Deal with attempt to launch multiple instances and also with existence
* of an obsolete pid file caused by an earlier abort.
*/
static int
open_pidfile(char *me)
{
int fd;
const char *e1 = "%s: Cannot open pid file for read: ";
const char *e2 = "%s: Cannot unlink obsolete pid file: ";
const char *e3 = "%s: Cannot open /proc for pid %ld: ";
const char *e4 = "%s: Cannot read /proc for pid %ld: ";
const char *e5 = "%s: Another instance (pid %ld) is trying to exit"
"and may be hung. Please contact sysadmin.\n";
const char *e6 = "%s: Another daemon is running\n";
const char *e7 = "%s: Cannot create pid file: ";
again:
if ((fd = open(pidpath, O_CREAT | O_EXCL | O_WRONLY, 0444)) == -1) {
if (errno == EEXIST) {
FILE *fp;
int ps_fd;
pid_t pid;
psinfo_t ps_info;
if ((fp = fopen(pidpath, "r")) == NULL) {
(void) fprintf(stderr, e1, me);
perror(NULL);
return (-1);
}
/* Read the pid */
pid = (pid_t)-1;
(void) fscanf(fp, "%ld", &pid);
(void) fclose(fp);
if (pid == -1) {
if (unlink(pidpath) == -1) {
(void) fprintf(stderr, e2, me);
perror(NULL);
return (-1);
} else /* try without corrupted file */
goto again;
}
/* Is pid for a running process? */
(void) sprintf(scratch, "/proc/%ld/psinfo", pid);
ps_fd = open(scratch, O_RDONLY | O_NDELAY);
if (ps_fd == -1) {
if (errno == ENOENT) {
if (unlink(pidpath) == -1) {
(void) fprintf(stderr, e2, me);
perror(NULL);
return (-1);
} else /* try without obsolete file */
goto again;
}
(void) fprintf(stderr, e3, me, pid);
return (-1);
}
if (read(ps_fd, &ps_info,
sizeof (ps_info)) != sizeof (ps_info)) {
(void) fprintf(stderr, e4, me, pid);
perror(NULL);
(void) close(ps_fd);
return (-1);
}
(void) close(ps_fd);
if (ps_info.pr_nlwp == 0) { /* defunct process */
(void) fprintf(stderr, e5, me, pid);
return (-1);
} else { /* instance of daemon already running */
(void) fprintf(stderr, e6, me);
return (-1);
}
} else { /* create failure not due to existing file */
(void) fprintf(stderr, e7, me);
perror(NULL);
return (-1);
}
}
(void) fchown(fd, (uid_t)-1, (gid_t)0);
return (fd);
}
/*
* Write a pid to the pid file. Report errors to syslog.
*
*/
static int
write_pidfile(int fd, pid_t pid)
{
int len;
int rc = 0; /* assume success */
len = sprintf(scratch, "%ld\n", pid);
if (write(fd, scratch, len) != len) {
logerror("Cannot write pid file: %s", strerror(errno));
rc = -1;
}
return (rc);
}
|