您好,登錄后才能下訂單哦!
docker+gdb調(diào)試 PHP 源碼看 strval 函數(shù) C 的實(shí)現(xiàn)方法?這個(gè)問(wèn)題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見(jiàn)到的。希望通過(guò)這個(gè)問(wèn)題能讓你收獲頗深。下面是小編給大家?guī)?lái)的參考內(nèi)容,讓我們一起來(lái)看看吧!
php strval 函數(shù)的作用很簡(jiǎn)單,就是你給他一個(gè)值,他給你返回字符串類(lèi)型。
算是一個(gè)比較簡(jiǎn)單的函數(shù)了,我們來(lái)通過(guò) gdb 來(lái)一探究竟。
通過(guò)本文,你可以窺探下
● gdb 的簡(jiǎn)單使用
● gdb gui 模式初探
● 看看平時(shí)寫(xiě)的 PHP 代碼在 C 語(yǔ)言里的樣子
● 對(duì)使用 gdb 調(diào)試 php 代碼有個(gè)初步了解
● 對(duì)了,文末有一些截圖,不要錯(cuò)過(guò)
采購(gòu)食材
● 電腦一臺(tái)
● docker 和 docker-compose
gdb 也好, PHP 也好,都打包成 docker 鏡像啦,開(kāi)袋即食,甚好。
備菜環(huán)節(jié)
1、使用 docker 拉取環(huán)境
# 拉取準(zhǔn)備好的環(huán)境 git clone https://github.com/rovast/docker-examples.git # 進(jìn)入項(xiàng)目 cd docker-examples/gdb-php-src/ # 啟動(dòng),會(huì)經(jīng)歷一個(gè)漫長(zhǎng)又不太漫長(zhǎng)的等待,看你網(wǎng)速 docker-compose up -d
關(guān)于容器內(nèi)的環(huán)境,大家可以看看 dockerfile
其實(shí)很簡(jiǎn)單,就是基于 gcc 官方鏡像構(gòu)建,然后增加了 vim gdb,并且下載了 php7.0.0 的源碼,按照 debug 參數(shù)進(jìn)行編譯
顯示如下
Creating network "gdb-php-src_default" with the default driver Creating gdb-php-src ... done
2、進(jìn)入容器
docker exec -it gdb-php-src bash ### 顯示下面的東西,表示你已經(jīng)進(jìn)入到容器內(nèi)了 #### root@71a98d1bc1a6:/home#
我們看看容器內(nèi)的環(huán)境(php 以及 gdb)
### 我們?cè)谌萜鲀?nèi)看看環(huán)境 root@71a98d1bc1a6:/home# ls php-7.0.0 start.md root@71a98d1bc1a6:/home# gdb -v GNU gdb (Debian 7.12-6) 7.12.0.20161007-git Copyright (C) 2016 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 "x86_64-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: <http://www.gnu.org/software/gdb/bugs/>. Find the GDB manual and other documentation resources online at: <http://www.gnu.org/software/gdb/documentation/>. For help, type "help". Type "apropos word" to search for commands related to "word". root@71a98d1bc1a6:/home# php -v PHP 7.0.0 (cli) (built: Apr 17 2019 13:33:30) ( NTS DEBUG ) Copyright (c) 1997-2015 The PHP Group Zend Engine v3.0.0, Copyright (c) 1998-2015 Zend Technologies root@71a98d1bc1a6:/home#
開(kāi)火(請(qǐng)?jiān)谌萜鲀?nèi)操作)
1、新建測(cè)試文件
root@71a98d1bc1a6:/home# vi test.php
輸入以下內(nèi)容
<?php strval(1234);
這個(gè)文件干的事情就比較簡(jiǎn)單了,就是把 -1234 [整形] 轉(zhuǎn)換為 -1234 [字符串]
2、開(kāi)始調(diào)試,進(jìn)入 gdb
接下來(lái)車(chē)速較快,各位按步驟跟上
輸入 gdb php,開(kāi)始調(diào)試
root@71a98d1bc1a6:/home# gdb php GNU gdb (Debian 7.12-6) 7.12.0.20161007-git Copyright (C) 2016 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 "x86_64-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: <http://www.gnu.org/software/gdb/bugs/>. Find the GDB manual and other documentation resources online at: <http://www.gnu.org/software/gdb/documentation/>. For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from php...done. (gdb)
3、打一些斷點(diǎn)(敲命令時(shí)可以用 tab 補(bǔ)全)
(gdb) b zend_long_to_str Breakpoint 1 at 0x810423: file /home/php-7.0.0/Zend/zend_operators.c, line 2743. (gdb) b zend_print_ulong_to_buf Breakpoint 2 at 0x5f387b: zend_print_ulong_to_buf. (13 locations) (gdb)
這里在關(guān)鍵函數(shù) zend_long_to_str 和 zend_print_ulong_to_buf 打了斷點(diǎn)。
b 在 gdb 中是 breakpoint 縮寫(xiě),后面可以加函數(shù)名,或者當(dāng)前文件的行號(hào)都是可以的
4、執(zhí)行,查看斷點(diǎn)值
(gdb) r test.php # 執(zhí)行我們剛才的那個(gè) PHP 文件 Starting program: /usr/local/bin/php test.php [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". warning: File "/usr/local/lib64/libstdc++.so.6.0.25-gdb.py" auto-loading has been declined by your `auto-load safe-path' set to "$debugdir:$datadir/auto-load". To enable execution of this file add add-auto-load-safe-path /usr/local/lib64/libstdc++.so.6.0.25-gdb.py line to your configuration file "/root/.gdbinit". To completely disable this security protection add set auto-load safe-path / line to your configuration file "/root/.gdbinit". For more information about this security protection see the "Auto-loading safe path" section in the GDB manual. E.g., run from the shell: info "(gdb)Auto-loading safe path" Breakpoint 1, zend_long_to_str (num=-1234) at /home/php-7.0.0/Zend/zend_operators.c:2743 2743 char *res = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); (gdb)
看的好像不明了嘛, ctrl + x 后再按 a 進(jìn)入 gui 模式看看
┌──/home/php-7.0.0/Zend/zend_operators.c────────────────────────────────────────────────────────────────────────────────────────────────┐ │2731 ZEND_API void ZEND_FASTCALL zend_locale_sprintf_double(zval *op ZEND_FILE_LINE_DC) /* {{{ */ │ │2732 { │ │2733 zend_string *str; │ │2734 │ │2735 str = zend_strpprintf(0, "%.*G", (int) EG(precision), (double)Z_DVAL_P(op)); │ │2736 ZVAL_NEW_STR(op, str); │ │2737 } │ │2738 /* }}} */ │ │2739 │ │2740 ZEND_API zend_string* ZEND_FASTCALL zend_long_to_str(zend_long num) /* {{{ */ │ │2741 { │ │2742 char buf[MAX_LENGTH_OF_LONG + 1]; │ B+>│2743 char *res = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); │ │2744 return zend_string_init(res, buf + sizeof(buf) - 1 - res, 0); │ │2745 } │ │2746 /* }}} */ │ │2747 │ │2748 ZEND_API zend_uchar ZEND_FASTCALL is_numeric_str_function(const zend_string *str, zend_long *lval, double *dval) /* {{{ */ { │ │2749 return is_numeric_string_ex(ZSTR_VAL(str), ZSTR_LEN(str), lval, dval, -1, NULL); │ │2750 } │ │2751 /* }}} */ │ │2752 │ │2753 ZEND_API zend_uchar ZEND_FASTCALL _is_numeric_string_ex(const char *str, size_t length, zend_long *lval, double *dval, int allo│ │2754 { │ │2755 const char *ptr; │ │2756 int digits = 0, dp_or_e = 0; │ │2757 double local_dval = 0.0; │ └───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘ multi-thre Thread 0x7ffff7fe37 In: zend_long_to_str L2743 PC: 0x810423 (gdb)
有點(diǎn)意思了,函數(shù)在 2743 行斷住了,我們來(lái)看看 num 的值
(gdb) p num $1 = -1234 (gdb)
對(duì)嘛,這個(gè)就是我們要處理的值,我們?nèi)龠\(yùn)行到 zend_print_long_to_buf 里看看
(gdb) c Continuing.
顯示如下
(gdb) c ┌──/home/php-7.0.0/Zend/zend_operators.h────────────────────────────────────────────────────────────────────────────────────────────────┐ │781 else \ │ │782 ZEND_TRY_BINARY_OP2_OBJECT_OPERATION(opcode) │ │783 │ │784 #define ZEND_TRY_UNARY_OBJECT_OPERATION(opcode) \ │ │785 if (UNEXPECTED(Z_TYPE_P(op1) == IS_OBJECT) \ │ │786 && UNEXPECTED(Z_OBJ_HANDLER_P(op1, do_operation)) \ │ │787 && EXPECTED(SUCCESS == Z_OBJ_HANDLER_P(op1, do_operation)(opcode, result, op1, NULL))) { \ │ │788 return SUCCESS; \ │ │789 } │ │790 │ │791 /* buf points to the END of the buffer */ │ │792 static zend_always_inline char *zend_print_ulong_to_buf(char *buf, zend_ulong num) { │ B+>│793 *buf = '\0'; │ │794 do { │ │795 *--buf = (char) (num % 10) + '0'; │ │796 num /= 10; │ │797 } while (num > 0); │ │798 return buf; │ │799 } │ │800 │ │801 /* buf points to the END of the buffer */ │ │802 static zend_always_inline char *zend_print_long_to_buf(char *buf, zend_long num) { │ │803 if (num < 0) { │ │804 char *result = zend_print_ulong_to_buf(buf, ~((zend_ulong) num) + 1); │ │805 *--result = '-'; │ │806 return result; │ │807 } else { │ └───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘ multi-thre Thread 0x7ffff7fe37 In: zend_print_ulong_to_buf L793 PC: 0x8041fd
接下來(lái),我們來(lái)進(jìn)行一些單步調(diào)試,看看內(nèi)存里的值
Breakpoint 1, zend_long_to_str (num=-1234) at /home/php-7.0.0/Zend/zend_operators.c:2743 (gdb) c #-------------> 表示繼續(xù)執(zhí)行 Continuing. Breakpoint 2, zend_print_ulong_to_buf (buf=0x7fffffffafe4 "", num=1234) at /home/php-7.0.0/Zend/zend_operators.h:793 (gdb) b 798 #-------------> 798行打個(gè)斷點(diǎn) Breakpoint 6 at 0x5f38e2: /home/php-7.0.0/Zend/zend_operators.h:798. (13 locations) (gdb) c Continuing. Breakpoint 6, zend_print_ulong_to_buf (buf=0x7fffffffafe0 "1234", num=0) at /home/php-7.0.0/Zend/zend_operators.h:798 (gdb) p buf #-------------> 查看 buf 的值 $2 = 0x7fffffffafe0 "1234" (gdb) x/10c buf #-------------> 查看 buf 位置開(kāi)始,連續(xù) 10 個(gè)以 char 為單位的內(nèi)存值 0x7fffffffafe0: 49 '1' 50 '2' 51 '3' 52 '4' 0 '\000' 0 '\000' 0 '\000' 0 '\000' 0x7fffffffafe8: 0 '\000' 65 'A' (gdb)
我們看到,函數(shù)返回的 buf 是字符串類(lèi)型的 '1234'
我們看看函數(shù) zend_print_ulong_to_buf,其實(shí)就是從高位到低位,按個(gè)取模(除以 10,取整數(shù)部分),然后塞到 buf 緩沖區(qū)。
比較有意思的是,buf 初始化的時(shí)候指向的是緩沖區(qū)的末尾,所以填充的時(shí)候高位在最后,然后逐步往前填充低位。
最后結(jié)束的時(shí)候,buf 就是我們需要的字符串類(lèi)容了
消化
其實(shí),本文就是使用 gdb 調(diào)試了 PHP 代碼,僅此而已。
更多的是給大家提供了一個(gè)直接上手玩玩的機(jī)會(huì),你所需要的只是個(gè) docker,然后動(dòng)動(dòng)手調(diào)試,很有意思。
動(dòng)手試試吧,甚至,去看 C 源碼吧!
附錄
手摸手帶你看 strval 函數(shù) C 實(shí)現(xiàn)
感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)docker+gdb調(diào)試 PHP 源碼看 strval 函數(shù) C 的實(shí)現(xiàn)方法大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。