如何从DTrace脚本打印NSString [英] How to print a NSString from a DTrace script

查看:124
本文介绍了如何从DTrace脚本打印NSString的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这个问题要求同样的事情,但是当我尝试:

This question is asking the same thing, but when I tried:

typedef long long ptr_t;


objc$target:NSWindow:-setTitle?:entry
{

    printf( "%30s %10s %x %x %x\n", probemod, probefunc, arg0, arg1, arg2 );

    this->str = *(ptr_t*)copyin(arg2+2*sizeof(ptr_t), sizeof(ptr_t));

    printf("string addr = %p\n", this->str);
    printf("string val  = %s\n", copyinstr(this->str));
}

它没有工作。 arg2应该是NSString的地址。我有:

It didn't work. arg2 should be the address of the NSString. I got:


NSWindow -setTitle:100685240 7fff92d82f73 7fff78a6eb80 string addr = 7fff8e7e83b9 string val = Window
dtrace:在DIF偏移量24的动作#8中,ID 5(ID 35737:
objc9434:NSWindow:-setTitle :: entry):无效地址
(0x6c007400690074)

NSWindow -setTitle: 100685240 7fff92d82f73 7fff78a6eb80 string addr = 7fff8e7e83b9 string val=Window dtrace: error on enabled probe ID 5 (ID 35737: objc9434:NSWindow:-setTitle::entry): invalid address (0x6c007400690074) in action #8 at DIF offset 24

您可以假设NSString的MacRoman或ASCII编码 - 基本上不需要担心复杂(从DTrace透视图)编码。

You can assuming a MacRoman or ASCII encoding of the NSString - basically no need to worry about complicated (from the DTrace perspective) encodings.

推荐答案

您的问题是否真的与其他
一样取决于内部表示的NSString
与CFStringRef的相同。我不知道,我希望别人可以澄清的
,但我怀疑,答案是
两者是不同的。在另一个问题的答案中的D脚本意味着
CFStringRef有一个字符指针,但是用gdb播放
表明NSString看起来像这样:

Whether or not your question really is the same as the other one depends on whether or not the internal representation of an NSString is the same as that of a CFStringRef. I don't know, and I hope that someone else can clarify, but I suspect that the answer is that the two are different. The D script in the other question's answer implies that a CFStringRef has a character pointer, but playing around with gdb suggests that an NSString looks like this:


struct NSString {
    uintptr_t pad[2];
    char name[1];       /* variable length array */
};

这里有一个相应的脚本:

Here's a corresponding script in action:


bash-3.2# cat title.d 
typedef struct {
    uintptr_t pad[2];
    char name[1];
} NSString_t;

objc$target:NSWindow:-setTitle?:entry
{
    self->namep = (uintptr_t)arg2 + offsetof(NSString_t, name);
    printf("name = %s\n", copyinstr(self->namep));

}
bash-3.2# ps -ef | fgrep -i firefox
  501 31895   204   0   0:01.22 ??         0:04.48 /opt/Applications/Firefox.app/Contents/MacOS/firefox -psn_0_27167207
    0 32045 31422   0   0:00.05 ttys000    0:00.06 fgrep -i firefox
bash-3.2# dtrace -arch x86_64 -Cqs title.d -p 31895
name = Mozilla Firefox
name = New Tab
name = New Tab
name = Mozilla Firefox
name = New Tab
^C

bash-3.2#

如果您正在检查32位进程, -arch i386 和dtrace(1)会适当调整其指针大小的概念。

If you're inspecting a 32-bit process then use -arch i386 and dtrace(1) will adjust its notion of pointer sizes appropriately.

这篇关于如何从DTrace脚本打印NSString的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆