Sync BaseTool trunk (version r2649) into EDKII BaseTools.
Signed-off-by: Gao, Liming <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15188 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -192,11 +192,6 @@ DEFINE IPHONE_TOOLS = /Developer/Platforms/iPhoneOS.platform/Develope
|
||||
|
||||
DEFINE SOURCERY_CYGWIN_TOOLS = /cygdrive/c/Program Files/CodeSourcery/Sourcery G++ Lite/bin
|
||||
|
||||
#
|
||||
# Change to the location clang was built
|
||||
#
|
||||
DEFINE CLANG_BIN = /usr/bin/
|
||||
|
||||
####################################################################################
|
||||
#
|
||||
# format: TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE = <string>
|
||||
@ -3136,11 +3131,11 @@ DEFINE GCC_ALL_CC_FLAGS = -g -Os -fshort-wchar -fno-strict-aliasing -
|
||||
DEFINE GCC_IA32_CC_FLAGS = DEF(GCC_ALL_CC_FLAGS) -m32 -malign-double -freorder-blocks -freorder-blocks-and-partition -O2 -mno-stack-arg-probe
|
||||
DEFINE GCC_X64_CC_FLAGS = DEF(GCC_ALL_CC_FLAGS) -mno-red-zone -Wno-address -mno-stack-arg-probe
|
||||
DEFINE GCC_IPF_CC_FLAGS = DEF(GCC_ALL_CC_FLAGS) -minline-int-divide-min-latency
|
||||
DEFINE GCC_ARM_CC_FLAGS = DEF(GCC_ALL_CC_FLAGS) -mword-relocations -mlittle-endian -mabi=aapcs -mapcs -fno-short-enums -save-temps -fsigned-char -ffunction-sections -fdata-sections -fomit-frame-pointer -Wno-address
|
||||
DEFINE GCC_ARM_CC_FLAGS = DEF(GCC_ALL_CC_FLAGS) -mword-relocations -mlittle-endian -mabi=aapcs -mapcs -fno-short-enums -save-temps -fsigned-char -ffunction-sections -fdata-sections -fomit-frame-pointer -Wno-address -mthumb -mfloat-abi=soft
|
||||
DEFINE GCC_AARCH64_CC_FLAGS = DEF(GCC_ALL_CC_FLAGS) -mcmodel=large -mlittle-endian -fno-short-enums -save-temps -fverbose-asm -fsigned-char -ffunction-sections -fdata-sections -fomit-frame-pointer -fno-builtin -Wno-address
|
||||
DEFINE GCC_DLINK_FLAGS_COMMON = -nostdlib --pie
|
||||
DEFINE GCC_IA32_X64_DLINK_COMMON = DEF(GCC_DLINK_FLAGS_COMMON) --gc-sections
|
||||
DEFINE GCC_ARM_AARCH64_DLINK_COMMON= -Ttext=0x0 --emit-relocs -nostdlib -u $(IMAGE_ENTRY_POINT) -e $(IMAGE_ENTRY_POINT) -Map $(DEST_DIR_DEBUG)/$(BASE_NAME).map
|
||||
DEFINE GCC_ARM_AARCH64_DLINK_COMMON= -Ttext=0x0 --emit-relocs -nostdlib --gc-sections -u $(IMAGE_ENTRY_POINT) -e $(IMAGE_ENTRY_POINT) -Map $(DEST_DIR_DEBUG)/$(BASE_NAME).map
|
||||
DEFINE GCC_IA32_X64_ASLDLINK_FLAGS = DEF(GCC_IA32_X64_DLINK_COMMON) --entry _ReferenceAcpiTable -u $(IMAGE_ENTRY_POINT)
|
||||
DEFINE GCC_ARM_AARCH64_ASLDLINK_FLAGS = DEF(GCC_ARM_AARCH64_DLINK_COMMON) --entry ReferenceAcpiTable -u $(IMAGE_ENTRY_POINT)
|
||||
DEFINE GCC_IA32_X64_DLINK_FLAGS = DEF(GCC_IA32_X64_DLINK_COMMON) --entry _$(IMAGE_ENTRY_POINT) --file-alignment 0x20 --section-alignment 0x20 -Map $(DEST_DIR_DEBUG)/$(BASE_NAME).map
|
||||
@ -3184,7 +3179,7 @@ DEFINE GCC46_IA32_X64_DLINK_FLAGS = DEF(GCC45_IA32_X64_DLINK_FLAGS)
|
||||
DEFINE GCC46_X64_DLINK_FLAGS = DEF(GCC45_X64_DLINK_FLAGS)
|
||||
DEFINE GCC46_ASM_FLAGS = DEF(GCC45_ASM_FLAGS)
|
||||
DEFINE GCC46_ARM_ASM_FLAGS = $(ARCHASM_FLAGS) $(PLATFORM_FLAGS) DEF(GCC_ASM_FLAGS) -mlittle-endian
|
||||
DEFINE GCC46_ARM_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC44_ALL_CC_FLAGS) -mword-relocations -mlittle-endian -mabi=aapcs -mapcs -fno-short-enums -save-temps -fsigned-char -mno-unaligned-access -Wno-address -fomit-frame-pointer
|
||||
DEFINE GCC46_ARM_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC44_ALL_CC_FLAGS) DEF(GCC_ARM_CC_FLAGS) -mno-unaligned-access
|
||||
DEFINE GCC46_ARM_DLINK_FLAGS = DEF(GCC_ARM_AARCH64_DLINK_COMMON) --oformat=elf32-littlearm
|
||||
DEFINE GCC46_ARM_ASLDLINK_FLAGS = DEF(GCC_ARM_AARCH64_ASLDLINK_FLAGS) --oformat=elf32-littlearm
|
||||
|
||||
@ -3198,7 +3193,7 @@ DEFINE GCC47_ASM_FLAGS = DEF(GCC46_ASM_FLAGS)
|
||||
DEFINE GCC47_ARM_ASM_FLAGS = DEF(GCC46_ARM_ASM_FLAGS)
|
||||
DEFINE GCC47_AARCH64_ASM_FLAGS = $(ARCHASM_FLAGS) $(PLATFORM_FLAGS) DEF(GCC_ASM_FLAGS) -mlittle-endian
|
||||
DEFINE GCC47_ARM_CC_FLAGS = DEF(GCC46_ARM_CC_FLAGS)
|
||||
DEFINE GCC47_AARCH64_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC44_ALL_CC_FLAGS) -mcmodel=large -mlittle-endian -fno-short-enums -save-temps -fverbose-asm -fsigned-char -ffunction-sections -fdata-sections -fomit-frame-pointer -fno-builtin -Wno-address
|
||||
DEFINE GCC47_AARCH64_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC44_ALL_CC_FLAGS) DEF(GCC_AARCH64_CC_FLAGS)
|
||||
DEFINE GCC47_ARM_DLINK_FLAGS = DEF(GCC46_ARM_DLINK_FLAGS)
|
||||
DEFINE GCC47_AARCH64_DLINK_FLAGS = DEF(GCC_ARM_AARCH64_DLINK_COMMON)
|
||||
DEFINE GCC47_ARM_ASLDLINK_FLAGS = DEF(GCC46_ARM_ASLDLINK_FLAGS)
|
||||
@ -3516,7 +3511,7 @@ DEFINE GCC48_AARCH64_ASLDLINK_FLAGS = DEF(GCC_ARM_AARCH64_ASLDLINK_FLAGS)
|
||||
*_GCC46_ARM_ASLPP_PATH = ENV(GCC46_ARM_PREFIX)gcc
|
||||
*_GCC46_ARM_RC_PATH = ENV(GCC46_ARM_PREFIX)objcopy
|
||||
|
||||
*_GCC46_ARM_ARCHCC_FLAGS = -mthumb
|
||||
*_GCC46_ARM_ARCHCC_FLAGS =
|
||||
*_GCC46_ARM_PLATFORM_FLAGS = -march=armv7-a
|
||||
|
||||
*_GCC46_ARM_ASLCC_FLAGS = DEF(GCC_ASLCC_FLAGS)
|
||||
@ -3610,7 +3605,7 @@ RELEASE_GCC46_ARM_CC_FLAGS = DEF(GCC46_ARM_CC_FLAGS) -Wno-unused-but-set-v
|
||||
*_GCC47_ARM_ASLPP_PATH = ENV(GCC47_ARM_PREFIX)gcc
|
||||
*_GCC47_ARM_RC_PATH = ENV(GCC47_ARM_PREFIX)objcopy
|
||||
|
||||
*_GCC47_ARM_ARCHCC_FLAGS = -mthumb
|
||||
*_GCC47_ARM_ARCHCC_FLAGS =
|
||||
*_GCC47_ARM_PLATFORM_FLAGS = -march=armv7-a
|
||||
|
||||
*_GCC47_ARM_ASLCC_FLAGS = DEF(GCC_ASLCC_FLAGS)
|
||||
@ -5484,15 +5479,15 @@ RELEASE_XCODE32_ARM_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) -mthumb-inter
|
||||
RELEASE_XCLANG_*_MTOC_FLAGS = -align 0x20
|
||||
|
||||
|
||||
*_XCLANG_*_CC_PATH = DEF(CLANG_BIN)clang
|
||||
*_XCLANG_*_CC_PATH = ENV(CLANG_BIN)clang
|
||||
*_XCLANG_*_SLINK_PATH = libtool
|
||||
*_XCLANG_*_DLINK_PATH = ld
|
||||
*_XCLANG_*_ASM_PATH = as
|
||||
*_XCLANG_*_PP_PATH = DEF(CLANG_BIN)clang
|
||||
*_XCLANG_*_VFRPP_PATH = DEF(CLANG_BIN)clang
|
||||
*_XCLANG_*_PP_PATH = ENV(CLANG_BIN)clang
|
||||
*_XCLANG_*_VFRPP_PATH = ENV(CLANG_BIN)clang
|
||||
*_XCLANG_*_ASL_PATH = iasl
|
||||
*_XCLANG_*_ASLCC_PATH = DEF(CLANG_BIN)clang
|
||||
*_XCLANG_*_ASLPP_PATH = DEF(CLANG_BIN)clang
|
||||
*_XCLANG_*_ASLCC_PATH = ENV(CLANG_BIN)clang
|
||||
*_XCLANG_*_ASLPP_PATH = ENV(CLANG_BIN)clang
|
||||
*_XCLANG_*_ASLDLINK_PATH = ld
|
||||
|
||||
####################
|
||||
@ -5550,7 +5545,7 @@ DEFINE RVCT_ALL_DLINK_FLAGS = --ro-base 0 --no_scanlib --reloc --no_exceptions
|
||||
#
|
||||
# Use default values, or override in DSC file
|
||||
#
|
||||
*_RVCT_ARM_ARCHCC_FLAGS = --thumb
|
||||
*_RVCT_ARM_ARCHCC_FLAGS = --thumb --fpu=softvfp
|
||||
*_RVCT_ARM_ARCHASM_FLAGS =
|
||||
*_RVCT_ARM_ARCHDLINK_FLAGS =
|
||||
*_RVCT_ARM_PLATFORM_FLAGS = --cpu 7-A
|
||||
@ -5592,7 +5587,7 @@ RELEASE_RVCT_ARM_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) --diag_suppress=5
|
||||
#
|
||||
# Use default values, or override in DSC file
|
||||
#
|
||||
*_RVCTLINUX_ARM_ARCHCC_FLAGS = --thumb
|
||||
*_RVCTLINUX_ARM_ARCHCC_FLAGS = --thumb --fpu=softvfp
|
||||
*_RVCTLINUX_ARM_ARCHASM_FLAGS =
|
||||
*_RVCTLINUX_ARM_ARCHDLINK_FLAGS =
|
||||
*_RVCTLINUX_ARM_PLATFORM_FLAGS = --cpu 7-A
|
||||
@ -5639,7 +5634,7 @@ RELEASE_RVCTLINUX_ARM_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) --diag_suppr
|
||||
#
|
||||
# Use default values, or override in DSC file
|
||||
#
|
||||
*_RVCTCYGWIN_ARM_ARCHCC_FLAGS = --thumb
|
||||
*_RVCTCYGWIN_ARM_ARCHCC_FLAGS = --thumb --fpu=softvfp
|
||||
*_RVCTCYGWIN_ARM_ARCHASM_FLAGS =
|
||||
*_RVCTCYGWIN_ARM_ARCHDLINK_FLAGS =
|
||||
*_RVCTCYGWIN_ARM_PLATFORM_FLAGS = --cpu 7-A
|
||||
@ -5707,7 +5702,7 @@ RELEASE_RVCTCYGWIN_ARM_CC_FLAGS = "$(CCPATH_FLAG)" $(ARCHCC_FLAGS) $(PLATFORM_F
|
||||
#
|
||||
# Use default values, or override in DSC file
|
||||
#
|
||||
*_ARMGCC_ARM_ARCHCC_FLAGS = -mthumb
|
||||
*_ARMGCC_ARM_ARCHCC_FLAGS =
|
||||
*_ARMGCC_ARM_ARCHASM_FLAGS =
|
||||
*_ARMGCC_ARM_ARCHDLINK_FLAGS =
|
||||
*_ARMGCC_ARM_PLATFORM_FLAGS = -march=armv7-a
|
||||
@ -5719,7 +5714,7 @@ RELEASE_ARMGCC_ARM_ASM_FLAGS = $(ARCHASM_FLAGS) $(PLATFORM_FLAGS) -mlittle-end
|
||||
*_ARMGCC_ARM_VFRPP_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) -x c -E -P -DVFRCOMPILE --include $(DEST_DIR_DEBUG)/$(MODULE_NAME)StrDefs.h
|
||||
|
||||
*_ARMGCC_ARM_SLINK_FLAGS = -rc
|
||||
*_ARMGCC_ARM_DLINK_FLAGS = $(ARCHDLINK_FLAGS) -Ttext=0x0 --oformat=elf32-littlearm --emit-relocs -nostdlib -u $(IMAGE_ENTRY_POINT) -e $(IMAGE_ENTRY_POINT) -Map $(DEST_DIR_DEBUG)/$(BASE_NAME).map
|
||||
*_ARMGCC_ARM_DLINK_FLAGS = $(ARCHDLINK_FLAGS) DEF(GCC_ARM_AARCH64_DLINK_COMMON) --oformat=elf32-littlearm
|
||||
|
||||
DEBUG_ARMGCC_ARM_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC_ARM_CC_FLAGS) -O0
|
||||
RELEASE_ARMGCC_ARM_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC_ARM_CC_FLAGS) -Wno-unused
|
||||
@ -5755,7 +5750,7 @@ RELEASE_ARMGCC_AARCH64_ASM_FLAGS = $(ARCHASM_FLAGS) $(PLATFORM_FLAGS)
|
||||
*_ARMGCC_AARCH64_VFRPP_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) -x c -E -P -DVFRCOMPILE --include $(DEST_DIR_DEBUG)/$(MODULE_NAME)StrDefs.h
|
||||
|
||||
*_ARMGCC_AARCH64_SLINK_FLAGS = -rc
|
||||
*_ARMGCC_AARCH64_DLINK_FLAGS = $(ARCHDLINK_FLAGS) -Ttext=0x0 --emit-relocs -nostdlib -u $(IMAGE_ENTRY_POINT) -e $(IMAGE_ENTRY_POINT) -Map $(DEST_DIR_DEBUG)/$(BASE_NAME).map
|
||||
*_ARMGCC_AARCH64_DLINK_FLAGS = $(ARCHDLINK_FLAGS) DEF(GCC_ARM_AARCH64_DLINK_COMMON)
|
||||
|
||||
DEBUG_ARMGCC_AARCH64_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC_AARCH64_CC_FLAGS) -Wno-address -O0
|
||||
RELEASE_ARMGCC_AARCH64_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC_AARCH64_CC_FLAGS) -Wno-address -Wno-unused-but-set-variable
|
||||
@ -5801,7 +5796,7 @@ RELEASE_ARMGCC_AARCH64_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC_AARC
|
||||
#
|
||||
# Use default values, or override in DSC file
|
||||
#
|
||||
*_ARMLINUXGCC_ARM_ARCHCC_FLAGS = -mthumb
|
||||
*_ARMLINUXGCC_ARM_ARCHCC_FLAGS =
|
||||
*_ARMLINUXGCC_ARM_ARCHASM_FLAGS =
|
||||
*_ARMLINUXGCC_ARM_ARCHDLINK_FLAGS =
|
||||
*_ARMLINUXGCC_ARM_PLATFORM_FLAGS = -march=armv7-a
|
||||
@ -5813,7 +5808,7 @@ RELEASE_ARMLINUXGCC_ARM_ASM_FLAGS = $(ARCHASM_FLAGS) $(PLATFORM_FLAGS) -mlittl
|
||||
*_ARMLINUXGCC_ARM_VFRPP_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) -x c -E -P -DVFRCOMPILE --include $(DEST_DIR_DEBUG)/$(MODULE_NAME)StrDefs.h
|
||||
|
||||
*_ARMLINUXGCC_ARM_SLINK_FLAGS = -rc
|
||||
*_ARMLINUXGCC_ARM_DLINK_FLAGS = $(ARCHDLINK_FLAGS) -Ttext=0x0 --oformat=elf32-littlearm --emit-relocs -nostdlib -u $(IMAGE_ENTRY_POINT) -e $(IMAGE_ENTRY_POINT) -Map $(DEST_DIR_DEBUG)/$(BASE_NAME).map
|
||||
*_ARMLINUXGCC_ARM_DLINK_FLAGS = $(ARCHDLINK_FLAGS) DEF(GCC_ARM_AARCH64_DLINK_COMMON) --oformat=elf32-littlearm
|
||||
|
||||
DEBUG_ARMLINUXGCC_ARM_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC_ARM_CC_FLAGS) -fno-stack-protector -mno-unaligned-access -O0
|
||||
RELEASE_ARMLINUXGCC_ARM_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC_ARM_CC_FLAGS) -fno-stack-protector -mno-unaligned-access -Wno-unused-but-set-variable
|
||||
@ -5849,7 +5844,7 @@ RELEASE_ARMLINUXGCC_AARCH64_ASM_FLAGS = $(ARCHASM_FLAGS) $(PLATFORM_FLAGS)
|
||||
*_ARMLINUXGCC_AARCH64_VFRPP_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) -x c -E -P -DVFRCOMPILE --include $(DEST_DIR_DEBUG)/$(MODULE_NAME)StrDefs.h
|
||||
|
||||
*_ARMLINUXGCC_AARCH64_SLINK_FLAGS = -rc
|
||||
*_ARMLINUXGCC_AARCH64_DLINK_FLAGS = $(ARCHDLINK_FLAGS) -Ttext=0x0 --emit-relocs -nostdlib -u $(IMAGE_ENTRY_POINT) -e $(IMAGE_ENTRY_POINT) -Map $(DEST_DIR_DEBUG)/$(BASE_NAME).map
|
||||
*_ARMLINUXGCC_AARCH64_DLINK_FLAGS = $(ARCHDLINK_FLAGS) DEF(GCC_ARM_AARCH64_DLINK_COMMON)
|
||||
|
||||
DEBUG_ARMLINUXGCC_AARCH64_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC_AARCH64_CC_FLAGS) -Wno-address -O0
|
||||
RELEASE_ARMLINUXGCC_AARCH64_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC_AARCH64_CC_FLAGS) -Wno-address -Wno-unused-but-set-variable
|
||||
|
@ -1,87 +1,87 @@
|
||||
## @file
|
||||
# GNU/Linux makefile for C tools build.
|
||||
#
|
||||
# Copyright (c) 2007 - 2012, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
ifndef ARCH
|
||||
#
|
||||
# If ARCH is not defined, then we use 'uname -m' to attempt
|
||||
# try to figure out the appropriate ARCH.
|
||||
#
|
||||
uname_m = $(shell uname -m)
|
||||
$(info Attempting to detect ARCH from 'uname -m': $(uname_m))
|
||||
ifeq ($(uname_m),x86_64)
|
||||
ARCH=X64
|
||||
endif
|
||||
ifeq ($(patsubst i%86,IA32,$(uname_m)),IA32)
|
||||
ARCH=IA32
|
||||
endif
|
||||
ifndef ARCH
|
||||
$(info Could not detected ARCH from uname results)
|
||||
$(error ARCH is not defined!)
|
||||
endif
|
||||
$(info Detected ARCH of $(ARCH) using uname.)
|
||||
endif
|
||||
|
||||
export ARCH
|
||||
|
||||
MAKEROOT = .
|
||||
|
||||
include Makefiles/header.makefile
|
||||
|
||||
all: makerootdir subdirs $(MAKEROOT)/libs
|
||||
@echo Finished building BaseTools C Tools with ARCH=$(ARCH)
|
||||
|
||||
LIBRARIES = Common
|
||||
# NON_BUILDABLE_APPLICATIONS = GenBootSector BootSectImage
|
||||
APPLICATIONS = \
|
||||
GnuGenBootSector \
|
||||
BootSectImage \
|
||||
EfiLdrImage \
|
||||
EfiRom \
|
||||
GenFfs \
|
||||
GenFv \
|
||||
GenFw \
|
||||
GenPage \
|
||||
GenSec \
|
||||
GenCrc32 \
|
||||
GenVtf \
|
||||
LzmaCompress \
|
||||
Split \
|
||||
TianoCompress \
|
||||
VolInfo \
|
||||
VfrCompile
|
||||
|
||||
SUBDIRS := $(LIBRARIES) $(APPLICATIONS)
|
||||
|
||||
.PHONY: outputdirs
|
||||
makerootdir:
|
||||
-mkdir -p $(MAKEROOT)
|
||||
|
||||
.PHONY: subdirs $(SUBDIRS)
|
||||
subdirs: $(SUBDIRS)
|
||||
$(SUBDIRS):
|
||||
$(MAKE) -C $@
|
||||
|
||||
.PHONY: $(patsubst %,%-clean,$(sort $(SUBDIRS)))
|
||||
$(patsubst %,%-clean,$(sort $(SUBDIRS))):
|
||||
-$(MAKE) -C $(@:-clean=) clean
|
||||
|
||||
clean: $(patsubst %,%-clean,$(sort $(SUBDIRS)))
|
||||
|
||||
clean: localClean
|
||||
|
||||
localClean:
|
||||
rm -f $(MAKEROOT)/bin/*
|
||||
-rmdir $(MAKEROOT)/libs $(MAKEROOT)/bin
|
||||
|
||||
include Makefiles/footer.makefile
|
||||
## @file
|
||||
# GNU/Linux makefile for C tools build.
|
||||
#
|
||||
# Copyright (c) 2007 - 2012, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
ifndef ARCH
|
||||
#
|
||||
# If ARCH is not defined, then we use 'uname -m' to attempt
|
||||
# try to figure out the appropriate ARCH.
|
||||
#
|
||||
uname_m = $(shell uname -m)
|
||||
$(info Attempting to detect ARCH from 'uname -m': $(uname_m))
|
||||
ifeq ($(uname_m),x86_64)
|
||||
ARCH=X64
|
||||
endif
|
||||
ifeq ($(patsubst i%86,IA32,$(uname_m)),IA32)
|
||||
ARCH=IA32
|
||||
endif
|
||||
ifndef ARCH
|
||||
$(info Could not detected ARCH from uname results)
|
||||
$(error ARCH is not defined!)
|
||||
endif
|
||||
$(info Detected ARCH of $(ARCH) using uname.)
|
||||
endif
|
||||
|
||||
export ARCH
|
||||
|
||||
MAKEROOT = .
|
||||
|
||||
include Makefiles/header.makefile
|
||||
|
||||
all: makerootdir subdirs $(MAKEROOT)/libs
|
||||
@echo Finished building BaseTools C Tools with ARCH=$(ARCH)
|
||||
|
||||
LIBRARIES = Common
|
||||
# NON_BUILDABLE_APPLICATIONS = GenBootSector BootSectImage
|
||||
APPLICATIONS = \
|
||||
GnuGenBootSector \
|
||||
BootSectImage \
|
||||
EfiLdrImage \
|
||||
EfiRom \
|
||||
GenFfs \
|
||||
GenFv \
|
||||
GenFw \
|
||||
GenPage \
|
||||
GenSec \
|
||||
GenCrc32 \
|
||||
GenVtf \
|
||||
LzmaCompress \
|
||||
Split \
|
||||
TianoCompress \
|
||||
VolInfo \
|
||||
VfrCompile
|
||||
|
||||
SUBDIRS := $(LIBRARIES) $(APPLICATIONS)
|
||||
|
||||
.PHONY: outputdirs
|
||||
makerootdir:
|
||||
-mkdir -p $(MAKEROOT)
|
||||
|
||||
.PHONY: subdirs $(SUBDIRS)
|
||||
subdirs: $(SUBDIRS)
|
||||
$(SUBDIRS):
|
||||
$(MAKE) -C $@
|
||||
|
||||
.PHONY: $(patsubst %,%-clean,$(sort $(SUBDIRS)))
|
||||
$(patsubst %,%-clean,$(sort $(SUBDIRS))):
|
||||
-$(MAKE) -C $(@:-clean=) clean
|
||||
|
||||
clean: $(patsubst %,%-clean,$(sort $(SUBDIRS)))
|
||||
|
||||
clean: localClean
|
||||
|
||||
localClean:
|
||||
rm -f $(MAKEROOT)/bin/*
|
||||
-rmdir $(MAKEROOT)/libs $(MAKEROOT)/bin
|
||||
|
||||
include Makefiles/footer.makefile
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,24 +1,24 @@
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials are licensed and made available
|
||||
under the terms and conditions of the BSD License which accompanies this
|
||||
distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _ELF_32_CONVERT_
|
||||
#define _ELF_32_CONVERT_
|
||||
|
||||
BOOLEAN
|
||||
InitializeElf32 (
|
||||
UINT8 *FileBuffer,
|
||||
ELF_FUNCTION_TABLE *ElfFunctions
|
||||
);
|
||||
|
||||
#endif
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials are licensed and made available
|
||||
under the terms and conditions of the BSD License which accompanies this
|
||||
distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _ELF_32_CONVERT_
|
||||
#define _ELF_32_CONVERT_
|
||||
|
||||
BOOLEAN
|
||||
InitializeElf32 (
|
||||
UINT8 *FileBuffer,
|
||||
ELF_FUNCTION_TABLE *ElfFunctions
|
||||
);
|
||||
|
||||
#endif
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,24 +1,24 @@
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials are licensed and made available
|
||||
under the terms and conditions of the BSD License which accompanies this
|
||||
distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _ELF_64_CONVERT_
|
||||
#define _ELF_64_CONVERT_
|
||||
|
||||
BOOLEAN
|
||||
InitializeElf64 (
|
||||
UINT8 *FileBuffer,
|
||||
ELF_FUNCTION_TABLE *ElfFunctions
|
||||
);
|
||||
|
||||
#endif
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials are licensed and made available
|
||||
under the terms and conditions of the BSD License which accompanies this
|
||||
distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _ELF_64_CONVERT_
|
||||
#define _ELF_64_CONVERT_
|
||||
|
||||
BOOLEAN
|
||||
InitializeElf64 (
|
||||
UINT8 *FileBuffer,
|
||||
ELF_FUNCTION_TABLE *ElfFunctions
|
||||
);
|
||||
|
||||
#endif
|
||||
|
@ -1,233 +1,233 @@
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials are licensed and made available
|
||||
under the terms and conditions of the BSD License which accompanies this
|
||||
distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#include "WinNtInclude.h"
|
||||
|
||||
#ifndef __GNUC__
|
||||
#include <windows.h>
|
||||
#include <io.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include <Common/UefiBaseTypes.h>
|
||||
#include <IndustryStandard/PeImage.h>
|
||||
|
||||
#include "EfiUtilityMsgs.h"
|
||||
|
||||
#include "GenFw.h"
|
||||
#include "ElfConvert.h"
|
||||
#include "Elf32Convert.h"
|
||||
#include "Elf64Convert.h"
|
||||
|
||||
//
|
||||
// Result Coff file in memory.
|
||||
//
|
||||
UINT8 *mCoffFile = NULL;
|
||||
|
||||
//
|
||||
// COFF relocation data
|
||||
//
|
||||
EFI_IMAGE_BASE_RELOCATION *mCoffBaseRel;
|
||||
UINT16 *mCoffEntryRel;
|
||||
|
||||
//
|
||||
// Current offset in coff file.
|
||||
//
|
||||
UINT32 mCoffOffset;
|
||||
|
||||
//
|
||||
// Offset in Coff file of headers and sections.
|
||||
//
|
||||
UINT32 mTableOffset;
|
||||
|
||||
//
|
||||
//*****************************************************************************
|
||||
// Common ELF Functions
|
||||
//*****************************************************************************
|
||||
//
|
||||
|
||||
VOID
|
||||
CoffAddFixupEntry(
|
||||
UINT16 Val
|
||||
)
|
||||
{
|
||||
*mCoffEntryRel = Val;
|
||||
mCoffEntryRel++;
|
||||
mCoffBaseRel->SizeOfBlock += 2;
|
||||
mCoffOffset += 2;
|
||||
}
|
||||
|
||||
VOID
|
||||
CoffAddFixup(
|
||||
UINT32 Offset,
|
||||
UINT8 Type
|
||||
)
|
||||
{
|
||||
if (mCoffBaseRel == NULL
|
||||
|| mCoffBaseRel->VirtualAddress != (Offset & ~0xfff)) {
|
||||
if (mCoffBaseRel != NULL) {
|
||||
//
|
||||
// Add a null entry (is it required ?)
|
||||
//
|
||||
CoffAddFixupEntry (0);
|
||||
|
||||
//
|
||||
// Pad for alignment.
|
||||
//
|
||||
if (mCoffOffset % 4 != 0)
|
||||
CoffAddFixupEntry (0);
|
||||
}
|
||||
|
||||
mCoffFile = realloc (
|
||||
mCoffFile,
|
||||
mCoffOffset + sizeof(EFI_IMAGE_BASE_RELOCATION) + 2*0x1000
|
||||
);
|
||||
memset (
|
||||
mCoffFile + mCoffOffset, 0,
|
||||
sizeof(EFI_IMAGE_BASE_RELOCATION) + 2*0x1000
|
||||
);
|
||||
|
||||
mCoffBaseRel = (EFI_IMAGE_BASE_RELOCATION*)(mCoffFile + mCoffOffset);
|
||||
mCoffBaseRel->VirtualAddress = Offset & ~0xfff;
|
||||
mCoffBaseRel->SizeOfBlock = sizeof(EFI_IMAGE_BASE_RELOCATION);
|
||||
|
||||
mCoffEntryRel = (UINT16 *)(mCoffBaseRel + 1);
|
||||
mCoffOffset += sizeof(EFI_IMAGE_BASE_RELOCATION);
|
||||
}
|
||||
|
||||
//
|
||||
// Fill the entry.
|
||||
//
|
||||
CoffAddFixupEntry((UINT16) ((Type << 12) | (Offset & 0xfff)));
|
||||
}
|
||||
|
||||
VOID
|
||||
CreateSectionHeader (
|
||||
const CHAR8 *Name,
|
||||
UINT32 Offset,
|
||||
UINT32 Size,
|
||||
UINT32 Flags
|
||||
)
|
||||
{
|
||||
EFI_IMAGE_SECTION_HEADER *Hdr;
|
||||
Hdr = (EFI_IMAGE_SECTION_HEADER*)(mCoffFile + mTableOffset);
|
||||
|
||||
strcpy((char *)Hdr->Name, Name);
|
||||
Hdr->Misc.VirtualSize = Size;
|
||||
Hdr->VirtualAddress = Offset;
|
||||
Hdr->SizeOfRawData = Size;
|
||||
Hdr->PointerToRawData = Offset;
|
||||
Hdr->PointerToRelocations = 0;
|
||||
Hdr->PointerToLinenumbers = 0;
|
||||
Hdr->NumberOfRelocations = 0;
|
||||
Hdr->NumberOfLinenumbers = 0;
|
||||
Hdr->Characteristics = Flags;
|
||||
|
||||
mTableOffset += sizeof (EFI_IMAGE_SECTION_HEADER);
|
||||
}
|
||||
|
||||
//
|
||||
//*****************************************************************************
|
||||
// Functions called from GenFw main code.
|
||||
//*****************************************************************************
|
||||
//
|
||||
|
||||
INTN
|
||||
IsElfHeader (
|
||||
UINT8 *FileBuffer
|
||||
)
|
||||
{
|
||||
return (FileBuffer[EI_MAG0] == ELFMAG0 &&
|
||||
FileBuffer[EI_MAG1] == ELFMAG1 &&
|
||||
FileBuffer[EI_MAG2] == ELFMAG2 &&
|
||||
FileBuffer[EI_MAG3] == ELFMAG3);
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
ConvertElf (
|
||||
UINT8 **FileBuffer,
|
||||
UINT32 *FileLength
|
||||
)
|
||||
{
|
||||
ELF_FUNCTION_TABLE ElfFunctions;
|
||||
UINT8 EiClass;
|
||||
|
||||
//
|
||||
// Determine ELF type and set function table pointer correctly.
|
||||
//
|
||||
VerboseMsg ("Check Elf Image Header");
|
||||
EiClass = (*FileBuffer)[EI_CLASS];
|
||||
if (EiClass == ELFCLASS32) {
|
||||
if (!InitializeElf32 (*FileBuffer, &ElfFunctions)) {
|
||||
return FALSE;
|
||||
}
|
||||
} else if (EiClass == ELFCLASS64) {
|
||||
if (!InitializeElf64 (*FileBuffer, &ElfFunctions)) {
|
||||
return FALSE;
|
||||
}
|
||||
} else {
|
||||
Error (NULL, 0, 3000, "Unsupported", "ELF EI_CLASS not supported.");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
//
|
||||
// Compute sections new address.
|
||||
//
|
||||
VerboseMsg ("Compute sections new address.");
|
||||
ElfFunctions.ScanSections ();
|
||||
|
||||
//
|
||||
// Write and relocate sections.
|
||||
//
|
||||
VerboseMsg ("Write and relocate sections.");
|
||||
ElfFunctions.WriteSections (SECTION_TEXT);
|
||||
ElfFunctions.WriteSections (SECTION_DATA);
|
||||
ElfFunctions.WriteSections (SECTION_HII);
|
||||
|
||||
//
|
||||
// Translate and write relocations.
|
||||
//
|
||||
VerboseMsg ("Translate and write relocations.");
|
||||
ElfFunctions.WriteRelocations ();
|
||||
|
||||
//
|
||||
// Write debug info.
|
||||
//
|
||||
VerboseMsg ("Write debug info.");
|
||||
ElfFunctions.WriteDebug ();
|
||||
|
||||
//
|
||||
// Make sure image size is correct before returning the new image.
|
||||
//
|
||||
VerboseMsg ("Set image size.");
|
||||
ElfFunctions.SetImageSize ();
|
||||
|
||||
//
|
||||
// Replace.
|
||||
//
|
||||
free (*FileBuffer);
|
||||
*FileBuffer = mCoffFile;
|
||||
*FileLength = mCoffOffset;
|
||||
|
||||
//
|
||||
// Free resources used by ELF functions.
|
||||
//
|
||||
ElfFunctions.CleanUp ();
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials are licensed and made available
|
||||
under the terms and conditions of the BSD License which accompanies this
|
||||
distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#include "WinNtInclude.h"
|
||||
|
||||
#ifndef __GNUC__
|
||||
#include <windows.h>
|
||||
#include <io.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include <Common/UefiBaseTypes.h>
|
||||
#include <IndustryStandard/PeImage.h>
|
||||
|
||||
#include "EfiUtilityMsgs.h"
|
||||
|
||||
#include "GenFw.h"
|
||||
#include "ElfConvert.h"
|
||||
#include "Elf32Convert.h"
|
||||
#include "Elf64Convert.h"
|
||||
|
||||
//
|
||||
// Result Coff file in memory.
|
||||
//
|
||||
UINT8 *mCoffFile = NULL;
|
||||
|
||||
//
|
||||
// COFF relocation data
|
||||
//
|
||||
EFI_IMAGE_BASE_RELOCATION *mCoffBaseRel;
|
||||
UINT16 *mCoffEntryRel;
|
||||
|
||||
//
|
||||
// Current offset in coff file.
|
||||
//
|
||||
UINT32 mCoffOffset;
|
||||
|
||||
//
|
||||
// Offset in Coff file of headers and sections.
|
||||
//
|
||||
UINT32 mTableOffset;
|
||||
|
||||
//
|
||||
//*****************************************************************************
|
||||
// Common ELF Functions
|
||||
//*****************************************************************************
|
||||
//
|
||||
|
||||
VOID
|
||||
CoffAddFixupEntry(
|
||||
UINT16 Val
|
||||
)
|
||||
{
|
||||
*mCoffEntryRel = Val;
|
||||
mCoffEntryRel++;
|
||||
mCoffBaseRel->SizeOfBlock += 2;
|
||||
mCoffOffset += 2;
|
||||
}
|
||||
|
||||
VOID
|
||||
CoffAddFixup(
|
||||
UINT32 Offset,
|
||||
UINT8 Type
|
||||
)
|
||||
{
|
||||
if (mCoffBaseRel == NULL
|
||||
|| mCoffBaseRel->VirtualAddress != (Offset & ~0xfff)) {
|
||||
if (mCoffBaseRel != NULL) {
|
||||
//
|
||||
// Add a null entry (is it required ?)
|
||||
//
|
||||
CoffAddFixupEntry (0);
|
||||
|
||||
//
|
||||
// Pad for alignment.
|
||||
//
|
||||
if (mCoffOffset % 4 != 0)
|
||||
CoffAddFixupEntry (0);
|
||||
}
|
||||
|
||||
mCoffFile = realloc (
|
||||
mCoffFile,
|
||||
mCoffOffset + sizeof(EFI_IMAGE_BASE_RELOCATION) + 2*0x1000
|
||||
);
|
||||
memset (
|
||||
mCoffFile + mCoffOffset, 0,
|
||||
sizeof(EFI_IMAGE_BASE_RELOCATION) + 2*0x1000
|
||||
);
|
||||
|
||||
mCoffBaseRel = (EFI_IMAGE_BASE_RELOCATION*)(mCoffFile + mCoffOffset);
|
||||
mCoffBaseRel->VirtualAddress = Offset & ~0xfff;
|
||||
mCoffBaseRel->SizeOfBlock = sizeof(EFI_IMAGE_BASE_RELOCATION);
|
||||
|
||||
mCoffEntryRel = (UINT16 *)(mCoffBaseRel + 1);
|
||||
mCoffOffset += sizeof(EFI_IMAGE_BASE_RELOCATION);
|
||||
}
|
||||
|
||||
//
|
||||
// Fill the entry.
|
||||
//
|
||||
CoffAddFixupEntry((UINT16) ((Type << 12) | (Offset & 0xfff)));
|
||||
}
|
||||
|
||||
VOID
|
||||
CreateSectionHeader (
|
||||
const CHAR8 *Name,
|
||||
UINT32 Offset,
|
||||
UINT32 Size,
|
||||
UINT32 Flags
|
||||
)
|
||||
{
|
||||
EFI_IMAGE_SECTION_HEADER *Hdr;
|
||||
Hdr = (EFI_IMAGE_SECTION_HEADER*)(mCoffFile + mTableOffset);
|
||||
|
||||
strcpy((char *)Hdr->Name, Name);
|
||||
Hdr->Misc.VirtualSize = Size;
|
||||
Hdr->VirtualAddress = Offset;
|
||||
Hdr->SizeOfRawData = Size;
|
||||
Hdr->PointerToRawData = Offset;
|
||||
Hdr->PointerToRelocations = 0;
|
||||
Hdr->PointerToLinenumbers = 0;
|
||||
Hdr->NumberOfRelocations = 0;
|
||||
Hdr->NumberOfLinenumbers = 0;
|
||||
Hdr->Characteristics = Flags;
|
||||
|
||||
mTableOffset += sizeof (EFI_IMAGE_SECTION_HEADER);
|
||||
}
|
||||
|
||||
//
|
||||
//*****************************************************************************
|
||||
// Functions called from GenFw main code.
|
||||
//*****************************************************************************
|
||||
//
|
||||
|
||||
INTN
|
||||
IsElfHeader (
|
||||
UINT8 *FileBuffer
|
||||
)
|
||||
{
|
||||
return (FileBuffer[EI_MAG0] == ELFMAG0 &&
|
||||
FileBuffer[EI_MAG1] == ELFMAG1 &&
|
||||
FileBuffer[EI_MAG2] == ELFMAG2 &&
|
||||
FileBuffer[EI_MAG3] == ELFMAG3);
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
ConvertElf (
|
||||
UINT8 **FileBuffer,
|
||||
UINT32 *FileLength
|
||||
)
|
||||
{
|
||||
ELF_FUNCTION_TABLE ElfFunctions;
|
||||
UINT8 EiClass;
|
||||
|
||||
//
|
||||
// Determine ELF type and set function table pointer correctly.
|
||||
//
|
||||
VerboseMsg ("Check Elf Image Header");
|
||||
EiClass = (*FileBuffer)[EI_CLASS];
|
||||
if (EiClass == ELFCLASS32) {
|
||||
if (!InitializeElf32 (*FileBuffer, &ElfFunctions)) {
|
||||
return FALSE;
|
||||
}
|
||||
} else if (EiClass == ELFCLASS64) {
|
||||
if (!InitializeElf64 (*FileBuffer, &ElfFunctions)) {
|
||||
return FALSE;
|
||||
}
|
||||
} else {
|
||||
Error (NULL, 0, 3000, "Unsupported", "ELF EI_CLASS not supported.");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
//
|
||||
// Compute sections new address.
|
||||
//
|
||||
VerboseMsg ("Compute sections new address.");
|
||||
ElfFunctions.ScanSections ();
|
||||
|
||||
//
|
||||
// Write and relocate sections.
|
||||
//
|
||||
VerboseMsg ("Write and relocate sections.");
|
||||
ElfFunctions.WriteSections (SECTION_TEXT);
|
||||
ElfFunctions.WriteSections (SECTION_DATA);
|
||||
ElfFunctions.WriteSections (SECTION_HII);
|
||||
|
||||
//
|
||||
// Translate and write relocations.
|
||||
//
|
||||
VerboseMsg ("Translate and write relocations.");
|
||||
ElfFunctions.WriteRelocations ();
|
||||
|
||||
//
|
||||
// Write debug info.
|
||||
//
|
||||
VerboseMsg ("Write debug info.");
|
||||
ElfFunctions.WriteDebug ();
|
||||
|
||||
//
|
||||
// Make sure image size is correct before returning the new image.
|
||||
//
|
||||
VerboseMsg ("Set image size.");
|
||||
ElfFunctions.SetImageSize ();
|
||||
|
||||
//
|
||||
// Replace.
|
||||
//
|
||||
free (*FileBuffer);
|
||||
*FileBuffer = mCoffFile;
|
||||
*FileLength = mCoffOffset;
|
||||
|
||||
//
|
||||
// Free resources used by ELF functions.
|
||||
//
|
||||
ElfFunctions.CleanUp ();
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
@ -1,83 +1,83 @@
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials are licensed and made available
|
||||
under the terms and conditions of the BSD License which accompanies this
|
||||
distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _ELF_CONVERT_H_
|
||||
#define _ELF_CONVERT_H_
|
||||
|
||||
#include "elf_common.h"
|
||||
#include "elf32.h"
|
||||
#include "elf64.h"
|
||||
|
||||
//
|
||||
// Externally defined variables
|
||||
//
|
||||
extern UINT32 mCoffOffset;
|
||||
extern CHAR8 *mInImageName;
|
||||
extern UINT32 mImageTimeStamp;
|
||||
extern UINT8 *mCoffFile;
|
||||
extern UINT32 mTableOffset;
|
||||
extern UINT32 mOutImageType;
|
||||
|
||||
//
|
||||
// Common EFI specific data.
|
||||
//
|
||||
#define ELF_HII_SECTION_NAME ".hii"
|
||||
|
||||
//
|
||||
// Filter Types
|
||||
//
|
||||
typedef enum {
|
||||
SECTION_TEXT,
|
||||
SECTION_HII,
|
||||
SECTION_DATA
|
||||
|
||||
} SECTION_FILTER_TYPES;
|
||||
|
||||
//
|
||||
// FunctionTalbe
|
||||
//
|
||||
typedef struct {
|
||||
VOID (*ScanSections) ();
|
||||
BOOLEAN (*WriteSections) (SECTION_FILTER_TYPES FilterType);
|
||||
VOID (*WriteRelocations) ();
|
||||
VOID (*WriteDebug) ();
|
||||
VOID (*SetImageSize) ();
|
||||
VOID (*CleanUp) ();
|
||||
|
||||
} ELF_FUNCTION_TABLE;
|
||||
|
||||
//
|
||||
// Common functions
|
||||
//
|
||||
VOID
|
||||
CoffAddFixup (
|
||||
UINT32 Offset,
|
||||
UINT8 Type
|
||||
);
|
||||
|
||||
VOID
|
||||
CoffAddFixupEntry (
|
||||
UINT16 Val
|
||||
);
|
||||
|
||||
|
||||
VOID
|
||||
CreateSectionHeader (
|
||||
const CHAR8 *Name,
|
||||
UINT32 Offset,
|
||||
UINT32 Size,
|
||||
UINT32 Flags
|
||||
);
|
||||
|
||||
#endif
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials are licensed and made available
|
||||
under the terms and conditions of the BSD License which accompanies this
|
||||
distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _ELF_CONVERT_H_
|
||||
#define _ELF_CONVERT_H_
|
||||
|
||||
#include "elf_common.h"
|
||||
#include "elf32.h"
|
||||
#include "elf64.h"
|
||||
|
||||
//
|
||||
// Externally defined variables
|
||||
//
|
||||
extern UINT32 mCoffOffset;
|
||||
extern CHAR8 *mInImageName;
|
||||
extern UINT32 mImageTimeStamp;
|
||||
extern UINT8 *mCoffFile;
|
||||
extern UINT32 mTableOffset;
|
||||
extern UINT32 mOutImageType;
|
||||
|
||||
//
|
||||
// Common EFI specific data.
|
||||
//
|
||||
#define ELF_HII_SECTION_NAME ".hii"
|
||||
|
||||
//
|
||||
// Filter Types
|
||||
//
|
||||
typedef enum {
|
||||
SECTION_TEXT,
|
||||
SECTION_HII,
|
||||
SECTION_DATA
|
||||
|
||||
} SECTION_FILTER_TYPES;
|
||||
|
||||
//
|
||||
// FunctionTalbe
|
||||
//
|
||||
typedef struct {
|
||||
VOID (*ScanSections) ();
|
||||
BOOLEAN (*WriteSections) (SECTION_FILTER_TYPES FilterType);
|
||||
VOID (*WriteRelocations) ();
|
||||
VOID (*WriteDebug) ();
|
||||
VOID (*SetImageSize) ();
|
||||
VOID (*CleanUp) ();
|
||||
|
||||
} ELF_FUNCTION_TABLE;
|
||||
|
||||
//
|
||||
// Common functions
|
||||
//
|
||||
VOID
|
||||
CoffAddFixup (
|
||||
UINT32 Offset,
|
||||
UINT8 Type
|
||||
);
|
||||
|
||||
VOID
|
||||
CoffAddFixupEntry (
|
||||
UINT16 Val
|
||||
);
|
||||
|
||||
|
||||
VOID
|
||||
CreateSectionHeader (
|
||||
const CHAR8 *Name,
|
||||
UINT32 Offset,
|
||||
UINT32 Size,
|
||||
UINT32 Flags
|
||||
);
|
||||
|
||||
#endif
|
||||
|
@ -1,55 +1,55 @@
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials are licensed and made available
|
||||
under the terms and conditions of the BSD License which accompanies this
|
||||
distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _GEN_FW_H_
|
||||
#define _GEN_FW_H_
|
||||
|
||||
//
|
||||
// Action for this tool.
|
||||
//
|
||||
#define FW_DUMMY_IMAGE 0
|
||||
#define FW_EFI_IMAGE 1
|
||||
#define FW_TE_IMAGE 2
|
||||
#define FW_ACPI_IMAGE 3
|
||||
#define FW_BIN_IMAGE 4
|
||||
#define FW_ZERO_DEBUG_IMAGE 5
|
||||
#define FW_SET_STAMP_IMAGE 6
|
||||
#define FW_MCI_IMAGE 7
|
||||
#define FW_MERGE_IMAGE 8
|
||||
#define FW_RELOC_STRIPEED_IMAGE 9
|
||||
#define FW_HII_PACKAGE_LIST_RCIMAGE 10
|
||||
#define FW_HII_PACKAGE_LIST_BINIMAGE 11
|
||||
#define FW_REBASE_IMAGE 12
|
||||
#define FW_SET_ADDRESS_IMAGE 13
|
||||
|
||||
#define DUMP_TE_HEADER 0x11
|
||||
|
||||
VOID
|
||||
SetHiiResourceHeader (
|
||||
UINT8 *HiiBinData,
|
||||
UINT32 OffsetToFile
|
||||
);
|
||||
|
||||
INTN
|
||||
IsElfHeader (
|
||||
UINT8 *FileBuffer
|
||||
);
|
||||
|
||||
BOOLEAN
|
||||
ConvertElf (
|
||||
UINT8 **FileBuffer,
|
||||
UINT32 *FileLength
|
||||
);
|
||||
|
||||
#endif
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials are licensed and made available
|
||||
under the terms and conditions of the BSD License which accompanies this
|
||||
distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _GEN_FW_H_
|
||||
#define _GEN_FW_H_
|
||||
|
||||
//
|
||||
// Action for this tool.
|
||||
//
|
||||
#define FW_DUMMY_IMAGE 0
|
||||
#define FW_EFI_IMAGE 1
|
||||
#define FW_TE_IMAGE 2
|
||||
#define FW_ACPI_IMAGE 3
|
||||
#define FW_BIN_IMAGE 4
|
||||
#define FW_ZERO_DEBUG_IMAGE 5
|
||||
#define FW_SET_STAMP_IMAGE 6
|
||||
#define FW_MCI_IMAGE 7
|
||||
#define FW_MERGE_IMAGE 8
|
||||
#define FW_RELOC_STRIPEED_IMAGE 9
|
||||
#define FW_HII_PACKAGE_LIST_RCIMAGE 10
|
||||
#define FW_HII_PACKAGE_LIST_BINIMAGE 11
|
||||
#define FW_REBASE_IMAGE 12
|
||||
#define FW_SET_ADDRESS_IMAGE 13
|
||||
|
||||
#define DUMP_TE_HEADER 0x11
|
||||
|
||||
VOID
|
||||
SetHiiResourceHeader (
|
||||
UINT8 *HiiBinData,
|
||||
UINT32 OffsetToFile
|
||||
);
|
||||
|
||||
INTN
|
||||
IsElfHeader (
|
||||
UINT8 *FileBuffer
|
||||
);
|
||||
|
||||
BOOLEAN
|
||||
ConvertElf (
|
||||
UINT8 **FileBuffer,
|
||||
UINT32 *FileLength
|
||||
);
|
||||
|
||||
#endif
|
||||
|
@ -1,258 +1,258 @@
|
||||
/** @file
|
||||
Ported ELF include files from FreeBSD
|
||||
|
||||
Copyright (c) 2009 - 2010, Apple Inc. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
|
||||
**/
|
||||
/*-
|
||||
* Copyright (c) 1996-1998 John D. Polstra.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD: src/sys/sys/elf32.h,v 1.8.14.2 2007/12/03 21:30:36 marius Exp $
|
||||
*/
|
||||
|
||||
#ifndef _SYS_ELF32_H_
|
||||
#define _SYS_ELF32_H_ 1
|
||||
|
||||
|
||||
/*
|
||||
* ELF definitions common to all 32-bit architectures.
|
||||
*/
|
||||
|
||||
typedef UINT32 Elf32_Addr;
|
||||
typedef UINT16 Elf32_Half;
|
||||
typedef UINT32 Elf32_Off;
|
||||
typedef INT32 Elf32_Sword;
|
||||
typedef UINT32 Elf32_Word;
|
||||
typedef UINT64 Elf32_Lword;
|
||||
|
||||
typedef Elf32_Word Elf32_Hashelt;
|
||||
|
||||
/* Non-standard class-dependent datatype used for abstraction. */
|
||||
typedef Elf32_Word Elf32_Size;
|
||||
typedef Elf32_Sword Elf32_Ssize;
|
||||
|
||||
/*
|
||||
* ELF header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
unsigned char e_ident[EI_NIDENT]; /* File identification. */
|
||||
Elf32_Half e_type; /* File type. */
|
||||
Elf32_Half e_machine; /* Machine architecture. */
|
||||
Elf32_Word e_version; /* ELF format version. */
|
||||
Elf32_Addr e_entry; /* Entry point. */
|
||||
Elf32_Off e_phoff; /* Program header file offset. */
|
||||
Elf32_Off e_shoff; /* Section header file offset. */
|
||||
Elf32_Word e_flags; /* Architecture-specific flags. */
|
||||
Elf32_Half e_ehsize; /* Size of ELF header in bytes. */
|
||||
Elf32_Half e_phentsize; /* Size of program header entry. */
|
||||
Elf32_Half e_phnum; /* Number of program header entries. */
|
||||
Elf32_Half e_shentsize; /* Size of section header entry. */
|
||||
Elf32_Half e_shnum; /* Number of section header entries. */
|
||||
Elf32_Half e_shstrndx; /* Section name strings section. */
|
||||
} Elf32_Ehdr;
|
||||
|
||||
/*
|
||||
* Section header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf32_Word sh_name; /* Section name (index into the
|
||||
section header string table). */
|
||||
Elf32_Word sh_type; /* Section type. */
|
||||
Elf32_Word sh_flags; /* Section flags. */
|
||||
Elf32_Addr sh_addr; /* Address in memory image. */
|
||||
Elf32_Off sh_offset; /* Offset in file. */
|
||||
Elf32_Word sh_size; /* Size in bytes. */
|
||||
Elf32_Word sh_link; /* Index of a related section. */
|
||||
Elf32_Word sh_info; /* Depends on section type. */
|
||||
Elf32_Word sh_addralign; /* Alignment in bytes. */
|
||||
Elf32_Word sh_entsize; /* Size of each entry in section. */
|
||||
} Elf32_Shdr;
|
||||
|
||||
/*
|
||||
* Program header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf32_Word p_type; /* Entry type. */
|
||||
Elf32_Off p_offset; /* File offset of contents. */
|
||||
Elf32_Addr p_vaddr; /* Virtual address in memory image. */
|
||||
Elf32_Addr p_paddr; /* Physical address (not used). */
|
||||
Elf32_Word p_filesz; /* Size of contents in file. */
|
||||
Elf32_Word p_memsz; /* Size of contents in memory. */
|
||||
Elf32_Word p_flags; /* Access permission flags. */
|
||||
Elf32_Word p_align; /* Alignment in memory and file. */
|
||||
} Elf32_Phdr;
|
||||
|
||||
/*
|
||||
* Dynamic structure. The ".dynamic" section contains an array of them.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf32_Sword d_tag; /* Entry type. */
|
||||
union {
|
||||
Elf32_Word d_val; /* Integer value. */
|
||||
Elf32_Addr d_ptr; /* Address value. */
|
||||
} d_un;
|
||||
} Elf32_Dyn;
|
||||
|
||||
/*
|
||||
* Relocation entries.
|
||||
*/
|
||||
|
||||
/* Relocations that don't need an addend field. */
|
||||
typedef struct {
|
||||
Elf32_Addr r_offset; /* Location to be relocated. */
|
||||
Elf32_Word r_info; /* Relocation type and symbol index. */
|
||||
} Elf32_Rel;
|
||||
|
||||
/* Relocations that need an addend field. */
|
||||
typedef struct {
|
||||
Elf32_Addr r_offset; /* Location to be relocated. */
|
||||
Elf32_Word r_info; /* Relocation type and symbol index. */
|
||||
Elf32_Sword r_addend; /* Addend. */
|
||||
} Elf32_Rela;
|
||||
|
||||
/* Macros for accessing the fields of r_info. */
|
||||
#define ELF32_R_SYM(info) ((info) >> 8)
|
||||
#define ELF32_R_TYPE(info) ((unsigned char)(info))
|
||||
|
||||
/* Macro for constructing r_info from field values. */
|
||||
#define ELF32_R_INFO(sym, type) (((sym) << 8) + (unsigned char)(type))
|
||||
|
||||
/*
|
||||
* Note entry header
|
||||
*/
|
||||
typedef Elf_Note Elf32_Nhdr;
|
||||
|
||||
/*
|
||||
* Move entry
|
||||
*/
|
||||
typedef struct {
|
||||
Elf32_Lword m_value; /* symbol value */
|
||||
Elf32_Word m_info; /* size + index */
|
||||
Elf32_Word m_poffset; /* symbol offset */
|
||||
Elf32_Half m_repeat; /* repeat count */
|
||||
Elf32_Half m_stride; /* stride info */
|
||||
} Elf32_Move;
|
||||
|
||||
/*
|
||||
* The macros compose and decompose values for Move.r_info
|
||||
*
|
||||
* sym = ELF32_M_SYM(M.m_info)
|
||||
* size = ELF32_M_SIZE(M.m_info)
|
||||
* M.m_info = ELF32_M_INFO(sym, size)
|
||||
*/
|
||||
#define ELF32_M_SYM(info) ((info)>>8)
|
||||
#define ELF32_M_SIZE(info) ((unsigned char)(info))
|
||||
#define ELF32_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size))
|
||||
|
||||
/*
|
||||
* Hardware/Software capabilities entry
|
||||
*/
|
||||
typedef struct {
|
||||
Elf32_Word c_tag; /* how to interpret value */
|
||||
union {
|
||||
Elf32_Word c_val;
|
||||
Elf32_Addr c_ptr;
|
||||
} c_un;
|
||||
} Elf32_Cap;
|
||||
|
||||
/*
|
||||
* Symbol table entries.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf32_Word st_name; /* String table index of name. */
|
||||
Elf32_Addr st_value; /* Symbol value. */
|
||||
Elf32_Word st_size; /* Size of associated object. */
|
||||
unsigned char st_info; /* Type and binding information. */
|
||||
unsigned char st_other; /* Reserved (not used). */
|
||||
Elf32_Half st_shndx; /* Section index of symbol. */
|
||||
} Elf32_Sym;
|
||||
|
||||
/* Macros for accessing the fields of st_info. */
|
||||
#define ELF32_ST_BIND(info) ((info) >> 4)
|
||||
#define ELF32_ST_TYPE(info) ((info) & 0xf)
|
||||
|
||||
/* Macro for constructing st_info from field values. */
|
||||
#define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
|
||||
|
||||
/* Macro for accessing the fields of st_other. */
|
||||
#define ELF32_ST_VISIBILITY(oth) ((oth) & 0x3)
|
||||
|
||||
/* Structures used by Sun & GNU symbol versioning. */
|
||||
typedef struct
|
||||
{
|
||||
Elf32_Half vd_version;
|
||||
Elf32_Half vd_flags;
|
||||
Elf32_Half vd_ndx;
|
||||
Elf32_Half vd_cnt;
|
||||
Elf32_Word vd_hash;
|
||||
Elf32_Word vd_aux;
|
||||
Elf32_Word vd_next;
|
||||
} Elf32_Verdef;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
Elf32_Word vda_name;
|
||||
Elf32_Word vda_next;
|
||||
} Elf32_Verdaux;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
Elf32_Half vn_version;
|
||||
Elf32_Half vn_cnt;
|
||||
Elf32_Word vn_file;
|
||||
Elf32_Word vn_aux;
|
||||
Elf32_Word vn_next;
|
||||
} Elf32_Verneed;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
Elf32_Word vna_hash;
|
||||
Elf32_Half vna_flags;
|
||||
Elf32_Half vna_other;
|
||||
Elf32_Word vna_name;
|
||||
Elf32_Word vna_next;
|
||||
} Elf32_Vernaux;
|
||||
|
||||
typedef Elf32_Half Elf32_Versym;
|
||||
|
||||
typedef struct {
|
||||
Elf32_Half si_boundto; /* direct bindings - symbol bound to */
|
||||
Elf32_Half si_flags; /* per symbol flags */
|
||||
} Elf32_Syminfo;
|
||||
|
||||
#endif /* !_SYS_ELF32_H_ */
|
||||
/** @file
|
||||
Ported ELF include files from FreeBSD
|
||||
|
||||
Copyright (c) 2009 - 2010, Apple Inc. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
|
||||
**/
|
||||
/*-
|
||||
* Copyright (c) 1996-1998 John D. Polstra.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD: src/sys/sys/elf32.h,v 1.8.14.2 2007/12/03 21:30:36 marius Exp $
|
||||
*/
|
||||
|
||||
#ifndef _SYS_ELF32_H_
|
||||
#define _SYS_ELF32_H_ 1
|
||||
|
||||
|
||||
/*
|
||||
* ELF definitions common to all 32-bit architectures.
|
||||
*/
|
||||
|
||||
typedef UINT32 Elf32_Addr;
|
||||
typedef UINT16 Elf32_Half;
|
||||
typedef UINT32 Elf32_Off;
|
||||
typedef INT32 Elf32_Sword;
|
||||
typedef UINT32 Elf32_Word;
|
||||
typedef UINT64 Elf32_Lword;
|
||||
|
||||
typedef Elf32_Word Elf32_Hashelt;
|
||||
|
||||
/* Non-standard class-dependent datatype used for abstraction. */
|
||||
typedef Elf32_Word Elf32_Size;
|
||||
typedef Elf32_Sword Elf32_Ssize;
|
||||
|
||||
/*
|
||||
* ELF header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
unsigned char e_ident[EI_NIDENT]; /* File identification. */
|
||||
Elf32_Half e_type; /* File type. */
|
||||
Elf32_Half e_machine; /* Machine architecture. */
|
||||
Elf32_Word e_version; /* ELF format version. */
|
||||
Elf32_Addr e_entry; /* Entry point. */
|
||||
Elf32_Off e_phoff; /* Program header file offset. */
|
||||
Elf32_Off e_shoff; /* Section header file offset. */
|
||||
Elf32_Word e_flags; /* Architecture-specific flags. */
|
||||
Elf32_Half e_ehsize; /* Size of ELF header in bytes. */
|
||||
Elf32_Half e_phentsize; /* Size of program header entry. */
|
||||
Elf32_Half e_phnum; /* Number of program header entries. */
|
||||
Elf32_Half e_shentsize; /* Size of section header entry. */
|
||||
Elf32_Half e_shnum; /* Number of section header entries. */
|
||||
Elf32_Half e_shstrndx; /* Section name strings section. */
|
||||
} Elf32_Ehdr;
|
||||
|
||||
/*
|
||||
* Section header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf32_Word sh_name; /* Section name (index into the
|
||||
section header string table). */
|
||||
Elf32_Word sh_type; /* Section type. */
|
||||
Elf32_Word sh_flags; /* Section flags. */
|
||||
Elf32_Addr sh_addr; /* Address in memory image. */
|
||||
Elf32_Off sh_offset; /* Offset in file. */
|
||||
Elf32_Word sh_size; /* Size in bytes. */
|
||||
Elf32_Word sh_link; /* Index of a related section. */
|
||||
Elf32_Word sh_info; /* Depends on section type. */
|
||||
Elf32_Word sh_addralign; /* Alignment in bytes. */
|
||||
Elf32_Word sh_entsize; /* Size of each entry in section. */
|
||||
} Elf32_Shdr;
|
||||
|
||||
/*
|
||||
* Program header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf32_Word p_type; /* Entry type. */
|
||||
Elf32_Off p_offset; /* File offset of contents. */
|
||||
Elf32_Addr p_vaddr; /* Virtual address in memory image. */
|
||||
Elf32_Addr p_paddr; /* Physical address (not used). */
|
||||
Elf32_Word p_filesz; /* Size of contents in file. */
|
||||
Elf32_Word p_memsz; /* Size of contents in memory. */
|
||||
Elf32_Word p_flags; /* Access permission flags. */
|
||||
Elf32_Word p_align; /* Alignment in memory and file. */
|
||||
} Elf32_Phdr;
|
||||
|
||||
/*
|
||||
* Dynamic structure. The ".dynamic" section contains an array of them.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf32_Sword d_tag; /* Entry type. */
|
||||
union {
|
||||
Elf32_Word d_val; /* Integer value. */
|
||||
Elf32_Addr d_ptr; /* Address value. */
|
||||
} d_un;
|
||||
} Elf32_Dyn;
|
||||
|
||||
/*
|
||||
* Relocation entries.
|
||||
*/
|
||||
|
||||
/* Relocations that don't need an addend field. */
|
||||
typedef struct {
|
||||
Elf32_Addr r_offset; /* Location to be relocated. */
|
||||
Elf32_Word r_info; /* Relocation type and symbol index. */
|
||||
} Elf32_Rel;
|
||||
|
||||
/* Relocations that need an addend field. */
|
||||
typedef struct {
|
||||
Elf32_Addr r_offset; /* Location to be relocated. */
|
||||
Elf32_Word r_info; /* Relocation type and symbol index. */
|
||||
Elf32_Sword r_addend; /* Addend. */
|
||||
} Elf32_Rela;
|
||||
|
||||
/* Macros for accessing the fields of r_info. */
|
||||
#define ELF32_R_SYM(info) ((info) >> 8)
|
||||
#define ELF32_R_TYPE(info) ((unsigned char)(info))
|
||||
|
||||
/* Macro for constructing r_info from field values. */
|
||||
#define ELF32_R_INFO(sym, type) (((sym) << 8) + (unsigned char)(type))
|
||||
|
||||
/*
|
||||
* Note entry header
|
||||
*/
|
||||
typedef Elf_Note Elf32_Nhdr;
|
||||
|
||||
/*
|
||||
* Move entry
|
||||
*/
|
||||
typedef struct {
|
||||
Elf32_Lword m_value; /* symbol value */
|
||||
Elf32_Word m_info; /* size + index */
|
||||
Elf32_Word m_poffset; /* symbol offset */
|
||||
Elf32_Half m_repeat; /* repeat count */
|
||||
Elf32_Half m_stride; /* stride info */
|
||||
} Elf32_Move;
|
||||
|
||||
/*
|
||||
* The macros compose and decompose values for Move.r_info
|
||||
*
|
||||
* sym = ELF32_M_SYM(M.m_info)
|
||||
* size = ELF32_M_SIZE(M.m_info)
|
||||
* M.m_info = ELF32_M_INFO(sym, size)
|
||||
*/
|
||||
#define ELF32_M_SYM(info) ((info)>>8)
|
||||
#define ELF32_M_SIZE(info) ((unsigned char)(info))
|
||||
#define ELF32_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size))
|
||||
|
||||
/*
|
||||
* Hardware/Software capabilities entry
|
||||
*/
|
||||
typedef struct {
|
||||
Elf32_Word c_tag; /* how to interpret value */
|
||||
union {
|
||||
Elf32_Word c_val;
|
||||
Elf32_Addr c_ptr;
|
||||
} c_un;
|
||||
} Elf32_Cap;
|
||||
|
||||
/*
|
||||
* Symbol table entries.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf32_Word st_name; /* String table index of name. */
|
||||
Elf32_Addr st_value; /* Symbol value. */
|
||||
Elf32_Word st_size; /* Size of associated object. */
|
||||
unsigned char st_info; /* Type and binding information. */
|
||||
unsigned char st_other; /* Reserved (not used). */
|
||||
Elf32_Half st_shndx; /* Section index of symbol. */
|
||||
} Elf32_Sym;
|
||||
|
||||
/* Macros for accessing the fields of st_info. */
|
||||
#define ELF32_ST_BIND(info) ((info) >> 4)
|
||||
#define ELF32_ST_TYPE(info) ((info) & 0xf)
|
||||
|
||||
/* Macro for constructing st_info from field values. */
|
||||
#define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
|
||||
|
||||
/* Macro for accessing the fields of st_other. */
|
||||
#define ELF32_ST_VISIBILITY(oth) ((oth) & 0x3)
|
||||
|
||||
/* Structures used by Sun & GNU symbol versioning. */
|
||||
typedef struct
|
||||
{
|
||||
Elf32_Half vd_version;
|
||||
Elf32_Half vd_flags;
|
||||
Elf32_Half vd_ndx;
|
||||
Elf32_Half vd_cnt;
|
||||
Elf32_Word vd_hash;
|
||||
Elf32_Word vd_aux;
|
||||
Elf32_Word vd_next;
|
||||
} Elf32_Verdef;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
Elf32_Word vda_name;
|
||||
Elf32_Word vda_next;
|
||||
} Elf32_Verdaux;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
Elf32_Half vn_version;
|
||||
Elf32_Half vn_cnt;
|
||||
Elf32_Word vn_file;
|
||||
Elf32_Word vn_aux;
|
||||
Elf32_Word vn_next;
|
||||
} Elf32_Verneed;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
Elf32_Word vna_hash;
|
||||
Elf32_Half vna_flags;
|
||||
Elf32_Half vna_other;
|
||||
Elf32_Word vna_name;
|
||||
Elf32_Word vna_next;
|
||||
} Elf32_Vernaux;
|
||||
|
||||
typedef Elf32_Half Elf32_Versym;
|
||||
|
||||
typedef struct {
|
||||
Elf32_Half si_boundto; /* direct bindings - symbol bound to */
|
||||
Elf32_Half si_flags; /* per symbol flags */
|
||||
} Elf32_Syminfo;
|
||||
|
||||
#endif /* !_SYS_ELF32_H_ */
|
||||
|
@ -1,260 +1,260 @@
|
||||
/** @file
|
||||
Ported ELF include files from FreeBSD
|
||||
|
||||
Copyright (c) 2009 - 2010, Apple Inc. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
/*-
|
||||
* Copyright (c) 1996-1998 John D. Polstra.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD: src/sys/sys/elf64.h,v 1.10.14.2 2007/12/03 21:30:36 marius Exp $
|
||||
*/
|
||||
|
||||
#ifndef _SYS_ELF64_H_
|
||||
#define _SYS_ELF64_H_ 1
|
||||
|
||||
|
||||
/*
|
||||
* ELF definitions common to all 64-bit architectures.
|
||||
*/
|
||||
|
||||
typedef UINT64 Elf64_Addr;
|
||||
typedef UINT16 Elf64_Half;
|
||||
typedef UINT64 Elf64_Off;
|
||||
typedef INT32 Elf64_Sword;
|
||||
typedef INT64 Elf64_Sxword;
|
||||
typedef UINT32 Elf64_Word;
|
||||
typedef UINT64 Elf64_Lword;
|
||||
typedef UINT64 Elf64_Xword;
|
||||
|
||||
/*
|
||||
* Types of dynamic symbol hash table bucket and chain elements.
|
||||
*
|
||||
* This is inconsistent among 64 bit architectures, so a machine dependent
|
||||
* typedef is required.
|
||||
*/
|
||||
|
||||
typedef Elf64_Word Elf64_Hashelt;
|
||||
|
||||
/* Non-standard class-dependent datatype used for abstraction. */
|
||||
typedef Elf64_Xword Elf64_Size;
|
||||
typedef Elf64_Sxword Elf64_Ssize;
|
||||
|
||||
/*
|
||||
* ELF header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
unsigned char e_ident[EI_NIDENT]; /* File identification. */
|
||||
Elf64_Half e_type; /* File type. */
|
||||
Elf64_Half e_machine; /* Machine architecture. */
|
||||
Elf64_Word e_version; /* ELF format version. */
|
||||
Elf64_Addr e_entry; /* Entry point. */
|
||||
Elf64_Off e_phoff; /* Program header file offset. */
|
||||
Elf64_Off e_shoff; /* Section header file offset. */
|
||||
Elf64_Word e_flags; /* Architecture-specific flags. */
|
||||
Elf64_Half e_ehsize; /* Size of ELF header in bytes. */
|
||||
Elf64_Half e_phentsize; /* Size of program header entry. */
|
||||
Elf64_Half e_phnum; /* Number of program header entries. */
|
||||
Elf64_Half e_shentsize; /* Size of section header entry. */
|
||||
Elf64_Half e_shnum; /* Number of section header entries. */
|
||||
Elf64_Half e_shstrndx; /* Section name strings section. */
|
||||
} Elf64_Ehdr;
|
||||
|
||||
/*
|
||||
* Section header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf64_Word sh_name; /* Section name (index into the
|
||||
section header string table). */
|
||||
Elf64_Word sh_type; /* Section type. */
|
||||
Elf64_Xword sh_flags; /* Section flags. */
|
||||
Elf64_Addr sh_addr; /* Address in memory image. */
|
||||
Elf64_Off sh_offset; /* Offset in file. */
|
||||
Elf64_Xword sh_size; /* Size in bytes. */
|
||||
Elf64_Word sh_link; /* Index of a related section. */
|
||||
Elf64_Word sh_info; /* Depends on section type. */
|
||||
Elf64_Xword sh_addralign; /* Alignment in bytes. */
|
||||
Elf64_Xword sh_entsize; /* Size of each entry in section. */
|
||||
} Elf64_Shdr;
|
||||
|
||||
/*
|
||||
* Program header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf64_Word p_type; /* Entry type. */
|
||||
Elf64_Word p_flags; /* Access permission flags. */
|
||||
Elf64_Off p_offset; /* File offset of contents. */
|
||||
Elf64_Addr p_vaddr; /* Virtual address in memory image. */
|
||||
Elf64_Addr p_paddr; /* Physical address (not used). */
|
||||
Elf64_Xword p_filesz; /* Size of contents in file. */
|
||||
Elf64_Xword p_memsz; /* Size of contents in memory. */
|
||||
Elf64_Xword p_align; /* Alignment in memory and file. */
|
||||
} Elf64_Phdr;
|
||||
|
||||
/*
|
||||
* Dynamic structure. The ".dynamic" section contains an array of them.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf64_Sxword d_tag; /* Entry type. */
|
||||
union {
|
||||
Elf64_Xword d_val; /* Integer value. */
|
||||
Elf64_Addr d_ptr; /* Address value. */
|
||||
} d_un;
|
||||
} Elf64_Dyn;
|
||||
|
||||
/*
|
||||
* Relocation entries.
|
||||
*/
|
||||
|
||||
/* Relocations that don't need an addend field. */
|
||||
typedef struct {
|
||||
Elf64_Addr r_offset; /* Location to be relocated. */
|
||||
Elf64_Xword r_info; /* Relocation type and symbol index. */
|
||||
} Elf64_Rel;
|
||||
|
||||
/* Relocations that need an addend field. */
|
||||
typedef struct {
|
||||
Elf64_Addr r_offset; /* Location to be relocated. */
|
||||
Elf64_Xword r_info; /* Relocation type and symbol index. */
|
||||
Elf64_Sxword r_addend; /* Addend. */
|
||||
} Elf64_Rela;
|
||||
|
||||
/* Macros for accessing the fields of r_info. */
|
||||
#define ELF64_R_SYM(info) ((info) >> 32)
|
||||
#define ELF64_R_TYPE(info) ((info) & 0xffffffffL)
|
||||
|
||||
/* Macro for constructing r_info from field values. */
|
||||
#define ELF64_R_INFO(sym, type) (((sym) << 32) + ((type) & 0xffffffffL))
|
||||
|
||||
#define ELF64_R_TYPE_DATA(info) (((Elf64_Xword)(info)<<32)>>40)
|
||||
#define ELF64_R_TYPE_ID(info) (((Elf64_Xword)(info)<<56)>>56)
|
||||
#define ELF64_R_TYPE_INFO(data, type) \
|
||||
(((Elf64_Xword)(data)<<8)+(Elf64_Xword)(type))
|
||||
|
||||
/*
|
||||
* Note entry header
|
||||
*/
|
||||
typedef Elf_Note Elf64_Nhdr;
|
||||
|
||||
/*
|
||||
* Move entry
|
||||
*/
|
||||
typedef struct {
|
||||
Elf64_Lword m_value; /* symbol value */
|
||||
Elf64_Xword m_info; /* size + index */
|
||||
Elf64_Xword m_poffset; /* symbol offset */
|
||||
Elf64_Half m_repeat; /* repeat count */
|
||||
Elf64_Half m_stride; /* stride info */
|
||||
} Elf64_Move;
|
||||
|
||||
#define ELF64_M_SYM(info) ((info)>>8)
|
||||
#define ELF64_M_SIZE(info) ((unsigned char)(info))
|
||||
#define ELF64_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size))
|
||||
|
||||
/*
|
||||
* Hardware/Software capabilities entry
|
||||
*/
|
||||
typedef struct {
|
||||
Elf64_Xword c_tag; /* how to interpret value */
|
||||
union {
|
||||
Elf64_Xword c_val;
|
||||
Elf64_Addr c_ptr;
|
||||
} c_un;
|
||||
} Elf64_Cap;
|
||||
|
||||
/*
|
||||
* Symbol table entries.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf64_Word st_name; /* String table index of name. */
|
||||
unsigned char st_info; /* Type and binding information. */
|
||||
unsigned char st_other; /* Reserved (not used). */
|
||||
Elf64_Half st_shndx; /* Section index of symbol. */
|
||||
Elf64_Addr st_value; /* Symbol value. */
|
||||
Elf64_Xword st_size; /* Size of associated object. */
|
||||
} Elf64_Sym;
|
||||
|
||||
/* Macros for accessing the fields of st_info. */
|
||||
#define ELF64_ST_BIND(info) ((info) >> 4)
|
||||
#define ELF64_ST_TYPE(info) ((info) & 0xf)
|
||||
|
||||
/* Macro for constructing st_info from field values. */
|
||||
#define ELF64_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
|
||||
|
||||
/* Macro for accessing the fields of st_other. */
|
||||
#define ELF64_ST_VISIBILITY(oth) ((oth) & 0x3)
|
||||
|
||||
/* Structures used by Sun & GNU-style symbol versioning. */
|
||||
typedef struct {
|
||||
Elf64_Half vd_version;
|
||||
Elf64_Half vd_flags;
|
||||
Elf64_Half vd_ndx;
|
||||
Elf64_Half vd_cnt;
|
||||
Elf64_Word vd_hash;
|
||||
Elf64_Word vd_aux;
|
||||
Elf64_Word vd_next;
|
||||
} Elf64_Verdef;
|
||||
|
||||
typedef struct {
|
||||
Elf64_Word vda_name;
|
||||
Elf64_Word vda_next;
|
||||
} Elf64_Verdaux;
|
||||
|
||||
typedef struct {
|
||||
Elf64_Half vn_version;
|
||||
Elf64_Half vn_cnt;
|
||||
Elf64_Word vn_file;
|
||||
Elf64_Word vn_aux;
|
||||
Elf64_Word vn_next;
|
||||
} Elf64_Verneed;
|
||||
|
||||
typedef struct {
|
||||
Elf64_Word vna_hash;
|
||||
Elf64_Half vna_flags;
|
||||
Elf64_Half vna_other;
|
||||
Elf64_Word vna_name;
|
||||
Elf64_Word vna_next;
|
||||
} Elf64_Vernaux;
|
||||
|
||||
typedef Elf64_Half Elf64_Versym;
|
||||
|
||||
typedef struct {
|
||||
Elf64_Half si_boundto; /* direct bindings - symbol bound to */
|
||||
Elf64_Half si_flags; /* per symbol flags */
|
||||
} Elf64_Syminfo;
|
||||
|
||||
#endif /* !_SYS_ELF64_H_ */
|
||||
/** @file
|
||||
Ported ELF include files from FreeBSD
|
||||
|
||||
Copyright (c) 2009 - 2010, Apple Inc. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
/*-
|
||||
* Copyright (c) 1996-1998 John D. Polstra.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD: src/sys/sys/elf64.h,v 1.10.14.2 2007/12/03 21:30:36 marius Exp $
|
||||
*/
|
||||
|
||||
#ifndef _SYS_ELF64_H_
|
||||
#define _SYS_ELF64_H_ 1
|
||||
|
||||
|
||||
/*
|
||||
* ELF definitions common to all 64-bit architectures.
|
||||
*/
|
||||
|
||||
typedef UINT64 Elf64_Addr;
|
||||
typedef UINT16 Elf64_Half;
|
||||
typedef UINT64 Elf64_Off;
|
||||
typedef INT32 Elf64_Sword;
|
||||
typedef INT64 Elf64_Sxword;
|
||||
typedef UINT32 Elf64_Word;
|
||||
typedef UINT64 Elf64_Lword;
|
||||
typedef UINT64 Elf64_Xword;
|
||||
|
||||
/*
|
||||
* Types of dynamic symbol hash table bucket and chain elements.
|
||||
*
|
||||
* This is inconsistent among 64 bit architectures, so a machine dependent
|
||||
* typedef is required.
|
||||
*/
|
||||
|
||||
typedef Elf64_Word Elf64_Hashelt;
|
||||
|
||||
/* Non-standard class-dependent datatype used for abstraction. */
|
||||
typedef Elf64_Xword Elf64_Size;
|
||||
typedef Elf64_Sxword Elf64_Ssize;
|
||||
|
||||
/*
|
||||
* ELF header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
unsigned char e_ident[EI_NIDENT]; /* File identification. */
|
||||
Elf64_Half e_type; /* File type. */
|
||||
Elf64_Half e_machine; /* Machine architecture. */
|
||||
Elf64_Word e_version; /* ELF format version. */
|
||||
Elf64_Addr e_entry; /* Entry point. */
|
||||
Elf64_Off e_phoff; /* Program header file offset. */
|
||||
Elf64_Off e_shoff; /* Section header file offset. */
|
||||
Elf64_Word e_flags; /* Architecture-specific flags. */
|
||||
Elf64_Half e_ehsize; /* Size of ELF header in bytes. */
|
||||
Elf64_Half e_phentsize; /* Size of program header entry. */
|
||||
Elf64_Half e_phnum; /* Number of program header entries. */
|
||||
Elf64_Half e_shentsize; /* Size of section header entry. */
|
||||
Elf64_Half e_shnum; /* Number of section header entries. */
|
||||
Elf64_Half e_shstrndx; /* Section name strings section. */
|
||||
} Elf64_Ehdr;
|
||||
|
||||
/*
|
||||
* Section header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf64_Word sh_name; /* Section name (index into the
|
||||
section header string table). */
|
||||
Elf64_Word sh_type; /* Section type. */
|
||||
Elf64_Xword sh_flags; /* Section flags. */
|
||||
Elf64_Addr sh_addr; /* Address in memory image. */
|
||||
Elf64_Off sh_offset; /* Offset in file. */
|
||||
Elf64_Xword sh_size; /* Size in bytes. */
|
||||
Elf64_Word sh_link; /* Index of a related section. */
|
||||
Elf64_Word sh_info; /* Depends on section type. */
|
||||
Elf64_Xword sh_addralign; /* Alignment in bytes. */
|
||||
Elf64_Xword sh_entsize; /* Size of each entry in section. */
|
||||
} Elf64_Shdr;
|
||||
|
||||
/*
|
||||
* Program header.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf64_Word p_type; /* Entry type. */
|
||||
Elf64_Word p_flags; /* Access permission flags. */
|
||||
Elf64_Off p_offset; /* File offset of contents. */
|
||||
Elf64_Addr p_vaddr; /* Virtual address in memory image. */
|
||||
Elf64_Addr p_paddr; /* Physical address (not used). */
|
||||
Elf64_Xword p_filesz; /* Size of contents in file. */
|
||||
Elf64_Xword p_memsz; /* Size of contents in memory. */
|
||||
Elf64_Xword p_align; /* Alignment in memory and file. */
|
||||
} Elf64_Phdr;
|
||||
|
||||
/*
|
||||
* Dynamic structure. The ".dynamic" section contains an array of them.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf64_Sxword d_tag; /* Entry type. */
|
||||
union {
|
||||
Elf64_Xword d_val; /* Integer value. */
|
||||
Elf64_Addr d_ptr; /* Address value. */
|
||||
} d_un;
|
||||
} Elf64_Dyn;
|
||||
|
||||
/*
|
||||
* Relocation entries.
|
||||
*/
|
||||
|
||||
/* Relocations that don't need an addend field. */
|
||||
typedef struct {
|
||||
Elf64_Addr r_offset; /* Location to be relocated. */
|
||||
Elf64_Xword r_info; /* Relocation type and symbol index. */
|
||||
} Elf64_Rel;
|
||||
|
||||
/* Relocations that need an addend field. */
|
||||
typedef struct {
|
||||
Elf64_Addr r_offset; /* Location to be relocated. */
|
||||
Elf64_Xword r_info; /* Relocation type and symbol index. */
|
||||
Elf64_Sxword r_addend; /* Addend. */
|
||||
} Elf64_Rela;
|
||||
|
||||
/* Macros for accessing the fields of r_info. */
|
||||
#define ELF64_R_SYM(info) ((info) >> 32)
|
||||
#define ELF64_R_TYPE(info) ((info) & 0xffffffffL)
|
||||
|
||||
/* Macro for constructing r_info from field values. */
|
||||
#define ELF64_R_INFO(sym, type) (((sym) << 32) + ((type) & 0xffffffffL))
|
||||
|
||||
#define ELF64_R_TYPE_DATA(info) (((Elf64_Xword)(info)<<32)>>40)
|
||||
#define ELF64_R_TYPE_ID(info) (((Elf64_Xword)(info)<<56)>>56)
|
||||
#define ELF64_R_TYPE_INFO(data, type) \
|
||||
(((Elf64_Xword)(data)<<8)+(Elf64_Xword)(type))
|
||||
|
||||
/*
|
||||
* Note entry header
|
||||
*/
|
||||
typedef Elf_Note Elf64_Nhdr;
|
||||
|
||||
/*
|
||||
* Move entry
|
||||
*/
|
||||
typedef struct {
|
||||
Elf64_Lword m_value; /* symbol value */
|
||||
Elf64_Xword m_info; /* size + index */
|
||||
Elf64_Xword m_poffset; /* symbol offset */
|
||||
Elf64_Half m_repeat; /* repeat count */
|
||||
Elf64_Half m_stride; /* stride info */
|
||||
} Elf64_Move;
|
||||
|
||||
#define ELF64_M_SYM(info) ((info)>>8)
|
||||
#define ELF64_M_SIZE(info) ((unsigned char)(info))
|
||||
#define ELF64_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size))
|
||||
|
||||
/*
|
||||
* Hardware/Software capabilities entry
|
||||
*/
|
||||
typedef struct {
|
||||
Elf64_Xword c_tag; /* how to interpret value */
|
||||
union {
|
||||
Elf64_Xword c_val;
|
||||
Elf64_Addr c_ptr;
|
||||
} c_un;
|
||||
} Elf64_Cap;
|
||||
|
||||
/*
|
||||
* Symbol table entries.
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
Elf64_Word st_name; /* String table index of name. */
|
||||
unsigned char st_info; /* Type and binding information. */
|
||||
unsigned char st_other; /* Reserved (not used). */
|
||||
Elf64_Half st_shndx; /* Section index of symbol. */
|
||||
Elf64_Addr st_value; /* Symbol value. */
|
||||
Elf64_Xword st_size; /* Size of associated object. */
|
||||
} Elf64_Sym;
|
||||
|
||||
/* Macros for accessing the fields of st_info. */
|
||||
#define ELF64_ST_BIND(info) ((info) >> 4)
|
||||
#define ELF64_ST_TYPE(info) ((info) & 0xf)
|
||||
|
||||
/* Macro for constructing st_info from field values. */
|
||||
#define ELF64_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
|
||||
|
||||
/* Macro for accessing the fields of st_other. */
|
||||
#define ELF64_ST_VISIBILITY(oth) ((oth) & 0x3)
|
||||
|
||||
/* Structures used by Sun & GNU-style symbol versioning. */
|
||||
typedef struct {
|
||||
Elf64_Half vd_version;
|
||||
Elf64_Half vd_flags;
|
||||
Elf64_Half vd_ndx;
|
||||
Elf64_Half vd_cnt;
|
||||
Elf64_Word vd_hash;
|
||||
Elf64_Word vd_aux;
|
||||
Elf64_Word vd_next;
|
||||
} Elf64_Verdef;
|
||||
|
||||
typedef struct {
|
||||
Elf64_Word vda_name;
|
||||
Elf64_Word vda_next;
|
||||
} Elf64_Verdaux;
|
||||
|
||||
typedef struct {
|
||||
Elf64_Half vn_version;
|
||||
Elf64_Half vn_cnt;
|
||||
Elf64_Word vn_file;
|
||||
Elf64_Word vn_aux;
|
||||
Elf64_Word vn_next;
|
||||
} Elf64_Verneed;
|
||||
|
||||
typedef struct {
|
||||
Elf64_Word vna_hash;
|
||||
Elf64_Half vna_flags;
|
||||
Elf64_Half vna_other;
|
||||
Elf64_Word vna_name;
|
||||
Elf64_Word vna_next;
|
||||
} Elf64_Vernaux;
|
||||
|
||||
typedef Elf64_Half Elf64_Versym;
|
||||
|
||||
typedef struct {
|
||||
Elf64_Half si_boundto; /* direct bindings - symbol bound to */
|
||||
Elf64_Half si_flags; /* per symbol flags */
|
||||
} Elf64_Syminfo;
|
||||
|
||||
#endif /* !_SYS_ELF64_H_ */
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,158 +1,158 @@
|
||||
/** @file
|
||||
Processor or Compiler specific defines and types for ARM.
|
||||
|
||||
Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
|
||||
Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef __PROCESSOR_BIND_H__
|
||||
#define __PROCESSOR_BIND_H__
|
||||
|
||||
///
|
||||
/// Define the processor type so other code can make processor based choices
|
||||
///
|
||||
#define MDE_CPU_ARM
|
||||
|
||||
//
|
||||
// Make sure we are using the correct packing rules per EFI specification
|
||||
//
|
||||
#ifndef __GNUC__
|
||||
#pragma pack()
|
||||
#endif
|
||||
|
||||
#if _MSC_EXTENSIONS
|
||||
//
|
||||
// use Microsoft* C complier dependent integer width types
|
||||
//
|
||||
typedef unsigned __int64 UINT64;
|
||||
typedef __int64 INT64;
|
||||
typedef unsigned __int32 UINT32;
|
||||
typedef __int32 INT32;
|
||||
typedef unsigned short UINT16;
|
||||
typedef unsigned short CHAR16;
|
||||
typedef short INT16;
|
||||
typedef unsigned char BOOLEAN;
|
||||
typedef unsigned char UINT8;
|
||||
typedef char CHAR8;
|
||||
typedef signed char INT8;
|
||||
#else
|
||||
//
|
||||
// Assume standard ARM alignment.
|
||||
//
|
||||
typedef unsigned long long UINT64;
|
||||
typedef long long INT64;
|
||||
typedef unsigned int UINT32;
|
||||
typedef int INT32;
|
||||
typedef unsigned short UINT16;
|
||||
typedef unsigned short CHAR16;
|
||||
typedef short INT16;
|
||||
typedef unsigned char BOOLEAN;
|
||||
typedef unsigned char UINT8;
|
||||
typedef char CHAR8;
|
||||
typedef signed char INT8;
|
||||
|
||||
#define UINT8_MAX 0xff
|
||||
#endif
|
||||
|
||||
///
|
||||
/// Unsigned value of native width. (4 bytes on supported 32-bit processor instructions,
|
||||
/// 8 bytes on supported 64-bit processor instructions)
|
||||
///
|
||||
typedef UINT32 UINTN;
|
||||
|
||||
///
|
||||
/// Signed value of native width. (4 bytes on supported 32-bit processor instructions,
|
||||
/// 8 bytes on supported 64-bit processor instructions)
|
||||
///
|
||||
typedef INT32 INTN;
|
||||
|
||||
//
|
||||
// Processor specific defines
|
||||
//
|
||||
|
||||
///
|
||||
/// A value of native width with the highest bit set.
|
||||
///
|
||||
#define MAX_BIT 0x80000000
|
||||
|
||||
///
|
||||
/// A value of native width with the two highest bits set.
|
||||
///
|
||||
#define MAX_2_BITS 0xC0000000
|
||||
|
||||
///
|
||||
/// Maximum legal ARM address
|
||||
///
|
||||
#define MAX_ADDRESS 0xFFFFFFFF
|
||||
|
||||
///
|
||||
/// The stack alignment required for ARM
|
||||
///
|
||||
#define CPU_STACK_ALIGNMENT sizeof(UINT64)
|
||||
|
||||
//
|
||||
// Modifier to ensure that all protocol member functions and EFI intrinsics
|
||||
// use the correct C calling convention. All protocol member functions and
|
||||
// EFI intrinsics are required to modify their member functions with EFIAPI.
|
||||
//
|
||||
#define EFIAPI
|
||||
|
||||
#if defined(__GNUC__)
|
||||
///
|
||||
/// For GNU assembly code, .global or .globl can declare global symbols.
|
||||
/// Define this macro to unify the usage.
|
||||
///
|
||||
#define ASM_GLOBAL .globl
|
||||
|
||||
#if !defined(__APPLE__)
|
||||
///
|
||||
/// ARM EABI defines that the linker should not manipulate call relocations
|
||||
/// (do bl/blx conversion) unless the target symbol has function type.
|
||||
/// CodeSourcery 2010.09 started requiring the .type to function properly
|
||||
///
|
||||
#define INTERWORK_FUNC(func__) .type ASM_PFX(func__), %function
|
||||
|
||||
#define GCC_ASM_EXPORT(func__) \
|
||||
.global _CONCATENATE (__USER_LABEL_PREFIX__, func__) ;\
|
||||
.type ASM_PFX(func__), %function
|
||||
|
||||
#define GCC_ASM_IMPORT(func__) \
|
||||
.extern _CONCATENATE (__USER_LABEL_PREFIX__, func__)
|
||||
|
||||
#else
|
||||
//
|
||||
// .type not supported by Apple Xcode tools
|
||||
//
|
||||
#define INTERWORK_FUNC(func__)
|
||||
|
||||
#define GCC_ASM_EXPORT(func__) \
|
||||
.globl _CONCATENATE (__USER_LABEL_PREFIX__, func__) \
|
||||
|
||||
#define GCC_ASM_IMPORT(name)
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/**
|
||||
Return the pointer to the first instruction of a function given a function pointer.
|
||||
On ARM CPU architectures, these two pointer values are the same,
|
||||
so the implementation of this macro is very simple.
|
||||
|
||||
@param FunctionPointer A pointer to a function.
|
||||
|
||||
@return The pointer to the first instruction of a function given a function pointer.
|
||||
|
||||
**/
|
||||
#define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer)
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
/** @file
|
||||
Processor or Compiler specific defines and types for ARM.
|
||||
|
||||
Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
|
||||
Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef __PROCESSOR_BIND_H__
|
||||
#define __PROCESSOR_BIND_H__
|
||||
|
||||
///
|
||||
/// Define the processor type so other code can make processor based choices
|
||||
///
|
||||
#define MDE_CPU_ARM
|
||||
|
||||
//
|
||||
// Make sure we are using the correct packing rules per EFI specification
|
||||
//
|
||||
#ifndef __GNUC__
|
||||
#pragma pack()
|
||||
#endif
|
||||
|
||||
#if _MSC_EXTENSIONS
|
||||
//
|
||||
// use Microsoft* C complier dependent integer width types
|
||||
//
|
||||
typedef unsigned __int64 UINT64;
|
||||
typedef __int64 INT64;
|
||||
typedef unsigned __int32 UINT32;
|
||||
typedef __int32 INT32;
|
||||
typedef unsigned short UINT16;
|
||||
typedef unsigned short CHAR16;
|
||||
typedef short INT16;
|
||||
typedef unsigned char BOOLEAN;
|
||||
typedef unsigned char UINT8;
|
||||
typedef char CHAR8;
|
||||
typedef signed char INT8;
|
||||
#else
|
||||
//
|
||||
// Assume standard ARM alignment.
|
||||
//
|
||||
typedef unsigned long long UINT64;
|
||||
typedef long long INT64;
|
||||
typedef unsigned int UINT32;
|
||||
typedef int INT32;
|
||||
typedef unsigned short UINT16;
|
||||
typedef unsigned short CHAR16;
|
||||
typedef short INT16;
|
||||
typedef unsigned char BOOLEAN;
|
||||
typedef unsigned char UINT8;
|
||||
typedef char CHAR8;
|
||||
typedef signed char INT8;
|
||||
|
||||
#define UINT8_MAX 0xff
|
||||
#endif
|
||||
|
||||
///
|
||||
/// Unsigned value of native width. (4 bytes on supported 32-bit processor instructions,
|
||||
/// 8 bytes on supported 64-bit processor instructions)
|
||||
///
|
||||
typedef UINT32 UINTN;
|
||||
|
||||
///
|
||||
/// Signed value of native width. (4 bytes on supported 32-bit processor instructions,
|
||||
/// 8 bytes on supported 64-bit processor instructions)
|
||||
///
|
||||
typedef INT32 INTN;
|
||||
|
||||
//
|
||||
// Processor specific defines
|
||||
//
|
||||
|
||||
///
|
||||
/// A value of native width with the highest bit set.
|
||||
///
|
||||
#define MAX_BIT 0x80000000
|
||||
|
||||
///
|
||||
/// A value of native width with the two highest bits set.
|
||||
///
|
||||
#define MAX_2_BITS 0xC0000000
|
||||
|
||||
///
|
||||
/// Maximum legal ARM address
|
||||
///
|
||||
#define MAX_ADDRESS 0xFFFFFFFF
|
||||
|
||||
///
|
||||
/// The stack alignment required for ARM
|
||||
///
|
||||
#define CPU_STACK_ALIGNMENT sizeof(UINT64)
|
||||
|
||||
//
|
||||
// Modifier to ensure that all protocol member functions and EFI intrinsics
|
||||
// use the correct C calling convention. All protocol member functions and
|
||||
// EFI intrinsics are required to modify their member functions with EFIAPI.
|
||||
//
|
||||
#define EFIAPI
|
||||
|
||||
#if defined(__GNUC__)
|
||||
///
|
||||
/// For GNU assembly code, .global or .globl can declare global symbols.
|
||||
/// Define this macro to unify the usage.
|
||||
///
|
||||
#define ASM_GLOBAL .globl
|
||||
|
||||
#if !defined(__APPLE__)
|
||||
///
|
||||
/// ARM EABI defines that the linker should not manipulate call relocations
|
||||
/// (do bl/blx conversion) unless the target symbol has function type.
|
||||
/// CodeSourcery 2010.09 started requiring the .type to function properly
|
||||
///
|
||||
#define INTERWORK_FUNC(func__) .type ASM_PFX(func__), %function
|
||||
|
||||
#define GCC_ASM_EXPORT(func__) \
|
||||
.global _CONCATENATE (__USER_LABEL_PREFIX__, func__) ;\
|
||||
.type ASM_PFX(func__), %function
|
||||
|
||||
#define GCC_ASM_IMPORT(func__) \
|
||||
.extern _CONCATENATE (__USER_LABEL_PREFIX__, func__)
|
||||
|
||||
#else
|
||||
//
|
||||
// .type not supported by Apple Xcode tools
|
||||
//
|
||||
#define INTERWORK_FUNC(func__)
|
||||
|
||||
#define GCC_ASM_EXPORT(func__) \
|
||||
.globl _CONCATENATE (__USER_LABEL_PREFIX__, func__) \
|
||||
|
||||
#define GCC_ASM_IMPORT(name)
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/**
|
||||
Return the pointer to the first instruction of a function given a function pointer.
|
||||
On ARM CPU architectures, these two pointer values are the same,
|
||||
so the implementation of this macro is very simple.
|
||||
|
||||
@param FunctionPointer A pointer to a function.
|
||||
|
||||
@return The pointer to the first instruction of a function given a function pointer.
|
||||
|
||||
**/
|
||||
#define FUNCTION_ENTRY_POINT(FunctionPointer) (VOID *)(UINTN)(FunctionPointer)
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -14,4 +14,4 @@
|
||||
|
||||
**/
|
||||
|
||||
#define __BUILD_VERSION "Build 2640"
|
||||
#define __BUILD_VERSION "Build 2649"
|
||||
|
@ -7,7 +7,7 @@
|
||||
@REM # http://opensource.org/licenses/bsd-license.php
|
||||
@REM #
|
||||
@REM # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
@REM # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
@REM # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
|
||||
@echo off
|
||||
|
@ -1,27 +1,27 @@
|
||||
## @file
|
||||
#
|
||||
# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
MAKEROOT ?= ../..
|
||||
|
||||
include $(MAKEROOT)/Makefiles/header.makefile
|
||||
|
||||
APPLICATION = $(MAKEROOT)/bin/$(APPNAME)
|
||||
|
||||
.PHONY:all
|
||||
all: $(MAKEROOT)/bin $(APPLICATION)
|
||||
|
||||
$(APPLICATION): $(OBJECTS)
|
||||
$(LINKER) -o $(APPLICATION) $(LFLAGS) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
|
||||
|
||||
$(OBJECTS): ../Include/Common/BuildVersion.h
|
||||
|
||||
include $(MAKEROOT)/Makefiles/footer.makefile
|
||||
## @file
|
||||
#
|
||||
# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
MAKEROOT ?= ../..
|
||||
|
||||
include $(MAKEROOT)/Makefiles/header.makefile
|
||||
|
||||
APPLICATION = $(MAKEROOT)/bin/$(APPNAME)
|
||||
|
||||
.PHONY:all
|
||||
all: $(MAKEROOT)/bin $(APPLICATION)
|
||||
|
||||
$(APPLICATION): $(OBJECTS)
|
||||
$(LINKER) -o $(APPLICATION) $(LFLAGS) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
|
||||
|
||||
$(OBJECTS): ../Include/Common/BuildVersion.h
|
||||
|
||||
include $(MAKEROOT)/Makefiles/footer.makefile
|
||||
|
@ -7,28 +7,28 @@
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
DEPFILES = $(OBJECTS:%.o=%.d)
|
||||
|
||||
$(MAKEROOT)/libs-$(ARCH):
|
||||
mkdir -p $(MAKEROOT)/libs-$(ARCH)
|
||||
|
||||
.PHONY: install
|
||||
install: $(MAKEROOT)/libs-$(ARCH) $(LIBRARY)
|
||||
cp $(LIBRARY) $(MAKEROOT)/libs-$(ARCH)
|
||||
|
||||
$(LIBRARY): $(OBJECTS)
|
||||
$(AR) crs $@ $^
|
||||
|
||||
%.o : %.c
|
||||
$(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
|
||||
|
||||
%.o : %.S
|
||||
$(AS) -c $(ASFLAGS) $< -o $@
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
@rm -f $(OBJECTS) $(LIBRARY) $(DEPFILES)
|
||||
|
||||
-include $(DEPFILES)
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
DEPFILES = $(OBJECTS:%.o=%.d)
|
||||
|
||||
$(MAKEROOT)/libs-$(ARCH):
|
||||
mkdir -p $(MAKEROOT)/libs-$(ARCH)
|
||||
|
||||
.PHONY: install
|
||||
install: $(MAKEROOT)/libs-$(ARCH) $(LIBRARY)
|
||||
cp $(LIBRARY) $(MAKEROOT)/libs-$(ARCH)
|
||||
|
||||
$(LIBRARY): $(OBJECTS)
|
||||
$(AR) crs $@ $^
|
||||
|
||||
%.o : %.c
|
||||
$(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
|
||||
|
||||
%.o : %.S
|
||||
$(AS) -c $(ASFLAGS) $< -o $@
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
@rm -f $(OBJECTS) $(LIBRARY) $(DEPFILES)
|
||||
|
||||
-include $(DEPFILES)
|
||||
|
@ -7,28 +7,28 @@
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.common
|
||||
|
||||
APPLICATION = $(BIN_PATH)\$(APPNAME).exe
|
||||
|
||||
all: $(APPLICATION)
|
||||
|
||||
$(APPLICATION) : $(OBJECTS)
|
||||
-@if not exist $(BIN_PATH) mkdir $(BIN_PATH)
|
||||
$(LD) /nologo /debug /incremental:no /nodefaultlib:libc.lib /out:$@ $(LIBS) $**
|
||||
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.common
|
||||
|
||||
APPLICATION = $(BIN_PATH)\$(APPNAME).exe
|
||||
|
||||
all: $(APPLICATION)
|
||||
|
||||
$(APPLICATION) : $(OBJECTS)
|
||||
-@if not exist $(BIN_PATH) mkdir $(BIN_PATH)
|
||||
$(LD) /nologo /debug /incremental:no /nodefaultlib:libc.lib /out:$@ $(LIBS) $**
|
||||
|
||||
$(OBJECTS) : ..\Include\Common\BuildVersion.h
|
||||
|
||||
.PHONY:clean
|
||||
.PHONY:cleanall
|
||||
|
||||
clean:
|
||||
del /f /q $(OBJECTS) *.pdb > nul
|
||||
|
||||
cleanall:
|
||||
del /f /q $(OBJECTS) $(APPLICATION) *.pdb $(BIN_PATH)\*.pdb > nul
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.rule
|
||||
|
||||
.PHONY:clean
|
||||
.PHONY:cleanall
|
||||
|
||||
clean:
|
||||
del /f /q $(OBJECTS) *.pdb > nul
|
||||
|
||||
cleanall:
|
||||
del /f /q $(OBJECTS) $(APPLICATION) *.pdb $(BIN_PATH)\*.pdb > nul
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.rule
|
||||
|
||||
|
@ -7,54 +7,54 @@
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
!IFNDEF EDK_TOOLS_PATH
|
||||
!ERROR "Please set your EDK_TOOLS_PATH!"
|
||||
!ENDIF
|
||||
|
||||
!IFNDEF BASE_TOOLS_PATH
|
||||
!ERROR "BASE_TOOLS_PATH is not set! Please run build_tools.bat at first!"
|
||||
!ENDIF
|
||||
|
||||
!IFNDEF ARCH
|
||||
ARCH = IA32
|
||||
!ENDIF
|
||||
|
||||
MAKE = nmake -nologo
|
||||
|
||||
SOURCE_PATH = $(BASE_TOOLS_PATH)\Source\C
|
||||
BIN_PATH = $(BASE_TOOLS_PATH)\Bin
|
||||
LIB_PATH = $(BASE_TOOLS_PATH)\Lib
|
||||
|
||||
SYS_BIN_PATH=$(EDK_TOOLS_PATH)\Bin
|
||||
SYS_LIB_PATH=$(EDK_TOOLS_PATH)\Lib
|
||||
|
||||
!IF "$(ARCH)"=="IA32"
|
||||
ARCH_INCLUDE = $(SOURCE_PATH)\Include\Ia32
|
||||
BIN_PATH = $(BASE_TOOLS_PATH)\Bin\Win32
|
||||
LIB_PATH = $(BASE_TOOLS_PATH)\Lib\Win32
|
||||
SYS_BIN_PATH = $(EDK_TOOLS_PATH)\Bin\Win32
|
||||
SYS_LIB_PATH = $(EDK_TOOLS_PATH)\Lib\Win32
|
||||
!ENDIF
|
||||
|
||||
!IF "$(ARCH)"=="X64"
|
||||
ARCH_INCLUDE = $(SOURCE_PATH)\Include\X64
|
||||
BIN_PATH = $(BASE_TOOLS_PATH)\Bin\Win64
|
||||
LIB_PATH = $(BASE_TOOLS_PATH)\Lib\Win64
|
||||
SYS_BIN_PATH = $(EDK_TOOLS_PATH)\Bin\Win64
|
||||
SYS_LIB_PATH = $(EDK_TOOLS_PATH)\Lib\Win64
|
||||
!ENDIF
|
||||
|
||||
CC = cl.exe
|
||||
CXX = cl.exe
|
||||
AS = ml.exe
|
||||
AR = lib.exe
|
||||
LD = link.exe
|
||||
LINKER = $(LD)
|
||||
|
||||
INC = -I . -I $(SOURCE_PATH)\Include -I $(ARCH_INCLUDE) -I $(SOURCE_PATH)\Common $(INC)
|
||||
|
||||
CFLAGS = $(CFLAGS) /nologo /c /Zi /Od /RTC1 /D _DEBUG /MTd /W4 /WX /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE
|
||||
CPPFLAGS = $(CPPFLAGS) /EHsc /nologo /c /Zi /Od /RTC1 /D _DEBUG /MTd /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE
|
||||
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
!IFNDEF EDK_TOOLS_PATH
|
||||
!ERROR "Please set your EDK_TOOLS_PATH!"
|
||||
!ENDIF
|
||||
|
||||
!IFNDEF BASE_TOOLS_PATH
|
||||
!ERROR "BASE_TOOLS_PATH is not set! Please run build_tools.bat at first!"
|
||||
!ENDIF
|
||||
|
||||
!IFNDEF ARCH
|
||||
ARCH = IA32
|
||||
!ENDIF
|
||||
|
||||
MAKE = nmake -nologo
|
||||
|
||||
SOURCE_PATH = $(BASE_TOOLS_PATH)\Source\C
|
||||
BIN_PATH = $(BASE_TOOLS_PATH)\Bin
|
||||
LIB_PATH = $(BASE_TOOLS_PATH)\Lib
|
||||
|
||||
SYS_BIN_PATH=$(EDK_TOOLS_PATH)\Bin
|
||||
SYS_LIB_PATH=$(EDK_TOOLS_PATH)\Lib
|
||||
|
||||
!IF "$(ARCH)"=="IA32"
|
||||
ARCH_INCLUDE = $(SOURCE_PATH)\Include\Ia32
|
||||
BIN_PATH = $(BASE_TOOLS_PATH)\Bin\Win32
|
||||
LIB_PATH = $(BASE_TOOLS_PATH)\Lib\Win32
|
||||
SYS_BIN_PATH = $(EDK_TOOLS_PATH)\Bin\Win32
|
||||
SYS_LIB_PATH = $(EDK_TOOLS_PATH)\Lib\Win32
|
||||
!ENDIF
|
||||
|
||||
!IF "$(ARCH)"=="X64"
|
||||
ARCH_INCLUDE = $(SOURCE_PATH)\Include\X64
|
||||
BIN_PATH = $(BASE_TOOLS_PATH)\Bin\Win64
|
||||
LIB_PATH = $(BASE_TOOLS_PATH)\Lib\Win64
|
||||
SYS_BIN_PATH = $(EDK_TOOLS_PATH)\Bin\Win64
|
||||
SYS_LIB_PATH = $(EDK_TOOLS_PATH)\Lib\Win64
|
||||
!ENDIF
|
||||
|
||||
CC = cl.exe
|
||||
CXX = cl.exe
|
||||
AS = ml.exe
|
||||
AR = lib.exe
|
||||
LD = link.exe
|
||||
LINKER = $(LD)
|
||||
|
||||
INC = -I . -I $(SOURCE_PATH)\Include -I $(ARCH_INCLUDE) -I $(SOURCE_PATH)\Common $(INC)
|
||||
|
||||
CFLAGS = $(CFLAGS) /nologo /c /Zi /Od /RTC1 /D _DEBUG /MTd /W4 /WX /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE
|
||||
CPPFLAGS = $(CPPFLAGS) /EHsc /nologo /c /Zi /Od /RTC1 /D _DEBUG /MTd /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE
|
||||
|
||||
|
@ -7,25 +7,25 @@
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.common
|
||||
|
||||
LIBRARY = $(LIB_PATH)\$(LIBNAME).lib
|
||||
|
||||
all: $(LIBRARY)
|
||||
|
||||
$(LIBRARY) : $(OBJECTS)
|
||||
-@if not exist $(LIB_PATH) mkdir $(LIB_PATH)
|
||||
$(AR) /nologo /out:$@ $**
|
||||
|
||||
.PHONY:clean
|
||||
clean:
|
||||
del /f /q $(OBJECTS) *.pdb > nul
|
||||
|
||||
.PHONY:cleanall
|
||||
cleanall:
|
||||
del /f /q $(OBJECTS) $(LIBRARY) *.pdb > nul
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.rule
|
||||
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.common
|
||||
|
||||
LIBRARY = $(LIB_PATH)\$(LIBNAME).lib
|
||||
|
||||
all: $(LIBRARY)
|
||||
|
||||
$(LIBRARY) : $(OBJECTS)
|
||||
-@if not exist $(LIB_PATH) mkdir $(LIB_PATH)
|
||||
$(AR) /nologo /out:$@ $**
|
||||
|
||||
.PHONY:clean
|
||||
clean:
|
||||
del /f /q $(OBJECTS) *.pdb > nul
|
||||
|
||||
.PHONY:cleanall
|
||||
cleanall:
|
||||
del /f /q $(OBJECTS) $(LIBRARY) *.pdb > nul
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.rule
|
||||
|
||||
|
@ -7,18 +7,18 @@
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
#DEPFILES = $(OBJECTS:%.o=%.d)
|
||||
|
||||
.c.obj :
|
||||
$(CC) -c $(CFLAGS) $(INC) $< -Fo$@
|
||||
|
||||
.S.obj :
|
||||
$(AS) -c $(ASFLAGS) $< -Fo$@
|
||||
|
||||
.cpp.obj :
|
||||
$(CXX) -c $(CPPFLAGS) $(INC) $< -Fo$@
|
||||
|
||||
#-include $(DEPFILES)
|
||||
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
#DEPFILES = $(OBJECTS:%.o=%.d)
|
||||
|
||||
.c.obj :
|
||||
$(CC) -c $(CFLAGS) $(INC) $< -Fo$@
|
||||
|
||||
.S.obj :
|
||||
$(AS) -c $(ASFLAGS) $< -Fo$@
|
||||
|
||||
.cpp.obj :
|
||||
$(CXX) -c $(CPPFLAGS) $(INC) $< -Fo$@
|
||||
|
||||
#-include $(DEPFILES)
|
||||
|
||||
|
@ -7,17 +7,17 @@
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.common
|
||||
|
||||
APPNAME = GenSec
|
||||
|
||||
LIBS = $(LIB_PATH)\Common.lib
|
||||
|
||||
OBJECTS = GenSec.obj
|
||||
|
||||
#CFLAGS = $(CFLAGS) /nodefaultlib:libc.lib
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.app
|
||||
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.common
|
||||
|
||||
APPNAME = GenSec
|
||||
|
||||
LIBS = $(LIB_PATH)\Common.lib
|
||||
|
||||
OBJECTS = GenSec.obj
|
||||
|
||||
#CFLAGS = $(CFLAGS) /nodefaultlib:libc.lib
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.app
|
||||
|
||||
|
@ -7,17 +7,17 @@
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.common
|
||||
|
||||
APPNAME = GenSec
|
||||
|
||||
LIBS = $(LIB_PATH)\Common.lib
|
||||
|
||||
OBJECTS = PyUtility.obj
|
||||
|
||||
#CFLAGS = $(CFLAGS) /nodefaultlib:libc.lib
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.app
|
||||
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.common
|
||||
|
||||
APPNAME = GenSec
|
||||
|
||||
LIBS = $(LIB_PATH)\Common.lib
|
||||
|
||||
OBJECTS = PyUtility.obj
|
||||
|
||||
#CFLAGS = $(CFLAGS) /nodefaultlib:libc.lib
|
||||
|
||||
!INCLUDE ..\Makefiles\ms.app
|
||||
|
||||
|
@ -82,7 +82,7 @@ SPendingAssign::AssignValue (
|
||||
IN UINT32 Len
|
||||
)
|
||||
{
|
||||
memcpy (mAddr, Addr, (mLen < Len ? mLen : Len));
|
||||
memmove (mAddr, Addr, (mLen < Len ? mLen : Len));
|
||||
mFlag = ASSIGNED;
|
||||
}
|
||||
|
||||
@ -685,7 +685,7 @@ CFormPkg::AdjustDynamicInsertOpcode (
|
||||
//
|
||||
// Override the restore buffer data.
|
||||
//
|
||||
memcpy (LastFormEndAddr, InsertOpcodeAddr, InsertOpcodeNode->mBufferFree - InsertOpcodeAddr);
|
||||
memmove (LastFormEndAddr, InsertOpcodeAddr, InsertOpcodeNode->mBufferFree - InsertOpcodeAddr);
|
||||
InsertOpcodeNode->mBufferFree -= NeedRestoreCodeLen;
|
||||
memset (InsertOpcodeNode->mBufferFree, 0, NeedRestoreCodeLen);
|
||||
} else {
|
||||
@ -733,7 +733,7 @@ CFormPkg::AdjustDynamicInsertOpcode (
|
||||
//
|
||||
// Override the restore buffer data.
|
||||
//
|
||||
memcpy (InsertOpcodeNode->mBufferStart, InsertOpcodeAddr, InsertOpcodeNode->mBufferFree - InsertOpcodeAddr);
|
||||
memmove (InsertOpcodeNode->mBufferStart, InsertOpcodeAddr, InsertOpcodeNode->mBufferFree - InsertOpcodeAddr);
|
||||
InsertOpcodeNode->mBufferFree -= InsertOpcodeAddr - InsertOpcodeNode->mBufferStart;
|
||||
|
||||
//
|
||||
@ -1542,7 +1542,7 @@ CIfrObj::_EMIT_PENDING_OBJ (
|
||||
//
|
||||
ObjBinBuf = gCFormPkg.IfrBinBufferGet (mObjBinLen);
|
||||
if (ObjBinBuf != NULL) {
|
||||
memcpy (ObjBinBuf, mObjBinBuf, mObjBinLen);
|
||||
memmove (ObjBinBuf, mObjBinBuf, mObjBinLen);
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -368,7 +368,7 @@ public:
|
||||
VOID VARSTORE_INFO (OUT EFI_VARSTORE_INFO *Info) {
|
||||
if (Info != NULL) {
|
||||
Info->mVarStoreId = mHeader->VarStoreId;
|
||||
memcpy (&Info->mVarStoreId, &mHeader->VarStoreInfo, sizeof (Info->mVarStoreId));
|
||||
memmove (&Info->mVarStoreId, &mHeader->VarStoreInfo, sizeof (Info->mVarStoreId));
|
||||
}
|
||||
}
|
||||
|
||||
@ -615,7 +615,7 @@ public:
|
||||
}
|
||||
|
||||
VOID SetGuid (IN EFI_GUID *Guid) {
|
||||
memcpy (&mFormSet->Guid, Guid, sizeof (EFI_GUID));
|
||||
memmove (&mFormSet->Guid, Guid, sizeof (EFI_GUID));
|
||||
}
|
||||
|
||||
VOID SetFormSetTitle (IN EFI_STRING_ID FormSetTitle) {
|
||||
@ -627,7 +627,7 @@ public:
|
||||
}
|
||||
|
||||
VOID SetClassGuid (IN EFI_GUID *Guid) {
|
||||
memcpy (&(mClassGuid[mFormSet->Flags++]), Guid, sizeof (EFI_GUID));
|
||||
memmove (&(mClassGuid[mFormSet->Flags++]), Guid, sizeof (EFI_GUID));
|
||||
}
|
||||
|
||||
UINT8 GetFlags() {
|
||||
@ -749,7 +749,7 @@ public:
|
||||
IncLength (sizeof (EFI_IFR_FORM_MAP_METHOD));
|
||||
|
||||
mMethodMap->MethodTitle = MethodTitle;
|
||||
memcpy (&(mMethodMap->MethodIdentifier), MethodGuid, sizeof (EFI_GUID));
|
||||
memmove (&(mMethodMap->MethodIdentifier), MethodGuid, sizeof (EFI_GUID));
|
||||
mMethodMap ++;
|
||||
}
|
||||
}
|
||||
@ -769,7 +769,7 @@ public:
|
||||
}
|
||||
|
||||
VOID SetGuid (IN EFI_GUID *Guid) {
|
||||
memcpy (&mVarStore->Guid, Guid, sizeof (EFI_GUID));
|
||||
memmove (&mVarStore->Guid, Guid, sizeof (EFI_GUID));
|
||||
}
|
||||
|
||||
VOID SetVarStoreId (IN EFI_VARSTORE_ID VarStoreId) {
|
||||
@ -809,7 +809,7 @@ public:
|
||||
}
|
||||
|
||||
VOID SetGuid (IN EFI_GUID *Guid) {
|
||||
memcpy (&mVarStoreEfi->Guid, Guid, sizeof (EFI_GUID));
|
||||
memmove (&mVarStoreEfi->Guid, Guid, sizeof (EFI_GUID));
|
||||
}
|
||||
|
||||
VOID SetVarStoreId (IN UINT16 VarStoreId) {
|
||||
@ -863,7 +863,7 @@ public:
|
||||
}
|
||||
|
||||
VOID SetGuid (IN EFI_GUID *Guid) {
|
||||
memcpy (&mVarStoreNameValue->Guid, Guid, sizeof (EFI_GUID));
|
||||
memmove (&mVarStoreNameValue->Guid, Guid, sizeof (EFI_GUID));
|
||||
}
|
||||
|
||||
VOID SetVarStoreId (IN UINT16 VarStoreId) {
|
||||
@ -938,7 +938,7 @@ public:
|
||||
CIfrOpHeader (EFI_IFR_DEFAULT_OP, &mDefault->Header, Size) {
|
||||
mDefault->Type = Type;
|
||||
mDefault->DefaultId = DefaultId;
|
||||
memcpy (&(mDefault->Value), &Value, Size - OFFSET_OF (EFI_IFR_DEFAULT, Value));
|
||||
memmove (&(mDefault->Value), &Value, Size - OFFSET_OF (EFI_IFR_DEFAULT, Value));
|
||||
}
|
||||
|
||||
VOID SetDefaultId (IN UINT16 DefaultId) {
|
||||
@ -950,7 +950,7 @@ public:
|
||||
}
|
||||
|
||||
VOID SetValue (IN EFI_IFR_TYPE_VALUE Value) {
|
||||
memcpy (&mDefault->Value, &Value, mDefault->Header.Length - OFFSET_OF (EFI_IFR_DEFAULT, Value));
|
||||
memmove (&mDefault->Value, &Value, mDefault->Header.Length - OFFSET_OF (EFI_IFR_DEFAULT, Value));
|
||||
}
|
||||
};
|
||||
|
||||
@ -1673,7 +1673,7 @@ public:
|
||||
}
|
||||
|
||||
VOID SetRefreshEventGroutId (IN EFI_GUID *RefreshEventGroupId) {
|
||||
memcpy (&mRefreshId->RefreshEventGroupId, RefreshEventGroupId, sizeof (EFI_GUID));
|
||||
memmove (&mRefreshId->RefreshEventGroupId, RefreshEventGroupId, sizeof (EFI_GUID));
|
||||
}
|
||||
};
|
||||
|
||||
@ -1755,7 +1755,7 @@ public:
|
||||
}
|
||||
|
||||
VOID SetValue (IN EFI_IFR_TYPE_VALUE Value) {
|
||||
memcpy (&mOneOfOption->Value, &Value, mOneOfOption->Header.Length - OFFSET_OF (EFI_IFR_ONE_OF_OPTION, Value));
|
||||
memmove (&mOneOfOption->Value, &Value, mOneOfOption->Header.Length - OFFSET_OF (EFI_IFR_ONE_OF_OPTION, Value));
|
||||
}
|
||||
|
||||
UINT8 GetFlags (VOID) {
|
||||
@ -1904,11 +1904,11 @@ public:
|
||||
}
|
||||
|
||||
VOID SetGuid (IN EFI_GUID *Guid) {
|
||||
memcpy (&mGuid->Guid, Guid, sizeof (EFI_GUID));
|
||||
memmove (&mGuid->Guid, Guid, sizeof (EFI_GUID));
|
||||
}
|
||||
|
||||
VOID SetData (IN UINT8* DataBuff, IN UINT8 Size) {
|
||||
memcpy ((UINT8 *)mGuid + sizeof (EFI_IFR_GUID), DataBuff, Size);
|
||||
memmove ((UINT8 *)mGuid + sizeof (EFI_IFR_GUID), DataBuff, Size);
|
||||
}
|
||||
};
|
||||
|
||||
@ -2214,7 +2214,7 @@ public:
|
||||
}
|
||||
|
||||
VOID SetPermissions (IN EFI_GUID *Permissions) {
|
||||
memcpy (&mSecurity->Permissions, Permissions, sizeof (EFI_GUID));
|
||||
memmove (&mSecurity->Permissions, Permissions, sizeof (EFI_GUID));
|
||||
}
|
||||
};
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,41 +1,41 @@
|
||||
/** @file
|
||||
|
||||
Copyright (c) 1999 - 2008, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
VolInfo.c
|
||||
|
||||
Abstract:
|
||||
|
||||
Local Definitions for the VolInfo utility
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _VOLINFO_H_
|
||||
#define _VOLINFO_H_ 1
|
||||
|
||||
#define PI_SPECIFICATION_VERSION 0x00010000
|
||||
|
||||
#define EFI_DEP_BEFORE 0x00
|
||||
#define EFI_DEP_AFTER 0x01
|
||||
#define EFI_DEP_PUSH 0x02
|
||||
#define EFI_DEP_AND 0x03
|
||||
#define EFI_DEP_OR 0x04
|
||||
#define EFI_DEP_NOT 0x05
|
||||
#define EFI_DEP_TRUE 0x06
|
||||
#define EFI_DEP_FALSE 0x07
|
||||
#define EFI_DEP_END 0x08
|
||||
#define EFI_DEP_SOR 0x09
|
||||
|
||||
#define EFI_SECTION_LAST_LEAF_SECTION_TYPE 0x1B
|
||||
#define EFI_SECTION_LAST_SECTION_TYPE 0x1B
|
||||
|
||||
#endif
|
||||
/** @file
|
||||
|
||||
Copyright (c) 1999 - 2008, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
http://opensource.org/licenses/bsd-license.php
|
||||
|
||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
Module Name:
|
||||
|
||||
VolInfo.c
|
||||
|
||||
Abstract:
|
||||
|
||||
Local Definitions for the VolInfo utility
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _VOLINFO_H_
|
||||
#define _VOLINFO_H_ 1
|
||||
|
||||
#define PI_SPECIFICATION_VERSION 0x00010000
|
||||
|
||||
#define EFI_DEP_BEFORE 0x00
|
||||
#define EFI_DEP_AFTER 0x01
|
||||
#define EFI_DEP_PUSH 0x02
|
||||
#define EFI_DEP_AND 0x03
|
||||
#define EFI_DEP_OR 0x04
|
||||
#define EFI_DEP_NOT 0x05
|
||||
#define EFI_DEP_TRUE 0x06
|
||||
#define EFI_DEP_FALSE 0x07
|
||||
#define EFI_DEP_END 0x08
|
||||
#define EFI_DEP_SOR 0x09
|
||||
|
||||
#define EFI_SECTION_LAST_LEAF_SECTION_TYPE 0x1B
|
||||
#define EFI_SECTION_LAST_SECTION_TYPE 0x1B
|
||||
|
||||
#endif
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,154 +1,154 @@
|
||||
## @file
|
||||
# Standardized Error Hanlding infrastructures.
|
||||
#
|
||||
# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
FILE_OPEN_FAILURE = 1
|
||||
FILE_WRITE_FAILURE = 2
|
||||
FILE_PARSE_FAILURE = 3
|
||||
FILE_READ_FAILURE = 4
|
||||
FILE_CREATE_FAILURE = 5
|
||||
FILE_CHECKSUM_FAILURE = 6
|
||||
FILE_COMPRESS_FAILURE = 7
|
||||
FILE_DECOMPRESS_FAILURE = 8
|
||||
FILE_MOVE_FAILURE = 9
|
||||
FILE_DELETE_FAILURE = 10
|
||||
FILE_COPY_FAILURE = 11
|
||||
FILE_POSITIONING_FAILURE = 12
|
||||
FILE_ALREADY_EXIST = 13
|
||||
FILE_NOT_FOUND = 14
|
||||
FILE_TYPE_MISMATCH = 15
|
||||
FILE_CASE_MISMATCH = 16
|
||||
FILE_DUPLICATED = 17
|
||||
FILE_UNKNOWN_ERROR = 0x0FFF
|
||||
|
||||
OPTION_UNKNOWN = 0x1000
|
||||
OPTION_MISSING = 0x1001
|
||||
OPTION_CONFLICT = 0x1002
|
||||
OPTION_VALUE_INVALID = 0x1003
|
||||
OPTION_DEPRECATED = 0x1004
|
||||
OPTION_NOT_SUPPORTED = 0x1005
|
||||
OPTION_UNKNOWN_ERROR = 0x1FFF
|
||||
|
||||
PARAMETER_INVALID = 0x2000
|
||||
PARAMETER_MISSING = 0x2001
|
||||
PARAMETER_UNKNOWN_ERROR =0x2FFF
|
||||
|
||||
FORMAT_INVALID = 0x3000
|
||||
FORMAT_NOT_SUPPORTED = 0x3001
|
||||
FORMAT_UNKNOWN = 0x3002
|
||||
FORMAT_UNKNOWN_ERROR = 0x3FFF
|
||||
|
||||
RESOURCE_NOT_AVAILABLE = 0x4000
|
||||
RESOURCE_ALLOCATE_FAILURE = 0x4001
|
||||
RESOURCE_FULL = 0x4002
|
||||
RESOURCE_OVERFLOW = 0x4003
|
||||
RESOURCE_UNDERRUN = 0x4004
|
||||
RESOURCE_UNKNOWN_ERROR = 0x4FFF
|
||||
|
||||
ATTRIBUTE_NOT_AVAILABLE = 0x5000
|
||||
ATTRIBUTE_GET_FAILURE = 0x5001
|
||||
ATTRIBUTE_SET_FAILURE = 0x5002
|
||||
ATTRIBUTE_UPDATE_FAILURE = 0x5003
|
||||
ATTRIBUTE_ACCESS_DENIED = 0x5004
|
||||
ATTRIBUTE_UNKNOWN_ERROR = 0x5FFF
|
||||
|
||||
IO_NOT_READY = 0x6000
|
||||
IO_BUSY = 0x6001
|
||||
IO_TIMEOUT = 0x6002
|
||||
IO_UNKNOWN_ERROR = 0x6FFF
|
||||
|
||||
COMMAND_FAILURE = 0x7000
|
||||
|
||||
PERMISSION_FAILURE = 0x8000
|
||||
|
||||
CODE_ERROR = 0xC0DE
|
||||
|
||||
AUTOGEN_ERROR = 0xF000
|
||||
PARSER_ERROR = 0xF001
|
||||
BUILD_ERROR = 0xF002
|
||||
GENFDS_ERROR = 0xF003
|
||||
ECC_ERROR = 0xF004
|
||||
EOT_ERROR = 0xF005
|
||||
DDC_ERROR = 0xF009
|
||||
WARNING_AS_ERROR = 0xF006
|
||||
MIGRATION_ERROR = 0xF010
|
||||
ABORT_ERROR = 0xFFFE
|
||||
UNKNOWN_ERROR = 0xFFFF
|
||||
|
||||
## Error message of each error code
|
||||
gErrorMessage = {
|
||||
FILE_NOT_FOUND : "File/directory not found in workspace",
|
||||
FILE_OPEN_FAILURE : "File open failure",
|
||||
FILE_WRITE_FAILURE : "File write failure",
|
||||
FILE_PARSE_FAILURE : "File parse failure",
|
||||
FILE_READ_FAILURE : "File read failure",
|
||||
FILE_CREATE_FAILURE : "File create failure",
|
||||
FILE_CHECKSUM_FAILURE : "Invalid checksum of file",
|
||||
FILE_COMPRESS_FAILURE : "File compress failure",
|
||||
FILE_DECOMPRESS_FAILURE : "File decompress failure",
|
||||
FILE_MOVE_FAILURE : "File move failure",
|
||||
FILE_DELETE_FAILURE : "File delete failure",
|
||||
FILE_COPY_FAILURE : "File copy failure",
|
||||
FILE_POSITIONING_FAILURE: "Failed to seeking position",
|
||||
FILE_ALREADY_EXIST : "File or directory already exists",
|
||||
FILE_TYPE_MISMATCH : "Incorrect file type",
|
||||
FILE_CASE_MISMATCH : "File name case mismatch",
|
||||
FILE_DUPLICATED : "Duplicated file found",
|
||||
FILE_UNKNOWN_ERROR : "Unknown error encountered on file",
|
||||
|
||||
OPTION_UNKNOWN : "Unknown option",
|
||||
OPTION_MISSING : "Missing option",
|
||||
OPTION_CONFLICT : "Conflict options",
|
||||
OPTION_VALUE_INVALID : "Invalid value of option",
|
||||
OPTION_DEPRECATED : "Deprecated option",
|
||||
OPTION_NOT_SUPPORTED : "Unsupported option",
|
||||
OPTION_UNKNOWN_ERROR : "Unknown error when processing options",
|
||||
|
||||
PARAMETER_INVALID : "Invalid parameter",
|
||||
PARAMETER_MISSING : "Missing parameter",
|
||||
PARAMETER_UNKNOWN_ERROR : "Unknown error in parameters",
|
||||
|
||||
FORMAT_INVALID : "Invalid syntax/format",
|
||||
FORMAT_NOT_SUPPORTED : "Not supported syntax/format",
|
||||
FORMAT_UNKNOWN : "Unknown format",
|
||||
FORMAT_UNKNOWN_ERROR : "Unknown error in syntax/format ",
|
||||
|
||||
RESOURCE_NOT_AVAILABLE : "Not available",
|
||||
RESOURCE_ALLOCATE_FAILURE : "Allocate failure",
|
||||
RESOURCE_FULL : "Full",
|
||||
RESOURCE_OVERFLOW : "Overflow",
|
||||
RESOURCE_UNDERRUN : "Underrun",
|
||||
RESOURCE_UNKNOWN_ERROR : "Unknown error",
|
||||
|
||||
ATTRIBUTE_NOT_AVAILABLE : "Not available",
|
||||
ATTRIBUTE_GET_FAILURE : "Failed to retrieve",
|
||||
ATTRIBUTE_SET_FAILURE : "Failed to set",
|
||||
ATTRIBUTE_UPDATE_FAILURE: "Failed to update",
|
||||
ATTRIBUTE_ACCESS_DENIED : "Access denied",
|
||||
ATTRIBUTE_UNKNOWN_ERROR : "Unknown error when accessing",
|
||||
|
||||
COMMAND_FAILURE : "Failed to execute command",
|
||||
|
||||
IO_NOT_READY : "Not ready",
|
||||
IO_BUSY : "Busy",
|
||||
IO_TIMEOUT : "Timeout",
|
||||
IO_UNKNOWN_ERROR : "Unknown error in IO operation",
|
||||
|
||||
UNKNOWN_ERROR : "Unknown error",
|
||||
}
|
||||
|
||||
## Exception indicating a fatal error
|
||||
class FatalError(Exception):
|
||||
pass
|
||||
|
||||
if __name__ == "__main__":
|
||||
pass
|
||||
## @file
|
||||
# Standardized Error Hanlding infrastructures.
|
||||
#
|
||||
# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
FILE_OPEN_FAILURE = 1
|
||||
FILE_WRITE_FAILURE = 2
|
||||
FILE_PARSE_FAILURE = 3
|
||||
FILE_READ_FAILURE = 4
|
||||
FILE_CREATE_FAILURE = 5
|
||||
FILE_CHECKSUM_FAILURE = 6
|
||||
FILE_COMPRESS_FAILURE = 7
|
||||
FILE_DECOMPRESS_FAILURE = 8
|
||||
FILE_MOVE_FAILURE = 9
|
||||
FILE_DELETE_FAILURE = 10
|
||||
FILE_COPY_FAILURE = 11
|
||||
FILE_POSITIONING_FAILURE = 12
|
||||
FILE_ALREADY_EXIST = 13
|
||||
FILE_NOT_FOUND = 14
|
||||
FILE_TYPE_MISMATCH = 15
|
||||
FILE_CASE_MISMATCH = 16
|
||||
FILE_DUPLICATED = 17
|
||||
FILE_UNKNOWN_ERROR = 0x0FFF
|
||||
|
||||
OPTION_UNKNOWN = 0x1000
|
||||
OPTION_MISSING = 0x1001
|
||||
OPTION_CONFLICT = 0x1002
|
||||
OPTION_VALUE_INVALID = 0x1003
|
||||
OPTION_DEPRECATED = 0x1004
|
||||
OPTION_NOT_SUPPORTED = 0x1005
|
||||
OPTION_UNKNOWN_ERROR = 0x1FFF
|
||||
|
||||
PARAMETER_INVALID = 0x2000
|
||||
PARAMETER_MISSING = 0x2001
|
||||
PARAMETER_UNKNOWN_ERROR =0x2FFF
|
||||
|
||||
FORMAT_INVALID = 0x3000
|
||||
FORMAT_NOT_SUPPORTED = 0x3001
|
||||
FORMAT_UNKNOWN = 0x3002
|
||||
FORMAT_UNKNOWN_ERROR = 0x3FFF
|
||||
|
||||
RESOURCE_NOT_AVAILABLE = 0x4000
|
||||
RESOURCE_ALLOCATE_FAILURE = 0x4001
|
||||
RESOURCE_FULL = 0x4002
|
||||
RESOURCE_OVERFLOW = 0x4003
|
||||
RESOURCE_UNDERRUN = 0x4004
|
||||
RESOURCE_UNKNOWN_ERROR = 0x4FFF
|
||||
|
||||
ATTRIBUTE_NOT_AVAILABLE = 0x5000
|
||||
ATTRIBUTE_GET_FAILURE = 0x5001
|
||||
ATTRIBUTE_SET_FAILURE = 0x5002
|
||||
ATTRIBUTE_UPDATE_FAILURE = 0x5003
|
||||
ATTRIBUTE_ACCESS_DENIED = 0x5004
|
||||
ATTRIBUTE_UNKNOWN_ERROR = 0x5FFF
|
||||
|
||||
IO_NOT_READY = 0x6000
|
||||
IO_BUSY = 0x6001
|
||||
IO_TIMEOUT = 0x6002
|
||||
IO_UNKNOWN_ERROR = 0x6FFF
|
||||
|
||||
COMMAND_FAILURE = 0x7000
|
||||
|
||||
PERMISSION_FAILURE = 0x8000
|
||||
|
||||
CODE_ERROR = 0xC0DE
|
||||
|
||||
AUTOGEN_ERROR = 0xF000
|
||||
PARSER_ERROR = 0xF001
|
||||
BUILD_ERROR = 0xF002
|
||||
GENFDS_ERROR = 0xF003
|
||||
ECC_ERROR = 0xF004
|
||||
EOT_ERROR = 0xF005
|
||||
DDC_ERROR = 0xF009
|
||||
WARNING_AS_ERROR = 0xF006
|
||||
MIGRATION_ERROR = 0xF010
|
||||
ABORT_ERROR = 0xFFFE
|
||||
UNKNOWN_ERROR = 0xFFFF
|
||||
|
||||
## Error message of each error code
|
||||
gErrorMessage = {
|
||||
FILE_NOT_FOUND : "File/directory not found in workspace",
|
||||
FILE_OPEN_FAILURE : "File open failure",
|
||||
FILE_WRITE_FAILURE : "File write failure",
|
||||
FILE_PARSE_FAILURE : "File parse failure",
|
||||
FILE_READ_FAILURE : "File read failure",
|
||||
FILE_CREATE_FAILURE : "File create failure",
|
||||
FILE_CHECKSUM_FAILURE : "Invalid checksum of file",
|
||||
FILE_COMPRESS_FAILURE : "File compress failure",
|
||||
FILE_DECOMPRESS_FAILURE : "File decompress failure",
|
||||
FILE_MOVE_FAILURE : "File move failure",
|
||||
FILE_DELETE_FAILURE : "File delete failure",
|
||||
FILE_COPY_FAILURE : "File copy failure",
|
||||
FILE_POSITIONING_FAILURE: "Failed to seeking position",
|
||||
FILE_ALREADY_EXIST : "File or directory already exists",
|
||||
FILE_TYPE_MISMATCH : "Incorrect file type",
|
||||
FILE_CASE_MISMATCH : "File name case mismatch",
|
||||
FILE_DUPLICATED : "Duplicated file found",
|
||||
FILE_UNKNOWN_ERROR : "Unknown error encountered on file",
|
||||
|
||||
OPTION_UNKNOWN : "Unknown option",
|
||||
OPTION_MISSING : "Missing option",
|
||||
OPTION_CONFLICT : "Conflict options",
|
||||
OPTION_VALUE_INVALID : "Invalid value of option",
|
||||
OPTION_DEPRECATED : "Deprecated option",
|
||||
OPTION_NOT_SUPPORTED : "Unsupported option",
|
||||
OPTION_UNKNOWN_ERROR : "Unknown error when processing options",
|
||||
|
||||
PARAMETER_INVALID : "Invalid parameter",
|
||||
PARAMETER_MISSING : "Missing parameter",
|
||||
PARAMETER_UNKNOWN_ERROR : "Unknown error in parameters",
|
||||
|
||||
FORMAT_INVALID : "Invalid syntax/format",
|
||||
FORMAT_NOT_SUPPORTED : "Not supported syntax/format",
|
||||
FORMAT_UNKNOWN : "Unknown format",
|
||||
FORMAT_UNKNOWN_ERROR : "Unknown error in syntax/format ",
|
||||
|
||||
RESOURCE_NOT_AVAILABLE : "Not available",
|
||||
RESOURCE_ALLOCATE_FAILURE : "Allocate failure",
|
||||
RESOURCE_FULL : "Full",
|
||||
RESOURCE_OVERFLOW : "Overflow",
|
||||
RESOURCE_UNDERRUN : "Underrun",
|
||||
RESOURCE_UNKNOWN_ERROR : "Unknown error",
|
||||
|
||||
ATTRIBUTE_NOT_AVAILABLE : "Not available",
|
||||
ATTRIBUTE_GET_FAILURE : "Failed to retrieve",
|
||||
ATTRIBUTE_SET_FAILURE : "Failed to set",
|
||||
ATTRIBUTE_UPDATE_FAILURE: "Failed to update",
|
||||
ATTRIBUTE_ACCESS_DENIED : "Access denied",
|
||||
ATTRIBUTE_UNKNOWN_ERROR : "Unknown error when accessing",
|
||||
|
||||
COMMAND_FAILURE : "Failed to execute command",
|
||||
|
||||
IO_NOT_READY : "Not ready",
|
||||
IO_BUSY : "Busy",
|
||||
IO_TIMEOUT : "Timeout",
|
||||
IO_UNKNOWN_ERROR : "Unknown error in IO operation",
|
||||
|
||||
UNKNOWN_ERROR : "Unknown error",
|
||||
}
|
||||
|
||||
## Exception indicating a fatal error
|
||||
class FatalError(Exception):
|
||||
pass
|
||||
|
||||
if __name__ == "__main__":
|
||||
pass
|
||||
|
@ -13,4 +13,4 @@
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
gBUILD_VERSION = "Build 2640"
|
||||
gBUILD_VERSION = "Build 2649"
|
||||
|
@ -1,269 +1,269 @@
|
||||
## @file
|
||||
# This file implements the log mechanism for Python tools.
|
||||
#
|
||||
# Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
## Import modules
|
||||
import sys, os, logging
|
||||
import traceback
|
||||
from BuildToolError import *
|
||||
|
||||
## Log level constants
|
||||
DEBUG_0 = 1
|
||||
DEBUG_1 = 2
|
||||
DEBUG_2 = 3
|
||||
DEBUG_3 = 4
|
||||
DEBUG_4 = 5
|
||||
DEBUG_5 = 6
|
||||
DEBUG_6 = 7
|
||||
DEBUG_7 = 8
|
||||
DEBUG_8 = 9
|
||||
DEBUG_9 = 10
|
||||
VERBOSE = 15
|
||||
INFO = 20
|
||||
WARN = 30
|
||||
QUIET = 40
|
||||
ERROR = 50
|
||||
|
||||
IsRaiseError = True
|
||||
|
||||
# Tool name
|
||||
_ToolName = os.path.basename(sys.argv[0])
|
||||
|
||||
# For validation purpose
|
||||
_LogLevels = [DEBUG_0, DEBUG_1, DEBUG_2, DEBUG_3, DEBUG_4, DEBUG_5, DEBUG_6, DEBUG_7, DEBUG_8, DEBUG_9, VERBOSE, WARN, INFO, ERROR, QUIET]
|
||||
|
||||
# For DEBUG level (All DEBUG_0~9 are applicable)
|
||||
_DebugLogger = logging.getLogger("tool_debug")
|
||||
_DebugFormatter = logging.Formatter("[%(asctime)s.%(msecs)d]: %(message)s", datefmt="%H:%M:%S")
|
||||
|
||||
# For VERBOSE, INFO, WARN level
|
||||
_InfoLogger = logging.getLogger("tool_info")
|
||||
_InfoFormatter = logging.Formatter("%(message)s")
|
||||
|
||||
# For ERROR level
|
||||
_ErrorLogger = logging.getLogger("tool_error")
|
||||
_ErrorFormatter = logging.Formatter("%(message)s")
|
||||
|
||||
# String templates for ERROR/WARN/DEBUG log message
|
||||
_ErrorMessageTemplate = '\n\n%(tool)s...\n%(file)s(%(line)s): error %(errorcode)04X: %(msg)s\n\t%(extra)s'
|
||||
_ErrorMessageTemplateWithoutFile = '\n\n%(tool)s...\n : error %(errorcode)04X: %(msg)s\n\t%(extra)s'
|
||||
_WarningMessageTemplate = '%(tool)s...\n%(file)s(%(line)s): warning: %(msg)s'
|
||||
_WarningMessageTemplateWithoutFile = '%(tool)s: : warning: %(msg)s'
|
||||
_DebugMessageTemplate = '%(file)s(%(line)s): debug: \n %(msg)s'
|
||||
|
||||
#
|
||||
# Flag used to take WARN as ERROR.
|
||||
# By default, only ERROR message will break the tools execution.
|
||||
#
|
||||
_WarningAsError = False
|
||||
|
||||
## Log debug message
|
||||
#
|
||||
# @param Level DEBUG level (DEBUG0~9)
|
||||
# @param Message Debug information
|
||||
# @param ExtraData More information associated with "Message"
|
||||
#
|
||||
def debug(Level, Message, ExtraData=None):
|
||||
if _DebugLogger.level > Level:
|
||||
return
|
||||
if Level > DEBUG_9:
|
||||
return
|
||||
|
||||
# Find out the caller method information
|
||||
CallerStack = traceback.extract_stack()[-2]
|
||||
TemplateDict = {
|
||||
"file" : CallerStack[0],
|
||||
"line" : CallerStack[1],
|
||||
"msg" : Message,
|
||||
}
|
||||
|
||||
if ExtraData != None:
|
||||
LogText = _DebugMessageTemplate % TemplateDict + "\n %s" % ExtraData
|
||||
else:
|
||||
LogText = _DebugMessageTemplate % TemplateDict
|
||||
|
||||
_DebugLogger.log(Level, LogText)
|
||||
|
||||
## Log verbose message
|
||||
#
|
||||
# @param Message Verbose information
|
||||
#
|
||||
def verbose(Message):
|
||||
return _InfoLogger.log(VERBOSE, Message)
|
||||
|
||||
## Log warning message
|
||||
#
|
||||
# Warning messages are those which might be wrong but won't fail the tool.
|
||||
#
|
||||
# @param ToolName The name of the tool. If not given, the name of caller
|
||||
# method will be used.
|
||||
# @param Message Warning information
|
||||
# @param File The name of file which caused the warning.
|
||||
# @param Line The line number in the "File" which caused the warning.
|
||||
# @param ExtraData More information associated with "Message"
|
||||
#
|
||||
def warn(ToolName, Message, File=None, Line=None, ExtraData=None):
|
||||
if _InfoLogger.level > WARN:
|
||||
return
|
||||
|
||||
# if no tool name given, use caller's source file name as tool name
|
||||
if ToolName == None or ToolName == "":
|
||||
ToolName = os.path.basename(traceback.extract_stack()[-2][0])
|
||||
|
||||
if Line == None:
|
||||
Line = "..."
|
||||
else:
|
||||
Line = "%d" % Line
|
||||
|
||||
TemplateDict = {
|
||||
"tool" : ToolName,
|
||||
"file" : File,
|
||||
"line" : Line,
|
||||
"msg" : Message,
|
||||
}
|
||||
|
||||
if File != None:
|
||||
LogText = _WarningMessageTemplate % TemplateDict
|
||||
else:
|
||||
LogText = _WarningMessageTemplateWithoutFile % TemplateDict
|
||||
|
||||
if ExtraData != None:
|
||||
LogText += "\n %s" % ExtraData
|
||||
|
||||
_InfoLogger.log(WARN, LogText)
|
||||
|
||||
# Raise an execption if indicated
|
||||
if _WarningAsError == True:
|
||||
raise FatalError(WARNING_AS_ERROR)
|
||||
|
||||
## Log INFO message
|
||||
info = _InfoLogger.info
|
||||
|
||||
## Log ERROR message
|
||||
#
|
||||
# Once an error messages is logged, the tool's execution will be broken by raising
|
||||
# an execption. If you don't want to break the execution later, you can give
|
||||
# "RaiseError" with "False" value.
|
||||
#
|
||||
# @param ToolName The name of the tool. If not given, the name of caller
|
||||
# method will be used.
|
||||
# @param ErrorCode The error code
|
||||
# @param Message Warning information
|
||||
# @param File The name of file which caused the error.
|
||||
# @param Line The line number in the "File" which caused the warning.
|
||||
# @param ExtraData More information associated with "Message"
|
||||
# @param RaiseError Raise an exception to break the tool's executuion if
|
||||
# it's True. This is the default behavior.
|
||||
#
|
||||
def error(ToolName, ErrorCode, Message=None, File=None, Line=None, ExtraData=None, RaiseError=IsRaiseError):
|
||||
if Line == None:
|
||||
Line = "..."
|
||||
else:
|
||||
Line = "%d" % Line
|
||||
|
||||
if Message == None:
|
||||
if ErrorCode in gErrorMessage:
|
||||
Message = gErrorMessage[ErrorCode]
|
||||
else:
|
||||
Message = gErrorMessage[UNKNOWN_ERROR]
|
||||
|
||||
if ExtraData == None:
|
||||
ExtraData = ""
|
||||
|
||||
TemplateDict = {
|
||||
"tool" : _ToolName,
|
||||
"file" : File,
|
||||
"line" : Line,
|
||||
"errorcode" : ErrorCode,
|
||||
"msg" : Message,
|
||||
"extra" : ExtraData
|
||||
}
|
||||
|
||||
if File != None:
|
||||
LogText = _ErrorMessageTemplate % TemplateDict
|
||||
else:
|
||||
LogText = _ErrorMessageTemplateWithoutFile % TemplateDict
|
||||
|
||||
_ErrorLogger.log(ERROR, LogText)
|
||||
if RaiseError:
|
||||
raise FatalError(ErrorCode)
|
||||
|
||||
# Log information which should be always put out
|
||||
quiet = _ErrorLogger.error
|
||||
|
||||
## Initialize log system
|
||||
def Initialize():
|
||||
#
|
||||
# Since we use different format to log different levels of message into different
|
||||
# place (stdout or stderr), we have to use different "Logger" objects to do this.
|
||||
#
|
||||
# For DEBUG level (All DEBUG_0~9 are applicable)
|
||||
_DebugLogger.setLevel(INFO)
|
||||
_DebugChannel = logging.StreamHandler(sys.stdout)
|
||||
_DebugChannel.setFormatter(_DebugFormatter)
|
||||
_DebugLogger.addHandler(_DebugChannel)
|
||||
|
||||
# For VERBOSE, INFO, WARN level
|
||||
_InfoLogger.setLevel(INFO)
|
||||
_InfoChannel = logging.StreamHandler(sys.stdout)
|
||||
_InfoChannel.setFormatter(_InfoFormatter)
|
||||
_InfoLogger.addHandler(_InfoChannel)
|
||||
|
||||
# For ERROR level
|
||||
_ErrorLogger.setLevel(INFO)
|
||||
_ErrorCh = logging.StreamHandler(sys.stderr)
|
||||
_ErrorCh.setFormatter(_ErrorFormatter)
|
||||
_ErrorLogger.addHandler(_ErrorCh)
|
||||
|
||||
## Set log level
|
||||
#
|
||||
# @param Level One of log level in _LogLevel
|
||||
def SetLevel(Level):
|
||||
if Level not in _LogLevels:
|
||||
info("Not supported log level (%d). Use default level instead." % Level)
|
||||
Level = INFO
|
||||
_DebugLogger.setLevel(Level)
|
||||
_InfoLogger.setLevel(Level)
|
||||
_ErrorLogger.setLevel(Level)
|
||||
|
||||
## Get current log level
|
||||
def GetLevel():
|
||||
return _InfoLogger.getEffectiveLevel()
|
||||
|
||||
## Raise up warning as error
|
||||
def SetWarningAsError():
|
||||
global _WarningAsError
|
||||
_WarningAsError = True
|
||||
|
||||
## Specify a file to store the log message as well as put on console
|
||||
#
|
||||
# @param LogFile The file path used to store the log message
|
||||
#
|
||||
def SetLogFile(LogFile):
|
||||
if os.path.exists(LogFile):
|
||||
os.remove(LogFile)
|
||||
|
||||
_Ch = logging.FileHandler(LogFile)
|
||||
_Ch.setFormatter(_DebugFormatter)
|
||||
_DebugLogger.addHandler(_Ch)
|
||||
|
||||
_Ch= logging.FileHandler(LogFile)
|
||||
_Ch.setFormatter(_InfoFormatter)
|
||||
_InfoLogger.addHandler(_Ch)
|
||||
|
||||
_Ch = logging.FileHandler(LogFile)
|
||||
_Ch.setFormatter(_ErrorFormatter)
|
||||
_ErrorLogger.addHandler(_Ch)
|
||||
|
||||
if __name__ == '__main__':
|
||||
pass
|
||||
|
||||
## @file
|
||||
# This file implements the log mechanism for Python tools.
|
||||
#
|
||||
# Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
## Import modules
|
||||
import sys, os, logging
|
||||
import traceback
|
||||
from BuildToolError import *
|
||||
|
||||
## Log level constants
|
||||
DEBUG_0 = 1
|
||||
DEBUG_1 = 2
|
||||
DEBUG_2 = 3
|
||||
DEBUG_3 = 4
|
||||
DEBUG_4 = 5
|
||||
DEBUG_5 = 6
|
||||
DEBUG_6 = 7
|
||||
DEBUG_7 = 8
|
||||
DEBUG_8 = 9
|
||||
DEBUG_9 = 10
|
||||
VERBOSE = 15
|
||||
INFO = 20
|
||||
WARN = 30
|
||||
QUIET = 40
|
||||
ERROR = 50
|
||||
|
||||
IsRaiseError = True
|
||||
|
||||
# Tool name
|
||||
_ToolName = os.path.basename(sys.argv[0])
|
||||
|
||||
# For validation purpose
|
||||
_LogLevels = [DEBUG_0, DEBUG_1, DEBUG_2, DEBUG_3, DEBUG_4, DEBUG_5, DEBUG_6, DEBUG_7, DEBUG_8, DEBUG_9, VERBOSE, WARN, INFO, ERROR, QUIET]
|
||||
|
||||
# For DEBUG level (All DEBUG_0~9 are applicable)
|
||||
_DebugLogger = logging.getLogger("tool_debug")
|
||||
_DebugFormatter = logging.Formatter("[%(asctime)s.%(msecs)d]: %(message)s", datefmt="%H:%M:%S")
|
||||
|
||||
# For VERBOSE, INFO, WARN level
|
||||
_InfoLogger = logging.getLogger("tool_info")
|
||||
_InfoFormatter = logging.Formatter("%(message)s")
|
||||
|
||||
# For ERROR level
|
||||
_ErrorLogger = logging.getLogger("tool_error")
|
||||
_ErrorFormatter = logging.Formatter("%(message)s")
|
||||
|
||||
# String templates for ERROR/WARN/DEBUG log message
|
||||
_ErrorMessageTemplate = '\n\n%(tool)s...\n%(file)s(%(line)s): error %(errorcode)04X: %(msg)s\n\t%(extra)s'
|
||||
_ErrorMessageTemplateWithoutFile = '\n\n%(tool)s...\n : error %(errorcode)04X: %(msg)s\n\t%(extra)s'
|
||||
_WarningMessageTemplate = '%(tool)s...\n%(file)s(%(line)s): warning: %(msg)s'
|
||||
_WarningMessageTemplateWithoutFile = '%(tool)s: : warning: %(msg)s'
|
||||
_DebugMessageTemplate = '%(file)s(%(line)s): debug: \n %(msg)s'
|
||||
|
||||
#
|
||||
# Flag used to take WARN as ERROR.
|
||||
# By default, only ERROR message will break the tools execution.
|
||||
#
|
||||
_WarningAsError = False
|
||||
|
||||
## Log debug message
|
||||
#
|
||||
# @param Level DEBUG level (DEBUG0~9)
|
||||
# @param Message Debug information
|
||||
# @param ExtraData More information associated with "Message"
|
||||
#
|
||||
def debug(Level, Message, ExtraData=None):
|
||||
if _DebugLogger.level > Level:
|
||||
return
|
||||
if Level > DEBUG_9:
|
||||
return
|
||||
|
||||
# Find out the caller method information
|
||||
CallerStack = traceback.extract_stack()[-2]
|
||||
TemplateDict = {
|
||||
"file" : CallerStack[0],
|
||||
"line" : CallerStack[1],
|
||||
"msg" : Message,
|
||||
}
|
||||
|
||||
if ExtraData != None:
|
||||
LogText = _DebugMessageTemplate % TemplateDict + "\n %s" % ExtraData
|
||||
else:
|
||||
LogText = _DebugMessageTemplate % TemplateDict
|
||||
|
||||
_DebugLogger.log(Level, LogText)
|
||||
|
||||
## Log verbose message
|
||||
#
|
||||
# @param Message Verbose information
|
||||
#
|
||||
def verbose(Message):
|
||||
return _InfoLogger.log(VERBOSE, Message)
|
||||
|
||||
## Log warning message
|
||||
#
|
||||
# Warning messages are those which might be wrong but won't fail the tool.
|
||||
#
|
||||
# @param ToolName The name of the tool. If not given, the name of caller
|
||||
# method will be used.
|
||||
# @param Message Warning information
|
||||
# @param File The name of file which caused the warning.
|
||||
# @param Line The line number in the "File" which caused the warning.
|
||||
# @param ExtraData More information associated with "Message"
|
||||
#
|
||||
def warn(ToolName, Message, File=None, Line=None, ExtraData=None):
|
||||
if _InfoLogger.level > WARN:
|
||||
return
|
||||
|
||||
# if no tool name given, use caller's source file name as tool name
|
||||
if ToolName == None or ToolName == "":
|
||||
ToolName = os.path.basename(traceback.extract_stack()[-2][0])
|
||||
|
||||
if Line == None:
|
||||
Line = "..."
|
||||
else:
|
||||
Line = "%d" % Line
|
||||
|
||||
TemplateDict = {
|
||||
"tool" : ToolName,
|
||||
"file" : File,
|
||||
"line" : Line,
|
||||
"msg" : Message,
|
||||
}
|
||||
|
||||
if File != None:
|
||||
LogText = _WarningMessageTemplate % TemplateDict
|
||||
else:
|
||||
LogText = _WarningMessageTemplateWithoutFile % TemplateDict
|
||||
|
||||
if ExtraData != None:
|
||||
LogText += "\n %s" % ExtraData
|
||||
|
||||
_InfoLogger.log(WARN, LogText)
|
||||
|
||||
# Raise an execption if indicated
|
||||
if _WarningAsError == True:
|
||||
raise FatalError(WARNING_AS_ERROR)
|
||||
|
||||
## Log INFO message
|
||||
info = _InfoLogger.info
|
||||
|
||||
## Log ERROR message
|
||||
#
|
||||
# Once an error messages is logged, the tool's execution will be broken by raising
|
||||
# an execption. If you don't want to break the execution later, you can give
|
||||
# "RaiseError" with "False" value.
|
||||
#
|
||||
# @param ToolName The name of the tool. If not given, the name of caller
|
||||
# method will be used.
|
||||
# @param ErrorCode The error code
|
||||
# @param Message Warning information
|
||||
# @param File The name of file which caused the error.
|
||||
# @param Line The line number in the "File" which caused the warning.
|
||||
# @param ExtraData More information associated with "Message"
|
||||
# @param RaiseError Raise an exception to break the tool's executuion if
|
||||
# it's True. This is the default behavior.
|
||||
#
|
||||
def error(ToolName, ErrorCode, Message=None, File=None, Line=None, ExtraData=None, RaiseError=IsRaiseError):
|
||||
if Line == None:
|
||||
Line = "..."
|
||||
else:
|
||||
Line = "%d" % Line
|
||||
|
||||
if Message == None:
|
||||
if ErrorCode in gErrorMessage:
|
||||
Message = gErrorMessage[ErrorCode]
|
||||
else:
|
||||
Message = gErrorMessage[UNKNOWN_ERROR]
|
||||
|
||||
if ExtraData == None:
|
||||
ExtraData = ""
|
||||
|
||||
TemplateDict = {
|
||||
"tool" : _ToolName,
|
||||
"file" : File,
|
||||
"line" : Line,
|
||||
"errorcode" : ErrorCode,
|
||||
"msg" : Message,
|
||||
"extra" : ExtraData
|
||||
}
|
||||
|
||||
if File != None:
|
||||
LogText = _ErrorMessageTemplate % TemplateDict
|
||||
else:
|
||||
LogText = _ErrorMessageTemplateWithoutFile % TemplateDict
|
||||
|
||||
_ErrorLogger.log(ERROR, LogText)
|
||||
if RaiseError:
|
||||
raise FatalError(ErrorCode)
|
||||
|
||||
# Log information which should be always put out
|
||||
quiet = _ErrorLogger.error
|
||||
|
||||
## Initialize log system
|
||||
def Initialize():
|
||||
#
|
||||
# Since we use different format to log different levels of message into different
|
||||
# place (stdout or stderr), we have to use different "Logger" objects to do this.
|
||||
#
|
||||
# For DEBUG level (All DEBUG_0~9 are applicable)
|
||||
_DebugLogger.setLevel(INFO)
|
||||
_DebugChannel = logging.StreamHandler(sys.stdout)
|
||||
_DebugChannel.setFormatter(_DebugFormatter)
|
||||
_DebugLogger.addHandler(_DebugChannel)
|
||||
|
||||
# For VERBOSE, INFO, WARN level
|
||||
_InfoLogger.setLevel(INFO)
|
||||
_InfoChannel = logging.StreamHandler(sys.stdout)
|
||||
_InfoChannel.setFormatter(_InfoFormatter)
|
||||
_InfoLogger.addHandler(_InfoChannel)
|
||||
|
||||
# For ERROR level
|
||||
_ErrorLogger.setLevel(INFO)
|
||||
_ErrorCh = logging.StreamHandler(sys.stderr)
|
||||
_ErrorCh.setFormatter(_ErrorFormatter)
|
||||
_ErrorLogger.addHandler(_ErrorCh)
|
||||
|
||||
## Set log level
|
||||
#
|
||||
# @param Level One of log level in _LogLevel
|
||||
def SetLevel(Level):
|
||||
if Level not in _LogLevels:
|
||||
info("Not supported log level (%d). Use default level instead." % Level)
|
||||
Level = INFO
|
||||
_DebugLogger.setLevel(Level)
|
||||
_InfoLogger.setLevel(Level)
|
||||
_ErrorLogger.setLevel(Level)
|
||||
|
||||
## Get current log level
|
||||
def GetLevel():
|
||||
return _InfoLogger.getEffectiveLevel()
|
||||
|
||||
## Raise up warning as error
|
||||
def SetWarningAsError():
|
||||
global _WarningAsError
|
||||
_WarningAsError = True
|
||||
|
||||
## Specify a file to store the log message as well as put on console
|
||||
#
|
||||
# @param LogFile The file path used to store the log message
|
||||
#
|
||||
def SetLogFile(LogFile):
|
||||
if os.path.exists(LogFile):
|
||||
os.remove(LogFile)
|
||||
|
||||
_Ch = logging.FileHandler(LogFile)
|
||||
_Ch.setFormatter(_DebugFormatter)
|
||||
_DebugLogger.addHandler(_Ch)
|
||||
|
||||
_Ch= logging.FileHandler(LogFile)
|
||||
_Ch.setFormatter(_InfoFormatter)
|
||||
_InfoLogger.addHandler(_Ch)
|
||||
|
||||
_Ch = logging.FileHandler(LogFile)
|
||||
_Ch.setFormatter(_ErrorFormatter)
|
||||
_ErrorLogger.addHandler(_Ch)
|
||||
|
||||
if __name__ == '__main__':
|
||||
pass
|
||||
|
||||
|
@ -1,71 +1,71 @@
|
||||
## @file
|
||||
# This file is used to define common static strings used by INF/DEC/DSC files
|
||||
#
|
||||
# Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
import re
|
||||
|
||||
gIsWindows = None
|
||||
|
||||
gEdkCompatibilityPkg = "EdkCompatibilityPkg"
|
||||
gWorkspace = "."
|
||||
gEdkSource = "EdkCompatibilityPkg"
|
||||
gEfiSource = "."
|
||||
gEcpSource = "EdkCompatibilityPkg"
|
||||
|
||||
gOptions = None
|
||||
gCaseInsensitive = False
|
||||
gAllFiles = None
|
||||
|
||||
gGlobalDefines = {}
|
||||
gPlatformDefines = {}
|
||||
# PCD name and value pair for fixed at build and feature flag
|
||||
gPlatformPcds = {}
|
||||
# PCDs with type that are not fixed at build and feature flag
|
||||
gPlatformOtherPcds = {}
|
||||
gActivePlatform = None
|
||||
gCommandLineDefines = {}
|
||||
gEdkGlobal = {}
|
||||
gOverrideDir = {}
|
||||
|
||||
# for debug trace purpose when problem occurs
|
||||
gProcessingFile = ''
|
||||
gBuildingModule = ''
|
||||
|
||||
## Regular expression for matching macro used in DSC/DEC/INF file inclusion
|
||||
gMacroRefPattern = re.compile("\$\(([A-Z][_A-Z0-9]*)\)", re.UNICODE)
|
||||
gMacroDefPattern = re.compile("^(DEFINE|EDK_GLOBAL)[ \t]+")
|
||||
gMacroNamePattern = re.compile("^[A-Z][A-Z0-9_]*$")
|
||||
# C-style wide string pattern
|
||||
gWideStringPattern = re.compile('(\W|\A)L"')
|
||||
#
|
||||
# A global variable for whether current build in AutoGen phase or not.
|
||||
#
|
||||
gAutoGenPhase = False
|
||||
|
||||
#
|
||||
# The Conf dir outside the workspace dir
|
||||
#
|
||||
gConfDirectory = ''
|
||||
|
||||
#
|
||||
# The relative default database file path
|
||||
#
|
||||
gDatabasePath = ".cache/build.db"
|
||||
|
||||
#
|
||||
# Build flag for binary build
|
||||
#
|
||||
gIgnoreSource = False
|
||||
|
||||
#
|
||||
# FDF parser
|
||||
#
|
||||
gFdfParser = None
|
||||
## @file
|
||||
# This file is used to define common static strings used by INF/DEC/DSC files
|
||||
#
|
||||
# Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
import re
|
||||
|
||||
gIsWindows = None
|
||||
|
||||
gEdkCompatibilityPkg = "EdkCompatibilityPkg"
|
||||
gWorkspace = "."
|
||||
gEdkSource = "EdkCompatibilityPkg"
|
||||
gEfiSource = "."
|
||||
gEcpSource = "EdkCompatibilityPkg"
|
||||
|
||||
gOptions = None
|
||||
gCaseInsensitive = False
|
||||
gAllFiles = None
|
||||
|
||||
gGlobalDefines = {}
|
||||
gPlatformDefines = {}
|
||||
# PCD name and value pair for fixed at build and feature flag
|
||||
gPlatformPcds = {}
|
||||
# PCDs with type that are not fixed at build and feature flag
|
||||
gPlatformOtherPcds = {}
|
||||
gActivePlatform = None
|
||||
gCommandLineDefines = {}
|
||||
gEdkGlobal = {}
|
||||
gOverrideDir = {}
|
||||
|
||||
# for debug trace purpose when problem occurs
|
||||
gProcessingFile = ''
|
||||
gBuildingModule = ''
|
||||
|
||||
## Regular expression for matching macro used in DSC/DEC/INF file inclusion
|
||||
gMacroRefPattern = re.compile("\$\(([A-Z][_A-Z0-9]*)\)", re.UNICODE)
|
||||
gMacroDefPattern = re.compile("^(DEFINE|EDK_GLOBAL)[ \t]+")
|
||||
gMacroNamePattern = re.compile("^[A-Z][A-Z0-9_]*$")
|
||||
# C-style wide string pattern
|
||||
gWideStringPattern = re.compile('(\W|\A)L"')
|
||||
#
|
||||
# A global variable for whether current build in AutoGen phase or not.
|
||||
#
|
||||
gAutoGenPhase = False
|
||||
|
||||
#
|
||||
# The Conf dir outside the workspace dir
|
||||
#
|
||||
gConfDirectory = ''
|
||||
|
||||
#
|
||||
# The relative default database file path
|
||||
#
|
||||
gDatabasePath = ".cache/build.db"
|
||||
|
||||
#
|
||||
# Build flag for binary build
|
||||
#
|
||||
gIgnoreSource = False
|
||||
|
||||
#
|
||||
# FDF parser
|
||||
#
|
||||
gFdfParser = None
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,20 +1,20 @@
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Xml
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Xml
|
||||
'''
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -80,11 +80,11 @@ class EfiSection (EfiSectionClassObject):
|
||||
FileList = []
|
||||
if Filename != None:
|
||||
Filename = GenFdsGlobalVariable.MacroExtend(Filename, Dict)
|
||||
# check if the path is absolute or relative
|
||||
if os.path.isabs(Filename):
|
||||
Filename = os.path.normpath(Filename)
|
||||
else:
|
||||
Filename = os.path.normpath(os.path.join(FfsInf.EfiOutputPath, Filename))
|
||||
# check if the path is absolute or relative
|
||||
if os.path.isabs(Filename):
|
||||
Filename = os.path.normpath(Filename)
|
||||
else:
|
||||
Filename = os.path.normpath(os.path.join(FfsInf.EfiOutputPath, Filename))
|
||||
|
||||
if not self.Optional:
|
||||
FileList.append(Filename)
|
||||
|
@ -296,13 +296,13 @@ class FV (FvClassObject):
|
||||
Buffer = ''
|
||||
for Index in range (0, len(self.FvExtEntryType)):
|
||||
if self.FvExtEntryType[Index] == 'FILE':
|
||||
# check if the path is absolute or relative
|
||||
if os.path.isabs(self.FvExtEntryData[Index]):
|
||||
FileFullPath = os.path.normpath(self.FvExtEntryData[Index])
|
||||
else:
|
||||
FileFullPath = os.path.normpath(os.path.join(GenFdsGlobalVariable.WorkSpaceDir, self.FvExtEntryData[Index]))
|
||||
# check if the file path exists or not
|
||||
if not os.path.isfile(FileFullPath):
|
||||
# check if the path is absolute or relative
|
||||
if os.path.isabs(self.FvExtEntryData[Index]):
|
||||
FileFullPath = os.path.normpath(self.FvExtEntryData[Index])
|
||||
else:
|
||||
FileFullPath = os.path.normpath(os.path.join(GenFdsGlobalVariable.WorkSpaceDir, self.FvExtEntryData[Index]))
|
||||
# check if the file path exists or not
|
||||
if not os.path.isfile(FileFullPath):
|
||||
GenFdsGlobalVariable.ErrorLogger("Error opening FV Extension Header Entry file %s." % (self.FvExtEntryData[Index]))
|
||||
FvExtFile = open (FileFullPath,'rb')
|
||||
FvExtFile.seek(0,2)
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,8 @@
|
||||
## @file
|
||||
# Generate PCD table for 'Patchable In Module' type PCD with given .map file.
|
||||
# The Patch PCD table like:
|
||||
#
|
||||
# PCD Name Offset in binary
|
||||
# The Patch PCD table like:
|
||||
#
|
||||
# PCD Name Offset in binary
|
||||
# ======== ================
|
||||
#
|
||||
# Copyright (c) 2008 - 2013, Intel Corporation. All rights reserved.<BR>
|
||||
@ -14,77 +14,77 @@
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
#
|
||||
|
||||
#====================================== External Libraries ========================================
|
||||
import optparse
|
||||
import os
|
||||
import re
|
||||
import array
|
||||
|
||||
from Common.BuildToolError import *
|
||||
import Common.EdkLogger as EdkLogger
|
||||
#
|
||||
|
||||
#====================================== External Libraries ========================================
|
||||
import optparse
|
||||
import os
|
||||
import re
|
||||
import array
|
||||
|
||||
from Common.BuildToolError import *
|
||||
import Common.EdkLogger as EdkLogger
|
||||
from Common.Misc import PeImageClass
|
||||
from Common.BuildVersion import gBUILD_VERSION
|
||||
|
||||
# Version and Copyright
|
||||
__version_number__ = ("0.10" + " " + gBUILD_VERSION)
|
||||
__version__ = "%prog Version " + __version_number__
|
||||
__copyright__ = "Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved."
|
||||
|
||||
#====================================== Internal Libraries ========================================
|
||||
|
||||
#============================================== Code ===============================================
|
||||
secRe = re.compile('^([\da-fA-F]+):([\da-fA-F]+) +([\da-fA-F]+)[Hh]? +([.\w\$]+) +(\w+)', re.UNICODE)
|
||||
symRe = re.compile('^([\da-fA-F]+):([\da-fA-F]+) +([\.:\\\\\w\?@\$]+) +([\da-fA-F]+)', re.UNICODE)
|
||||
|
||||
def parsePcdInfoFromMapFile(mapfilepath, efifilepath):
|
||||
""" Parse map file to get binary patch pcd information
|
||||
@param path Map file absolution path
|
||||
|
||||
@return a list which element hold (PcdName, Offset, SectionName)
|
||||
"""
|
||||
lines = []
|
||||
try:
|
||||
f = open(mapfilepath, 'r')
|
||||
lines = f.readlines()
|
||||
f.close()
|
||||
except:
|
||||
return None
|
||||
|
||||
if len(lines) == 0: return None
|
||||
if lines[0].strip().find("Archive member included because of file (symbol)") != -1:
|
||||
return _parseForGCC(lines, efifilepath)
|
||||
return _parseGeneral(lines, efifilepath)
|
||||
|
||||
def _parseForGCC(lines, efifilepath):
|
||||
""" Parse map file generated by GCC linker """
|
||||
status = 0
|
||||
imageBase = -1
|
||||
sections = []
|
||||
bpcds = []
|
||||
for line in lines:
|
||||
line = line.strip()
|
||||
# status machine transection
|
||||
if status == 0 and line == "Memory Configuration":
|
||||
status = 1
|
||||
continue
|
||||
elif status == 1 and line == 'Linker script and memory map':
|
||||
status = 2
|
||||
continue
|
||||
elif status ==2 and line == 'START GROUP':
|
||||
status = 3
|
||||
continue
|
||||
|
||||
|
||||
# Version and Copyright
|
||||
__version_number__ = ("0.10" + " " + gBUILD_VERSION)
|
||||
__version__ = "%prog Version " + __version_number__
|
||||
__copyright__ = "Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved."
|
||||
|
||||
#====================================== Internal Libraries ========================================
|
||||
|
||||
#============================================== Code ===============================================
|
||||
secRe = re.compile('^([\da-fA-F]+):([\da-fA-F]+) +([\da-fA-F]+)[Hh]? +([.\w\$]+) +(\w+)', re.UNICODE)
|
||||
symRe = re.compile('^([\da-fA-F]+):([\da-fA-F]+) +([\.:\\\\\w\?@\$]+) +([\da-fA-F]+)', re.UNICODE)
|
||||
|
||||
def parsePcdInfoFromMapFile(mapfilepath, efifilepath):
|
||||
""" Parse map file to get binary patch pcd information
|
||||
@param path Map file absolution path
|
||||
|
||||
@return a list which element hold (PcdName, Offset, SectionName)
|
||||
"""
|
||||
lines = []
|
||||
try:
|
||||
f = open(mapfilepath, 'r')
|
||||
lines = f.readlines()
|
||||
f.close()
|
||||
except:
|
||||
return None
|
||||
|
||||
if len(lines) == 0: return None
|
||||
if lines[0].strip().find("Archive member included because of file (symbol)") != -1:
|
||||
return _parseForGCC(lines, efifilepath)
|
||||
return _parseGeneral(lines, efifilepath)
|
||||
|
||||
def _parseForGCC(lines, efifilepath):
|
||||
""" Parse map file generated by GCC linker """
|
||||
status = 0
|
||||
imageBase = -1
|
||||
sections = []
|
||||
bpcds = []
|
||||
for line in lines:
|
||||
line = line.strip()
|
||||
# status machine transection
|
||||
if status == 0 and line == "Memory Configuration":
|
||||
status = 1
|
||||
continue
|
||||
elif status == 1 and line == 'Linker script and memory map':
|
||||
status = 2
|
||||
continue
|
||||
elif status ==2 and line == 'START GROUP':
|
||||
status = 3
|
||||
continue
|
||||
|
||||
# status handler
|
||||
if status == 2:
|
||||
m = re.match('^([\w_\.]+) +([\da-fA-Fx]+) +([\da-fA-Fx]+)$', line)
|
||||
if m != None:
|
||||
sections.append(m.groups(0))
|
||||
if status == 2:
|
||||
m = re.match("^([\da-fA-Fx]+) +[_]+gPcd_BinaryPatch_([\w_\d]+)$", line)
|
||||
if m != None:
|
||||
bpcds.append((m.groups(0)[1], int(m.groups(0)[0], 16) , int(sections[-1][1], 16), sections[-1][0]))
|
||||
if status == 2:
|
||||
m = re.match('^([\w_\.]+) +([\da-fA-Fx]+) +([\da-fA-Fx]+)$', line)
|
||||
if m != None:
|
||||
sections.append(m.groups(0))
|
||||
if status == 2:
|
||||
m = re.match("^([\da-fA-Fx]+) +[_]+gPcd_BinaryPatch_([\w_\d]+)$", line)
|
||||
if m != None:
|
||||
bpcds.append((m.groups(0)[1], int(m.groups(0)[0], 16) , int(sections[-1][1], 16), sections[-1][0]))
|
||||
|
||||
# get section information from efi file
|
||||
efisecs = PeImageClass(efifilepath).SectionHeaderList
|
||||
@ -102,104 +102,104 @@ def _parseForGCC(lines, efifilepath):
|
||||
if pcd[1] >= efisec[1] and pcd[1] < efisec[1]+efisec[3]:
|
||||
#assert efisec[0].strip() == pcd[3].strip() and efisec[1] + redirection == pcd[2], "There are some differences between map file and efi file"
|
||||
pcds.append([pcd[0], efisec[2] + pcd[1] - efisec[1] - redirection, efisec[0]])
|
||||
return pcds
|
||||
|
||||
def _parseGeneral(lines, efifilepath):
|
||||
""" For MSFT, ICC, EBC
|
||||
@param lines line array for map file
|
||||
|
||||
@return a list which element hold (PcdName, Offset, SectionName)
|
||||
"""
|
||||
status = 0 #0 - beginning of file; 1 - PE section definition; 2 - symbol table
|
||||
secs = [] # key = section name
|
||||
bPcds = []
|
||||
|
||||
|
||||
for line in lines:
|
||||
line = line.strip()
|
||||
if re.match("^Start[' ']+Length[' ']+Name[' ']+Class", line):
|
||||
status = 1
|
||||
continue
|
||||
if re.match("^Address[' ']+Publics by Value[' ']+Rva\+Base", line):
|
||||
status = 2
|
||||
continue
|
||||
if re.match("^entry point at", line):
|
||||
status = 3
|
||||
continue
|
||||
if status == 1 and len(line) != 0:
|
||||
m = secRe.match(line)
|
||||
assert m != None, "Fail to parse the section in map file , line is %s" % line
|
||||
sec_no, sec_start, sec_length, sec_name, sec_class = m.groups(0)
|
||||
secs.append([int(sec_no, 16), int(sec_start, 16), int(sec_length, 16), sec_name, sec_class])
|
||||
if status == 2 and len(line) != 0:
|
||||
m = symRe.match(line)
|
||||
assert m != None, "Fail to parse the symbol in map file, line is %s" % line
|
||||
sec_no, sym_offset, sym_name, vir_addr = m.groups(0)
|
||||
sec_no = int(sec_no, 16)
|
||||
sym_offset = int(sym_offset, 16)
|
||||
vir_addr = int(vir_addr, 16)
|
||||
m2 = re.match('^[_]+gPcd_BinaryPatch_([\w]+)', sym_name)
|
||||
if m2 != None:
|
||||
# fond a binary pcd entry in map file
|
||||
for sec in secs:
|
||||
if sec[0] == sec_no and (sym_offset >= sec[1] and sym_offset < sec[1] + sec[2]):
|
||||
bPcds.append([m2.groups(0)[0], sec[3], sym_offset, vir_addr, sec_no])
|
||||
|
||||
if len(bPcds) == 0: return None
|
||||
|
||||
# get section information from efi file
|
||||
efisecs = PeImageClass(efifilepath).SectionHeaderList
|
||||
if efisecs == None or len(efisecs) == 0:
|
||||
return None
|
||||
|
||||
pcds = []
|
||||
for pcd in bPcds:
|
||||
index = 0
|
||||
for efisec in efisecs:
|
||||
index = index + 1
|
||||
if pcd[1].strip() == efisec[0].strip():
|
||||
pcds.append([pcd[0], efisec[2] + pcd[2], efisec[0]])
|
||||
elif pcd[4] == index:
|
||||
pcds.append([pcd[0], efisec[2] + pcd[2], efisec[0]])
|
||||
return pcds
|
||||
|
||||
def generatePcdTable(list, pcdpath):
|
||||
try:
|
||||
f = open(pcdpath, 'w')
|
||||
except:
|
||||
pass
|
||||
|
||||
f.write('PCD Name Offset Section Name\r\n')
|
||||
|
||||
for pcditem in list:
|
||||
f.write('%-30s 0x%-08X %-6s\r\n' % (pcditem[0], pcditem[1], pcditem[2]))
|
||||
f.close()
|
||||
|
||||
#print 'Success to generate Binary Patch PCD table at %s!' % pcdpath
|
||||
|
||||
if __name__ == '__main__':
|
||||
UsageString = "%prog -m <MapFile> -e <EfiFile> -o <OutFile>"
|
||||
AdditionalNotes = "\nPCD table is generated in file name with .BinaryPcdTable.txt postfix"
|
||||
parser = optparse.OptionParser(description=__copyright__, version=__version__, usage=UsageString)
|
||||
parser.add_option('-m', '--mapfile', action='store', dest='mapfile',
|
||||
help='Absolute path of module map file.')
|
||||
parser.add_option('-e', '--efifile', action='store', dest='efifile',
|
||||
help='Absolute path of EFI binary file.')
|
||||
parser.add_option('-o', '--outputfile', action='store', dest='outfile',
|
||||
help='Absolute path of output file to store the got patchable PCD table.')
|
||||
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
if options.mapfile == None or options.efifile == None:
|
||||
print parser.get_usage()
|
||||
elif os.path.exists(options.mapfile) and os.path.exists(options.efifile):
|
||||
list = parsePcdInfoFromMapFile(options.mapfile, options.efifile)
|
||||
if list != None:
|
||||
if options.outfile != None:
|
||||
generatePcdTable(list, options.outfile)
|
||||
else:
|
||||
generatePcdTable(list, options.mapfile.replace('.map', '.BinaryPcdTable.txt'))
|
||||
else:
|
||||
print 'Fail to generate Patch PCD Table based on map file and efi file'
|
||||
else:
|
||||
print 'Fail to generate Patch PCD Table for fail to find map file or efi file!'
|
||||
return pcds
|
||||
|
||||
def _parseGeneral(lines, efifilepath):
|
||||
""" For MSFT, ICC, EBC
|
||||
@param lines line array for map file
|
||||
|
||||
@return a list which element hold (PcdName, Offset, SectionName)
|
||||
"""
|
||||
status = 0 #0 - beginning of file; 1 - PE section definition; 2 - symbol table
|
||||
secs = [] # key = section name
|
||||
bPcds = []
|
||||
|
||||
|
||||
for line in lines:
|
||||
line = line.strip()
|
||||
if re.match("^Start[' ']+Length[' ']+Name[' ']+Class", line):
|
||||
status = 1
|
||||
continue
|
||||
if re.match("^Address[' ']+Publics by Value[' ']+Rva\+Base", line):
|
||||
status = 2
|
||||
continue
|
||||
if re.match("^entry point at", line):
|
||||
status = 3
|
||||
continue
|
||||
if status == 1 and len(line) != 0:
|
||||
m = secRe.match(line)
|
||||
assert m != None, "Fail to parse the section in map file , line is %s" % line
|
||||
sec_no, sec_start, sec_length, sec_name, sec_class = m.groups(0)
|
||||
secs.append([int(sec_no, 16), int(sec_start, 16), int(sec_length, 16), sec_name, sec_class])
|
||||
if status == 2 and len(line) != 0:
|
||||
m = symRe.match(line)
|
||||
assert m != None, "Fail to parse the symbol in map file, line is %s" % line
|
||||
sec_no, sym_offset, sym_name, vir_addr = m.groups(0)
|
||||
sec_no = int(sec_no, 16)
|
||||
sym_offset = int(sym_offset, 16)
|
||||
vir_addr = int(vir_addr, 16)
|
||||
m2 = re.match('^[_]+gPcd_BinaryPatch_([\w]+)', sym_name)
|
||||
if m2 != None:
|
||||
# fond a binary pcd entry in map file
|
||||
for sec in secs:
|
||||
if sec[0] == sec_no and (sym_offset >= sec[1] and sym_offset < sec[1] + sec[2]):
|
||||
bPcds.append([m2.groups(0)[0], sec[3], sym_offset, vir_addr, sec_no])
|
||||
|
||||
if len(bPcds) == 0: return None
|
||||
|
||||
# get section information from efi file
|
||||
efisecs = PeImageClass(efifilepath).SectionHeaderList
|
||||
if efisecs == None or len(efisecs) == 0:
|
||||
return None
|
||||
|
||||
pcds = []
|
||||
for pcd in bPcds:
|
||||
index = 0
|
||||
for efisec in efisecs:
|
||||
index = index + 1
|
||||
if pcd[1].strip() == efisec[0].strip():
|
||||
pcds.append([pcd[0], efisec[2] + pcd[2], efisec[0]])
|
||||
elif pcd[4] == index:
|
||||
pcds.append([pcd[0], efisec[2] + pcd[2], efisec[0]])
|
||||
return pcds
|
||||
|
||||
def generatePcdTable(list, pcdpath):
|
||||
try:
|
||||
f = open(pcdpath, 'w')
|
||||
except:
|
||||
pass
|
||||
|
||||
f.write('PCD Name Offset Section Name\r\n')
|
||||
|
||||
for pcditem in list:
|
||||
f.write('%-30s 0x%-08X %-6s\r\n' % (pcditem[0], pcditem[1], pcditem[2]))
|
||||
f.close()
|
||||
|
||||
#print 'Success to generate Binary Patch PCD table at %s!' % pcdpath
|
||||
|
||||
if __name__ == '__main__':
|
||||
UsageString = "%prog -m <MapFile> -e <EfiFile> -o <OutFile>"
|
||||
AdditionalNotes = "\nPCD table is generated in file name with .BinaryPcdTable.txt postfix"
|
||||
parser = optparse.OptionParser(description=__copyright__, version=__version__, usage=UsageString)
|
||||
parser.add_option('-m', '--mapfile', action='store', dest='mapfile',
|
||||
help='Absolute path of module map file.')
|
||||
parser.add_option('-e', '--efifile', action='store', dest='efifile',
|
||||
help='Absolute path of EFI binary file.')
|
||||
parser.add_option('-o', '--outputfile', action='store', dest='outfile',
|
||||
help='Absolute path of output file to store the got patchable PCD table.')
|
||||
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
if options.mapfile == None or options.efifile == None:
|
||||
print parser.get_usage()
|
||||
elif os.path.exists(options.mapfile) and os.path.exists(options.efifile):
|
||||
list = parsePcdInfoFromMapFile(options.mapfile, options.efifile)
|
||||
if list != None:
|
||||
if options.outfile != None:
|
||||
generatePcdTable(list, options.outfile)
|
||||
else:
|
||||
generatePcdTable(list, options.mapfile.replace('.map', '.BinaryPcdTable.txt'))
|
||||
else:
|
||||
print 'Fail to generate Patch PCD Table based on map file and efi file'
|
||||
else:
|
||||
print 'Fail to generate Patch PCD Table for fail to find map file or efi file!'
|
||||
|
@ -1,290 +1,290 @@
|
||||
## @file
|
||||
# Patch value into the binary file.
|
||||
#
|
||||
# Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import sys
|
||||
import re
|
||||
|
||||
from optparse import OptionParser
|
||||
from optparse import make_option
|
||||
from Common.BuildToolError import *
|
||||
import Common.EdkLogger as EdkLogger
|
||||
from Common.BuildVersion import gBUILD_VERSION
|
||||
import array
|
||||
|
||||
# Version and Copyright
|
||||
__version_number__ = ("0.10" + " " + gBUILD_VERSION)
|
||||
__version__ = "%prog Version " + __version_number__
|
||||
__copyright__ = "Copyright (c) 2010, Intel Corporation. All rights reserved."
|
||||
|
||||
## PatchBinaryFile method
|
||||
#
|
||||
# This method mainly patches the data into binary file.
|
||||
#
|
||||
# @param FileName File path of the binary file
|
||||
# @param ValueOffset Offset value
|
||||
# @param TypeName DataType Name
|
||||
# @param Value Value String
|
||||
# @param MaxSize MaxSize value
|
||||
#
|
||||
# @retval 0 File is updated successfully.
|
||||
# @retval not 0 File is updated failed.
|
||||
#
|
||||
def PatchBinaryFile(FileName, ValueOffset, TypeName, ValueString, MaxSize=0):
|
||||
#
|
||||
# Length of Binary File
|
||||
#
|
||||
FileHandle = open (FileName, 'rb')
|
||||
FileHandle.seek (0, 2)
|
||||
FileLength = FileHandle.tell()
|
||||
FileHandle.close()
|
||||
#
|
||||
# Unify string to upper string
|
||||
#
|
||||
TypeName = TypeName.upper()
|
||||
#
|
||||
# Get PCD value data length
|
||||
#
|
||||
ValueLength = 0
|
||||
if TypeName == 'BOOLEAN':
|
||||
ValueLength = 1
|
||||
elif TypeName == 'UINT8':
|
||||
ValueLength = 1
|
||||
elif TypeName == 'UINT16':
|
||||
ValueLength = 2
|
||||
elif TypeName == 'UINT32':
|
||||
ValueLength = 4
|
||||
elif TypeName == 'UINT64':
|
||||
ValueLength = 8
|
||||
elif TypeName == 'VOID*':
|
||||
if MaxSize == 0:
|
||||
return OPTION_MISSING, "PcdMaxSize is not specified for VOID* type PCD."
|
||||
ValueLength = int(MaxSize)
|
||||
else:
|
||||
return PARAMETER_INVALID, "PCD type %s is not valid." %(CommandOptions.PcdTypeName)
|
||||
#
|
||||
# Check PcdValue is in the input binary file.
|
||||
#
|
||||
if ValueOffset + ValueLength > FileLength:
|
||||
return PARAMETER_INVALID, "PcdOffset + PcdMaxSize(DataType) is larger than the input file size."
|
||||
#
|
||||
# Read binary file into array
|
||||
#
|
||||
FileHandle = open (FileName, 'rb')
|
||||
ByteArray = array.array('B')
|
||||
ByteArray.fromfile(FileHandle, FileLength)
|
||||
FileHandle.close()
|
||||
OrigByteList = ByteArray.tolist()
|
||||
ByteList = ByteArray.tolist()
|
||||
#
|
||||
# Clear the data in file
|
||||
#
|
||||
for Index in range(ValueLength):
|
||||
ByteList[ValueOffset + Index] = 0
|
||||
#
|
||||
# Patch value into offset
|
||||
#
|
||||
SavedStr = ValueString
|
||||
ValueString = ValueString.upper()
|
||||
ValueNumber = 0
|
||||
if TypeName == 'BOOLEAN':
|
||||
#
|
||||
# Get PCD value for BOOLEAN data type
|
||||
#
|
||||
try:
|
||||
if ValueString == 'TRUE':
|
||||
ValueNumber = 1
|
||||
elif ValueString == 'FALSE':
|
||||
ValueNumber = 0
|
||||
elif ValueString.startswith('0X'):
|
||||
ValueNumber = int (ValueString, 16)
|
||||
else:
|
||||
ValueNumber = int (ValueString)
|
||||
if ValueNumber != 0:
|
||||
ValueNumber = 1
|
||||
except:
|
||||
return PARAMETER_INVALID, "PCD Value %s is not valid dec or hex string." %(ValueString)
|
||||
#
|
||||
# Set PCD value into binary data
|
||||
#
|
||||
ByteList[ValueOffset] = ValueNumber
|
||||
elif TypeName in ['UINT8', 'UINT16', 'UINT32', 'UINT64']:
|
||||
#
|
||||
# Get PCD value for UINT* data type
|
||||
#
|
||||
try:
|
||||
if ValueString.startswith('0X'):
|
||||
ValueNumber = int (ValueString, 16)
|
||||
else:
|
||||
ValueNumber = int (ValueString)
|
||||
except:
|
||||
return PARAMETER_INVALID, "PCD Value %s is not valid dec or hex string." %(ValueString)
|
||||
#
|
||||
# Set PCD value into binary data
|
||||
#
|
||||
for Index in range(ValueLength):
|
||||
ByteList[ValueOffset + Index] = ValueNumber % 0x100
|
||||
ValueNumber = ValueNumber / 0x100
|
||||
elif TypeName == 'VOID*':
|
||||
ValueString = SavedStr
|
||||
if ValueString.startswith('L"'):
|
||||
#
|
||||
# Patch Unicode String
|
||||
#
|
||||
Index = 0
|
||||
for ByteString in ValueString[2:-1]:
|
||||
#
|
||||
# Reserve zero as unicode tail
|
||||
#
|
||||
if Index + 2 >= ValueLength:
|
||||
break
|
||||
#
|
||||
# Set string value one by one
|
||||
#
|
||||
ByteList[ValueOffset + Index] = ord(ByteString)
|
||||
Index = Index + 2
|
||||
elif ValueString.startswith("{") and ValueString.endswith("}"):
|
||||
#
|
||||
# Patch {0x1, 0x2, ...} byte by byte
|
||||
#
|
||||
ValueList = ValueString[1 : len(ValueString) - 1].split(', ')
|
||||
Index = 0
|
||||
try:
|
||||
for ByteString in ValueList:
|
||||
if ByteString.upper().startswith('0X'):
|
||||
ByteValue = int(ByteString, 16)
|
||||
else:
|
||||
ByteValue = int(ByteString)
|
||||
ByteList[ValueOffset + Index] = ByteValue % 0x100
|
||||
Index = Index + 1
|
||||
if Index >= ValueLength:
|
||||
break
|
||||
except:
|
||||
return PARAMETER_INVALID, "PCD Value %s is not valid dec or hex string array." %(ValueString)
|
||||
else:
|
||||
#
|
||||
# Patch ascii string
|
||||
#
|
||||
Index = 0
|
||||
for ByteString in ValueString[1:-1]:
|
||||
#
|
||||
# Reserve zero as string tail
|
||||
#
|
||||
if Index + 1 >= ValueLength:
|
||||
break
|
||||
#
|
||||
# Set string value one by one
|
||||
#
|
||||
ByteList[ValueOffset + Index] = ord(ByteString)
|
||||
Index = Index + 1
|
||||
#
|
||||
# Update new data into input file.
|
||||
#
|
||||
if ByteList != OrigByteList:
|
||||
ByteArray = array.array('B')
|
||||
ByteArray.fromlist(ByteList)
|
||||
FileHandle = open (FileName, 'wb')
|
||||
ByteArray.tofile(FileHandle)
|
||||
FileHandle.close()
|
||||
return 0, "Patch Value into File %s successfully." %(FileName)
|
||||
|
||||
## Parse command line options
|
||||
#
|
||||
# Using standard Python module optparse to parse command line option of this tool.
|
||||
#
|
||||
# @retval Options A optparse.Values object containing the parsed options
|
||||
# @retval InputFile Path of file to be trimmed
|
||||
#
|
||||
def Options():
|
||||
OptionList = [
|
||||
make_option("-f", "--offset", dest="PcdOffset", action="store", type="int",
|
||||
help="Start offset to the image is used to store PCD value."),
|
||||
make_option("-u", "--value", dest="PcdValue", action="store",
|
||||
help="PCD value will be updated into the image."),
|
||||
make_option("-t", "--type", dest="PcdTypeName", action="store",
|
||||
help="The name of PCD data type may be one of VOID*,BOOLEAN, UINT8, UINT16, UINT32, UINT64."),
|
||||
make_option("-s", "--maxsize", dest="PcdMaxSize", action="store", type="int",
|
||||
help="Max size of data buffer is taken by PCD value.It must be set when PCD type is VOID*."),
|
||||
make_option("-v", "--verbose", dest="LogLevel", action="store_const", const=EdkLogger.VERBOSE,
|
||||
help="Run verbosely"),
|
||||
make_option("-d", "--debug", dest="LogLevel", type="int",
|
||||
help="Run with debug information"),
|
||||
make_option("-q", "--quiet", dest="LogLevel", action="store_const", const=EdkLogger.QUIET,
|
||||
help="Run quietly"),
|
||||
make_option("-?", action="help", help="show this help message and exit"),
|
||||
]
|
||||
|
||||
# use clearer usage to override default usage message
|
||||
UsageString = "%prog -f Offset -u Value -t Type [-s MaxSize] <input_file>"
|
||||
|
||||
Parser = OptionParser(description=__copyright__, version=__version__, option_list=OptionList, usage=UsageString)
|
||||
Parser.set_defaults(LogLevel=EdkLogger.INFO)
|
||||
|
||||
Options, Args = Parser.parse_args()
|
||||
|
||||
# error check
|
||||
if len(Args) == 0:
|
||||
EdkLogger.error("PatchPcdValue", PARAMETER_INVALID, ExtraData=Parser.get_usage())
|
||||
|
||||
InputFile = Args[len(Args) - 1]
|
||||
return Options, InputFile
|
||||
|
||||
## Entrance method
|
||||
#
|
||||
# This method mainly dispatch specific methods per the command line options.
|
||||
# If no error found, return zero value so the caller of this tool can know
|
||||
# if it's executed successfully or not.
|
||||
#
|
||||
# @retval 0 Tool was successful
|
||||
# @retval 1 Tool failed
|
||||
#
|
||||
def Main():
|
||||
try:
|
||||
#
|
||||
# Check input parameter
|
||||
#
|
||||
EdkLogger.Initialize()
|
||||
CommandOptions, InputFile = Options()
|
||||
if CommandOptions.LogLevel < EdkLogger.DEBUG_9:
|
||||
EdkLogger.SetLevel(CommandOptions.LogLevel + 1)
|
||||
else:
|
||||
EdkLogger.SetLevel(CommandOptions.LogLevel)
|
||||
if not os.path.exists (InputFile):
|
||||
EdkLogger.error("PatchPcdValue", FILE_NOT_FOUND, ExtraData=InputFile)
|
||||
return 1
|
||||
if CommandOptions.PcdOffset == None or CommandOptions.PcdValue == None or CommandOptions.PcdTypeName == None:
|
||||
EdkLogger.error("PatchPcdValue", OPTION_MISSING, ExtraData="PcdOffset or PcdValue of PcdTypeName is not specified.")
|
||||
return 1
|
||||
if CommandOptions.PcdTypeName.upper() not in ["BOOLEAN", "UINT8", "UINT16", "UINT32", "UINT64", "VOID*"]:
|
||||
EdkLogger.error("PatchPcdValue", PARAMETER_INVALID, ExtraData="PCD type %s is not valid." %(CommandOptions.PcdTypeName))
|
||||
return 1
|
||||
if CommandOptions.PcdTypeName.upper() == "VOID*" and CommandOptions.PcdMaxSize == None:
|
||||
EdkLogger.error("PatchPcdValue", OPTION_MISSING, ExtraData="PcdMaxSize is not specified for VOID* type PCD.")
|
||||
return 1
|
||||
#
|
||||
# Patch value into binary image.
|
||||
#
|
||||
ReturnValue, ErrorInfo = PatchBinaryFile (InputFile, CommandOptions.PcdOffset, CommandOptions.PcdTypeName, CommandOptions.PcdValue, CommandOptions.PcdMaxSize)
|
||||
if ReturnValue != 0:
|
||||
EdkLogger.error("PatchPcdValue", ReturnValue, ExtraData=ErrorInfo)
|
||||
return 1
|
||||
return 0
|
||||
except:
|
||||
return 1
|
||||
|
||||
if __name__ == '__main__':
|
||||
r = Main()
|
||||
sys.exit(r)
|
||||
## @file
|
||||
# Patch value into the binary file.
|
||||
#
|
||||
# Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import sys
|
||||
import re
|
||||
|
||||
from optparse import OptionParser
|
||||
from optparse import make_option
|
||||
from Common.BuildToolError import *
|
||||
import Common.EdkLogger as EdkLogger
|
||||
from Common.BuildVersion import gBUILD_VERSION
|
||||
import array
|
||||
|
||||
# Version and Copyright
|
||||
__version_number__ = ("0.10" + " " + gBUILD_VERSION)
|
||||
__version__ = "%prog Version " + __version_number__
|
||||
__copyright__ = "Copyright (c) 2010, Intel Corporation. All rights reserved."
|
||||
|
||||
## PatchBinaryFile method
|
||||
#
|
||||
# This method mainly patches the data into binary file.
|
||||
#
|
||||
# @param FileName File path of the binary file
|
||||
# @param ValueOffset Offset value
|
||||
# @param TypeName DataType Name
|
||||
# @param Value Value String
|
||||
# @param MaxSize MaxSize value
|
||||
#
|
||||
# @retval 0 File is updated successfully.
|
||||
# @retval not 0 File is updated failed.
|
||||
#
|
||||
def PatchBinaryFile(FileName, ValueOffset, TypeName, ValueString, MaxSize=0):
|
||||
#
|
||||
# Length of Binary File
|
||||
#
|
||||
FileHandle = open (FileName, 'rb')
|
||||
FileHandle.seek (0, 2)
|
||||
FileLength = FileHandle.tell()
|
||||
FileHandle.close()
|
||||
#
|
||||
# Unify string to upper string
|
||||
#
|
||||
TypeName = TypeName.upper()
|
||||
#
|
||||
# Get PCD value data length
|
||||
#
|
||||
ValueLength = 0
|
||||
if TypeName == 'BOOLEAN':
|
||||
ValueLength = 1
|
||||
elif TypeName == 'UINT8':
|
||||
ValueLength = 1
|
||||
elif TypeName == 'UINT16':
|
||||
ValueLength = 2
|
||||
elif TypeName == 'UINT32':
|
||||
ValueLength = 4
|
||||
elif TypeName == 'UINT64':
|
||||
ValueLength = 8
|
||||
elif TypeName == 'VOID*':
|
||||
if MaxSize == 0:
|
||||
return OPTION_MISSING, "PcdMaxSize is not specified for VOID* type PCD."
|
||||
ValueLength = int(MaxSize)
|
||||
else:
|
||||
return PARAMETER_INVALID, "PCD type %s is not valid." %(CommandOptions.PcdTypeName)
|
||||
#
|
||||
# Check PcdValue is in the input binary file.
|
||||
#
|
||||
if ValueOffset + ValueLength > FileLength:
|
||||
return PARAMETER_INVALID, "PcdOffset + PcdMaxSize(DataType) is larger than the input file size."
|
||||
#
|
||||
# Read binary file into array
|
||||
#
|
||||
FileHandle = open (FileName, 'rb')
|
||||
ByteArray = array.array('B')
|
||||
ByteArray.fromfile(FileHandle, FileLength)
|
||||
FileHandle.close()
|
||||
OrigByteList = ByteArray.tolist()
|
||||
ByteList = ByteArray.tolist()
|
||||
#
|
||||
# Clear the data in file
|
||||
#
|
||||
for Index in range(ValueLength):
|
||||
ByteList[ValueOffset + Index] = 0
|
||||
#
|
||||
# Patch value into offset
|
||||
#
|
||||
SavedStr = ValueString
|
||||
ValueString = ValueString.upper()
|
||||
ValueNumber = 0
|
||||
if TypeName == 'BOOLEAN':
|
||||
#
|
||||
# Get PCD value for BOOLEAN data type
|
||||
#
|
||||
try:
|
||||
if ValueString == 'TRUE':
|
||||
ValueNumber = 1
|
||||
elif ValueString == 'FALSE':
|
||||
ValueNumber = 0
|
||||
elif ValueString.startswith('0X'):
|
||||
ValueNumber = int (ValueString, 16)
|
||||
else:
|
||||
ValueNumber = int (ValueString)
|
||||
if ValueNumber != 0:
|
||||
ValueNumber = 1
|
||||
except:
|
||||
return PARAMETER_INVALID, "PCD Value %s is not valid dec or hex string." %(ValueString)
|
||||
#
|
||||
# Set PCD value into binary data
|
||||
#
|
||||
ByteList[ValueOffset] = ValueNumber
|
||||
elif TypeName in ['UINT8', 'UINT16', 'UINT32', 'UINT64']:
|
||||
#
|
||||
# Get PCD value for UINT* data type
|
||||
#
|
||||
try:
|
||||
if ValueString.startswith('0X'):
|
||||
ValueNumber = int (ValueString, 16)
|
||||
else:
|
||||
ValueNumber = int (ValueString)
|
||||
except:
|
||||
return PARAMETER_INVALID, "PCD Value %s is not valid dec or hex string." %(ValueString)
|
||||
#
|
||||
# Set PCD value into binary data
|
||||
#
|
||||
for Index in range(ValueLength):
|
||||
ByteList[ValueOffset + Index] = ValueNumber % 0x100
|
||||
ValueNumber = ValueNumber / 0x100
|
||||
elif TypeName == 'VOID*':
|
||||
ValueString = SavedStr
|
||||
if ValueString.startswith('L"'):
|
||||
#
|
||||
# Patch Unicode String
|
||||
#
|
||||
Index = 0
|
||||
for ByteString in ValueString[2:-1]:
|
||||
#
|
||||
# Reserve zero as unicode tail
|
||||
#
|
||||
if Index + 2 >= ValueLength:
|
||||
break
|
||||
#
|
||||
# Set string value one by one
|
||||
#
|
||||
ByteList[ValueOffset + Index] = ord(ByteString)
|
||||
Index = Index + 2
|
||||
elif ValueString.startswith("{") and ValueString.endswith("}"):
|
||||
#
|
||||
# Patch {0x1, 0x2, ...} byte by byte
|
||||
#
|
||||
ValueList = ValueString[1 : len(ValueString) - 1].split(', ')
|
||||
Index = 0
|
||||
try:
|
||||
for ByteString in ValueList:
|
||||
if ByteString.upper().startswith('0X'):
|
||||
ByteValue = int(ByteString, 16)
|
||||
else:
|
||||
ByteValue = int(ByteString)
|
||||
ByteList[ValueOffset + Index] = ByteValue % 0x100
|
||||
Index = Index + 1
|
||||
if Index >= ValueLength:
|
||||
break
|
||||
except:
|
||||
return PARAMETER_INVALID, "PCD Value %s is not valid dec or hex string array." %(ValueString)
|
||||
else:
|
||||
#
|
||||
# Patch ascii string
|
||||
#
|
||||
Index = 0
|
||||
for ByteString in ValueString[1:-1]:
|
||||
#
|
||||
# Reserve zero as string tail
|
||||
#
|
||||
if Index + 1 >= ValueLength:
|
||||
break
|
||||
#
|
||||
# Set string value one by one
|
||||
#
|
||||
ByteList[ValueOffset + Index] = ord(ByteString)
|
||||
Index = Index + 1
|
||||
#
|
||||
# Update new data into input file.
|
||||
#
|
||||
if ByteList != OrigByteList:
|
||||
ByteArray = array.array('B')
|
||||
ByteArray.fromlist(ByteList)
|
||||
FileHandle = open (FileName, 'wb')
|
||||
ByteArray.tofile(FileHandle)
|
||||
FileHandle.close()
|
||||
return 0, "Patch Value into File %s successfully." %(FileName)
|
||||
|
||||
## Parse command line options
|
||||
#
|
||||
# Using standard Python module optparse to parse command line option of this tool.
|
||||
#
|
||||
# @retval Options A optparse.Values object containing the parsed options
|
||||
# @retval InputFile Path of file to be trimmed
|
||||
#
|
||||
def Options():
|
||||
OptionList = [
|
||||
make_option("-f", "--offset", dest="PcdOffset", action="store", type="int",
|
||||
help="Start offset to the image is used to store PCD value."),
|
||||
make_option("-u", "--value", dest="PcdValue", action="store",
|
||||
help="PCD value will be updated into the image."),
|
||||
make_option("-t", "--type", dest="PcdTypeName", action="store",
|
||||
help="The name of PCD data type may be one of VOID*,BOOLEAN, UINT8, UINT16, UINT32, UINT64."),
|
||||
make_option("-s", "--maxsize", dest="PcdMaxSize", action="store", type="int",
|
||||
help="Max size of data buffer is taken by PCD value.It must be set when PCD type is VOID*."),
|
||||
make_option("-v", "--verbose", dest="LogLevel", action="store_const", const=EdkLogger.VERBOSE,
|
||||
help="Run verbosely"),
|
||||
make_option("-d", "--debug", dest="LogLevel", type="int",
|
||||
help="Run with debug information"),
|
||||
make_option("-q", "--quiet", dest="LogLevel", action="store_const", const=EdkLogger.QUIET,
|
||||
help="Run quietly"),
|
||||
make_option("-?", action="help", help="show this help message and exit"),
|
||||
]
|
||||
|
||||
# use clearer usage to override default usage message
|
||||
UsageString = "%prog -f Offset -u Value -t Type [-s MaxSize] <input_file>"
|
||||
|
||||
Parser = OptionParser(description=__copyright__, version=__version__, option_list=OptionList, usage=UsageString)
|
||||
Parser.set_defaults(LogLevel=EdkLogger.INFO)
|
||||
|
||||
Options, Args = Parser.parse_args()
|
||||
|
||||
# error check
|
||||
if len(Args) == 0:
|
||||
EdkLogger.error("PatchPcdValue", PARAMETER_INVALID, ExtraData=Parser.get_usage())
|
||||
|
||||
InputFile = Args[len(Args) - 1]
|
||||
return Options, InputFile
|
||||
|
||||
## Entrance method
|
||||
#
|
||||
# This method mainly dispatch specific methods per the command line options.
|
||||
# If no error found, return zero value so the caller of this tool can know
|
||||
# if it's executed successfully or not.
|
||||
#
|
||||
# @retval 0 Tool was successful
|
||||
# @retval 1 Tool failed
|
||||
#
|
||||
def Main():
|
||||
try:
|
||||
#
|
||||
# Check input parameter
|
||||
#
|
||||
EdkLogger.Initialize()
|
||||
CommandOptions, InputFile = Options()
|
||||
if CommandOptions.LogLevel < EdkLogger.DEBUG_9:
|
||||
EdkLogger.SetLevel(CommandOptions.LogLevel + 1)
|
||||
else:
|
||||
EdkLogger.SetLevel(CommandOptions.LogLevel)
|
||||
if not os.path.exists (InputFile):
|
||||
EdkLogger.error("PatchPcdValue", FILE_NOT_FOUND, ExtraData=InputFile)
|
||||
return 1
|
||||
if CommandOptions.PcdOffset == None or CommandOptions.PcdValue == None or CommandOptions.PcdTypeName == None:
|
||||
EdkLogger.error("PatchPcdValue", OPTION_MISSING, ExtraData="PcdOffset or PcdValue of PcdTypeName is not specified.")
|
||||
return 1
|
||||
if CommandOptions.PcdTypeName.upper() not in ["BOOLEAN", "UINT8", "UINT16", "UINT32", "UINT64", "VOID*"]:
|
||||
EdkLogger.error("PatchPcdValue", PARAMETER_INVALID, ExtraData="PCD type %s is not valid." %(CommandOptions.PcdTypeName))
|
||||
return 1
|
||||
if CommandOptions.PcdTypeName.upper() == "VOID*" and CommandOptions.PcdMaxSize == None:
|
||||
EdkLogger.error("PatchPcdValue", OPTION_MISSING, ExtraData="PcdMaxSize is not specified for VOID* type PCD.")
|
||||
return 1
|
||||
#
|
||||
# Patch value into binary image.
|
||||
#
|
||||
ReturnValue, ErrorInfo = PatchBinaryFile (InputFile, CommandOptions.PcdOffset, CommandOptions.PcdTypeName, CommandOptions.PcdValue, CommandOptions.PcdMaxSize)
|
||||
if ReturnValue != 0:
|
||||
EdkLogger.error("PatchPcdValue", ReturnValue, ExtraData=ErrorInfo)
|
||||
return 1
|
||||
return 0
|
||||
except:
|
||||
return 1
|
||||
|
||||
if __name__ == '__main__':
|
||||
r = Main()
|
||||
sys.exit(r)
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -17,4 +17,4 @@
|
||||
Build version information
|
||||
'''
|
||||
|
||||
gBUILD_VERSION = "Build 2640"
|
||||
gBUILD_VERSION = "Build 2649"
|
||||
|
@ -1,20 +1,20 @@
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Core init file
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Core init file
|
||||
'''
|
@ -1,20 +1,20 @@
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
GenMetaFile
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
GenMetaFile
|
||||
'''
|
@ -93,7 +93,7 @@ class _ExprBase:
|
||||
|
||||
## IsCurrentOp
|
||||
#
|
||||
# @param OpList: option list
|
||||
# @param OpList: option list
|
||||
#
|
||||
def IsCurrentOp(self, OpList):
|
||||
self.SkipWhitespace()
|
||||
|
@ -1,99 +1,99 @@
|
||||
## @file
|
||||
# This file is used to define common static strings and global data used by UPT
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
'''
|
||||
GlobalData
|
||||
'''
|
||||
|
||||
#
|
||||
# The workspace directory
|
||||
#
|
||||
gWORKSPACE = '.'
|
||||
|
||||
#
|
||||
# INF module directory
|
||||
#
|
||||
gINF_MODULE_DIR = "."
|
||||
gINF_MODULE_NAME = ''
|
||||
|
||||
#
|
||||
# the directory to holds upt related files
|
||||
#
|
||||
gUPT_DIR = r"Conf/upt/"
|
||||
|
||||
#
|
||||
# Log file for invalid meta-data files during force removing
|
||||
#
|
||||
gINVALID_MODULE_FILE = gUPT_DIR + r"Invalid_Modules.log"
|
||||
|
||||
#
|
||||
# File name for content zip file in the distribution
|
||||
#
|
||||
gCONTENT_FILE = "dist.content"
|
||||
|
||||
#
|
||||
# File name for XML file in the distibution
|
||||
#
|
||||
gDESC_FILE = 'dist.pkg'
|
||||
|
||||
#
|
||||
# Case Insensitive flag
|
||||
#
|
||||
gCASE_INSENSITIVE = ''
|
||||
|
||||
#
|
||||
# All Files dictionary
|
||||
#
|
||||
gALL_FILES = {}
|
||||
|
||||
#
|
||||
# Database instance
|
||||
#
|
||||
gDB = None
|
||||
|
||||
#
|
||||
# list for files that are found in module level but not in INF files,
|
||||
# items are (File, ModulePath), all these should be relative to $(WORKSPACE)
|
||||
#
|
||||
gMISS_FILE_IN_MODLIST = []
|
||||
|
||||
#
|
||||
# Global Current Line
|
||||
#
|
||||
gINF_CURRENT_LINE = None
|
||||
|
||||
#
|
||||
# Global pkg list
|
||||
#
|
||||
gWSPKG_LIST = []
|
||||
|
||||
#
|
||||
# Flag used to take WARN as ERROR.
|
||||
# By default, only ERROR message will break the tools execution.
|
||||
#
|
||||
gWARNING_AS_ERROR = False
|
||||
|
||||
#
|
||||
# Used to specify the temp directory to hold the unpacked distribution files
|
||||
#
|
||||
gUNPACK_DIR = None
|
||||
|
||||
#
|
||||
# Flag used to mark whether the INF file is Binary INF or not.
|
||||
#
|
||||
gIS_BINARY_INF = False
|
||||
#
|
||||
# Used by Library instance parser
|
||||
# {FilePath: FileObj}
|
||||
#
|
||||
## @file
|
||||
# This file is used to define common static strings and global data used by UPT
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
'''
|
||||
GlobalData
|
||||
'''
|
||||
|
||||
#
|
||||
# The workspace directory
|
||||
#
|
||||
gWORKSPACE = '.'
|
||||
|
||||
#
|
||||
# INF module directory
|
||||
#
|
||||
gINF_MODULE_DIR = "."
|
||||
gINF_MODULE_NAME = ''
|
||||
|
||||
#
|
||||
# the directory to holds upt related files
|
||||
#
|
||||
gUPT_DIR = r"Conf/upt/"
|
||||
|
||||
#
|
||||
# Log file for invalid meta-data files during force removing
|
||||
#
|
||||
gINVALID_MODULE_FILE = gUPT_DIR + r"Invalid_Modules.log"
|
||||
|
||||
#
|
||||
# File name for content zip file in the distribution
|
||||
#
|
||||
gCONTENT_FILE = "dist.content"
|
||||
|
||||
#
|
||||
# File name for XML file in the distibution
|
||||
#
|
||||
gDESC_FILE = 'dist.pkg'
|
||||
|
||||
#
|
||||
# Case Insensitive flag
|
||||
#
|
||||
gCASE_INSENSITIVE = ''
|
||||
|
||||
#
|
||||
# All Files dictionary
|
||||
#
|
||||
gALL_FILES = {}
|
||||
|
||||
#
|
||||
# Database instance
|
||||
#
|
||||
gDB = None
|
||||
|
||||
#
|
||||
# list for files that are found in module level but not in INF files,
|
||||
# items are (File, ModulePath), all these should be relative to $(WORKSPACE)
|
||||
#
|
||||
gMISS_FILE_IN_MODLIST = []
|
||||
|
||||
#
|
||||
# Global Current Line
|
||||
#
|
||||
gINF_CURRENT_LINE = None
|
||||
|
||||
#
|
||||
# Global pkg list
|
||||
#
|
||||
gWSPKG_LIST = []
|
||||
|
||||
#
|
||||
# Flag used to take WARN as ERROR.
|
||||
# By default, only ERROR message will break the tools execution.
|
||||
#
|
||||
gWARNING_AS_ERROR = False
|
||||
|
||||
#
|
||||
# Used to specify the temp directory to hold the unpacked distribution files
|
||||
#
|
||||
gUNPACK_DIR = None
|
||||
|
||||
#
|
||||
# Flag used to mark whether the INF file is Binary INF or not.
|
||||
#
|
||||
gIS_BINARY_INF = False
|
||||
#
|
||||
# Used by Library instance parser
|
||||
# {FilePath: FileObj}
|
||||
#
|
||||
gLIBINSTANCEDICT = {}
|
File diff suppressed because it is too large
Load Diff
@ -1,20 +1,20 @@
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Xml
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Xml
|
||||
'''
|
@ -1,20 +1,20 @@
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Library
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Library
|
||||
'''
|
@ -1,325 +1,325 @@
|
||||
## @file
|
||||
# This file implements the log mechanism for Python tools.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Logger
|
||||
'''
|
||||
|
||||
## Import modules
|
||||
from sys import argv
|
||||
from sys import stdout
|
||||
from sys import stderr
|
||||
import os.path
|
||||
from os import remove
|
||||
from logging import getLogger
|
||||
from logging import Formatter
|
||||
from logging import StreamHandler
|
||||
from logging import FileHandler
|
||||
from traceback import extract_stack
|
||||
|
||||
from Logger.ToolError import FatalError
|
||||
from Logger.ToolError import WARNING_AS_ERROR
|
||||
from Logger.ToolError import gERROR_MESSAGE
|
||||
from Logger.ToolError import UNKNOWN_ERROR
|
||||
from Library import GlobalData
|
||||
|
||||
#
|
||||
# Log level constants
|
||||
#
|
||||
DEBUG_0 = 1
|
||||
DEBUG_1 = 2
|
||||
DEBUG_2 = 3
|
||||
DEBUG_3 = 4
|
||||
DEBUG_4 = 5
|
||||
DEBUG_5 = 6
|
||||
DEBUG_6 = 7
|
||||
DEBUG_7 = 8
|
||||
DEBUG_8 = 9
|
||||
DEBUG_9 = 10
|
||||
VERBOSE = 15
|
||||
INFO = 20
|
||||
WARN = 30
|
||||
QUIET = 40
|
||||
QUIET_1 = 41
|
||||
ERROR = 50
|
||||
SILENT = 60
|
||||
|
||||
IS_RAISE_ERROR = True
|
||||
SUPRESS_ERROR = False
|
||||
|
||||
#
|
||||
# Tool name
|
||||
#
|
||||
_TOOL_NAME = os.path.basename(argv[0])
|
||||
#
|
||||
# For validation purpose
|
||||
#
|
||||
_LOG_LEVELS = [DEBUG_0, DEBUG_1, DEBUG_2, DEBUG_3, DEBUG_4, DEBUG_5, DEBUG_6, \
|
||||
DEBUG_7, DEBUG_8, DEBUG_9, VERBOSE, WARN, INFO, ERROR, QUIET, \
|
||||
QUIET_1, SILENT]
|
||||
#
|
||||
# For DEBUG level (All DEBUG_0~9 are applicable)
|
||||
#
|
||||
_DEBUG_LOGGER = getLogger("tool_debug")
|
||||
_DEBUG_FORMATTER = Formatter("[%(asctime)s.%(msecs)d]: %(message)s", \
|
||||
datefmt="%H:%M:%S")
|
||||
#
|
||||
# For VERBOSE, INFO, WARN level
|
||||
#
|
||||
_INFO_LOGGER = getLogger("tool_info")
|
||||
_INFO_FORMATTER = Formatter("%(message)s")
|
||||
#
|
||||
# For ERROR level
|
||||
#
|
||||
_ERROR_LOGGER = getLogger("tool_error")
|
||||
_ERROR_FORMATTER = Formatter("%(message)s")
|
||||
|
||||
#
|
||||
# String templates for ERROR/WARN/DEBUG log message
|
||||
#
|
||||
_ERROR_MESSAGE_TEMPLATE = \
|
||||
('\n\n%(tool)s...\n%(file)s(%(line)s): error %(errorcode)04X: %(msg)s\n\t%(extra)s')
|
||||
|
||||
__ERROR_MESSAGE_TEMPLATE_WITHOUT_FILE = \
|
||||
'\n\n%(tool)s...\n : error %(errorcode)04X: %(msg)s\n\t%(extra)s'
|
||||
|
||||
_WARNING_MESSAGE_TEMPLATE = '%(tool)s...\n%(file)s(%(line)s): warning: %(msg)s'
|
||||
_WARNING_MESSAGE_TEMPLATE_WITHOUT_FILE = '%(tool)s: : warning: %(msg)s'
|
||||
_DEBUG_MESSAGE_TEMPLATE = '%(file)s(%(line)s): debug: \n %(msg)s'
|
||||
|
||||
|
||||
#
|
||||
# Log INFO message
|
||||
#
|
||||
#Info = _INFO_LOGGER.info
|
||||
|
||||
def Info(msg, *args, **kwargs):
|
||||
_INFO_LOGGER.info(msg, *args, **kwargs)
|
||||
|
||||
#
|
||||
# Log information which should be always put out
|
||||
#
|
||||
def Quiet(msg, *args, **kwargs):
|
||||
_ERROR_LOGGER.error(msg, *args, **kwargs)
|
||||
|
||||
## Log debug message
|
||||
#
|
||||
# @param Level DEBUG level (DEBUG0~9)
|
||||
# @param Message Debug information
|
||||
# @param ExtraData More information associated with "Message"
|
||||
#
|
||||
def Debug(Level, Message, ExtraData=None):
|
||||
if _DEBUG_LOGGER.level > Level:
|
||||
return
|
||||
if Level > DEBUG_9:
|
||||
return
|
||||
#
|
||||
# Find out the caller method information
|
||||
#
|
||||
CallerStack = extract_stack()[-2]
|
||||
TemplateDict = {
|
||||
"file" : CallerStack[0],
|
||||
"line" : CallerStack[1],
|
||||
"msg" : Message,
|
||||
}
|
||||
|
||||
if ExtraData != None:
|
||||
LogText = _DEBUG_MESSAGE_TEMPLATE % TemplateDict + "\n %s" % ExtraData
|
||||
else:
|
||||
LogText = _DEBUG_MESSAGE_TEMPLATE % TemplateDict
|
||||
|
||||
_DEBUG_LOGGER.log(Level, LogText)
|
||||
|
||||
## Log verbose message
|
||||
#
|
||||
# @param Message Verbose information
|
||||
#
|
||||
def Verbose(Message):
|
||||
return _INFO_LOGGER.log(VERBOSE, Message)
|
||||
|
||||
## Log warning message
|
||||
#
|
||||
# Warning messages are those which might be wrong but won't fail the tool.
|
||||
#
|
||||
# @param ToolName The name of the tool. If not given, the name of caller
|
||||
# method will be used.
|
||||
# @param Message Warning information
|
||||
# @param File The name of file which caused the warning.
|
||||
# @param Line The line number in the "File" which caused the warning.
|
||||
# @param ExtraData More information associated with "Message"
|
||||
#
|
||||
def Warn(ToolName, Message, File=None, Line=None, ExtraData=None):
|
||||
if _INFO_LOGGER.level > WARN:
|
||||
return
|
||||
#
|
||||
# if no tool name given, use caller's source file name as tool name
|
||||
#
|
||||
if ToolName == None or ToolName == "":
|
||||
ToolName = os.path.basename(extract_stack()[-2][0])
|
||||
|
||||
if Line == None:
|
||||
Line = "..."
|
||||
else:
|
||||
Line = "%d" % Line
|
||||
|
||||
TemplateDict = {
|
||||
"tool" : ToolName,
|
||||
"file" : File,
|
||||
"line" : Line,
|
||||
"msg" : Message,
|
||||
}
|
||||
|
||||
if File != None:
|
||||
LogText = _WARNING_MESSAGE_TEMPLATE % TemplateDict
|
||||
else:
|
||||
LogText = _WARNING_MESSAGE_TEMPLATE_WITHOUT_FILE % TemplateDict
|
||||
|
||||
if ExtraData != None:
|
||||
LogText += "\n %s" % ExtraData
|
||||
|
||||
_INFO_LOGGER.log(WARN, LogText)
|
||||
#
|
||||
# Raise an execption if indicated
|
||||
#
|
||||
if GlobalData.gWARNING_AS_ERROR == True:
|
||||
raise FatalError(WARNING_AS_ERROR)
|
||||
|
||||
## Log ERROR message
|
||||
#
|
||||
# Once an error messages is logged, the tool's execution will be broken by
|
||||
# raising an execption. If you don't want to break the execution later, you
|
||||
# can give "RaiseError" with "False" value.
|
||||
#
|
||||
# @param ToolName The name of the tool. If not given, the name of caller
|
||||
# method will be used.
|
||||
# @param ErrorCode The error code
|
||||
# @param Message Warning information
|
||||
# @param File The name of file which caused the error.
|
||||
# @param Line The line number in the "File" which caused the warning.
|
||||
# @param ExtraData More information associated with "Message"
|
||||
# @param RaiseError Raise an exception to break the tool's executuion if
|
||||
# it's True. This is the default behavior.
|
||||
#
|
||||
def Error(ToolName, ErrorCode, Message=None, File=None, Line=None, \
|
||||
ExtraData=None, RaiseError=IS_RAISE_ERROR):
|
||||
if ToolName:
|
||||
pass
|
||||
if Line == None:
|
||||
Line = "..."
|
||||
else:
|
||||
Line = "%d" % Line
|
||||
|
||||
if Message == None:
|
||||
if ErrorCode in gERROR_MESSAGE:
|
||||
Message = gERROR_MESSAGE[ErrorCode]
|
||||
else:
|
||||
Message = gERROR_MESSAGE[UNKNOWN_ERROR]
|
||||
|
||||
if ExtraData == None:
|
||||
ExtraData = ""
|
||||
|
||||
TemplateDict = {
|
||||
"tool" : _TOOL_NAME,
|
||||
"file" : File,
|
||||
"line" : Line,
|
||||
"errorcode" : ErrorCode,
|
||||
"msg" : Message,
|
||||
"extra" : ExtraData
|
||||
}
|
||||
|
||||
if File != None:
|
||||
LogText = _ERROR_MESSAGE_TEMPLATE % TemplateDict
|
||||
else:
|
||||
LogText = __ERROR_MESSAGE_TEMPLATE_WITHOUT_FILE % TemplateDict
|
||||
|
||||
if not SUPRESS_ERROR:
|
||||
_ERROR_LOGGER.log(ERROR, LogText)
|
||||
if RaiseError:
|
||||
raise FatalError(ErrorCode)
|
||||
|
||||
|
||||
## Initialize log system
|
||||
#
|
||||
def Initialize():
|
||||
#
|
||||
# Since we use different format to log different levels of message into
|
||||
# different place (stdout or stderr), we have to use different "Logger"
|
||||
# objects to do this.
|
||||
#
|
||||
# For DEBUG level (All DEBUG_0~9 are applicable)
|
||||
_DEBUG_LOGGER.setLevel(INFO)
|
||||
_DebugChannel = StreamHandler(stdout)
|
||||
_DebugChannel.setFormatter(_DEBUG_FORMATTER)
|
||||
_DEBUG_LOGGER.addHandler(_DebugChannel)
|
||||
#
|
||||
# For VERBOSE, INFO, WARN level
|
||||
#
|
||||
_INFO_LOGGER.setLevel(INFO)
|
||||
_InfoChannel = StreamHandler(stdout)
|
||||
_InfoChannel.setFormatter(_INFO_FORMATTER)
|
||||
_INFO_LOGGER.addHandler(_InfoChannel)
|
||||
#
|
||||
# For ERROR level
|
||||
#
|
||||
_ERROR_LOGGER.setLevel(INFO)
|
||||
_ErrorCh = StreamHandler(stderr)
|
||||
_ErrorCh.setFormatter(_ERROR_FORMATTER)
|
||||
_ERROR_LOGGER.addHandler(_ErrorCh)
|
||||
|
||||
|
||||
## Set log level
|
||||
#
|
||||
# @param Level One of log level in _LogLevel
|
||||
#
|
||||
def SetLevel(Level):
|
||||
if Level not in _LOG_LEVELS:
|
||||
Info("Not supported log level (%d). Use default level instead." % \
|
||||
Level)
|
||||
Level = INFO
|
||||
_DEBUG_LOGGER.setLevel(Level)
|
||||
_INFO_LOGGER.setLevel(Level)
|
||||
_ERROR_LOGGER.setLevel(Level)
|
||||
|
||||
## Get current log level
|
||||
#
|
||||
def GetLevel():
|
||||
return _INFO_LOGGER.getEffectiveLevel()
|
||||
|
||||
## Raise up warning as error
|
||||
#
|
||||
def SetWarningAsError():
|
||||
GlobalData.gWARNING_AS_ERROR = True
|
||||
|
||||
## Specify a file to store the log message as well as put on console
|
||||
#
|
||||
# @param LogFile The file path used to store the log message
|
||||
#
|
||||
def SetLogFile(LogFile):
|
||||
if os.path.exists(LogFile):
|
||||
remove(LogFile)
|
||||
|
||||
_Ch = FileHandler(LogFile)
|
||||
_Ch.setFormatter(_DEBUG_FORMATTER)
|
||||
_DEBUG_LOGGER.addHandler(_Ch)
|
||||
|
||||
_Ch = FileHandler(LogFile)
|
||||
_Ch.setFormatter(_INFO_FORMATTER)
|
||||
_INFO_LOGGER.addHandler(_Ch)
|
||||
|
||||
_Ch = FileHandler(LogFile)
|
||||
_Ch.setFormatter(_ERROR_FORMATTER)
|
||||
_ERROR_LOGGER.addHandler(_Ch)
|
||||
|
||||
|
||||
|
||||
## @file
|
||||
# This file implements the log mechanism for Python tools.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Logger
|
||||
'''
|
||||
|
||||
## Import modules
|
||||
from sys import argv
|
||||
from sys import stdout
|
||||
from sys import stderr
|
||||
import os.path
|
||||
from os import remove
|
||||
from logging import getLogger
|
||||
from logging import Formatter
|
||||
from logging import StreamHandler
|
||||
from logging import FileHandler
|
||||
from traceback import extract_stack
|
||||
|
||||
from Logger.ToolError import FatalError
|
||||
from Logger.ToolError import WARNING_AS_ERROR
|
||||
from Logger.ToolError import gERROR_MESSAGE
|
||||
from Logger.ToolError import UNKNOWN_ERROR
|
||||
from Library import GlobalData
|
||||
|
||||
#
|
||||
# Log level constants
|
||||
#
|
||||
DEBUG_0 = 1
|
||||
DEBUG_1 = 2
|
||||
DEBUG_2 = 3
|
||||
DEBUG_3 = 4
|
||||
DEBUG_4 = 5
|
||||
DEBUG_5 = 6
|
||||
DEBUG_6 = 7
|
||||
DEBUG_7 = 8
|
||||
DEBUG_8 = 9
|
||||
DEBUG_9 = 10
|
||||
VERBOSE = 15
|
||||
INFO = 20
|
||||
WARN = 30
|
||||
QUIET = 40
|
||||
QUIET_1 = 41
|
||||
ERROR = 50
|
||||
SILENT = 60
|
||||
|
||||
IS_RAISE_ERROR = True
|
||||
SUPRESS_ERROR = False
|
||||
|
||||
#
|
||||
# Tool name
|
||||
#
|
||||
_TOOL_NAME = os.path.basename(argv[0])
|
||||
#
|
||||
# For validation purpose
|
||||
#
|
||||
_LOG_LEVELS = [DEBUG_0, DEBUG_1, DEBUG_2, DEBUG_3, DEBUG_4, DEBUG_5, DEBUG_6, \
|
||||
DEBUG_7, DEBUG_8, DEBUG_9, VERBOSE, WARN, INFO, ERROR, QUIET, \
|
||||
QUIET_1, SILENT]
|
||||
#
|
||||
# For DEBUG level (All DEBUG_0~9 are applicable)
|
||||
#
|
||||
_DEBUG_LOGGER = getLogger("tool_debug")
|
||||
_DEBUG_FORMATTER = Formatter("[%(asctime)s.%(msecs)d]: %(message)s", \
|
||||
datefmt="%H:%M:%S")
|
||||
#
|
||||
# For VERBOSE, INFO, WARN level
|
||||
#
|
||||
_INFO_LOGGER = getLogger("tool_info")
|
||||
_INFO_FORMATTER = Formatter("%(message)s")
|
||||
#
|
||||
# For ERROR level
|
||||
#
|
||||
_ERROR_LOGGER = getLogger("tool_error")
|
||||
_ERROR_FORMATTER = Formatter("%(message)s")
|
||||
|
||||
#
|
||||
# String templates for ERROR/WARN/DEBUG log message
|
||||
#
|
||||
_ERROR_MESSAGE_TEMPLATE = \
|
||||
('\n\n%(tool)s...\n%(file)s(%(line)s): error %(errorcode)04X: %(msg)s\n\t%(extra)s')
|
||||
|
||||
__ERROR_MESSAGE_TEMPLATE_WITHOUT_FILE = \
|
||||
'\n\n%(tool)s...\n : error %(errorcode)04X: %(msg)s\n\t%(extra)s'
|
||||
|
||||
_WARNING_MESSAGE_TEMPLATE = '%(tool)s...\n%(file)s(%(line)s): warning: %(msg)s'
|
||||
_WARNING_MESSAGE_TEMPLATE_WITHOUT_FILE = '%(tool)s: : warning: %(msg)s'
|
||||
_DEBUG_MESSAGE_TEMPLATE = '%(file)s(%(line)s): debug: \n %(msg)s'
|
||||
|
||||
|
||||
#
|
||||
# Log INFO message
|
||||
#
|
||||
#Info = _INFO_LOGGER.info
|
||||
|
||||
def Info(msg, *args, **kwargs):
|
||||
_INFO_LOGGER.info(msg, *args, **kwargs)
|
||||
|
||||
#
|
||||
# Log information which should be always put out
|
||||
#
|
||||
def Quiet(msg, *args, **kwargs):
|
||||
_ERROR_LOGGER.error(msg, *args, **kwargs)
|
||||
|
||||
## Log debug message
|
||||
#
|
||||
# @param Level DEBUG level (DEBUG0~9)
|
||||
# @param Message Debug information
|
||||
# @param ExtraData More information associated with "Message"
|
||||
#
|
||||
def Debug(Level, Message, ExtraData=None):
|
||||
if _DEBUG_LOGGER.level > Level:
|
||||
return
|
||||
if Level > DEBUG_9:
|
||||
return
|
||||
#
|
||||
# Find out the caller method information
|
||||
#
|
||||
CallerStack = extract_stack()[-2]
|
||||
TemplateDict = {
|
||||
"file" : CallerStack[0],
|
||||
"line" : CallerStack[1],
|
||||
"msg" : Message,
|
||||
}
|
||||
|
||||
if ExtraData != None:
|
||||
LogText = _DEBUG_MESSAGE_TEMPLATE % TemplateDict + "\n %s" % ExtraData
|
||||
else:
|
||||
LogText = _DEBUG_MESSAGE_TEMPLATE % TemplateDict
|
||||
|
||||
_DEBUG_LOGGER.log(Level, LogText)
|
||||
|
||||
## Log verbose message
|
||||
#
|
||||
# @param Message Verbose information
|
||||
#
|
||||
def Verbose(Message):
|
||||
return _INFO_LOGGER.log(VERBOSE, Message)
|
||||
|
||||
## Log warning message
|
||||
#
|
||||
# Warning messages are those which might be wrong but won't fail the tool.
|
||||
#
|
||||
# @param ToolName The name of the tool. If not given, the name of caller
|
||||
# method will be used.
|
||||
# @param Message Warning information
|
||||
# @param File The name of file which caused the warning.
|
||||
# @param Line The line number in the "File" which caused the warning.
|
||||
# @param ExtraData More information associated with "Message"
|
||||
#
|
||||
def Warn(ToolName, Message, File=None, Line=None, ExtraData=None):
|
||||
if _INFO_LOGGER.level > WARN:
|
||||
return
|
||||
#
|
||||
# if no tool name given, use caller's source file name as tool name
|
||||
#
|
||||
if ToolName == None or ToolName == "":
|
||||
ToolName = os.path.basename(extract_stack()[-2][0])
|
||||
|
||||
if Line == None:
|
||||
Line = "..."
|
||||
else:
|
||||
Line = "%d" % Line
|
||||
|
||||
TemplateDict = {
|
||||
"tool" : ToolName,
|
||||
"file" : File,
|
||||
"line" : Line,
|
||||
"msg" : Message,
|
||||
}
|
||||
|
||||
if File != None:
|
||||
LogText = _WARNING_MESSAGE_TEMPLATE % TemplateDict
|
||||
else:
|
||||
LogText = _WARNING_MESSAGE_TEMPLATE_WITHOUT_FILE % TemplateDict
|
||||
|
||||
if ExtraData != None:
|
||||
LogText += "\n %s" % ExtraData
|
||||
|
||||
_INFO_LOGGER.log(WARN, LogText)
|
||||
#
|
||||
# Raise an execption if indicated
|
||||
#
|
||||
if GlobalData.gWARNING_AS_ERROR == True:
|
||||
raise FatalError(WARNING_AS_ERROR)
|
||||
|
||||
## Log ERROR message
|
||||
#
|
||||
# Once an error messages is logged, the tool's execution will be broken by
|
||||
# raising an execption. If you don't want to break the execution later, you
|
||||
# can give "RaiseError" with "False" value.
|
||||
#
|
||||
# @param ToolName The name of the tool. If not given, the name of caller
|
||||
# method will be used.
|
||||
# @param ErrorCode The error code
|
||||
# @param Message Warning information
|
||||
# @param File The name of file which caused the error.
|
||||
# @param Line The line number in the "File" which caused the warning.
|
||||
# @param ExtraData More information associated with "Message"
|
||||
# @param RaiseError Raise an exception to break the tool's executuion if
|
||||
# it's True. This is the default behavior.
|
||||
#
|
||||
def Error(ToolName, ErrorCode, Message=None, File=None, Line=None, \
|
||||
ExtraData=None, RaiseError=IS_RAISE_ERROR):
|
||||
if ToolName:
|
||||
pass
|
||||
if Line == None:
|
||||
Line = "..."
|
||||
else:
|
||||
Line = "%d" % Line
|
||||
|
||||
if Message == None:
|
||||
if ErrorCode in gERROR_MESSAGE:
|
||||
Message = gERROR_MESSAGE[ErrorCode]
|
||||
else:
|
||||
Message = gERROR_MESSAGE[UNKNOWN_ERROR]
|
||||
|
||||
if ExtraData == None:
|
||||
ExtraData = ""
|
||||
|
||||
TemplateDict = {
|
||||
"tool" : _TOOL_NAME,
|
||||
"file" : File,
|
||||
"line" : Line,
|
||||
"errorcode" : ErrorCode,
|
||||
"msg" : Message,
|
||||
"extra" : ExtraData
|
||||
}
|
||||
|
||||
if File != None:
|
||||
LogText = _ERROR_MESSAGE_TEMPLATE % TemplateDict
|
||||
else:
|
||||
LogText = __ERROR_MESSAGE_TEMPLATE_WITHOUT_FILE % TemplateDict
|
||||
|
||||
if not SUPRESS_ERROR:
|
||||
_ERROR_LOGGER.log(ERROR, LogText)
|
||||
if RaiseError:
|
||||
raise FatalError(ErrorCode)
|
||||
|
||||
|
||||
## Initialize log system
|
||||
#
|
||||
def Initialize():
|
||||
#
|
||||
# Since we use different format to log different levels of message into
|
||||
# different place (stdout or stderr), we have to use different "Logger"
|
||||
# objects to do this.
|
||||
#
|
||||
# For DEBUG level (All DEBUG_0~9 are applicable)
|
||||
_DEBUG_LOGGER.setLevel(INFO)
|
||||
_DebugChannel = StreamHandler(stdout)
|
||||
_DebugChannel.setFormatter(_DEBUG_FORMATTER)
|
||||
_DEBUG_LOGGER.addHandler(_DebugChannel)
|
||||
#
|
||||
# For VERBOSE, INFO, WARN level
|
||||
#
|
||||
_INFO_LOGGER.setLevel(INFO)
|
||||
_InfoChannel = StreamHandler(stdout)
|
||||
_InfoChannel.setFormatter(_INFO_FORMATTER)
|
||||
_INFO_LOGGER.addHandler(_InfoChannel)
|
||||
#
|
||||
# For ERROR level
|
||||
#
|
||||
_ERROR_LOGGER.setLevel(INFO)
|
||||
_ErrorCh = StreamHandler(stderr)
|
||||
_ErrorCh.setFormatter(_ERROR_FORMATTER)
|
||||
_ERROR_LOGGER.addHandler(_ErrorCh)
|
||||
|
||||
|
||||
## Set log level
|
||||
#
|
||||
# @param Level One of log level in _LogLevel
|
||||
#
|
||||
def SetLevel(Level):
|
||||
if Level not in _LOG_LEVELS:
|
||||
Info("Not supported log level (%d). Use default level instead." % \
|
||||
Level)
|
||||
Level = INFO
|
||||
_DEBUG_LOGGER.setLevel(Level)
|
||||
_INFO_LOGGER.setLevel(Level)
|
||||
_ERROR_LOGGER.setLevel(Level)
|
||||
|
||||
## Get current log level
|
||||
#
|
||||
def GetLevel():
|
||||
return _INFO_LOGGER.getEffectiveLevel()
|
||||
|
||||
## Raise up warning as error
|
||||
#
|
||||
def SetWarningAsError():
|
||||
GlobalData.gWARNING_AS_ERROR = True
|
||||
|
||||
## Specify a file to store the log message as well as put on console
|
||||
#
|
||||
# @param LogFile The file path used to store the log message
|
||||
#
|
||||
def SetLogFile(LogFile):
|
||||
if os.path.exists(LogFile):
|
||||
remove(LogFile)
|
||||
|
||||
_Ch = FileHandler(LogFile)
|
||||
_Ch.setFormatter(_DEBUG_FORMATTER)
|
||||
_DEBUG_LOGGER.addHandler(_Ch)
|
||||
|
||||
_Ch = FileHandler(LogFile)
|
||||
_Ch.setFormatter(_INFO_FORMATTER)
|
||||
_INFO_LOGGER.addHandler(_Ch)
|
||||
|
||||
_Ch = FileHandler(LogFile)
|
||||
_Ch.setFormatter(_ERROR_FORMATTER)
|
||||
_ERROR_LOGGER.addHandler(_Ch)
|
||||
|
||||
|
||||
|
||||
|
@ -1,177 +1,177 @@
|
||||
## @file
|
||||
# Standardized Error Hanlding infrastructures.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
ToolError
|
||||
'''
|
||||
|
||||
import Logger.StringTable as ST
|
||||
|
||||
FILE_OPEN_FAILURE = 1
|
||||
FILE_WRITE_FAILURE = 2
|
||||
FILE_PARSE_FAILURE = 3
|
||||
FILE_READ_FAILURE = 4
|
||||
FILE_CREATE_FAILURE = 5
|
||||
FILE_CHECKSUM_FAILURE = 6
|
||||
FILE_COMPRESS_FAILURE = 7
|
||||
FILE_DECOMPRESS_FAILURE = 8
|
||||
FILE_MOVE_FAILURE = 9
|
||||
FILE_DELETE_FAILURE = 10
|
||||
FILE_COPY_FAILURE = 11
|
||||
FILE_POSITIONING_FAILURE = 12
|
||||
FILE_ALREADY_EXIST = 13
|
||||
FILE_NOT_FOUND = 14
|
||||
FILE_TYPE_MISMATCH = 15
|
||||
FILE_CASE_MISMATCH = 16
|
||||
FILE_DUPLICATED = 17
|
||||
FILE_UNKNOWN_ERROR = 0x0FFF
|
||||
|
||||
OPTION_UNKNOWN = 0x1000
|
||||
OPTION_MISSING = 0x1001
|
||||
OPTION_CONFLICT = 0x1002
|
||||
OPTION_VALUE_INVALID = 0x1003
|
||||
OPTION_DEPRECATED = 0x1004
|
||||
OPTION_NOT_SUPPORTED = 0x1005
|
||||
OPTION_UNKNOWN_ERROR = 0x1FFF
|
||||
|
||||
PARAMETER_INVALID = 0x2000
|
||||
PARAMETER_MISSING = 0x2001
|
||||
PARAMETER_UNKNOWN_ERROR = 0x2FFF
|
||||
|
||||
FORMAT_INVALID = 0x3000
|
||||
FORMAT_NOT_SUPPORTED = 0x3001
|
||||
FORMAT_UNKNOWN = 0x3002
|
||||
FORMAT_UNKNOWN_ERROR = 0x3FFF
|
||||
|
||||
RESOURCE_NOT_AVAILABLE = 0x4000
|
||||
RESOURCE_ALLOCATE_FAILURE = 0x4001
|
||||
RESOURCE_FULL = 0x4002
|
||||
RESOURCE_OVERFLOW = 0x4003
|
||||
RESOURCE_UNDERRUN = 0x4004
|
||||
RESOURCE_UNKNOWN_ERROR = 0x4FFF
|
||||
|
||||
ATTRIBUTE_NOT_AVAILABLE = 0x5000
|
||||
ATTRIBUTE_GET_FAILURE = 0x5001
|
||||
ATTRIBUTE_SET_FAILURE = 0x5002
|
||||
ATTRIBUTE_UPDATE_FAILURE = 0x5003
|
||||
ATTRIBUTE_ACCESS_DENIED = 0x5004
|
||||
ATTRIBUTE_RETRIEVE_FAILURE = 0x5005
|
||||
ATTRIBUTE_UNKNOWN_ERROR = 0x5FFF
|
||||
ATTRIBUTE_RETRIEVE_FAILURE = 0x5F00
|
||||
|
||||
IO_NOT_READY = 0x6000
|
||||
IO_BUSY = 0x6001
|
||||
IO_TIMEOUT = 0x6002
|
||||
IO_UNKNOWN_ERROR = 0x6FFF
|
||||
|
||||
COMMAND_FAILURE = 0x7000
|
||||
|
||||
CODE_ERROR = 0xC0DE
|
||||
|
||||
AUTOGEN_ERROR = 0xF000
|
||||
PARSER_ERROR = 0xF001
|
||||
BUILD_ERROR = 0xF002
|
||||
GENFDS_ERROR = 0xF003
|
||||
ECC_ERROR = 0xF004
|
||||
EOT_ERROR = 0xF005
|
||||
DDC_ERROR = 0xF009
|
||||
WARNING_AS_ERROR = 0xF006
|
||||
MIGRATION_ERROR = 0xF010
|
||||
EDK1_INF_ERROR = 0xF011
|
||||
ABORT_ERROR = 0xFFFE
|
||||
UNKNOWN_ERROR = 0xFFFF
|
||||
|
||||
UPT_ALREADY_INSTALLED_ERROR = 0xD000
|
||||
UPT_ENVIRON_MISSING_ERROR = 0xD001
|
||||
UPT_REPKG_ERROR = 0xD002
|
||||
UPT_ALREADY_RUNNING_ERROR = 0xD003
|
||||
UPT_MUL_DEC_ERROR = 0xD004
|
||||
UPT_DB_UPDATE_ERROR = 0xD005
|
||||
UPT_INI_PARSE_ERROR = 0xE000
|
||||
|
||||
## Error message of each error code
|
||||
#
|
||||
gERROR_MESSAGE = {
|
||||
FILE_NOT_FOUND : ST.ERR_FILE_NOT_FOUND,
|
||||
FILE_OPEN_FAILURE : ST.ERR_FILE_OPEN_FAILURE,
|
||||
FILE_WRITE_FAILURE : ST.ERR_FILE_WRITE_FAILURE,
|
||||
FILE_PARSE_FAILURE : ST.ERR_FILE_PARSE_FAILURE,
|
||||
FILE_READ_FAILURE : ST.ERR_FILE_READ_FAILURE,
|
||||
FILE_CREATE_FAILURE : ST.ERR_FILE_CREATE_FAILURE,
|
||||
FILE_CHECKSUM_FAILURE : ST.ERR_FILE_CHECKSUM_FAILURE,
|
||||
FILE_COMPRESS_FAILURE : ST.ERR_FILE_COMPRESS_FAILURE,
|
||||
FILE_DECOMPRESS_FAILURE : ST.ERR_FILE_DECOMPRESS_FAILURE,
|
||||
FILE_MOVE_FAILURE : ST.ERR_FILE_MOVE_FAILURE,
|
||||
FILE_DELETE_FAILURE : ST.ERR_FILE_DELETE_FAILURE,
|
||||
FILE_COPY_FAILURE : ST.ERR_FILE_COPY_FAILURE,
|
||||
FILE_POSITIONING_FAILURE: ST.ERR_FILE_POSITIONING_FAILURE,
|
||||
FILE_ALREADY_EXIST : ST.ERR_FILE_ALREADY_EXIST,
|
||||
FILE_TYPE_MISMATCH : ST.ERR_FILE_TYPE_MISMATCH ,
|
||||
FILE_CASE_MISMATCH : ST.ERR_FILE_CASE_MISMATCH,
|
||||
FILE_DUPLICATED : ST.ERR_FILE_DUPLICATED,
|
||||
FILE_UNKNOWN_ERROR : ST.ERR_FILE_UNKNOWN_ERROR,
|
||||
|
||||
OPTION_UNKNOWN : ST.ERR_OPTION_UNKNOWN,
|
||||
OPTION_MISSING : ST.ERR_OPTION_MISSING,
|
||||
OPTION_CONFLICT : ST.ERR_OPTION_CONFLICT,
|
||||
OPTION_VALUE_INVALID : ST.ERR_OPTION_VALUE_INVALID,
|
||||
OPTION_DEPRECATED : ST.ERR_OPTION_DEPRECATED,
|
||||
OPTION_NOT_SUPPORTED : ST.ERR_OPTION_NOT_SUPPORTED,
|
||||
OPTION_UNKNOWN_ERROR : ST.ERR_OPTION_UNKNOWN_ERROR,
|
||||
|
||||
PARAMETER_INVALID : ST.ERR_PARAMETER_INVALID,
|
||||
PARAMETER_MISSING : ST.ERR_PARAMETER_MISSING,
|
||||
PARAMETER_UNKNOWN_ERROR : ST.ERR_PARAMETER_UNKNOWN_ERROR,
|
||||
|
||||
FORMAT_INVALID : ST.ERR_FORMAT_INVALID,
|
||||
FORMAT_NOT_SUPPORTED : ST.ERR_FORMAT_NOT_SUPPORTED,
|
||||
FORMAT_UNKNOWN : ST.ERR_FORMAT_UNKNOWN,
|
||||
FORMAT_UNKNOWN_ERROR : ST.ERR_FORMAT_UNKNOWN_ERROR,
|
||||
|
||||
RESOURCE_NOT_AVAILABLE : ST.ERR_RESOURCE_NOT_AVAILABLE,
|
||||
RESOURCE_ALLOCATE_FAILURE : ST.ERR_RESOURCE_ALLOCATE_FAILURE,
|
||||
RESOURCE_FULL : ST.ERR_RESOURCE_FULL,
|
||||
RESOURCE_OVERFLOW : ST.ERR_RESOURCE_OVERFLOW,
|
||||
RESOURCE_UNDERRUN : ST.ERR_RESOURCE_UNDERRUN,
|
||||
RESOURCE_UNKNOWN_ERROR : ST.ERR_RESOURCE_UNKNOWN_ERROR,
|
||||
|
||||
ATTRIBUTE_NOT_AVAILABLE : ST.ERR_ATTRIBUTE_NOT_AVAILABLE,
|
||||
ATTRIBUTE_RETRIEVE_FAILURE : ST.ERR_ATTRIBUTE_RETRIEVE_FAILURE,
|
||||
ATTRIBUTE_SET_FAILURE : ST.ERR_ATTRIBUTE_SET_FAILURE,
|
||||
ATTRIBUTE_UPDATE_FAILURE: ST.ERR_ATTRIBUTE_UPDATE_FAILURE,
|
||||
ATTRIBUTE_ACCESS_DENIED : ST.ERR_ATTRIBUTE_ACCESS_DENIED,
|
||||
ATTRIBUTE_UNKNOWN_ERROR : ST.ERR_ATTRIBUTE_UNKNOWN_ERROR,
|
||||
|
||||
COMMAND_FAILURE : ST.ERR_COMMAND_FAILURE,
|
||||
|
||||
IO_NOT_READY : ST.ERR_IO_NOT_READY,
|
||||
IO_BUSY : ST.ERR_IO_BUSY,
|
||||
IO_TIMEOUT : ST.ERR_IO_TIMEOUT,
|
||||
IO_UNKNOWN_ERROR : ST.ERR_IO_UNKNOWN_ERROR,
|
||||
|
||||
UNKNOWN_ERROR : ST.ERR_UNKNOWN_ERROR,
|
||||
|
||||
UPT_ALREADY_INSTALLED_ERROR : ST.ERR_UPT_ALREADY_INSTALLED_ERROR,
|
||||
UPT_ENVIRON_MISSING_ERROR : ST.ERR_UPT_ENVIRON_MISSING_ERROR,
|
||||
UPT_REPKG_ERROR : ST.ERR_UPT_REPKG_ERROR,
|
||||
UPT_ALREADY_RUNNING_ERROR : ST.ERR_UPT_ALREADY_RUNNING_ERROR,
|
||||
UPT_MUL_DEC_ERROR : ST.ERR_MUL_DEC_ERROR,
|
||||
UPT_INI_PARSE_ERROR : ST.ERR_UPT_INI_PARSE_ERROR,
|
||||
}
|
||||
|
||||
## Exception indicating a fatal error
|
||||
#
|
||||
class FatalError(Exception):
|
||||
pass
|
||||
|
||||
## @file
|
||||
# Standardized Error Hanlding infrastructures.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
ToolError
|
||||
'''
|
||||
|
||||
import Logger.StringTable as ST
|
||||
|
||||
FILE_OPEN_FAILURE = 1
|
||||
FILE_WRITE_FAILURE = 2
|
||||
FILE_PARSE_FAILURE = 3
|
||||
FILE_READ_FAILURE = 4
|
||||
FILE_CREATE_FAILURE = 5
|
||||
FILE_CHECKSUM_FAILURE = 6
|
||||
FILE_COMPRESS_FAILURE = 7
|
||||
FILE_DECOMPRESS_FAILURE = 8
|
||||
FILE_MOVE_FAILURE = 9
|
||||
FILE_DELETE_FAILURE = 10
|
||||
FILE_COPY_FAILURE = 11
|
||||
FILE_POSITIONING_FAILURE = 12
|
||||
FILE_ALREADY_EXIST = 13
|
||||
FILE_NOT_FOUND = 14
|
||||
FILE_TYPE_MISMATCH = 15
|
||||
FILE_CASE_MISMATCH = 16
|
||||
FILE_DUPLICATED = 17
|
||||
FILE_UNKNOWN_ERROR = 0x0FFF
|
||||
|
||||
OPTION_UNKNOWN = 0x1000
|
||||
OPTION_MISSING = 0x1001
|
||||
OPTION_CONFLICT = 0x1002
|
||||
OPTION_VALUE_INVALID = 0x1003
|
||||
OPTION_DEPRECATED = 0x1004
|
||||
OPTION_NOT_SUPPORTED = 0x1005
|
||||
OPTION_UNKNOWN_ERROR = 0x1FFF
|
||||
|
||||
PARAMETER_INVALID = 0x2000
|
||||
PARAMETER_MISSING = 0x2001
|
||||
PARAMETER_UNKNOWN_ERROR = 0x2FFF
|
||||
|
||||
FORMAT_INVALID = 0x3000
|
||||
FORMAT_NOT_SUPPORTED = 0x3001
|
||||
FORMAT_UNKNOWN = 0x3002
|
||||
FORMAT_UNKNOWN_ERROR = 0x3FFF
|
||||
|
||||
RESOURCE_NOT_AVAILABLE = 0x4000
|
||||
RESOURCE_ALLOCATE_FAILURE = 0x4001
|
||||
RESOURCE_FULL = 0x4002
|
||||
RESOURCE_OVERFLOW = 0x4003
|
||||
RESOURCE_UNDERRUN = 0x4004
|
||||
RESOURCE_UNKNOWN_ERROR = 0x4FFF
|
||||
|
||||
ATTRIBUTE_NOT_AVAILABLE = 0x5000
|
||||
ATTRIBUTE_GET_FAILURE = 0x5001
|
||||
ATTRIBUTE_SET_FAILURE = 0x5002
|
||||
ATTRIBUTE_UPDATE_FAILURE = 0x5003
|
||||
ATTRIBUTE_ACCESS_DENIED = 0x5004
|
||||
ATTRIBUTE_RETRIEVE_FAILURE = 0x5005
|
||||
ATTRIBUTE_UNKNOWN_ERROR = 0x5FFF
|
||||
ATTRIBUTE_RETRIEVE_FAILURE = 0x5F00
|
||||
|
||||
IO_NOT_READY = 0x6000
|
||||
IO_BUSY = 0x6001
|
||||
IO_TIMEOUT = 0x6002
|
||||
IO_UNKNOWN_ERROR = 0x6FFF
|
||||
|
||||
COMMAND_FAILURE = 0x7000
|
||||
|
||||
CODE_ERROR = 0xC0DE
|
||||
|
||||
AUTOGEN_ERROR = 0xF000
|
||||
PARSER_ERROR = 0xF001
|
||||
BUILD_ERROR = 0xF002
|
||||
GENFDS_ERROR = 0xF003
|
||||
ECC_ERROR = 0xF004
|
||||
EOT_ERROR = 0xF005
|
||||
DDC_ERROR = 0xF009
|
||||
WARNING_AS_ERROR = 0xF006
|
||||
MIGRATION_ERROR = 0xF010
|
||||
EDK1_INF_ERROR = 0xF011
|
||||
ABORT_ERROR = 0xFFFE
|
||||
UNKNOWN_ERROR = 0xFFFF
|
||||
|
||||
UPT_ALREADY_INSTALLED_ERROR = 0xD000
|
||||
UPT_ENVIRON_MISSING_ERROR = 0xD001
|
||||
UPT_REPKG_ERROR = 0xD002
|
||||
UPT_ALREADY_RUNNING_ERROR = 0xD003
|
||||
UPT_MUL_DEC_ERROR = 0xD004
|
||||
UPT_DB_UPDATE_ERROR = 0xD005
|
||||
UPT_INI_PARSE_ERROR = 0xE000
|
||||
|
||||
## Error message of each error code
|
||||
#
|
||||
gERROR_MESSAGE = {
|
||||
FILE_NOT_FOUND : ST.ERR_FILE_NOT_FOUND,
|
||||
FILE_OPEN_FAILURE : ST.ERR_FILE_OPEN_FAILURE,
|
||||
FILE_WRITE_FAILURE : ST.ERR_FILE_WRITE_FAILURE,
|
||||
FILE_PARSE_FAILURE : ST.ERR_FILE_PARSE_FAILURE,
|
||||
FILE_READ_FAILURE : ST.ERR_FILE_READ_FAILURE,
|
||||
FILE_CREATE_FAILURE : ST.ERR_FILE_CREATE_FAILURE,
|
||||
FILE_CHECKSUM_FAILURE : ST.ERR_FILE_CHECKSUM_FAILURE,
|
||||
FILE_COMPRESS_FAILURE : ST.ERR_FILE_COMPRESS_FAILURE,
|
||||
FILE_DECOMPRESS_FAILURE : ST.ERR_FILE_DECOMPRESS_FAILURE,
|
||||
FILE_MOVE_FAILURE : ST.ERR_FILE_MOVE_FAILURE,
|
||||
FILE_DELETE_FAILURE : ST.ERR_FILE_DELETE_FAILURE,
|
||||
FILE_COPY_FAILURE : ST.ERR_FILE_COPY_FAILURE,
|
||||
FILE_POSITIONING_FAILURE: ST.ERR_FILE_POSITIONING_FAILURE,
|
||||
FILE_ALREADY_EXIST : ST.ERR_FILE_ALREADY_EXIST,
|
||||
FILE_TYPE_MISMATCH : ST.ERR_FILE_TYPE_MISMATCH ,
|
||||
FILE_CASE_MISMATCH : ST.ERR_FILE_CASE_MISMATCH,
|
||||
FILE_DUPLICATED : ST.ERR_FILE_DUPLICATED,
|
||||
FILE_UNKNOWN_ERROR : ST.ERR_FILE_UNKNOWN_ERROR,
|
||||
|
||||
OPTION_UNKNOWN : ST.ERR_OPTION_UNKNOWN,
|
||||
OPTION_MISSING : ST.ERR_OPTION_MISSING,
|
||||
OPTION_CONFLICT : ST.ERR_OPTION_CONFLICT,
|
||||
OPTION_VALUE_INVALID : ST.ERR_OPTION_VALUE_INVALID,
|
||||
OPTION_DEPRECATED : ST.ERR_OPTION_DEPRECATED,
|
||||
OPTION_NOT_SUPPORTED : ST.ERR_OPTION_NOT_SUPPORTED,
|
||||
OPTION_UNKNOWN_ERROR : ST.ERR_OPTION_UNKNOWN_ERROR,
|
||||
|
||||
PARAMETER_INVALID : ST.ERR_PARAMETER_INVALID,
|
||||
PARAMETER_MISSING : ST.ERR_PARAMETER_MISSING,
|
||||
PARAMETER_UNKNOWN_ERROR : ST.ERR_PARAMETER_UNKNOWN_ERROR,
|
||||
|
||||
FORMAT_INVALID : ST.ERR_FORMAT_INVALID,
|
||||
FORMAT_NOT_SUPPORTED : ST.ERR_FORMAT_NOT_SUPPORTED,
|
||||
FORMAT_UNKNOWN : ST.ERR_FORMAT_UNKNOWN,
|
||||
FORMAT_UNKNOWN_ERROR : ST.ERR_FORMAT_UNKNOWN_ERROR,
|
||||
|
||||
RESOURCE_NOT_AVAILABLE : ST.ERR_RESOURCE_NOT_AVAILABLE,
|
||||
RESOURCE_ALLOCATE_FAILURE : ST.ERR_RESOURCE_ALLOCATE_FAILURE,
|
||||
RESOURCE_FULL : ST.ERR_RESOURCE_FULL,
|
||||
RESOURCE_OVERFLOW : ST.ERR_RESOURCE_OVERFLOW,
|
||||
RESOURCE_UNDERRUN : ST.ERR_RESOURCE_UNDERRUN,
|
||||
RESOURCE_UNKNOWN_ERROR : ST.ERR_RESOURCE_UNKNOWN_ERROR,
|
||||
|
||||
ATTRIBUTE_NOT_AVAILABLE : ST.ERR_ATTRIBUTE_NOT_AVAILABLE,
|
||||
ATTRIBUTE_RETRIEVE_FAILURE : ST.ERR_ATTRIBUTE_RETRIEVE_FAILURE,
|
||||
ATTRIBUTE_SET_FAILURE : ST.ERR_ATTRIBUTE_SET_FAILURE,
|
||||
ATTRIBUTE_UPDATE_FAILURE: ST.ERR_ATTRIBUTE_UPDATE_FAILURE,
|
||||
ATTRIBUTE_ACCESS_DENIED : ST.ERR_ATTRIBUTE_ACCESS_DENIED,
|
||||
ATTRIBUTE_UNKNOWN_ERROR : ST.ERR_ATTRIBUTE_UNKNOWN_ERROR,
|
||||
|
||||
COMMAND_FAILURE : ST.ERR_COMMAND_FAILURE,
|
||||
|
||||
IO_NOT_READY : ST.ERR_IO_NOT_READY,
|
||||
IO_BUSY : ST.ERR_IO_BUSY,
|
||||
IO_TIMEOUT : ST.ERR_IO_TIMEOUT,
|
||||
IO_UNKNOWN_ERROR : ST.ERR_IO_UNKNOWN_ERROR,
|
||||
|
||||
UNKNOWN_ERROR : ST.ERR_UNKNOWN_ERROR,
|
||||
|
||||
UPT_ALREADY_INSTALLED_ERROR : ST.ERR_UPT_ALREADY_INSTALLED_ERROR,
|
||||
UPT_ENVIRON_MISSING_ERROR : ST.ERR_UPT_ENVIRON_MISSING_ERROR,
|
||||
UPT_REPKG_ERROR : ST.ERR_UPT_REPKG_ERROR,
|
||||
UPT_ALREADY_RUNNING_ERROR : ST.ERR_UPT_ALREADY_RUNNING_ERROR,
|
||||
UPT_MUL_DEC_ERROR : ST.ERR_MUL_DEC_ERROR,
|
||||
UPT_INI_PARSE_ERROR : ST.ERR_UPT_INI_PARSE_ERROR,
|
||||
}
|
||||
|
||||
## Exception indicating a fatal error
|
||||
#
|
||||
class FatalError(Exception):
|
||||
pass
|
||||
|
||||
|
@ -1,20 +1,20 @@
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Xml
|
||||
## @file
|
||||
# Python 'Library' package initialization file.
|
||||
#
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
'''
|
||||
Xml
|
||||
'''
|
File diff suppressed because it is too large
Load Diff
@ -1811,7 +1811,7 @@ class InfBuildData(ModuleBuildClassObject):
|
||||
else:
|
||||
Tool = ToolList[0]
|
||||
ToolChain = "*_*_*_%s_FLAGS" % Tool
|
||||
ToolChainFamily = ''
|
||||
ToolChainFamily = 'MSFT' # Edk.x only support MSFT tool chain
|
||||
#ignore not replaced macros in value
|
||||
ValueList = GetSplitList(' ' + Value, '/D')
|
||||
Dummy = ValueList[0]
|
||||
|
@ -1,19 +1,19 @@
|
||||
#
|
||||
# Copyright (c) 2009 - 2010, Apple Inc. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
import sys
|
||||
import locale
|
||||
|
||||
if sys.platform == "darwin":
|
||||
DefaultLocal = locale.getdefaultlocale()[1]
|
||||
if DefaultLocal is None:
|
||||
DefaultLocal = 'UTF8'
|
||||
sys.setdefaultencoding(DefaultLocal)
|
||||
|
||||
#
|
||||
# Copyright (c) 2009 - 2010, Apple Inc. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
import sys
|
||||
import locale
|
||||
|
||||
if sys.platform == "darwin":
|
||||
DefaultLocal = locale.getdefaultlocale()[1]
|
||||
if DefaultLocal is None:
|
||||
DefaultLocal = 'UTF8'
|
||||
sys.setdefaultencoding(DefaultLocal)
|
||||
|
||||
|
@ -1,35 +1,35 @@
|
||||
## @file
|
||||
# Unit tests for C based BaseTools
|
||||
#
|
||||
# Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
import TianoCompress
|
||||
modules = (
|
||||
TianoCompress,
|
||||
)
|
||||
|
||||
|
||||
def TheTestSuite():
|
||||
suites = map(lambda module: module.TheTestSuite(), modules)
|
||||
return unittest.TestSuite(suites)
|
||||
|
||||
if __name__ == '__main__':
|
||||
allTests = TheTestSuite()
|
||||
unittest.TextTestRunner().run(allTests)
|
||||
|
||||
## @file
|
||||
# Unit tests for C based BaseTools
|
||||
#
|
||||
# Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
import TianoCompress
|
||||
modules = (
|
||||
TianoCompress,
|
||||
)
|
||||
|
||||
|
||||
def TheTestSuite():
|
||||
suites = map(lambda module: module.TheTestSuite(), modules)
|
||||
return unittest.TestSuite(suites)
|
||||
|
||||
if __name__ == '__main__':
|
||||
allTests = TheTestSuite()
|
||||
unittest.TextTestRunner().run(allTests)
|
||||
|
||||
|
@ -1,74 +1,74 @@
|
||||
## @file
|
||||
# Unit tests for checking syntax of Python source code
|
||||
#
|
||||
# Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import unittest
|
||||
import py_compile
|
||||
|
||||
import TestTools
|
||||
|
||||
class Tests(TestTools.BaseToolsTest):
|
||||
|
||||
def setUp(self):
|
||||
TestTools.BaseToolsTest.setUp(self)
|
||||
|
||||
def SingleFileTest(self, filename):
|
||||
try:
|
||||
py_compile.compile(filename, doraise=True)
|
||||
except Exception, e:
|
||||
self.fail('syntax error: %s, Error is %s' % (filename, str(e)))
|
||||
|
||||
def MakePythonSyntaxCheckTests():
|
||||
def GetAllPythonSourceFiles():
|
||||
pythonSourceFiles = []
|
||||
for (root, dirs, files) in os.walk(TestTools.PythonSourceDir):
|
||||
for filename in files:
|
||||
if filename.lower().endswith('.py'):
|
||||
pythonSourceFiles.append(
|
||||
os.path.join(root, filename)
|
||||
)
|
||||
return pythonSourceFiles
|
||||
|
||||
def MakeTestName(filename):
|
||||
assert filename.lower().endswith('.py')
|
||||
name = filename[:-3]
|
||||
name = name.replace(TestTools.PythonSourceDir, '')
|
||||
name = name.replace(os.path.sep, '_')
|
||||
return 'test' + name
|
||||
|
||||
def MakeNewTest(filename):
|
||||
test = MakeTestName(filename)
|
||||
newmethod = lambda self: self.SingleFileTest(filename)
|
||||
setattr(
|
||||
Tests,
|
||||
test,
|
||||
newmethod
|
||||
)
|
||||
|
||||
for filename in GetAllPythonSourceFiles():
|
||||
MakeNewTest(filename)
|
||||
|
||||
MakePythonSyntaxCheckTests()
|
||||
del MakePythonSyntaxCheckTests
|
||||
|
||||
TheTestSuite = TestTools.MakeTheTestSuite(locals())
|
||||
|
||||
if __name__ == '__main__':
|
||||
allTests = TheTestSuite()
|
||||
unittest.TextTestRunner().run(allTests)
|
||||
|
||||
|
||||
## @file
|
||||
# Unit tests for checking syntax of Python source code
|
||||
#
|
||||
# Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import unittest
|
||||
import py_compile
|
||||
|
||||
import TestTools
|
||||
|
||||
class Tests(TestTools.BaseToolsTest):
|
||||
|
||||
def setUp(self):
|
||||
TestTools.BaseToolsTest.setUp(self)
|
||||
|
||||
def SingleFileTest(self, filename):
|
||||
try:
|
||||
py_compile.compile(filename, doraise=True)
|
||||
except Exception, e:
|
||||
self.fail('syntax error: %s, Error is %s' % (filename, str(e)))
|
||||
|
||||
def MakePythonSyntaxCheckTests():
|
||||
def GetAllPythonSourceFiles():
|
||||
pythonSourceFiles = []
|
||||
for (root, dirs, files) in os.walk(TestTools.PythonSourceDir):
|
||||
for filename in files:
|
||||
if filename.lower().endswith('.py'):
|
||||
pythonSourceFiles.append(
|
||||
os.path.join(root, filename)
|
||||
)
|
||||
return pythonSourceFiles
|
||||
|
||||
def MakeTestName(filename):
|
||||
assert filename.lower().endswith('.py')
|
||||
name = filename[:-3]
|
||||
name = name.replace(TestTools.PythonSourceDir, '')
|
||||
name = name.replace(os.path.sep, '_')
|
||||
return 'test' + name
|
||||
|
||||
def MakeNewTest(filename):
|
||||
test = MakeTestName(filename)
|
||||
newmethod = lambda self: self.SingleFileTest(filename)
|
||||
setattr(
|
||||
Tests,
|
||||
test,
|
||||
newmethod
|
||||
)
|
||||
|
||||
for filename in GetAllPythonSourceFiles():
|
||||
MakeNewTest(filename)
|
||||
|
||||
MakePythonSyntaxCheckTests()
|
||||
del MakePythonSyntaxCheckTests
|
||||
|
||||
TheTestSuite = TestTools.MakeTheTestSuite(locals())
|
||||
|
||||
if __name__ == '__main__':
|
||||
allTests = TheTestSuite()
|
||||
unittest.TextTestRunner().run(allTests)
|
||||
|
||||
|
||||
|
@ -1,32 +1,32 @@
|
||||
## @file
|
||||
# Unit tests for Python based BaseTools
|
||||
#
|
||||
# Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
|
||||
def TheTestSuite():
|
||||
suites = []
|
||||
import CheckPythonSyntax
|
||||
suites.append(CheckPythonSyntax.TheTestSuite())
|
||||
return unittest.TestSuite(suites)
|
||||
|
||||
if __name__ == '__main__':
|
||||
allTests = TheTestSuite()
|
||||
unittest.TextTestRunner().run(allTests)
|
||||
|
||||
## @file
|
||||
# Unit tests for Python based BaseTools
|
||||
#
|
||||
# Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
|
||||
def TheTestSuite():
|
||||
suites = []
|
||||
import CheckPythonSyntax
|
||||
suites.append(CheckPythonSyntax.TheTestSuite())
|
||||
return unittest.TestSuite(suites)
|
||||
|
||||
if __name__ == '__main__':
|
||||
allTests = TheTestSuite()
|
||||
unittest.TextTestRunner().run(allTests)
|
||||
|
||||
|
@ -1,40 +1,40 @@
|
||||
## @file
|
||||
# Unit tests for BaseTools utilities
|
||||
#
|
||||
# Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
import TestTools
|
||||
|
||||
sys.path.append(TestTools.PythonSourceDir)
|
||||
|
||||
def GetCTestSuite():
|
||||
import CToolsTests
|
||||
return CToolsTests.TheTestSuite()
|
||||
|
||||
def GetPythonTestSuite():
|
||||
import PythonToolsTests
|
||||
return PythonToolsTests.TheTestSuite()
|
||||
|
||||
def GetAllTestsSuite():
|
||||
return unittest.TestSuite([GetCTestSuite(), GetPythonTestSuite()])
|
||||
|
||||
if __name__ == '__main__':
|
||||
allTests = GetAllTestsSuite()
|
||||
unittest.TextTestRunner(verbosity=2).run(allTests)
|
||||
|
||||
## @file
|
||||
# Unit tests for BaseTools utilities
|
||||
#
|
||||
# Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
import TestTools
|
||||
|
||||
sys.path.append(TestTools.PythonSourceDir)
|
||||
|
||||
def GetCTestSuite():
|
||||
import CToolsTests
|
||||
return CToolsTests.TheTestSuite()
|
||||
|
||||
def GetPythonTestSuite():
|
||||
import PythonToolsTests
|
||||
return PythonToolsTests.TheTestSuite()
|
||||
|
||||
def GetAllTestsSuite():
|
||||
return unittest.TestSuite([GetCTestSuite(), GetPythonTestSuite()])
|
||||
|
||||
if __name__ == '__main__':
|
||||
allTests = GetAllTestsSuite()
|
||||
unittest.TextTestRunner(verbosity=2).run(allTests)
|
||||
|
||||
|
@ -1,179 +1,179 @@
|
||||
## @file
|
||||
# Utility functions and classes for BaseTools unit tests
|
||||
#
|
||||
# Copyright (c) 2008 - 2012, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import base64
|
||||
import os
|
||||
import os.path
|
||||
import random
|
||||
import shutil
|
||||
import subprocess
|
||||
import sys
|
||||
import types
|
||||
import unittest
|
||||
|
||||
TestsDir = os.path.realpath(os.path.split(sys.argv[0])[0])
|
||||
BaseToolsDir = os.path.realpath(os.path.join(TestsDir, '..'))
|
||||
CSourceDir = os.path.join(BaseToolsDir, 'Source', 'C')
|
||||
PythonSourceDir = os.path.join(BaseToolsDir, 'Source', 'Python')
|
||||
TestTempDir = os.path.join(TestsDir, 'TestTempDir')
|
||||
|
||||
def MakeTheTestSuite(localItems):
|
||||
tests = []
|
||||
for name, item in localItems.iteritems():
|
||||
if isinstance(item, types.TypeType):
|
||||
if issubclass(item, unittest.TestCase):
|
||||
tests.append(unittest.TestLoader().loadTestsFromTestCase(item))
|
||||
elif issubclass(item, unittest.TestSuite):
|
||||
tests.append(item())
|
||||
return lambda: unittest.TestSuite(tests)
|
||||
|
||||
def GetBaseToolsPaths():
|
||||
if sys.platform in ('win32', 'win64'):
|
||||
return [ os.path.join(BaseToolsDir, 'Bin', sys.platform.title()) ]
|
||||
else:
|
||||
uname = os.popen('uname -sm').read().strip()
|
||||
for char in (' ', '/'):
|
||||
uname = uname.replace(char, '-')
|
||||
return [
|
||||
os.path.join(BaseToolsDir, 'Bin', uname),
|
||||
os.path.join(BaseToolsDir, 'BinWrappers', uname),
|
||||
os.path.join(BaseToolsDir, 'BinWrappers', 'PosixLike')
|
||||
]
|
||||
|
||||
BaseToolsBinPaths = GetBaseToolsPaths()
|
||||
|
||||
class BaseToolsTest(unittest.TestCase):
|
||||
|
||||
def cleanOutDir(self, dir):
|
||||
for dirItem in os.listdir(dir):
|
||||
if dirItem in ('.', '..'): continue
|
||||
dirItem = os.path.join(dir, dirItem)
|
||||
self.RemoveFileOrDir(dirItem)
|
||||
|
||||
def CleanUpTmpDir(self):
|
||||
if os.path.exists(self.testDir):
|
||||
self.cleanOutDir(self.testDir)
|
||||
|
||||
def HandleTreeDeleteError(self, function, path, excinfo):
|
||||
os.chmod(path, stat.S_IWRITE)
|
||||
function(path)
|
||||
|
||||
def RemoveDir(self, dir):
|
||||
shutil.rmtree(dir, False, self.HandleTreeDeleteError)
|
||||
|
||||
def RemoveFileOrDir(self, path):
|
||||
if not os.path.exists(path):
|
||||
return
|
||||
elif os.path.isdir(path):
|
||||
self.RemoveDir(path)
|
||||
else:
|
||||
os.remove(path)
|
||||
|
||||
def DisplayBinaryData(self, description, data):
|
||||
print description, '(base64 encoded):'
|
||||
b64data = base64.b64encode(data)
|
||||
print b64data
|
||||
|
||||
def DisplayFile(self, fileName):
|
||||
sys.stdout.write(self.ReadTmpFile(fileName))
|
||||
sys.stdout.flush()
|
||||
|
||||
def FindToolBin(self, toolName):
|
||||
for binPath in BaseToolsBinPaths:
|
||||
bin = os.path.join(binPath, toolName)
|
||||
if os.path.exists(bin):
|
||||
break
|
||||
assert os.path.exists(bin)
|
||||
return bin
|
||||
|
||||
def RunTool(self, *args, **kwd):
|
||||
if 'toolName' in kwd: toolName = kwd['toolName']
|
||||
else: toolName = None
|
||||
if 'logFile' in kwd: logFile = kwd['logFile']
|
||||
else: logFile = None
|
||||
|
||||
if toolName is None: toolName = self.toolName
|
||||
bin = self.FindToolBin(toolName)
|
||||
if logFile is not None:
|
||||
logFile = open(os.path.join(self.testDir, logFile), 'w')
|
||||
popenOut = logFile
|
||||
else:
|
||||
popenOut = subprocess.PIPE
|
||||
|
||||
args = [toolName] + list(args)
|
||||
|
||||
Proc = subprocess.Popen(
|
||||
args, executable=bin,
|
||||
stdout=popenOut, stderr=subprocess.STDOUT
|
||||
)
|
||||
|
||||
if logFile is None:
|
||||
Proc.stdout.read()
|
||||
|
||||
return Proc.wait()
|
||||
|
||||
def GetTmpFilePath(self, fileName):
|
||||
return os.path.join(self.testDir, fileName)
|
||||
|
||||
def OpenTmpFile(self, fileName, mode = 'r'):
|
||||
return open(os.path.join(self.testDir, fileName), mode)
|
||||
|
||||
def ReadTmpFile(self, fileName):
|
||||
f = open(self.GetTmpFilePath(fileName), 'r')
|
||||
data = f.read()
|
||||
f.close()
|
||||
return data
|
||||
|
||||
def WriteTmpFile(self, fileName, data):
|
||||
f = open(self.GetTmpFilePath(fileName), 'w')
|
||||
f.write(data)
|
||||
f.close()
|
||||
|
||||
def GenRandomFileData(self, fileName, minlen = None, maxlen = None):
|
||||
if maxlen is None: maxlen = minlen
|
||||
f = self.OpenTmpFile(fileName, 'w')
|
||||
f.write(self.GetRandomString(minlen, maxlen))
|
||||
f.close()
|
||||
|
||||
def GetRandomString(self, minlen = None, maxlen = None):
|
||||
if minlen is None: minlen = 1024
|
||||
if maxlen is None: maxlen = minlen
|
||||
return ''.join(
|
||||
[chr(random.randint(0,255))
|
||||
for x in xrange(random.randint(minlen, maxlen))
|
||||
])
|
||||
|
||||
def setUp(self):
|
||||
self.savedEnvPath = os.environ['PATH']
|
||||
self.savedSysPath = sys.path[:]
|
||||
|
||||
for binPath in BaseToolsBinPaths:
|
||||
os.environ['PATH'] = \
|
||||
os.path.pathsep.join((os.environ['PATH'], binPath))
|
||||
|
||||
self.testDir = TestTempDir
|
||||
if not os.path.exists(self.testDir):
|
||||
os.mkdir(self.testDir)
|
||||
else:
|
||||
self.cleanOutDir(self.testDir)
|
||||
|
||||
def tearDown(self):
|
||||
self.RemoveFileOrDir(self.testDir)
|
||||
|
||||
os.environ['PATH'] = self.savedEnvPath
|
||||
sys.path = self.savedSysPath
|
||||
|
||||
## @file
|
||||
# Utility functions and classes for BaseTools unit tests
|
||||
#
|
||||
# Copyright (c) 2008 - 2012, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import base64
|
||||
import os
|
||||
import os.path
|
||||
import random
|
||||
import shutil
|
||||
import subprocess
|
||||
import sys
|
||||
import types
|
||||
import unittest
|
||||
|
||||
TestsDir = os.path.realpath(os.path.split(sys.argv[0])[0])
|
||||
BaseToolsDir = os.path.realpath(os.path.join(TestsDir, '..'))
|
||||
CSourceDir = os.path.join(BaseToolsDir, 'Source', 'C')
|
||||
PythonSourceDir = os.path.join(BaseToolsDir, 'Source', 'Python')
|
||||
TestTempDir = os.path.join(TestsDir, 'TestTempDir')
|
||||
|
||||
def MakeTheTestSuite(localItems):
|
||||
tests = []
|
||||
for name, item in localItems.iteritems():
|
||||
if isinstance(item, types.TypeType):
|
||||
if issubclass(item, unittest.TestCase):
|
||||
tests.append(unittest.TestLoader().loadTestsFromTestCase(item))
|
||||
elif issubclass(item, unittest.TestSuite):
|
||||
tests.append(item())
|
||||
return lambda: unittest.TestSuite(tests)
|
||||
|
||||
def GetBaseToolsPaths():
|
||||
if sys.platform in ('win32', 'win64'):
|
||||
return [ os.path.join(BaseToolsDir, 'Bin', sys.platform.title()) ]
|
||||
else:
|
||||
uname = os.popen('uname -sm').read().strip()
|
||||
for char in (' ', '/'):
|
||||
uname = uname.replace(char, '-')
|
||||
return [
|
||||
os.path.join(BaseToolsDir, 'Bin', uname),
|
||||
os.path.join(BaseToolsDir, 'BinWrappers', uname),
|
||||
os.path.join(BaseToolsDir, 'BinWrappers', 'PosixLike')
|
||||
]
|
||||
|
||||
BaseToolsBinPaths = GetBaseToolsPaths()
|
||||
|
||||
class BaseToolsTest(unittest.TestCase):
|
||||
|
||||
def cleanOutDir(self, dir):
|
||||
for dirItem in os.listdir(dir):
|
||||
if dirItem in ('.', '..'): continue
|
||||
dirItem = os.path.join(dir, dirItem)
|
||||
self.RemoveFileOrDir(dirItem)
|
||||
|
||||
def CleanUpTmpDir(self):
|
||||
if os.path.exists(self.testDir):
|
||||
self.cleanOutDir(self.testDir)
|
||||
|
||||
def HandleTreeDeleteError(self, function, path, excinfo):
|
||||
os.chmod(path, stat.S_IWRITE)
|
||||
function(path)
|
||||
|
||||
def RemoveDir(self, dir):
|
||||
shutil.rmtree(dir, False, self.HandleTreeDeleteError)
|
||||
|
||||
def RemoveFileOrDir(self, path):
|
||||
if not os.path.exists(path):
|
||||
return
|
||||
elif os.path.isdir(path):
|
||||
self.RemoveDir(path)
|
||||
else:
|
||||
os.remove(path)
|
||||
|
||||
def DisplayBinaryData(self, description, data):
|
||||
print description, '(base64 encoded):'
|
||||
b64data = base64.b64encode(data)
|
||||
print b64data
|
||||
|
||||
def DisplayFile(self, fileName):
|
||||
sys.stdout.write(self.ReadTmpFile(fileName))
|
||||
sys.stdout.flush()
|
||||
|
||||
def FindToolBin(self, toolName):
|
||||
for binPath in BaseToolsBinPaths:
|
||||
bin = os.path.join(binPath, toolName)
|
||||
if os.path.exists(bin):
|
||||
break
|
||||
assert os.path.exists(bin)
|
||||
return bin
|
||||
|
||||
def RunTool(self, *args, **kwd):
|
||||
if 'toolName' in kwd: toolName = kwd['toolName']
|
||||
else: toolName = None
|
||||
if 'logFile' in kwd: logFile = kwd['logFile']
|
||||
else: logFile = None
|
||||
|
||||
if toolName is None: toolName = self.toolName
|
||||
bin = self.FindToolBin(toolName)
|
||||
if logFile is not None:
|
||||
logFile = open(os.path.join(self.testDir, logFile), 'w')
|
||||
popenOut = logFile
|
||||
else:
|
||||
popenOut = subprocess.PIPE
|
||||
|
||||
args = [toolName] + list(args)
|
||||
|
||||
Proc = subprocess.Popen(
|
||||
args, executable=bin,
|
||||
stdout=popenOut, stderr=subprocess.STDOUT
|
||||
)
|
||||
|
||||
if logFile is None:
|
||||
Proc.stdout.read()
|
||||
|
||||
return Proc.wait()
|
||||
|
||||
def GetTmpFilePath(self, fileName):
|
||||
return os.path.join(self.testDir, fileName)
|
||||
|
||||
def OpenTmpFile(self, fileName, mode = 'r'):
|
||||
return open(os.path.join(self.testDir, fileName), mode)
|
||||
|
||||
def ReadTmpFile(self, fileName):
|
||||
f = open(self.GetTmpFilePath(fileName), 'r')
|
||||
data = f.read()
|
||||
f.close()
|
||||
return data
|
||||
|
||||
def WriteTmpFile(self, fileName, data):
|
||||
f = open(self.GetTmpFilePath(fileName), 'w')
|
||||
f.write(data)
|
||||
f.close()
|
||||
|
||||
def GenRandomFileData(self, fileName, minlen = None, maxlen = None):
|
||||
if maxlen is None: maxlen = minlen
|
||||
f = self.OpenTmpFile(fileName, 'w')
|
||||
f.write(self.GetRandomString(minlen, maxlen))
|
||||
f.close()
|
||||
|
||||
def GetRandomString(self, minlen = None, maxlen = None):
|
||||
if minlen is None: minlen = 1024
|
||||
if maxlen is None: maxlen = minlen
|
||||
return ''.join(
|
||||
[chr(random.randint(0,255))
|
||||
for x in xrange(random.randint(minlen, maxlen))
|
||||
])
|
||||
|
||||
def setUp(self):
|
||||
self.savedEnvPath = os.environ['PATH']
|
||||
self.savedSysPath = sys.path[:]
|
||||
|
||||
for binPath in BaseToolsBinPaths:
|
||||
os.environ['PATH'] = \
|
||||
os.path.pathsep.join((os.environ['PATH'], binPath))
|
||||
|
||||
self.testDir = TestTempDir
|
||||
if not os.path.exists(self.testDir):
|
||||
os.mkdir(self.testDir)
|
||||
else:
|
||||
self.cleanOutDir(self.testDir)
|
||||
|
||||
def tearDown(self):
|
||||
self.RemoveFileOrDir(self.testDir)
|
||||
|
||||
os.environ['PATH'] = self.savedEnvPath
|
||||
sys.path = self.savedSysPath
|
||||
|
||||
|
@ -1,74 +1,74 @@
|
||||
## @file
|
||||
# Unit tests for TianoCompress utility
|
||||
#
|
||||
# Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import random
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
import TestTools
|
||||
|
||||
class Tests(TestTools.BaseToolsTest):
|
||||
|
||||
def setUp(self):
|
||||
TestTools.BaseToolsTest.setUp(self)
|
||||
self.toolName = 'TianoCompress'
|
||||
|
||||
def testHelp(self):
|
||||
result = self.RunTool('--help', logFile='help')
|
||||
#self.DisplayFile('help')
|
||||
self.assertTrue(result == 0)
|
||||
|
||||
def compressionTestCycle(self, data):
|
||||
path = self.GetTmpFilePath('input')
|
||||
self.WriteTmpFile('input', data)
|
||||
result = self.RunTool(
|
||||
'-e',
|
||||
'-o', self.GetTmpFilePath('output1'),
|
||||
self.GetTmpFilePath('input')
|
||||
)
|
||||
self.assertTrue(result == 0)
|
||||
result = self.RunTool(
|
||||
'-d',
|
||||
'-o', self.GetTmpFilePath('output2'),
|
||||
self.GetTmpFilePath('output1')
|
||||
)
|
||||
self.assertTrue(result == 0)
|
||||
start = self.ReadTmpFile('input')
|
||||
finish = self.ReadTmpFile('output2')
|
||||
startEqualsFinish = start == finish
|
||||
if not startEqualsFinish:
|
||||
print
|
||||
print 'Original data did not match decompress(compress(data))'
|
||||
self.DisplayBinaryData('original data', start)
|
||||
self.DisplayBinaryData('after compression', self.ReadTmpFile('output1'))
|
||||
self.DisplayBinaryData('after decomression', finish)
|
||||
self.assertTrue(startEqualsFinish)
|
||||
|
||||
def testRandomDataCycles(self):
|
||||
for i in range(8):
|
||||
data = self.GetRandomString(1024, 2048)
|
||||
self.compressionTestCycle(data)
|
||||
self.CleanUpTmpDir()
|
||||
|
||||
TheTestSuite = TestTools.MakeTheTestSuite(locals())
|
||||
|
||||
if __name__ == '__main__':
|
||||
allTests = TheTestSuite()
|
||||
unittest.TextTestRunner().run(allTests)
|
||||
|
||||
|
||||
## @file
|
||||
# Unit tests for TianoCompress utility
|
||||
#
|
||||
# Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are licensed and made available under the terms and conditions of the BSD License
|
||||
# which accompanies this distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
#
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
import os
|
||||
import random
|
||||
import sys
|
||||
import unittest
|
||||
|
||||
import TestTools
|
||||
|
||||
class Tests(TestTools.BaseToolsTest):
|
||||
|
||||
def setUp(self):
|
||||
TestTools.BaseToolsTest.setUp(self)
|
||||
self.toolName = 'TianoCompress'
|
||||
|
||||
def testHelp(self):
|
||||
result = self.RunTool('--help', logFile='help')
|
||||
#self.DisplayFile('help')
|
||||
self.assertTrue(result == 0)
|
||||
|
||||
def compressionTestCycle(self, data):
|
||||
path = self.GetTmpFilePath('input')
|
||||
self.WriteTmpFile('input', data)
|
||||
result = self.RunTool(
|
||||
'-e',
|
||||
'-o', self.GetTmpFilePath('output1'),
|
||||
self.GetTmpFilePath('input')
|
||||
)
|
||||
self.assertTrue(result == 0)
|
||||
result = self.RunTool(
|
||||
'-d',
|
||||
'-o', self.GetTmpFilePath('output2'),
|
||||
self.GetTmpFilePath('output1')
|
||||
)
|
||||
self.assertTrue(result == 0)
|
||||
start = self.ReadTmpFile('input')
|
||||
finish = self.ReadTmpFile('output2')
|
||||
startEqualsFinish = start == finish
|
||||
if not startEqualsFinish:
|
||||
print
|
||||
print 'Original data did not match decompress(compress(data))'
|
||||
self.DisplayBinaryData('original data', start)
|
||||
self.DisplayBinaryData('after compression', self.ReadTmpFile('output1'))
|
||||
self.DisplayBinaryData('after decomression', finish)
|
||||
self.assertTrue(startEqualsFinish)
|
||||
|
||||
def testRandomDataCycles(self):
|
||||
for i in range(8):
|
||||
data = self.GetRandomString(1024, 2048)
|
||||
self.compressionTestCycle(data)
|
||||
self.CleanUpTmpDir()
|
||||
|
||||
TheTestSuite = TestTools.MakeTheTestSuite(locals())
|
||||
|
||||
if __name__ == '__main__':
|
||||
allTests = TheTestSuite()
|
||||
unittest.TextTestRunner().run(allTests)
|
||||
|
||||
|
||||
|
@ -1,15 +1,15 @@
|
||||
To use GCC with the BaseTools project for edk2 based development purposes,
|
||||
you will need to build a GCC based cross-compiler (in addition to binutils).
|
||||
|
||||
Instructions for building GCC for this purpose can be found under the
|
||||
BaseTools source tree. (In addition to the instructions, you will also
|
||||
find scripts to help automate the build process.)
|
||||
|
||||
If you do not have a tianocore.org account, you can make use of the 'guest'
|
||||
account with an empty password.
|
||||
|
||||
In a web browser, you can 'browse' the relavent source at this location:
|
||||
http://sourceforge.net/p/edk2-buildtools/code/HEAD/tree/trunk/BaseTools/gcc
|
||||
|
||||
Or, with subversion, you can download the relavent source with this command:
|
||||
svn co https://svn.code.sf.net/p/edk2-buildtools/code/trunk/BaseTools/gcc
|
||||
To use GCC with the BaseTools project for edk2 based development purposes,
|
||||
you will need to build a GCC based cross-compiler (in addition to binutils).
|
||||
|
||||
Instructions for building GCC for this purpose can be found under the
|
||||
BaseTools source tree. (In addition to the instructions, you will also
|
||||
find scripts to help automate the build process.)
|
||||
|
||||
If you do not have a tianocore.org account, you can make use of the 'guest'
|
||||
account with an empty password.
|
||||
|
||||
In a web browser, you can 'browse' the relavent source at this location:
|
||||
http://sourceforge.net/p/edk2-buildtools/code/HEAD/tree/trunk/BaseTools/gcc
|
||||
|
||||
Or, with subversion, you can download the relavent source with this command:
|
||||
svn co https://svn.code.sf.net/p/edk2-buildtools/code/trunk/BaseTools/gcc
|
||||
|
Reference in New Issue
Block a user