xref: /freebsd/sys/contrib/openzfs/include/sys/sysevent/eventdefs.h (revision 61145dc2b94f12f6a47344fb9aac702321880e43)
1 // SPDX-License-Identifier: CDDL-1.0
2 /*
3  * CDDL HEADER START
4  *
5  * The contents of this file are subject to the terms of the
6  * Common Development and Distribution License (the "License").
7  * You may not use this file except in compliance with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or https://opensource.org/licenses/CDDL-1.0.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
25  * Copyright 2017 Joyent, Inc.
26  */
27 
28 #ifndef	_SYS_SYSEVENT_EVENTDEFS_H
29 #define	_SYS_SYSEVENT_EVENTDEFS_H
30 
31 #ifdef	__cplusplus
32 extern "C" {
33 #endif
34 
35 /*
36  * eventdefs.h contains public definitions for sysevent types (classes
37  * and subclasses).  All additions/removal/changes are subject
38  * to PSARC approval.
39  */
40 
41 /* Sysevent Class definitions */
42 #define	EC_NONE		"EC_none"
43 #define	EC_PRIV		"EC_priv"
44 #define	EC_PLATFORM	"EC_platform"	/* events private to platform */
45 #define	EC_DR		"EC_dr"	/* Dynamic reconfiguration event class */
46 #define	EC_ENV		"EC_env"	/* Environmental monitor event class */
47 #define	EC_DOMAIN	"EC_domain"	/* Domain event class */
48 #define	EC_AP_DRIVER	"EC_ap_driver"	/* Alternate Pathing event class */
49 #define	EC_IPMP		"EC_ipmp"	/* IP Multipathing event class */
50 #define	EC_DEV_ADD	"EC_dev_add"	/* device add event class */
51 #define	EC_DEV_REMOVE	"EC_dev_remove"	/* device remove event class */
52 #define	EC_DEV_BRANCH	"EC_dev_branch"	/* device tree branch event class */
53 #define	EC_DEV_STATUS	"EC_dev_status"	/* device status event class */
54 #define	EC_FM		"EC_fm"		/* FMA error report event */
55 #define	EC_ZFS		"EC_zfs"	/* ZFS event */
56 #define	EC_DATALINK	"EC_datalink"	/* datalink event */
57 #define	EC_VRRP		"EC_vrrp"	/* VRRP event */
58 
59 /*
60  * EC_DEV_ADD and EC_DEV_REMOVE subclass definitions - supporting attributes
61  * (name/value pairs) are found in sys/sysevent/dev.h
62  */
63 #define	ESC_DISK	"disk"		/* disk device */
64 #define	ESC_NETWORK	"network"	/* network interface */
65 #define	ESC_PRINTER	"printer"	/* printer device */
66 #define	ESC_LOFI	"lofi"		/* lofi device */
67 
68 /*
69  * EC_DEV_BRANCH subclass definitions - supporting attributes (name/value pairs)
70  * are found in sys/sysevent/dev.h
71  */
72 
73 /* device tree branch added */
74 #define	ESC_DEV_BRANCH_ADD	"dev_branch_add"
75 
76 /* device tree branch removed */
77 #define	ESC_DEV_BRANCH_REMOVE	"dev_branch_remove"
78 
79 /*
80  * EC_DEV_STATUS subclass definitions
81  *
82  * device capacity dynamically changed
83  */
84 #define	ESC_DEV_DLE		"dev_dle"
85 
86 /* LUN has received an eject request from the user */
87 #define	ESC_DEV_EJECT_REQUEST	"dev_eject_request"
88 
89 /* FMA Fault and Error event protocol subclass */
90 #define	ESC_FM_ERROR		"error"
91 #define	ESC_FM_ERROR_REPLAY	"error_replay"
92 
93 /*
94  * ZFS subclass definitions.  supporting attributes (name/value paris) are found
95  * in sys/fs/zfs.h
96  */
97 #define	ESC_ZFS_RESILVER_START		"resilver_start"
98 #define	ESC_ZFS_RESILVER_FINISH		"resilver_finish"
99 #define	ESC_ZFS_VDEV_REMOVE		"vdev_remove"
100 #define	ESC_ZFS_VDEV_REMOVE_AUX		"vdev_remove_aux"
101 #define	ESC_ZFS_VDEV_REMOVE_DEV		"vdev_remove_dev"
102 #define	ESC_ZFS_POOL_CREATE		"pool_create"
103 #define	ESC_ZFS_POOL_DESTROY		"pool_destroy"
104 #define	ESC_ZFS_POOL_IMPORT		"pool_import"
105 #define	ESC_ZFS_POOL_EXPORT		"pool_export"
106 #define	ESC_ZFS_VDEV_ADD		"vdev_add"
107 #define	ESC_ZFS_VDEV_ATTACH		"vdev_attach"
108 #define	ESC_ZFS_VDEV_CLEAR		"vdev_clear"
109 #define	ESC_ZFS_VDEV_CHECK		"vdev_check"
110 #define	ESC_ZFS_VDEV_ONLINE		"vdev_online"
111 #define	ESC_ZFS_CONFIG_SYNC		"config_sync"
112 #define	ESC_ZFS_SCRUB_START		"scrub_start"
113 #define	ESC_ZFS_SCRUB_FINISH		"scrub_finish"
114 #define	ESC_ZFS_SCRUB_ABORT		"scrub_abort"
115 #define	ESC_ZFS_SCRUB_RESUME		"scrub_resume"
116 #define	ESC_ZFS_SCRUB_PAUSED		"scrub_paused"
117 #define	ESC_ZFS_VDEV_SPARE		"vdev_spare"
118 #define	ESC_ZFS_VDEV_AUTOEXPAND		"vdev_autoexpand"
119 #define	ESC_ZFS_BOOTFS_VDEV_ATTACH	"bootfs_vdev_attach"
120 #define	ESC_ZFS_POOL_REGUID		"pool_reguid"
121 #define	ESC_ZFS_HISTORY_EVENT		"history_event"
122 #define	ESC_ZFS_TRIM_START		"trim_start"
123 #define	ESC_ZFS_TRIM_FINISH		"trim_finish"
124 #define	ESC_ZFS_TRIM_CANCEL		"trim_cancel"
125 #define	ESC_ZFS_TRIM_RESUME		"trim_resume"
126 #define	ESC_ZFS_TRIM_SUSPEND		"trim_suspend"
127 #define	ESC_ZFS_ERRORSCRUB_START	"errorscrub_start"
128 #define	ESC_ZFS_ERRORSCRUB_FINISH	"errorscrub_finish"
129 #define	ESC_ZFS_ERRORSCRUB_ABORT	"errorscrub_abort"
130 #define	ESC_ZFS_ERRORSCRUB_RESUME	"errorscrub_resume"
131 #define	ESC_ZFS_ERRORSCRUB_PAUSED	"errorscrub_paused"
132 
133 /*
134  * datalink subclass definitions.
135  */
136 #define	ESC_DATALINK_PHYS_ADD	"datalink_phys_add"	/* new physical link */
137 
138 #ifdef	__cplusplus
139 }
140 #endif
141 
142 #endif /* _SYS_SYSEVENT_EVENTDEFS_H */
143