Merge "uevent.c: avoid POLLERR infinite loop" into main

This commit is contained in:
Steven Moreland 2024-01-03 21:03:18 +00:00 committed by Gerrit Code Review
commit cc5dc08c15
2 changed files with 13 additions and 0 deletions

View file

@ -79,6 +79,7 @@ cc_library_shared {
shared_libs: [
"android.system.suspend-V1-ndk",
"libdl",
"liblog",
],
header_libs: [

View file

@ -16,6 +16,8 @@
#include <hardware_legacy/uevent.h>
#include <log/log.h>
#include <malloc.h>
#include <string.h>
#include <unistd.h>
@ -94,6 +96,16 @@ int uevent_next_event(char* buffer, int buffer_length)
return count;
}
}
if (nr > 0 && (fds.revents & POLLERR)) {
int error = 0;
socklen_t errlen = sizeof(error);
getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &errlen);
// see b/300009377, this used to be an infinite loop
// abort to try to recover
LOG_ALWAYS_FATAL("Uevent POLLERR: %s, on FD %d", strerror(error), fd);
}
}
// won't get here