快速业务通道

Linux下发生段错误时如何产生core文件

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-04-25

  Linux下的C程序常常会内存访问错误等原因造成segment fault(段错误),此时如果系统core dump功能是打开的,那么将会有内存映像转储到硬盘上来,之后可以用gdb对core文件进行分析,还原系统发生段错误时刻的堆栈情况.这对于我们发现程序bug很有帮助.


  使用ulimit -a可以查看系统core文件的大小限制;使用ulimit -c [kbytes]可以设置系统允许生成的core文件大小,例如


  ulimit -c 0 不产生core文件


  ulimit -c 100 设置core文件最大为100k


  ulimit -c unlimited 不限制core文件大小


  先看一段会造成段错误的程序:


  #include <stdio.h>


  int main()


  {


  char *ptr="linuxers.cn";


  *ptr=0;


  }


  编译运行后结果如下:


  [leconte@localhost test]$ gcc -g -o test a.c


  [leconte@localhost test]$ ./test


  段错误


  此时并没有产生core文件,接下来使用ulimit -c设置core文件大小为无限制,再执行./test程序,结果如下:


  [leconte@localhost ~]$ ulimit -a


  core file size (blocks, -c) 0


  .........


  [leconte@localhost test]$ ulimit -c unlimited


  [leconte@localhost test]$ ulimit -a


  core file size (blocks, -c) unlimited


  ..............


  [leconte@localhost test]$ ./test


  段错误 (core dumped)


  [leconte@localhost test]$ ls -al core.*


  -rw------- 1 leconte leconte 139264 01-06 22:31 core.2065


  可见core文件已经生成,接下来可以用gdb分析,查看堆栈情况:


  [leconte@localhost test]$ gdb ./test core.2065


  GNU gdb Fedora (6.8-27.el5)


  Copyright (C) 2008 Free Software Foundation, Inc.


  License GPLv3 : GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>


  This is free software: you are free to change and redistribute it.


  There is NO WARRANTY, to the extent permitted by law. Type "show copying"


  and "show warranty" for details.


  This GDB was configured as "i386-redhat-linux-gnu"...


  warning: exec file is newer than core file.


  warning: Can''t read pathname for load map: Input/output error.


  Reading symbols from /lib/libc.so.6...done.


  Loaded symbols for /lib/libc.so.6


  Reading symbols from /lib/ld-linux.so.2...done.


  Loaded symbols for /lib/ld-linux.so.2


  Core was generated by `./test''.


  Program terminated with signal 11, Segmentation fault.


  [New process 2065]


  #0 0x0804836f in main () at a.c:6


  6 *ptr=0;


  从上述输出可以清楚的看到,段错误出现在a.c的第6行,问题已经清晰地定位到了.


  很多系统默认的core文件大小都是0,我们可以通过在shell的启动脚本/etc/bashrc或者~/.bashrc等地方来加入 ulimit -c 命令来指定core文件大小,从而确保core文件能够生成.


  除此之外,还可以在/proc/sys/kernel/core_pattern里设置core文件的文件名模板,详情请看core的官方man手册.


   转载请注明来自http://www.linuxers.cn

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号