summaryrefslogtreecommitdiffstats
path: root/libs/binder
diff options
context:
space:
mode:
authorJesse Hall <jessehall@google.com>2014-10-06 22:45:57 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-10-06 22:45:57 +0000
commit5cc3b8b4c81c6e157f540a27e70559ee034e313d (patch)
tree1a6bd5301d126918ffd74c2cbdfdc733bdca21f4 /libs/binder
parent021543fc657a7f21d1b143c68258282b35262906 (diff)
parent78639c22acfa5e56d87fd6fe8340d083536b29fc (diff)
downloadframeworks_native-5cc3b8b4c81c6e157f540a27e70559ee034e313d.zip
frameworks_native-5cc3b8b4c81c6e157f540a27e70559ee034e313d.tar.gz
frameworks_native-5cc3b8b4c81c6e157f540a27e70559ee034e313d.tar.bz2
am 78639c22: Merge "Parcel: extra validation/debug code for writeDupFileDescriptor" into lmp-dev
* commit '78639c22acfa5e56d87fd6fe8340d083536b29fc': Parcel: extra validation/debug code for writeDupFileDescriptor
Diffstat (limited to 'libs/binder')
-rw-r--r--libs/binder/Parcel.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp
index ba5688c..f61eaca 100644
--- a/libs/binder/Parcel.cpp
+++ b/libs/binder/Parcel.cpp
@@ -26,6 +26,7 @@
#include <binder/TextOutput.h>
#include <errno.h>
+#include <utils/CallStack.h>
#include <utils/Debug.h>
#include <utils/Log.h>
#include <utils/String8.h>
@@ -767,6 +768,29 @@ status_t Parcel::writeFileDescriptor(int fd, bool takeOwnership)
status_t Parcel::writeDupFileDescriptor(int fd)
{
int dupFd = dup(fd);
+
+ { // Temporary extra debug validation for b/17477219: a Parcel recipient is
+ // getting a positive but invalid fd unexpectedly. Trying to track down
+ // where it's coming from.
+ int dupErrno = dupFd < 0 ? errno : 0;
+ int fdFlags = fcntl(fd, F_GETFD);
+ int fdFlagsErrno = fdFlags == -1 ? errno : 0;
+ int dupFlags = fcntl(dupFd, F_GETFD);
+ int dupFlagsErrno = dupFlags == -1 ? errno : 0;
+ if (dupFd < 0 || fdFlags == -1 || dupFlags == -1) {
+ ALOGE("Parcel::writeDupFileDescriptor failed:\n"
+ " fd=%d flags=%d err=%d(%s)\n"
+ " dupFd=%d dupErr=%d(%s) flags=%d err=%d(%s)",
+ fd, fdFlags, fdFlagsErrno, strerror(fdFlagsErrno),
+ dupFd, dupErrno, strerror(dupErrno),
+ dupFlags, dupFlagsErrno, strerror(dupFlagsErrno));
+ if (fd < 0 || fdFlags == -1) {
+ CallStack(LOG_TAG);
+ }
+ return -errno;
+ }
+ }
+
if (dupFd < 0) {
return -errno;
}
@@ -1297,6 +1321,7 @@ status_t Parcel::read(FlattenableHelperInterface& val) const
oldfd, fds[i], dupErrno, strerror(dupErrno),
oldfd, flags, fcntlErrno, strerror(fcntlErrno),
flat, flat ? flat->type : 0);
+ CallStack(LOG_TAG);
}
}