]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
efi_loader: manage protocols in a linked list
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 26 Nov 2017 13:05:17 +0000 (14:05 +0100)
committerAlexander Graf <agraf@suse.de>
Fri, 1 Dec 2017 12:37:49 +0000 (13:37 +0100)
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
include/efi_loader.h
lib/efi_loader/efi_boottime.c
lib/efi_loader/efi_disk.c
lib/efi_loader/efi_gop.c
lib/efi_loader/efi_net.c

index e1f0af3496eff46fc5695452e00122b3b5226eef..a73bbc126952057975d4808d1de0d06949199ddf 100644 (file)
@@ -101,6 +101,8 @@ extern unsigned int __efi_runtime_rel_start, __efi_runtime_rel_stop;
  * interface (usually a struct with callback functions), this struct maps the
  * protocol GUID to the respective protocol interface */
 struct efi_handler {
  * interface (usually a struct with callback functions), this struct maps the
  * protocol GUID to the respective protocol interface */
 struct efi_handler {
+       /* Link to the list of protocols of a handle */
+       struct list_head link;
        const efi_guid_t *guid;
        void *protocol_interface;
 };
        const efi_guid_t *guid;
        void *protocol_interface;
 };
@@ -115,8 +117,8 @@ struct efi_handler {
 struct efi_object {
        /* Every UEFI object is part of a global object list */
        struct list_head link;
 struct efi_object {
        /* Every UEFI object is part of a global object list */
        struct list_head link;
-       /* We support up to 16 "protocols" an object can be accessed through */
-       struct efi_handler protocols[16];
+       /* The list of protocols */
+       struct list_head protocols;
        /* The object spawner can either use this for data or as identifier */
        void *handle;
 };
        /* The object spawner can either use this for data or as identifier */
        void *handle;
 };
index 4cc5b1e6207bd3ef85332170c98fda6369a97c48..54e9c27db19311abde1ab3a6a5a1dbda9a55fd31 100644 (file)
@@ -339,6 +339,7 @@ efi_status_t efi_create_handle(void **handle)
                return r;
        memset(obj, 0, sizeof(struct efi_object));
        obj->handle = obj;
                return r;
        memset(obj, 0, sizeof(struct efi_object));
        obj->handle = obj;
+       INIT_LIST_HEAD(&obj->protocols);
        list_add_tail(&obj->link, &efi_obj_list);
        *handle = obj;
        return r;
        list_add_tail(&obj->link, &efi_obj_list);
        *handle = obj;
        return r;
@@ -715,18 +716,17 @@ efi_status_t efi_search_protocol(const void *handle,
                                 struct efi_handler **handler)
 {
        struct efi_object *efiobj;
                                 struct efi_handler **handler)
 {
        struct efi_object *efiobj;
-       size_t i;
-       struct efi_handler *protocol;
+       struct list_head *lhandle;
 
        if (!handle || !protocol_guid)
                return EFI_INVALID_PARAMETER;
        efiobj = efi_search_obj(handle);
        if (!efiobj)
                return EFI_INVALID_PARAMETER;
 
        if (!handle || !protocol_guid)
                return EFI_INVALID_PARAMETER;
        efiobj = efi_search_obj(handle);
        if (!efiobj)
                return EFI_INVALID_PARAMETER;
-       for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) {
-               protocol = &efiobj->protocols[i];
-               if (!protocol->guid)
-                       continue;
+       list_for_each(lhandle, &efiobj->protocols) {
+               struct efi_handler *protocol;
+
+               protocol = list_entry(lhandle, struct efi_handler, link);
                if (!guidcmp(protocol->guid, protocol_guid)) {
                        if (handler)
                                *handler = protocol;
                if (!guidcmp(protocol->guid, protocol_guid)) {
                        if (handler)
                                *handler = protocol;
@@ -750,7 +750,6 @@ efi_status_t efi_add_protocol(const void *handle, const efi_guid_t *protocol,
        struct efi_object *efiobj;
        struct efi_handler *handler;
        efi_status_t ret;
        struct efi_object *efiobj;
        struct efi_handler *handler;
        efi_status_t ret;
-       size_t i;
 
        efiobj = efi_search_obj(handle);
        if (!efiobj)
 
        efiobj = efi_search_obj(handle);
        if (!efiobj)
@@ -761,16 +760,10 @@ efi_status_t efi_add_protocol(const void *handle, const efi_guid_t *protocol,
        handler = calloc(1, sizeof(struct efi_handler));
        if (!handler)
                return EFI_OUT_OF_RESOURCES;
        handler = calloc(1, sizeof(struct efi_handler));
        if (!handler)
                return EFI_OUT_OF_RESOURCES;
-       /* Install protocol in first empty slot. */
-       for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) {
-               handler = &efiobj->protocols[i];
-               if (handler->guid)
-                       continue;
-               handler->guid = protocol;
-               handler->protocol_interface = protocol_interface;
-               return EFI_SUCCESS;
-       }
-       return EFI_OUT_OF_RESOURCES;
+       handler->guid = protocol;
+       handler->protocol_interface = protocol_interface;
+       list_add_tail(&handler->link, &efiobj->protocols);
+       return EFI_SUCCESS;
 }
 
 /*
 }
 
 /*
@@ -790,10 +783,10 @@ efi_status_t efi_remove_protocol(const void *handle, const efi_guid_t *protocol,
        ret = efi_search_protocol(handle, protocol, &handler);
        if (ret != EFI_SUCCESS)
                return ret;
        ret = efi_search_protocol(handle, protocol, &handler);
        if (ret != EFI_SUCCESS)
                return ret;
-       if (handler->protocol_interface != protocol_interface)
-               return EFI_NOT_FOUND;
-       handler->guid = NULL;
-       handler->protocol_interface = NULL;
+       if (guidcmp(handler->guid, protocol))
+               return EFI_INVALID_PARAMETER;
+       list_del(&handler->link);
+       free(handler);
        return EFI_SUCCESS;
 }
 
        return EFI_SUCCESS;
 }
 
@@ -806,17 +799,22 @@ efi_status_t efi_remove_protocol(const void *handle, const efi_guid_t *protocol,
 efi_status_t efi_remove_all_protocols(const void *handle)
 {
        struct efi_object *efiobj;
 efi_status_t efi_remove_all_protocols(const void *handle)
 {
        struct efi_object *efiobj;
-       struct efi_handler *handler;
-       size_t i;
+       struct list_head *lhandle;
+       struct list_head *pos;
 
        efiobj = efi_search_obj(handle);
        if (!efiobj)
                return EFI_INVALID_PARAMETER;
 
        efiobj = efi_search_obj(handle);
        if (!efiobj)
                return EFI_INVALID_PARAMETER;
+       list_for_each_safe(lhandle, pos, &efiobj->protocols) {
+               struct efi_handler *protocol;
+               efi_status_t ret;
 
 
-       for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) {
-               handler = &efiobj->protocols[i];
-               handler->guid = NULL;
-               handler->protocol_interface = NULL;
+               protocol = list_entry(lhandle, struct efi_handler, link);
+
+               ret = efi_remove_protocol(handle, protocol->guid,
+                                         protocol->protocol_interface);
+               if (ret != EFI_SUCCESS)
+                       return ret;
        }
        return EFI_SUCCESS;
 }
        }
        return EFI_SUCCESS;
 }
@@ -1171,6 +1169,7 @@ void efi_setup_loaded_image(struct efi_loaded_image *info, struct efi_object *ob
        if (device_path)
                info->device_handle = efi_dp_find_obj(device_path, NULL);
 
        if (device_path)
                info->device_handle = efi_dp_find_obj(device_path, NULL);
 
+       INIT_LIST_HEAD(&obj->protocols);
        list_add_tail(&obj->link, &efi_obj_list);
        /*
         * When asking for the device path interface, return
        list_add_tail(&obj->link, &efi_obj_list);
        /*
         * When asking for the device path interface, return
@@ -1648,8 +1647,7 @@ static efi_status_t EFIAPI efi_protocols_per_handle(void *handle,
 {
        unsigned long buffer_size;
        struct efi_object *efiobj;
 {
        unsigned long buffer_size;
        struct efi_object *efiobj;
-       unsigned long i, j;
-       struct list_head *lhandle;
+       struct list_head *protocol_handle;
        efi_status_t r;
 
        EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
        efi_status_t r;
 
        EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
@@ -1660,36 +1658,33 @@ static efi_status_t EFIAPI efi_protocols_per_handle(void *handle,
 
        *protocol_buffer = NULL;
        *protocol_buffer_count = 0;
 
        *protocol_buffer = NULL;
        *protocol_buffer_count = 0;
-       list_for_each(lhandle, &efi_obj_list) {
-               efiobj = list_entry(lhandle, struct efi_object, link);
 
 
-               if (efiobj->handle != handle)
-                       continue;
+       efiobj = efi_search_obj(handle);
+       if (!efiobj)
+               return EFI_EXIT(EFI_INVALID_PARAMETER);
 
 
-               /* Count protocols */
-               for (i = 0; i < ARRAY_SIZE(efiobj->protocols); i++) {
-                       if (efiobj->protocols[i].guid)
-                               ++*protocol_buffer_count;
-               }
-               /* Copy guids */
-               if (*protocol_buffer_count) {
-                       buffer_size = sizeof(efi_guid_t *) *
-                                       *protocol_buffer_count;
-                       r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES,
-                                             buffer_size,
-                                             (void **)protocol_buffer);
-                       if (r != EFI_SUCCESS)
-                               return EFI_EXIT(r);
-                       j = 0;
-                       for (i = 0; i < ARRAY_SIZE(efiobj->protocols); ++i) {
-                               if (efiobj->protocols[i].guid) {
-                                       (*protocol_buffer)[j] = (void *)
-                                               efiobj->protocols[i].guid;
-                                       ++j;
-                               }
-                       }
+       /* Count protocols */
+       list_for_each(protocol_handle, &efiobj->protocols) {
+               ++*protocol_buffer_count;
+       }
+
+       /* Copy guids */
+       if (*protocol_buffer_count) {
+               size_t j = 0;
+
+               buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
+               r = efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, buffer_size,
+                                     (void **)protocol_buffer);
+               if (r != EFI_SUCCESS)
+                       return EFI_EXIT(r);
+               list_for_each(protocol_handle, &efiobj->protocols) {
+                       struct efi_handler *protocol;
+
+                       protocol = list_entry(protocol_handle,
+                                             struct efi_handler, link);
+                       (*protocol_buffer)[j] = (void *)protocol->guid;
+                       ++j;
                }
                }
-               break;
        }
 
        return EFI_EXIT(EFI_SUCCESS);
        }
 
        return EFI_EXIT(EFI_SUCCESS);
index 1d6cf3122fd2ca1dbf678a2eb6cea0c7552ee641..af8db40e19ba112977e54690cec2e86bb5fd7d58 100644 (file)
@@ -224,6 +224,7 @@ static void efi_disk_add_dev(const char *name,
                goto out_of_memory;
 
        /* Hook up to the device list */
                goto out_of_memory;
 
        /* Hook up to the device list */
+       INIT_LIST_HEAD(&diskobj->parent.protocols);
        list_add_tail(&diskobj->parent.link, &efi_obj_list);
 
        /* Fill in object data */
        list_add_tail(&diskobj->parent.link, &efi_obj_list);
 
        /* Fill in object data */
index 7b74d6ef330c2942109ca3246c22050a3d9f045f..498184d754209bfa2df9f73539933520e977a496 100644 (file)
@@ -180,6 +180,7 @@ int efi_gop_register(void)
        }
 
        /* Hook up to the device list */
        }
 
        /* Hook up to the device list */
+       INIT_LIST_HEAD(&gopobj->parent.protocols);
        list_add_tail(&gopobj->parent.link, &efi_obj_list);
 
        /* Fill in object data */
        list_add_tail(&gopobj->parent.link, &efi_obj_list);
 
        /* Fill in object data */
index 8b2f682351a299b90d314d80f8ead87328c90587..74a67c5365d937f8b847809d2f76614494b5a640 100644 (file)
@@ -296,6 +296,7 @@ int efi_net_register(void)
                goto out_of_memory;
 
        /* Hook net up to the device list */
                goto out_of_memory;
 
        /* Hook net up to the device list */
+       INIT_LIST_HEAD(&netobj->parent.protocols);
        list_add_tail(&netobj->parent.link, &efi_obj_list);
 
        /* Fill in object data */
        list_add_tail(&netobj->parent.link, &efi_obj_list);
 
        /* Fill in object data */