1.\" Copyright (c) 1999 Mitsuru IWASAKI <iwasaki@FreeBSD.org> 2.\" Copyright (c) 1999 KOIE Hidetaka <koie@suri.co.jp> 3.\" Copyright (c) 1999 Yoshihiko SARUMARU Aq <mistral@imasy.or.jp> 4.\" Copyright (c) 1999 Norihiro Kumagai <kuma@nk.rim.or.jp> 5.\" All rights reserved. 6.\" 7.\" Redistribution and use in source and binary forms, with or without 8.\" modification, are permitted provided that the following conditions 9.\" are met: 10.\" 1. Redistributions of source code must retain the above copyright 11.\" notice, this list of conditions and the following disclaimer. 12.\" 2. Redistributions in binary form must reproduce the above copyright 13.\" notice, this list of conditions and the following disclaimer in the 14.\" documentation and/or other materials provided with the distribution. 15.\" 16.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26.\" SUCH DAMAGE. 27.\" 28.\" @(#)apmd.8 1.1 (FreeBSD) 6/28/99 29.\" $FreeBSD$ 30.\" 31.Dd June 28, 1999 32.Dt APMD 8 i386 33.Os 34.Sh NAME 35.Nm apmd 36.Nd Advanced Power Management monitor daemon 37.Sh SYNOPSIS 38.Nm 39.Op Fl d 40.Op Fl f file 41.Op Fl s 42.Op Fl v 43.Sh DESCRIPTION 44The 45.Nm 46utility 47monitors the occurrence of the specified Advanced Power Management 48.Pq Tn APM 49events and, if one of the events occurs, it executes the sequence of 50commands corresponding to the event. Only the events specified in the 51configuration file are notified to 52.Nm ; 53all other events are ignored. For each event posted by the APM BIOS, 54.Nm 55invokes the sequence of commands specified in the configuration file. 56When 57.Nm 58is running with monitoring suspend/standby requests, 59the kernel will not process those requests. 60Therefore, if you wish action to be taken when these events 61occur, you need to explicitly configure the appropriate commands or 62built-in functions in the configuration file. 63.Pp 64The 65.Nm 66utility recognizes the following runtime options: 67.Bl -tag -width -f_file 68.It Fl d 69Starts in debug mode. This causes 70.Nm 71to execute in the foreground instead of in daemon mode. 72.It Fl f Ar file 73Specifies a different configuration file 74.Ar file 75to be used in place of the default 76.Pa /etc/apmd.conf . 77.It Fl s 78Causes 79.Nm 80to simulate a POWERSTATECHANGE event when a power state change is detected 81(AC_POWER_STATE) but the bios of the laptop doesn't report it. 82This enables you to do things like dimming the LCD backlight when you unplug 83the power cord. 84.It Fl v 85Verbose mode. 86.El 87.Pp 88When 89.Nm 90starts, it reads the configuration file 91.Pa ( /etc/apmd.conf 92as default) 93and notifies the set of events to be monitored to the APM device driver. 94When it terminates, the APM device driver automatically cancels 95monitored events. 96.Pp 97If the 98.Nm 99process receives a SIGHUP, it will reread its configuration file and 100notify the APM device driver of any changes to its configuration. 101.Pp 102The 103.Nm 104utility uses the device 105.Pa /dev/apmctl 106to issue 107.Xr ioctl 2 108requests for monitoring events and for controlling the APM system. 109This device file is opened exclusively, so only a single 110.Nm 111process can be running at any time. 112.Pp 113When 114.Nm 115receives an APM event, it forks a child process to execute the 116commands specified in the configuration file and then continues 117listening for more events. The child process executes the commands 118specified, one at a time and in the order that they are listed. 119.Pp 120While 121.Nm 122is processing the command list for SUSPEND/STANDBY requests, the APM kernel 123device driver issues notifications to APM BIOS once per second so that the 124BIOS knows that there are still some commands pending, and that it should not 125complete the request just yet. 126.Pp 127The 128.Nm 129utility creates the file 130.Pa /var/run/apmd.pid , 131and stores its process 132id there. 133This can be used to kill or reconfigure 134.Nm . 135.Sh CONFIGURATION FILE 136The structure of the 137.Nm 138configuration file is quite simple. For example: 139.Pp 140.Bd -literal 141apm_event SUSPENDREQ { 142 exec "sync && sync && sync"; 143 exec "sleep 1"; 144 exec "zzz"; 145} 146.Ed 147.Pp 148will cause 149.Nm 150to receive the APM event 151.Ql SUSPENDREQ 152(which may be posted by an LCD close), run the 153.Ql sync 154command 3 times and wait for a while, then execute 155.Nm zzz ( Ns Nm apm Fl z ) 156to put the system in the suspend state. 157.Pp 158.Bl -bullet 159.It 160The apm_event keyword 161.Bd -ragged -offset indent 162.Ql apm_event 163is the keyword which indicates the start of configuration for 164each events. 165.Ed 166.It 167APM events 168.Bd -ragged -offset indent 169If you wish to execute the same commands for different events, the 170event names should be delimited by a comma. The following are 171valid event names: 172.Bl -item 173.It 174- Events ignored by the kernel if 175.Nm 176is running: 177.Pp 178.Bl -tag -width USERSUSPENDREQ -compact -offset indent 179.It STANDBYREQ 180.It USERSTANDBYREQ 181.It SUSPENDREQ 182should include sync in the command list, 183.It USERSUSPENDREQ 184should include sync in the command list, 185.It BATTERYLOW 186only zzz should be specified in the command list. 187.El 188.It 189- Events passed to 190.Nm 191after kernel handling: 192.Pp 193.Bl -tag -width USERSUSPENDREQ -compact -offset indent 194.It NORMRESUME 195.It CRITRESUME 196.It STANDBYRESUME 197.It POWERSTATECHANGE 198.It UPDATETIME 199.It CAPABILITIESCHANGE 200.El 201.Pp 202Other events will not be sent to 203.Nm . 204.El 205.Ed 206.It 207command line syntax 208.Bd -ragged -offset indent 209In the example above, the three lines beginning with 210.Ql exec 211are commands for the event. 212Each line should be terminated with a semicolon. 213The command list for the event should be enclosed by 214.Ql { 215and 216.Ql } . 217The 218.Nm 219utility uses 220.Pa /bin/sh 221for double-quotation enclosed command execution, just as with 222.Xr system 3 . 223Each command is executed in order until the end of 224the list is reached or a command finishes with a non-zero status code. 225The 226.Nm 227utility will report any failed command's status code via 228.Xr syslog 3 229and will then reject the request event posted by the APM BIOS. 230.Ed 231.It 232Built-in functions 233.Bd -ragged -offset indent 234You can also specify 235.Nm 236built-in functions instead of command lines. 237A built-in function name should be terminated with a semicolon, 238just as with a command line. 239The following built-in functions are currently supported: 240.Bl -item 241.It 242- reject: 243.Bd -ragged -offset indent 244Reject last request posted by APM BIOS. This can be used to reject 245a SUSPEND request when the LCD is closed and put the system in a 246STANDBY state instead. 247.Ed 248.El 249.Ed 250.El 251.Sh EXAMPLES 252Sample configuration commands include: 253.Bd -literal 254apm_event SUSPENDREQ { 255 exec "/etc/rc.suspend apm suspend"; 256} 257 258apm_event USERSUSPENDREQ { 259 exec "sync && sync && sync"; 260 exec "sleep 1"; 261 exec "apm -z"; 262} 263 264apm_event NORMRESUME { 265 exec "/etc/rc.resume apm suspend"; 266} 267 268apm_event STANDBYRESUME { 269 exec "/etc/rc.resume apm standby"; 270} 271 272# resume event configuration for serial mouse users by 273# reinitializing a moused(8) connected to a serial port. 274# 275#apm_event NORMRESUME { 276# exec "kill -HUP `cat /var/run/moused.pid`"; 277#} 278# 279# suspend request event configuration for ATA HDD users: 280# execute standby instead of suspend. 281# 282#apm_event SUSPENDREQ { 283# reject; 284# exec "sync && sync && sync"; 285# exec "sleep 1"; 286# exec "apm -Z"; 287#} 288.Ed 289.Sh FILES 290.Bl -tag -width /etc/apmd.conf -compact 291.It Pa /etc/apmd.conf 292.It Pa /dev/apmctl 293.It Pa /var/run/apmd.pid 294.El 295.Sh SEE ALSO 296.Xr apm 4 , 297.Xr apm 8 298.Sh AUTHORS 299.An Mitsuru IWASAKI Aq iwasaki@FreeBSD.org 300.An KOIE Hidetaka Aq koie@suri.co.jp 301.Pp 302Some contributions made by 303.An Warner Losh Aq imp@FreeBSD.org , 304.An Hiroshi Yamashita Aq bluemoon@msj.biglobe.ne.jp , 305.An Yoshihiko SARUMARU Aq mistral@imasy.or.jp , 306.An Norihiro Kumagai Aq kuma@nk.rim.or.jp , 307.An NAKAGAWA Yoshihisa Aq nakagawa@jp.FreeBSD.org , 308and 309.An Nick Hilliard Aq nick@foobar.org . 310.Sh HISTORY 311The 312.Nm 313utility appeared in 314.Fx 3.3 . 315