学 Win32 汇编[12]: PTR、OFFSET、ADDR、THIS


PTR: 指定要操作的数据尺寸
; Test12_1.asm
.386
.model flat, stdcall

include    windows.inc
include    kernel32.inc
include    masm32.inc
include    debug.inc
includelib kernel32.lib
includelib masm32.lib
includelib debug.lib

.data
    val db 11h, 22h, 33h, 44h, 55h, 66h, 77h, 88h

.code
main proc
    xor eax, eax             ;清空 EAX, 同 mov eax, 0
    mov eax, dword ptr val   ;
    PrintHex eax             ;44332211
    
    xor eax, eax             ;
    mov eax, dword ptr val+1 ;
    PrintHex eax             ;55443322
    
    xor eax, eax             ;
    mov ax, word ptr val     ;
    PrintHex eax             ;00002211
    
    xor eax, eax             ;
    mov al, byte ptr val     ;
    PrintHex eax             ;00000011
    ret
main endp
end main

OFFSET: 获取全局变量或标号的偏移地址
; Test12_2.asm
.386
.model flat, stdcall

include    windows.inc
include    kernel32.inc
include    masm32.inc
include    debug.inc
includelib kernel32.lib
includelib masm32.lib
includelib debug.lib

.data
    v1 db 'abcdefg', 0
    v2 dd 11223344h

.code
main proc
    PrintHex offset v1    ;00403000
    PrintHex offset v2    ;00403008
    PrintHex offset main  ;00401000 - 这里的 main 是个标号
    ret
;本例中的 offset 不能用 addr 代替
main endp
end main

ADDR: 类似 offset 也是获取变量的地址...
; Test12_3.asm
.386
.model flat, stdcall

;include    windows.inc
include    kernel32.inc
includelib kernel32.lib
include    user32.inc
includelib user32.lib

.data
    v1 dd 00434241h ;ABC
    v2 dd 00636261h ;abc

.code
main proc
    invoke MessageBox, 0, offset v1, offset v2, 0 ;现在 v1、v2 是全局变量
    invoke MessageBox, 0,   addr v2,   addr v1, 0 ;使用 offset 和 addr 均可
    invoke ExitProcess, 0
main endp
end main

获取局部变量的地址只能使用 ADDR:
; Test12_4.asm
.386
.model flat, stdcall

;include    windows.inc
include    kernel32.inc
includelib kernel32.lib
include    user32.inc
includelib user32.lib

.code
main proc
    LOCAL v1,v2
    mov v1, 00434241h
    mov v2, 00636261h
    ;invoke MessageBox, 0, offset v1, offset v2, 0  ;offset 不能获取局部变量的地址
    invoke MessageBox, 0,   addr v2,   addr v1, 0
    invoke ExitProcess, 0
main endp
end main

OFFSET 和 ADDR 的异同:
1、offset 不能获取局部变量的地址;
2、addr 只能用于调用函数(invoke)时, 不能用于赋值操作;
3、addr 面对局部变量时会转换为 lea 等指令, addr 面对全局变量时则直接调用 offset;
4、在 invoke 中应尽量使用 addr, 其他只用 offset.

THIS:
; Test12_5.asm
.386
.model flat, stdcall

include    windows.inc
include    kernel32.inc
include    masm32.inc
include    debug.inc
includelib kernel32.lib
includelib masm32.lib
includelib debug.lib

.data
    TextAddr equ this byte   ;伪指令 this 可让当前变量和下一个变量同址 
    szText db 'Asm', 0
.code
main proc
    PrintHex offset szText   ;00403000
    PrintHex offset TextAddr ;00403000
    
    PrintString szText       ;Asm
    mov [TextAddr], 'a'      ;给 TextAddr 赋值
    PrintString szText       ;asm
    ret
main endp
end main

详细分析这个panic问题,比如由什么模块引发?[2025-08-25 12:05:56] Unable to handle kernel NULL pointer dereference at virtual address 000001a4 [2025-08-25 12:08:34] pgd = c0014000 [2025-08-25 12:08:34] [000001a4] *pgd=00000000 [2025-08-25 12:08:34] Internal error: Oops: 17 [#1] PREEMPT SMP ARM [2025-08-25 12:08:34] Modules linked in: domain_dns(O) init_addr( (null) - (null)), core_addr(bf379000 - bf37a538) [2025-08-25 12:08:34] qos_kctl(O) init_addr( (null) - (null)), core_addr(bf03e000 - bf03e03c) [2025-08-25 12:08:34] traffic_control(O) init_addr( (null) - (null)), core_addr(bf003000 - bf0033d4) [2025-08-25 12:08:34] app_dpi(O) init_addr( (null) - (null)), core_addr(bf8af000 - bf8b371c) [2025-08-25 12:08:34] xt_pctl(O) init_addr( (null) - (null)), core_addr(bf89f000 - bf8a70c0) [2025-08-25 12:08:34] blockingx(O) init_addr( (null) - (null)), core_addr(bf777000 - bf77a474) [2025-08-25 12:08:34] wl(P) init_addr( (null) - (null)), core_addr(bf3af000 - bf5b9830) [2025-08-25 12:08:34] neighbor_discover(O) init_addr( (null) - (null)), core_addr(bf3a3000 - bf3a61bc) [2025-08-25 12:08:34] tp_dhcp_hook(O) init_addr( (null) - (null)), core_addr(bf39e000 - bf39f044) [2025-08-25 12:08:34] Unable to handle kernel NULL pointer dereference at virtual address 00000098 [2025-08-25 12:08:34] pgd = cc6a4000 [2025-08-25 12:08:34] [00000098] *pgd=019ef831, *pte=00000000, *ppte=00000000 [2025-08-25 12:08:34] client_recognition(O) init_addr( (null) - (null)), core_addr(bf389000 - bf389560) [2025-08-25 12:08:34] app_classifier(O) init_addr( (null) - (null)), core_addr(bf383000 - bf3856f0) [2025-08-25 12:08:34] domain_libs(O) init_addr( (null) - (null)), core_addr(bf377000 - bf37746c) [2025-08-25 12:08:34] nf_conntrack_netlink init_addr( (null) - (null)), core_addr(bf36f000 - bf37335c) [2025-08-25 12:08:34] nf_conntrack_ipv6 init_addr( (null) - (null)), core_addr(bf36a000 - bf36ad64) [2025-08-25 12:08:34] nf_defrag_ipv6 init_addr( (null) - (null)), core_addr(bf363000 - bf363d74) [2025-08-25 12:08:34] ipt_TRIGGER(O) init_addr( (null) - (null)), core_addr(bf35f000 - bf35f4ec) [2025-08-25 12:08:34] xt_V6PORTS(O) init_addr( (null) - (null)), core_addr(bf35b000 - bf35bd04) [2025-08-25 12:08:34] xt_LOOPBACKDNAT(O) init_addr( (null) - (null)), core_addr(bf357000 - bf3577f8) [2025-08-25 12:08:34] xt_CHECKPORTS(PO) init_addr( (null) - (null)), core_addr(bf353000 - bf3531a8) [2025-08-25 12:08:34] nf_nat_tftp init_addr( (null) - (null)), core_addr(bf34f000 - bf34f07c) [2025-08-25 12:08:34] nf_conntrack_tftp init_addr( (null) - (null)), core_addr(bf34b000 - bf34b1a4) [2025-08-25 12:08:34] nf_nat_snmp_basic init_addr( (null) - (null)), core_addr(bf346000 - bf3472d4) [2025-08-25 12:08:34] nf_conntrack_snmp init_addr( (null) - (null)), core_addr(bf342000 - bf342080) [2025-08-25 12:08:34] nf_nat_sip init_addr( (null) - (null)), core_addr(bf33d000 - bf33e4f4) [2025-08-25 12:08:34] nf_conntrack_sip init_addr( (null) - (null)), core_addr(bf336000 - bf338908) [2025-08-25 12:08:34] nf_nat_pptp init_addr( (null) - (null)), core_addr(bf332000 - bf3323a8) [2025-08-25 12:08:34] nf_conntrack_pptp init_addr( (null) - (null)), core_addr(bf32e000 - bf32e878) [2025-08-25 12:08:34] nf_nat_h323 init_addr( (null) - (null)), core_addr(bf329000 - bf329dbc) [2025-08-25 12:08:34] nf_conntrack_h323 init_addr( (null) - (null)), core_addr(bf31d000 - bf32054c) [2025-08-25 12:08:34] nf_nat_proto_gre init_addr( (null) - (null)), core_addr(bf319000 - bf31912c) [2025-08-25 12:08:34] nf_conntrack_proto_gre init_addr( (null) - (null)), core_addr(bf315000 - bf315644) [2025-08-25 12:08:34] nf_nat_amanda init_addr( (null) - (null)), core_addr(bf311000 - bf311120) [2025-08-25 12:08:34] nf_conntrack_amanda init_addr( (null) - (null)), core_addr(bf30d000 - bf30d2d4) [2025-08-25 12:08:34] nf_conntrack_broadcast init_addr( (null) - (null)), core_addr(bf30b000 - bf30b174) [2025-08-25 12:08:34] nf_nat_irc init_addr( (null) - (null)), core_addr(bf307000 - bf307158) [2025-08-25 12:08:34] nf_conntrack_irc init_addr( (null) - (null)), core_addr(bf303000 - bf303448) [2025-08-25 12:08:34] nf_nat_ftp init_addr( (null) - (null)), core_addr(bf2ff000 - bf2ff1fc) [2025-08-25 12:08:34] nf_conntrack_ftp init_addr( (null) - (null)), core_addr(bf2fa000 - bf2faa30) [2025-08-25 12:08:34] xt_iprange init_addr( (null) - (null)), core_addr(bf2f6000 - bf2f6220) [2025-08-25 12:08:34] xt_quota init_addr( (null) - (null)), core_addr(bf2f2000 - bf2f20e0) [2025-08-25 12:08:34] xt_pkttype init_addr( (null) - (null)), core_addr(bf2ee000 - bf2ee09c) [2025-08-25 12:08:34] xt_owner init_addr( (null) - (null)), core_addr(bf2ea000 - bf2ea114) [2025-08-25 12:08:34] compat_xtables(O) init_addr( (null) - (null)), core_addr(bf2e8000 - bf2e8064) [2025-08-25 12:08:34] xt_REDIRECT init_addr( (null) - (null)), core_addr(bf2e4000 - bf2e406c) [2025-08-25 12:08:34] xt_NETMAP init_addr( (null) - (null)), core_addr(bf2e0000 - bf2e01f8) [2025-08-25 12:08:34] xt_nat init_addr( (null) - (null)), core_addr(bf2dc000 - bf2dc200) [2025-08-25 12:08:34] nf_nat_redirect init_addr( (null) - (null)), core_addr(bf2da000 - bf2da174) [2025-08-25 12:08:34] ipt_MASQUERADE init_addr( (null) - (null)), core_addr(bf2d6000 - bf2d6090) [2025-08-25 12:08:34] nf_nat_masquerade_ipv4 init_addr( (null) - (null)), core_addr(bf2d4000 - bf2d4634) [2025-08-25 12:08:34] iptable_nat init_addr( (null) - (null)), core_addr(bf2d0000 - bf2d0078) [2025-08-25 12:08:34] nf_nat_ipv4 init_addr( (null) - (null)), core_addr(bf2cc000 - bf2cca6c) [2025-08-25 12:08:34] nf_nat init_addr( (null) - (null)), core_addr(bf2c6000 - bf2c7908) [2025-08-25 12:08:34] xt_recent init_addr( (null) - (null)), core_addr(bf2c1000 - bf2c20bc) [2025-08-25 12:08:34] xt_helper init_addr( (null) - (null)), core_addr(bf2bd000 - bf2bd0f8) [2025-08-25 12:08:34] xt_connmark init_addr( (null) - (null)), core_addr(bf2b9000 - bf2b9190) [2025-08-25 12:08:34] xt_connbytes init_addr( (null) - (null)), core_addr(bf2b5000 - bf2b5268) [2025-08-25 12:08:34] pptp init_addr( (null) - (null)), core_addr(bf2ae000 - bf2af23c) [2025-08-25 12:08:34] xt_conntrack init_addr( (null) - (null)), core_addr(bf2aa000 - bf2aa59c) [2025-08-25 12:08:34] xt_CT init_addr( (null) - (null)), core_addr(bf2a6000 - bf2a657c) [2025-08-25 12:08:34] iptable_raw init_addr( (null) - (null)), core_addr(bf2a2000 - bf2a208c) [2025-08-25 12:08:34] xt_state init_addr( (null) - (null)), core_addr(bf29e000 - bf29e0a0) [2025-08-25 12:08:34] nf_conntrack_ipv4 init_addr( (null) - (null)), core_addr(bf298000 - bf299504) [2025-08-25 12:08:34] nf_defrag_ipv4 init_addr( (null) - (null)), core_addr(bf294000 - bf294110) [2025-08-25 12:08:34] nf_conntrack init_addr( (null) - (null)), core_addr(bf283000 - bf28c780) [2025-08-25 12:08:34] tpbr(O) init_addr( (null) - (null)), core_addr(bf265000 - bf2781a0) [2025-08-25 12:08:34] ipt_REJECT init_addr( (null) - (null)), core_addr(bf261000 - bf2610f8) [2025-08-25 12:08:34] xt_TCPMSS init_addr( (null) - (null)), core_addr(bf25d000 - bf25d674) [2025-08-25 12:08:34] xt_comment init_addr( (null) - (null)), core_addr(bf259000 - bf259014) [2025-08-25 12:08:34] xt_multiport init_addr( (null) - (null)), core_addr(bf255000 - bf255268) [2025-08-25 12:08:34] xt_mac init_addr( (null) - (null)), core_addr(bf251000 - bf251094) [2025-08-25 12:08:34] xt_limit init_addr( (null) - (null)), core_addr(bf24d000 - bf24d1a8) [2025-08-25 12:08:34] iptable_mangle init_addr( (null) - (null)), core_addr(bf249000 - bf249130) [2025-08-25 12:08:34] iptable_filter init_addr( (null) - (null)), core_addr(bf245000 - bf24508c) [2025-08-25 12:08:34] ip_tables init_addr( (null) - (null)), core_addr(bf240000 - bf241b20) [2025-08-25 12:08:34] ip_gre init_addr( (null) - (null)), core_addr(bf23b000 - bf23c55c) [2025-08-25 12:08:34] gre init_addr( (null) - (null)), core_addr(bf237000 - bf237848) [2025-08-25 12:08:34] tipc init_addr( (null) - (null)), core_addr(bf21f000 - bf231a54) [2025-08-25 12:08:34] sit init_addr( (null) - (null)), core_addr(bf218000 - bf21aa74) [2025-08-25 12:08:34] statistics(O) init_addr( (null) - (null)), core_addr(bf1df000 - bf1e1314) [2025-08-25 12:08:34] ts_fsm init_addr( (null) - (null)), core_addr(bf1db000 - bf1db564) [2025-08-25 12:08:34] ts_bm init_addr( (null) - (null)), core_addr(bf1d7000 - bf1d7330) [2025-08-25 12:08:34] ts_kmp init_addr( (null) - (null)), core_addr(bf1d3000 - bf1d3288) [2025-08-25 12:08:34] igs(P) init_addr( (null) - (null)), core_addr(bf1cd000 - bf1cee44) [2025-08-25 12:08:34] emf(P) init_addr( (null) - (null)), core_addr(bf1c6000 - bf1c8808) [2025-08-25 12:08:34] hnd init_addr( (null) - (null)), core_addr(bf18c000 - bf1b1fa0) [2025-08-25 12:08:34] cfg80211 init_addr( (null) - (null)), core_addr(bf165000 - bf183f34) [2025-08-25 12:08:34] otp(P) init_addr( (null) - (null)), core_addr(bf161000 - bf161444) [2025-08-25 12:08:34] pwrmngtd(P) init_addr( (null) - (null)), core_addr(bf15d000 - bf15d414) [2025-08-25 12:08:34] bcmvlan(P) init_addr( (null) - (null)), core_addr(bf148000 - bf154148) [2025-08-25 12:08:34] bcm_pcie_hcd init_addr( (null) - (null)), core_addr(bf13d000 - bf141794) [2025-08-25 12:08:34] bcm_enet init_addr( (null) - (null)), core_addr(bf120000 - bf133700) [2025-08-25 12:08:34] archer(P) init_addr( (null) - (null)), core_addr(bf0f5000 - bf10ddd0) [2025-08-25 12:08:34] cmdlist(P) init_addr( (null) - (null)), core_addr(bf0e3000 - bf0ee140) [2025-08-25 12:08:34] pktflow(P) init_addr( (null) - (null)), core_addr(bf047000 - bf06cfc0) [2025-08-25 12:08:34] bcmlibs(P) init_addr( (null) - (null)), core_addr(bf040000 - bf0422d0) [2025-08-25 12:08:34] chipinfo(P) init_addr( (null) - (null)), core_addr(bf03c000 - bf03c108) [2025-08-25 12:08:34] bcm_ingqos(P) init_addr( (null) - (null)), core_addr(bf005000 - bf00833c) [2025-08-25 12:08:34] wlcsm(P) init_addr( (null) - (null)), core_addr(bf000000 - bf000ccc) [2025-08-25 12:08:34] [last unloaded: safesearch_dns] [2025-08-25 12:08:34] CPU: 0 PID: 0 Comm: EC&B& Tainted: P O 4.1.52 #1 [2025-08-25 12:08:34] Hardware name: Generic DT based system [2025-08-25 12:08:34] task: c7263ff0 ti: c7264000 task.ti: c7263fd8 [2025-08-25 12:08:34] pc : [<c0027610>] lr : [<c001926c>] psr: 10070193 [2025-08-25 12:08:34] sp : c7266110 ip : 00000000 fp : 000000b4 [2025-08-25 12:08:34] r10: c7e0be00 r9 : 00000017 r8 : cf805000 [2025-08-25 12:08:34] r7 : 00000000 r6 : 000001a4 r5 : 000001a4 r4 : c72661e8 [2025-08-25 12:08:34] r3 : 10070193 r2 : c72661e8 r1 : 00000017 r0 : 000001a4 [2025-08-25 12:08:34] Flags: nzcV IRQs off FIQs on Mode SVC_32 ISA ARM Segment user [2025-08-25 12:08:34] Control: 10c5387d Table: 0337404a DAC: 00000015 [2025-08-25 12:08:34] Process EC&B& (pid: 0, stack limit = 0xc72641e8) [2025-08-25 12:08:34] Stack: (0xc7266110 to 0xc7265fd8) [2025-08-25 12:08:34] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:34] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:34] Exception stack(0xc72661e8 to 0xc7266230) [2025-08-25 12:08:34] 61e0: 000001a4 00000017 c7266308 10070193 c7266308 000001a4 [2025-08-25 12:08:34] 6200: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7266230 [2025-08-25 12:08:34] 6220: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:34] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:34] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:34] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:34] Exception stack(0xc7266308 to 0xc7266350) [2025-08-25 12:08:34] 6300: 000001a4 00000017 c7266428 10070193 c7266428 000001a4 [2025-08-25 12:08:34] 6320: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7266350 [2025-08-25 12:08:34] [fkb_pctl_check:4511]Leave a fkb to the default Linux stack [2025-08-25 12:08:34] 6340: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:34] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:34] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:34] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:34] Exception stack(0xc7266428 to 0xc7266470) [2025-08-25 12:08:34] 6420: 000001a4 00000017 c7266548 10070193 c7266548 000001a4 [2025-08-25 12:08:34] 6440: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7266470 [2025-08-25 12:08:34] 6460: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:34] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:34] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:34] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:34] Exception stack(0xc7266548 to 0xc7266590) [2025-08-25 12:08:34] 6540: 000001a4 00000017 c7266668 10070193 c7266668 000001a4 [2025-08-25 12:08:34] 6560: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7266590 [2025-08-25 12:08:34] 6580: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:34] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:34] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:34] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:34] Exception stack(0xc7266668 to 0xc72666b0) [2025-08-25 12:08:34] 6660: 000001a4 00000017 c7266788 10070193 c7266788 000001a4 [2025-08-25 12:08:34] 6680: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c72666b0 [2025-08-25 12:08:34] 66a0: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:34] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:34] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:34] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:34] Exception stack(0xc7266788 to 0xc72667d0) [2025-08-25 12:08:34] 6780: 000001a4 00000017 c72668a8 10070193 c72668a8 000001a4 [2025-08-25 12:08:34] 67a0: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c72667d0 [2025-08-25 12:08:34] 67c0: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:34] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:34] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:34] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:34] Exception stack(0xc72668a8 to 0xc72668f0) [2025-08-25 12:08:34] 68a0: 000001a4 00000017 c72669c8 10070193 c72669c8 000001a4 [2025-08-25 12:08:35] 68c0: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c72668f0 [2025-08-25 12:08:35] 68e0: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc72669c8 to 0xc7266a10) [2025-08-25 12:08:35] 69c0: 000001a4 00000017 c7266ae8 10070193 c7266ae8 000001a4 [2025-08-25 12:08:35] 69e0: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7266a10 [2025-08-25 12:08:35] 6a00: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7266ae8 to 0xc7266b30) [2025-08-25 12:08:35] 6ae0: 000001a4 00000017 c7266c08 10070193 c7266c08 000001a4 [2025-08-25 12:08:35] 6b00: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7266b30 [2025-08-25 12:08:35] 6b20: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7266c08 to 0xc7266c50) [2025-08-25 12:08:35] 6c00: 000001a4 00000017 c7266d28 10070193 c7266d28 000001a4 [2025-08-25 12:08:35] 6c20: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7266c50 [2025-08-25 12:08:35] 6c40: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7266d28 to 0xc7266d70) [2025-08-25 12:08:35] 6d20: 000001a4 00000017 c7266e48 10070193 c7266e48 000001a4 [2025-08-25 12:08:35] 6d40: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7266d70 [2025-08-25 12:08:35] 6d60: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7266e48 to 0xc7266e90) [2025-08-25 12:08:35] 6e40: 000001a4 00000017 c7266f68 10070193 c7266f68 000001a4 [2025-08-25 12:08:35] 6e60: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7266e90 [2025-08-25 12:08:35] 6e80: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7266f68 to 0xc7266fb0) [2025-08-25 12:08:35] 6f60: 000001a4 00000017 c7267088 10070193 c7267088 000001a4 [2025-08-25 12:08:35] 6f80: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7266fb0 [2025-08-25 12:08:35] 6fa0: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7267088 to 0xc72670d0) [2025-08-25 12:08:35] 7080: 000001a4 00000017 c72671a8 10070193 c72671a8 000001a4 [2025-08-25 12:08:35] 70a0: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c72670d0 [2025-08-25 12:08:35] 70c0: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc72671a8 to 0xc72671f0) [2025-08-25 12:08:35] 71a0: 000001a4 00000017 c72672c8 10070193 c72672c8 000001a4 [2025-08-25 12:08:35] 71c0: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c72671f0 [2025-08-25 12:08:35] 71e0: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc72672c8 to 0xc7267310) [2025-08-25 12:08:35] 72c0: 000001a4 00000017 c72673e8 10070193 c72673e8 000001a4 [2025-08-25 12:08:35] 72e0: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7267310 [2025-08-25 12:08:35] 7300: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc72673e8 to 0xc7267430) [2025-08-25 12:08:35] 73e0: 000001a4 00000017 c7267508 10070193 c7267508 000001a4 [2025-08-25 12:08:35] 7400: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7267430 [2025-08-25 12:08:35] 7420: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7267508 to 0xc7267550) [2025-08-25 12:08:35] 7500: 000001a4 00000017 c7267628 10070193 c7267628 000001a4 [2025-08-25 12:08:35] 7520: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7267550 [2025-08-25 12:08:35] 7540: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7267628 to 0xc7267670) [2025-08-25 12:08:35] 7620: 000001a4 00000017 c7267748 10070193 c7267748 000001a4 [2025-08-25 12:08:35] 7640: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7267670 [2025-08-25 12:08:35] 7660: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7267748 to 0xc7267790) [2025-08-25 12:08:35] 7740: 000001a4 00000017 c7267868 10070193 c7267868 000001a4 [2025-08-25 12:08:35] 7760: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7267790 [2025-08-25 12:08:35] 7780: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7267868 to 0xc72678b0) [2025-08-25 12:08:35] 7860: 000001a4 00000017 c7267988 10070193 c7267988 000001a4 [2025-08-25 12:08:35] 7880: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c72678b0 [2025-08-25 12:08:35] 78a0: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7267988 to 0xc72679d0) [2025-08-25 12:08:35] 7980: 000001a4 00000017 c7267aa8 10070193 c7267aa8 000001a4 [2025-08-25 12:08:35] 79a0: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c72679d0 [2025-08-25 12:08:35] 79c0: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7267aa8 to 0xc7267af0) [2025-08-25 12:08:35] 7aa0: 000001a4 00000017 c7267bc8 10070193 c7267bc8 000001a4 [2025-08-25 12:08:35] 7ac0: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7267af0 [2025-08-25 12:08:35] 7ae0: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7267bc8 to 0xc7267c10) [2025-08-25 12:08:35] 7bc0: 000001a4 00000017 c7267ce8 10070193 c7267ce8 000001a4 [2025-08-25 12:08:35] 7be0: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7267c10 [2025-08-25 12:08:35] 7c00: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7267ce8 to 0xc7267d30) [2025-08-25 12:08:35] 7ce0: 000001a4 00000017 c7267e08 10070193 c7267e08 000001a4 [2025-08-25 12:08:35] 7d00: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7267d30 [2025-08-25 12:08:35] 7d20: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7267e08 to 0xc7267e50) [2025-08-25 12:08:35] 7e00: 000001a4 00000017 c7267f28 10070193 c7267f28 000001a4 [2025-08-25 12:08:35] 7e20: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7267e50 [2025-08-25 12:08:35] 7e40: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Function entered at [<c001926c>] from [<c0022818>] [2025-08-25 12:08:35] Exception stack(0xc7267f28 to 0xc7267f70) [2025-08-25 12:08:35] 7f20: 000001a4 00000017 c7268048 10070193 c7268048 000001a4 [2025-08-25 12:08:35] 7f40: 000001a4 00000000 cf805000 00000017 c7e0be00 000000b4 00000000 c7267f70 [2025-08-25 12:08:35] 7f60: c001926c c0027610 10070193 ffffffff [2025-08-25 12:08:35] Function entered at [<c0022818>] from [<c0027610>] [2025-08-25 12:08:35] Function entered at [<c0027610>] from [<c001926c>] [2025-08-25 12:08:35] Code: e1a04002 e593700c e5923040 e3130080 (e59781a4) [2025-08-25 12:08:35] ---[ end trace e3ef0a366f911257 ]--- [2025-08-25 12:08:35] Internal error: Oops: 17 [#2] PREEMPT SMP ARM [2025-08-25 12:08:35] Modules linked in: domain_dns(O) init_addr( (null) - (null)), core_addr(bf379000 - bf37a538) [2025-08-25 12:08:35] SMP: failed to stop secondary CPUs [2025-08-25 12:08:36] Rebooting in 3 seconds.. [2025-08-25 12:08:36] SMP: failed to stop secondary CPUs [2025-08-25 12:08:40] kerSysSoftReset: called on cpu 1 [2025-08-25 12:08:40] ----
最新发布
08-26
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值