1 Star 0 Fork 80

xuyuchao/openjdk-1.8.0

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
0006-8284330-jcmd-may-not-be-able-to-find-processes-in-th.patch 4.63 KB
一键复制 编辑 原始数据 按行查看 历史
Date: Wed, 31 May 2023 09:34:28 +0000
Subject: [PATCH 06/59] 8284330: jcmd may not be able to find processes in the container
Bug url: https://bugs.openjdk.org/browse/JDK-8284330
---
.../sun/jvmstat/PlatformSupportImpl.java | 57 ++++++++++++-------
1 file changed, 37 insertions(+), 20 deletions(-)
diff --git a/jdk/src/share/classes/sun/jvmstat/PlatformSupportImpl.java b/jdk/src/share/classes/sun/jvmstat/PlatformSupportImpl.java
index 4d1d718ab..38da80cc7 100644
--- a/jdk/src/share/classes/sun/jvmstat/PlatformSupportImpl.java
+++ b/jdk/src/share/classes/sun/jvmstat/PlatformSupportImpl.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -42,6 +42,32 @@ public class PlatformSupportImpl extends PlatformSupport {
private static final String containerTmpPath = "/root" + getTemporaryDirectory();
private static final String pidPatternStr = "^[0-9]+$";
+ private long tmpInode;
+ private long tmpDev;
+
+ public PlatformSupportImpl() {
+ super();
+ try {
+ File f = new File(getTemporaryDirectory());
+ Path tmpPath = f.toPath();
+ tmpInode = (Long)Files.getAttribute(tmpPath, "unix:ino");
+ tmpDev = (Long)Files.getAttribute(tmpPath, "unix:dev");
+ } catch (IOException e) {
+ tmpInode = -1L;
+ tmpDev = -1L;
+ }
+ }
+
+ private boolean tempDirectoryEquals(Path p) {
+ try {
+ long ino = (Long)Files.getAttribute(p, "unix:ino");
+ long dev = (Long)Files.getAttribute(p, "unix:dev");
+ return (ino == tmpInode) && (dev == tmpDev);
+ } catch (IOException e) {
+ return false;
+ }
+ }
+
/*
* Return the temporary directories that the VM uses for the attach
* and perf data files. This function returns the traditional
@@ -84,11 +110,12 @@ public class PlatformSupportImpl extends PlatformSupport {
*
* 1. duplication of tmp directories
*
- * /proc/{hostpid}/root/tmp directories exist for many processes
- * that are running on a Linux kernel that has cgroups enabled even
- * if they are not running in a container. To avoid this duplication,
- * we compare the inode of the /proc tmp directories to /tmp and
- * skip these duplicated directories.
+ * When cgroups is enabled, the directory /proc/{pid}/root/tmp may
+ * exist even if the given pid is not running inside a container. In
+ * this case, this directory is usually the same as /tmp and should
+ * be skipped, or else we would get duplicated hsperfdata files.
+ * This case can be detected if the inode and device id of
+ * /proc/{pid}/root/tmp are the same as /tmp.
*
* 2. Containerized processes without PID namespaces being enabled.
*
@@ -102,7 +129,6 @@ public class PlatformSupportImpl extends PlatformSupport {
FilenameFilter pidFilter;
Matcher pidMatcher;
Pattern pidPattern = Pattern.compile(pidPatternStr);
- long tmpInode = 0;
File procdir = new File("/proc");
@@ -118,12 +144,6 @@ public class PlatformSupportImpl extends PlatformSupport {
List<String> v = new ArrayList<>();
v.add(getTemporaryDirectory());
- try {
- File f = new File(getTemporaryDirectory());
- tmpInode = (Long)Files.getAttribute(f.toPath(), "unix:ino");
- }
- catch (IOException e) {}
-
pidFilter = new FilenameFilter() {
public boolean accept(File dir, String name) {
if (!dir.isDirectory())
@@ -140,14 +160,11 @@ public class PlatformSupportImpl extends PlatformSupport {
String containerTmpDir = dir.getAbsolutePath() + containerTmpPath;
File containerFile = new File(containerTmpDir);
- try {
- long procInode = (Long)Files.getAttribute(containerFile.toPath(), "unix:ino");
- if (containerFile.exists() && containerFile.isDirectory() &&
- containerFile.canRead() && procInode != tmpInode) {
- v.add(containerTmpDir);
- }
+ if (containerFile.exists() && containerFile.isDirectory() &&
+ containerFile.canRead() &&
+ !tempDirectoryEquals(containerFile.toPath())) {
+ v.add(containerTmpDir);
}
- catch (IOException e) {}
}
return v;
--
2.22.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xuyuchao/openjdk-1.8.0.git
git@gitee.com:xuyuchao/openjdk-1.8.0.git
xuyuchao
openjdk-1.8.0
openjdk-1.8.0
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891