1 .\" This file and its contents are supplied under the terms of the
2 .\" Common Development and Distribution License ("CDDL"), version 1.0.
3 .\" You may only use this file in accordance with the terms of version
6 .\" A full copy of the text of the CDDL should have accompanied this
7 .\" source. A copy of the CDDL is also available via the Internet at
8 .\" http://www.illumos.org/license/CDDL.
11 .\" Copyright (c) 2016 by Delphix. All Rights Reserved.
18 .Nd executes ZFS channel programs
21 .Op Fl t Ar instruction-limit
22 .Op Fl m Ar memory-limit
25 .\".Op Ar optional arguments to channel program
27 The ZFS channel program interface allows ZFS administrative operations to be
28 run programmatically as a Lua script.
29 The entire script is executed atomically, with no other administrative
30 operations taking effect concurrently.
31 A library of ZFS calls is made available to channel program scripts.
32 Channel programs may only be run with root privileges.
34 A modified version of the Lua 5.2 interpreter is used to run channel program
36 The Lua 5.2 manual can be found at:
37 .Bd -centered -offset indent
38 .Lk http://www.lua.org/manual/5.2/
41 The channel program given by
45 and any attempts to access or modify other pools will cause an error.
48 .It Fl t Ar instruction-limit
49 Execution time limit, in number of Lua instructions to execute.
50 If a channel program executes more than the specified number of instructions,
51 it will be stopped and an error will be returned.
52 The default limit is 10 million instructions, and it can be set to a maximum of
53 100 million instructions.
54 .It Fl m Ar memory-limit
55 Memory limit, in bytes.
56 If a channel program attempts to allocate more memory than the given limit, it
57 will be stopped and an error returned.
58 The default memory limit is 10 MB, and can be set to a maximum of 100 MB.
61 All remaining argument strings will be passed directly to the Lua script as
66 A channel program can be invoked either from the command line, or via a library
68 .Fn lzc_channel_program .
70 Arguments passed to the channel program are converted to a Lua table.
71 If invoked from the command line, extra arguments to the Lua script will be
72 accessible as an array stored in the argument table with the key 'argv':
73 .Bd -literal -offset indent
76 -- argv == {1="arg1", 2="arg2", ...}
79 If invoked from the libZFS interface, an arbitrary argument list can be
80 passed to the channel program, which is accessible via the same
82 .Bd -literal -offset indent
84 -- args == {"foo"="bar", "baz"={...}, ...}
87 Note that because Lua arrays are 1-indexed, arrays passed to Lua from the
88 libZFS interface will have their indices incremented by 1.
92 in a C array passed to a channel program will be stored in
94 when accessed from Lua.
96 Lua return statements take the form:
97 .Bd -literal -offset indent
98 return ret0, ret1, ret2, ...
101 Return statements returning multiple values are permitted internally in a
102 channel program script, but attempting to return more than one value from the
103 top level of the channel program is not permitted and will throw an error.
104 However, tables containing multiple values can still be returned.
105 If invoked from the command line, a return statement:
106 .Bd -literal -offset indent
107 a = {foo="bar", baz=2}
111 Will be output formatted as:
112 .Bd -literal -offset indent
113 Channel program fully executed with return value:
119 If the channel program encounters a fatal error while running, a non-zero exit
120 status will be returned.
121 If more information about the error is available, a singleton list will be
122 returned detailing the error:
123 .Bd -literal -offset indent
124 error: "error string, including Lua stack trace"
127 If a fatal error is returned, the channel program may have not executed at all,
128 may have partially executed, or may have fully executed but failed to pass a
129 return value back to userland.
131 If the channel program exhausts an instruction or memory limit, a fatal error
132 will be generated and the program will be stopped, leaving the program partially
134 No attempt is made to reverse or undo any operations already performed.
135 Note that because both the instruction count and amount of memory used by a
136 channel program are deterministic when run against the same inputs and
137 filesystem state, as long as a channel program has run successfully once, you
138 can guarantee that it will finish successfully against a similar size system.
140 If a channel program attempts to return too large a value, the program will
141 fully execute but exit with a nonzero status code and no return value.
144 ZFS API functions do not generate Fatal Errors when correctly invoked, they
145 return an error code and the channel program continues executing.
148 section below for function-specific details on error return codes.
149 .Ss Lua to C Value Conversion
150 When invoking a channel program via the libZFS interface, it is necessary to
151 translate arguments and return values from Lua values to their C equivalents,
154 There is a correspondence between nvlist values in C and Lua tables.
155 A Lua table which is returned from the channel program will be recursively
156 converted to an nvlist, with table values converted to their natural
158 .Bd -literal -offset indent
161 boolean -> boolean_value
162 nil -> boolean (no value)
166 Likewise, table keys are replaced by string equivalents as follows:
167 .Bd -literal -offset indent
169 number -> signed decimal string ("%lld")
170 boolean -> "true" | "false"
173 Any collision of table key strings (for example, the string "true" and a
174 true boolean value) will cause a fatal error.
176 Lua numbers are represented internally as signed 64-bit integers.
177 .Sh LUA STANDARD LIBRARY
178 The following Lua built-in base library functions are available:
179 .Bd -literal -offset indent
181 collectgarbage rawget
195 built-in submodules are also available.
196 A complete list and documentation of these modules is available in the Lua
199 The following functions base library functions have been disabled and are
200 not available for use in channel programs:
201 .Bd -literal -offset indent
210 .Ss Function Arguments
211 Each API function takes a fixed set of required positional arguments and
212 optional keyword arguments.
213 For example, the destroy function takes a single positional string argument
214 (the name of the dataset to destroy) and an optional "defer" keyword boolean
216 When using parentheses to specify the arguments to a Lua function, only
217 positional arguments can be used:
218 .Bd -literal -offset indent
219 zfs.sync.destroy("rpool@snap")
222 To use keyword arguments, functions must be called with a single argument that
223 is a Lua table containing entries mapping integers to positional arguments and
224 strings to keyword arguments:
225 .Bd -literal -offset indent
226 zfs.sync.destroy({1="rpool@snap", defer=true})
229 The Lua language allows curly braces to be used in place of parenthesis as
230 syntactic sugar for this calling convention:
231 .Bd -literal -offset indent
232 zfs.sync.snapshot{"rpool@snap", defer=true}
234 .Ss Function Return Values
235 If an API function succeeds, it returns 0.
236 If it fails, it returns an error code and the channel program continues
238 API functions do not generate Fatal Errors except in the case of an
239 unrecoverable internal file system error.
241 In addition to returning an error code, some functions also return extra
242 details describing what caused the error.
243 This extra description is given as a second return value, and will always be a
244 Lua table, or Nil if no error details were returned.
245 Different keys will exist in the error details table depending on the function
247 Any such function may be called expecting a single return value:
248 .Bd -literal -offset indent
249 errno = zfs.sync.promote(dataset)
252 Or, the error details can be retrieved:
253 .Bd -literal -offset indent
254 errno, details = zfs.sync.promote(dataset)
255 if (errno == EEXIST) then
256 assert(details ~= Nil)
257 list_of_conflicting_snapshots = details
261 The following global aliases for API function error return codes are defined
262 for use in channel programs:
263 .Bd -literal -offset indent
264 EPERM ECHILD ENODEV ENOSPC
265 ENOENT EAGAIN ENOTDIR ESPIPE
266 ESRCH ENOMEM EISDIR EROFS
267 EINTR EACCES EINVAL EMLINK
268 EIO EFAULT ENFILE EPIPE
269 ENXIO ENOTBLK EMFILE EDOM
270 E2BIG EBUSY ENOTTY ERANGE
271 ENOEXEC EEXIST ETXTBSY EDQUOT
275 For detailed descriptions of the exact behavior of any zfs administrative
276 operations, see the main
280 .It Em zfs.debug(msg)
281 Record a debug message in the zfs_dbgmsg log.
282 A log of these messages can be printed via mdb's "::zfs_dbgmsg" command, or
283 can be monitored live by running:
284 .Bd -literal -offset indent
285 dtrace -n 'zfs-dbgmsg{trace(stringof(arg0))}'
289 .Bd -ragged -compact -offset "xxxx"
290 Debug message to be printed.
292 .It Em zfs.get_prop(dataset, property)
294 First, a string, number or table containing the property value for the given
296 Second, a string containing the source of the property (i.e. the name of the
297 dataset in which it was set or nil if it is readonly).
298 Throws a Lua error if the dataset is invalid or the property doesn't exist.
299 Note that Lua only supports int64 number types whereas ZFS number properties
301 This means very large values (like guid) may wrap around and appear negative.
304 .Bd -ragged -compact -offset "xxxx"
305 Filesystem or snapshot path to retrieve properties from.
309 .Bd -ragged -compact -offset "xxxx"
310 Name of property to retrieve.
311 All filesystem, snapshot and volume properties are supported except
312 for 'mounted' and 'iscsioptions.'
313 Also supports the 'written@snap' and 'written#bookmark' properties and
314 the '<user|group><quota|used>@id' properties, though the id must be in numeric
319 .It Sy zfs.sync submodule
320 The sync submodule contains functions that modify the on-disk state.
321 They are executed in "syncing context".
323 The available sync submodule functions are as follows:
325 .It Em zfs.sync.destroy(dataset, [defer=true|false])
326 Destroy the given dataset.
327 Returns 0 on successful destroy, or a nonzero error code if the dataset could
328 not be destroyed (for example, if the dataset has any active children or
332 .Bd -ragged -compact -offset "xxxx"
333 Filesystem or snapshot to be destroyed.
336 [optional] defer (boolean)
337 .Bd -ragged -compact -offset "xxxx"
338 Valid only for destroying snapshots.
339 If set to true, and the snapshot has holds or clones, allows the snapshot to be
340 marked for deferred deletion rather than failing.
342 .It Em zfs.sync.promote(dataset)
343 Promote the given clone to a filesystem.
344 Returns 0 on successful promotion, or a nonzero error code otherwise.
345 If EEXIST is returned, the second return value will be an array of the clone's
346 snapshots whose names collide with snapshots of the parent filesystem.
349 .Bd -ragged -compact -offset "xxxx"
350 Clone to be promoted.
353 .It Sy zfs.check submodule
354 For each function in the zfs.sync submodule, there is a corresponding zfs.check
355 function which performs a "dry run" of the same operation.
356 Each takes the same arguments as its zfs.sync counterpart and returns 0 if the
357 operation would succeed, or a non-zero error code if it would fail, along with
358 any other error details.
359 That is, each has the same behavior as the corresponding sync function except
360 for actually executing the requested change.
362 .Em zfs.check.destroy("fs")
364 .Em zfs.sync.destroy("fs")
365 would successfully destroy the dataset.
367 The available zfs.check functions are:
369 .It Em zfs.check.destroy(dataset, [defer=true|false])
370 .It Em zfs.check.promote(dataset)
372 .It Sy zfs.list submodule
373 The zfs.list submodule provides functions for iterating over datasets and
375 Rather than returning tables, these functions act as Lua iterators, and are
376 generally used as follows:
377 .Bd -literal -offset indent
378 for child in zfs.list.children("rpool") do
383 The available zfs.list functions are:
385 .It Em zfs.list.clones(snapshot)
386 Iterate through all clones of the given snapshot.
389 .Bd -ragged -compact -offset "xxxx"
390 Must be a valid snapshot path in the current pool.
392 .It Em zfs.list.snapshots(dataset)
393 Iterate through all snapshots of the given dataset.
394 Each snapshot is returned as a string containing the full dataset name, e.g.
398 .Bd -ragged -compact -offset "xxxx"
399 Must be a valid filesystem or volume.
401 .It Em zfs.list.children(dataset)
402 Iterate through all direct children of the given dataset.
403 Each child is returned as a string containing the full dataset name, e.g.
407 .Bd -ragged -compact -offset "xxxx"
408 Must be a valid filesystem or volume.
410 .It Em zfs.list.properties(dataset)
411 Iterate through all user properties for the given dataset.
414 .Bd -ragged -compact -offset "xxxx"
415 Must be a valid filesystem, snapshot, or volume.
417 .It Em zfs.list.system_properties(dataset)
418 Returns an array of strings, the names of the valid system (non-user defined)
419 properties for the given dataset.
420 Throws a Lua error if the dataset is invalid.
423 .Bd -ragged -compact -offset "xxxx"
424 Must be a valid filesystem, snapshot or volume.
430 The following channel program recursively destroys a filesystem and all its
431 snapshots and children in a naive manner.
432 Note that this does not involve any error handling or reporting.
433 .Bd -literal -offset indent
434 function destroy_recursive(root)
435 for child in zfs.list.children(root) do
436 destroy_recursive(child)
438 for snap in zfs.list.snapshots(root) do
439 zfs.sync.destroy(snap)
441 zfs.sync.destroy(root)
443 destroy_recursive("pool/somefs")
446 A more verbose and robust version of the same channel program, which
447 properly detects and reports errors, and also takes the dataset to destroy
448 as a command line argument, would be as follows:
449 .Bd -literal -offset indent
453 function destroy_recursive(root)
454 for child in zfs.list.children(root) do
455 destroy_recursive(child)
457 for snap in zfs.list.snapshots(root) do
458 err = zfs.sync.destroy(snap)
462 succeeded[snap] = err
465 err = zfs.sync.destroy(root)
469 succeeded[root] = err
476 destroy_recursive(argv[1])
479 results["succeeded"] = succeeded
480 results["failed"] = failed
484 The following function performs a forced promote operation by attempting to
485 promote the given clone and destroying any conflicting snapshots.
486 .Bd -literal -offset indent
487 function force_promote(ds)
488 errno, details = zfs.check.promote(ds)
489 if (errno == EEXIST) then
490 assert(details ~= Nil)
491 for i, snap in ipairs(details) do
492 zfs.sync.destroy(ds .. "@" .. snap)
494 elseif (errno ~= 0) then
497 return zfs.sync.promote(ds)