4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
27 #include <sys/sunddi.h>
28 #include <sys/sunndi.h>
29 #include <sys/ddi_impldefs.h>
30 #include <sys/ddi_implfuncs.h>
32 #include <sys/reboot.h>
33 #include <sys/sysmacros.h>
34 #include <sys/console.h>
35 #include <sys/devcache.h>
38 * The nvpair name in the I/O retire specific sub-nvlist
40 #define RIO_STORE_VERSION_STR "rio-store-version"
41 #define RIO_STORE_MAGIC_STR "rio-store-magic"
42 #define RIO_STORE_FLAGS_STR "rio-store-flags"
44 #define RIO_STORE_VERSION_1 1
45 #define RIO_STORE_VERSION RIO_STORE_VERSION_1
48 * decoded retire list element
51 typedef enum rio_store_flags
{
52 RIO_STORE_F_INVAL
= 0,
53 RIO_STORE_F_RETIRED
= 1,
54 RIO_STORE_F_BYPASS
= 2
57 typedef struct rio_store
{
59 rio_store_flags_t rst_flags
;
63 #define RIO_STORE_MAGIC 0x601fcace /* retire */
65 static int rio_store_decode(nvf_handle_t nvfh
, nvlist_t
*line_nvl
, char *name
);
66 static int rio_store_encode(nvf_handle_t nvfh
, nvlist_t
**ret_nvl
);
67 static void retire_list_free(nvf_handle_t nvfh
);
71 * Retire I/O persistent store registration info
73 static nvf_ops_t rio_store_ops
= {
74 "/etc/devices/retire_store", /* path to store */
75 rio_store_decode
, /* decode nvlist into retire_list */
76 rio_store_encode
, /* encode retire_list into nvlist */
77 retire_list_free
, /* free retire_list */
78 NULL
/* write complete callback */
81 static nvf_handle_t rio_store_handle
;
82 static char store_path
[MAXPATHLEN
];
83 static int store_debug
= 0;
84 static int bypass_msg
= 0;
85 static int retire_msg
= 0;
87 #define STORE_DEBUG 0x0001
88 #define STORE_TRACE 0x0002
90 #define STORE_DBG(args) if (store_debug & STORE_DEBUG) cmn_err args
91 #define STORE_TRC(args) if (store_debug & STORE_TRACE) cmn_err args
94 * We don't use the simple read disable offered by the
95 * caching framework (see devcache.c) as it will not
96 * have the desired effect of bypassing the persistent
97 * store. A simple read disable will
99 * 1. cause any additions to the cache to destroy the
100 * existing on-disk cache
102 * 2. prevent deletions from the existing on-disk
103 * cache which is needed for recovery from bad
106 * Use the following tunable instead
109 int ddi_retire_store_bypass
= 0;
114 * Initialize retire store data structures
117 retire_store_init(void)
119 if (boothowto
& RB_ASKNAME
) {
121 printf("Retire store [%s] (/dev/null to bypass): ",
122 rio_store_ops
.nvfr_cache_path
);
123 console_gets(store_path
, sizeof (store_path
) - 1);
124 store_path
[sizeof (store_path
) - 1] = '\0';
126 if (strcmp(store_path
, "/dev/null") == 0) {
127 ddi_retire_store_bypass
= 1;
128 } else if (store_path
[0] != '\0') {
129 if (store_path
[0] != '/') {
130 printf("Invalid store path: %s. Using default"
133 rio_store_ops
.nvfr_cache_path
= store_path
;
138 rio_store_handle
= nvf_register_file(&rio_store_ops
);
140 list_create(nvf_list(rio_store_handle
), sizeof (rio_store_t
),
141 offsetof(rio_store_t
, rst_next
));
145 * Read and populate the in-core retire store
148 retire_store_read(void)
150 rw_enter(nvf_lock(rio_store_handle
), RW_WRITER
);
151 ASSERT(list_head(nvf_list(rio_store_handle
)) == NULL
);
152 (void) nvf_read_file(rio_store_handle
);
153 rw_exit(nvf_lock(rio_store_handle
));
154 STORE_DBG((CE_NOTE
, "Read on-disk retire store"));
158 rio_store_free(rio_store_t
*rsp
)
160 int flag_mask
= RIO_STORE_F_RETIRED
|RIO_STORE_F_BYPASS
;
163 ASSERT(rsp
->rst_devpath
);
164 ASSERT(rsp
->rst_flags
& RIO_STORE_F_RETIRED
);
165 ASSERT(!(rsp
->rst_flags
& ~flag_mask
));
167 STORE_TRC((CE_NOTE
, "store: freed path: %s", rsp
->rst_devpath
));
169 kmem_free(rsp
->rst_devpath
, strlen(rsp
->rst_devpath
) + 1);
170 kmem_free(rsp
, sizeof (*rsp
));
174 retire_list_free(nvf_handle_t nvfh
)
179 ASSERT(nvfh
== rio_store_handle
);
180 ASSERT(RW_WRITE_HELD(nvf_lock(nvfh
)));
182 listp
= nvf_list(nvfh
);
183 while (rsp
= list_head(listp
)) {
184 list_remove(listp
, rsp
);
188 STORE_DBG((CE_NOTE
, "store: freed retire list"));
192 rio_store_decode(nvf_handle_t nvfh
, nvlist_t
*line_nvl
, char *name
)
200 ASSERT(nvfh
== rio_store_handle
);
201 ASSERT(RW_WRITE_HELD(nvf_lock(nvfh
)));
205 rval
= nvlist_lookup_int32(line_nvl
, RIO_STORE_VERSION_STR
, &version
);
206 if (rval
!= 0 || version
!= RIO_STORE_VERSION
) {
211 rval
= nvlist_lookup_int32(line_nvl
, RIO_STORE_MAGIC_STR
, &magic
);
212 if (rval
!= 0 || magic
!= RIO_STORE_MAGIC
) {
217 rval
= nvlist_lookup_int32(line_nvl
, RIO_STORE_FLAGS_STR
, &flags
);
218 if (rval
!= 0 || flags
!= RIO_STORE_F_RETIRED
) {
222 if (ddi_retire_store_bypass
) {
223 flags
|= RIO_STORE_F_BYPASS
;
227 "Bypassing retire store /etc/devices/retire_store");
231 rsp
= kmem_zalloc(sizeof (rio_store_t
), KM_SLEEP
);
232 rsp
->rst_devpath
= i_ddi_strdup(name
, KM_SLEEP
);
233 rsp
->rst_flags
= flags
;
234 list_insert_tail(nvf_list(nvfh
), rsp
);
236 STORE_TRC((CE_NOTE
, "store: added to retire list: %s", name
));
239 cmn_err(CE_NOTE
, "One or more I/O devices have been retired");
246 rio_store_encode(nvf_handle_t nvfh
, nvlist_t
**ret_nvl
)
254 ASSERT(nvfh
== rio_store_handle
);
255 ASSERT(RW_WRITE_HELD(nvf_lock(nvfh
)));
260 rval
= nvlist_alloc(&nvl
, NV_UNIQUE_NAME
, KM_SLEEP
);
262 return (DDI_FAILURE
);
265 listp
= nvf_list(nvfh
);
266 for (rsp
= list_head(listp
); rsp
; rsp
= list_next(listp
, rsp
)) {
267 int flag_mask
= RIO_STORE_F_RETIRED
|RIO_STORE_F_BYPASS
;
269 ASSERT(rsp
->rst_devpath
);
270 ASSERT(!(rsp
->rst_flags
& ~flag_mask
));
273 rval
= nvlist_alloc(&line_nvl
, NV_UNIQUE_NAME
, KM_SLEEP
);
279 rval
= nvlist_add_int32(line_nvl
, RIO_STORE_VERSION_STR
,
284 rval
= nvlist_add_int32(line_nvl
, RIO_STORE_MAGIC_STR
,
290 /* don't save the bypass flag */
291 flags
= RIO_STORE_F_RETIRED
;
292 rval
= nvlist_add_int32(line_nvl
, RIO_STORE_FLAGS_STR
,
298 rval
= nvlist_add_nvlist(nvl
, rsp
->rst_devpath
, line_nvl
);
302 nvlist_free(line_nvl
);
307 STORE_DBG((CE_NOTE
, "packed retire list into nvlist"));
308 return (DDI_SUCCESS
);
311 nvlist_free(line_nvl
);
314 return (DDI_FAILURE
);
318 e_ddi_retire_persist(char *devpath
)
321 rio_store_t
*new_rsp
;
325 STORE_DBG((CE_NOTE
, "e_ddi_retire_persist: entered: %s", devpath
));
327 new_rsp
= kmem_zalloc(sizeof (*new_rsp
), KM_SLEEP
);
328 new_rsp
->rst_devpath
= new_path
= i_ddi_strdup(devpath
, KM_SLEEP
);
329 new_rsp
->rst_flags
= RIO_STORE_F_RETIRED
;
331 rw_enter(nvf_lock(rio_store_handle
), RW_WRITER
);
333 listp
= nvf_list(rio_store_handle
);
334 for (rsp
= list_head(listp
); rsp
; rsp
= list_next(listp
, rsp
)) {
335 int flag_mask
= RIO_STORE_F_RETIRED
|RIO_STORE_F_BYPASS
;
336 ASSERT(!(rsp
->rst_flags
& ~flag_mask
));
339 if (strcmp(devpath
, rsp
->rst_devpath
) == 0) {
340 /* explicit retire, clear bypass flag (if any) */
341 rsp
->rst_flags
&= ~RIO_STORE_F_BYPASS
;
342 ASSERT(rsp
->rst_flags
== RIO_STORE_F_RETIRED
);
343 rw_exit(nvf_lock(rio_store_handle
));
344 kmem_free(new_path
, strlen(new_path
) + 1);
345 kmem_free(new_rsp
, sizeof (*new_rsp
));
346 STORE_DBG((CE_NOTE
, "store: already in. Clear bypass "
354 list_insert_tail(listp
, new_rsp
);
356 nvf_mark_dirty(rio_store_handle
);
358 rw_exit(nvf_lock(rio_store_handle
));
362 STORE_DBG((CE_NOTE
, "store: New, added to list, dirty: %s", devpath
));
368 e_ddi_retire_unpersist(char *devpath
)
375 STORE_DBG((CE_NOTE
, "e_ddi_retire_unpersist: entered: %s", devpath
));
377 rw_enter(nvf_lock(rio_store_handle
), RW_WRITER
);
379 listp
= nvf_list(rio_store_handle
);
380 for (rsp
= list_head(listp
); rsp
; rsp
= next
) {
381 next
= list_next(listp
, rsp
);
382 if (strcmp(devpath
, rsp
->rst_devpath
) != 0)
385 list_remove(listp
, rsp
);
388 STORE_DBG((CE_NOTE
, "store: found in list. Freed: %s",
391 nvf_mark_dirty(rio_store_handle
);
395 rw_exit(nvf_lock(rio_store_handle
));
404 e_ddi_device_retired(char *devpath
)
413 rw_enter(nvf_lock(rio_store_handle
), RW_READER
);
415 listp
= nvf_list(rio_store_handle
);
416 for (rsp
= list_head(listp
); rsp
; rsp
= list_next(listp
, rsp
)) {
417 int flag_mask
= RIO_STORE_F_RETIRED
|RIO_STORE_F_BYPASS
;
418 ASSERT(!(rsp
->rst_flags
& ~flag_mask
));
421 * If the "bypass" flag is set, then the device
422 * is *not* retired for the current boot of the
423 * system. It indicates that the retire store
424 * was read but the devices in the retire store
425 * were not retired i.e. effectively the store
426 * was bypassed. For why we bother to even read
427 * the store when we bypass it, see the comments
428 * for the tunable ddi_retire_store_bypass.
430 if (rsp
->rst_flags
& RIO_STORE_F_BYPASS
) {
431 STORE_TRC((CE_NOTE
, "store: found & bypassed: %s",
437 * device is retired, if it or a parent exists
438 * in the in-core list
440 len
= strlen(rsp
->rst_devpath
);
441 if (strncmp(devpath
, rsp
->rst_devpath
, len
) != 0)
443 if (devpath
[len
] == '\0' || devpath
[len
] == '/') {
444 /* exact match or a child */
446 STORE_TRC((CE_NOTE
, "store: found & !bypassed: %s",
451 rw_exit(nvf_lock(rio_store_handle
));