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
|
/*
* 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 2016 Nexenta Systems, Inc. All rights reserved.
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include <devfsadm.h>
#include <stdio.h>
#include <strings.h>
#include <stdlib.h>
#include <limits.h>
#include <ctype.h>
#include <sys/int_fmtio.h>
#include <sys/scsi/scsi_address.h>
#include <sys/libdevid.h>
#define SGEN_LINK_RE "^scsi/.+/c[0-9]+t[0-9A-F]+d[0-9]+$"
#define SGEN_DIR "scsi"
#define SGEN_CLASS "generic-scsi"
static int sgen_callback(di_minor_t minor, di_node_t node);
static char *find_ctrlr(di_node_t node, di_minor_t minor);
static devfsadm_create_t sgen_create_cbt[] = {
{ SGEN_CLASS, "ddi_generic:scsi", NULL,
TYPE_EXACT | CREATE_DEFER, ILEVEL_0, sgen_callback
}
};
DEVFSADM_CREATE_INIT_V0(sgen_create_cbt);
/*
* HOT auto cleanup of sgen links not desired.
*/
static devfsadm_remove_t sgen_remove_cbt[] = {
{ SGEN_CLASS, SGEN_LINK_RE, RM_POST,
ILEVEL_0, devfsadm_rm_all
}
};
DEVFSADM_REMOVE_INIT_V0(sgen_remove_cbt);
static int
sgen_callback(di_minor_t minor, di_node_t node)
{
char *baddr, *cnum, *tstr;
char lpath[PATH_MAX], buf[PATH_MAX];
uchar_t *wwnstr;
char *tgt_port;
if ((cnum = find_ctrlr(node, minor)) == NULL)
goto done;
/*
* SCSAv3 attached devices.
*/
if (di_prop_lookup_strings(DDI_DEV_T_ANY, node,
SCSI_ADDR_PROP_TARGET_PORT, &tgt_port) > 0) {
uint64_t wwn;
scsi_lun64_t sl;
scsi_lun_t lun;
int64_t lun64;
int64_t *lun64p;
int *intp;
uchar_t addr_method;
/* Get lun property */
if ((di_prop_lookup_int64(DDI_DEV_T_ANY, node,
SCSI_ADDR_PROP_LUN64, &lun64p) > 0) &&
(*lun64p != SCSI_LUN64_ILLEGAL)) {
lun64 = *lun64p;
} else if (di_prop_lookup_ints(DDI_DEV_T_ANY, node,
SCSI_ADDR_PROP_LUN, &intp) > 0) {
lun64 = (uint64_t)*intp;
}
lun = scsi_lun64_to_lun(lun64);
addr_method = (lun.sl_lun1_msb & SCSI_LUN_AM_MASK);
(void) scsi_wwnstr_to_wwn(tgt_port, &wwn);
if ((addr_method == SCSI_LUN_AM_PDEV) &&
(lun.sl_lun2_msb == 0) && (lun.sl_lun2_lsb == 0) &&
(lun.sl_lun3_msb == 0) && (lun.sl_lun3_lsb == 0) &&
(lun.sl_lun4_msb == 0) && (lun.sl_lun4_lsb == 0)) {
(void) snprintf(lpath, PATH_MAX,
"%s/%s/c%st%"PRIX64"d%"PRId64, SGEN_DIR,
di_minor_name(minor), cnum, wwn, lun64);
} else if ((addr_method == SCSI_LUN_AM_FLAT) &&
(lun.sl_lun2_msb == 0) && (lun.sl_lun2_lsb == 0) &&
(lun.sl_lun3_msb == 0) && (lun.sl_lun3_lsb == 0) &&
(lun.sl_lun4_msb == 0) && (lun.sl_lun4_lsb == 0)) {
sl = (lun.sl_lun1_msb << 8) | lun.sl_lun1_lsb;
(void) snprintf(lpath, PATH_MAX,
"%s/%s/c%st%"PRIX64"d%"PRIX16, SGEN_DIR,
di_minor_name(minor), cnum, wwn, sl);
} else {
(void) snprintf(lpath, PATH_MAX,
"%s/%s/c%st%"PRIX64"d%"PRIX64, SGEN_DIR,
di_minor_name(minor), cnum, wwn, lun64);
}
} else if (di_prop_lookup_strings(DDI_DEV_T_ANY, node,
"client-guid", (char **)&wwnstr) > 0) {
/*
* MPXIO-enabled devices; lun is always 0.
*/
if (strlcpy((char *)buf, (char *)wwnstr, sizeof (buf)) >=
sizeof (buf))
goto done;
for (tstr = buf; *tstr != '\0'; tstr++) {
*tstr = toupper(*tstr);
}
if (snprintf(lpath, sizeof (lpath), "%s/%s/c%st%sd0", SGEN_DIR,
di_minor_name(minor), cnum, buf) >= sizeof (lpath))
goto done;
} else if (di_prop_lookup_bytes(DDI_DEV_T_ANY, node,
"port-wwn", &wwnstr) == 8) {
/*
* "normal" fibre channel devices
*/
int lun, *lunp, count;
if (di_prop_lookup_ints(DDI_DEV_T_ANY, node, "lun", &lunp) > 0)
lun = *lunp;
else
lun = 0;
for (count = 0, tstr = buf; count < 8; count++, tstr += 2)
(void) sprintf(tstr, "%02X", wwnstr[count]);
*tstr = '\0';
if (snprintf(lpath, sizeof (lpath), "%s/%s/c%st%sd%d", SGEN_DIR,
di_minor_name(minor), cnum, buf, lun) >= sizeof (lpath))
goto done;
} else {
/*
* Parallel SCSI devices
*/
uint_t targ, lun;
if ((baddr = di_bus_addr(node)) == NULL)
goto done;
if (sscanf(baddr, "%X,%X", &targ, &lun) != 2)
goto done;
if (snprintf(lpath, sizeof (lpath), "%s/%s/c%st%dd%d", SGEN_DIR,
di_minor_name(minor), cnum, targ, lun) >= sizeof (lpath))
goto done;
}
(void) devfsadm_mklink(lpath, node, minor, 0);
done:
free(cnum);
return (DEVFSADM_CONTINUE);
}
/* index of enumeration rule applicable to this module */
#define RULE_INDEX 2
static char *
find_ctrlr(di_node_t node, di_minor_t minor)
{
char path[PATH_MAX + 1];
char *devfspath;
char *buf, *mn;
boolean_t is_vhci;
devfsadm_enumerate_t rules[3] = {
{"^r?dsk$/^c([0-9]+)", 1, MATCH_PARENT},
{"^cfg$/^c([0-9]+)$", 1, MATCH_ADDR},
{"^scsi$/^.+$/^c([0-9]+)", 1, MATCH_PARENT}
};
mn = di_minor_name(minor);
if ((devfspath = di_devfs_path(node)) == NULL) {
return (NULL);
}
(void) strcpy(path, devfspath);
(void) strcat(path, ":");
(void) strcat(path, mn);
di_devfs_path_free(devfspath);
/*
* Use controller (parent) component of device path
*/
is_vhci = (strncmp(path, "/scsi_vhci/", 11) == 0);
if (ctrl_enumerate_int(path, RULE_INDEX, &buf, rules, 3, 1, is_vhci) ==
DEVFSADM_MULTIPLE) {
/*
* We failed because there are multiple logical controller
* numbers for a single physical controller. If we use node
* name also for DEVICE paths in the match it should fix this
* and only find one logical controller. (See 4045879).
* NOTE: Rules for controllers are not changed, as there is
* no unique controller number for them in this case.
*
* MATCH_UNCACHED flag is private to the "disks" and "sgen"
* modules. NOT to be used by other modules.
*/
rules[0].flags = MATCH_NODE | MATCH_UNCACHED; /* disks */
rules[2].flags = MATCH_NODE | MATCH_UNCACHED; /* generic scsi */
if (ctrl_enumerate_int(path, RULE_INDEX, &buf, rules, 3, 0,
is_vhci)) {
return (NULL);
}
}
return (buf);
}
|