]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Network/IScsiDxe/IScsiConfigNVDataStruc.h
7c26ff377d1bccbe579514f8b5ef5a55ed00c1da
[mirror_edk2.git] / MdeModulePkg / Universal / Network / IScsiDxe / IScsiConfigNVDataStruc.h
1 /** @file
2 Define NVData structures used by the iSCSI configuration component
3
4 Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _ISCSI_NVDATASTRUC_H_
16 #define _ISCSI_NVDATASTRUC_H_
17
18 #define ISCSI_CONFIG_GUID \
19 { \
20 0x6456ed61, 0x3579, 0x41c9, { 0x8a, 0x26, 0x0a, 0x0b, 0xd6, 0x2b, 0x78, 0xfc } \
21 }
22
23 #define VAR_EQ_TEST_NAME 0x100
24
25 #define FORMID_MAIN_FORM 1
26 #define FORMID_DEVICE_FORM 2
27
28 #define ISCSI_NAME_MAX_SIZE 224
29
30 //
31 // Vfr has a limit on the size, it's 255 bytes.
32 //
33 #define ISCSI_NAME_IFR_MIN_SIZE 4
34 #define ISCSI_NAME_IFR_MAX_SIZE 223
35
36 #define IP_MIN_SIZE 7
37 #define IP_MAX_SIZE 15
38 #define IP4_STR_MAX_SIZE 16
39
40 #define LUN_MIN_SIZE 1
41 #define LUN_MAX_SIZE 20
42
43 #define ISCSI_CHAP_NONE 0
44 #define ISCSI_CHAP_UNI 1
45 #define ISCSI_CHAP_MUTUAL 2
46
47 #define TARGET_PORT_MIN_NUM 0
48 #define TARGET_PORT_MAX_NUM 65535
49
50 #define DEVICE_ENTRY_LABEL 0x1234
51 #define LABEL_END 0xffff
52
53 #define KEY_INITIATOR_NAME 0x101
54 #define KEY_DHCP_ENABLE 0x102
55 #define KEY_LOCAL_IP 0x103
56 #define KEY_SUBNET_MASK 0x104
57 #define KEY_GATE_WAY 0x105
58 #define KEY_TARGET_IP 0x106
59 #define KEY_CHAP_NAME 0x107
60 #define KEY_CHAP_SECRET 0x108
61 #define KEY_REVERSE_CHAP_NAME 0x109
62 #define KEY_REVERSE_CHAP_SECRET 0x10a
63 #define KEY_SAVE_CHANGES 0x10b
64 #define KEY_TARGET_NAME 0x10c
65 #define KEY_BOOT_LUN 0x10d
66 #define KEY_CONFIG_ISID 0x10e
67
68 #define KEY_DEVICE_ENTRY_BASE 0x1000
69
70 #define ISCSI_LUN_STR_MAX_LEN 21
71 #define ISCSI_CHAP_SECRET_MIN_LEN 12
72 #define ISCSI_CHAP_SECRET_MAX_LEN 16
73 //
74 // ISCSI_CHAP_SECRET_STORAGE = ISCSI_CHAP_SECRET_MAX_LEN + sizeof (NULL-Terminator)
75 //
76 #define ISCSI_CHAP_SECRET_STORAGE 17
77
78 #define ISCSI_CHAP_NAME_MAX_LEN 126
79
80 #define ISID_CONFIGURABLE_MIN_LEN 6
81 #define ISID_CONFIGURABLE_MAX_LEN 12
82 #define ISID_CONFIGURABLE_STORAGE 13
83
84 #pragma pack(1)
85 typedef struct {
86 CHAR16 InitiatorName[ISCSI_NAME_MAX_SIZE];
87
88 UINT8 Enabled;
89
90 UINT8 InitiatorInfoFromDhcp;
91 CHAR16 LocalIp[IP4_STR_MAX_SIZE];
92 CHAR16 SubnetMask[IP4_STR_MAX_SIZE];
93 CHAR16 Gateway[IP4_STR_MAX_SIZE];
94
95 CHAR16 TargetName[ISCSI_NAME_MAX_SIZE];
96 CHAR16 TargetIp[IP4_STR_MAX_SIZE];
97 UINT16 TargetPort;
98 CHAR16 BootLun[ISCSI_LUN_STR_MAX_LEN];
99 UINT8 TargetInfoFromDhcp;
100
101 UINT8 CHAPType;
102 CHAR16 CHAPName[ISCSI_CHAP_NAME_MAX_LEN];
103 CHAR16 CHAPSecret[ISCSI_CHAP_SECRET_STORAGE];
104 CHAR16 ReverseCHAPName[ISCSI_CHAP_NAME_MAX_LEN];
105 CHAR16 ReverseCHAPSecret[ISCSI_CHAP_SECRET_STORAGE];
106
107 CHAR16 IsId[ISID_CONFIGURABLE_STORAGE];
108 } ISCSI_CONFIG_IFR_NVDATA;
109 #pragma pack()
110
111 #endif