rtos/ThreadX: added check for NULL-named tasks 28/7328/4
authorGiulio Fieramosca <giulio@glgprograms.it>
Thu, 3 Nov 2022 19:38:20 +0000 (20:38 +0100)
committerAntonio Borneo <borneo.antonio@gmail.com>
Tue, 15 Nov 2022 21:35:12 +0000 (21:35 +0000)
Thread name loading was not correctly handled if a ThreadX task has a NULL
name.

Signed-off-by: Giulio Fieramosca <giulio@glgprograms.it>
Change-Id: I03071930182bc2585b61ce5d8c67491710883dd6
Reviewed-on: https://review.openocd.org/c/openocd/+/7328
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
src/rtos/ThreadX.c

index 5f90eb6445d40d2a4a1d5915234d2803f9c21f88..5bdd007d42699bc7aaae7439d93fd9d3709fc275 100644 (file)
@@ -370,16 +370,21 @@ static int threadx_update_threads(struct rtos *rtos)
                }
 
                /* Read the thread name */
-               retval =
-                       target_read_buffer(rtos->target,
-                               name_ptr,
-                               THREADX_THREAD_NAME_STR_SIZE,
-                               (uint8_t *)&tmp_str);
-               if (retval != ERROR_OK) {
-                       LOG_ERROR("Error reading thread name from ThreadX target");
-                       return retval;
+               tmp_str[0] = '\x00';
+
+               /* Check if thread has a valid name */
+               if (name_ptr != 0) {
+                       retval =
+                               target_read_buffer(rtos->target,
+                                       name_ptr,
+                                       THREADX_THREAD_NAME_STR_SIZE,
+                                       (uint8_t *)&tmp_str);
+                       if (retval != ERROR_OK) {
+                               LOG_ERROR("Error reading thread name from ThreadX target");
+                               return retval;
+                       }
+                       tmp_str[THREADX_THREAD_NAME_STR_SIZE - 1] = '\x00';
                }
-               tmp_str[THREADX_THREAD_NAME_STR_SIZE-1] = '\x00';
 
                if (tmp_str[0] == '\x00')
                        strcpy(tmp_str, "No Name");

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)