summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Lentine <mlentine@google.com>2014-10-02 09:11:04 -0700
committerThe Android Automerger <android-build@google.com>2014-10-02 14:42:43 -0700
commitffd3fbf34cbb9c5ddc5e41142328b5c0cfabe1f5 (patch)
tree9db57c7dea3f24ba99814257b2d5db8da898c6d0
parenta61fa17836da98233f39433650db30ee9e24d552 (diff)
downloadnative-ffd3fbf34cbb9c5ddc5e41142328b5c0cfabe1f5.tar.gz
Add more logging for dup(fd) failure
Bug: 17477219 Change-Id: Ide0ae16d777c9af783023c705c18a93c00999147
-rw-r--r--libs/binder/Parcel.cpp18
1 files changed, 15 insertions, 3 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp
index 76504cee5c..ba5688c7ce 100644
--- a/libs/binder/Parcel.cpp
+++ b/libs/binder/Parcel.cpp
@@ -36,6 +36,7 @@
#include <private/binder/binder_module.h>
+#include <fcntl.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
@@ -1280,11 +1281,22 @@ status_t Parcel::read(FlattenableHelperInterface& val) const
status_t err = NO_ERROR;
for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
- fds[i] = dup(this->readFileDescriptor());
+ int oldfd = this->readFileDescriptor();
+ fds[i] = dup(oldfd);
if (fds[i] < 0) {
+ int dupErrno = errno;
err = BAD_VALUE;
- ALOGE("dup() failed in Parcel::read, i is %zu, fds[i] is %d, fd_count is %zu, error: %s",
- i, fds[i], fd_count, strerror(errno));
+ int flags = fcntl(oldfd, F_GETFD);
+ int fcntlErrno = errno;
+ const flat_binder_object* flat = readObject(true);
+ ALOGE("dup failed in Parcel::read, fd %zu of %zu\n"
+ " dup(%d) = %d [errno: %d (%s)]\n"
+ " fcntl(%d, F_GETFD) = %d [errno: %d (%s)]\n"
+ " flat %p type %d",
+ i, fd_count,
+ oldfd, fds[i], dupErrno, strerror(dupErrno),
+ oldfd, flags, fcntlErrno, strerror(fcntlErrno),
+ flat, flat ? flat->type : 0);
}
}