hxpeff.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:13k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxpeff.cpp,v 1.5.28.1 2004/07/09 02:09:16 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "hlxclib/string.h"
  50. #include "hxpeff.h"
  51. #include "hxfcntl.h"
  52. #include "hlxclib/string.h"
  53. #include "hlxclib/stdio.h"
  54. #include "hxheap.h"
  55. #ifdef _DEBUG
  56. #undef HX_THIS_FILE
  57. static const char HX_THIS_FILE[] = __FILE__;
  58. #endif
  59. CHXPeff::CHXPeff()
  60. {
  61. mFile=NULL;
  62. mBigEndian=FALSE;
  63. mPeffDataStart=0;
  64. //
  65. //  initialize mBigEndian;
  66. //
  67. TestBigEndian();
  68. }
  69. CHXPeff::~CHXPeff()
  70. {
  71. if (mFile)
  72. {
  73. close();
  74. }
  75. }
  76. HX_RESULT CHXPeff::open(const char*  path)
  77. {
  78. if (mFile)
  79. {
  80. return HXR_RESOURCE_CLOSE_FILE_FIRST;
  81. }
  82. //
  83. // Create a file object for reading this file in.
  84. //
  85. mFile=CHXDataFile::Construct();
  86. if (!mFile)
  87. {
  88. return HXR_OUTOFMEMORY;
  89. }
  90. //
  91. // Openthe file
  92. //
  93. HX_RESULT e=HXR_OK;
  94. e=mFile->Open((const char*)path,O_RDONLY);
  95. if (e != HXR_OK)
  96. {
  97. return e;
  98. }
  99. //
  100. // Read the data in the file header, and determine where to start reading from in the file.
  101. //
  102. e=FindPeffDataStart();
  103. if (e != HXR_OK)
  104. {
  105. return e;
  106. }
  107. return HXR_OK;
  108. }
  109. HX_RESULT CHXPeff::close(void)
  110. {
  111. if (mFile)
  112. {
  113. delete mFile;
  114. mFile=NULL;
  115. }
  116. else
  117. {
  118. return HXR_FILE_NOT_OPEN;
  119. }
  120. return HXR_OK;
  121. }
  122. HX_RESULT CHXPeff::FindSectionNamed(const char* name,ULONG32&  size, ULONG32&  pos)
  123. {
  124. HX_IMAGE_SECTION_HEADER header;
  125. size=0;
  126. pos=0;
  127. //
  128. // Seek to the beginning of the PEFF headers section.
  129. //
  130. if (HXR_OK != GetSectionHeaderNamed(name,header))
  131. {
  132. return HXR_AT_END;
  133. }
  134. if (HXR_OK != mFile->Seek(header.PointerToRawData,0))
  135. {
  136. return HXR_AT_END;
  137. }
  138. size=header.SizeOfRawData;
  139. pos=header.PointerToRawData;
  140. return HXR_OK;
  141. }
  142. HX_RESULT CHXPeff::GetSectionHeaderNamed(const char* name,HX_IMAGE_SECTION_HEADER& h)
  143. {
  144. //
  145. // Seek to the beginning of the PEFF headers section.
  146. //
  147. if (HXR_OK !=mFile->Seek(mPeffDataStart,0))
  148. {
  149. return HXR_AT_END;
  150. }
  151. HX_IMAGE_SECTION_HEADER header;
  152. for (mCurrentSection=1; mCurrentSection <= mNumberOfSections; mCurrentSection++)
  153. {
  154. GetSectionHeader(header);
  155. if (strcmp((const char*)header.Name,name)==0)
  156. {
  157. //
  158. // The user wanted the section header. So we give it to them.
  159. //
  160. // We use sizeof here, because we want the user to get
  161. // header as it is in memory.  (Makes sure that padding is not an issue.)
  162. //
  163. memcpy(&h,&header,sizeof(HX_IMAGE_SECTION_HEADER)); /* Flawfinder: ignore */
  164. return HXR_OK;
  165. }
  166. }
  167. return HXR_AT_END;
  168. }
  169. //
  170. //
  171. // HELPER FUNCTIONS for reading in bytes,words,and dwords from a file.
  172. //
  173. //
  174. HX_RESULT CHXPeff::ReadByte(UCHAR&   sz)
  175. {
  176. if (mFile->Read((char*)&sz,1)==1)
  177. {
  178. return HXR_OK;
  179. }
  180. return HXR_AT_END;
  181. }
  182. HX_RESULT CHXPeff::ReadWord(UINT16& w)
  183. {
  184. if (mFile->Read((char*)&w,2)==2)
  185. {
  186. ReverseWORD(w);
  187. return HXR_OK;
  188. }
  189. return HXR_AT_END;
  190. }
  191. HX_RESULT CHXPeff::ReadDWord(ULONG32& dw)
  192. {
  193. if (mFile->Read((char*)&dw,4)==4)
  194. {
  195. ReverseDWORD(dw);
  196. return HXR_OK;
  197. }
  198. return HXR_AT_END;
  199. }
  200. /*
  201. Notes about the headers. 
  202.     This code forcibly reads in the data from the file with very small reads.
  203. This is not the most efficient mechanism, but this makes sure that each platform
  204. will be able to read in the data without attempting to do a read with the size of
  205. the expanded/padded structure.
  206.     DO NOT ATTEMPT TO MAKE MORE EFFICIENT UNLESS YOU UNDERSTAND THE PROBLEM!
  207.     
  208. */
  209. HX_RESULT CHXPeff::InitializeDosHeader(void)
  210. {
  211. //
  212. // Load the DOS Image file header into the 
  213. // member variable mDosHeader
  214. //
  215. //
  216. // Start at the beginning of the file.
  217. //
  218. mFile->Seek(0,0);
  219. UCHAR* bytes;
  220. bytes=(UCHAR*)&mDosHeader.e_magic;
  221. //
  222. // Needs to be read as two bytes because the e_magic is written as a string would be.
  223. //
  224. IF_ERROR_RETURN(ReadByte(bytes[0]));
  225. IF_ERROR_RETURN(ReadByte(bytes[1]));
  226. IF_ERROR_RETURN(ReadWord(mDosHeader.e_cblp));
  227. IF_ERROR_RETURN(ReadWord(mDosHeader.e_cp));
  228. IF_ERROR_RETURN(ReadWord(mDosHeader.e_crlc));
  229. IF_ERROR_RETURN(ReadWord(mDosHeader.e_cparhdr));
  230. IF_ERROR_RETURN(ReadWord(mDosHeader.e_minalloc));
  231. IF_ERROR_RETURN(ReadWord(mDosHeader.e_maxalloc));
  232. IF_ERROR_RETURN(ReadWord(mDosHeader.e_ss));
  233. IF_ERROR_RETURN(ReadWord(mDosHeader.e_sp));
  234. IF_ERROR_RETURN(ReadWord(mDosHeader.e_csum));
  235. IF_ERROR_RETURN(ReadWord(mDosHeader.e_ip));
  236. IF_ERROR_RETURN(ReadWord(mDosHeader.e_cs));
  237. IF_ERROR_RETURN(ReadWord(mDosHeader.e_lfarlc));
  238. IF_ERROR_RETURN(ReadWord(mDosHeader.e_ovno));
  239. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res[0]));
  240. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res[1]));
  241. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res[2]));
  242. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res[3]));
  243. IF_ERROR_RETURN(ReadWord(mDosHeader.e_oemid));
  244. IF_ERROR_RETURN(ReadWord(mDosHeader.e_oeminfo));
  245. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res2[0]));
  246. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res2[1]));
  247. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res2[2]));
  248. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res2[3]));
  249. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res2[4]));
  250. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res2[5]));
  251. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res2[6]));
  252. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res2[7]));
  253. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res2[8]));
  254. IF_ERROR_RETURN(ReadWord(mDosHeader.e_res2[9]));
  255. IF_ERROR_RETURN(ReadDWord(mDosHeader.e_lfanew));
  256. return HXR_OK;
  257. }
  258. HX_RESULT CHXPeff::InitializePeffHeader(void)
  259. {
  260. //
  261. // Seek into the first PEFF header.
  262. //
  263. IF_ERROR_RETURN(mFile->Seek(mDosHeader.e_lfanew+SIZE_OF_NT_SIGNATURE,0));
  264. IF_ERROR_RETURN(ReadWord(mPeffHeader.Machine));
  265. IF_ERROR_RETURN(ReadWord(mPeffHeader.NumberOfSections));
  266. IF_ERROR_RETURN(ReadDWord(mPeffHeader.TimeDateStamp));
  267. IF_ERROR_RETURN(ReadDWord(mPeffHeader.PointerToSymbolTable));
  268. IF_ERROR_RETURN(ReadDWord(mPeffHeader.NumberOfSymbols));
  269. IF_ERROR_RETURN(ReadWord(mPeffHeader.SizeOfOptionalHeader));
  270. IF_ERROR_RETURN(ReadWord(mPeffHeader.Characteristics));
  271. //
  272. // INITIALIZE THE NUMBER OF SECTIONS MEMBER
  273. //
  274. mNumberOfSections=mPeffHeader.NumberOfSections;
  275. return HXR_OK;
  276. }
  277. HX_RESULT CHXPeff::InitializeOptionalPeffHeader(void)
  278. {
  279. //
  280. // Seek to the second peff header.
  281. //
  282. IF_ERROR_RETURN(mFile->Seek(mDosHeader.e_lfanew+SIZE_OF_NT_SIGNATURE+IMAGE_SIZEOF_FILE_HEADER,0));
  283. IF_ERROR_RETURN(ReadWord(mOptionalPeffHeader.Magic));
  284. IF_ERROR_RETURN(ReadByte(mOptionalPeffHeader.MajorLinkerVersion));
  285. IF_ERROR_RETURN(ReadByte(mOptionalPeffHeader.MinorLinkerVersion));
  286. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.SizeOfCode));
  287. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.SizeOfInitializedData));
  288. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.SizeOfUninitializedData));
  289. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.AddressOfEntryPoint));
  290. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.BaseOfCode));
  291. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.BaseOfData));
  292. //
  293. // NT Additional Fields
  294. //
  295. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.ImageBase));
  296. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.SectionAlignment));
  297. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.FileAlignment));
  298. IF_ERROR_RETURN(ReadWord(mOptionalPeffHeader.MajorOperatingSystemVersion));
  299. IF_ERROR_RETURN(ReadWord(mOptionalPeffHeader.MinorOperatingSystemVersion));
  300. IF_ERROR_RETURN(ReadWord(mOptionalPeffHeader.MajorImageVersion));
  301. IF_ERROR_RETURN(ReadWord(mOptionalPeffHeader.MinorImageVersion));
  302. IF_ERROR_RETURN(ReadWord(mOptionalPeffHeader.MajorSubsystemVersion));
  303. IF_ERROR_RETURN(ReadWord(mOptionalPeffHeader.MinorSubsystemVersion));
  304. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.Reserved1));
  305. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.SizeOfImage));
  306. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.SizeOfHeaders));
  307. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.CheckSum));
  308. IF_ERROR_RETURN(ReadWord(mOptionalPeffHeader.Subsystem));
  309. IF_ERROR_RETURN(ReadWord(mOptionalPeffHeader.DllCharacteristics));
  310. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.SizeOfStackReserve));
  311. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.SizeOfStackCommit));
  312. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.SizeOfHeapReserve));
  313. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.SizeOfHeapCommit));
  314. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.LoaderFlags));
  315. IF_ERROR_RETURN(ReadDWord(mOptionalPeffHeader.NumberOfRvaAndSizes));
  316. //
  317. // We don't read the data directories here, because the caller asks for sections
  318. // by NAME.  Thus we merely parse the sections themselves.
  319. //
  320. return HXR_OK;
  321. }
  322. HX_RESULT CHXPeff::GetSectionHeader(HX_IMAGE_SECTION_HEADER&   header)
  323. {
  324. IF_ERROR_RETURN(mFile->Read((char*)&header.Name,IMAGE_SIZEOF_SHORT_NAME)!=IMAGE_SIZEOF_SHORT_NAME);
  325. //
  326. // Misc is a union so we only need to read one of the fields.
  327. //
  328. IF_ERROR_RETURN(ReadDWord(header.Misc.PhysicalAddress));
  329. IF_ERROR_RETURN(ReadDWord(header.VirtualAddress));
  330. IF_ERROR_RETURN(ReadDWord(header.SizeOfRawData));
  331. IF_ERROR_RETURN(ReadDWord(header.PointerToRawData));
  332. IF_ERROR_RETURN(ReadDWord(header.PointerToRelocations));
  333. IF_ERROR_RETURN(ReadDWord(header.PointerToLinenumbers));
  334. IF_ERROR_RETURN(ReadWord(header.NumberOfRelocations));
  335. IF_ERROR_RETURN(ReadWord(header.NumberOfLinenumbers));
  336. IF_ERROR_RETURN(ReadDWord(header.Characteristics));
  337. return HXR_OK;
  338. }
  339. HX_RESULT CHXPeff::InitializeHeaderMembers(void)
  340. {
  341. HX_RESULT result=HXR_OK;
  342. //
  343. // FIRST READ THE DOS HEADER INTO THE MEMBER VARIABLE.
  344. //
  345. result=InitializeDosHeader();
  346. if (result != HXR_OK)
  347. {
  348. return result;
  349. }
  350. //
  351. // Read the first PEFF header into memory.
  352. //
  353. result=InitializePeffHeader();
  354. if (result != HXR_OK)
  355. {
  356. return result;
  357. }
  358. //
  359. // Okay read the PEFF optional header into memory. 
  360. // This header is not actually optional for DLL's or EXE's.
  361. //
  362. result=InitializeOptionalPeffHeader();
  363. if (result != HXR_OK)
  364. {
  365. return result;
  366. }
  367. return HXR_OK;
  368. }
  369. HX_RESULT CHXPeff::FindPeffDataStart(void)
  370. {
  371. HX_RESULT result=HXR_OK;
  372. result=InitializeHeaderMembers();
  373. if (result != HXR_OK)
  374. {
  375. return result;
  376. }
  377. mPeffDataStart=IMAGE_SIZEOF_FILE_HEADER+mPeffHeader.SizeOfOptionalHeader+mDosHeader.e_lfanew+SIZE_OF_NT_SIGNATURE;
  378. return HXR_OK;
  379. }