gpt4 book ai didi

c - asprintf - 如何在 C 中获取字符串输入

转载 作者:行者123 更新时间:2023-11-30 20:00:39 25 4
gpt4 key购买 nike

我正在阅读“21世纪C”(第一版)这本书,并发现一个使用asprintf的有趣程序获取字符串而不使用 malloc/size of 来获取字符串长度或空间分配。请阅读同一本书中的附图以了解上下文。以下程序也来自本书。程序编译运行,并且不从键盘获取字符串输入,而是获取以下消息。问题是:为什么程序不从 keboard 获取字符串输入,而是显示长(不寻常)的错误消息?

#define _GNU_SOURCE  // stdio.h to include asprintf
#include <stdlib.h>
#include <stdio.h>

void get_strings(char const *in) {
char *cmd;
asprintf(&cmd, "strings %s", in);
if (system(cmd))
fprintf(stderr, "Something went Wrong %s.\n", cmd);
free(cmd);
}

int main(int argc, char **argv) {
get_strings(argv[0]);
//return 0;
}

运行程序时输出为:

/lib64/ld-linux-x86-64.so.2
libc.so.6
__stack_chk_fail
asprintf
stderr
system
fprintf
__libc_start_main
free
__gmon_start__
GLIBC_2.4
GLIBC_2.2.5
UH-X
AWAVA
AUATL
[]A\A]A^A_
strings %s
Something went Wrong %s.
;*3$"
GCC: (Ubuntu 5.3.1-14ubuntu2) 5.3.1 20160413
crtstuff.c
__JCR_LIST__
deregister_tm_clones
__do_global_dtors_aux
completed.7585
__do_global_dtors_aux_fini_array_entry
frame_dummy
__frame_dummy_init_array_entry
get_strings.c
__FRAME_END__
__JCR_END__
__init_array_end
_DYNAMIC
__init_array_start
__GNU_EH_FRAME_HDR
_GLOBAL_OFFSET_TABLE_
__libc_csu_fini
free@@GLIBC_2.2.5
_ITM_deregisterTMCloneTable
_edata
__stack_chk_fail@@GLIBC_2.4
system@@GLIBC_2.2.5
get_strings
__libc_start_main@@GLIBC_2.2.5
__data_start
fprintf@@GLIBC_2.2.5
__gmon_start__
__dso_handle
_IO_stdin_used
__libc_csu_init
__bss_start
asprintf@@GLIBC_2.2.5
main
_Jv_RegisterClasses
__TMC_END__
_ITM_registerTMCloneTable
stderr@@GLIBC_2.2.5
.symtab
.strtab
.shstrtab
.interp
.note.ABI-tag
.note.gnu.build-id
.gnu.hash
.dynsym
.dynstr
.gnu.version
.gnu.version_r
.rela.dyn
.rela.plt
.init
.plt.got
.text
.fini
.rodata
.eh_frame_hdr
.eh_frame
.init_array
.fini_array
.jcr
.dynamic
.got.plt
.data
.bss
.comment


------------------
(program exited with code: 0)
Press return to continue

**I running it on Linux Mint 18. GCC version -5.3.1
Build setting - gcc -Wall -c "%f"
Compile - gcc -Wall -o "%e" "%f"**

enter image description here

最佳答案

该程序的目的不是获取用户的输入:它使用system()函数来运行strings程序,并以自己的名称作为唯一的名称论证。

如果您在 Unix 环境中运行,strings 程序会扫描文件以查找可打印的字符串。您观察到的输出或多或少出乎意料:由 gcc 生成的程序可执行文件包含许多可打印字符串:

  • 您可以发现源代码中存在的字符串文字: 出了点问题 %s。
  • 在加载时动态解析许多符号名称
  • 调试信息,例如源文件的名称:crtstuff.c
  • 部分名称以.开头
  • 还有一些随机项([]A\A]A^A_;*3$"...)只是可打印字符的序列存在于可执行文件代码或二进制数据中,被 string 错误地解释为 C 字符串,因为它们后面跟着一个空字节。

关于c - asprintf - 如何在 C 中获取字符串输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41357961/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com