1 /***************************************************************************
2 * Copyright (C) 2011 by STEricsson *
3 * Heythem Bouhaja heythem.bouhaja@stericsson.com : creation *
4 * Michel JAOUEN michel.jaouen@stericsson.com : adaptation to rtos *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
18 ***************************************************************************/
24 #include <helper/time_support.h>
25 #include <jtag/jtag.h>
26 #include "target/target.h"
27 #include "target/target_type.h"
28 #include "helper/log.h"
29 #include "helper/types.h"
31 #include "rtos_standard_stackings.h"
32 #include <target/register.h>
33 #include "server/gdb_server.h"
35 #define LINUX_USER_KERNEL_BORDER 0xc0000000
36 #include "linux_header.h"
38 #define MAX_THREADS 200
42 uint32_t init_task_addr;
45 int preupdtate_threadid_count;
48 int threads_needs_update;
49 struct current_thread *current_threads;
50 struct threads *thread_list;
51 /* virt2phys parameter */
56 struct current_thread {
63 struct current_thread *next;
68 uint32_t base_addr; /* address to read magic */
69 uint32_t state; /* magic value : filled only at creation */
70 uint32_t pid; /* linux pid : id for identifying a thread */
71 uint32_t oncpu; /* content cpu number in current thread */
72 uint32_t asid; /* filled only at creation */
74 int status; /* dead = 1 alive = 2 current = 3 alive and current */
75 /* value that should not change during the live of a thread ? */
76 uint32_t thread_info_addr; /* contain latest thread_info_addr computed */
77 /* retrieve from thread_info */
78 struct cpu_context *context;
93 uint32_t preempt_count;
95 static struct cpu_context *cpu_context_read(struct target *target, uint32_t base_addr,
97 static int insert_into_threadlist(struct target *target, struct threads *t);
99 static int linux_os_create(struct target *target);
101 static int linux_os_dummy_update(struct rtos *rtos)
103 /* update is done only when thread request come
104 * too many thread to do it on each stop */
108 static int linux_compute_virt2phys(struct target *target, target_addr_t address)
110 struct linux_os *linux_os = (struct linux_os *)
111 target->rtos->rtos_specific_params;
112 target_addr_t pa = 0;
113 int retval = target->type->virt2phys(target, address, &pa);
114 if (retval != ERROR_OK) {
115 LOG_ERROR("Cannot compute linux virt2phys translation");
116 /* fixes default address */
117 linux_os->phys_base = 0;
121 linux_os->init_task_addr = address;
122 address = address & linux_os->phys_mask;
123 linux_os->phys_base = pa - address;
127 static int linux_read_memory(struct target *target,
128 uint32_t address, uint32_t size, uint32_t count,
132 struct linux_os *linux_os = (struct linux_os *)
133 target->rtos->rtos_specific_params;
134 uint32_t pa = (address & linux_os->phys_mask) + linux_os->phys_base;
136 if (address < 0xc000000) {
137 LOG_ERROR("linux awareness : address in user space");
141 target_read_phys_memory(target, pa, size, count, buffer);
143 target_read_memory(target, address, size, count, buffer);
147 static int fill_buffer(struct target *target, uint32_t addr, uint8_t *buffer)
150 if ((addr & 0xfffffffc) != addr)
151 LOG_INFO("unaligned address %" PRIx32 "!!", addr);
153 int retval = linux_read_memory(target, addr, 4, 1, buffer);
158 static uint32_t get_buffer(struct target *target, const uint8_t *buffer)
161 const uint8_t *value_ptr = buffer;
162 value = target_buffer_get_u32(target, value_ptr);
166 static int linux_os_thread_reg_list(struct rtos *rtos,
167 int64_t thread_id, struct rtos_reg **reg_list, int *num_regs)
169 struct target *target = rtos->target;
170 struct linux_os *linux_os = (struct linux_os *)
171 target->rtos->rtos_specific_params;
172 struct current_thread *tmp = linux_os->current_threads;
173 struct current_thread *next;
176 /* check if a current thread is requested */
180 if (next->threadid == thread_id)
184 } while ((found == 0) && (next != tmp) && (next));
187 LOG_ERROR("could not find thread: %" PRIx64, thread_id);
191 /* search target to perform the access */
192 struct reg **gdb_reg_list;
193 struct target_list *head;
197 if (head->target->coreid == next->core_id) {
199 target = head->target;
204 } while ((head != (struct target_list *)NULL) && (found == 0));
209 "current thread %" PRIx64 ": no target to perform access of core id %" PRIx32,
215 /*LOG_INFO("thread %lx current on core %x",thread_id, target->coreid);*/
216 retval = target_get_gdb_reg_list(target, &gdb_reg_list, num_regs, REG_CLASS_GENERAL);
217 if (retval != ERROR_OK)
220 *reg_list = calloc(*num_regs, sizeof(struct rtos_reg));
222 for (int i = 0; i < *num_regs; ++i) {
223 if (!gdb_reg_list[i]->valid)
224 gdb_reg_list[i]->type->get(gdb_reg_list[i]);
226 (*reg_list)[i].number = gdb_reg_list[i]->number;
227 (*reg_list)[i].size = gdb_reg_list[i]->size;
229 buf_cpy(gdb_reg_list[i]->value, (*reg_list)[i].value, (*reg_list)[i].size);
235 static bool linux_os_detect(struct target *target)
237 LOG_INFO("should no be called");
241 static int linux_os_smp_init(struct target *target);
242 static int linux_os_clean(struct target *target);
244 static const char * const linux_symbol_list[] = {
249 static int linux_get_symbol_list_to_lookup(struct symbol_table_elem *symbol_list[])
252 *symbol_list = (struct symbol_table_elem *)
253 calloc(ARRAY_SIZE(linux_symbol_list), sizeof(struct symbol_table_elem));
255 for (i = 0; i < ARRAY_SIZE(linux_symbol_list); i++)
256 (*symbol_list)[i].symbol_name = linux_symbol_list[i];
261 static char *linux_ps_command(struct target *target);
263 const struct rtos_type linux_rtos = {
265 .detect_rtos = linux_os_detect,
266 .create = linux_os_create,
267 .smp_init = linux_os_smp_init,
268 .update_threads = linux_os_dummy_update,
269 .get_thread_reg_list = linux_os_thread_reg_list,
270 .get_symbol_list_to_lookup = linux_get_symbol_list_to_lookup,
271 .clean = linux_os_clean,
272 .ps_command = linux_ps_command,
275 static int linux_thread_packet(struct connection *connection, char const *packet,
277 static void linux_identify_current_threads(struct target *target);
280 int fill_task_pid(struct target *target, struct threads *t)
282 uint32_t pid_addr = t->base_addr + PID;
284 int retval = fill_buffer(target, pid_addr, buffer);
286 if (retval == ERROR_OK) {
287 uint32_t val = get_buffer(target, buffer);
290 LOG_ERROR("fill_task_pid: unable to read memory");
296 static int fill_task(struct target *target, struct threads *t)
299 uint32_t pid_addr = t->base_addr + PID;
300 uint32_t mem_addr = t->base_addr + MEM;
301 uint32_t on_cpu = t->base_addr + ONCPU;
302 uint8_t *buffer = calloc(1, 4);
303 retval = fill_buffer(target, t->base_addr, buffer);
305 if (retval == ERROR_OK) {
306 uint32_t val = get_buffer(target, buffer);
309 LOG_ERROR("fill_task: unable to read memory");
311 retval = fill_buffer(target, pid_addr, buffer);
313 if (retval == ERROR_OK) {
314 uint32_t val = get_buffer(target, buffer);
317 LOG_ERROR("fill task: unable to read memory");
319 retval = fill_buffer(target, on_cpu, buffer);
321 if (retval == ERROR_OK) {
322 uint32_t val = get_buffer(target, buffer);
325 LOG_ERROR("fill task: unable to read memory");
327 retval = fill_buffer(target, mem_addr, buffer);
329 if (retval == ERROR_OK) {
330 uint32_t val = get_buffer(target, buffer);
333 uint32_t asid_addr = val + MM_CTX;
334 retval = fill_buffer(target, asid_addr, buffer);
336 if (retval == ERROR_OK) {
337 val = get_buffer(target, buffer);
341 ("fill task: unable to read memory -- ASID");
345 LOG_ERROR("fill task: unable to read memory");
352 static int get_name(struct target *target, struct threads *t)
355 uint32_t full_name[4];
356 uint32_t comm = t->base_addr + COMM;
359 for (i = 0; i < 17; i++)
362 retval = linux_read_memory(target, comm, 4, 4, (uint8_t *) full_name);
364 if (retval != ERROR_OK) {
365 LOG_ERROR("get_name: unable to read memory\n");
369 uint32_t raw_name = target_buffer_get_u32(target,
372 t->name[3] = raw_name >> 24;
373 t->name[2] = raw_name >> 16;
374 t->name[1] = raw_name >> 8;
375 t->name[0] = raw_name;
377 target_buffer_get_u32(target, (const uint8_t *)&full_name[1]);
378 t->name[7] = raw_name >> 24;
379 t->name[6] = raw_name >> 16;
380 t->name[5] = raw_name >> 8;
381 t->name[4] = raw_name;
383 target_buffer_get_u32(target, (const uint8_t *)&full_name[2]);
384 t->name[11] = raw_name >> 24;
385 t->name[10] = raw_name >> 16;
386 t->name[9] = raw_name >> 8;
387 t->name[8] = raw_name;
389 target_buffer_get_u32(target, (const uint8_t *)&full_name[3]);
390 t->name[15] = raw_name >> 24;
391 t->name[14] = raw_name >> 16;
392 t->name[13] = raw_name >> 8;
393 t->name[12] = raw_name;
398 static int get_current(struct target *target, int create)
400 struct target_list *head;
405 uint8_t *buffer = calloc(1, 4);
406 struct linux_os *linux_os = (struct linux_os *)
407 target->rtos->rtos_specific_params;
408 struct current_thread *ctt = linux_os->current_threads;
410 /* invalid current threads content */
413 ctt->TS = 0xdeadbeef;
417 while (head != (struct target_list *)NULL) {
418 struct reg **reg_list;
422 if (target_get_gdb_reg_list(head->target, ®_list,
423 ®_list_size, REG_CLASS_GENERAL) != ERROR_OK) {
425 return ERROR_TARGET_FAILURE;
428 if (!reg_list[13]->valid)
429 reg_list[13]->type->get(reg_list[13]);
431 buf = reg_list[13]->value;
432 val = get_buffer(target, buf);
433 ti_addr = (val & 0xffffe000);
434 uint32_t ts_addr = ti_addr + 0xc;
435 retval = fill_buffer(target, ts_addr, buffer);
437 if (retval == ERROR_OK) {
438 uint32_t TS = get_buffer(target, buffer);
439 uint32_t cpu, on_cpu = TS + ONCPU;
440 retval = fill_buffer(target, on_cpu, buffer);
442 if (retval == ERROR_OK) {
443 /*uint32_t cpu = get_buffer(target, buffer);*/
444 struct current_thread *ct =
445 linux_os->current_threads;
446 cpu = head->target->coreid;
448 while ((ct) && (ct->core_id != (int32_t) cpu))
451 if ((ct) && (ct->TS == 0xdeadbeef))
455 ("error in linux current thread update");
459 t = calloc(1, sizeof(struct threads));
460 t->base_addr = ct->TS;
461 fill_task(target, t);
464 insert_into_threadlist(target, t);
466 t->thread_info_addr = 0xdeadbeef;
467 ct->threadid = t->threadid;
468 linux_os->thread_count++;
472 /*LOG_INFO("Creation of current thread %s",t->name);*/
486 static struct cpu_context *cpu_context_read(struct target *target, uint32_t base_addr,
487 uint32_t *thread_info_addr_old)
489 struct cpu_context *context = calloc(1, sizeof(struct cpu_context));
490 uint32_t preempt_count_addr = 0;
491 uint32_t registers[10];
492 uint8_t *buffer = calloc(1, 4);
493 uint32_t stack = base_addr + QAT;
494 uint32_t thread_info_addr = 0;
495 uint32_t thread_info_addr_update = 0;
496 int retval = ERROR_FAIL;
497 context->R4 = 0xdeadbeef;
498 context->R5 = 0xdeadbeef;
499 context->R6 = 0xdeadbeef;
500 context->R7 = 0xdeadbeef;
501 context->R8 = 0xdeadbeef;
502 context->R9 = 0xdeadbeef;
503 context->IP = 0xdeadbeef;
504 context->FP = 0xdeadbeef;
505 context->SP = 0xdeadbeef;
506 context->PC = 0xdeadbeef;
509 if (*thread_info_addr_old == 0xdeadbeef) {
510 retval = fill_buffer(target, stack, buffer);
512 if (retval == ERROR_OK)
513 thread_info_addr = get_buffer(target, buffer);
515 LOG_ERROR("cpu_context: unable to read memory");
517 thread_info_addr_update = thread_info_addr;
519 thread_info_addr = *thread_info_addr_old;
521 preempt_count_addr = thread_info_addr + PREEMPT;
522 retval = fill_buffer(target, preempt_count_addr, buffer);
524 if (retval == ERROR_OK)
525 context->preempt_count = get_buffer(target, buffer);
527 if (*thread_info_addr_old != 0xdeadbeef) {
529 ("cpu_context: cannot read at thread_info_addr");
531 if (*thread_info_addr_old < LINUX_USER_KERNEL_BORDER)
533 ("cpu_context : thread_info_addr in userspace!!!");
535 *thread_info_addr_old = 0xdeadbeef;
539 LOG_ERROR("cpu_context: unable to read memory");
542 thread_info_addr += CPU_CONT;
544 retval = linux_read_memory(target, thread_info_addr, 4, 10,
545 (uint8_t *) registers);
547 if (retval != ERROR_OK) {
549 LOG_ERROR("cpu_context: unable to read memory\n");
554 target_buffer_get_u32(target, (const uint8_t *)®isters[0]);
556 target_buffer_get_u32(target, (const uint8_t *)®isters[1]);
558 target_buffer_get_u32(target, (const uint8_t *)®isters[2]);
560 target_buffer_get_u32(target, (const uint8_t *)®isters[3]);
562 target_buffer_get_u32(target, (const uint8_t *)®isters[4]);
564 target_buffer_get_u32(target, (const uint8_t *)®isters[5]);
566 target_buffer_get_u32(target, (const uint8_t *)®isters[6]);
568 target_buffer_get_u32(target, (const uint8_t *)®isters[7]);
570 target_buffer_get_u32(target, (const uint8_t *)®isters[8]);
572 target_buffer_get_u32(target, (const uint8_t *)®isters[9]);
574 if (*thread_info_addr_old == 0xdeadbeef)
575 *thread_info_addr_old = thread_info_addr_update;
582 static uint32_t next_task(struct target *target, struct threads *t)
584 uint8_t *buffer = calloc(1, 4);
585 uint32_t next_addr = t->base_addr + NEXT;
586 int retval = fill_buffer(target, next_addr, buffer);
588 if (retval == ERROR_OK) {
589 uint32_t val = get_buffer(target, buffer);
594 LOG_ERROR("next task: unable to read memory");
601 static struct current_thread *add_current_thread(struct current_thread *currents,
602 struct current_thread *ct)
610 struct current_thread *temp = currents;
620 static struct threads *liste_del_task(struct threads *task_list, struct threads **t,
621 struct threads *prev)
623 LOG_INFO("del task %" PRId64, (*t)->threadid);
625 prev->next = (*t)->next;
627 task_list = (*t)->next;
629 /* free content of threads */
633 *t = prev ? prev : task_list;
637 static struct threads *liste_add_task(struct threads *task_list, struct threads *t,
638 struct threads **last)
647 struct threads *temp = task_list;
663 static int current_pid(struct linux_os *linux_os, uint32_t pid)
665 static int current_base_addr(struct linux_os *linux_os, uint32_t base_addr)
668 struct current_thread *ct = linux_os->current_threads;
671 while ((ct) && (ct->pid != pid))
673 while ((ct) && (ct->TS != base_addr))
677 if ((ct) && (ct->pid == pid))
679 if ((ct) && (ct->TS == base_addr))
686 static int linux_get_tasks(struct target *target, int context)
690 struct linux_os *linux_os = (struct linux_os *)
691 target->rtos->rtos_specific_params;
692 linux_os->thread_list = NULL;
693 linux_os->thread_count = 0;
695 if (linux_os->init_task_addr == 0xdeadbeef) {
696 LOG_INFO("no init symbol\n");
700 int64_t start = timeval_ms();
702 struct threads *t = calloc(1, sizeof(struct threads));
703 struct threads *last = NULL;
704 t->base_addr = linux_os->init_task_addr;
705 /* retrieve the thread id , currently running in the different smp core */
706 get_current(target, 1);
708 while (((t->base_addr != linux_os->init_task_addr) &&
709 (t->base_addr != 0)) || (loop == 0)) {
711 fill_task(target, t);
712 retval = get_name(target, t);
714 if (loop > MAX_THREADS) {
716 LOG_INFO("more than %d threads !!", MAX_THREADS);
720 if (retval != ERROR_OK) {
725 /* check that this thread is not one the current threads already
730 if (!current_pid(linux_os, t->pid)) {
732 if (!current_base_addr(linux_os, t->base_addr)) {
734 t->threadid = linux_os->threadid_count;
736 linux_os->threadid_count++;
738 linux_os->thread_list =
739 liste_add_task(linux_os->thread_list, t, &last);
740 /* no interest to fill the context if it is a current thread. */
741 linux_os->thread_count++;
742 t->thread_info_addr = 0xdeadbeef;
746 cpu_context_read(target, t->base_addr,
747 &t->thread_info_addr);
748 base_addr = next_task(target, t);
750 /*LOG_INFO("thread %s is a current thread already created",t->name); */
751 base_addr = next_task(target, t);
755 t = calloc(1, sizeof(struct threads));
756 t->base_addr = base_addr;
759 linux_os->threads_lookup = 1;
760 linux_os->threads_needs_update = 0;
761 linux_os->preupdtate_threadid_count = linux_os->threadid_count - 1;
762 /* check that all current threads have been identified */
764 LOG_INFO("complete time %" PRId64 ", thread mean %" PRId64 "\n",
765 (timeval_ms() - start),
766 (timeval_ms() - start) / linux_os->threadid_count);
768 LOG_INFO("threadid count %d", linux_os->threadid_count);
774 static int clean_threadlist(struct target *target)
776 struct linux_os *linux_os = (struct linux_os *)
777 target->rtos->rtos_specific_params;
778 struct threads *old, *temp = linux_os->thread_list;
792 static int linux_os_clean(struct target *target)
794 struct linux_os *os_linux = (struct linux_os *)
795 target->rtos->rtos_specific_params;
796 clean_threadlist(target);
797 os_linux->init_task_addr = 0xdeadbeef;
798 os_linux->name = "linux";
799 os_linux->thread_list = NULL;
800 os_linux->thread_count = 0;
801 os_linux->nr_cpus = 0;
802 os_linux->threads_lookup = 0;
803 os_linux->threads_needs_update = 0;
804 os_linux->threadid_count = 1;
808 static int insert_into_threadlist(struct target *target, struct threads *t)
810 struct linux_os *linux_os = (struct linux_os *)
811 target->rtos->rtos_specific_params;
812 struct threads *temp = linux_os->thread_list;
813 t->threadid = linux_os->threadid_count;
814 linux_os->threadid_count++;
819 linux_os->thread_list = t;
831 static void linux_identify_current_threads(struct target *target)
833 struct linux_os *linux_os = (struct linux_os *)
834 target->rtos->rtos_specific_params;
835 struct threads *thread_list = linux_os->thread_list;
836 struct current_thread *ct = linux_os->current_threads;
837 struct threads *t = NULL;
840 if (ct->threadid == -1) {
842 /* un-identified thread */
844 t = calloc(1, sizeof(struct threads));
845 t->base_addr = ct->TS;
848 if (fill_task_pid(target, t) != ERROR_OK) {
852 ("linux identify_current_threads: unable to read pid");
857 /* search in the list of threads if pid
859 while ((thread_list) && (found == 0)) {
861 if (thread_list->pid == t->pid) {
863 if (thread_list->base_addr == t->base_addr) {
869 thread_list = thread_list->next;
873 /* it is a new thread */
874 if (fill_task(target, t) != ERROR_OK)
878 insert_into_threadlist(target, t);
879 t->thread_info_addr = 0xdeadbeef;
883 ct->threadid = t->threadid;
887 linux_os->thread_count++;
890 LOG_INFO("current thread core %x identified %s",
891 ct->core_id, t->name);
893 LOG_INFO("current thread core %x, reused %s",
894 ct->core_id, t->name);
900 tmp.base_addr = ct->TS;
901 get_name(target, &tmp);
902 LOG_INFO("current thread core %x , already identified %s !!!",
903 ct->core_id, tmp.name);
913 LOG_ERROR("unable to read pid");
919 static int linux_task_update(struct target *target, int context)
921 struct linux_os *linux_os = (struct linux_os *)
922 target->rtos->rtos_specific_params;
923 struct threads *thread_list = linux_os->thread_list;
926 linux_os->thread_count = 0;
928 /*thread_list = thread_list->next; skip init_task*/
929 while (thread_list) {
930 thread_list->status = 0; /*setting all tasks to dead state*/
932 free(thread_list->context);
933 thread_list->context = NULL;
935 thread_list = thread_list->next;
940 if (linux_os->init_task_addr == 0xdeadbeef) {
941 LOG_INFO("no init symbol\n");
944 int64_t start = timeval_ms();
945 struct threads *t = calloc(1, sizeof(struct threads));
946 uint32_t previous = 0xdeadbeef;
947 t->base_addr = linux_os->init_task_addr;
948 retval = get_current(target, 0);
949 /*check that all current threads have been identified */
950 linux_identify_current_threads(target);
952 while (((t->base_addr != linux_os->init_task_addr) &&
953 (t->base_addr != previous)) || (loop == 0)) {
954 /* for avoiding any permanent loop for any reason possibly due to
957 previous = t->base_addr;
960 retval = fill_task_pid(target, t);
963 if (retval != ERROR_OK) {
968 thread_list = linux_os->thread_list;
970 while (thread_list) {
972 if (t->pid == thread_list->pid) {
974 if (t->base_addr == thread_list->base_addr) {
976 if (!thread_list->status) {
978 if (t->base_addr != thread_list->base_addr)
979 LOG_INFO("thread base_addr has changed !!");
981 /* this is not a current thread */
982 thread_list->base_addr = t->base_addr;
983 thread_list->status = 1;
985 /* we don 't update this field any more */
987 /*thread_list->state = t->state;
988 thread_list->oncpu = t->oncpu;
989 thread_list->asid = t->asid;
992 thread_list->context =
993 cpu_context_read(target,
994 thread_list->base_addr,
995 &thread_list->thread_info_addr);
997 /* it is a current thread no need to read context */
1000 linux_os->thread_count++;
1005 thread_list = thread_list->next;
1011 fill_task(target, t);
1012 get_name(target, t);
1013 retval = insert_into_threadlist(target, t);
1014 t->thread_info_addr = 0xdeadbeef;
1018 cpu_context_read(target, t->base_addr,
1019 &t->thread_info_addr);
1021 base_addr = next_task(target, t);
1022 t = calloc(1, sizeof(struct threads));
1023 t->base_addr = base_addr;
1024 linux_os->thread_count++;
1026 t->base_addr = next_task(target, t);
1029 LOG_INFO("update thread done %" PRId64 ", mean%" PRId64 "\n",
1030 (timeval_ms() - start), (timeval_ms() - start) / loop);
1032 linux_os->threads_needs_update = 0;
1036 static int linux_gdb_thread_packet(struct target *target,
1037 struct connection *connection, char const *packet,
1041 struct linux_os *linux_os =
1042 (struct linux_os *)target->rtos->rtos_specific_params;
1044 if (linux_os->init_task_addr == 0xdeadbeef) {
1045 /* it has not been initialized */
1046 LOG_INFO("received thread request without init task address");
1047 gdb_put_packet(connection, "l", 1);
1051 retval = linux_get_tasks(target, 1);
1053 if (retval != ERROR_OK)
1054 return ERROR_TARGET_FAILURE;
1056 char *out_str = calloc(MAX_THREADS * 17 + 10, 1);
1057 char *tmp_str = out_str;
1058 tmp_str += sprintf(tmp_str, "m");
1059 struct threads *temp = linux_os->thread_list;
1062 tmp_str += sprintf(tmp_str, "%016" PRIx64, temp->threadid);
1065 tmp_str += sprintf(tmp_str, ",");
1068 gdb_put_packet(connection, out_str, strlen(out_str));
1073 static int linux_gdb_thread_update(struct target *target,
1074 struct connection *connection, char const *packet,
1078 struct linux_os *linux_os = (struct linux_os *)
1079 target->rtos->rtos_specific_params;
1080 struct threads *temp = linux_os->thread_list;
1083 if (temp->threadid == linux_os->preupdtate_threadid_count + 1) {
1084 /*LOG_INFO("FOUND");*/
1092 /*LOG_INFO("INTO GDB THREAD UPDATE FOUNDING START TASK");*/
1093 char *out_strr = calloc(MAX_THREADS * 17 + 10, 1);
1094 char *tmp_strr = out_strr;
1095 tmp_strr += sprintf(tmp_strr, "m");
1096 /*LOG_INFO("CHAR MALLOC & M DONE");*/
1097 tmp_strr += sprintf(tmp_strr, "%016" PRIx64, temp->threadid);
1102 /*LOG_INFO("INTO GDB THREAD UPDATE WHILE");*/
1103 tmp_strr += sprintf(tmp_strr, ",");
1105 sprintf(tmp_strr, "%016" PRIx64, temp->threadid);
1110 gdb_put_packet(connection, out_strr, strlen(out_strr));
1111 linux_os->preupdtate_threadid_count =
1112 linux_os->threadid_count - 1;
1115 gdb_put_packet(connection, "l", 1);
1120 static int linux_thread_extra_info(struct target *target,
1121 struct connection *connection, char const *packet,
1124 int64_t threadid = 0;
1125 struct linux_os *linux_os = (struct linux_os *)
1126 target->rtos->rtos_specific_params;
1127 sscanf(packet, "qThreadExtraInfo,%" SCNx64, &threadid);
1128 /*LOG_INFO("lookup extra info for thread %" SCNx64, threadid);*/
1129 struct threads *temp = linux_os->thread_list;
1132 if (temp->threadid == threadid) {
1133 char *pid = " PID: ";
1134 char *pid_current = "*PID: ";
1135 char *name = "Name: ";
1136 int str_size = strlen(pid) + strlen(name);
1137 char *tmp_str = calloc(1, str_size + 50);
1138 char *tmp_str_ptr = tmp_str;
1140 /* discriminate current task */
1141 if (temp->status == 3)
1142 tmp_str_ptr += sprintf(tmp_str_ptr, "%s",
1145 tmp_str_ptr += sprintf(tmp_str_ptr, "%s", pid);
1147 tmp_str_ptr += sprintf(tmp_str_ptr, "%d, ", (int)temp->pid);
1148 sprintf(tmp_str_ptr, "%s", name);
1149 sprintf(tmp_str_ptr, "%s", temp->name);
1150 char *hex_str = calloc(1, strlen(tmp_str) * 2 + 1);
1151 size_t pkt_len = hexify(hex_str, (const uint8_t *)tmp_str,
1152 strlen(tmp_str), strlen(tmp_str) * 2 + 1);
1153 gdb_put_packet(connection, hex_str, pkt_len);
1162 LOG_INFO("thread not found");
1166 static int linux_gdb_t_packet(struct connection *connection,
1167 struct target *target, char const *packet, int packet_size)
1170 struct linux_os *linux_os = (struct linux_os *)
1171 target->rtos->rtos_specific_params;
1172 int retval = ERROR_OK;
1173 sscanf(packet, "T%" SCNx64, &threadid);
1175 if (linux_os->threads_needs_update == 0) {
1176 struct threads *temp = linux_os->thread_list;
1177 struct threads *prev = NULL;
1180 if (temp->threadid == threadid) {
1181 if (temp->status != 0) {
1182 gdb_put_packet(connection, "OK", 2);
1185 /* delete item in the list */
1186 linux_os->thread_list =
1187 liste_del_task(linux_os->thread_list,
1189 linux_os->thread_count--;
1190 gdb_put_packet(connection, "E01", 3);
1200 LOG_INFO("gdb requested status on non existing thread");
1201 gdb_put_packet(connection, "E01", 3);
1205 retval = linux_task_update(target, 1);
1206 struct threads *temp = linux_os->thread_list;
1209 if (temp->threadid == threadid) {
1210 if (temp->status == 1) {
1211 gdb_put_packet(connection, "OK", 2);
1214 gdb_put_packet(connection, "E01", 3);
1226 static int linux_gdb_h_packet(struct connection *connection,
1227 struct target *target, char const *packet, int packet_size)
1229 struct linux_os *linux_os = (struct linux_os *)
1230 target->rtos->rtos_specific_params;
1231 struct current_thread *ct = linux_os->current_threads;
1233 /* select to display the current thread of the selected target */
1234 while ((ct) && (ct->core_id != target->coreid))
1237 int64_t current_gdb_thread_rq;
1239 if (linux_os->threads_lookup == 1) {
1240 if ((ct) && (ct->threadid == -1)) {
1241 ct = linux_os->current_threads;
1243 while ((ct) && (ct->threadid == -1))
1248 /* no current thread can be identified
1249 * any way with smp */
1250 LOG_INFO("no current thread identified");
1251 /* attempt to display the name of the 2 threads identified with
1254 ct = linux_os->current_threads;
1256 while ((ct) && (ct->threadid == -1)) {
1257 t.base_addr = ct->TS;
1258 get_name(target, &t);
1259 LOG_INFO("name of unidentified thread %s",
1264 gdb_put_packet(connection, "OK", 2);
1268 if (packet[1] == 'g') {
1269 sscanf(packet, "Hg%16" SCNx64, ¤t_gdb_thread_rq);
1271 if (current_gdb_thread_rq == 0) {
1272 target->rtos->current_threadid = ct->threadid;
1273 gdb_put_packet(connection, "OK", 2);
1275 target->rtos->current_threadid =
1276 current_gdb_thread_rq;
1277 gdb_put_packet(connection, "OK", 2);
1279 } else if (packet[1] == 'c') {
1280 sscanf(packet, "Hc%16" SCNx64, ¤t_gdb_thread_rq);
1282 if ((current_gdb_thread_rq == 0) ||
1283 (current_gdb_thread_rq == ct->threadid)) {
1284 target->rtos->current_threadid = ct->threadid;
1285 gdb_put_packet(connection, "OK", 2);
1287 gdb_put_packet(connection, "E01", 3);
1290 gdb_put_packet(connection, "OK", 2);
1295 static int linux_thread_packet(struct connection *connection, char const *packet,
1298 int retval = ERROR_OK;
1299 struct current_thread *ct;
1300 struct target *target = get_target_from_connection(connection);
1301 struct linux_os *linux_os = (struct linux_os *)
1302 target->rtos->rtos_specific_params;
1304 switch (packet[0]) {
1305 case 'T': /* Is thread alive?*/
1307 linux_gdb_t_packet(connection, target, packet, packet_size);
1309 case 'H': /* Set current thread */
1310 /* ( 'c' for step and continue, 'g' for all other operations )*/
1311 /*LOG_INFO(" H packet received '%s'", packet);*/
1312 linux_gdb_h_packet(connection, target, packet, packet_size);
1316 if (strncmp(packet, "qSymbol", 7) == 0) {
1317 if (rtos_qsymbol(connection, packet, packet_size) == 1) {
1318 linux_compute_virt2phys(target,
1319 target->rtos->symbols[INIT_TASK].address);
1323 } else if (strncmp(packet, "qfThreadInfo", 12) == 0) {
1324 if (!linux_os->thread_list) {
1325 retval = linux_gdb_thread_packet(target,
1331 retval = linux_gdb_thread_update(target,
1337 } else if (strncmp(packet, "qsThreadInfo", 12) == 0) {
1338 gdb_put_packet(connection, "l", 1);
1340 } else if (strncmp(packet, "qThreadExtraInfo,", 17) == 0) {
1341 linux_thread_extra_info(target, connection, packet,
1345 retval = GDB_THREAD_PACKET_NOT_CONSUMED;
1350 /* previously response was : thread not found
1351 * gdb_put_packet(connection, "E01", 3); */
1352 retval = GDB_THREAD_PACKET_NOT_CONSUMED;
1356 if (linux_os->threads_lookup == 1) {
1357 ct = linux_os->current_threads;
1359 while ((ct) && (ct->core_id) != target->coreid)
1362 if ((ct) && (ct->threadid == -1)) {
1363 ct = linux_os->current_threads;
1365 while ((ct) && (ct->threadid == -1))
1369 if ((ct) && (ct->threadid !=
1370 target->rtos->current_threadid)
1371 && (target->rtos->current_threadid != -1))
1372 LOG_WARNING("WARNING! current GDB thread do not match "
1373 "current thread running. "
1374 "Switch thread in GDB to threadid %d",
1377 LOG_INFO("threads_needs_update = 1");
1378 linux_os->threads_needs_update = 1;
1382 /* if a packet handler returned an error, exit input loop */
1383 if (retval != ERROR_OK)
1390 static int linux_os_smp_init(struct target *target)
1392 struct target_list *head;
1393 /* keep only target->rtos */
1394 struct rtos *rtos = target->rtos;
1395 struct linux_os *os_linux =
1396 (struct linux_os *)rtos->rtos_specific_params;
1397 struct current_thread *ct;
1398 head = target->head;
1400 while (head != (struct target_list *)NULL) {
1401 if (head->target->rtos != rtos) {
1402 struct linux_os *smp_os_linux =
1403 (struct linux_os *)head->target->rtos->rtos_specific_params;
1404 /* remap smp target on rtos */
1405 free(head->target->rtos);
1406 head->target->rtos = rtos;
1407 /* reuse allocated ct */
1408 ct = smp_os_linux->current_threads;
1410 ct->TS = 0xdeadbeef;
1411 ct->core_id = head->target->coreid;
1412 os_linux->current_threads =
1413 add_current_thread(os_linux->current_threads, ct);
1414 os_linux->nr_cpus++;
1424 static int linux_os_create(struct target *target)
1426 struct linux_os *os_linux = calloc(1, sizeof(struct linux_os));
1427 struct current_thread *ct = calloc(1, sizeof(struct current_thread));
1428 LOG_INFO("linux os creation\n");
1429 os_linux->init_task_addr = 0xdeadbeef;
1430 os_linux->name = "linux";
1431 os_linux->thread_list = NULL;
1432 os_linux->thread_count = 0;
1433 target->rtos->current_threadid = -1;
1434 os_linux->nr_cpus = 1;
1435 os_linux->threads_lookup = 0;
1436 os_linux->threads_needs_update = 0;
1437 os_linux->threadid_count = 1;
1438 os_linux->current_threads = NULL;
1439 target->rtos->rtos_specific_params = os_linux;
1440 ct->core_id = target->coreid;
1442 ct->TS = 0xdeadbeef;
1443 os_linux->current_threads =
1444 add_current_thread(os_linux->current_threads, ct);
1445 /* overload rtos thread default handler */
1446 target->rtos->gdb_thread_packet = linux_thread_packet;
1447 /* initialize a default virt 2 phys translation */
1448 os_linux->phys_mask = ~0xc0000000;
1449 os_linux->phys_base = 0x0;
1453 static char *linux_ps_command(struct target *target)
1455 struct linux_os *linux_os = (struct linux_os *)
1456 target->rtos->rtos_specific_params;
1457 int retval = ERROR_OK;
1460 if (linux_os->threads_lookup == 0)
1461 retval = linux_get_tasks(target, 1);
1463 if (linux_os->threads_needs_update != 0)
1464 retval = linux_task_update(target, 0);
1467 if (retval == ERROR_OK) {
1468 struct threads *temp = linux_os->thread_list;
1470 LOG_INFO("allocation for %d threads line",
1471 linux_os->thread_count);
1472 display = calloc((linux_os->thread_count + 2) * 80, 1);
1478 tmp += sprintf(tmp, "PID\t\tCPU\t\tASID\t\tNAME\n");
1479 tmp += sprintf(tmp, "---\t\t---\t\t----\t\t----\n");
1486 "%" PRIu32 "\t\t%" PRIu32 "\t\t%" PRIx32 "\t\t%s\n",
1487 temp->pid, temp->oncpu,
1488 temp->asid, temp->name);
1492 "%" PRIu32 "\t\t%" PRIu32 "\t\t%" PRIx32 "\t\t%s\n",
1493 temp->pid, temp->oncpu,
1494 temp->asid, temp->name);
1504 display = calloc(40, 1);
1505 sprintf(display, "linux_ps_command failed\n");