diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-03 12:02:36 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-03 14:13:53 +0000 |
| commit | 3ed2af928b17d33d3667f87616da0182d29f72cc (patch) | |
| tree | 83238220488b8fd935f5b769ba8fa36a055f31af | |
| parent | c3146b9acc133e3e8a166159cda6166e98810d1a (diff) | |
| download | poky-3ed2af928b17d33d3667f87616da0182d29f72cc.tar.gz | |
pseudo: Add may unlink patch
Mark files which are unlinked (nlink == 0) but open with fd's as
"may-unlink" to avoid problematic database entries.
(From OE-Core rev: 2856c4f514ddf1c28eb6e59e0ab4f11621fb5856)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit e1e481f3608c05ab14c61bf45cd0837d7287b6a5)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-devtools/pseudo/files/mayunlink.patch | 37 | ||||
| -rw-r--r-- | meta/recipes-devtools/pseudo/pseudo_git.bb | 1 |
2 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-devtools/pseudo/files/mayunlink.patch b/meta/recipes-devtools/pseudo/files/mayunlink.patch new file mode 100644 index 0000000000..9d54e40dd9 --- /dev/null +++ b/meta/recipes-devtools/pseudo/files/mayunlink.patch | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | Some operations may call unlink() on an open fd, then call fchown/fchmod/fstat | ||
| 2 | on that fd. This would currently readd its entry to the database, which | ||
| 3 | is necessary to preserve its permissions information however since that | ||
| 4 | file will be lost when it is closed, we don't want the DB entry to persist. | ||
| 5 | Marking it as may_unlink means the code will know its likely been deleted | ||
| 6 | and ignore the entry later, giving improved behaviour that simple path | ||
| 7 | mismatch warnings. We can use an nlink of zero to detect this. | ||
| 8 | |||
| 9 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||
| 10 | Upstream-Status: Pending | ||
| 11 | |||
| 12 | Index: git/pseudo.c | ||
| 13 | =================================================================== | ||
| 14 | --- git.orig/pseudo.c | ||
| 15 | +++ git/pseudo.c | ||
| 16 | @@ -1100,6 +1100,21 @@ pseudo_op(pseudo_msg_t *msg, const char | ||
| 17 | break; | ||
| 18 | } | ||
| 19 | |||
| 20 | + switch (msg->op) { | ||
| 21 | + case OP_FCHOWN: /* FALLTHROUGH */ | ||
| 22 | + case OP_FCHMOD: /* FALLTHROUGH */ | ||
| 23 | + case OP_FSTAT: | ||
| 24 | + if (!found_path && !found_ino && (msg->nlink == 0)) { | ||
| 25 | + /* If nlink is 0 for an fchown/fchmod/fstat, we probably have an fd which is | ||
| 26 | + * unlinked and we don't want to do inode/path matching against it. Marking it | ||
| 27 | + * as may unlink gives the right hints in the database to ensure we | ||
| 28 | + * handle correctly whilst maintaining the permissions whilst the | ||
| 29 | + * file exists for the fd. */ | ||
| 30 | + pdb_may_unlink_file(msg, msg->client); | ||
| 31 | + } | ||
| 32 | + break; | ||
| 33 | + } | ||
| 34 | + | ||
| 35 | op_exit: | ||
| 36 | /* in the case of an exact match, we just used the pointer | ||
| 37 | * rather than allocating space. | ||
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb index 7857b4f1b1..c5040f5f7f 100644 --- a/meta/recipes-devtools/pseudo/pseudo_git.bb +++ b/meta/recipes-devtools/pseudo/pseudo_git.bb | |||
| @@ -7,6 +7,7 @@ SRC_URI = "git://git.yoctoproject.org/pseudo;branch=oe-core \ | |||
| 7 | file://abort_on_mismatch.patch \ | 7 | file://abort_on_mismatch.patch \ |
| 8 | file://track_link_fds.patch \ | 8 | file://track_link_fds.patch \ |
| 9 | file://xattr_fix.patch \ | 9 | file://xattr_fix.patch \ |
| 10 | file://mayunlink.patch \ | ||
| 10 | file://fallback-passwd \ | 11 | file://fallback-passwd \ |
| 11 | file://fallback-group \ | 12 | file://fallback-group \ |
| 12 | " | 13 | " |
