1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include "cfga_fp.h"
static fpcfga_ret_t fp_rcm_init(char *, cfga_flags_t, char **, uint_t *,
char **rsrc_fixed);
static int fp_rcm_process_node(di_node_t, void *);
static fpcfga_ret_t fp_rcm_info_table(rcm_info_t *, char **);
static char *chop_minor(char *);
#define MAX_FORMAT 80
#define DEVICES "/devices"
typedef struct {
char *bus_path;
char *filter;
char **errstring;
fpcfga_ret_t ret;
cfga_flags_t flags;
fpcfga_ret_t (*func)(char *, char *, char **, cfga_flags_t);
} walkargs_t;
static fpcfga_ret_t fp_rcm_info_table(rcm_info_t *, char **);
static int fp_rcm_process_node(di_node_t, void *);
static fpcfga_ret_t fp_rcm_init(char *, cfga_flags_t, char **, uint_t *,
char **);
static char *chop_minor(char *);
static rcm_handle_t *rcm_handle = NULL;
static mutex_t rcm_handle_lock;
/*
* fp_rcm_offline()
*
* Offline FP resource consumers.
*/
fpcfga_ret_t
fp_rcm_offline(char *rsrc, char **errstring, cfga_flags_t flags)
{
int rret;
uint_t rflags = 0;
char *rsrc_fixed;
rcm_info_t *rinfo = NULL;
fpcfga_ret_t ret = FPCFGA_OK;
if ((ret = fp_rcm_init(rsrc, flags, errstring, &rflags, &rsrc_fixed))
!= FPCFGA_OK)
return (ret);
if ((rret = rcm_request_offline(rcm_handle, rsrc_fixed, rflags, &rinfo))
!= RCM_SUCCESS) {
cfga_err(errstring, 0, ERRARG_RCM_OFFLINE, rsrc_fixed, 0);
if (rinfo) {
(void) fp_rcm_info_table(rinfo, errstring);
rcm_free_info(rinfo);
}
if (rret == RCM_FAILURE)
(void) fp_rcm_online(rsrc, errstring, flags);
ret = FPCFGA_BUSY;
}
S_FREE(rsrc_fixed);
return (ret);
}
/*
* fp_rcm_online()
*
* Online FP resource consumers that were previously offlined.
*/
fpcfga_ret_t
fp_rcm_online(char *rsrc, char **errstring, cfga_flags_t flags)
{
char *rsrc_fixed;
rcm_info_t *rinfo = NULL;
fpcfga_ret_t ret = FPCFGA_OK;
if ((ret = fp_rcm_init(rsrc, flags, errstring, NULL, &rsrc_fixed))
!= FPCFGA_OK)
return (ret);
if (rcm_notify_online(rcm_handle, rsrc_fixed, 0, &rinfo)
!= RCM_SUCCESS && rinfo != NULL) {
cfga_err(errstring, 0, ERRARG_RCM_ONLINE, rsrc_fixed, 0);
(void) fp_rcm_info_table(rinfo, errstring);
rcm_free_info(rinfo);
ret = FPCFGA_ERR;
}
S_FREE(rsrc_fixed);
return (ret);
}
/*
* fp_rcm_remove()
*
* Remove FP resource consumers after their kernel removal.
*/
fpcfga_ret_t
fp_rcm_remove(char *rsrc, char **errstring, cfga_flags_t flags)
{
char *rsrc_fixed;
rcm_info_t *rinfo = NULL;
fpcfga_ret_t ret = FPCFGA_OK;
if ((ret = fp_rcm_init(rsrc, flags, errstring, NULL, &rsrc_fixed))
!= FPCFGA_OK)
return (ret);
if (rcm_notify_remove(rcm_handle, rsrc_fixed, 0, &rinfo)
!= RCM_SUCCESS) {
cfga_err(errstring, 0, ERRARG_RCM_REMOVE, rsrc_fixed, 0);
if (rinfo) {
(void) fp_rcm_info_table(rinfo, errstring);
rcm_free_info(rinfo);
}
ret = FPCFGA_ERR;
}
S_FREE(rsrc_fixed);
return (ret);
}
/*
* fp_rcm_suspend()
*
* Suspend FP resource consumers before a bus quiesce.
*/
fpcfga_ret_t
fp_rcm_suspend(char *rsrc, char *filter, char **errstring, cfga_flags_t flags)
{
int rret;
uint_t rflags = 0;
char *rsrc_fixed;
char *filter_fixed;
char *rsrc_devpath;
rcm_info_t *rinfo = NULL;
di_node_t node;
fpcfga_ret_t ret = FPCFGA_OK;
walkargs_t walkargs;
timespec_t zerotime = { 0, 0 };
if ((ret = fp_rcm_init(rsrc, flags, errstring, &rflags, &rsrc_fixed))
!= FPCFGA_OK)
return (ret);
/* If a filter is provided, ensure that it makes sense */
if (filter != NULL && strstr(filter, rsrc) != filter) {
S_FREE(rsrc_fixed);
cfga_err(errstring, 0, ERR_APID_INVAL, 0);
return (FPCFGA_ERR);
}
/*
* If no filter is specified: attempt a suspension on the resource,
* directly.
*/
if (filter == NULL) {
if ((rret = rcm_request_suspend(rcm_handle, rsrc_fixed, rflags,
&zerotime, &rinfo)) != RCM_SUCCESS) {
cfga_err(errstring, 0, ERRARG_RCM_SUSPEND, rsrc_fixed,
0);
if (rinfo) {
(void) fp_rcm_info_table(rinfo, errstring);
rcm_free_info(rinfo);
}
if (rret == RCM_FAILURE)
(void) fp_rcm_resume(rsrc, filter, errstring,
(flags & (~CFGA_FLAG_FORCE)));
ret = FPCFGA_BUSY;
}
S_FREE(rsrc_fixed);
return (ret);
}
/*
* If a filter is specified: open the resource with libdevinfo, walk
* through its nodes, and attempt a suspension of each node that
* mismatches the filter.
*/
/* Chop off the filter's minor name */
if ((filter_fixed = chop_minor(filter)) == NULL)
return (FPCFGA_ERR);
/* get a libdevinfo snapshot of the resource's subtree */
rsrc_devpath = rsrc_fixed;
if (strstr(rsrc_fixed, DEVICES) != NULL)
rsrc_devpath += strlen(DEVICES);
node = di_init(rsrc_devpath, DINFOSUBTREE | DINFOMINOR);
if (node == DI_NODE_NIL) {
cfga_err(errstring, 0, ERRARG_DEVINFO, rsrc_fixed, 0);
ret = FPCFGA_ERR;
}
/* apply the filter, and suspend all resources not filtered out */
if (ret == FPCFGA_OK) {
walkargs.bus_path = rsrc_fixed;
walkargs.filter = filter_fixed;
walkargs.errstring = errstring;
walkargs.ret = FPCFGA_OK;
walkargs.flags = rflags;
walkargs.func = fp_rcm_suspend;
if (di_walk_node(node, 0, &walkargs, fp_rcm_process_node) < 0)
cfga_err(errstring, 0, ERRARG_DEVINFO, rsrc_fixed, 0);
ret = walkargs.ret;
}
if (node != DI_NODE_NIL)
di_fini(node);
S_FREE(rsrc_fixed);
S_FREE(filter_fixed);
if (ret != FPCFGA_OK)
(void) fp_rcm_resume(rsrc, filter, errstring,
(flags & (~CFGA_FLAG_FORCE)));
return (ret);
}
/*
* fp_rcm_resume()
*
* Resume FP resource consumers after a bus has been unquiesced.
*/
fpcfga_ret_t
fp_rcm_resume(char *rsrc, char *filter, char **errstring, cfga_flags_t flags)
{
uint_t rflags = 0;
char *rsrc_fixed;
char *filter_fixed;
char *rsrc_devpath;
rcm_info_t *rinfo = NULL;
di_node_t node;
fpcfga_ret_t ret = FPCFGA_OK;
walkargs_t walkargs;
if ((ret = fp_rcm_init(rsrc, flags, errstring, &rflags, &rsrc_fixed))
!= FPCFGA_OK)
return (ret);
/* If a filter is provided, ensure that it makes sense */
if (filter != NULL && strstr(filter, rsrc) != filter) {
S_FREE(rsrc_fixed);
cfga_err(errstring, 0, ERR_APID_INVAL, 0);
return (FPCFGA_ERR);
}
/*
* If no filter is specified: resume the resource directly.
*/
if (filter == NULL) {
if (rcm_notify_resume(rcm_handle, rsrc_fixed, rflags, &rinfo)
!= RCM_SUCCESS && rinfo != NULL) {
cfga_err(errstring, 0, ERRARG_RCM_RESUME, rsrc_fixed,
0);
(void) fp_rcm_info_table(rinfo, errstring);
rcm_free_info(rinfo);
ret = FPCFGA_BUSY;
}
S_FREE(rsrc_fixed);
return (ret);
}
/*
* If a filter is specified: open the resource with libdevinfo, walk
* through its nodes, and resume each of its nodes that mismatches
* the filter.
*/
/* Chop off the filter's minor name */
if ((filter_fixed = chop_minor(filter)) == NULL)
return (FPCFGA_ERR);
/* get a libdevinfo snapshot of the resource's subtree */
rsrc_devpath = rsrc_fixed;
if (strstr(rsrc_fixed, DEVICES) != NULL)
rsrc_devpath += strlen(DEVICES);
node = di_init(rsrc_devpath, DINFOSUBTREE | DINFOMINOR);
if (node == DI_NODE_NIL) {
cfga_err(errstring, 0, ERRARG_DEVINFO, rsrc_fixed, 0);
ret = FPCFGA_ERR;
}
/* apply the filter, and resume all resources not filtered out */
if (ret == FPCFGA_OK) {
walkargs.bus_path = rsrc_fixed;
walkargs.filter = filter_fixed;
walkargs.errstring = errstring;
walkargs.ret = FPCFGA_OK;
walkargs.flags = rflags;
walkargs.func = fp_rcm_resume;
if (di_walk_node(node, 0, &walkargs, fp_rcm_process_node) < 0)
cfga_err(errstring, 0, ERRARG_DEVINFO, rsrc_fixed, 0);
ret = walkargs.ret;
}
if (node != DI_NODE_NIL)
di_fini(node);
S_FREE(rsrc_fixed);
S_FREE(filter_fixed);
return (ret);
}
/*
* fp_rcm_info
*
* Queries RCM information for resources, and formats it into a table.
* The table is appended to the info argument. If the info argument is a
* null pointer, then a new string is malloc'ed. If the info argument is
* not a null pointer, then it is realloc'ed to the required size.
*/
fpcfga_ret_t
fp_rcm_info(char *rsrc, char **errstring, char **info)
{
char *rsrc_fixed;
rcm_info_t *rinfo = NULL;
fpcfga_ret_t ret = FPCFGA_OK;
if ((ret = fp_rcm_init(rsrc, 0, errstring, NULL, &rsrc_fixed))
!= FPCFGA_OK)
return (ret);
if (info == NULL) {
S_FREE(rsrc_fixed);
return (FPCFGA_ERR);
}
if (rcm_get_info(rcm_handle, rsrc_fixed, 0, &rinfo)
!= RCM_SUCCESS) {
cfga_err(errstring, 0, ERRARG_RCM_INFO, rsrc_fixed, 0);
ret = FPCFGA_ERR;
} else if (rinfo == NULL)
ret = FPCFGA_OK;
if (rinfo) {
if ((ret = fp_rcm_info_table(rinfo, info)) != FPCFGA_OK)
cfga_err(errstring, 0, ERRARG_RCM_INFO, rsrc_fixed, 0);
rcm_free_info(rinfo);
}
S_FREE(rsrc_fixed);
return (ret);
}
/*
* fp_rcm_init()
*
* Contains common initialization code for entering a fp_rcm_xx()
* routine.
*/
static fpcfga_ret_t
fp_rcm_init(char *rsrc, cfga_flags_t flags, char **errstring, uint_t *rflags,
char **rsrc_fixed)
{
/* Validate the rsrc argument */
if (rsrc == NULL) {
cfga_err(errstring, 0, ERR_APID_INVAL, 0);
return (FPCFGA_ERR);
}
/* Translate the cfgadm flags to RCM flags */
if (rflags && (flags & CFGA_FLAG_FORCE))
*rflags |= RCM_FORCE;
/* Get a handle for the RCM operations */
(void) mutex_lock(&rcm_handle_lock);
if (rcm_handle == NULL) {
if (rcm_alloc_handle(NULL, RCM_NOPID, NULL, &rcm_handle) !=
RCM_SUCCESS) {
cfga_err(errstring, 0, ERR_RCM_HANDLE, 0);
(void) mutex_unlock(&rcm_handle_lock);
return (FPCFGA_LIB_ERR);
}
}
(void) mutex_unlock(&rcm_handle_lock);
/* Chop off the rsrc's minor, if it has one */
if ((*rsrc_fixed = chop_minor(rsrc)) == NULL)
return (FPCFGA_ERR);
return (FPCFGA_OK);
}
/*
* fp_rcm_process_node
*
* Helper routine for fp_rcm_{suspend,resume}. This is a di_walk_node()
* callback that will apply a filter to every node it sees, and either suspend
* or resume it if it doesn't match the filter.
*/
static int
fp_rcm_process_node(di_node_t node, void *argp)
{
char *devfs_path;
walkargs_t *walkargs;
fpcfga_ret_t ret = FPCFGA_OK;
char disk_path[MAXPATHLEN];
/* Guard against bad arguments */
if ((walkargs = (walkargs_t *)argp) == NULL)
return (DI_WALK_TERMINATE);
if (walkargs->filter == NULL || walkargs->errstring == NULL) {
walkargs->ret = FPCFGA_ERR;
return (DI_WALK_TERMINATE);
}
/* If the node has no minors, then skip it */
if (di_minor_next(node, DI_MINOR_NIL) == DI_MINOR_NIL)
return (DI_WALK_CONTINUE);
/* Construct the devices path */
if ((devfs_path = di_devfs_path(node)) == NULL)
return (DI_WALK_CONTINUE);
(void) snprintf(disk_path, MAXPATHLEN, "%s%s", DEVICES, devfs_path);
di_devfs_path_free(devfs_path);
/*
* If the node does not correspond to the targeted FP bus or the
* disk being filtered out, then use the appropriate suspend/resume
* function.
*/
if (strcmp(disk_path, walkargs->bus_path) != 0 &&
strcmp(disk_path, walkargs->filter) != 0)
ret = (*walkargs->func)(disk_path, NULL, walkargs->errstring,
walkargs->flags);
/* Stop the walk early if the above operation failed */
if (ret != FPCFGA_OK) {
walkargs->ret = ret;
return (DI_WALK_TERMINATE);
}
return (DI_WALK_CONTINUE);
}
/*
* fp_rcm_info_table
*
* Takes an opaque rcm_info_t pointer and a character pointer, and appends
* the rcm_info_t data in the form of a table to the given character pointer.
*/
static fpcfga_ret_t
fp_rcm_info_table(rcm_info_t *rinfo, char **table)
{
int i;
size_t w;
size_t width = 0;
size_t w_rsrc = 0;
size_t w_info = 0;
size_t table_size = 0;
uint_t tuples = 0;
rcm_info_tuple_t *tuple = NULL;
char *rsrc;
char *info;
char *newtable;
static char format[MAX_FORMAT];
const char *info_info_str, *info_rsrc_str;
/* Protect against invalid arguments */
if (rinfo == NULL || table == NULL)
return (FPCFGA_ERR);
/* Set localized table header strings */
rsrc = gettext("Resource");
info = gettext("Information");
/* A first pass, to size up the RCM information */
while (tuple = rcm_info_next(rinfo, tuple)) {
info_info_str = rcm_info_info(tuple);
info_rsrc_str = rcm_info_rsrc(tuple);
if ((info_info_str != NULL) && (info_rsrc_str != NULL)) {
tuples++;
if ((w = strlen(info_rsrc_str)) > w_rsrc)
w_rsrc = w;
if ((w = strlen(info_info_str)) > w_info)
w_info = w;
}
}
/* If nothing was sized up above, stop early */
if (tuples == 0)
return (FPCFGA_OK);
/* Adjust column widths for column headings */
if ((w = strlen(rsrc)) > w_rsrc)
w_rsrc = w;
else if ((w_rsrc - w) % 2)
w_rsrc++;
if ((w = strlen(info)) > w_info)
w_info = w;
else if ((w_info - w) % 2)
w_info++;
/*
* Compute the total line width of each line,
* accounting for intercolumn spacing.
*/
width = w_info + w_rsrc + 4;
/* Allocate space for the table */
table_size = (2 + tuples) * (width + 1) + 2;
if (*table == NULL)
*table = malloc(table_size);
else {
newtable = realloc(*table, strlen(*table) + table_size);
if (newtable != NULL)
*table = newtable;
}
if (*table == NULL)
return (FPCFGA_ERR);
/* Place a table header into the string */
/* The resource header */
(void) strcat(*table, "\n");
w = strlen(rsrc);
for (i = 0; i < ((w_rsrc - w) / 2); i++)
(void) strcat(*table, " ");
(void) strcat(*table, rsrc);
for (i = 0; i < ((w_rsrc - w) / 2); i++)
(void) strcat(*table, " ");
/* The information header */
(void) strcat(*table, " ");
w = strlen(info);
for (i = 0; i < ((w_info - w) / 2); i++)
(void) strcat(*table, " ");
(void) strcat(*table, info);
for (i = 0; i < ((w_info - w) / 2); i++)
(void) strcat(*table, " ");
/* Underline the headers */
(void) strcat(*table, "\n");
for (i = 0; i < w_rsrc; i++)
(void) strcat(*table, "-");
(void) strcat(*table, " ");
for (i = 0; i < w_info; i++)
(void) strcat(*table, "-");
/* Construct the format string */
(void) snprintf(format, MAX_FORMAT, "%%-%ds %%-%ds", w_rsrc, w_info);
/* Add the tuples to the table string */
tuple = NULL;
while ((tuple = rcm_info_next(rinfo, tuple)) != NULL) {
info_info_str = rcm_info_info(tuple);
info_rsrc_str = rcm_info_rsrc(tuple);
if ((info_info_str != NULL) && (info_rsrc_str != NULL)) {
(void) strcat(*table, "\n");
(void) sprintf(&((*table)[strlen(*table)]),
format, info_rsrc_str, info_info_str);
}
}
return (FPCFGA_OK);
}
/*
* chop_minor()
*
* Chops off the minor name portion of a resource. Allocates storage for
* the returned string. Caller must free the storage if return is non-NULL.
*/
static char *
chop_minor(char *rsrc)
{
char *rsrc_fixed;
char *cp;
if ((rsrc_fixed = strdup(rsrc)) == NULL)
return (NULL);
if ((cp = strrchr(rsrc_fixed, ':')) != NULL)
*cp = '\0';
return (rsrc_fixed);
}
|