]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - AppPkg/ReadMe.txt
CorebootPayloadPkg: Use extra braces to prevent gcc compile fail
[mirror_edk2.git] / AppPkg / ReadMe.txt
... / ...
CommitLineData
1 EADK\r
2 EDK II Standard Libraries and Applications\r
3 ReadMe\r
4 Version 1.02\r
5 21 Dec. 2012\r
6\r
7\r
8OVERVIEW\r
9========\r
10The EADK (uEfi Application Development Kit) provides a set of standards-based\r
11libraries, along with utility and demonstration applications, intended to\r
12ease development of UEFI applications based upon the EDK II Open-Source\r
13distribution.\r
14\r
15At this time, applications developed with the EADK are intended to reside\r
16on, and be loaded from, storage separate from the core firmware. This is\r
17primarily due to size and environmental requirements.\r
18\r
19This release of the EADK should only be used to produce UEFI Applications. Due to the execution\r
20environment built by the StdLib component, execution as a UEFI driver can cause system stability\r
21issues.\r
22\r
23This document describes the EDK II specific aspects of installing, building,\r
24and using the Standard C Library component of the EDK II Application\r
25Development Kit, EADK.\r
26\r
27The EADK is comprised of three packages:\r
28 AppPkg, StdLib, and StdLibPrivateInternalFiles.\r
29\r
30 AppPkg This package contains applications which demonstrate use of the\r
31 Standard C and Sockets Libraries.\r
32 These applications reside in AppPkg/Applications.\r
33\r
34 Enquire This is a program that determines many properties of the\r
35 C compiler and the target machine that Enquire is run on. The\r
36 only changes required to port this 1990s era Unix program to\r
37 EDK II were the addition of eight pragmas to enquire.c in\r
38 order to disable some Microsoft VC++ specific warnings.\r
39\r
40 Hello This is a very simple EDK II native application that doesn't use\r
41 any features of the Standard C Library.\r
42\r
43 Main This application is functionally identical to Hello, except that\r
44 it uses the Standard C Library to provide a main() entry point.\r
45\r
46 Python A port of the Python-2.7.2 interpreter for UEFI. Building this\r
47 application is disabled by default.\r
48 See the PythonReadMe.txt file, in the Python directory,\r
49 for information on configuring and building Python.\r
50\r
51 Lua A port of the Lua-5.2.3 interpreter for UEFI. This\r
52 application is disabled by default. Un-comment the line for\r
53 LuaLib.inf in the [LibraryClasses] section and Lua.inf in the \r
54 [Components] section of AppPkg.dsc to enable building Lua.\r
55\r
56 OrderedCollectionTest A small Standard C Library application that\r
57 demonstrates the use of the OrderedCollectionLib library class\r
58 (provided by the BaseOrderedCollectionRedBlackTreeLib library\r
59 instance in this application), and allows the user to "fuzz" the\r
60 library with interactive or scripted API calls.\r
61\r
62 Sockets A collection of applications demonstrating use of the\r
63 EDK II Socket Libraries. These applications include:\r
64\r
65 * DataSink * DataSource\r
66 * GetAddrInfo * GetHostByAddr\r
67 * GetHostByDns * GetHostByName\r
68 * GetNetByAddr * GetNetByName\r
69 * GetServByName * GetServByPort\r
70 * OobRx * OobTx\r
71 * RawIp4Rx * RawIp4Tx\r
72 * RecvDgram * SetHostName\r
73 * SetSockOpt * TftpServer\r
74 * WebServer\r
75\r
76 StdLib The StdLib package contains the standard header files as well as\r
77 implementations of other standards-based libraries.\r
78\r
79 * BsdSocketLib\r
80 Support routines above the sockets layer and C interface for\r
81 the UEFI socket library.\r
82 * Efi\r
83 Template contents for the target system's\r
84 \Efi\StdLib\etc directory.\r
85 * EfiSocketLib\r
86 UEFI socket implementation, may be linked into an\r
87 application or run as a driver.\r
88 * Include\r
89 Standard include files.\r
90 * LibC\r
91 C Standard Library implementation as per\r
92 ISO/IEC 9899:199409 (C95).\r
93 * PosixLib\r
94 Selected functions from the "Single Unix v4" specification.\r
95 * SocketDxe\r
96 UEFI sockets driver, includes EfiSocketLib.\r
97 * UseSocketDxe\r
98 Alternate linkage for applications that get built into the\r
99 firmware. Cause application to use a common instance of the\r
100 sockets driver instead of including all of sockets into the\r
101 application.\r
102\r
103 StdLibPrivateInternalFiles The contents of this package are for the\r
104 exclusive use of the library implementations in StdLib. Please do\r
105 not use anything from this package in your application or else\r
106 unexpected behavior may occur.\r
107 This package may be removed in a future release.\r
108\r
109\r
110RELEASE NOTES\r
111=============\r
112 Fixes and Additions\r
113 -------------------\r
114Beginning with release 1.01, applications built with the StdLib package\r
115no longer have a dependency on the TimerLib.\r
116\r
117 Known Issues\r
118 -----------------\r
119This release of the EADK has some restrictions, as described below.\r
120\r
121 1. The target machine must be running firmware which provides the\r
122 UEFI 2.3 HII protocol.\r
123\r
124 2. Applications must be launched from within the EFI Shell.\r
125\r
126 3. Absolute file paths may optionally be prefixed by a volume specifier\r
127 such as "FS0:". The volume specifier is separated from the remainder\r
128 of the path by a single colon ':'. The volume specifier must be one of\r
129 the Shell's mapped volume names as shown by the "map" command.\r
130\r
131 4. Absolute file paths that don't begin with a volume specifier;\r
132 e.g. paths that begin with "/", are relative to the currently selected\r
133 volume. When the EFI Shell first starts, there is NO selected volume.\r
134\r
135 5. The tmpfile(), and related, functions require that the current volume\r
136 have a temporary directory as specified in <paths.h>. This directory\r
137 is specified by macro _PATH_TMP as /Efi/StdLib/tmp.\r
138\r
139The Standard C Library provided by this package is a "hosted" implementation\r
140conforming to the ISO/IEC 9899-1990 C Language Standard with Addendum 1. This\r
141is commonly referred to as the "C 95" specification or ISO/IEC 9899:199409.\r
142The following instructions assume that you have an existing EDK II or UDK 2010\r
143source tree that has been configured to build with your tool chain. For\r
144convenience, it is assumed that your EDK II source tree is located at\r
145C:\Source\Edk2.\r
146\r
147\r
148EADK INSTALLATION\r
149=================\r
150The EADK is integrated within the EDK II source tree and is included with\r
151current EDK II check-outs. If they are missing from your tree, they may be\r
152installed by extracting, downloading or copying them to the root of your EDK II\r
153source tree. The three package directories should be peers to the Conf,\r
154MdePkg, Nt32Pkg, etc. directories.\r
155\r
156There are some boiler-plate declarations and definitions that need to be\r
157included in your application's INF and DSC build files. These are described\r
158in the CONFIGURATION section, below.\r
159\r
160A subset of the Python 2.7.2 distribution is included as part of AppPkg. If desired,\r
161the full Python 2.7.2 distribution may be downloaded from python.org and used instead.\r
162Delete or rename the existing Python-2.7.2 directory then extract the downloaded\r
163Python-2.7.2.tgz file into the AppPkg\Applications\Python directory. This will produce a\r
164Python-2.7.2 directory containing the full Python distribution. Python files that had to be\r
165modified for EDK II are in the AppPkg\Applications\Python\PyMod-2.7.2 directory. These\r
166files need to be copied into the corresponding directories within the extracted Python-2.7.2\r
167directory before Python can be built.\r
168\r
169\r
170BUILDING\r
171========\r
172It is not necessary to build the libraries separately from the target\r
173application(s). If the application references the libraries, as described in\r
174USAGE, below; the required libraries will be built as needed.\r
175To build the applications included in AppPkg, one would execute the following\r
176commands within the "Visual Studio Command Prompt" window:\r
177\r
178 > cd C:\Source\Edk2\r
179 > .\edksetup.bat\r
180 > build -a X64 -p AppPkg\AppPkg.dsc\r
181\r
182This will produce the application executables: Enquire.efi, Hello.efi, and\r
183Main.efi in the C:\Source\Edk2\Build\AppPkg\DEBUG_VS2008\X64 directory; with\r
184the DEBUG_VS2008 component being replaced with the actual tool chain and build\r
185type you have selected in Conf\Tools_def.txt. These executables can now be\r
186loaded onto the target platform and executed.\r
187\r
188If you examine the AppPkg.dsc file, you will notice that the StdLib package is\r
189referenced in order to resolve the library classes comprising the Standard\r
190C Library. This, plus referencing the StdLib package in your application's\r
191.inf file is all that is needed to link your application to the standard\r
192libraries.\r
193\r
194Unless explicitly stated as allowed, EADK components should not be added as\r
195components of a DSC file which builds a platform's core firmware. There are\r
196incompatibilities in build flags and requirements that will conflict with the\r
197requirements of the core firmware. EADK components should be built using a\r
198separate DSC file then, if absolutely necessary, included as binary components\r
199of other DSC files.\r
200\r
201USAGE\r
202=====\r
203This implementation of the Standard C Library is comprised of 16 separate\r
204libraries in addition to the standard header files. Nine of the libraries are\r
205associated with use of one of the standard headers; thus, if the header is used\r
206in an application, it must be linked with the associated library. Three\r
207libraries are used to provide the Console and File-system device abstractions.\r
208The libraries and associated header files are described in the following table.\r
209\r
210 Library\r
211 Class Header File(s) Notes\r
212---------- ---------------- -------------------------------------------------\r
213LibC -- Use Always -- This library is always required.\r
214LibCtype ctype.h, wctype.h Character classification and mapping\r
215LibLocale locale.h Localization types, macros, and functions\r
216LibMath math.h Mathematical functions, types, and macros\r
217LibStdio stdio.h Standard Input and Output functions, types, and\r
218 macros\r
219LibStdLib stdlib.h General Utilities for numeric conversion, random\r
220 num., etc.\r
221LibString string.h String copying, concatenation, comparison,\r
222 & search\r
223LibSignal signal.h Functions and types for handling run-time\r
224 conditions\r
225LibTime time.h Time and Date types, macros, and functions\r
226LibUefi sys/EfiSysCall.h Provides the UEFI system interface and\r
227 "System Calls"\r
228LibWchar wchar.h Extended multibyte and wide character utilities\r
229LibNetUtil Network address and number manipulation utilities\r
230DevConsole Automatically provided File I/O abstractions for\r
231 the UEFI Console device. No need to list this\r
232 library class in your INF file(s).\r
233DevShell Add if desired File I/O abstractions using UEFI shell\r
234 facilities. Add this to the application's main\r
235 INF file if file-system access needed.\r
236DevUtility -- Do Not Use -- Utility functions used internally by the Device abstractions\r
237LibGdtoa -- Do Not Use -- This library is used internally and should not\r
238 need to be explicitly specified by an\r
239 application. It must be defined as one of the\r
240 available library classes in the application's\r
241 DSC file.\r
242\r
243 Table 1: Standard Libraries\r
244 ============================\r
245\r
246The DevConsole and DevShell libraries provide device I/O functionality and are treated\r
247specially. DevConsole is automatically included so there is no need to reference it in your\r
248application's DSC or INF files. DevShell must be listed, in your application's INF file in the\r
249[LibraryClasses] section, if your application does file I/O.\r
250\r
251These libraries must be fully described in the [LibraryClasses] section of the\r
252application package's DSC file. Then, each individual application needs to\r
253specify which libraries to link to by specifying the Library Class, from the\r
254above table, in the [LibraryClasses] section of the application's INF file. The\r
255AppPkg.dsc, StdLib.dsc, and Enquire.inf files provide good examples of this.\r
256More details are in the CONFIGURATION section, below.\r
257\r
258In order to simplify this process, the [LibraryClasses] definitions, and others, are\r
259specified in the StdLib.inc file. If this file is included in the DSC file, usually at the\r
260end, then other DSC file changes or additions are unnecessary. This is further described in\r
261the CONFIGURATION section, below.\r
262\r
263Within the source files of the application, use of the Standard headers and\r
264library functions follow standard C programming practices as formalized by\r
265ISO/IEC 9899:1990, with Addendum 1, (C 95) C language specification.\r
266\r
267\r
268BUILD CONFIGURATION\r
269===================\r
270DSC Files\r
271---------\r
272\r
273All EDK II packages which build applications that use the standard libraries\r
274must include some "boilerplate" text in the package's .dsc file. To make it\r
275easier, and to reduce cut-and-paste errors, the "boilerplate" text has been\r
276consolidated into a single file, StdLib/StdLib.inc, which can be included in\r
277your .dsc file using the !include directive. The provided AppPkg.dsc and\r
278StdLib.dsc files do this on their last line.\r
279\r
280The "boilerplate" text can be included using a !include directive in the\r
281package's .dsc file. The provided AppPkg.dsc and StdLib.dsc files include\r
282the following "boilerplate" text:\r
283\r
284 ##############################################################################\r
285 #\r
286 # Specify whether we are running in an emulation environment, or not.\r
287 # Define EMULATE if we are, else keep the DEFINE commented out.\r
288 #\r
289 # DEFINE EMULATE = 1\r
290\r
291 ##############################################################################\r
292 #\r
293 # Include Boilerplate text required for building with the Standard Libraries.\r
294 #\r
295 ##############################################################################\r
296 !include StdLib/StdLib.inc\r
297\r
298 Figure 1: "Boilerplate" Inclusion\r
299 =================================\r
300\r
301The EMULATE macro must be defined if one desires to do source-level debugging within one of\r
302the emulated environments such as NT32Pkg or UnixPkg.\r
303\r
304The final boilerplate line, in Figure 1, includes the StdLib.inc file.\r
305Each section of StdLib/StdLib.inc is described below.\r
306\r
307If desired, all of the Socket applications, in AppPkg, can be built by including Sockets.inc:\r
308\r
309 !include AppPkg/Applications/Sockets/Sockets.inc\r
310\r
311 Figure 2: Socket Applications "Boilerplate" Inclusion\r
312 =====================================================\r
313\r
314\r
315Descriptions of the Library Classes comprising the Standard Libraries,\r
316as shown in Figure 3: Library Class Descriptions, are provided.\r
317\r
318 [LibraryClasses]\r
319 #\r
320 # C Standard Libraries\r
321 #\r
322 LibC|StdLib/LibC/LibC.inf\r
323 LibCType|StdLib/LibC/Ctype/Ctype.inf\r
324 LibLocale|StdLib/LibC/Locale/Locale.inf\r
325 LibMath|StdLib/LibC/Math/Math.inf\r
326 LibSignal|StdLib/LibC/Signal/Signal.inf\r
327 LibStdio|StdLib/LibC/Stdio/Stdio.inf\r
328 LibStdLib|StdLib/LibC/StdLib/StdLib.inf\r
329 LibString|StdLib/LibC/String/String.inf\r
330 LibTime|StdLib/LibC/Time/Time.inf\r
331 LibUefi|StdLib/LibC/Uefi/Uefi.inf\r
332 LibWchar|StdLib/LibC/Wchar/Wchar.inf\r
333\r
334 # Common Utilities for Networking Libraries\r
335 LibNetUtil|StdLib/LibC/NetUtil/NetUtil.inf\r
336\r
337 # Additional libraries for POSIX functionality.\r
338 LibErr|StdLib/PosixLib/Err/LibErr.inf\r
339 LibGen|StdLib/PosixLib/Gen/LibGen.inf\r
340 LibGlob|StdLib/PosixLib/Glob/LibGlob.inf\r
341 LibStringlist|StdLib/PosixLib/Stringlist/LibStringlist.inf\r
342\r
343 # Libraries for device abstractions within the Standard C Library\r
344 # Applications should not directly access any functions defined in these libraries.\r
345 LibGdtoa|StdLib/LibC/gdtoa/gdtoa.inf\r
346 DevConsole|StdLib/LibC/Uefi/Devices/daConsole.inf\r
347 DevShell|StdLib/LibC/Uefi/Devices/daShell.inf\r
348 DevUtility|StdLib/LibC/Uefi/Devices/daUtility.inf\r
349\r
350 [LibraryClasses.ARM.UEFI_APPLICATION]\r
351 NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf\r
352\r
353 Figure 3: Library Class Descriptions\r
354 ====================================\r
355\r
356\r
357The directives in Figure 4: Package Component Descriptions will create\r
358instances of the BaseLib and BaseMemoryLib library classes that are built\r
359with Link-time-Code-Generation disabled. This is necessary when using the\r
360Microsoft tool chains in order to allow the library's functions to be\r
361resolved during the second pass of the linker during Link-Time-Code-Generation\r
362of the application.\r
363\r
364A DXE driver version of the Socket library is also built.\r
365\r
366 [Components]\r
367 # BaseLib and BaseMemoryLib need to be built with the /GL- switch\r
368 # when using the Microsoft tool chains. This is required so that\r
369 # the library functions can be resolved during the second pass of\r
370 # the linker during link-time-code-generation.\r
371 #\r
372 MdePkg/Library/BaseLib/BaseLib.inf {\r
373 <BuildOptions>\r
374 MSFT:*_*_*_CC_FLAGS = /X /Zc:wchar_t /GL-\r
375 }\r
376 MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf {\r
377 <BuildOptions>\r
378 MSFT:*_*_*_CC_FLAGS = /X /Zc:wchar_t /GL-\r
379 }\r
380\r
381 ##########\r
382 # Socket Layer\r
383 ##########\r
384 StdLib/SocketDxe/SocketDxe.inf\r
385\r
386 Figure 4: Package Component Descriptions\r
387 ========================================\r
388\r
389\r
390Each compiler assumes, by default, that it will be used with standard libraries\r
391and headers provided by the compiler vendor. Many of these assumptions are\r
392incorrect for the UEFI environment. By including a BuildOptions section, as\r
393shown in Figure 5: Package Build Options, these assumptions can be\r
394tailored for compatibility with UEFI and the EDK II Standard Libraries.\r
395\r
396Note that the set of BuildOptions used is determined by the state of the EMULATE macro.\r
397\r
398 [BuildOptions]\r
399 !ifndef $(EMULATE)\r
400 # These Build Options are used when building the Standard Libraries to be run\r
401 # on real hardware.\r
402 INTEL:*_*_IA32_CC_FLAGS = /Qfreestanding\r
403 MSFT:*_*_IA32_CC_FLAGS = /X /Zc:wchar_t\r
404 GCC:*_*_IA32_CC_FLAGS = -nostdinc -nostdlib\r
405\r
406 !else\r
407 # The Build Options, below, are only used when building the Standard Libraries\r
408 # to be run under an emulation environment.\r
409 # They disable optimization which facillitates debugging under the Emulation environment.\r
410 INTEL:*_*_IA32_CC_FLAGS = /Od\r
411 MSFT:*_*_IA32_CC_FLAGS = /Od\r
412 GCC:*_*_IA32_CC_FLAGS = -O0\r
413\r
414 Figure 5: Package Build Options\r
415 ===============================\r
416\r
417\r
418INF Files\r
419=========\r
420The INF files for most modules will not require special directives in order to\r
421support the Standard Libraries. The two sections which require attention: LibraryClasses\r
422and BuildOptions, are described below.\r
423\r
424 [LibraryClasses]\r
425 UefiLib\r
426 LibC\r
427 LibString\r
428 LibStdio\r
429 DevShell\r
430\r
431 Figure 6: Module Library Classes\r
432 ================================\r
433\r
434\r
435Modules of type UEFI_APPLICATION that perform file I/O must include library\r
436class DevShell. Including this library class will allow file operations to be\r
437handled by the UEFI Shell. Without this class, only Console I/O is supported.\r
438\r
439\r
440An application's INF file might need to include a [BuildOptions] section\r
441specifying additional compiler and linker flags necessary to allow the\r
442application to be built. Usually, this section is not needed. When building\r
443code from external sources, though, it may be necessary to disable some\r
444warnings or enable/disable some compiler features.\r
445\r
446 [BuildOptions]\r
447 INTEL:*_*_*_CC_FLAGS = /Qdiag-disable:181,186\r
448 MSFT:*_*_*_CC_FLAGS = /Oi- /wd4018 /wd4131\r
449 GCC:*_*_IPF_SYMRENAME_FLAGS = --redefine-syms=Rename.txt\r
450\r
451 Figure 7: Module Build Options\r
452 ==============================\r
453\r
454\r
455TARGET-SYSTEM INSTALLATION\r
456==========================\r
457Applications that use file system features or the Socket library depend upon\r
458the existence of a specific directory tree structure on the same volume that\r
459the application was loaded from. This tree structure is described below:\r
460\r
461 /EFI Root of the UEFI system area.\r
462 |- /Tools Directory containing applications.\r
463 |- /Boot UEFI specified Boot directory.\r
464 |- /StdLib Root of the Standard Libraries sub-tree.\r
465 |- /etc Configuration files used by libraries.\r
466 |- /tmp Temporary files created by tmpfile(), etc.\r
467\r
468\r
469The /Efi/StdLib/etc directory must be manually populated from the StdLib/Efi/etc source\r
470directory.\r
471\r
472IMPLEMENTATION-Specific Features\r
473================================\r
474It is very strongly recommended that applications not use the long or\r
475unsigned long types. The size of these types varies between compilers and is one\r
476of the less portable aspects of C. Instead, one should use the UEFI defined\r
477types whenever possible. Use of these types, listed below for reference,\r
478ensures that the declared objects have unambiguous, explicitly declared, sizes\r
479and characteristics.\r
480\r
481 UINT64 INT64 UINT32 INT32 UINT16 CHAR16\r
482 INT16 BOOLEAN UINT8 CHAR8 INT8\r
483 UINTN INTN PHYSICALADDRESS\r
484\r
485There are similar types declared in sys/types.h and related files.\r
486\r
487The types UINTN and INTN have the native width of the target processor\r
488architecture. Thus, INTN on IA32 has a width of 32 bits while INTN on X64 and\r
489IPF has a width of 64 bits.\r
490\r
491For maximum portability, data objects intended to hold addresses should be\r
492declared with type intptr_t or uintptr_t. These types, declared in\r
493sys/stdint.h, can be used to create objects capable of holding pointers. Note\r
494that these types will generate different sized objects on different processor\r
495architectures. If a constant size across all processors and compilers is\r
496needed, use type PHYSICAL_ADDRESS.\r
497\r
498Though not specifically required by the ISO/IEC 9899 standard, this\r
499implementation of the Standard C Library provides the following system calls\r
500which are declared in sys/EfiSysCall.h and/or unistd.h.\r
501\r
502 close creat chmod dup dup2\r
503 fcntl fstat getcwd ioctl isatty\r
504 lseek lstat mkdir open poll\r
505 read rename rmdir stat unlink write\r
506\r
507The open function will accept file names of "stdin:", "stdout:", and "stderr:"\r
508which cause the respective streams specified in the UEFI System Table to be\r
509opened. Normally, these are associated with the console device. When the\r
510application is first started, these streams are automatically opened on File\r
511Descriptors 0, 1, and 2 respectively.\r
512\r
513 # # #\r