From: Ard Biesheuvel <ardb@kernel.org>
To: grub-devel@gnu.org
Cc: dkiper@net-space.pl, Ard Biesheuvel <ardb@kernel.org>
Subject: [PATCH v2 2/6] efi: Make EFI PXE protocol methods non-callable
Date: Thu, 11 May 2023 14:06:36 +0200 [thread overview]
Message-ID: <20230511120640.3518732-3-ardb@kernel.org> (raw)
In-Reply-To: <20230511120640.3518732-1-ardb@kernel.org>
The grub_efi_pxe_t struct definition has placeholders for the various
protocol method pointers, given that they are never called in the code,
and the prototypes have been omitted, and therefore do not comply with
the UEFI spec.
So let's convert them into void* pointers, so they cannot be called
inadvertently.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
---
include/grub/efi/api.h | 24 ++++++++++----------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/include/grub/efi/api.h b/include/grub/efi/api.h
index b4c4646651cd53f5..da1a80ca3a94fe1c 100644
--- a/include/grub/efi/api.h
+++ b/include/grub/efi/api.h
@@ -1539,18 +1539,18 @@ typedef struct grub_efi_pxe_mode
typedef struct grub_efi_pxe
{
grub_uint64_t rev;
- void (*start) (void);
- void (*stop) (void);
- void (*dhcp) (void);
- void (*discover) (void);
- void (*mftp) (void);
- void (*udpwrite) (void);
- void (*udpread) (void);
- void (*setipfilter) (void);
- void (*arp) (void);
- void (*setparams) (void);
- void (*setstationip) (void);
- void (*setpackets) (void);
+ void *start;
+ void *stop;
+ void *dhcp;
+ void *discover;
+ void *mftp;
+ void *udpwrite;
+ void *udpread;
+ void *setipfilter;
+ void *arp;
+ void *setparams;
+ void *setstationip;
+ void *setpackets;
struct grub_efi_pxe_mode *mode;
} grub_efi_pxe_t;
--
2.39.2
next prev parent reply other threads:[~2023-05-11 12:06 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-11 12:06 [PATCH v2 0/6] efi: Implement generic EFI boot for x86 Ard Biesheuvel
2023-05-11 12:06 ` [PATCH v2 1/6] ia64: Remove support Ard Biesheuvel
2023-05-11 12:14 ` John Paul Adrian Glaubitz
2023-05-11 12:17 ` Ard Biesheuvel
2023-05-11 12:42 ` Steve McIntyre
2023-05-11 13:34 ` John Paul Adrian Glaubitz
2023-05-11 14:29 ` Ard Biesheuvel
2023-05-11 18:42 ` matoro
2023-05-11 22:09 ` Ard Biesheuvel
2023-05-11 22:40 ` matoro
2023-05-12 9:49 ` Ard Biesheuvel
2023-05-12 13:39 ` Gerd Hoffmann
2023-05-12 15:36 ` matoro
2023-05-12 0:08 ` Lennart Sorensen
2023-05-12 10:41 ` John Paul Adrian Glaubitz
2023-05-12 10:56 ` Ard Biesheuvel
2023-05-14 6:31 ` Oskari Pirhonen
2023-05-11 22:31 ` Vladimir 'phcoder' Serbinenko
2023-05-11 12:06 ` Ard Biesheuvel [this message]
2023-05-11 12:06 ` [PATCH v2 3/6] efi: Add calling convention annotation to all prototypes Ard Biesheuvel
2023-05-11 12:06 ` [PATCH v2 4/6] efi: Drop all uses of efi_call_XX wrappers Ard Biesheuvel
2023-05-11 12:06 ` [PATCH v2 5/6] efi: Remove x86_64 call wrappers Ard Biesheuvel
2023-05-11 12:06 ` [PATCH v2 6/6] efi: Use generic EFI loader for x86_64 and i386 Ard Biesheuvel
2023-05-11 12:14 ` Ard Biesheuvel
2023-05-14 5:12 ` Glenn Washburn
2023-05-16 17:57 ` Ard Biesheuvel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230511120640.3518732-3-ardb@kernel.org \
--to=ardb@kernel.org \
--cc=dkiper@net-space.pl \
--cc=grub-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.