gdb:如何判断某块内存是否标记为只读

发布于 2024-11-19 03:20:15 字数 110 浏览 6 评论 0原文

我正在调试一个程序(在 Solaris 中),该程序可能正在写入标记为只读的内存,但我不确定如何确定该内存页是否实际上标记为只读。

我可以用 gdb 做出这个决定吗?如果没有,我可以用什么?

I'm debugging a program (in Solaris) that may be writing into memory marked read-only, but I'm unsure how to determine whether that page of memory is actually marked as read-only.

Can I make that determination with gdb? If not, what can I use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

似梦非梦 2024-11-26 03:20:15

在 Solaris 上,您可以使用 pmap 命令,例如 pmap。这将显示每个映射的 r/w/x 权限;以及其他信息。

Solaris 手册页中的示例:

$ pmap 102905
102905:    sh
00010000    192K r-x--  /usr/bin/ksh
00040000      8K rwx--  /usr/bin/ksh
00042000     40K rwx--    [ heap ]
FF180000    664K r-x--  /usr/lib/libc.so.1
FF236000     24K rwx--  /usr/lib/libc.so.1
FF23C000      8K rwx--  /usr/lib/libc.so.1
FF250000      8K rwx--    [ anon ]
...
 total     1880K

On Solaris you can look at the address space of a process by using the pmap command, e.g. pmap <pid>. This will display the r/w/x permissions for each mapping; along with other information.

Example from Solaris man page:

$ pmap 102905
102905:    sh
00010000    192K r-x--  /usr/bin/ksh
00040000      8K rwx--  /usr/bin/ksh
00042000     40K rwx--    [ heap ]
FF180000    664K r-x--  /usr/lib/libc.so.1
FF236000     24K rwx--  /usr/lib/libc.so.1
FF23C000      8K rwx--  /usr/lib/libc.so.1
FF250000      8K rwx--    [ anon ]
...
 total     1880K
春花秋月 2024-11-26 03:20:15

查看 pmappmem 工具。

Look into pmap and pmem tools.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文