通过 Google TV 从端口查找 pid(Android 非 root 设备)

发布于 2025-01-07 13:23:36 字数 163 浏览 0 评论 0原文

我试图找到 pid 通过 Android 的非 root GoogleTV(索尼)设备使用的端口。

不幸的是,所有的“netstat -p”、lsof、/proc//fd 都被阻止了。 有没有其他方法可以将 /proc/net/tcp 上的给定端口与其 pid 进行匹配?

尤瓦尔

I'm trying to find the ports being used by a pid over Android's non-rooted GoogleTV (Sony) device.

Unfortunately, all the "netstat -p" ,lsof ,/proc//fd are being blocked.
Is there any other way I can match between a given port on /proc/net/tcp to its pid?

yuval

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

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

发布评论

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

评论(1

混吃等死 2025-01-14 13:23:36

很可能没有可以用来完成此任务的 API。 /proc/net/tcp 和朋友们告诉你有趣的是 inode 号。问题是除非您能够查看 /proc/PID/fd,否则您无法将它们解析为套接字。可能有一个相当隐藏的 api 通过 ioctl 或另一个系统调用来解析有关 inode 的一些信息,但我并不认为有任何信息。

另一方面,这绝对是 Linux 的一项功能,因为它正确地封装了用户彼此,并且不会泄漏“系统关键”数据。

Chances are high that there is no API which you could use to accomplish this. What /proc/net/tcp and friends are telling you interesting are the inode numbers. The problem is that you just can't resolve them to a socket unless you are able to take a look at /proc/PID/fd. There may be a rather hidden api via ioctl or another syscall to resolve some infos about a inode but I don't realy think there is any.

On the other side this is definitively a linux feature as it encapsulates the users from each others correctly and doesn't leak "system critical" data.

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