summaryrefslogtreecommitdiff
path: root/UnixPkg/Sec/Gasket.h
blob: 4c75d8abcc83ee30ba7f1b9d5d8b732e4c1e4df9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
/** @file

  Copyright (c) 2008 - 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.

**/

#ifndef _GASKET_H_
#define _GASKET_H_

#include <Library/PeCoffLib.h>

#include <Protocol/UgaDraw.h>
#include <Protocol/SimpleTextIn.h>
#include <Protocol/SimpleTextInEx.h>
#include <Protocol/UnixUgaIo.h>


//
// Gasket functions for EFI_UNIX_THUNK_PROTOCOL
//

void
EFIAPI
GasketmsSleep (unsigned long Milliseconds);

void
EFIAPI
Gasketexit (
  int status
  );

void
EFIAPI
GasketSetTimer (
  UINT64 PeriodMs,
  VOID (*CallBack)(UINT64 DeltaMs)
  );

void
EFIAPI
GasketGetLocalTime (
  EFI_TIME *Time
  );

struct tm *
EFIAPI
Gasketgmtime (
  const time_t *clock
  );

long
EFIAPI
GasketGetTimeZone (
  void
  );

int
EFIAPI
GasketGetDayLight (
  void
  );


int
EFIAPI
Gasketpoll (
  struct pollfd *pfd,
  unsigned int nfds,
  int timeout
  );

long
EFIAPI
Gasketread (
  int fd,
  void *buf,
  int count);

long
EFIAPI
Gasketwrite (
  int fd,
  const void *buf,
  int count
  );

char *
EFIAPI
Gasketgetenv (
  const char *name
  );

int
EFIAPI
Gasketopen (
  const char *name,
  int flags,
  int mode
  );

off_t
EFIAPI
Gasketlseek (
  int fd,
  off_t off,
  int whence
  );

int
EFIAPI
Gasketftruncate (
  int fd,
  long int len
  );

int
EFIAPI
Gasketclose (
  int fd
  );

int
EFIAPI
Gasketmkdir (
  const char *pathname,
  mode_t mode
  );

int
EFIAPI
Gasketrmdir (
  const char *pathname
  );

int
EFIAPI
Gasketunlink (
  const char *pathname
  );

int
EFIAPI
GasketGetErrno (
  void
  );

DIR *
EFIAPI
Gasketopendir (
  const char *pathname
  );

void
EFIAPI
Gasketrewinddir (
  DIR *dir
  );

struct dirent *
EFIAPI
Gasketreaddir (
  DIR *dir
  );

int
EFIAPI
Gasketclosedir (
  DIR *dir
  );

int
EFIAPI
Gasketstat (
  const char  *path, 
  STAT_FIX    *buf)
  ;

int
EFIAPI
Gasketstatfs (
  const char      *path, 
  struct statfs   *buf
  );

int
EFIAPI
Gasketrename (
  const char *oldpath,
  const char *newpath
  );

time_t
EFIAPI
Gasketmktime (
  struct tm *tm
  );

int
EFIAPI
Gasketfsync (
  int fd
  );

int
EFIAPI
Gasketchmod (
  const char *path,
  mode_t mode
  );

int
EFIAPI
Gasketutime (
  const char *filename,
  const struct utimbuf *buf
  );

int
EFIAPI
Gaskettcflush (
  int fildes,
  int queue_selector
  );

EFI_STATUS
EFIAPI
GasketUgaCreate (
  struct _EFI_UNIX_UGA_IO_PROTOCOL **UgaIo,
  CONST CHAR16 *Title
  );

void
EFIAPI
Gasketperror (
  __const char *__s
  );

//
// ... is always an int or pointer to device specific data structure
//

int
EFIAPI
Gasketioctl (
  int fd,
  unsigned long int __request,
  void *Arg
  );

int
EFIAPI
Gasketfcntl (
  int __fd,
  int __cmd,
  void *Arg
  );

int
EFIAPI
Gasketcfsetispeed (
  struct termios *__termios_p,
  speed_t __speed
  );

int
EFIAPI
Gasketcfsetospeed (
  struct termios *__termios_p,
  speed_t __speed
  );

int
EFIAPI
Gaskettcgetattr (
  int __fd,
  struct termios *__termios_p
  );

int
EFIAPI
Gaskettcsetattr (
  int __fd,
  int __optional_actions,
  __const struct termios *__termios_p
  );

int
EFIAPI
Gasketsigaction (
  int sig,
  const struct sigaction *act,
  struct sigaction *oact
  );

int 
EFIAPI 
Gasketgetifaddrs (
  struct ifaddrs **ifap
  );

void 
EFIAPI 
Gasketfreeifaddrs (
  struct ifaddrs *ifap
  );

int 
EFIAPI 
Gasketsocket (
  int domain, 
  int type, 
  int protocol
  );

void 
EFIAPI 
GasketUnixEnableInterrupt (void);

void 
EFIAPI 
GasketUnixDisableInterrupt (void);

RETURN_STATUS
EFIAPI
GasketUnixPeCoffGetEntryPoint (
  IN     VOID  *Pe32Data,
  IN OUT VOID  **EntryPoint
  );

VOID
EFIAPI
GasketUnixPeCoffRelocateImageExtraAction (
  IN OUT PE_COFF_LOADER_IMAGE_CONTEXT  *ImageContext
  );

VOID
EFIAPI
GasketUnixPeCoffUnloadImageExtraAction (
  IN OUT PE_COFF_LOADER_IMAGE_CONTEXT  *ImageContext
  );



UINTN
EFIAPI
GasketVoid (
  void *api
  );

UINTN
EFIAPI
GasketUintn (
  void *api,
  UINTN a
  );

UINTN
EFIAPI
GasketUintnUintn (
  void *api,
  UINTN a,
  UINTN b
  );

UINTN
EFIAPI
GasketUintnUintnUintn (
  void *api,
  UINTN a,
  UINTN b,
  UINTN c
  );

UINTN
EFIAPI
GasketUintnUintnUintnUintn (
  void *api,
  UINTN a,
  UINTN b,
  UINTN c,
  UINTN d
  );

UINTN
EFIAPI
GasketUintn10Args (
  void *api,
  UINTN a,
  UINTN b,
  UINTN c,
  UINTN d,
  UINTN e,
  UINTN f,
  UINTN g,
  UINTN h,
  UINTN i,
  UINTN j
  );

UINTN
EFIAPI
GasketUint64Uintn (
  void *api,
  UINT64 a,
  UINTN b);

UINT64
EFIAPI
GasketUintnUint64Uintn (
  void *api,
  UINTN a,
  UINT64 b,
  UINTN c
  );

UINTN
EFIAPI
GasketUintnUint16 (
  void *api,
  UINTN a,
  UINT16 b
  );

typedef
void
(*CALL_BACK) (
  UINT64 Delta
  );

UINTN
ReverseGasketUint64 (
  CALL_BACK CallBack,
  UINT64 a
  );

UINTN
ReverseGasketUint64Uint64 (
  VOID      *CallBack,
  VOID      *Context,
  VOID      *Key
  );

//
// Gasket functions for EFI_UNIX_UGA_IO_PROTOCOL
//


EFI_STATUS
EFIAPI
GasketUgaClose (
  EFI_UNIX_UGA_IO_PROTOCOL *UgaIo
  );

EFI_STATUS
EFIAPI
GasketUgaSize (
  EFI_UNIX_UGA_IO_PROTOCOL *UgaIo,
  UINT32 Width,
  UINT32 Height
  );

EFI_STATUS
EFIAPI
GasketUgaCheckKey (
  EFI_UNIX_UGA_IO_PROTOCOL *UgaIo
  );

EFI_STATUS
EFIAPI
GasketUgaGetKey (
  EFI_UNIX_UGA_IO_PROTOCOL *UgaIo,
  EFI_KEY_DATA              *key
  );

EFI_STATUS
EFIAPI
GasketUgaKeySetState (
   EFI_UNIX_UGA_IO_PROTOCOL *UgaIo,
  EFI_KEY_TOGGLE_STATE *KeyToggleState
  );
  
EFI_STATUS
EFIAPI  
GasketUgaRegisterKeyNotify ( 
  IN EFI_UNIX_UGA_IO_PROTOCOL           *UgaIo, 
  IN UGA_REGISTER_KEY_NOTIFY_CALLBACK   CallBack,
  IN VOID                               *Context
  );
  
EFI_STATUS
EFIAPI
GasketUgaBlt (
  IN  EFI_UNIX_UGA_IO_PROTOCOL                *UgaIo,
   IN  EFI_UGA_PIXEL                           *BltBuffer OPTIONAL,
   IN  EFI_UGA_BLT_OPERATION                   BltOperation,
  IN  UGA_BLT_ARGS                            *Args
   );

EFI_STATUS
EFIAPI
GasketUgaCheckPointer (
  EFI_UNIX_UGA_IO_PROTOCOL *UgaIo
  );

EFI_STATUS 
EFIAPI 
GasketUgaGetPointerState (
  EFI_UNIX_UGA_IO_PROTOCOL *UgaIo, 
  EFI_SIMPLE_POINTER_STATE *state
  );


//
// Gasket functions for EFI_UNIX_UGA_IO_PROTOCOL C calls
//


EFI_STATUS
EFIAPI
UgaCreate (
  EFI_UNIX_UGA_IO_PROTOCOL **Uga,
  CONST CHAR16 *Title
  );

EFI_STATUS
EFIAPI
UgaClose (
  EFI_UNIX_UGA_IO_PROTOCOL *UgaIo
  );

EFI_STATUS
EFIAPI
UgaSize(
  EFI_UNIX_UGA_IO_PROTOCOL *UgaIo,
  UINT32 Width,
  UINT32 Height
  );

EFI_STATUS
EFIAPI
UgaCheckKey(
  EFI_UNIX_UGA_IO_PROTOCOL *UgaIo
  );

EFI_STATUS
EFIAPI
UgaGetKey (
  EFI_UNIX_UGA_IO_PROTOCOL *UgaIo,
  EFI_KEY_DATA             *key
  );

EFI_STATUS
EFIAPI
UgaRegisterKeyNotify (
  IN EFI_UNIX_UGA_IO_PROTOCOL           *UgaIo, 
  IN UGA_REGISTER_KEY_NOTIFY_CALLBACK   CallBack,
  IN VOID                               *Context
  );


EFI_STATUS
EFIAPI
UgaBlt (
  IN  EFI_UNIX_UGA_IO_PROTOCOL                *UgaIo,
  IN  EFI_UGA_PIXEL                           *BltBuffer OPTIONAL,
  IN  EFI_UGA_BLT_OPERATION                   BltOperation,
  IN  UGA_BLT_ARGS                            *Args
  );

EFI_STATUS 
EFIAPI
UgaCheckPointer (
  IN EFI_UNIX_UGA_IO_PROTOCOL *UgaIo
  );
  
EFI_STATUS
EFIAPI
UgaGetPointerState (
  IN EFI_UNIX_UGA_IO_PROTOCOL *UgaIo, 
  IN EFI_SIMPLE_POINTER_STATE *State
  );


#endif