|
发表于 2009-11-11 16:21:18
|
显示全部楼层
我寫了一個 File io 的 EFI shell app
/*1 U0 n- Q; _5 x; I& t: ^; _
* myfileio.c
7 M1 U$ J( V! z8 D * Apps
3 J+ X) Z! {: _6 r */
/ E& }2 p3 ]- U. t9 A& O! y3 h; w1 D, _1 b
#include "efi.h"
( F D0 w9 V- K8 u1 t" T+ f#include "efilib.h"3 s0 K$ C9 ^( ^
' J( @. L" R2 ], I0 r) A6 x/ [' s
#define FILE_ATTRIB_CREATENEW EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE | EFI_FILE_MODE_CREATE. c. _: V* n, _' [
9 y) w' }! d8 d" s0 o3 ~$ [' }/ Tstatic EFI_STATUS WaitForKeyOrReset(VOID). ^5 e0 f$ ~) B" {2 R, w
{- S; X3 }' _9 k5 @
EFI_STATUS Status;, X9 A% }) j4 O! i N! J& }
EFI_INPUT_KEY key;# g7 i( m8 b- |# O6 r$ A
UINTN index; f9 Z f8 w" b! S8 B% I1 K
) a9 z3 ]% L3 |0 ?$ I" h: w4 H
for(;;) {
) q; ^- ~. e* a" @ Status = ST->ConIn->ReadKeyStroke(ST->ConIn, &key);: o2 O7 I; T! e: y
if (Status == EFI_NOT_READY)+ ~! [) Q! u' A
BS->WaitForEvent(1, &ST->ConIn->WaitForKey, &index);
% ` W& l1 q' c# [$ g" a5 r else5 d! A2 ~- T! s
break;+ A( y: w& q6 N# C
}
0 O ]1 e8 V) f& ]1 A8 p if (!EFI_ERROR(Status)) {9 Z% S$ J8 e! ]
if (key.ScanCode == SCAN_ESC): n5 y) H K0 H
RT->ResetSystem(EfiResetCold, EFI_SUCCESS, 0, NULL);0 @" m: B" ^- a2 r+ A, y
}
! z) v# b O* W* h+ N% {% E 2 ^4 Z9 i0 T- }9 f
return Status;
! Q, C3 |: j6 k e& q- m) W}0 i" C) g' i' R( i0 i, s
% x9 i# w2 W4 v% `% aEFI_STATUS
; R/ L1 M/ m( `) h r3 l) `EFIAPI6 ^0 \: |: _( M* i4 b# E
MyfileioMain (IN EFI_HANDLE ImageHandle,
5 \, N. R* i( K% l+ W7 d IN EFI_SYSTEM_TABLE *SystemTable)
( Y4 K6 Q5 a- n3 S% z( t{
" ]% [. \" C7 n y: t, n' H) E EFI_STATUS Status;
; Y3 u/ Q% Z" j! }: q) q/ K1 Y EFI_HANDLE *DestAddr;
9 c/ o9 g- o7 F; d/ p1 ^ EFI_LOADED_IMAGE *FileHandle01;5 K9 C r2 _ z
EFI_DEVICE_PATH *FileHandle02;
! Z' n J& C5 L5 i- ] EFI_FILE_IO_INTERFACE *FileHandle03;
2 s) e- L% o$ v g3 G) R' T EFI_FILE *FileHandle04;. w+ ]4 t5 }& E+ {9 D/ @* _
EFI_FILE *FileHandle05;; y/ E. b y2 f w
CHAR16 *FileName;
w" I G+ o0 [) m CHAR16 *BufferA, *BufferB, *BufferC, *Space_Key;
. N$ w' L4 C6 z; S1 h& X UINTN BufferSize = 8, BufferSizeKeySpace = 2;, k u' B6 {% d! q2 Z4 c+ G
int Bit0, Bit1, Key_Space; / L) ~1 o B% z: h& ~* u' f3 @
: n# l9 | b- d5 r1 A* f FileName = L"NewFile.txt";, O3 T. X G3 x. i* s3 {8 G# n/ }
Space_Key = L" ";, S [ T) I$ X3 f' I7 S
" K z/ H% a$ q8 ^4 d BufferA = L"ABCD";" p# P" `) b$ q1 c
BufferB = L"EFGH";
Q4 K$ l0 V" @1 K0 F BufferC = L"IJKL";
9 S, U3 b+ f9 M/ m
- s( l. w; H: p+ P6 F6 d- M7 U Bit0 = 0xff;
* N: |/ x# L3 W. d6 W+ E+ K Bit1 = 0xfe;5 x- ^' Z: O v3 ]5 ~5 j9 U# F
$ \& B! D8 v8 \0 V) b. T
Key_Space = 0x0020;
3 e/ ^: i: }' i
3 C" Y7 V. _7 {6 l InitializeLib (ImageHandle, SystemTable); " @1 M7 Z% E6 o! @: q Z2 ^2 `
Y" w' W$ |4 a) g* h
DestAddr = AllocatePool (BufferSize); / I" m* Z& _3 H
6 y) [7 R& u7 A3 k' o$ Z) G
Print (L"Value of Bit0 is %x\n", Bit0);
% @, e Q- z# T8 C Print (L"Value of Bit1 is %x\n", Bit1);
" W' T+ V* h3 u9 F6 z4 I; |6 ]# K) h* O. _- I/ @9 e
- }0 S; F& ~1 K* u k0 m
Status = BS->HandleProtocol(ImageHandle, &LoadedImageProtocol, (VOID*)&FileHandle01);
0 j) t J6 R1 C# n if (EFI_ERROR(Status)) {
+ k7 Z' a) u# N7 b8 ] Print (L"Could not obtain Image, FileHandle01 err code is %x\n",Status);
3 G/ [- z) h3 M2 }- x return EFI_LOAD_ERROR;' E" z) N& G! F: b# v: t& h
}
' B$ u5 N2 Z0 n( x( K, k* n* i+ r4 h2 o$ n. t: S
Status = BS->HandleProtocol(FileHandle01->DeviceHandle,&DevicePathProtocol,(VOID*)&FileHandle02);" A$ e; {: e: b( `, }5 f
if (EFI_ERROR(Status)) {
$ J3 h! B2 @( t. t0 J! q8 s Print (L"Could not obtain Device Path, FileHandle02 err code is %x\n",Status);
4 b, A0 L, U3 K return EFI_LOAD_ERROR;
9 z& r! E5 q/ d, t6 }" L } 3 z8 P G" O4 L
1 S" f# ]3 [" ?1 P# U3 g) Y5 l
Status = BS->HandleProtocol (FileHandle01->DeviceHandle,&FileSystemProtocol,(VOID*)&FileHandle03);
& N* o( N2 a& S, }7 K if (EFI_ERROR(Status)) {! ]4 s1 s' c- }2 j
Print (L"Could not obtain File System, FileHandle03 err code is %x\n",Status);# F5 m0 m- v$ z; F' b% z+ L
return EFI_LOAD_ERROR;/ E# v5 {4 i' I# e1 e
}
( a1 S% M6 j$ k, Q" o9 G) z5 ]6 B0 w; |# u" {
Status = FileHandle03->OpenVolume(FileHandle03, &FileHandle04);
& k$ ^5 ]. {. H if (EFI_ERROR(Status)) {
. Y( E6 D" F7 U+ Y" C9 w Print (L"Could not open volume, FileHandle04 err code is %x\n",Status);
; Q* ^+ ?, F# j' y return EFI_LOAD_ERROR;+ x- s) G9 `7 o7 t y* c6 |; j9 V' p
}
' s* b; V# f+ i0 R% q7 Y 4 d: p. ^- \7 B- y0 |- Z
Status = FileHandle04->Open(FileHandle04, &FileHandle05, FileName, FILE_ATTRIB_CREATENEW, 0x20);
6 Z" ~. Y0 y( n8 E if (EFI_ERROR(Status)) {8 S5 e2 s5 Z/ G$ Q% p
Print (L"Could not open file, FileHandle05 err code is %x\n",Status);, t* P" ]* s( d+ ?
return EFI_LOAD_ERROR;
5 B( ^4 y. M. d' t) I' C }) v# N* ]1 g% W0 {5 [% g. a; S
* I2 a& M% f2 C+ t7 W
Status = FileHandle05->SetPosition(FileHandle05, 0); % z+ P6 n1 w" a6 T: s% z
if (EFI_ERROR(Status)) {# Y: p# d8 t) h, u o* ^
Print (L"Could not do SetPositioon to the file, FileHandle05 err code is %x\n",Status);
* Y3 h# [# E* ^; j* M" K/ {! W return EFI_SUCCESS;
1 p9 J" ~7 J- ^7 ]6 I; f4 b }
5 ] s" c& F6 C" ~1 F( F. R , {5 s) Q7 |1 v" |, O
Status = FileHandle05->Write(FileHandle05, &BufferSize, &Bit0);
, y* n+ Y" t9 {5 `/ b7 Y. { Print (L"File Buffersize is %x\n\n", BufferSize);
+ @$ G8 B/ p1 ]2 {/ X2 `7 t if (EFI_ERROR(Status)) {
) a7 `7 Z3 E# S* z4 V4 ` Print (L"Could not write file, FileHandle05 err code is %x\n\n",Status);
$ _ ?9 ^4 u4 t% s. Z5 F7 g9 p return EFI_SUCCESS;3 x/ R. G6 \; x6 l) y
} & D' [9 @. x- o" n
0 T/ z' A: w5 W7 J. b3 h: U
Status = FileHandle05->SetPosition(FileHandle05, 1);
1 H! m9 X3 m/ Q if (EFI_ERROR(Status)) {
) ]$ D' \/ d+ y Print (L"Could not do SetPositioon to the file, FileHandle05 err code is %x\n",Status);2 K- `( p0 m5 p3 w7 I
return EFI_SUCCESS;; |& F1 A& h: K5 n) T. Z- p8 N
}
/ H- n; i: o6 n& d. E* V1 s: k
9 W3 U# L5 R1 s9 b. a Status = FileHandle05->Write(FileHandle05, &BufferSize, &Bit1);" |8 F2 y+ R' e& I6 L+ @ K
Print (L"File Buffersize is %x\n\n", BufferSize);. K- ]8 X1 d- [- K0 [. c1 W4 m
if (EFI_ERROR(Status)) {0 W& u! _7 X" ]2 b2 v
Print (L"Could not write file, FileHandle05 err code is %x\n\n",Status);
& u7 _3 `+ s9 H, m6 F5 r0 i2 ?/ H. n6 u return EFI_SUCCESS;
: y( f* |- x* }; f# X. H } . t# v) ~0 X' b% d8 s
1 l$ l% k. b. v. t0 ]0 C7 `$ S8 h
Status = FileHandle05->SetPosition(FileHandle05, 2); ( I8 Y ]0 S8 O' F! J, J+ f& _
if (EFI_ERROR(Status)) { s/ o2 E5 ~8 ^* J. @6 a& V3 V
Print (L"Could not do SetPositioon to the file, FileHandle05 err code is %x\n",Status);
( z1 q# A2 M. I' Z return EFI_SUCCESS;
6 ?$ C3 h4 l" [5 [% x3 m$ |& a }
0 S( t' E6 v8 [, L2 g/ I7 h
! h0 }2 C6 b0 ^, b* U$ a- Q1 E" ~ Status = FileHandle05->Write(FileHandle05, &BufferSize, BufferA);
7 ~# Z: g9 B7 N: M3 U* ~- p Print (L"File Buffersize is %x\n\n", BufferSize);
8 G. j, r0 `0 W; y' a D, a if (EFI_ERROR(Status)) {
- }8 z3 |' T* Q/ G5 V) ` Print (L"Could not write file, FileHandle05 err code is %x\n\n",Status);; f1 H; C+ f! L& V
return EFI_SUCCESS;8 I, _+ E( l$ W6 D: N7 x8 l+ F/ F
}
3 I7 ]% ~: Y5 q" N) r6 S
. o" K/ T6 o/ e: ~/ E; d//--------------------------------------------------------------------------------------------------------------------------------------------------------------->>>
, E; ?! y$ i0 I9 `# @ Print (L"Before Read FileHandle05 file Data of BufferB is %s\n\n",BufferB);
# M+ P+ x! E) J: Q6 a7 r! U Status = FileHandle05->SetPosition(FileHandle05, 2); / s: R6 W9 I/ O0 ^
if (EFI_ERROR(Status)) {
# H8 X5 X, S2 U$ G0 s9 Y' O0 L Print (L"Could not do SetPositioon to the file, FileHandle05 err code is %x\n",Status);
4 U+ r! g1 C; j return EFI_SUCCESS;
/ V6 |) y' r! X, | }
7 c( Z* g* B+ m& E8 C4 y8 E @9 q* W) f; ?
Status = FileHandle05->Read(FileHandle05, &BufferSize, BufferB);
2 u5 Y# C) \" _+ ^' @- S! Y if (EFI_ERROR(Status)) {
) @9 Q1 _0 c4 B Print (L"Could not read file, FileHandle05 err code is %x\n",Status);
" @* a6 |2 K' z6 e/ v) _ return EFI_SUCCESS;
3 t. F' b5 i1 J, P4 I0 o }
- ~+ y" k8 O* i/ j+ K% P Print(L"1. After Read FileHandle05 file of Data of BufferSize is %d and Data of BufferB is %s\n\n", BufferSize, BufferB);2 ?/ \$ j) `8 D) _$ \
//---------------------------------------------------------------------------------------------------------------------------------------------------------------<<<
; d0 d) G; }7 }3 s2 j, f2 _" O9 j1 E1 g+ G3 e d5 A2 b4 |7 X
Status = FileHandle05->SetPosition(FileHandle05, 10);
# i! [& Z+ Z3 s7 L9 K8 A# d if (EFI_ERROR(Status)) {3 U, s+ U4 r4 t) `1 o! ~
Print (L"Could not do SetPositioon to the file, FileHandle05 err code is %x\n",Status);$ }7 ]: Z. J: `# G6 L
return EFI_SUCCESS;8 ?" B7 ]0 E* o5 a! M
}
7 i9 P3 Z" S1 G4 Z7 t: C( X
( N1 f$ r- |7 I7 U ]! l Status = FileHandle05->Write(FileHandle05, &BufferSizeKeySpace, Space_Key);
3 n0 J. v4 p8 k: z, X2 m if (EFI_ERROR(Status)) {
S2 Z5 n9 ]7 V/ @5 a% d Print (L"Could not write file, FileHandle05 err code is %x\n",Status);
% [' ]$ X d9 p return EFI_SUCCESS;
2 W# u4 L/ ^+ I- [! Z }
9 R9 j5 g- E* M; L9 Z0 Z" W* M4 Z! q
0 H6 L% |9 d5 R, n( I Status = FileHandle05->SetPosition(FileHandle05, 12);
! G$ \6 B L* b( A' g- l# n if (EFI_ERROR(Status)) {( U# U, }- d7 L* W
Print (L"Could not do SetPositioon to the file, FileHandle05 err code is %x\n",Status);
" i6 C4 n" `5 l return EFI_SUCCESS;- y2 p: I6 q* a- e0 b- l
}" T8 r7 P: D! `: X" ~7 p
9 `; y1 @# b; Q1 j. [ Status = FileHandle05->Write(FileHandle05, &BufferSizeKeySpace, Space_Key);/ x" H5 z; p+ u: Y/ H, O3 m
if (EFI_ERROR(Status)) {, e7 z- T$ b0 `$ M. M2 h1 a
Print (L"Could not write file, FileHandle05 err code is %x\n",Status);* P- D5 o/ u+ Y
return EFI_SUCCESS;6 ]4 q. l1 y& j& R! `2 F
}' J4 U9 N ~7 p3 |+ O( C
7 e0 c, R4 L) G2 [" t! k
Status = FileHandle05->SetPosition(FileHandle05, 14); # z$ s- v' ]8 F9 h1 j f4 `- `) k
if (EFI_ERROR(Status)) {
5 D) S4 k8 z( U, v Print (L"Could not do SetPositioon to the file, FileHandle05 err code is %x\n",Status);
2 L5 L( ^7 q) f5 c/ e return EFI_SUCCESS;" M1 L: f! r9 _- U# Q [# q
}0 L0 I* }# \6 D6 q2 v" S: l
: [+ [% P: b# u1 I0 Q
Status = FileHandle05->Write(FileHandle05, &BufferSizeKeySpace, Space_Key);7 Q+ ]8 X/ f5 a+ K7 g" Z+ Q/ ~ w3 ?
if (EFI_ERROR(Status)) {+ ?* J. O; b7 r' A* n0 Q5 ]' W2 [
Print (L"Could not write file, FileHandle05 err code is %x\n",Status);
' z' h/ h# Y D6 M return EFI_SUCCESS;
, Y* P6 `" ?& i! {4 G0 `. W: D }$ ?- n% m q4 @: J
- Q, T" t/ S' ~) U% [' X8 K+ z Status = FileHandle05->SetPosition(FileHandle05, 16);
3 ~+ {5 z- }" l if (EFI_ERROR(Status)) {
7 d2 W- I- i, l! o! R. @ Print (L"Could not do SetPositioon to the file, FileHandle05 err code is %x\n",Status);
6 T8 P) N0 P$ L return EFI_SUCCESS;/ ?' v9 j. d! |1 c S3 z
}' {2 r5 O; |. P# w% f& h0 w
8 j9 c. N* A" h8 c* E# E Status = FileHandle05->Write(FileHandle05, &BufferSizeKeySpace, Space_Key);: y, v! X" Y7 s0 m
if (EFI_ERROR(Status)) {& z! M+ n9 W; }2 R( T8 C
Print (L"Could not write file, FileHandle05 err code is %x\n",Status);
. t) F. ?" T: J- K" C1 [: d7 q* L return EFI_SUCCESS;
' ?1 ~( L8 X/ h. b( [7 { }
9 G: g+ L W/ e5 h2 W
! E) i$ ?' E3 Y6 z//---------------------------------------------------------------------------------------------------------------------------------------------------------------
$ O% |& C0 Y+ @* R+ t4 `3 ~5 w/ P" [9 H: Y
Status = FileHandle05->SetPosition(FileHandle05, 18);
5 U7 b, N, i* I+ f6 }4 N- C if (EFI_ERROR(Status)) {$ |5 m& }$ C9 W4 {' L* i8 ?
Print (L"Could not do SetPositioon to the file, FileHandle05 err code is %x\n",Status);8 A; s" T# J6 L D* K2 h
return EFI_SUCCESS;; o6 j/ M: g6 Y; x- D* b
}
! ?; C* c3 H- X( [
- ]+ f, Z0 _0 ^- L1 t Status = FileHandle05->Write(FileHandle05, &BufferSize, BufferC);; F D) |( B6 w$ @) {
if (EFI_ERROR(Status)) {6 d6 \: o) M) y2 Z6 i* c0 N6 H+ S* |
Print (L"Could not write file, FileHandle05 err code is %x\n",Status);
# S2 C/ x7 W* K- I" b: S! J5 q return EFI_SUCCESS;
; z, Z, `4 a C; b) g- u$ d }
/ G! e) Z4 I& @9 F
/ s- y; e& I& _9 k8 Q FreePool(DestAddr);
& y" p8 W& e( e1 L4 {# Q- o. H6 q7 G' G5 D/ m: G* k; C) }& V. {
Status = FileHandle05->Close(FileHandle05);
* T. Y+ ?5 a& s, B/ l if (EFI_ERROR(Status)) {: W4 \4 W* n0 ?4 e( k
Print (L"Could not close file, FileHandle05 err code is %x\n",Status);
/ j! u( y! t5 Z0 O8 i5 z4 H return EFI_SUCCESS;
* L3 N7 O- u! n+ v$ T }
9 ?( T' r* p: L$ m( O! O 4 g; l/ l5 X5 d l- @$ ?* W7 |
Print(L"File Name = %s has already been created.\n", FileName);
. T1 ^3 v2 j6 D# m+ C
0 g/ V% }! a1 L2 b Print(L"\nPress ESC to reboot or any other key to return control to the firmware.\n\n");
) x' t4 O @! H1 j! P' z0 h" y WaitForKeyOrReset();( I$ \* P$ _6 H# n
5 J3 j8 Y5 n& { return Status;
, o, f# a' c: G; w3 ?. Z& e} |
|