]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/Python/GenPatchPcdTable/GenPatchPcdTable.py
BaseTools: GenPatchPcdTable - refactor RegEx to minimize multiple compiling
[mirror_edk2.git] / BaseTools / Source / Python / GenPatchPcdTable / GenPatchPcdTable.py
CommitLineData
52302d4d
LG
1## @file\r
2# Generate PCD table for 'Patchable In Module' type PCD with given .map file.\r
f51461c8
LG
3# The Patch PCD table like:\r
4# \r
5# PCD Name Offset in binary\r
52302d4d
LG
6# ======== ================\r
7#\r
e52aed0d 8# Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>\r
40d841f6 9# This program and the accompanying materials\r
52302d4d
LG
10# are licensed and made available under the terms and conditions of the BSD License\r
11# which accompanies this distribution. The full text of the license may be found at\r
12# http://opensource.org/licenses/bsd-license.php\r
13#\r
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16#\r
f51461c8
LG
17#\r
18\r
19#====================================== External Libraries ========================================\r
20import optparse\r
1be2ed90 21import Common.LongFilePathOs as os\r
f51461c8
LG
22import re\r
23import array\r
24\r
25from Common.BuildToolError import *\r
26import Common.EdkLogger as EdkLogger\r
52302d4d 27from Common.Misc import PeImageClass\r
b36d134f 28from Common.BuildVersion import gBUILD_VERSION\r
1be2ed90 29from Common.LongFilePathSupport import OpenLongFilePath as open\r
f51461c8
LG
30\r
31# Version and Copyright\r
32__version_number__ = ("0.10" + " " + gBUILD_VERSION)\r
33__version__ = "%prog Version " + __version_number__\r
34__copyright__ = "Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved."\r
35\r
36#====================================== Internal Libraries ========================================\r
37\r
38#============================================== Code ===============================================\r
39secRe = re.compile('^([\da-fA-F]+):([\da-fA-F]+) +([\da-fA-F]+)[Hh]? +([.\w\$]+) +(\w+)', re.UNICODE)\r
7e7a8116 40symRe = re.compile('^([\da-fA-F]+):([\da-fA-F]+) +([\.\-:\\\\\w\?@\$<>]+) +([\da-fA-F]+)', re.UNICODE)\r
f51461c8
LG
41\r
42def parsePcdInfoFromMapFile(mapfilepath, efifilepath):\r
43 """ Parse map file to get binary patch pcd information \r
44 @param path Map file absolution path\r
45 \r
46 @return a list which element hold (PcdName, Offset, SectionName)\r
47 """\r
48 lines = []\r
49 try:\r
50 f = open(mapfilepath, 'r')\r
51 lines = f.readlines()\r
52 f.close()\r
53 except:\r
54 return None\r
55 \r
56 if len(lines) == 0: return None\r
e4ac870f
LG
57 firstline = lines[0].strip()\r
58 if (firstline.startswith("Archive member included ") and\r
59 firstline.endswith(" file (symbol)")):\r
f51461c8 60 return _parseForGCC(lines, efifilepath)\r
14239ee0
YZ
61 if firstline.startswith("# Path:"):\r
62 return _parseForXcode(lines, efifilepath)\r
f51461c8
LG
63 return _parseGeneral(lines, efifilepath)\r
64\r
14239ee0 65def _parseForXcode(lines, efifilepath):\r
2a9aac46 66 valuePattern = re.compile('^([\da-fA-FxX]+)([\s\S]*)([_]*_gPcd_BinaryPatch_([\w]+))')\r
14239ee0
YZ
67 status = 0\r
68 pcds = []\r
e52aed0d 69 for line in lines:\r
14239ee0
YZ
70 line = line.strip()\r
71 if status == 0 and line == "# Symbols:":\r
72 status = 1\r
73 continue\r
74 if status == 1 and len(line) != 0:\r
75 if '_gPcd_BinaryPatch_' in line:\r
2a9aac46 76 m = valuePattern.match(line)\r
4231a819 77 if m is not None:\r
14239ee0
YZ
78 pcds.append((m.groups(0)[3], int(m.groups(0)[0], 16)))\r
79 return pcds\r
80\r
f51461c8
LG
81def _parseForGCC(lines, efifilepath):\r
82 """ Parse map file generated by GCC linker """\r
2a9aac46
CJ
83 valuePattern = re.compile('^([\w_\.]+) +([\da-fA-Fx]+) +([\da-fA-Fx]+)$')\r
84 dataPattern = re.compile('^.data._gPcd_BinaryPatch_([\w_\d]+)$')\r
85 pcdPattern = re.compile('^([\da-fA-Fx]+) +([\da-fA-Fx]+)')\r
f51461c8
LG
86 status = 0\r
87 imageBase = -1\r
88 sections = []\r
89 bpcds = []\r
3e7e8571 90 for index, line in enumerate(lines):\r
f51461c8
LG
91 line = line.strip()\r
92 # status machine transection\r
93 if status == 0 and line == "Memory Configuration":\r
94 status = 1\r
95 continue\r
96 elif status == 1 and line == 'Linker script and memory map':\r
97 status = 2\r
98 continue\r
99 elif status ==2 and line == 'START GROUP':\r
100 status = 3\r
101 continue\r
102\r
e8a47801 103 # status handler\r
3e7e8571 104 if status == 3:\r
2a9aac46 105 m = valuePattern.match(line)\r
4231a819 106 if m is not None:\r
f51461c8 107 sections.append(m.groups(0))\r
3e7e8571 108 if status == 3:\r
2a9aac46 109 m = dataPattern.match(line)\r
4231a819 110 if m is not None:\r
3e7e8571
YZ
111 if lines[index + 1]:\r
112 PcdName = m.groups(0)[0]\r
2a9aac46 113 m = pcdPattern.match(lines[index + 1].strip())\r
4231a819 114 if m is not None:\r
3e7e8571 115 bpcds.append((PcdName, int(m.groups(0)[0], 16) , int(sections[-1][1], 16), sections[-1][0]))\r
e8a47801
LG
116 \r
117 # get section information from efi file\r
118 efisecs = PeImageClass(efifilepath).SectionHeaderList\r
4231a819 119 if efisecs is None or len(efisecs) == 0:\r
e8a47801
LG
120 return None\r
121 #redirection\r
122 redirection = 0\r
123 for efisec in efisecs:\r
124 for section in sections:\r
125 if section[0].strip() == efisec[0].strip() and section[0].strip() == '.text':\r
126 redirection = int(section[1], 16) - efisec[1]\r
127 pcds = []\r
128 for pcd in bpcds:\r
129 for efisec in efisecs:\r
130 if pcd[1] >= efisec[1] and pcd[1] < efisec[1]+efisec[3]:\r
131 #assert efisec[0].strip() == pcd[3].strip() and efisec[1] + redirection == pcd[2], "There are some differences between map file and efi file"\r
132 pcds.append([pcd[0], efisec[2] + pcd[1] - efisec[1] - redirection, efisec[0]])\r
f51461c8
LG
133 return pcds\r
134 \r
135def _parseGeneral(lines, efifilepath):\r
136 """ For MSFT, ICC, EBC \r
137 @param lines line array for map file\r
138 \r
139 @return a list which element hold (PcdName, Offset, SectionName)\r
47fea6af 140 """\r
f51461c8 141 status = 0 #0 - beginning of file; 1 - PE section definition; 2 - symbol table\r
47fea6af 142 secs = [] # key = section name\r
f51461c8 143 bPcds = []\r
2a9aac46
CJ
144 startPattern = re.compile("^Start[' ']+Length[' ']+Name[' ']+Class")\r
145 addressPattern = re.compile("^Address[' ']+Publics by Value[' ']+Rva\+Base")\r
146 symPattern = re.compile('^[_]+gPcd_BinaryPatch_([\w]+)')\r
f51461c8
LG
147\r
148 for line in lines:\r
149 line = line.strip()\r
2a9aac46 150 if startPattern.match(line):\r
f51461c8
LG
151 status = 1\r
152 continue\r
2a9aac46 153 if addressPattern.match(line):\r
f51461c8
LG
154 status = 2\r
155 continue\r
2a9aac46 156 if line.startswith("entry point at"):\r
f51461c8 157 status = 3\r
47fea6af 158 continue\r
f51461c8 159 if status == 1 and len(line) != 0:\r
47fea6af 160 m = secRe.match(line)\r
4231a819 161 assert m is not None, "Fail to parse the section in map file , line is %s" % line\r
f51461c8
LG
162 sec_no, sec_start, sec_length, sec_name, sec_class = m.groups(0)\r
163 secs.append([int(sec_no, 16), int(sec_start, 16), int(sec_length, 16), sec_name, sec_class])\r
164 if status == 2 and len(line) != 0:\r
165 m = symRe.match(line)\r
4231a819 166 assert m is not None, "Fail to parse the symbol in map file, line is %s" % line\r
f51461c8 167 sec_no, sym_offset, sym_name, vir_addr = m.groups(0)\r
47fea6af 168 sec_no = int(sec_no, 16)\r
f51461c8 169 sym_offset = int(sym_offset, 16)\r
47fea6af 170 vir_addr = int(vir_addr, 16)\r
2a9aac46 171 m2 = symPattern.match(sym_name)\r
4231a819 172 if m2 is not None:\r
f51461c8
LG
173 # fond a binary pcd entry in map file\r
174 for sec in secs:\r
175 if sec[0] == sec_no and (sym_offset >= sec[1] and sym_offset < sec[1] + sec[2]):\r
176 bPcds.append([m2.groups(0)[0], sec[3], sym_offset, vir_addr, sec_no])\r
177\r
178 if len(bPcds) == 0: return None\r
179\r
180 # get section information from efi file\r
181 efisecs = PeImageClass(efifilepath).SectionHeaderList\r
4231a819 182 if efisecs is None or len(efisecs) == 0:\r
f51461c8
LG
183 return None\r
184 \r
185 pcds = []\r
186 for pcd in bPcds:\r
187 index = 0\r
188 for efisec in efisecs:\r
189 index = index + 1\r
190 if pcd[1].strip() == efisec[0].strip():\r
191 pcds.append([pcd[0], efisec[2] + pcd[2], efisec[0]])\r
192 elif pcd[4] == index:\r
193 pcds.append([pcd[0], efisec[2] + pcd[2], efisec[0]])\r
194 return pcds\r
195 \r
196def generatePcdTable(list, pcdpath):\r
197 try:\r
198 f = open(pcdpath, 'w')\r
199 except:\r
200 pass\r
201\r
202 f.write('PCD Name Offset Section Name\r\n')\r
203 \r
204 for pcditem in list:\r
205 f.write('%-30s 0x%-08X %-6s\r\n' % (pcditem[0], pcditem[1], pcditem[2]))\r
206 f.close()\r
207\r
208 #print 'Success to generate Binary Patch PCD table at %s!' % pcdpath \r
47fea6af 209\r
f51461c8
LG
210if __name__ == '__main__':\r
211 UsageString = "%prog -m <MapFile> -e <EfiFile> -o <OutFile>"\r
212 AdditionalNotes = "\nPCD table is generated in file name with .BinaryPcdTable.txt postfix"\r
213 parser = optparse.OptionParser(description=__copyright__, version=__version__, usage=UsageString)\r
214 parser.add_option('-m', '--mapfile', action='store', dest='mapfile',\r
215 help='Absolute path of module map file.')\r
216 parser.add_option('-e', '--efifile', action='store', dest='efifile',\r
217 help='Absolute path of EFI binary file.')\r
218 parser.add_option('-o', '--outputfile', action='store', dest='outfile',\r
219 help='Absolute path of output file to store the got patchable PCD table.')\r
220 \r
221 (options, args) = parser.parse_args()\r
222\r
4231a819 223 if options.mapfile is None or options.efifile is None:\r
f51461c8
LG
224 print parser.get_usage()\r
225 elif os.path.exists(options.mapfile) and os.path.exists(options.efifile):\r
47fea6af 226 list = parsePcdInfoFromMapFile(options.mapfile, options.efifile)\r
4231a819
CJ
227 if list is not None:\r
228 if options.outfile is not None:\r
f51461c8
LG
229 generatePcdTable(list, options.outfile)\r
230 else:\r
47fea6af 231 generatePcdTable(list, options.mapfile.replace('.map', '.BinaryPcdTable.txt'))\r
f51461c8
LG
232 else:\r
233 print 'Fail to generate Patch PCD Table based on map file and efi file'\r
234 else:\r
235 print 'Fail to generate Patch PCD Table for fail to find map file or efi file!'\r