📄 cli-dump.c
字号:
call_dump_func (struct cmd_list_element *c, char *args, int from_tty){ struct dump_context *d = get_cmd_context (c); d->func (args, d->mode);}voidadd_dump_command (char *name, void (*func) (char *args, char *mode), char *descr){ struct cmd_list_element *c; struct dump_context *d; c = add_cmd (name, all_commands, NULL, descr, &dump_cmdlist); c->completer = filename_completer; d = XMALLOC (struct dump_context); d->func = func; d->mode = FOPEN_WB; set_cmd_context (c, d); c->func = call_dump_func; c = add_cmd (name, all_commands, NULL, descr, &append_cmdlist); c->completer = filename_completer; d = XMALLOC (struct dump_context); d->func = func; d->mode = FOPEN_AB; set_cmd_context (c, d); c->func = call_dump_func; /* Replace "Dump " at start of docstring with "Append " (borrowed from deprecated_add_show_from_set). */ if ( c->doc[0] == 'W' && c->doc[1] == 'r' && c->doc[2] == 'i' && c->doc[3] == 't' && c->doc[4] == 'e' && c->doc[5] == ' ') c->doc = concat ("Append ", c->doc + 6, NULL);}/* Opaque data for restore_section_callback. */struct callback_data { unsigned long load_offset; CORE_ADDR load_start; CORE_ADDR load_end;};/* Function: restore_section_callback. Callback function for bfd_map_over_sections. Selectively loads the sections into memory. */static voidrestore_section_callback (bfd *ibfd, asection *isec, void *args){ struct callback_data *data = args; bfd_vma sec_start = bfd_section_vma (ibfd, isec); bfd_size_type size = bfd_section_size (ibfd, isec); bfd_vma sec_end = sec_start + size; bfd_size_type sec_offset = 0; bfd_size_type sec_load_count = size; struct cleanup *old_chain; char *buf; int ret; /* Ignore non-loadable sections, eg. from elf files. */ if (!(bfd_get_section_flags (ibfd, isec) & SEC_LOAD)) return; /* Does the section overlap with the desired restore range? */ if (sec_end <= data->load_start || (data->load_end > 0 && sec_start >= data->load_end)) { /* No, no useable data in this section. */ printf_filtered ("skipping section %s...\n", bfd_section_name (ibfd, isec)); return; } /* Compare section address range with user-requested address range (if any). Compute where the actual transfer should start and end. */ if (sec_start < data->load_start) sec_offset = data->load_start - sec_start; /* Size of a partial transfer: */ sec_load_count -= sec_offset; if (data->load_end > 0 && sec_end > data->load_end) sec_load_count -= sec_end - data->load_end; /* Get the data. */ buf = xmalloc (size); old_chain = make_cleanup (xfree, buf); if (!bfd_get_section_contents (ibfd, isec, buf, 0, size)) error ("Failed to read bfd file %s: '%s'.", bfd_get_filename (ibfd), bfd_errmsg (bfd_get_error ())); printf_filtered ("Restoring section %s (0x%lx to 0x%lx)", bfd_section_name (ibfd, isec), (unsigned long) sec_start, (unsigned long) sec_end); if (data->load_offset != 0 || data->load_start != 0 || data->load_end != 0) printf_filtered (" into memory (0x%s to 0x%s)\n", paddr_nz ((unsigned long) sec_start + sec_offset + data->load_offset), paddr_nz ((unsigned long) sec_start + sec_offset + data->load_offset + sec_load_count)); else puts_filtered ("\n"); /* Write the data. */ ret = target_write_memory (sec_start + sec_offset + data->load_offset, buf + sec_offset, sec_load_count); if (ret != 0) warning ("restore: memory write failed (%s).", safe_strerror (ret)); do_cleanups (old_chain); return;}static voidrestore_binary_file (char *filename, struct callback_data *data){ FILE *file = fopen_with_cleanup (filename, FOPEN_RB); int status; char *buf; long len; /* Get the file size for reading. */ if (fseek (file, 0, SEEK_END) == 0) len = ftell (file); else perror_with_name (filename); if (len <= data->load_start) error ("Start address is greater than length of binary file %s.", filename); /* Chop off "len" if it exceeds the requested load_end addr. */ if (data->load_end != 0 && data->load_end < len) len = data->load_end; /* Chop off "len" if the requested load_start addr skips some bytes. */ if (data->load_start > 0) len -= data->load_start; printf_filtered ("Restoring binary file %s into memory (0x%lx to 0x%lx)\n", filename, (unsigned long) data->load_start + data->load_offset, (unsigned long) data->load_start + data->load_offset + len); /* Now set the file pos to the requested load start pos. */ if (fseek (file, data->load_start, SEEK_SET) != 0) perror_with_name (filename); /* Now allocate a buffer and read the file contents. */ buf = xmalloc (len); make_cleanup (xfree, buf); if (fread (buf, 1, len, file) != len) perror_with_name (filename); /* Now write the buffer into target memory. */ len = target_write_memory (data->load_start + data->load_offset, buf, len); if (len != 0) warning ("restore: memory write failed (%s).", safe_strerror (len)); return;}static voidrestore_command (char *args, int from_tty){ char *filename; struct callback_data data; bfd *ibfd; int binary_flag = 0; if (!target_has_execution) noprocess (); data.load_offset = 0; data.load_start = 0; data.load_end = 0; /* Parse the input arguments. First is filename (required). */ filename = scan_filename_with_cleanup (&args, NULL); if (args != NULL && *args != '\0') { char *binary_string = "binary"; /* Look for optional "binary" flag. */ if (strncmp (args, binary_string, strlen (binary_string)) == 0) { binary_flag = 1; args += strlen (binary_string); args = skip_spaces (args); } /* Parse offset (optional). */ if (args != NULL && *args != '\0') data.load_offset = parse_and_eval_long (scan_expression_with_cleanup (&args, NULL)); if (args != NULL && *args != '\0') { /* Parse start address (optional). */ data.load_start = parse_and_eval_long (scan_expression_with_cleanup (&args, NULL)); if (args != NULL && *args != '\0') { /* Parse end address (optional). */ data.load_end = parse_and_eval_long (args); if (data.load_end <= data.load_start) error ("Start must be less than end."); } } } if (info_verbose) printf_filtered ("Restore file %s offset 0x%lx start 0x%lx end 0x%lx\n", filename, (unsigned long) data.load_offset, (unsigned long) data.load_start, (unsigned long) data.load_end); if (binary_flag) { restore_binary_file (filename, &data); } else { /* Open the file for loading. */ ibfd = bfd_openr_with_cleanup (filename, NULL); /* Process the sections. */ bfd_map_over_sections (ibfd, restore_section_callback, &data); } return;}static voidsrec_dump_command (char *cmd, int from_tty){ printf_unfiltered ("\"dump srec\" must be followed by a subcommand.\n"); help_list (srec_cmdlist, "dump srec ", -1, gdb_stdout);}static voidihex_dump_command (char *cmd, int from_tty){ printf_unfiltered ("\"dump ihex\" must be followed by a subcommand.\n"); help_list (ihex_cmdlist, "dump ihex ", -1, gdb_stdout);}static voidtekhex_dump_command (char *cmd, int from_tty){ printf_unfiltered ("\"dump tekhex\" must be followed by a subcommand.\n"); help_list (tekhex_cmdlist, "dump tekhex ", -1, gdb_stdout);}static voidbinary_dump_command (char *cmd, int from_tty){ printf_unfiltered ("\"dump binary\" must be followed by a subcommand.\n"); help_list (binary_dump_cmdlist, "dump binary ", -1, gdb_stdout);}static voidbinary_append_command (char *cmd, int from_tty){ printf_unfiltered ("\"append binary\" must be followed by a subcommand.\n"); help_list (binary_append_cmdlist, "append binary ", -1, gdb_stdout);}extern initialize_file_ftype _initialize_cli_dump; /* -Wmissing-prototypes */void_initialize_cli_dump (void){ struct cmd_list_element *c; add_prefix_cmd ("dump", class_vars, dump_command, "\Dump target code/data to a local file.", &dump_cmdlist, "dump ", 0/*allow-unknown*/, &cmdlist); add_prefix_cmd ("append", class_vars, append_command, "\Append target code/data to a local file.", &append_cmdlist, "append ", 0/*allow-unknown*/, &cmdlist); add_dump_command ("memory", dump_memory_command, "\Write contents of memory to a raw binary file.\n\Arguments are FILE START STOP. Writes the contents of memory within the\n\range [START .. STOP) to the specifed FILE in raw target ordered bytes."); add_dump_command ("value", dump_value_command, "\Write the value of an expression to a raw binary file.\n\Arguments are FILE EXPRESSION. Writes the value of EXPRESSION to\n\the specified FILE in raw target ordered bytes."); add_prefix_cmd ("srec", all_commands, srec_dump_command, "\Write target code/data to an srec file.", &srec_cmdlist, "dump srec ", 0 /*allow-unknown*/, &dump_cmdlist); add_prefix_cmd ("ihex", all_commands, ihex_dump_command, "\Write target code/data to an intel hex file.", &ihex_cmdlist, "dump ihex ", 0 /*allow-unknown*/, &dump_cmdlist); add_prefix_cmd ("tekhex", all_commands, tekhex_dump_command, "\Write target code/data to a tekhex file.", &tekhex_cmdlist, "dump tekhex ", 0 /*allow-unknown*/, &dump_cmdlist); add_prefix_cmd ("binary", all_commands, binary_dump_command, "\Write target code/data to a raw binary file.", &binary_dump_cmdlist, "dump binary ", 0 /*allow-unknown*/, &dump_cmdlist); add_prefix_cmd ("binary", all_commands, binary_append_command, "\Append target code/data to a raw binary file.", &binary_append_cmdlist, "append binary ", 0 /*allow-unknown*/, &append_cmdlist); add_cmd ("memory", all_commands, dump_srec_memory, "\Write contents of memory to an srec file.\n\Arguments are FILE START STOP. Writes the contents of memory\n\within the range [START .. STOP) to the specifed FILE in srec format.", &srec_cmdlist); add_cmd ("value", all_commands, dump_srec_value, "\Write the value of an expression to an srec file.\n\Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\to the specified FILE in srec format.", &srec_cmdlist); add_cmd ("memory", all_commands, dump_ihex_memory, "\Write contents of memory to an ihex file.\n\Arguments are FILE START STOP. Writes the contents of memory within\n\the range [START .. STOP) to the specifed FILE in intel hex format.", &ihex_cmdlist); add_cmd ("value", all_commands, dump_ihex_value, "\Write the value of an expression to an ihex file.\n\Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\to the specified FILE in intel hex format.", &ihex_cmdlist); add_cmd ("memory", all_commands, dump_tekhex_memory, "\Write contents of memory to a tekhex file.\n\Arguments are FILE START STOP. Writes the contents of memory\n\within the range [START .. STOP) to the specifed FILE in tekhex format.", &tekhex_cmdlist); add_cmd ("value", all_commands, dump_tekhex_value, "\Write the value of an expression to a tekhex file.\n\Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\to the specified FILE in tekhex format.", &tekhex_cmdlist); add_cmd ("memory", all_commands, dump_binary_memory, "\Write contents of memory to a raw binary file.\n\Arguments are FILE START STOP. Writes the contents of memory\n\within the range [START .. STOP) to the specifed FILE in binary format.", &binary_dump_cmdlist); add_cmd ("value", all_commands, dump_binary_value, "\Write the value of an expression to a raw binary file.\n\Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\to the specified FILE in raw target ordered bytes.", &binary_dump_cmdlist); add_cmd ("memory", all_commands, append_binary_memory, "\Append contents of memory to a raw binary file.\n\Arguments are FILE START STOP. Writes the contents of memory within the\n\range [START .. STOP) to the specifed FILE in raw target ordered bytes.", &binary_append_cmdlist); add_cmd ("value", all_commands, append_binary_value, "\Append the value of an expression to a raw binary file.\n\Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\to the specified FILE in raw target ordered bytes.", &binary_append_cmdlist); c = add_com ("restore", class_vars, restore_command, "Restore the contents of FILE to target memory.\n\Arguments are FILE OFFSET START END where all except FILE are optional.\n\OFFSET will be added to the base address of the file (default zero).\n\If START and END are given, only the file contents within that range\n\(file relative) will be restored to target memory."); c->completer = filename_completer; /* FIXME: completers for other commands. */}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -