Improve too large physical ashift handling
[zfs.git] / man / man8 / zed.8.in
blob00f23edec3755240de6fac5aaf9511981a7837aa
1 .\"
2 .\" This file is part of the ZFS Event Daemon (ZED).
3 .\" Developed at Lawrence Livermore National Laboratory (LLNL-CODE-403049).
4 .\" Copyright (C) 2013-2014 Lawrence Livermore National Security, LLC.
5 .\" Refer to the OpenZFS git commit log for authoritative copyright attribution.
6 .\"
7 .\" The contents of this file are subject to the terms of the
8 .\" Common Development and Distribution License Version 1.0 (CDDL-1.0).
9 .\" You can obtain a copy of the license from the top-level file
10 .\" "OPENSOLARIS.LICENSE" or at <http://opensource.org/licenses/CDDL-1.0>.
11 .\" You may not use this file except in compliance with the license.
12 .\"
13 .\" Developed at Lawrence Livermore National Laboratory (LLNL-CODE-403049)
14 .\"
15 .Dd May 26, 2021
16 .Dt ZED 8
17 .Os
19 .Sh NAME
20 .Nm ZED
21 .Nd ZFS Event Daemon
22 .Sh SYNOPSIS
23 .Nm
24 .Op Fl fFhILMvVZ
25 .Op Fl d Ar zedletdir
26 .Op Fl p Ar pidfile
27 .Op Fl P Ar path
28 .Op Fl s Ar statefile
29 .Op Fl j Ar jobs
30 .Op Fl b Ar buflen
32 .Sh DESCRIPTION
33 The
34 .Nm
35 (ZFS Event Daemon) monitors events generated by the ZFS kernel
36 module.
37 When a zevent (ZFS Event) is posted, the
38 .Nm
39 will run any ZEDLETs (ZFS Event Daemon Linkage for Executable Tasks)
40 that have been enabled for the corresponding zevent class.
42 .Sh OPTIONS
43 .Bl -tag -width "-h"
44 .It Fl h
45 Display a summary of the command-line options.
46 .It Fl L
47 Display license information.
48 .It Fl V
49 Display version information.
50 .It Fl v
51 Be verbose.
52 .It Fl f
53 Force the daemon to run if at all possible, disabling security checks and
54 throwing caution to the wind.
55 Not recommended for use in production.
56 .It Fl F
57 Don't daemonise: remain attached to the controlling terminal,
58 log to the standard I/O streams.
59 .It Fl M
60 Lock all current and future pages in the virtual memory address space.
61 This may help the daemon remain responsive when the system is under heavy
62 memory pressure.
63 .It Fl I
64 Request that the daemon idle rather than exit when the kernel modules are not loaded.
65 Processing of events will start, or resume, when the kernel modules are (re)loaded.
66 Under Linux the kernel modules cannot be unloaded while the daemon is running.
67 .It Fl Z
68 Zero the daemon's state, thereby allowing zevents still within the kernel
69 to be reprocessed.
70 .It Fl d Ar zedletdir
71 Read the enabled ZEDLETs from the specified directory.
72 .It Fl p Ar pidfile
73 Write the daemon's process ID to the specified file.
74 .It Fl P Ar path
75 Custom
76 .Ev $PATH
77 for zedlets to use.
78 Normally zedlets run in a locked-down environment, with hardcoded paths to the ZFS commands
79 .Pq Ev $ZFS , $ZPOOL , $ZED , … ,
80 and a hard-coded
81 .Ev $PATH .
82 This is done for security reasons.
83 However, the ZFS test suite uses a custom PATH for its ZFS commands, and passes it to
84 .Nm
85 with
86 .Fl P .
87 In short,
88 .Fl P
89 is only to be used by the ZFS test suite; never use
90 it in production!
91 .It Fl s Ar statefile
92 Write the daemon's state to the specified file.
93 .It Fl j Ar jobs
94 Allow at most
95 .Ar jobs
96 ZEDLETs to run concurrently,
97 delaying execution of new ones until they finish.
98 Defaults to
99 .Sy 16 .
100 .It Fl b Ar buflen
101 Cap kernel event buffer growth to
102 .Ar buflen
103 entries.
104 This buffer is grown when the daemon misses an event, but results in
105 unreclaimable memory use in the kernel.
106 A value of
107 .Sy 0
108 removes the cap.
109 Defaults to
110 .Sy 1048576 .
112 .Sh ZEVENTS
113 A zevent is comprised of a list of nvpairs (name/value pairs).
114 Each zevent contains an EID (Event IDentifier) that uniquely identifies it throughout
115 the lifetime of the loaded ZFS kernel module; this EID is a monotonically
116 increasing integer that resets to 1 each time the kernel module is loaded.
117 Each zevent also contains a class string that identifies the type of event.
118 For brevity, a subclass string is defined that omits the leading components
119 of the class string.
120 Additional nvpairs exist to provide event details.
122 The kernel maintains a list of recent zevents that can be viewed (along with
123 their associated lists of nvpairs) using the
124 .Nm zpool Cm events Fl v
125 command.
127 .Sh CONFIGURATION
128 ZEDLETs to be invoked in response to zevents are located in the
129 .Em enabled-zedlets
130 directory
131 .Pq Ar zedletdir .
132 These can be symlinked or copied from the
133 .Em installed-zedlets
134 directory; symlinks allow for automatic updates
135 from the installed ZEDLETs, whereas copies preserve local modifications.
136 As a security measure, since ownership change is a privileged operation,
137 ZEDLETs must be owned by root.
138 They must have execute permissions for the user,
139 but they must not have write permissions for group or other.
140 Dotfiles are ignored.
142 ZEDLETs are named after the zevent class for which they should be invoked.
143 In particular, a ZEDLET will be invoked for a given zevent if either its
144 class or subclass string is a prefix of its filename (and is followed by
145 a non-alphabetic character).
146 As a special case, the prefix
147 .Sy all
148 matches all zevents.
149 Multiple ZEDLETs may be invoked for a given zevent.
151 .Sh ZEDLETS
152 ZEDLETs are executables invoked by the ZED in response to a given zevent.
153 They should be written under the presumption they can be invoked concurrently,
154 and they should use appropriate locking to access any shared resources.
155 Common variables used by ZEDLETs can be stored in the default rc file which
156 is sourced by scripts; these variables should be prefixed with
157 .Sy ZED_ .
159 The zevent nvpairs are passed to ZEDLETs as environment variables.
160 Each nvpair name is converted to an environment variable in the following
161 manner:
162 .Bl -enum -compact
164 it is prefixed with
165 .Sy ZEVENT_ ,
167 it is converted to uppercase, and
169 each non-alphanumeric character is converted to an underscore.
172 Some additional environment variables have been defined to present certain
173 nvpair values in a more convenient form.
174 An incomplete list of zevent environment variables is as follows:
175 .Bl -tag -compact -width "ZEVENT_TIME_STRING"
176 .It Sy ZEVENT_EID
177 The Event IDentifier.
178 .It Sy ZEVENT_CLASS
179 The zevent class string.
180 .It Sy ZEVENT_SUBCLASS
181 The zevent subclass string.
182 .It Sy ZEVENT_TIME
183 The time at which the zevent was posted as
184 .Dq Em seconds nanoseconds
185 since the Epoch.
186 .It Sy ZEVENT_TIME_SECS
188 .Em seconds
189 component of
190 .Sy ZEVENT_TIME .
191 .It Sy ZEVENT_TIME_NSECS
193 .Em nanoseconds
194 component of
195 .Sy ZEVENT_TIME .
196 .It Sy ZEVENT_TIME_STRING
197 An almost-RFC3339-compliant string for
198 .Sy ZEVENT_TIME .
201 Additionally, the following ZED & ZFS variables are defined:
202 .Bl -tag -compact -width "ZEVENT_TIME_STRING"
203 .It Sy ZED_PID
204 The daemon's process ID.
205 .It Sy ZED_ZEDLET_DIR
206 The daemon's current
207 .Em enabled-zedlets
208 directory.
209 .It Sy ZFS_ALIAS
210 The alias
211 .Pq Dq Em name Ns - Ns Em version Ns - Ns Em release
212 string of the ZFS distribution the daemon is part of.
213 .It Sy ZFS_VERSION
214 The ZFS version the daemon is part of.
215 .It Sy ZFS_RELEASE
216 The ZFS release the daemon is part of.
219 ZEDLETs may need to call other ZFS commands.
220 The installation paths of the following executables are defined as environment variables:
221 .Sy ZDB ,
222 .Sy ZED ,
223 .Sy ZFS ,
224 .Sy ZINJECT ,
226 .Sy ZPOOL .
227 These variables may be overridden in the rc file.
229 .Sh FILES
230 .Bl -tag -width "-c"
231 .It Pa @sysconfdir@/zfs/zed.d
232 The default directory for enabled ZEDLETs.
233 .It Pa @sysconfdir@/zfs/zed.d/zed.rc
234 The default rc file for common variables used by ZEDLETs.
235 .It Pa @zfsexecdir@/zed.d
236 The default directory for installed ZEDLETs.
237 .It Pa @runstatedir@/zed.pid
238 The default file containing the daemon's process ID.
239 .It Pa @runstatedir@/zed.state
240 The default file containing the daemon's state.
243 .Sh SIGNALS
244 .Bl -tag -width "-c"
245 .It Sy SIGHUP
246 Reconfigure the daemon and rescan the directory for enabled ZEDLETs.
247 .It Sy SIGTERM , SIGINT
248 Terminate the daemon.
251 .Sh SEE ALSO
252 .Xr zfs 8 ,
253 .Xr zpool 8 ,
254 .Xr zpool-events 8
256 .Sh NOTES
259 requires root privileges.
261 Do not taunt the
262 .Nm .
264 .Sh BUGS
265 ZEDLETs are unable to return state/status information to the kernel.
267 Internationalization support via gettext has not been added.