青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

Kisser Leon

這個kisser不太冷
posts - 100, comments - 102, trackbacks - 0, articles - 0

Finding crash information using the MAP file

Posted on 2007-04-09 13:45 kk 閱讀(1335) 評論(0)  編輯 收藏 引用 所屬分類: IT

非常好的一篇文章,from: http://www.codeproject.com/debug/mapfile.asp, by Wouter Dhondt

幾點小說明
1、該文是針對vc6.0的,不過vs2003同樣適用
 In the C/C++ tab, select "Line Numbers Only" for Debug Info
 對應于 Release-->C/C++ tab-->調試信息格式-->僅限行號(/Zd)
 
 type the switches /MAPINFO:LINES and /MAPINFO:EXPORTS in the Project Options edit box.
 對應于 Release-->鏈接器-->命令行-->附加選項(D): /MAPINFO:LINES /MAPINFO:EXPORTS

2、 該文舉的例子在查找行號的時候正好有一個與之對應的
 119 0001:000001a1
 不過我在試的時候,沒有一個地址正好一致的。比如說我要找的是00000049,但是上面的信息只有
 25 0001:00000042
 27 0001:0000004a
 是第25行呢?還是第27行?結果都不對,正確的似乎是49-42+25=32(32正好是源代碼中出錯的那一行,不知是不是巧合,未嚴格驗證過!)
 
3、Line numbers信息有很多
 Line numbers for .\release\main.obj(d:\main.cpp) segment .text
 Line numbers for C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\lib\LIBC.lib(F:\VS70Builds\3077\vc\crtbld\crt\src\intel\strncpy.asm) segment .text
 ...
 不過地址都是不一樣的了(這個我也未嚴格驗證)
 
4、既然都是可以算出來的,那是不是可以寫一個軟件來自動算出crash在哪一行呢?有現(xiàn)成的嗎?有空研究一下。恩。

Have fun.

Introduction

Programming neat applications is one thing. But when a user informs you your software has crashed, you know it's best to fix this before adding other features. If you're lucky enough, the user will have a crash address. This will go a long way in solving the problem. But how can you determine what went wrong, using this crash address?

Creating a MAP file

Well first of all, you'll need a MAP file. If you don't have one, it will be nearly impossible to find where your application crashed using the crash address. So first, I'll show you how to create a good MAP file. For this, I will create a new project (MAPFILE). You can do the same, or adjust your own project. I create a new project using the Win32 Application option in VC++ 6.0, selecting the 'typical "Hello Word!" application' to keep the size of the MAP file reasonable for explanation.

Once created we need to adjust the project settings for the release version. In the C/C++ tab, select "Line Numbers Only" for Debug Info.

Many people forget this, but you'll need this option if you want a good MAP file. This will not affect your release in any way. Next is the Link tab. Here you need to select the "Generate mapfile" option. Also, type the switches /MAPINFO:LINES and /MAPINFO:EXPORTS in the Project Options edit box.

Now, you're ready to compile and link your project. After linking, you will find a .map file in your intermediate directory (together with your exe).

Reading the MAP file

After all this dull work, now comes the neat part: how to read the MAP file. We'll do this by using a crash example. So first: how to crash your application. I did this by adding these two lines at the end of the InitInstance() function:

char* pEmpty = NULL;
*pEmpty = 'x'; // This is line 119

I'm sure you can find other instructions which will crash your application. Now recompile and link. If you start the application, it will crash and you'll get a message like this: 'The instruction at "0x004011a1" referenced memory at "0x00000000". The memory could not be "Written".' .

Now, it's time to open the MAP file with notepad or something similar. You MAP file will look like this:

The top of the MAP file contains the module name, the timestamp indicating the link of the project, and the preferred load address (which will probably be 0x00400000 unless you're using a dll). After the header comes the section information that shows which sections the linker brought in from the various OBJ and LIB files.

Collapse
MAPFILE
Timestamp is 3df6394d (Tue Dec 10 19:58:21 2002)
Preferred load address is 00400000
Start         Length     Name                   Class
0001:00000000 000038feH .text                   CODE
0002:00000000 000000f4H .idata$5                DATA
0002:000000f8 00000394H .rdata                  DATA
0002:0000048c 00000028H .idata$2                DATA
0002:000004b4 00000014H .idata$3                DATA
0002:000004c8 000000f4H .idata$4                DATA
0002:000005bc 0000040aH .idata$6                DATA
0002:000009c6 00000000H .edata                  DATA
0003:00000000 00000004H .CRT$XCA                DATA
0003:00000004 00000004H .CRT$XCZ                DATA
0003:00000008 00000004H .CRT$XIA                DATA
0003:0000000c 00000004H .CRT$XIC                DATA
0003:00000010 00000004H .CRT$XIZ                DATA
0003:00000014 00000004H .CRT$XPA                DATA
0003:00000018 00000004H .CRT$XPZ                DATA
0003:0000001c 00000004H .CRT$XTA                DATA
0003:00000020 00000004H .CRT$XTZ                DATA
0003:00000030 00002490H .data                   DATA
0003:000024c0 000005fcH .bss                    DATA
0004:00000000 00000250H .rsrc$01                DATA
0004:00000250 00000720H .rsrc$02                DATA

After the section information, you get the public function information. Notice the "public" part. If you have static-declared C functions, they won't show up in the MAP file. Fortunately, the line numbers will still reflect the static functions. The important parts of the public function information are the function names and the information in the Rva+Base column, which is the starting address of the function.

Collapse
  Address         Publics by Value              Rva+Base     Lib:Object
0001:00000000       _WinMain@16                00401000 f   MAPFILE.obj
0001:000000c0       ?MyRegisterClass@@YAGPAUHINSTANCE__@@@Z 004010c0 f   MAPFILE.obj
0001:00000150       ?InitInstance@@YAHPAUHINSTANCE__@@H@Z 00401150 f   MAPFILE.obj
0001:000001b0       ?WndProc@@YGJPAUHWND__@@IIJ@Z 004011b0 f   MAPFILE.obj
0001:00000310       ?About@@YGJPAUHWND__@@IIJ@Z 00401310 f   MAPFILE.obj
0001:00000350       _WinMainCRTStartup         00401350 f   LIBC:wincrt0.obj
0001:00000446       __amsg_exit                00401446 f   LIBC:wincrt0.obj
0001:0000048f       __cinit                    0040148f f   LIBC:crt0dat.obj
0001:000004bc       _exit                      004014bc f   LIBC:crt0dat.obj
0001:000004cd       __exit                     004014cd f   LIBC:crt0dat.obj
0001:00000591       __XcptFilter               00401591 f   LIBC:winxfltr.obj
0001:00000715       __wincmdln                 00401715 f   LIBC:wincmdln.obj
//SNIPPED FOR BETTER READING
0003:00002ab4       __FPinit                   00408ab4     <common>
0003:00002ab8       __acmdln                   00408ab8     <common>
entry point at        0001:00000350
Static symbols
0001:000035d0       LeadUp1                    004045d0 f   LIBC:memmove.obj
0001:000035fc       LeadUp2                    004045fc f   LIBC:memmove.obj
//SNIPPED FOR BETTER READING
0001:00000577       __initterm                 00401577 f   LIBC:crt0dat.obj
0001:0000046b       _fast_error_exit           0040146b f   LIBC:wincrt0.obj

The public function part is followed by the line information (you got this if you used the /MAPINFO:LINES in the Link tab and selected the "Line numbers" in the C/C++ tab). After this, you will get the export information if your project contains exported functions and you included /MAPINFO:EXPORTS in the link tab.

Collapse
Line numbers for .\Release\MAPFILE.obj(F:\MAPFILE\MAPFILE.cpp) segment .text
24 0001:00000000    30 0001:00000004    31 0001:0000001b    32 0001:00000027
35 0001:0000002d    53 0001:00000041    40 0001:00000047    43 0001:00000050
45 0001:00000077    47 0001:00000088    48 0001:0000008f    52 0001:000000ad
53 0001:000000b3    71 0001:000000c0    80 0001:000000c3    81 0001:000000c8
82 0001:000000ff    86 0001:00000114    88 0001:00000135    89 0001:00000145
102 0001:00000150   108 0001:00000155   110 0001:00000188   122 0001:0000018d
115 0001:0000018e   116 0001:0000019a   119 0001:000001a1   121 0001:000001a8
122 0001:000001ae   135 0001:000001b0   143 0001:000001cc   172 0001:000001ee
175 0001:0000020d   149 0001:00000216   157 0001:0000022c   175 0001:00000248
154 0001:00000251   174 0001:0000025f   175 0001:00000261   151 0001:0000026a
174 0001:00000287   175 0001:00000289   161 0001:00000294   164 0001:000002a8
165 0001:000002b6   166 0001:000002d8   174 0001:000002e7   175 0001:000002e9
169 0001:000002f2   174 0001:000002fa   175 0001:000002fc   179 0001:00000310
186 0001:0000031e   193 0001:0000032e   194 0001:00000330   188 0001:00000333
183 0001:00000344   194 0001:00000349

Now we will look up where the crash occurred. First, we'll determine which function contains the crash address. Look in the "Rva+Base" column and search the first function with an address bigger than the crash address. The preceding entry in the MAP file is the function that had the crash. In our example our crash address is 0x004011a1. This is between 0x00401150 and 0x004011b0 so we know the crash function is ?InitInstance@@YAHPAUHINSTANCE__@@H@Z . Any function name that starts with a question mark is a C++ decorated name. To translate the name, pass it as a command-line parameter to the Platform SDK program UNDNAME.EXE (in the bin dir). You won't need to do this most of the time as you might figure it out just by looking at it (here: InitInstance() in MAPFILE.obj).

This is a big step for bug tracking. But it gets even better: we can find out on which line the crash occurred! We need to do some basic hexadecimal mathematics, so people whom can't do this without a calculator: now is the time to use it. The first step is the following calculation: crash_address - preferred_load_address - 0x1000
Addresses are offsets from the beginning of the first code section, se we need to do this calculation. Subtracting the preferred load address is logical, but why do we need to substract another 0x1000? The crash address is an offset from the beginning of the code section, but the first part of the binary isn't the code section! The first part of the binary is the Portable Executable (PE), which is 0x1000 bytes long. Mystery solved. In our example, this is: 0x004011a1 - 0x00400000 - 0x1000 = 0x1a1

Now it's time to look in the line information section of the MAP file. The lines are shown like this: 30 0001:00000004. The first number is the line number, the second number is the offset from the beginning of the code section in which this line occurred. If we want to look for our line number, we just have to do the same thing we did for the function: determine the first occurrence of a bigger offset than the one we just calculated. The crash occurred in the preceding entry. In our example: 0x1a1 is before 0x1a8. So our crash occurred on line 119 in MAPFILE.CPP.

Keeping track of MAP files

Each release had it's own MAP file. It's not a bad idea to include the MAP file with the exe distribution. This way, you can be certain you have the correct MAP file for this exe. You could keep every MAP file with every exe on your system, but we all know this might give some troubles later on. The MAP file doesn't contain any information you wouldn't want the user to see (unless maybe class and function names ?) . A user would have no use with it, but at least you can ask for the MAP file if you don't have a copy yourself.

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美激情视频给我| 夜夜爽99久久国产综合精品女不卡| 免费成人美女女| 一本色道久久综合狠狠躁篇怎么玩 | 久久久国产精品一区二区三区| 亚洲精华国产欧美| 久久人人超碰| 欧美在线观看视频在线| 亚洲天堂黄色| 一区二区三区**美女毛片 | 欧美福利专区| 欧美99久久| 久久午夜精品一区二区| 久久精品卡一| 免费不卡在线观看| 欧美在线观看视频一区二区三区| 一本色道精品久久一区二区三区| 亚洲精品美女久久久久| 亚洲日韩中文字幕在线播放| 国产人久久人人人人爽| 国产亚洲精品久久飘花| 国内精品久久久久久久影视麻豆| 在线观看日韩av| 亚洲欧洲综合另类| 国产精品99久久久久久久vr| 亚洲一卡二卡三卡四卡五卡| 日韩视频免费观看高清完整版| 一本综合久久| 欧美综合国产精品久久丁香| 国内精品伊人久久久久av影院| 好吊色欧美一区二区三区视频| 国产综合网站| 亚洲精品婷婷| 欧美一区二区三区视频| 久久亚洲色图| 99国产精品99久久久久久| 亚洲影院免费观看| 快播亚洲色图| 国产精品区一区二区三区| 黄色一区二区在线观看| 中文久久乱码一区二区| 午夜视频在线观看一区| 亚洲福利久久| 新狼窝色av性久久久久久| 欧美成人在线免费视频| 免费观看亚洲视频大全| 欧美日韩少妇| 亚洲成色999久久网站| 亚洲一区欧美激情| 久久综合久久久久88| 欧美激情精品久久久久久| 欧美激情一区二区久久久| 亚洲精品欧洲精品| 久久精品国产69国产精品亚洲| 欧美日韩国产三级| 亚洲第一主播视频| 午夜宅男久久久| 一本色道久久综合| 欧美激情国产日韩精品一区18| 亚洲高清视频一区| 欧美成人国产| 久久伊人一区二区| 狠狠色噜噜狠狠狠狠色吗综合| 亚洲欧美日本伦理| 亚洲一区久久| 国产一区二区三区免费在线观看| 亚洲欧美日韩精品综合在线观看| 夜夜嗨av一区二区三区网页 | 欧美日韩精品二区第二页| 亚洲麻豆一区| 99在线热播精品免费99热| 国产精品黄页免费高清在线观看| 中国成人亚色综合网站| 亚洲天堂av在线免费| 国产欧美一区二区精品秋霞影院| 欧美在线观看视频一区二区三区| 欧美一区永久视频免费观看| 伊伊综合在线| 亚洲欧洲精品一区二区三区不卡| 欧美日韩一区视频| 久久精品国产视频| 欧美不卡高清| 欧美一区二区三区四区夜夜大片| 蜜月aⅴ免费一区二区三区 | 亚洲一区免费看| 国产午夜精品一区二区三区欧美| 久久精品国产精品亚洲精品| 久久精品夜夜夜夜久久| 亚洲精品一区二区三| 日韩天堂在线观看| 国产精品一区在线观看你懂的| 久久精品成人一区二区三区| 久久综合久久88| 亚洲一区二区在线播放| 久久www成人_看片免费不卡| 亚洲精品色图| 亚洲欧美激情诱惑| 亚洲日本中文字幕| 欧美在线视频播放| 在线亚洲电影| 久久久水蜜桃| 亚洲在线第一页| 免费成人性网站| 久久国产精品99精品国产| 麻豆久久精品| 小处雏高清一区二区三区| 久久综合九色欧美综合狠狠| 一本色道久久88精品综合| 性欧美精品高清| 久久综合九九| 牛牛影视久久网| 欧美中文在线视频| 欧美a级片一区| 久久精品国产清自在天天线| 欧美麻豆久久久久久中文| 久久久久久久网| 国产精品va在线| 亚洲国产精品99久久久久久久久| 欧美性猛交xxxx乱大交蜜桃| 亚洲国产成人一区| 精品电影一区| 久久大综合网| 久久久久久亚洲精品杨幂换脸| 国产精品久久久久高潮| 亚洲国产黄色片| 91久久视频| 美女精品在线观看| 欧美国产日韩视频| 亚洲人成欧美中文字幕| 老色鬼精品视频在线观看播放| 久久久www成人免费无遮挡大片| 国产精品麻豆va在线播放| 一级日韩一区在线观看| 亚洲一区二区在线| 国产精品成人一区| 亚洲视频电影在线| 亚洲免费在线观看视频| 欧美三级电影精品| 亚洲一区二区精品在线| 欧美在线视频一区二区| 国产一区二区三区av电影| 久久狠狠一本精品综合网| 鲁大师成人一区二区三区| 亚洲成色最大综合在线| 欧美成人综合网站| 亚洲精品美女免费| 亚洲一品av免费观看| 国产片一区二区| 久久久久久久久久看片| 欧美大片91| 日韩一区二区精品在线观看| 欧美日韩亚洲国产精品| 亚洲综合日韩在线| 老司机精品视频一区二区三区| 国产综合久久久久久鬼色| 免费日本视频一区| 日韩亚洲成人av在线| 欧美一区二区三区成人| 亚洲成人在线免费| 欧美日一区二区三区在线观看国产免| 一区二区激情视频| 老牛影视一区二区三区| 一区二区三区高清在线观看| 国产精品综合| 欧美成人国产va精品日本一级| 在线视频日本亚洲性| 美女脱光内衣内裤视频久久影院| 99re视频这里只有精品| 国产裸体写真av一区二区| 免费欧美网站| 亚欧成人在线| 日韩视频久久| 久久综合九色| 亚洲一二三区在线| 亚洲大胆美女视频| 国产精品视区| 欧美欧美午夜aⅴ在线观看| 午夜影院日韩| 亚洲精品一级| 欧美午夜剧场| 中文精品一区二区三区| 欧美在线日韩| 一本久久综合亚洲鲁鲁| 国产日韩欧美日韩大片| 欧美极品aⅴ影院| 欧美中日韩免费视频| 一级成人国产| 亚洲精品午夜精品| 欧美成人一区二区三区在线观看| 亚洲欧美日韩综合国产aⅴ| 亚洲激情国产精品| 国产在线观看精品一区二区三区| 欧美日韩视频在线观看一区二区三区| 久久久久久婷| 久久国产夜色精品鲁鲁99| 亚洲综合99| 亚洲网址在线| 日韩视频在线你懂得| 亚洲国产成人高清精品| 欧美www视频在线观看|