blob: 220bbc91cebdb3184d8fd11a30beebf25cff3133 [file] [log] [blame]
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -07001/*
Peter Jones4e639fd2010-02-25 15:37:17 -05002 * Copyright 2007-2010 Red Hat, Inc.
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -07003 * by Peter Jones <pjones@redhat.com>
4 * Copyright 2008 IBM, Inc.
5 * by Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
6 * Copyright 2008
7 * by Konrad Rzeszutek <ketuzsezr@darnok.org>
8 *
9 * This code exposes the iSCSI Boot Format Table to userland via sysfs.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License v2.0 as published by
13 * the Free Software Foundation
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * Changelog:
21 *
Peter Jones4e639fd2010-02-25 15:37:17 -050022 * 06 Jan 2010 - Peter Jones <pjones@redhat.com>
23 * New changelog entries are in the git log from now on. Not here.
24 *
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -070025 * 14 Mar 2008 - Konrad Rzeszutek <ketuzsezr@darnok.org>
26 * Updated comments and copyrights. (v0.4.9)
27 *
28 * 11 Feb 2008 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
29 * Converted to using ibft_addr. (v0.4.8)
30 *
31 * 8 Feb 2008 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
32 * Combined two functions in one: reserve_ibft_region. (v0.4.7)
33 *
34 * 30 Jan 2008 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
35 * Added logic to handle IPv6 addresses. (v0.4.6)
36 *
37 * 25 Jan 2008 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
38 * Added logic to handle badly not-to-spec iBFT. (v0.4.5)
39 *
40 * 4 Jan 2008 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
41 * Added __init to function declarations. (v0.4.4)
42 *
43 * 21 Dec 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
44 * Updated kobject registration, combined unregister functions in one
45 * and code and style cleanup. (v0.4.3)
46 *
47 * 5 Dec 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
48 * Added end-markers to enums and re-organized kobject registration. (v0.4.2)
49 *
50 * 4 Dec 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
51 * Created 'device' sysfs link to the NIC and style cleanup. (v0.4.1)
52 *
53 * 28 Nov 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
54 * Added sysfs-ibft documentation, moved 'find_ibft' function to
55 * in its own file and added text attributes for every struct field. (v0.4)
56 *
57 * 21 Nov 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
58 * Added text attributes emulating OpenFirmware /proc/device-tree naming.
59 * Removed binary /sysfs interface (v0.3)
60 *
61 * 29 Aug 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
62 * Added functionality in setup.c to reserve iBFT region. (v0.2)
63 *
64 * 27 Aug 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
65 * First version exposing iBFT data via a binary /sysfs. (v0.1)
66 *
67 */
68
69
70#include <linux/blkdev.h>
71#include <linux/capability.h>
72#include <linux/ctype.h>
73#include <linux/device.h>
74#include <linux/err.h>
75#include <linux/init.h>
76#include <linux/iscsi_ibft.h>
77#include <linux/limits.h>
78#include <linux/module.h>
79#include <linux/pci.h>
80#include <linux/slab.h>
81#include <linux/stat.h>
82#include <linux/string.h>
83#include <linux/types.h>
Peter Jones4e639fd2010-02-25 15:37:17 -050084#include <linux/acpi.h>
Mike Christieb33a84a2010-04-12 18:06:18 +000085#include <linux/iscsi_boot_sysfs.h>
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -070086
Peter Jones4e639fd2010-02-25 15:37:17 -050087#define IBFT_ISCSI_VERSION "0.5.0"
88#define IBFT_ISCSI_DATE "2010-Feb-25"
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -070089
Joe Perches85ee7a12011-04-23 20:38:19 -070090MODULE_AUTHOR("Peter Jones <pjones@redhat.com> and "
91 "Konrad Rzeszutek <ketuzsezr@darnok.org>");
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -070092MODULE_DESCRIPTION("sysfs interface to BIOS iBFT information");
93MODULE_LICENSE("GPL");
94MODULE_VERSION(IBFT_ISCSI_VERSION);
95
Thomas Tai2b9ac2132019-07-18 18:37:34 +000096#ifndef CONFIG_ISCSI_IBFT_FIND
97struct acpi_table_ibft *ibft_addr;
98#endif
99
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700100struct ibft_hdr {
101 u8 id;
102 u8 version;
103 u16 length;
104 u8 index;
105 u8 flags;
106} __attribute__((__packed__));
107
108struct ibft_control {
109 struct ibft_hdr hdr;
110 u16 extensions;
111 u16 initiator_off;
112 u16 nic0_off;
113 u16 tgt0_off;
114 u16 nic1_off;
115 u16 tgt1_off;
116} __attribute__((__packed__));
117
118struct ibft_initiator {
119 struct ibft_hdr hdr;
120 char isns_server[16];
121 char slp_server[16];
122 char pri_radius_server[16];
123 char sec_radius_server[16];
124 u16 initiator_name_len;
125 u16 initiator_name_off;
126} __attribute__((__packed__));
127
128struct ibft_nic {
129 struct ibft_hdr hdr;
130 char ip_addr[16];
131 u8 subnet_mask_prefix;
132 u8 origin;
133 char gateway[16];
134 char primary_dns[16];
135 char secondary_dns[16];
136 char dhcp[16];
137 u16 vlan;
138 char mac[6];
139 u16 pci_bdf;
140 u16 hostname_len;
141 u16 hostname_off;
142} __attribute__((__packed__));
143
144struct ibft_tgt {
145 struct ibft_hdr hdr;
146 char ip_addr[16];
147 u16 port;
148 char lun[8];
149 u8 chap_type;
150 u8 nic_assoc;
151 u16 tgt_name_len;
152 u16 tgt_name_off;
153 u16 chap_name_len;
154 u16 chap_name_off;
155 u16 chap_secret_len;
156 u16 chap_secret_off;
157 u16 rev_chap_name_len;
158 u16 rev_chap_name_off;
159 u16 rev_chap_secret_len;
160 u16 rev_chap_secret_off;
161} __attribute__((__packed__));
162
163/*
164 * The kobject different types and its names.
165 *
166*/
167enum ibft_id {
168 id_reserved = 0, /* We don't support. */
169 id_control = 1, /* Should show up only once and is not exported. */
170 id_initiator = 2,
171 id_nic = 3,
172 id_target = 4,
173 id_extensions = 5, /* We don't support. */
174 id_end_marker,
175};
176
177/*
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700178 * The kobject and attribute structures.
179 */
180
181struct ibft_kobject {
Peter Jones4e639fd2010-02-25 15:37:17 -0500182 struct acpi_table_ibft *header;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700183 union {
184 struct ibft_initiator *initiator;
185 struct ibft_nic *nic;
186 struct ibft_tgt *tgt;
187 struct ibft_hdr *hdr;
188 };
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700189};
190
Mike Christieb33a84a2010-04-12 18:06:18 +0000191static struct iscsi_boot_kset *boot_kset;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700192
Chris Leeche6050b62015-05-28 12:51:51 -0700193/* fully null address */
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700194static const char nulls[16];
195
Chris Leeche6050b62015-05-28 12:51:51 -0700196/* IPv4-mapped IPv6 ::ffff:0.0.0.0 */
197static const char mapped_nulls[16] = { 0x00, 0x00, 0x00, 0x00,
198 0x00, 0x00, 0x00, 0x00,
199 0x00, 0x00, 0xff, 0xff,
200 0x00, 0x00, 0x00, 0x00 };
201
202static int address_not_null(u8 *ip)
203{
204 return (memcmp(ip, nulls, 16) && memcmp(ip, mapped_nulls, 16));
205}
206
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700207/*
208 * Helper functions to parse data properly.
209 */
210static ssize_t sprintf_ipaddr(char *buf, u8 *ip)
211{
212 char *str = buf;
213
214 if (ip[0] == 0 && ip[1] == 0 && ip[2] == 0 && ip[3] == 0 &&
215 ip[4] == 0 && ip[5] == 0 && ip[6] == 0 && ip[7] == 0 &&
216 ip[8] == 0 && ip[9] == 0 && ip[10] == 0xff && ip[11] == 0xff) {
217 /*
218 * IPV4
219 */
Harvey Harrison63779432008-10-31 00:56:00 -0700220 str += sprintf(buf, "%pI4", ip + 12);
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700221 } else {
222 /*
223 * IPv6
224 */
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700225 str += sprintf(str, "%pI6", ip);
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700226 }
227 str += sprintf(str, "\n");
228 return str - buf;
229}
230
231static ssize_t sprintf_string(char *str, int len, char *buf)
232{
233 return sprintf(str, "%.*s\n", len, buf);
234}
235
236/*
237 * Helper function to verify the IBFT header.
238 */
239static int ibft_verify_hdr(char *t, struct ibft_hdr *hdr, int id, int length)
240{
241 if (hdr->id != id) {
Mike Christieb33a84a2010-04-12 18:06:18 +0000242 printk(KERN_ERR "iBFT error: We expected the %s " \
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700243 "field header.id to have %d but " \
Mike Christieb33a84a2010-04-12 18:06:18 +0000244 "found %d instead!\n", t, id, hdr->id);
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700245 return -ENODEV;
246 }
247 if (hdr->length != length) {
Mike Christieb33a84a2010-04-12 18:06:18 +0000248 printk(KERN_ERR "iBFT error: We expected the %s " \
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700249 "field header.length to have %d but " \
Mike Christieb33a84a2010-04-12 18:06:18 +0000250 "found %d instead!\n", t, length, hdr->length);
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700251 return -ENODEV;
252 }
253
254 return 0;
255}
256
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700257/*
258 * Routines for parsing the iBFT data to be human readable.
259 */
Mike Christieb33a84a2010-04-12 18:06:18 +0000260static ssize_t ibft_attr_show_initiator(void *data, int type, char *buf)
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700261{
Mike Christieb33a84a2010-04-12 18:06:18 +0000262 struct ibft_kobject *entry = data;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700263 struct ibft_initiator *initiator = entry->initiator;
264 void *ibft_loc = entry->header;
265 char *str = buf;
266
267 if (!initiator)
268 return 0;
269
Mike Christieb33a84a2010-04-12 18:06:18 +0000270 switch (type) {
271 case ISCSI_BOOT_INI_INDEX:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700272 str += sprintf(str, "%d\n", initiator->hdr.index);
273 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000274 case ISCSI_BOOT_INI_FLAGS:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700275 str += sprintf(str, "%d\n", initiator->hdr.flags);
276 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000277 case ISCSI_BOOT_INI_ISNS_SERVER:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700278 str += sprintf_ipaddr(str, initiator->isns_server);
279 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000280 case ISCSI_BOOT_INI_SLP_SERVER:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700281 str += sprintf_ipaddr(str, initiator->slp_server);
282 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000283 case ISCSI_BOOT_INI_PRI_RADIUS_SERVER:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700284 str += sprintf_ipaddr(str, initiator->pri_radius_server);
285 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000286 case ISCSI_BOOT_INI_SEC_RADIUS_SERVER:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700287 str += sprintf_ipaddr(str, initiator->sec_radius_server);
288 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000289 case ISCSI_BOOT_INI_INITIATOR_NAME:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700290 str += sprintf_string(str, initiator->initiator_name_len,
291 (char *)ibft_loc +
292 initiator->initiator_name_off);
293 break;
294 default:
295 break;
296 }
297
298 return str - buf;
299}
300
Mike Christieb33a84a2010-04-12 18:06:18 +0000301static ssize_t ibft_attr_show_nic(void *data, int type, char *buf)
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700302{
Mike Christieb33a84a2010-04-12 18:06:18 +0000303 struct ibft_kobject *entry = data;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700304 struct ibft_nic *nic = entry->nic;
305 void *ibft_loc = entry->header;
306 char *str = buf;
Joe Perches00e78252010-01-14 11:34:19 -0500307 __be32 val;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700308
309 if (!nic)
310 return 0;
311
Mike Christieb33a84a2010-04-12 18:06:18 +0000312 switch (type) {
313 case ISCSI_BOOT_ETH_INDEX:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700314 str += sprintf(str, "%d\n", nic->hdr.index);
315 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000316 case ISCSI_BOOT_ETH_FLAGS:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700317 str += sprintf(str, "%d\n", nic->hdr.flags);
318 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000319 case ISCSI_BOOT_ETH_IP_ADDR:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700320 str += sprintf_ipaddr(str, nic->ip_addr);
321 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000322 case ISCSI_BOOT_ETH_SUBNET_MASK:
Joe Perches00e78252010-01-14 11:34:19 -0500323 val = cpu_to_be32(~((1 << (32-nic->subnet_mask_prefix))-1));
324 str += sprintf(str, "%pI4", &val);
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700325 break;
Hannes Reinecke9a994252016-02-25 09:56:04 -0800326 case ISCSI_BOOT_ETH_PREFIX_LEN:
327 str += sprintf(str, "%d\n", nic->subnet_mask_prefix);
328 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000329 case ISCSI_BOOT_ETH_ORIGIN:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700330 str += sprintf(str, "%d\n", nic->origin);
331 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000332 case ISCSI_BOOT_ETH_GATEWAY:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700333 str += sprintf_ipaddr(str, nic->gateway);
334 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000335 case ISCSI_BOOT_ETH_PRIMARY_DNS:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700336 str += sprintf_ipaddr(str, nic->primary_dns);
337 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000338 case ISCSI_BOOT_ETH_SECONDARY_DNS:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700339 str += sprintf_ipaddr(str, nic->secondary_dns);
340 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000341 case ISCSI_BOOT_ETH_DHCP:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700342 str += sprintf_ipaddr(str, nic->dhcp);
343 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000344 case ISCSI_BOOT_ETH_VLAN:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700345 str += sprintf(str, "%d\n", nic->vlan);
346 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000347 case ISCSI_BOOT_ETH_MAC:
hartleys2c352942010-01-05 06:37:43 +0000348 str += sprintf(str, "%pM\n", nic->mac);
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700349 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000350 case ISCSI_BOOT_ETH_HOSTNAME:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700351 str += sprintf_string(str, nic->hostname_len,
352 (char *)ibft_loc + nic->hostname_off);
353 break;
354 default:
355 break;
356 }
357
358 return str - buf;
359};
360
Mike Christieb33a84a2010-04-12 18:06:18 +0000361static ssize_t ibft_attr_show_target(void *data, int type, char *buf)
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700362{
Mike Christieb33a84a2010-04-12 18:06:18 +0000363 struct ibft_kobject *entry = data;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700364 struct ibft_tgt *tgt = entry->tgt;
365 void *ibft_loc = entry->header;
366 char *str = buf;
367 int i;
368
369 if (!tgt)
370 return 0;
371
Mike Christieb33a84a2010-04-12 18:06:18 +0000372 switch (type) {
373 case ISCSI_BOOT_TGT_INDEX:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700374 str += sprintf(str, "%d\n", tgt->hdr.index);
375 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000376 case ISCSI_BOOT_TGT_FLAGS:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700377 str += sprintf(str, "%d\n", tgt->hdr.flags);
378 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000379 case ISCSI_BOOT_TGT_IP_ADDR:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700380 str += sprintf_ipaddr(str, tgt->ip_addr);
381 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000382 case ISCSI_BOOT_TGT_PORT:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700383 str += sprintf(str, "%d\n", tgt->port);
384 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000385 case ISCSI_BOOT_TGT_LUN:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700386 for (i = 0; i < 8; i++)
387 str += sprintf(str, "%x", (u8)tgt->lun[i]);
388 str += sprintf(str, "\n");
389 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000390 case ISCSI_BOOT_TGT_NIC_ASSOC:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700391 str += sprintf(str, "%d\n", tgt->nic_assoc);
392 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000393 case ISCSI_BOOT_TGT_CHAP_TYPE:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700394 str += sprintf(str, "%d\n", tgt->chap_type);
395 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000396 case ISCSI_BOOT_TGT_NAME:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700397 str += sprintf_string(str, tgt->tgt_name_len,
398 (char *)ibft_loc + tgt->tgt_name_off);
399 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000400 case ISCSI_BOOT_TGT_CHAP_NAME:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700401 str += sprintf_string(str, tgt->chap_name_len,
402 (char *)ibft_loc + tgt->chap_name_off);
403 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000404 case ISCSI_BOOT_TGT_CHAP_SECRET:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700405 str += sprintf_string(str, tgt->chap_secret_len,
406 (char *)ibft_loc + tgt->chap_secret_off);
407 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000408 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700409 str += sprintf_string(str, tgt->rev_chap_name_len,
410 (char *)ibft_loc +
411 tgt->rev_chap_name_off);
412 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000413 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700414 str += sprintf_string(str, tgt->rev_chap_secret_len,
415 (char *)ibft_loc +
416 tgt->rev_chap_secret_off);
417 break;
418 default:
419 break;
420 }
421
422 return str - buf;
423}
424
David Bondb3c8eb52016-03-23 21:49:26 -0400425static ssize_t ibft_attr_show_acpitbl(void *data, int type, char *buf)
426{
427 struct ibft_kobject *entry = data;
428 char *str = buf;
429
430 switch (type) {
431 case ISCSI_BOOT_ACPITBL_SIGNATURE:
432 str += sprintf_string(str, ACPI_NAME_SIZE,
433 entry->header->header.signature);
434 break;
435 case ISCSI_BOOT_ACPITBL_OEM_ID:
436 str += sprintf_string(str, ACPI_OEM_ID_SIZE,
437 entry->header->header.oem_id);
438 break;
439 case ISCSI_BOOT_ACPITBL_OEM_TABLE_ID:
440 str += sprintf_string(str, ACPI_OEM_TABLE_ID_SIZE,
441 entry->header->header.oem_table_id);
442 break;
443 default:
444 break;
445 }
446
447 return str - buf;
448}
449
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700450static int __init ibft_check_device(void)
451{
452 int len;
453 u8 *pos;
454 u8 csum = 0;
455
Peter Jones4e639fd2010-02-25 15:37:17 -0500456 len = ibft_addr->header.length;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700457
458 /* Sanity checking of iBFT. */
Peter Jones4e639fd2010-02-25 15:37:17 -0500459 if (ibft_addr->header.revision != 1) {
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700460 printk(KERN_ERR "iBFT module supports only revision 1, " \
Peter Jones4e639fd2010-02-25 15:37:17 -0500461 "while this is %d.\n",
462 ibft_addr->header.revision);
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700463 return -ENOENT;
464 }
465 for (pos = (u8 *)ibft_addr; pos < (u8 *)ibft_addr + len; pos++)
466 csum += *pos;
467
468 if (csum) {
469 printk(KERN_ERR "iBFT has incorrect checksum (0x%x)!\n", csum);
470 return -ENOENT;
471 }
472
473 return 0;
474}
475
476/*
Mike Christieb33a84a2010-04-12 18:06:18 +0000477 * Helper routiners to check to determine if the entry is valid
478 * in the proper iBFT structure.
479 */
Al Viro587a1f12011-07-23 23:11:19 -0400480static umode_t ibft_check_nic_for(void *data, int type)
Mike Christieb33a84a2010-04-12 18:06:18 +0000481{
482 struct ibft_kobject *entry = data;
483 struct ibft_nic *nic = entry->nic;
Al Viro587a1f12011-07-23 23:11:19 -0400484 umode_t rc = 0;
Mike Christieb33a84a2010-04-12 18:06:18 +0000485
486 switch (type) {
487 case ISCSI_BOOT_ETH_INDEX:
488 case ISCSI_BOOT_ETH_FLAGS:
489 rc = S_IRUGO;
490 break;
491 case ISCSI_BOOT_ETH_IP_ADDR:
Chris Leeche6050b62015-05-28 12:51:51 -0700492 if (address_not_null(nic->ip_addr))
Mike Christieb33a84a2010-04-12 18:06:18 +0000493 rc = S_IRUGO;
494 break;
Hannes Reinecke9a994252016-02-25 09:56:04 -0800495 case ISCSI_BOOT_ETH_PREFIX_LEN:
Mike Christieb33a84a2010-04-12 18:06:18 +0000496 case ISCSI_BOOT_ETH_SUBNET_MASK:
497 if (nic->subnet_mask_prefix)
498 rc = S_IRUGO;
499 break;
500 case ISCSI_BOOT_ETH_ORIGIN:
501 rc = S_IRUGO;
502 break;
503 case ISCSI_BOOT_ETH_GATEWAY:
Chris Leeche6050b62015-05-28 12:51:51 -0700504 if (address_not_null(nic->gateway))
Mike Christieb33a84a2010-04-12 18:06:18 +0000505 rc = S_IRUGO;
506 break;
507 case ISCSI_BOOT_ETH_PRIMARY_DNS:
Chris Leeche6050b62015-05-28 12:51:51 -0700508 if (address_not_null(nic->primary_dns))
Mike Christieb33a84a2010-04-12 18:06:18 +0000509 rc = S_IRUGO;
510 break;
511 case ISCSI_BOOT_ETH_SECONDARY_DNS:
Chris Leeche6050b62015-05-28 12:51:51 -0700512 if (address_not_null(nic->secondary_dns))
Mike Christieb33a84a2010-04-12 18:06:18 +0000513 rc = S_IRUGO;
514 break;
515 case ISCSI_BOOT_ETH_DHCP:
Chris Leeche6050b62015-05-28 12:51:51 -0700516 if (address_not_null(nic->dhcp))
Mike Christieb33a84a2010-04-12 18:06:18 +0000517 rc = S_IRUGO;
518 break;
519 case ISCSI_BOOT_ETH_VLAN:
520 case ISCSI_BOOT_ETH_MAC:
521 rc = S_IRUGO;
522 break;
523 case ISCSI_BOOT_ETH_HOSTNAME:
524 if (nic->hostname_off)
525 rc = S_IRUGO;
526 break;
527 default:
528 break;
529 }
530
531 return rc;
532}
533
Al Viro587a1f12011-07-23 23:11:19 -0400534static umode_t __init ibft_check_tgt_for(void *data, int type)
Mike Christieb33a84a2010-04-12 18:06:18 +0000535{
536 struct ibft_kobject *entry = data;
537 struct ibft_tgt *tgt = entry->tgt;
Al Viro587a1f12011-07-23 23:11:19 -0400538 umode_t rc = 0;
Mike Christieb33a84a2010-04-12 18:06:18 +0000539
540 switch (type) {
541 case ISCSI_BOOT_TGT_INDEX:
542 case ISCSI_BOOT_TGT_FLAGS:
543 case ISCSI_BOOT_TGT_IP_ADDR:
544 case ISCSI_BOOT_TGT_PORT:
545 case ISCSI_BOOT_TGT_LUN:
546 case ISCSI_BOOT_TGT_NIC_ASSOC:
547 case ISCSI_BOOT_TGT_CHAP_TYPE:
548 rc = S_IRUGO;
Gustavo A. R. Silva6263e822019-02-11 12:43:23 -0600549 break;
Mike Christieb33a84a2010-04-12 18:06:18 +0000550 case ISCSI_BOOT_TGT_NAME:
551 if (tgt->tgt_name_len)
552 rc = S_IRUGO;
553 break;
554 case ISCSI_BOOT_TGT_CHAP_NAME:
555 case ISCSI_BOOT_TGT_CHAP_SECRET:
556 if (tgt->chap_name_len)
557 rc = S_IRUGO;
558 break;
559 case ISCSI_BOOT_TGT_REV_CHAP_NAME:
560 case ISCSI_BOOT_TGT_REV_CHAP_SECRET:
561 if (tgt->rev_chap_name_len)
562 rc = S_IRUGO;
563 break;
564 default:
565 break;
566 }
567
568 return rc;
569}
570
Al Viro587a1f12011-07-23 23:11:19 -0400571static umode_t __init ibft_check_initiator_for(void *data, int type)
Mike Christieb33a84a2010-04-12 18:06:18 +0000572{
573 struct ibft_kobject *entry = data;
574 struct ibft_initiator *init = entry->initiator;
Al Viro587a1f12011-07-23 23:11:19 -0400575 umode_t rc = 0;
Mike Christieb33a84a2010-04-12 18:06:18 +0000576
577 switch (type) {
578 case ISCSI_BOOT_INI_INDEX:
579 case ISCSI_BOOT_INI_FLAGS:
580 rc = S_IRUGO;
581 break;
582 case ISCSI_BOOT_INI_ISNS_SERVER:
Chris Leeche6050b62015-05-28 12:51:51 -0700583 if (address_not_null(init->isns_server))
Mike Christieb33a84a2010-04-12 18:06:18 +0000584 rc = S_IRUGO;
585 break;
586 case ISCSI_BOOT_INI_SLP_SERVER:
Chris Leeche6050b62015-05-28 12:51:51 -0700587 if (address_not_null(init->slp_server))
Mike Christieb33a84a2010-04-12 18:06:18 +0000588 rc = S_IRUGO;
589 break;
590 case ISCSI_BOOT_INI_PRI_RADIUS_SERVER:
Chris Leeche6050b62015-05-28 12:51:51 -0700591 if (address_not_null(init->pri_radius_server))
Mike Christieb33a84a2010-04-12 18:06:18 +0000592 rc = S_IRUGO;
593 break;
594 case ISCSI_BOOT_INI_SEC_RADIUS_SERVER:
Chris Leeche6050b62015-05-28 12:51:51 -0700595 if (address_not_null(init->sec_radius_server))
Mike Christieb33a84a2010-04-12 18:06:18 +0000596 rc = S_IRUGO;
597 break;
598 case ISCSI_BOOT_INI_INITIATOR_NAME:
599 if (init->initiator_name_len)
600 rc = S_IRUGO;
601 break;
602 default:
603 break;
604 }
605
606 return rc;
607}
608
David Bondb3c8eb52016-03-23 21:49:26 -0400609static umode_t __init ibft_check_acpitbl_for(void *data, int type)
610{
611
612 umode_t rc = 0;
613
614 switch (type) {
615 case ISCSI_BOOT_ACPITBL_SIGNATURE:
616 case ISCSI_BOOT_ACPITBL_OEM_ID:
617 case ISCSI_BOOT_ACPITBL_OEM_TABLE_ID:
618 rc = S_IRUGO;
619 break;
620 default:
621 break;
622 }
623
624 return rc;
625}
626
Mike Christief457a462011-06-24 15:11:53 -0500627static void ibft_kobj_release(void *data)
628{
629 kfree(data);
630}
631
Mike Christieb33a84a2010-04-12 18:06:18 +0000632/*
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700633 * Helper function for ibft_register_kobjects.
634 */
Peter Jones4e639fd2010-02-25 15:37:17 -0500635static int __init ibft_create_kobject(struct acpi_table_ibft *header,
Mike Christieb33a84a2010-04-12 18:06:18 +0000636 struct ibft_hdr *hdr)
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700637{
Mike Christieb33a84a2010-04-12 18:06:18 +0000638 struct iscsi_boot_kobj *boot_kobj = NULL;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700639 struct ibft_kobject *ibft_kobj = NULL;
640 struct ibft_nic *nic = (struct ibft_nic *)hdr;
641 struct pci_dev *pci_dev;
642 int rc = 0;
643
644 ibft_kobj = kzalloc(sizeof(*ibft_kobj), GFP_KERNEL);
645 if (!ibft_kobj)
646 return -ENOMEM;
647
648 ibft_kobj->header = header;
649 ibft_kobj->hdr = hdr;
650
651 switch (hdr->id) {
652 case id_initiator:
653 rc = ibft_verify_hdr("initiator", hdr, id_initiator,
654 sizeof(*ibft_kobj->initiator));
Mike Christieb33a84a2010-04-12 18:06:18 +0000655 if (rc)
656 break;
657
658 boot_kobj = iscsi_boot_create_initiator(boot_kset, hdr->index,
659 ibft_kobj,
660 ibft_attr_show_initiator,
Mike Christief457a462011-06-24 15:11:53 -0500661 ibft_check_initiator_for,
662 ibft_kobj_release);
Mike Christieb33a84a2010-04-12 18:06:18 +0000663 if (!boot_kobj) {
664 rc = -ENOMEM;
665 goto free_ibft_obj;
666 }
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700667 break;
668 case id_nic:
669 rc = ibft_verify_hdr("ethernet", hdr, id_nic,
670 sizeof(*ibft_kobj->nic));
Mike Christieb33a84a2010-04-12 18:06:18 +0000671 if (rc)
672 break;
673
674 boot_kobj = iscsi_boot_create_ethernet(boot_kset, hdr->index,
675 ibft_kobj,
676 ibft_attr_show_nic,
Mike Christief457a462011-06-24 15:11:53 -0500677 ibft_check_nic_for,
678 ibft_kobj_release);
Mike Christieb33a84a2010-04-12 18:06:18 +0000679 if (!boot_kobj) {
680 rc = -ENOMEM;
681 goto free_ibft_obj;
682 }
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700683 break;
684 case id_target:
685 rc = ibft_verify_hdr("target", hdr, id_target,
686 sizeof(*ibft_kobj->tgt));
Mike Christieb33a84a2010-04-12 18:06:18 +0000687 if (rc)
688 break;
689
690 boot_kobj = iscsi_boot_create_target(boot_kset, hdr->index,
691 ibft_kobj,
692 ibft_attr_show_target,
Mike Christief457a462011-06-24 15:11:53 -0500693 ibft_check_tgt_for,
694 ibft_kobj_release);
Mike Christieb33a84a2010-04-12 18:06:18 +0000695 if (!boot_kobj) {
696 rc = -ENOMEM;
697 goto free_ibft_obj;
698 }
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700699 break;
700 case id_reserved:
701 case id_control:
702 case id_extensions:
703 /* Fields which we don't support. Ignore them */
704 rc = 1;
705 break;
706 default:
707 printk(KERN_ERR "iBFT has unknown structure type (%d). " \
708 "Report this bug to %.6s!\n", hdr->id,
Peter Jones4e639fd2010-02-25 15:37:17 -0500709 header->header.oem_id);
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700710 rc = 1;
711 break;
712 }
713
714 if (rc) {
715 /* Skip adding this kobject, but exit with non-fatal error. */
Mike Christieb33a84a2010-04-12 18:06:18 +0000716 rc = 0;
717 goto free_ibft_obj;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700718 }
719
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700720 if (hdr->id == id_nic) {
721 /*
722 * We don't search for the device in other domains than
723 * zero. This is because on x86 platforms the BIOS
724 * executes only devices which are in domain 0. Furthermore, the
725 * iBFT spec doesn't have a domain id field :-(
726 */
727 pci_dev = pci_get_bus_and_slot((nic->pci_bdf & 0xff00) >> 8,
728 (nic->pci_bdf & 0xff));
729 if (pci_dev) {
Mike Christieb33a84a2010-04-12 18:06:18 +0000730 rc = sysfs_create_link(&boot_kobj->kobj,
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700731 &pci_dev->dev.kobj, "device");
732 pci_dev_put(pci_dev);
733 }
734 }
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700735 return 0;
Mike Christieb33a84a2010-04-12 18:06:18 +0000736
737free_ibft_obj:
738 kfree(ibft_kobj);
739 return rc;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700740}
741
742/*
743 * Scan the IBFT table structure for the NIC and Target fields. When
744 * found add them on the passed-in list. We do not support the other
745 * fields at this point, so they are skipped.
746 */
Mike Christieb33a84a2010-04-12 18:06:18 +0000747static int __init ibft_register_kobjects(struct acpi_table_ibft *header)
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700748{
749 struct ibft_control *control = NULL;
David Bondb3c8eb52016-03-23 21:49:26 -0400750 struct iscsi_boot_kobj *boot_kobj;
751 struct ibft_kobject *ibft_kobj;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700752 void *ptr, *end;
753 int rc = 0;
754 u16 offset;
755 u16 eot_offset;
756
757 control = (void *)header + sizeof(*header);
758 end = (void *)control + control->hdr.length;
Peter Jones4e639fd2010-02-25 15:37:17 -0500759 eot_offset = (void *)header + header->header.length - (void *)control;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700760 rc = ibft_verify_hdr("control", (struct ibft_hdr *)control, id_control,
761 sizeof(*control));
762
763 /* iBFT table safety checking */
764 rc |= ((control->hdr.index) ? -ENODEV : 0);
765 if (rc) {
766 printk(KERN_ERR "iBFT error: Control header is invalid!\n");
767 return rc;
768 }
769 for (ptr = &control->initiator_off; ptr < end; ptr += sizeof(u16)) {
770 offset = *(u16 *)ptr;
Peter Jones4e639fd2010-02-25 15:37:17 -0500771 if (offset && offset < header->header.length &&
772 offset < eot_offset) {
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700773 rc = ibft_create_kobject(header,
Mike Christieb33a84a2010-04-12 18:06:18 +0000774 (void *)header + offset);
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700775 if (rc)
776 break;
777 }
778 }
David Bondb3c8eb52016-03-23 21:49:26 -0400779 if (rc)
780 return rc;
781
782 ibft_kobj = kzalloc(sizeof(*ibft_kobj), GFP_KERNEL);
783 if (!ibft_kobj)
784 return -ENOMEM;
785
786 ibft_kobj->header = header;
787 ibft_kobj->hdr = NULL; /*for ibft_unregister*/
788
789 boot_kobj = iscsi_boot_create_acpitbl(boot_kset, 0,
790 ibft_kobj,
791 ibft_attr_show_acpitbl,
792 ibft_check_acpitbl_for,
793 ibft_kobj_release);
794 if (!boot_kobj) {
795 kfree(ibft_kobj);
796 rc = -ENOMEM;
797 }
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700798
799 return rc;
800}
801
Mike Christieb33a84a2010-04-12 18:06:18 +0000802static void ibft_unregister(void)
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700803{
Mike Christieb33a84a2010-04-12 18:06:18 +0000804 struct iscsi_boot_kobj *boot_kobj, *tmp_kobj;
805 struct ibft_kobject *ibft_kobj;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700806
Mike Christieb33a84a2010-04-12 18:06:18 +0000807 list_for_each_entry_safe(boot_kobj, tmp_kobj,
808 &boot_kset->kobj_list, list) {
809 ibft_kobj = boot_kobj->data;
David Bondb3c8eb52016-03-23 21:49:26 -0400810 if (ibft_kobj->hdr && ibft_kobj->hdr->id == id_nic)
Mike Christieb33a84a2010-04-12 18:06:18 +0000811 sysfs_remove_link(&boot_kobj->kobj, "device");
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700812 };
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700813}
814
Mike Christieb33a84a2010-04-12 18:06:18 +0000815static void ibft_cleanup(void)
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700816{
Konrad Rzeszutek Wilka12415f2010-08-11 16:35:40 -0400817 if (boot_kset) {
818 ibft_unregister();
819 iscsi_boot_destroy_kset(boot_kset);
820 }
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700821}
822
Mike Christieb33a84a2010-04-12 18:06:18 +0000823static void __exit ibft_exit(void)
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700824{
Mike Christieb33a84a2010-04-12 18:06:18 +0000825 ibft_cleanup();
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700826}
827
Yinghai Lu935a9fe2011-12-12 12:39:14 -0800828#ifdef CONFIG_ACPI
829static const struct {
830 char *sign;
831} ibft_signs[] = {
832 /*
833 * One spec says "IBFT", the other says "iBFT". We have to check
834 * for both.
835 */
836 { ACPI_SIG_IBFT },
837 { "iBFT" },
Vikas Chaudhary629c27a2014-05-13 07:41:32 -0400838 { "BIFT" }, /* Broadcom iSCSI Offload */
Yinghai Lu935a9fe2011-12-12 12:39:14 -0800839};
840
841static void __init acpi_find_ibft_region(void)
842{
843 int i;
844 struct acpi_table_header *table = NULL;
845
846 if (acpi_disabled)
847 return;
848
849 for (i = 0; i < ARRAY_SIZE(ibft_signs) && !ibft_addr; i++) {
850 acpi_get_table(ibft_signs[i].sign, 0, &table);
851 ibft_addr = (struct acpi_table_ibft *)table;
852 }
853}
854#else
855static void __init acpi_find_ibft_region(void)
856{
857}
858#endif
859
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700860/*
861 * ibft_init() - creates sysfs tree entries for the iBFT data.
862 */
863static int __init ibft_init(void)
864{
865 int rc = 0;
866
Yinghai Lu935a9fe2011-12-12 12:39:14 -0800867 /*
868 As on UEFI systems the setup_arch()/find_ibft_region()
869 is called before ACPI tables are parsed and it only does
870 legacy finding.
871 */
872 if (!ibft_addr)
873 acpi_find_ibft_region();
874
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700875 if (ibft_addr) {
Yinghai Lu935a9fe2011-12-12 12:39:14 -0800876 pr_info("iBFT detected.\n");
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700877
878 rc = ibft_check_device();
879 if (rc)
Mike Christieb33a84a2010-04-12 18:06:18 +0000880 return rc;
881
882 boot_kset = iscsi_boot_create_kset("ibft");
883 if (!boot_kset)
884 return -ENOMEM;
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700885
886 /* Scan the IBFT for data and register the kobjects. */
Mike Christieb33a84a2010-04-12 18:06:18 +0000887 rc = ibft_register_kobjects(ibft_addr);
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700888 if (rc)
889 goto out_free;
890 } else
891 printk(KERN_INFO "No iBFT detected.\n");
892
893 return 0;
894
895out_free:
Mike Christieb33a84a2010-04-12 18:06:18 +0000896 ibft_cleanup();
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700897 return rc;
898}
899
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700900module_init(ibft_init);
901module_exit(ibft_exit);