1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*******************************************************************************
3 * Filename: target_core_stat.c
5 * Modern ConfigFS group context specific statistics based on original
6 * target_core_mib.c code
8 * (c) Copyright 2006-2013 Datera, Inc.
10 * Nicholas A. Bellinger <nab@linux-iscsi.org>
12 ******************************************************************************/
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/delay.h>
17 #include <linux/timer.h>
18 #include <linux/string.h>
19 #include <linux/utsname.h>
20 #include <linux/proc_fs.h>
21 #include <linux/seq_file.h>
22 #include <linux/configfs.h>
24 #include <target/target_core_base.h>
25 #include <target/target_core_backend.h>
26 #include <target/target_core_fabric.h>
28 #include "target_core_internal.h"
30 #ifndef INITIAL_JIFFIES
31 #define INITIAL_JIFFIES ((unsigned long)(unsigned int) (-300*HZ))
35 #define ISPRINT(a) ((a >= ' ') && (a <= '~'))
37 #define SCSI_LU_INDEX 1
44 static struct se_device
*to_stat_dev(struct config_item
*item
)
46 struct se_dev_stat_grps
*sgrps
= container_of(to_config_group(item
),
47 struct se_dev_stat_grps
, scsi_dev_group
);
48 return container_of(sgrps
, struct se_device
, dev_stat_grps
);
51 static ssize_t
target_stat_inst_show(struct config_item
*item
, char *page
)
53 struct se_hba
*hba
= to_stat_dev(item
)->se_hba
;
55 return snprintf(page
, PAGE_SIZE
, "%u\n", hba
->hba_index
);
58 static ssize_t
target_stat_indx_show(struct config_item
*item
, char *page
)
60 return snprintf(page
, PAGE_SIZE
, "%u\n", to_stat_dev(item
)->dev_index
);
63 static ssize_t
target_stat_role_show(struct config_item
*item
, char *page
)
65 return snprintf(page
, PAGE_SIZE
, "Target\n");
68 static ssize_t
target_stat_ports_show(struct config_item
*item
, char *page
)
70 return snprintf(page
, PAGE_SIZE
, "%u\n", to_stat_dev(item
)->export_count
);
73 CONFIGFS_ATTR_RO(target_stat_
, inst
);
74 CONFIGFS_ATTR_RO(target_stat_
, indx
);
75 CONFIGFS_ATTR_RO(target_stat_
, role
);
76 CONFIGFS_ATTR_RO(target_stat_
, ports
);
78 static struct configfs_attribute
*target_stat_scsi_dev_attrs
[] = {
79 &target_stat_attr_inst
,
80 &target_stat_attr_indx
,
81 &target_stat_attr_role
,
82 &target_stat_attr_ports
,
86 static const struct config_item_type target_stat_scsi_dev_cit
= {
87 .ct_attrs
= target_stat_scsi_dev_attrs
,
88 .ct_owner
= THIS_MODULE
,
92 * SCSI Target Device Table
94 static struct se_device
*to_stat_tgt_dev(struct config_item
*item
)
96 struct se_dev_stat_grps
*sgrps
= container_of(to_config_group(item
),
97 struct se_dev_stat_grps
, scsi_tgt_dev_group
);
98 return container_of(sgrps
, struct se_device
, dev_stat_grps
);
101 static ssize_t
target_stat_tgt_inst_show(struct config_item
*item
, char *page
)
103 struct se_hba
*hba
= to_stat_tgt_dev(item
)->se_hba
;
105 return snprintf(page
, PAGE_SIZE
, "%u\n", hba
->hba_index
);
108 static ssize_t
target_stat_tgt_indx_show(struct config_item
*item
, char *page
)
110 return snprintf(page
, PAGE_SIZE
, "%u\n", to_stat_tgt_dev(item
)->dev_index
);
113 static ssize_t
target_stat_tgt_num_lus_show(struct config_item
*item
,
116 return snprintf(page
, PAGE_SIZE
, "%u\n", LU_COUNT
);
119 static ssize_t
target_stat_tgt_status_show(struct config_item
*item
,
122 if (to_stat_tgt_dev(item
)->export_count
)
123 return snprintf(page
, PAGE_SIZE
, "activated");
125 return snprintf(page
, PAGE_SIZE
, "deactivated");
128 static ssize_t
target_stat_tgt_non_access_lus_show(struct config_item
*item
,
131 int non_accessible_lus
;
133 if (to_stat_tgt_dev(item
)->export_count
)
134 non_accessible_lus
= 0;
136 non_accessible_lus
= 1;
138 return snprintf(page
, PAGE_SIZE
, "%u\n", non_accessible_lus
);
141 static ssize_t
target_stat_tgt_resets_show(struct config_item
*item
,
144 return snprintf(page
, PAGE_SIZE
, "%lu\n",
145 atomic_long_read(&to_stat_tgt_dev(item
)->num_resets
));
148 static ssize_t
target_stat_tgt_aborts_complete_show(struct config_item
*item
,
151 return snprintf(page
, PAGE_SIZE
, "%lu\n",
152 atomic_long_read(&to_stat_tgt_dev(item
)->aborts_complete
));
155 static ssize_t
target_stat_tgt_aborts_no_task_show(struct config_item
*item
,
158 return snprintf(page
, PAGE_SIZE
, "%lu\n",
159 atomic_long_read(&to_stat_tgt_dev(item
)->aborts_no_task
));
162 CONFIGFS_ATTR_RO(target_stat_tgt_
, inst
);
163 CONFIGFS_ATTR_RO(target_stat_tgt_
, indx
);
164 CONFIGFS_ATTR_RO(target_stat_tgt_
, num_lus
);
165 CONFIGFS_ATTR_RO(target_stat_tgt_
, status
);
166 CONFIGFS_ATTR_RO(target_stat_tgt_
, non_access_lus
);
167 CONFIGFS_ATTR_RO(target_stat_tgt_
, resets
);
168 CONFIGFS_ATTR_RO(target_stat_tgt_
, aborts_complete
);
169 CONFIGFS_ATTR_RO(target_stat_tgt_
, aborts_no_task
);
171 static struct configfs_attribute
*target_stat_scsi_tgt_dev_attrs
[] = {
172 &target_stat_tgt_attr_inst
,
173 &target_stat_tgt_attr_indx
,
174 &target_stat_tgt_attr_num_lus
,
175 &target_stat_tgt_attr_status
,
176 &target_stat_tgt_attr_non_access_lus
,
177 &target_stat_tgt_attr_resets
,
178 &target_stat_tgt_attr_aborts_complete
,
179 &target_stat_tgt_attr_aborts_no_task
,
183 static const struct config_item_type target_stat_scsi_tgt_dev_cit
= {
184 .ct_attrs
= target_stat_scsi_tgt_dev_attrs
,
185 .ct_owner
= THIS_MODULE
,
189 * SCSI Logical Unit Table
192 static struct se_device
*to_stat_lu_dev(struct config_item
*item
)
194 struct se_dev_stat_grps
*sgrps
= container_of(to_config_group(item
),
195 struct se_dev_stat_grps
, scsi_lu_group
);
196 return container_of(sgrps
, struct se_device
, dev_stat_grps
);
199 static ssize_t
target_stat_lu_inst_show(struct config_item
*item
, char *page
)
201 struct se_hba
*hba
= to_stat_lu_dev(item
)->se_hba
;
203 return snprintf(page
, PAGE_SIZE
, "%u\n", hba
->hba_index
);
206 static ssize_t
target_stat_lu_dev_show(struct config_item
*item
, char *page
)
208 return snprintf(page
, PAGE_SIZE
, "%u\n",
209 to_stat_lu_dev(item
)->dev_index
);
212 static ssize_t
target_stat_lu_indx_show(struct config_item
*item
, char *page
)
214 return snprintf(page
, PAGE_SIZE
, "%u\n", SCSI_LU_INDEX
);
217 static ssize_t
target_stat_lu_lun_show(struct config_item
*item
, char *page
)
219 /* FIXME: scsiLuDefaultLun */
220 return snprintf(page
, PAGE_SIZE
, "%llu\n", (unsigned long long)0);
223 static ssize_t
target_stat_lu_lu_name_show(struct config_item
*item
, char *page
)
225 struct se_device
*dev
= to_stat_lu_dev(item
);
228 return snprintf(page
, PAGE_SIZE
, "%s\n",
229 (strlen(dev
->t10_wwn
.unit_serial
)) ?
230 dev
->t10_wwn
.unit_serial
: "None");
233 static ssize_t
target_stat_lu_vend_show(struct config_item
*item
, char *page
)
235 struct se_device
*dev
= to_stat_lu_dev(item
);
237 return snprintf(page
, PAGE_SIZE
, "%-" __stringify(INQUIRY_VENDOR_LEN
)
238 "s\n", dev
->t10_wwn
.vendor
);
241 static ssize_t
target_stat_lu_prod_show(struct config_item
*item
, char *page
)
243 struct se_device
*dev
= to_stat_lu_dev(item
);
245 return snprintf(page
, PAGE_SIZE
, "%-" __stringify(INQUIRY_MODEL_LEN
)
246 "s\n", dev
->t10_wwn
.model
);
249 static ssize_t
target_stat_lu_rev_show(struct config_item
*item
, char *page
)
251 struct se_device
*dev
= to_stat_lu_dev(item
);
253 return snprintf(page
, PAGE_SIZE
, "%-" __stringify(INQUIRY_REVISION_LEN
)
254 "s\n", dev
->t10_wwn
.revision
);
257 static ssize_t
target_stat_lu_dev_type_show(struct config_item
*item
, char *page
)
259 struct se_device
*dev
= to_stat_lu_dev(item
);
261 /* scsiLuPeripheralType */
262 return snprintf(page
, PAGE_SIZE
, "%u\n",
263 dev
->transport
->get_device_type(dev
));
266 static ssize_t
target_stat_lu_status_show(struct config_item
*item
, char *page
)
268 struct se_device
*dev
= to_stat_lu_dev(item
);
271 return snprintf(page
, PAGE_SIZE
, "%s\n",
272 (dev
->export_count
) ? "available" : "notavailable");
275 static ssize_t
target_stat_lu_state_bit_show(struct config_item
*item
,
279 return snprintf(page
, PAGE_SIZE
, "exposed\n");
282 static ssize_t
target_stat_lu_num_cmds_show(struct config_item
*item
,
285 struct se_device
*dev
= to_stat_lu_dev(item
);
287 /* scsiLuNumCommands */
288 return snprintf(page
, PAGE_SIZE
, "%lu\n",
289 atomic_long_read(&dev
->num_cmds
));
292 static ssize_t
target_stat_lu_read_mbytes_show(struct config_item
*item
,
295 struct se_device
*dev
= to_stat_lu_dev(item
);
297 /* scsiLuReadMegaBytes */
298 return snprintf(page
, PAGE_SIZE
, "%lu\n",
299 atomic_long_read(&dev
->read_bytes
) >> 20);
302 static ssize_t
target_stat_lu_write_mbytes_show(struct config_item
*item
,
305 struct se_device
*dev
= to_stat_lu_dev(item
);
307 /* scsiLuWrittenMegaBytes */
308 return snprintf(page
, PAGE_SIZE
, "%lu\n",
309 atomic_long_read(&dev
->write_bytes
) >> 20);
312 static ssize_t
target_stat_lu_resets_show(struct config_item
*item
, char *page
)
314 struct se_device
*dev
= to_stat_lu_dev(item
);
317 return snprintf(page
, PAGE_SIZE
, "%lu\n",
318 atomic_long_read(&dev
->num_resets
));
321 static ssize_t
target_stat_lu_full_stat_show(struct config_item
*item
,
324 /* FIXME: scsiLuOutTaskSetFullStatus */
325 return snprintf(page
, PAGE_SIZE
, "%u\n", 0);
328 static ssize_t
target_stat_lu_hs_num_cmds_show(struct config_item
*item
,
331 /* FIXME: scsiLuHSInCommands */
332 return snprintf(page
, PAGE_SIZE
, "%u\n", 0);
335 static ssize_t
target_stat_lu_creation_time_show(struct config_item
*item
,
338 struct se_device
*dev
= to_stat_lu_dev(item
);
340 /* scsiLuCreationTime */
341 return snprintf(page
, PAGE_SIZE
, "%u\n", (u32
)(((u32
)dev
->creation_time
-
342 INITIAL_JIFFIES
) * 100 / HZ
));
345 CONFIGFS_ATTR_RO(target_stat_lu_
, inst
);
346 CONFIGFS_ATTR_RO(target_stat_lu_
, dev
);
347 CONFIGFS_ATTR_RO(target_stat_lu_
, indx
);
348 CONFIGFS_ATTR_RO(target_stat_lu_
, lun
);
349 CONFIGFS_ATTR_RO(target_stat_lu_
, lu_name
);
350 CONFIGFS_ATTR_RO(target_stat_lu_
, vend
);
351 CONFIGFS_ATTR_RO(target_stat_lu_
, prod
);
352 CONFIGFS_ATTR_RO(target_stat_lu_
, rev
);
353 CONFIGFS_ATTR_RO(target_stat_lu_
, dev_type
);
354 CONFIGFS_ATTR_RO(target_stat_lu_
, status
);
355 CONFIGFS_ATTR_RO(target_stat_lu_
, state_bit
);
356 CONFIGFS_ATTR_RO(target_stat_lu_
, num_cmds
);
357 CONFIGFS_ATTR_RO(target_stat_lu_
, read_mbytes
);
358 CONFIGFS_ATTR_RO(target_stat_lu_
, write_mbytes
);
359 CONFIGFS_ATTR_RO(target_stat_lu_
, resets
);
360 CONFIGFS_ATTR_RO(target_stat_lu_
, full_stat
);
361 CONFIGFS_ATTR_RO(target_stat_lu_
, hs_num_cmds
);
362 CONFIGFS_ATTR_RO(target_stat_lu_
, creation_time
);
364 static struct configfs_attribute
*target_stat_scsi_lu_attrs
[] = {
365 &target_stat_lu_attr_inst
,
366 &target_stat_lu_attr_dev
,
367 &target_stat_lu_attr_indx
,
368 &target_stat_lu_attr_lun
,
369 &target_stat_lu_attr_lu_name
,
370 &target_stat_lu_attr_vend
,
371 &target_stat_lu_attr_prod
,
372 &target_stat_lu_attr_rev
,
373 &target_stat_lu_attr_dev_type
,
374 &target_stat_lu_attr_status
,
375 &target_stat_lu_attr_state_bit
,
376 &target_stat_lu_attr_num_cmds
,
377 &target_stat_lu_attr_read_mbytes
,
378 &target_stat_lu_attr_write_mbytes
,
379 &target_stat_lu_attr_resets
,
380 &target_stat_lu_attr_full_stat
,
381 &target_stat_lu_attr_hs_num_cmds
,
382 &target_stat_lu_attr_creation_time
,
386 static const struct config_item_type target_stat_scsi_lu_cit
= {
387 .ct_attrs
= target_stat_scsi_lu_attrs
,
388 .ct_owner
= THIS_MODULE
,
392 * Called from target_core_configfs.c:target_core_make_subdev() to setup
393 * the target statistics groups + configfs CITs located in target_core_stat.c
395 void target_stat_setup_dev_default_groups(struct se_device
*dev
)
397 config_group_init_type_name(&dev
->dev_stat_grps
.scsi_dev_group
,
398 "scsi_dev", &target_stat_scsi_dev_cit
);
399 configfs_add_default_group(&dev
->dev_stat_grps
.scsi_dev_group
,
400 &dev
->dev_stat_grps
.stat_group
);
402 config_group_init_type_name(&dev
->dev_stat_grps
.scsi_tgt_dev_group
,
403 "scsi_tgt_dev", &target_stat_scsi_tgt_dev_cit
);
404 configfs_add_default_group(&dev
->dev_stat_grps
.scsi_tgt_dev_group
,
405 &dev
->dev_stat_grps
.stat_group
);
407 config_group_init_type_name(&dev
->dev_stat_grps
.scsi_lu_group
,
408 "scsi_lu", &target_stat_scsi_lu_cit
);
409 configfs_add_default_group(&dev
->dev_stat_grps
.scsi_lu_group
,
410 &dev
->dev_stat_grps
.stat_group
);
417 static struct se_lun
*to_stat_port(struct config_item
*item
)
419 struct se_port_stat_grps
*pgrps
= container_of(to_config_group(item
),
420 struct se_port_stat_grps
, scsi_port_group
);
421 return container_of(pgrps
, struct se_lun
, port_stat_grps
);
424 static ssize_t
target_stat_port_inst_show(struct config_item
*item
, char *page
)
426 struct se_lun
*lun
= to_stat_port(item
);
427 struct se_device
*dev
;
428 ssize_t ret
= -ENODEV
;
431 dev
= rcu_dereference(lun
->lun_se_dev
);
433 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", dev
->hba_index
);
438 static ssize_t
target_stat_port_dev_show(struct config_item
*item
, char *page
)
440 struct se_lun
*lun
= to_stat_port(item
);
441 struct se_device
*dev
;
442 ssize_t ret
= -ENODEV
;
445 dev
= rcu_dereference(lun
->lun_se_dev
);
447 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", dev
->dev_index
);
452 static ssize_t
target_stat_port_indx_show(struct config_item
*item
, char *page
)
454 struct se_lun
*lun
= to_stat_port(item
);
455 struct se_device
*dev
;
456 ssize_t ret
= -ENODEV
;
459 dev
= rcu_dereference(lun
->lun_se_dev
);
461 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", lun
->lun_rtpi
);
466 static ssize_t
target_stat_port_role_show(struct config_item
*item
, char *page
)
468 struct se_lun
*lun
= to_stat_port(item
);
469 struct se_device
*dev
;
470 ssize_t ret
= -ENODEV
;
473 dev
= rcu_dereference(lun
->lun_se_dev
);
475 ret
= snprintf(page
, PAGE_SIZE
, "%s%u\n", "Device", dev
->dev_index
);
480 static ssize_t
target_stat_port_busy_count_show(struct config_item
*item
,
483 struct se_lun
*lun
= to_stat_port(item
);
484 struct se_device
*dev
;
485 ssize_t ret
= -ENODEV
;
488 dev
= rcu_dereference(lun
->lun_se_dev
);
490 /* FIXME: scsiPortBusyStatuses */
491 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", 0);
497 CONFIGFS_ATTR_RO(target_stat_port_
, inst
);
498 CONFIGFS_ATTR_RO(target_stat_port_
, dev
);
499 CONFIGFS_ATTR_RO(target_stat_port_
, indx
);
500 CONFIGFS_ATTR_RO(target_stat_port_
, role
);
501 CONFIGFS_ATTR_RO(target_stat_port_
, busy_count
);
503 static struct configfs_attribute
*target_stat_scsi_port_attrs
[] = {
504 &target_stat_port_attr_inst
,
505 &target_stat_port_attr_dev
,
506 &target_stat_port_attr_indx
,
507 &target_stat_port_attr_role
,
508 &target_stat_port_attr_busy_count
,
512 static const struct config_item_type target_stat_scsi_port_cit
= {
513 .ct_attrs
= target_stat_scsi_port_attrs
,
514 .ct_owner
= THIS_MODULE
,
518 * SCSI Target Port Table
520 static struct se_lun
*to_stat_tgt_port(struct config_item
*item
)
522 struct se_port_stat_grps
*pgrps
= container_of(to_config_group(item
),
523 struct se_port_stat_grps
, scsi_tgt_port_group
);
524 return container_of(pgrps
, struct se_lun
, port_stat_grps
);
527 static ssize_t
target_stat_tgt_port_inst_show(struct config_item
*item
,
530 struct se_lun
*lun
= to_stat_tgt_port(item
);
531 struct se_device
*dev
;
532 ssize_t ret
= -ENODEV
;
535 dev
= rcu_dereference(lun
->lun_se_dev
);
537 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", dev
->hba_index
);
542 static ssize_t
target_stat_tgt_port_dev_show(struct config_item
*item
,
545 struct se_lun
*lun
= to_stat_tgt_port(item
);
546 struct se_device
*dev
;
547 ssize_t ret
= -ENODEV
;
550 dev
= rcu_dereference(lun
->lun_se_dev
);
552 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", dev
->dev_index
);
557 static ssize_t
target_stat_tgt_port_indx_show(struct config_item
*item
,
560 struct se_lun
*lun
= to_stat_tgt_port(item
);
561 struct se_device
*dev
;
562 ssize_t ret
= -ENODEV
;
565 dev
= rcu_dereference(lun
->lun_se_dev
);
567 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", lun
->lun_rtpi
);
572 static ssize_t
target_stat_tgt_port_name_show(struct config_item
*item
,
575 struct se_lun
*lun
= to_stat_tgt_port(item
);
576 struct se_portal_group
*tpg
= lun
->lun_tpg
;
577 struct se_device
*dev
;
578 ssize_t ret
= -ENODEV
;
581 dev
= rcu_dereference(lun
->lun_se_dev
);
583 ret
= snprintf(page
, PAGE_SIZE
, "%sPort#%u\n",
584 tpg
->se_tpg_tfo
->fabric_name
,
590 static ssize_t
target_stat_tgt_port_port_index_show(struct config_item
*item
,
593 struct se_lun
*lun
= to_stat_tgt_port(item
);
594 struct se_portal_group
*tpg
= lun
->lun_tpg
;
595 struct se_device
*dev
;
596 ssize_t ret
= -ENODEV
;
599 dev
= rcu_dereference(lun
->lun_se_dev
);
601 ret
= snprintf(page
, PAGE_SIZE
, "%s%s%d\n",
602 tpg
->se_tpg_tfo
->tpg_get_wwn(tpg
), "+t+",
603 tpg
->se_tpg_tfo
->tpg_get_tag(tpg
));
608 static ssize_t
target_stat_tgt_port_in_cmds_show(struct config_item
*item
,
611 struct se_lun
*lun
= to_stat_tgt_port(item
);
612 struct se_device
*dev
;
613 ssize_t ret
= -ENODEV
;
616 dev
= rcu_dereference(lun
->lun_se_dev
);
618 ret
= snprintf(page
, PAGE_SIZE
, "%lu\n",
619 atomic_long_read(&lun
->lun_stats
.cmd_pdus
));
624 static ssize_t
target_stat_tgt_port_write_mbytes_show(struct config_item
*item
,
627 struct se_lun
*lun
= to_stat_tgt_port(item
);
628 struct se_device
*dev
;
629 ssize_t ret
= -ENODEV
;
632 dev
= rcu_dereference(lun
->lun_se_dev
);
634 ret
= snprintf(page
, PAGE_SIZE
, "%u\n",
635 (u32
)(atomic_long_read(&lun
->lun_stats
.rx_data_octets
) >> 20));
640 static ssize_t
target_stat_tgt_port_read_mbytes_show(struct config_item
*item
,
643 struct se_lun
*lun
= to_stat_tgt_port(item
);
644 struct se_device
*dev
;
645 ssize_t ret
= -ENODEV
;
648 dev
= rcu_dereference(lun
->lun_se_dev
);
650 ret
= snprintf(page
, PAGE_SIZE
, "%u\n",
651 (u32
)(atomic_long_read(&lun
->lun_stats
.tx_data_octets
) >> 20));
656 static ssize_t
target_stat_tgt_port_hs_in_cmds_show(struct config_item
*item
,
659 struct se_lun
*lun
= to_stat_tgt_port(item
);
660 struct se_device
*dev
;
661 ssize_t ret
= -ENODEV
;
664 dev
= rcu_dereference(lun
->lun_se_dev
);
666 /* FIXME: scsiTgtPortHsInCommands */
667 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", 0);
673 CONFIGFS_ATTR_RO(target_stat_tgt_port_
, inst
);
674 CONFIGFS_ATTR_RO(target_stat_tgt_port_
, dev
);
675 CONFIGFS_ATTR_RO(target_stat_tgt_port_
, indx
);
676 CONFIGFS_ATTR_RO(target_stat_tgt_port_
, name
);
677 CONFIGFS_ATTR_RO(target_stat_tgt_port_
, port_index
);
678 CONFIGFS_ATTR_RO(target_stat_tgt_port_
, in_cmds
);
679 CONFIGFS_ATTR_RO(target_stat_tgt_port_
, write_mbytes
);
680 CONFIGFS_ATTR_RO(target_stat_tgt_port_
, read_mbytes
);
681 CONFIGFS_ATTR_RO(target_stat_tgt_port_
, hs_in_cmds
);
683 static struct configfs_attribute
*target_stat_scsi_tgt_port_attrs
[] = {
684 &target_stat_tgt_port_attr_inst
,
685 &target_stat_tgt_port_attr_dev
,
686 &target_stat_tgt_port_attr_indx
,
687 &target_stat_tgt_port_attr_name
,
688 &target_stat_tgt_port_attr_port_index
,
689 &target_stat_tgt_port_attr_in_cmds
,
690 &target_stat_tgt_port_attr_write_mbytes
,
691 &target_stat_tgt_port_attr_read_mbytes
,
692 &target_stat_tgt_port_attr_hs_in_cmds
,
696 static const struct config_item_type target_stat_scsi_tgt_port_cit
= {
697 .ct_attrs
= target_stat_scsi_tgt_port_attrs
,
698 .ct_owner
= THIS_MODULE
,
702 * SCSI Transport Table
704 static struct se_lun
*to_transport_stat(struct config_item
*item
)
706 struct se_port_stat_grps
*pgrps
= container_of(to_config_group(item
),
707 struct se_port_stat_grps
, scsi_transport_group
);
708 return container_of(pgrps
, struct se_lun
, port_stat_grps
);
711 static ssize_t
target_stat_transport_inst_show(struct config_item
*item
,
714 struct se_lun
*lun
= to_transport_stat(item
);
715 struct se_device
*dev
;
716 ssize_t ret
= -ENODEV
;
719 dev
= rcu_dereference(lun
->lun_se_dev
);
721 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", dev
->hba_index
);
726 static ssize_t
target_stat_transport_device_show(struct config_item
*item
,
729 struct se_lun
*lun
= to_transport_stat(item
);
730 struct se_device
*dev
;
731 struct se_portal_group
*tpg
= lun
->lun_tpg
;
732 ssize_t ret
= -ENODEV
;
735 dev
= rcu_dereference(lun
->lun_se_dev
);
737 /* scsiTransportType */
738 ret
= snprintf(page
, PAGE_SIZE
, "scsiTransport%s\n",
739 tpg
->se_tpg_tfo
->fabric_name
);
745 static ssize_t
target_stat_transport_indx_show(struct config_item
*item
,
748 struct se_lun
*lun
= to_transport_stat(item
);
749 struct se_device
*dev
;
750 struct se_portal_group
*tpg
= lun
->lun_tpg
;
751 ssize_t ret
= -ENODEV
;
754 dev
= rcu_dereference(lun
->lun_se_dev
);
756 ret
= snprintf(page
, PAGE_SIZE
, "%u\n",
757 tpg
->se_tpg_tfo
->tpg_get_inst_index(tpg
));
762 static ssize_t
target_stat_transport_dev_name_show(struct config_item
*item
,
765 struct se_lun
*lun
= to_transport_stat(item
);
766 struct se_device
*dev
;
767 struct se_portal_group
*tpg
= lun
->lun_tpg
;
769 ssize_t ret
= -ENODEV
;
772 dev
= rcu_dereference(lun
->lun_se_dev
);
775 /* scsiTransportDevName */
776 ret
= snprintf(page
, PAGE_SIZE
, "%s+%s\n",
777 tpg
->se_tpg_tfo
->tpg_get_wwn(tpg
),
778 (strlen(wwn
->unit_serial
)) ? wwn
->unit_serial
:
785 static ssize_t
target_stat_transport_proto_id_show(struct config_item
*item
,
788 struct se_lun
*lun
= to_transport_stat(item
);
789 struct se_device
*dev
;
790 struct se_portal_group
*tpg
= lun
->lun_tpg
;
791 ssize_t ret
= -ENODEV
;
794 dev
= rcu_dereference(lun
->lun_se_dev
);
796 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", tpg
->proto_id
);
801 CONFIGFS_ATTR_RO(target_stat_transport_
, inst
);
802 CONFIGFS_ATTR_RO(target_stat_transport_
, device
);
803 CONFIGFS_ATTR_RO(target_stat_transport_
, indx
);
804 CONFIGFS_ATTR_RO(target_stat_transport_
, dev_name
);
805 CONFIGFS_ATTR_RO(target_stat_transport_
, proto_id
);
807 static struct configfs_attribute
*target_stat_scsi_transport_attrs
[] = {
808 &target_stat_transport_attr_inst
,
809 &target_stat_transport_attr_device
,
810 &target_stat_transport_attr_indx
,
811 &target_stat_transport_attr_dev_name
,
812 &target_stat_transport_attr_proto_id
,
816 static const struct config_item_type target_stat_scsi_transport_cit
= {
817 .ct_attrs
= target_stat_scsi_transport_attrs
,
818 .ct_owner
= THIS_MODULE
,
822 * Called from target_core_fabric_configfs.c:target_fabric_make_lun() to setup
823 * the target port statistics groups + configfs CITs located in target_core_stat.c
825 void target_stat_setup_port_default_groups(struct se_lun
*lun
)
827 config_group_init_type_name(&lun
->port_stat_grps
.scsi_port_group
,
828 "scsi_port", &target_stat_scsi_port_cit
);
829 configfs_add_default_group(&lun
->port_stat_grps
.scsi_port_group
,
830 &lun
->port_stat_grps
.stat_group
);
832 config_group_init_type_name(&lun
->port_stat_grps
.scsi_tgt_port_group
,
833 "scsi_tgt_port", &target_stat_scsi_tgt_port_cit
);
834 configfs_add_default_group(&lun
->port_stat_grps
.scsi_tgt_port_group
,
835 &lun
->port_stat_grps
.stat_group
);
837 config_group_init_type_name(&lun
->port_stat_grps
.scsi_transport_group
,
838 "scsi_transport", &target_stat_scsi_transport_cit
);
839 configfs_add_default_group(&lun
->port_stat_grps
.scsi_transport_group
,
840 &lun
->port_stat_grps
.stat_group
);
844 * SCSI Authorized Initiator Table
847 static struct se_lun_acl
*auth_to_lacl(struct config_item
*item
)
849 struct se_ml_stat_grps
*lgrps
= container_of(to_config_group(item
),
850 struct se_ml_stat_grps
, scsi_auth_intr_group
);
851 return container_of(lgrps
, struct se_lun_acl
, ml_stat_grps
);
854 static ssize_t
target_stat_auth_inst_show(struct config_item
*item
,
857 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
858 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
859 struct se_dev_entry
*deve
;
860 struct se_portal_group
*tpg
;
864 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
871 ret
= snprintf(page
, PAGE_SIZE
, "%u\n",
872 tpg
->se_tpg_tfo
->tpg_get_inst_index(tpg
));
877 static ssize_t
target_stat_auth_dev_show(struct config_item
*item
,
880 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
881 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
882 struct se_dev_entry
*deve
;
887 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
892 lun
= rcu_dereference(deve
->se_lun
);
893 /* scsiDeviceIndex */
894 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", lun
->lun_index
);
899 static ssize_t
target_stat_auth_port_show(struct config_item
*item
,
902 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
903 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
904 struct se_dev_entry
*deve
;
905 struct se_portal_group
*tpg
;
909 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
915 /* scsiAuthIntrTgtPortIndex */
916 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", tpg
->se_tpg_tfo
->tpg_get_tag(tpg
));
921 static ssize_t
target_stat_auth_indx_show(struct config_item
*item
,
924 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
925 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
926 struct se_dev_entry
*deve
;
930 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
935 /* scsiAuthIntrIndex */
936 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", nacl
->acl_index
);
941 static ssize_t
target_stat_auth_dev_or_port_show(struct config_item
*item
,
944 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
945 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
946 struct se_dev_entry
*deve
;
950 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
955 /* scsiAuthIntrDevOrPort */
956 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", 1);
961 static ssize_t
target_stat_auth_intr_name_show(struct config_item
*item
,
964 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
965 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
966 struct se_dev_entry
*deve
;
970 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
975 /* scsiAuthIntrName */
976 ret
= snprintf(page
, PAGE_SIZE
, "%s\n", nacl
->initiatorname
);
981 static ssize_t
target_stat_auth_map_indx_show(struct config_item
*item
,
984 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
985 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
986 struct se_dev_entry
*deve
;
990 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
995 /* FIXME: scsiAuthIntrLunMapIndex */
996 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", 0);
1001 static ssize_t
target_stat_auth_att_count_show(struct config_item
*item
,
1004 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
1005 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1006 struct se_dev_entry
*deve
;
1010 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
1015 /* scsiAuthIntrAttachedTimes */
1016 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", deve
->attach_count
);
1021 static ssize_t
target_stat_auth_num_cmds_show(struct config_item
*item
,
1024 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
1025 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1026 struct se_dev_entry
*deve
;
1030 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
1035 /* scsiAuthIntrOutCommands */
1036 ret
= snprintf(page
, PAGE_SIZE
, "%lu\n",
1037 atomic_long_read(&deve
->total_cmds
));
1042 static ssize_t
target_stat_auth_read_mbytes_show(struct config_item
*item
,
1045 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
1046 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1047 struct se_dev_entry
*deve
;
1051 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
1056 /* scsiAuthIntrReadMegaBytes */
1057 ret
= snprintf(page
, PAGE_SIZE
, "%u\n",
1058 (u32
)(atomic_long_read(&deve
->read_bytes
) >> 20));
1063 static ssize_t
target_stat_auth_write_mbytes_show(struct config_item
*item
,
1066 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
1067 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1068 struct se_dev_entry
*deve
;
1072 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
1077 /* scsiAuthIntrWrittenMegaBytes */
1078 ret
= snprintf(page
, PAGE_SIZE
, "%u\n",
1079 (u32
)(atomic_long_read(&deve
->write_bytes
) >> 20));
1084 static ssize_t
target_stat_auth_hs_num_cmds_show(struct config_item
*item
,
1087 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
1088 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1089 struct se_dev_entry
*deve
;
1093 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
1098 /* FIXME: scsiAuthIntrHSOutCommands */
1099 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", 0);
1104 static ssize_t
target_stat_auth_creation_time_show(struct config_item
*item
,
1107 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
1108 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1109 struct se_dev_entry
*deve
;
1113 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
1118 /* scsiAuthIntrLastCreation */
1119 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", (u32
)(((u32
)deve
->creation_time
-
1120 INITIAL_JIFFIES
) * 100 / HZ
));
1125 static ssize_t
target_stat_auth_row_status_show(struct config_item
*item
,
1128 struct se_lun_acl
*lacl
= auth_to_lacl(item
);
1129 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1130 struct se_dev_entry
*deve
;
1134 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
1139 /* FIXME: scsiAuthIntrRowStatus */
1140 ret
= snprintf(page
, PAGE_SIZE
, "Ready\n");
1145 CONFIGFS_ATTR_RO(target_stat_auth_
, inst
);
1146 CONFIGFS_ATTR_RO(target_stat_auth_
, dev
);
1147 CONFIGFS_ATTR_RO(target_stat_auth_
, port
);
1148 CONFIGFS_ATTR_RO(target_stat_auth_
, indx
);
1149 CONFIGFS_ATTR_RO(target_stat_auth_
, dev_or_port
);
1150 CONFIGFS_ATTR_RO(target_stat_auth_
, intr_name
);
1151 CONFIGFS_ATTR_RO(target_stat_auth_
, map_indx
);
1152 CONFIGFS_ATTR_RO(target_stat_auth_
, att_count
);
1153 CONFIGFS_ATTR_RO(target_stat_auth_
, num_cmds
);
1154 CONFIGFS_ATTR_RO(target_stat_auth_
, read_mbytes
);
1155 CONFIGFS_ATTR_RO(target_stat_auth_
, write_mbytes
);
1156 CONFIGFS_ATTR_RO(target_stat_auth_
, hs_num_cmds
);
1157 CONFIGFS_ATTR_RO(target_stat_auth_
, creation_time
);
1158 CONFIGFS_ATTR_RO(target_stat_auth_
, row_status
);
1160 static struct configfs_attribute
*target_stat_scsi_auth_intr_attrs
[] = {
1161 &target_stat_auth_attr_inst
,
1162 &target_stat_auth_attr_dev
,
1163 &target_stat_auth_attr_port
,
1164 &target_stat_auth_attr_indx
,
1165 &target_stat_auth_attr_dev_or_port
,
1166 &target_stat_auth_attr_intr_name
,
1167 &target_stat_auth_attr_map_indx
,
1168 &target_stat_auth_attr_att_count
,
1169 &target_stat_auth_attr_num_cmds
,
1170 &target_stat_auth_attr_read_mbytes
,
1171 &target_stat_auth_attr_write_mbytes
,
1172 &target_stat_auth_attr_hs_num_cmds
,
1173 &target_stat_auth_attr_creation_time
,
1174 &target_stat_auth_attr_row_status
,
1178 static const struct config_item_type target_stat_scsi_auth_intr_cit
= {
1179 .ct_attrs
= target_stat_scsi_auth_intr_attrs
,
1180 .ct_owner
= THIS_MODULE
,
1184 * SCSI Attached Initiator Port Table
1187 static struct se_lun_acl
*iport_to_lacl(struct config_item
*item
)
1189 struct se_ml_stat_grps
*lgrps
= container_of(to_config_group(item
),
1190 struct se_ml_stat_grps
, scsi_att_intr_port_group
);
1191 return container_of(lgrps
, struct se_lun_acl
, ml_stat_grps
);
1194 static ssize_t
target_stat_iport_inst_show(struct config_item
*item
,
1197 struct se_lun_acl
*lacl
= iport_to_lacl(item
);
1198 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1199 struct se_dev_entry
*deve
;
1200 struct se_portal_group
*tpg
;
1204 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
1211 ret
= snprintf(page
, PAGE_SIZE
, "%u\n",
1212 tpg
->se_tpg_tfo
->tpg_get_inst_index(tpg
));
1217 static ssize_t
target_stat_iport_dev_show(struct config_item
*item
,
1220 struct se_lun_acl
*lacl
= iport_to_lacl(item
);
1221 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1222 struct se_dev_entry
*deve
;
1227 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
1232 lun
= rcu_dereference(deve
->se_lun
);
1233 /* scsiDeviceIndex */
1234 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", lun
->lun_index
);
1239 static ssize_t
target_stat_iport_port_show(struct config_item
*item
,
1242 struct se_lun_acl
*lacl
= iport_to_lacl(item
);
1243 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1244 struct se_dev_entry
*deve
;
1245 struct se_portal_group
*tpg
;
1249 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
1256 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", tpg
->se_tpg_tfo
->tpg_get_tag(tpg
));
1261 static ssize_t
target_stat_iport_indx_show(struct config_item
*item
,
1264 struct se_lun_acl
*lacl
= iport_to_lacl(item
);
1265 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1266 struct se_session
*se_sess
;
1267 struct se_portal_group
*tpg
;
1270 spin_lock_irq(&nacl
->nacl_sess_lock
);
1271 se_sess
= nacl
->nacl_sess
;
1273 spin_unlock_irq(&nacl
->nacl_sess_lock
);
1278 /* scsiAttIntrPortIndex */
1279 ret
= snprintf(page
, PAGE_SIZE
, "%u\n",
1280 tpg
->se_tpg_tfo
->sess_get_index(se_sess
));
1281 spin_unlock_irq(&nacl
->nacl_sess_lock
);
1285 static ssize_t
target_stat_iport_port_auth_indx_show(struct config_item
*item
,
1288 struct se_lun_acl
*lacl
= iport_to_lacl(item
);
1289 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1290 struct se_dev_entry
*deve
;
1294 deve
= target_nacl_find_deve(nacl
, lacl
->mapped_lun
);
1299 /* scsiAttIntrPortAuthIntrIdx */
1300 ret
= snprintf(page
, PAGE_SIZE
, "%u\n", nacl
->acl_index
);
1305 static ssize_t
target_stat_iport_port_ident_show(struct config_item
*item
,
1308 struct se_lun_acl
*lacl
= iport_to_lacl(item
);
1309 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
1310 struct se_session
*se_sess
;
1311 struct se_portal_group
*tpg
;
1313 unsigned char buf
[64];
1315 spin_lock_irq(&nacl
->nacl_sess_lock
);
1316 se_sess
= nacl
->nacl_sess
;
1318 spin_unlock_irq(&nacl
->nacl_sess_lock
);
1323 /* scsiAttIntrPortName+scsiAttIntrPortIdentifier */
1325 if (tpg
->se_tpg_tfo
->sess_get_initiator_sid
!= NULL
)
1326 tpg
->se_tpg_tfo
->sess_get_initiator_sid(se_sess
, buf
, 64);
1328 ret
= snprintf(page
, PAGE_SIZE
, "%s+i+%s\n", nacl
->initiatorname
, buf
);
1329 spin_unlock_irq(&nacl
->nacl_sess_lock
);
1333 CONFIGFS_ATTR_RO(target_stat_iport_
, inst
);
1334 CONFIGFS_ATTR_RO(target_stat_iport_
, dev
);
1335 CONFIGFS_ATTR_RO(target_stat_iport_
, port
);
1336 CONFIGFS_ATTR_RO(target_stat_iport_
, indx
);
1337 CONFIGFS_ATTR_RO(target_stat_iport_
, port_auth_indx
);
1338 CONFIGFS_ATTR_RO(target_stat_iport_
, port_ident
);
1340 static struct configfs_attribute
*target_stat_scsi_ath_intr_port_attrs
[] = {
1341 &target_stat_iport_attr_inst
,
1342 &target_stat_iport_attr_dev
,
1343 &target_stat_iport_attr_port
,
1344 &target_stat_iport_attr_indx
,
1345 &target_stat_iport_attr_port_auth_indx
,
1346 &target_stat_iport_attr_port_ident
,
1350 static const struct config_item_type target_stat_scsi_att_intr_port_cit
= {
1351 .ct_attrs
= target_stat_scsi_ath_intr_port_attrs
,
1352 .ct_owner
= THIS_MODULE
,
1356 * Called from target_core_fabric_configfs.c:target_fabric_make_mappedlun() to setup
1357 * the target MappedLUN statistics groups + configfs CITs located in target_core_stat.c
1359 void target_stat_setup_mappedlun_default_groups(struct se_lun_acl
*lacl
)
1361 config_group_init_type_name(&lacl
->ml_stat_grps
.scsi_auth_intr_group
,
1362 "scsi_auth_intr", &target_stat_scsi_auth_intr_cit
);
1363 configfs_add_default_group(&lacl
->ml_stat_grps
.scsi_auth_intr_group
,
1364 &lacl
->ml_stat_grps
.stat_group
);
1366 config_group_init_type_name(&lacl
->ml_stat_grps
.scsi_att_intr_port_group
,
1367 "scsi_att_intr_port", &target_stat_scsi_att_intr_port_cit
);
1368 configfs_add_default_group(&lacl
->ml_stat_grps
.scsi_att_intr_port_group
,
1369 &lacl
->ml_stat_grps
.stat_group
);