rtos: return the correct value if the T or H packets are handled
[openocd.git] / src / rtos / rtos.c
blob8591007c202b8e240c7247c04b77eebffdc08150
1 /***************************************************************************
2 * Copyright (C) 2011 by Broadcom Corporation *
3 * Evan Hunter - ehunter@broadcom.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
26 #include "rtos.h"
27 #include "target/target.h"
28 #include "helper/log.h"
29 #include "server/gdb_server.h"
32 static int64_t current_threadid = -1;
34 static void hex_to_str( char* dst, char * hex_src );
35 static int str_to_hex( char* hex_dst, char* src );
38 /* RTOSs */
39 extern struct rtos_type FreeRTOS_rtos;
40 extern struct rtos_type ThreadX_rtos;
41 extern struct rtos_type eCos_rtos;
43 static struct rtos_type *rtos_types[] =
45 &ThreadX_rtos,
46 &FreeRTOS_rtos,
47 &eCos_rtos,
48 NULL
52 int rtos_create(Jim_GetOptInfo *goi, struct target * target)
54 int x;
55 char *cp;
57 if (! goi->isconfigure) {
58 if (goi->argc != 0) {
59 if (goi->argc != 0) {
60 Jim_WrongNumArgs(goi->interp,
61 goi->argc, goi->argv,
62 "NO PARAMS");
63 return JIM_ERR;
66 Jim_SetResultString(goi->interp,
67 target_type_name(target), -1);
71 if (target->rtos) {
72 free((void *)(target->rtos));
74 // e = Jim_GetOpt_String(goi, &cp, NULL);
75 // target->rtos = strdup(cp);
77 Jim_GetOpt_String(goi, &cp, NULL);
78 /* now does target type exist */
80 if ( 0 == strcmp( cp, "auto") )
82 // auto detection of RTOS
83 target->rtos_auto_detect = true;
84 x = 0;
86 else
89 for (x = 0 ; rtos_types[x] ; x++) {
90 if (0 == strcmp(cp, rtos_types[x]->name)) {
91 /* found */
92 break;
95 if (rtos_types[x] == NULL) {
96 Jim_SetResultFormatted(goi->interp, "Unknown rtos type %s, try one of ", cp);
97 for (x = 0 ; rtos_types[x] ; x++) {
98 if (rtos_types[x + 1]) {
99 Jim_AppendStrings(goi->interp,
100 Jim_GetResult(goi->interp),
101 rtos_types[x]->name,
102 ", ", NULL);
103 } else {
104 Jim_AppendStrings(goi->interp,
105 Jim_GetResult(goi->interp),
106 " or ",
107 rtos_types[x]->name,NULL);
110 return JIM_ERR;
113 /* Create it */
114 target->rtos = calloc(1,sizeof(struct rtos));
115 target->rtos->type = rtos_types[x];
116 target->rtos->current_thread = 0;
117 target->rtos->symbols = NULL;
118 target->rtos->target = target;
120 if ( 0 != strcmp( cp, "auto") )
122 target->rtos->type->create( target );
125 return JIM_OK;
131 int gdb_thread_packet(struct connection *connection, char *packet, int packet_size)
133 struct target *target = get_target_from_connection(connection);
135 if (strstr(packet, "qP"))
137 #define TAG_THREADID 1 /* Echo the thread identifier */
138 #define TAG_EXISTS 2 /* Is this process defined enough to
139 fetch registers and its stack */
140 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
141 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is */
142 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about */
144 // TODO: need to scanf the mode variable (or it with the tags), and the threadid
146 unsigned long mode;
147 threadid_t threadid = 0;
148 struct thread_detail* detail;
149 sscanf(packet, "qP%8lx%16" SCNx64, &mode, &threadid);
152 int found = -1;
154 if ((target->rtos != NULL) && (target->rtos->thread_details
155 != NULL)) {
156 int thread_num;
157 for (thread_num = 0; thread_num
158 < target->rtos->thread_count; thread_num++) {
159 if (target->rtos->thread_details[thread_num].threadid
160 == threadid) {
161 if (target->rtos->thread_details[thread_num].exists) {
162 found = thread_num;
167 if (found == -1) {
168 gdb_put_packet(connection, "E01", 3); // thread not found
169 return ERROR_OK;
172 detail = &target->rtos->thread_details[found];
174 if ( detail->display_str != NULL )
176 mode &= TAG_DISPLAY;
178 if ( detail->thread_name_str != NULL )
180 mode &= TAG_THREADNAME;
182 if ( detail->extra_info_str != NULL )
184 mode &= TAG_MOREDISPLAY;
188 mode &= TAG_THREADID | TAG_EXISTS;
190 char thread_str[1000];
192 sprintf(thread_str, "%08lx", mode);
193 sprintf(thread_str, "%016" PRIx64, threadid);
196 if (mode & TAG_THREADID) {
197 sprintf(thread_str, "%08" PRIx32 "10%016" PRIx64, TAG_THREADID, threadid);
199 if (mode & TAG_EXISTS) {
200 sprintf(thread_str, "%08" PRIx32 "08%08" PRIx32, TAG_EXISTS, (detail->exists==true)?1:0);
202 if (mode & TAG_DISPLAY) {
203 sprintf(thread_str, "%08" PRIx32 "%02x%s", TAG_DISPLAY, (unsigned char)strlen(detail->display_str), detail->display_str );
205 if (mode & TAG_MOREDISPLAY) {
206 sprintf(thread_str, "%08" PRIx32 "%02x%s", TAG_MOREDISPLAY, (unsigned char)strlen(detail->extra_info_str), detail->extra_info_str );
208 if (mode & TAG_THREADNAME) {
209 sprintf(thread_str, "%08" PRIx32 "%02x%s", TAG_THREADNAME, (unsigned char)strlen(detail->thread_name_str), detail->thread_name_str );
212 //gdb_put_packet(connection, tmpstr, sizeof(tmpstr)-1);
213 gdb_put_packet(connection, thread_str, strlen(thread_str));
215 // gdb_put_packet(connection, "", 0);
216 // gdb_put_packet(connection, "OK", 2); // all threads alive
217 return ERROR_OK;
219 else if (strstr(packet, "qThreadExtraInfo,"))
221 if ((target->rtos != NULL) && (target->rtos->thread_details != NULL) && (target->rtos->thread_count != 0))
223 threadid_t threadid = 0;
224 int found = -1;
225 sscanf(packet, "qThreadExtraInfo,%" SCNx64, &threadid );
227 if ((target->rtos != NULL) && (target->rtos->thread_details
228 != NULL)) {
229 int thread_num;
230 for (thread_num = 0; thread_num
231 < target->rtos->thread_count; thread_num++) {
232 if (target->rtos->thread_details[thread_num].threadid
233 == threadid) {
234 if (target->rtos->thread_details[thread_num].exists) {
235 found = thread_num;
240 if (found == -1) {
241 gdb_put_packet(connection, "E01", 3); // thread not found
242 return ERROR_OK;
245 struct thread_detail* detail = &target->rtos->thread_details[found];
247 int str_size = 0;
248 if ( detail->display_str != NULL )
250 str_size += strlen(detail->display_str);
252 if ( detail->thread_name_str != NULL )
254 str_size += strlen(detail->thread_name_str);
256 if ( detail->extra_info_str != NULL )
258 str_size += strlen(detail->extra_info_str);
261 char * tmp_str = (char*) malloc( str_size + 7 );
262 char* tmp_str_ptr = tmp_str;
264 if ( detail->display_str != NULL )
266 tmp_str_ptr += sprintf( tmp_str_ptr, "%s", detail->display_str );
268 if ( detail->thread_name_str != NULL )
270 if ( tmp_str_ptr != tmp_str )
272 tmp_str_ptr += sprintf( tmp_str_ptr, " : " );
274 tmp_str_ptr += sprintf( tmp_str_ptr, "%s", detail->thread_name_str );
276 if ( detail->extra_info_str != NULL )
278 if ( tmp_str_ptr != tmp_str )
280 tmp_str_ptr += sprintf( tmp_str_ptr, " : " );
282 tmp_str_ptr += sprintf( tmp_str_ptr, " : %s", detail->extra_info_str );
285 char * hex_str = (char*) malloc( strlen(tmp_str)*2 +1 );
286 str_to_hex( hex_str, tmp_str );
288 gdb_put_packet(connection, hex_str, strlen(hex_str));
289 free(hex_str);
290 free(tmp_str);
291 return ERROR_OK;
294 gdb_put_packet(connection, "", 0);
295 return ERROR_OK;
297 else if (strstr(packet, "qSymbol"))
299 if ( target->rtos != NULL )
301 int next_symbol_num = -1;
302 if (target->rtos->symbols == NULL)
304 target->rtos->type->get_symbol_list_to_lookup( &target->rtos->symbols );
306 if (0 == strcmp( "qSymbol::", packet ) )
308 // first query -
309 next_symbol_num = 0;
311 else
313 int64_t value = 0;
314 char * hex_name_str = malloc( strlen(packet));
315 char * name_str;
316 int symbol_num;
318 char* found = strstr( packet, "qSymbol::" );
319 if (0 == found )
321 sscanf(packet, "qSymbol:%" SCNx64 ":%s", &value, hex_name_str);
323 else
325 // No value returned by GDB - symbol was not found
326 sscanf(packet, "qSymbol::%s", hex_name_str);
328 name_str = (char*) malloc( 1+ strlen(hex_name_str) / 2 );
330 hex_to_str( name_str, hex_name_str );
333 symbol_num = 0;
334 while ( ( target->rtos->symbols[ symbol_num ].symbol_name != NULL ) && ( 0 != strcmp( target->rtos->symbols[ symbol_num ].symbol_name, name_str ) ) )
336 symbol_num++;
340 if ( target->rtos->symbols[ symbol_num ].symbol_name == NULL )
342 LOG_OUTPUT("ERROR: unknown symbol\r\n");
343 gdb_put_packet(connection, "OK", 2);
344 return ERROR_OK;
347 target->rtos->symbols[ symbol_num ].address = value;
349 next_symbol_num = symbol_num+1;
350 free( hex_name_str );
351 free( name_str );
355 int symbols_done = 0;
356 if ( target->rtos->symbols[ next_symbol_num ].symbol_name == NULL )
358 if ( ( target->rtos_auto_detect == false ) ||
359 ( 1 == target->rtos->type->detect_rtos( target ) ) )
361 // Found correct RTOS or not autodetecting
362 if ( target->rtos_auto_detect == true )
364 LOG_OUTPUT( "Auto-detected RTOS: %s\r\n",target->rtos->type->name );
366 symbols_done = 1;
368 else
370 // Auto detecting RTOS and currently not found
371 if( 1 != rtos_try_next( target ) )
373 // No more RTOS's to try
374 symbols_done = 1;
376 else
378 next_symbol_num = 0;
379 target->rtos->type->get_symbol_list_to_lookup( &target->rtos->symbols );
386 if ( symbols_done == 1 )
388 target->rtos_auto_detect = false;
389 target->rtos->type->create( target );
390 target->rtos->type->update_threads(target->rtos);
391 // No more symbols needed
392 gdb_put_packet(connection, "OK", 2);
393 return ERROR_OK;
396 else
398 char* symname = target->rtos->symbols[ next_symbol_num ].symbol_name;
399 char qsymstr[] = "qSymbol:";
400 char * opstring = (char*)malloc(sizeof(qsymstr)+strlen(symname)*2+1);
401 char * posptr = opstring;
402 posptr += sprintf( posptr, "%s", qsymstr );
403 str_to_hex( posptr, symname );
404 gdb_put_packet(connection, opstring, strlen(opstring));
405 free(opstring);
406 return ERROR_OK;
410 gdb_put_packet(connection, "OK", 2);
411 return ERROR_OK;
413 else if (strstr(packet, "qfThreadInfo"))
415 int i;
416 if ( ( target->rtos != NULL ) && ( target->rtos->thread_count != 0 ) )
419 char* out_str = (char*) malloc(17 * target->rtos->thread_count + 5);
420 char* tmp_str = out_str;
421 tmp_str += sprintf(tmp_str, "m");
422 for (i = 0; i < target->rtos->thread_count; i++) {
423 if (i != 0) {
424 tmp_str += sprintf(tmp_str, ",");
426 tmp_str += sprintf(tmp_str, "%016" PRIx64,
427 target->rtos->thread_details[i].threadid);
429 tmp_str[0] = 0;
430 gdb_put_packet(connection, out_str, strlen(out_str));
432 else
434 gdb_put_packet(connection, "", 0);
437 return ERROR_OK;
439 else if (strstr(packet, "qsThreadInfo"))
441 gdb_put_packet(connection, "l", 1);
442 return ERROR_OK;
444 else if (strstr(packet, "qAttached"))
446 gdb_put_packet(connection, "1", 1);
447 return ERROR_OK;
449 else if (strstr(packet, "qOffsets"))
451 char offsets[] = "Text=0;Data=0;Bss=0";
452 gdb_put_packet(connection, offsets, sizeof(offsets)-1);
453 return ERROR_OK;
455 else if (strstr(packet, "qC"))
457 if( target->rtos!=NULL )
459 char buffer[15];
460 int size;
461 size = snprintf(buffer, 15, "QC%08X", (int)target->rtos->current_thread);
462 gdb_put_packet(connection, buffer, size);
464 else
466 gdb_put_packet(connection, "QC0", 3);
468 return ERROR_OK;
470 else if ( packet[0] == 'T' ) // Is thread alive?
472 threadid_t threadid;
473 int found = -1;
474 sscanf(packet, "T%" SCNx64, &threadid);
475 if ((target->rtos != NULL) && (target->rtos->thread_details
476 != NULL)) {
477 int thread_num;
478 for (thread_num = 0; thread_num
479 < target->rtos->thread_count; thread_num++) {
480 if (target->rtos->thread_details[thread_num].threadid
481 == threadid) {
482 if (target->rtos->thread_details[thread_num].exists) {
483 found = thread_num;
488 if (found != -1) {
489 gdb_put_packet(connection, "OK", 2); // thread alive
490 } else {
491 gdb_put_packet(connection, "E01", 3); // thread not found
493 return ERROR_OK;
495 else if ( packet[0] == 'H') // Set current thread ( 'c' for step and continue, 'g' for all other operations )
497 if (packet[1] == 'g')
499 sscanf(packet, "Hg%16" SCNx64, &current_threadid);
501 gdb_put_packet(connection, "OK", 2);
502 return ERROR_OK;
505 return GDB_THREAD_PACKET_NOT_CONSUMED;
508 int rtos_get_gdb_reg_list(struct connection *connection, struct reg **reg_list[], int *reg_list_size)
510 struct target *target = get_target_from_connection(connection);
512 if ( ( target->rtos != NULL ) &&
513 ( current_threadid != -1 ) &&
514 ( current_threadid != 0 ) &&
515 ( current_threadid != target->rtos->current_thread ) )
517 char * hex_reg_list;
518 target->rtos->type->get_thread_reg_list( target->rtos, current_threadid, &hex_reg_list );
520 if ( hex_reg_list != NULL )
522 gdb_put_packet(connection, hex_reg_list, strlen(hex_reg_list));
523 free(hex_reg_list);
524 return ERROR_OK;
527 return ERROR_FAIL;
532 int rtos_generic_stack_read( struct target * target, const struct rtos_register_stacking* stacking, int64_t stack_ptr, char ** hex_reg_list )
534 int list_size = 0;
535 char * tmp_str_ptr;
536 int64_t new_stack_ptr;
537 int i;
538 int retval;
540 if ( stack_ptr == 0)
542 LOG_OUTPUT("Error: null stack pointer in thread\r\n");
543 return -5;
545 // Read the stack
546 uint8_t * stack_data = (uint8_t*) malloc( stacking->stack_registers_size );
547 uint32_t address = stack_ptr;
549 if ( stacking->stack_growth_direction == 1 )
551 address -= stacking->stack_registers_size;
553 retval = target_read_buffer( target, address, stacking->stack_registers_size, stack_data);
554 if ( retval != ERROR_OK )
556 LOG_OUTPUT("Error reading stack frame from FreeRTOS thread\r\n");
557 return retval;
560 LOG_OUTPUT("Stack Data :");
561 for(i = 0; i < stacking->stack_registers_size; i++ )
563 LOG_OUTPUT("%02X",stack_data[i]);
565 LOG_OUTPUT("\r\n");
567 for( i = 0; i < stacking->num_output_registers; i++ )
569 list_size += stacking->register_offsets[i].width_bits/8;
571 *hex_reg_list = (char*)malloc( list_size*2 +1 );
572 tmp_str_ptr = *hex_reg_list;
573 new_stack_ptr = stack_ptr - stacking->stack_growth_direction * stacking->stack_registers_size;
574 for( i = 0; i < stacking->num_output_registers; i++ )
576 int j;
577 for ( j = 0; j < stacking->register_offsets[i].width_bits/8; j++ )
579 if ( stacking->register_offsets[i].offset == -1 )
581 tmp_str_ptr += sprintf( tmp_str_ptr, "%02x", 0 );
583 else if ( stacking->register_offsets[i].offset == -2 )
585 tmp_str_ptr += sprintf( tmp_str_ptr, "%02x", ((uint8_t*)&new_stack_ptr)[j] );
587 else
589 tmp_str_ptr += sprintf( tmp_str_ptr,"%02x", stack_data[ stacking->register_offsets[i].offset + j ] );
593 // LOG_OUTPUT("Output register string: %s\r\n", *hex_reg_list);
594 return ERROR_OK;
597 int rtos_try_next( struct target * target )
599 int x;
601 if ( target->rtos == NULL )
603 return -1;
606 for (x = 0 ; rtos_types[x] ; x++) {
607 if (target->rtos->type == rtos_types[x] ) {
608 /* found */
609 if ( rtos_types[x+1] != NULL )
611 target->rtos->type = rtos_types[x+1];
612 if ( target->rtos->symbols != NULL )
614 free( target->rtos->symbols );
616 return 1;
618 else
620 // No more rtos types
621 return 0;
626 return 0;
630 static void hex_to_str( char* dst, char * hex_src )
632 int src_pos = 0;
633 int dst_pos = 0;
635 while ( hex_src[src_pos] != '\x00' )
637 char hex_char = hex_src[src_pos];
638 char hex_digit_val = (hex_char>='a')?hex_char-'a'+10:(hex_char>='A')?hex_char-'A'+10:hex_char-'0';
639 if ( 0 == (src_pos & 0x01) )
641 dst[dst_pos] = hex_digit_val;
642 dst[dst_pos+1] = 0;
644 else
646 ((unsigned char*)dst)[dst_pos] <<= 4;
647 ((unsigned char*)dst)[dst_pos] += hex_digit_val;
648 dst_pos++;
650 src_pos++;
655 static int str_to_hex( char* hex_dst, char* src )
657 char * posptr = hex_dst;
658 unsigned i;
659 for( i = 0; i < strlen(src); i++)
661 posptr += sprintf( posptr, "%02x", (unsigned char)src[i] );
663 return (posptr-hex_dst);
667 int rtos_update_threads( struct target* target )
669 if ((target->rtos != NULL) && (target->rtos->type != NULL))
671 target->rtos->type->update_threads(target->rtos);
673 return ERROR_OK;