• 下载解压 bash-3.2
  • 编译bash
export LFS=/my/soft/mylfs
tar xvf $LFS/sources/bash-3.2.tar.gz -C $LFS/sources/
cd $LFS/sources/bash-3.2/ patch -Np1 -i ../bash-3.2-fixes-.patch ./configure --prefix=$LFS/builds --without-bash-malloc
make
make install
  • 常用的调用堆栈
在读取命令之前执行一些命令,如PS1的打印
bash [C/C++ Application]
bash [] [cores: ]
Thread # [core: ] (Suspended : Step)
execute_builtin_or_function() at execute_cmd.c:, 0x42bf86
execute_simple_command() at execute_cmd.c:, 0x42bf86
execute_command_internal() at execute_cmd.c: 0x42952e
parse_and_execute() at evalstring.c: 0x45dc63
execute_variable_command() at parse.y:, 0x41e157
parse_command() at eval.c: 0x41b1c2
read_command() at eval.c: 0x41b2a6
reader_loop() at eval.c: 0x41b4e4
main() at shell.c: 0x41ac53
gdb (7.2)
执行用户输入命令的堆栈
bash [C/C++ Application]
bash [] [cores: ]
Thread # [core: ] (Suspended : Step)
cd_builtin() at cd.def: 0x45a830
execute_builtin() at execute_cmd.c:, 0x4283d1
execute_builtin_or_function() at execute_cmd.c:, 0x42bf60
execute_simple_command() at execute_cmd.c:, 0x42bf60
execute_command_internal() at execute_cmd.c: 0x42952e
execute_command() at execute_cmd.c: 0x429ffe
reader_loop() at eval.c: 0x41b412
main() at shell.c: 0x41ac53
gdb (7.2)
execute_builtin_or_function 方法有一个分支,分为执行内建命令和执行函数
if (builtin)
result = execute_builtin (builtin, words, flags, );
else
result = execute_function (var, words, flags, fds_to_close, , ); 如果是执行函数,如何找到执行的函数呢?
func = find_function (words->word->word); /* Return the pointer to the function implementing builtin command NAME. */
sh_builtin_func_t *
find_shell_builtin (name)
char *name;
{
current_builtin = builtin_address_internal (name, );
return (current_builtin ? current_builtin->function : (sh_builtin_func_t *)NULL);
}
  • 执行内置命令的方法如下:
static int
execute_builtin (builtin, words, flags, subshell)
sh_builtin_func_t *builtin;
WORD_LIST *words;
int flags, subshell;
{
int old_e_flag, result, eval_unwind;
int isbltinenv; old_e_flag = exit_immediately_on_error;
/* The eval builtin calls parse_and_execute, which does not know about
the setting of flags, and always calls the execution functions with
flags that will exit the shell on an error if -e is set. If the
eval builtin is being called, and we're supposed to ignore the exit
value of the command, we turn the -e flag off ourselves, then
restore it when the command completes. */
if (subshell == && builtin == eval_builtin && (flags & CMD_IGNORE_RETURN))
{
begin_unwind_frame ("eval_builtin");
unwind_protect_int (exit_immediately_on_error);
exit_immediately_on_error = ;
eval_unwind = ;
}
else
eval_unwind = ; /* The temporary environment for a builtin is supposed to apply to
all commands executed by that builtin. Currently, this is a
problem only with the `unset', `source' and `eval' builtins. */ isbltinenv = (builtin == source_builtin || builtin == eval_builtin || builtin == unset_builtin); if (isbltinenv)
{
if (subshell == )
begin_unwind_frame ("builtin_env"); if (temporary_env)
{
push_scope (VC_BLTNENV, temporary_env);
if (subshell == )
add_unwind_protect (pop_scope, (flags & CMD_COMMAND_BUILTIN) ? : "");
temporary_env = (HASH_TABLE *)NULL;
}
} /* `return' does a longjmp() back to a saved environment in execute_function.
If a variable assignment list preceded the command, and the shell is
running in POSIX mode, we need to merge that into the shell_variables
table, since `return' is a POSIX special builtin. */
if (posixly_correct && subshell == && builtin == return_builtin && temporary_env)
{
begin_unwind_frame ("return_temp_env");
add_unwind_protect (merge_temporary_env, (char *)NULL);
} /*
执行执行的语句,会调用不同的内置方法执行具体的命令,如cd命令会执行cd.def中的cd_builtin方法,内置方法的文件都在builtins目录下
*/
result = ((*builtin) (words->next)); /* This shouldn't happen, but in case `return' comes back instead of
longjmp'ing, we need to unwind. */
if (posixly_correct && subshell == && builtin == return_builtin && temporary_env)
discard_unwind_frame ("return_temp_env"); if (subshell == && isbltinenv)
run_unwind_frame ("builtin_env"); if (eval_unwind)
{
exit_immediately_on_error += old_e_flag;
discard_unwind_frame ("eval_builtin");
} return (result);
}

bash 源码分析的更多相关文章

  1. 《深入理解Spark:核心思想与源码分析》(前言及第1章)

    自己牺牲了7个月的周末和下班空闲时间,通过研究Spark源码和原理,总结整理的<深入理解Spark:核心思想与源码分析>一书现在已经正式出版上市,目前亚马逊.京东.当当.天猫等网站均有销售 ...

  2. Spark源码分析之Spark Shell(下)

    继上次的Spark-shell脚本源码分析,还剩下后面半段.由于上次涉及了不少shell的基本内容,因此就把trap和stty放在这篇来讲述. 上篇回顾:Spark源码分析之Spark Shell(上 ...

  3. Spark源码分析之Spark-submit和Spark-class

    有了前面spark-shell的经验,看这两个脚本就容易多啦.前面总结的Spark-shell的分析可以参考: Spark源码分析之Spark Shell(上) Spark源码分析之Spark She ...

  4. Elasticsearch源码分析 - 源码构建

    原文地址:https://mp.weixin.qq.com/s?__biz=MzU2Njg5Nzk0NQ==&mid=2247483694&idx=1&sn=bd03afe5a ...

  5. Docker源码分析(九):Docker镜像

    1.前言 回首过去的2014年,大家可以看到Docker在全球刮起了一阵又一阵的“容器风”,工业界对Docker的探索与实践更是一波高过一波.在如今的2015年以及未来,Docker似乎并不会像其他昙 ...

  6. Docker源码分析(八):Docker Container网络(下)

    1.Docker Client配置容器网络模式 Docker目前支持4种网络模式,分别是bridge.host.container.none,Docker开发者可以根据自己的需求来确定最适合自己应用场 ...

  7. kube-scheduler源码分析

    kubernetes集群三步安装 kube-scheduler源码分析 关于源码编译 我嫌弃官方提供的编译脚本太麻烦,所以用了更简单粗暴的方式编译k8s代码,当然官方脚本在编译所有项目或者夸平台编译以 ...

  8. JVM源码分析-JVM源码编译与调试

    要分析JVM的源码,结合资料直接阅读是一种方式,但是遇到一些想不通的场景,必须要结合调试,查看执行路径以及参数具体的值,才能搞得明白.所以我们先来把JVM的源码进行编译,并能够使用GDB进行调试. 编 ...

  9. 鸿蒙内核源码分析(忍者ninja篇) | 都忍者了能不快吗 | 百篇博客分析OpenHarmony源码 | v61.02

    百篇博客系列篇.本篇为: v61.xx 鸿蒙内核源码分析(忍者ninja篇) | 都忍者了能不快吗 | 51.c.h.o 编译构建相关篇为: v50.xx 鸿蒙内核源码分析(编译环境篇) | 编译鸿蒙 ...

随机推荐

  1. js 控制文本只能输入数字

    代码如下: <input onkeypress="setNumber()"><script> function setNumber(){ var keyCo ...

  2. filter : progid:DXImageTransform.Microsoft.AlphaImageLoader ( enabled=bEnabled , sizingMethod=sSize , src=sURL )

    很多时候需要将图片显示在网页上,一般都会这样做,如下: <img src="xxx.jpg"/> 是的,这样是可以做到,但是如果我要将本地的图片显示到页面上呢?你可能会 ...

  3. linux之netstat命令

    netstat用于显示各种网络相关的信息,如网络连接,路由表接口状态(interface statistics), masquerade连接,多播成员(Multicast Memberships)等等 ...

  4. js对Cookie的读写操作

    //读Cookie function getCookie(objName) {//获取指定名称的cookie的值 var arrStr = document.cookie.split("; ...

  5. 高性能MySQL(三):服务器性能剖析

    select * from c LEFT JOIN c100w on c.id=c100w.id; -- 联合查询 show PROFILES; -- 查看查询耗时 select * from c; ...

  6. Python之mmap内存映射模块(大文本处理)说明

    背景: 通常在UNIX下面处理文本文件的方法是sed.awk等shell命令,对于处理大文件受CPU,IO等因素影响,对服务器也有一定的压力.关于sed的说明可以看了解sed的工作原理,本文将介绍通过 ...

  7. javascript export excel

    <input type="button" onclick="tableToExcel('tablename', 'name')" value=" ...

  8. 【svn】SSL error: A TLS warning alert has been received的解决方法

    第一次用svn(>_<),结果在运行下面语句时,svn很不友好的报错了..... svn co http:10.11.12.13/test1/test2 . 报错信息: svn: OPTI ...

  9. pycharm上安装使用easygui

    运行下面两句后,显示错误 import easygui easygui.msgbox("Hello There!") 错误: Traceback (most recent call ...

  10. width:100%;与width:auto;的区别

    <div> <p>1111</p> </div> div{ width:980px; background-color: #ccc; height:30 ...