lwip-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [lwip-users] LWIP_MPU_COMPATIBLE set to 1, but still get memory mana


From: goldsimon
Subject: Re: [lwip-users] LWIP_MPU_COMPATIBLE set to 1, but still get memory management fault in lwip_select.
Date: Thu, 07 Sep 2017 14:12:06 +0200
User-agent: K-9 Mail for Android

Looks correct. I guess mpu mode is not used too often. My suggestion would probably be to get select_cb from a Memo pool...

Simon


Am 6. September 2017 16:12:47 MESZ schrieb David Lockyer <address@hidden>:

Hi,

I have a project that uses an STM32F MCU running FreeRTOS (cortex mpu port) & lwip, with the MPU enabled.

I'm upgrading to lwip 2.0.2 from lwip 1.4.1, that I had to customize to be compatible with the MPU, in particular in lwip_select().

The motivation was to use the LWIP_MPU_COMPATIBLE define, so a direct modification of the stack source was not required.  However for me it still appears to try to access another threads memory, triggering an exception.

The changes I had to make were:

Index: lib/lwip-2.0.2/src/api/sockets.c
===================================================================
--- lib/lwip-2.0.2/src/api/sockets.c    (revision xxxxx)
+++ lib/lwip-2.0.2/src/api/sockets.c    (working copy)
@@ -1428,7 +1428,9 @@
     /* Put this select_cb on top of list */
     select_cb.next = select_cb_list;
     if (select_cb_list != NULL) {
+      RAISE_PRIVILEGE();
       select_cb_list->prev = &select_cb;
+      RESET_PRIVILEGE();
     }
     select_cb_list = &select_cb;
     /* Increasing this counter tells event_callback that the list has changed. */
@@ -1508,7 +1510,9 @@
     /* Take us off the list */
     SYS_ARCH_PROTECT(lev);
     if (select_cb.next != NULL) {
+      RAISE_PRIVILEGE();
       select_cb.next->prev = select_cb.prev;
+      RESET_PRIVILEGE();
     }
     if (select_cb_list == &select_cb) {
       LWIP_ASSERT("select_cb.prev == NULL", select_cb.prev == NULL);
@@ -1515,7 +1519,9 @@
       select_cb_list = select_cb.next;
     } else {
       LWIP_ASSERT("select_cb.prev != NULL", select_cb.prev != NULL);
+      RAISE_PRIVILEGE();
       select_cb.prev->next = select_cb.next;
+      RESET_PRIVILEGE();
     }
     /* Increasing this counter tells event_callback that the list has changed. */
     select_cb_ctr++;

Is there something else I missed here that would remove the need for this modification?


Kind regards,

David Lockyer


______________________________________________________________________
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com
______________________________________________________________________

--
Diese Nachricht wurde von meinem Android-Gerät mit K-9 Mail gesendet.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]