Read calls may be repeated by VFS if the user destination memory is
not mapped in. Devman currently assumes that all reads are
successful, and uses this to track whether EOF has been reached for
a particular event, discarding it as soon as this happens. Upon
repetition, this may result in lost events for devmand.
With this patch, devman discards events only once devmand reads the
EOF marker, which itself can never generate a user page fault. The
result is that read calls for data can be repeated safely, without
the risk of losing events in the process.
Change-Id: I9dfdf7f8c8992a20a10302d79c3506e61f8564b0
{
struct devman_event *ev = NULL;
struct devman_event_inode *n;
- static int eof = 0;
- if (eof) {
- *len=0;
- eof = 0;
- return 0;
- }
n = (struct devman_event_inode *) data;
if (!TAILQ_EMPTY(&n->event_queue)) {
}
buf_init(offset, *len);
- if (ev != NULL) {
+ if (ev != NULL)
buf_printf("%s", ev->data);
- /* read all? */
- if (*len + offset >= strlen(ev->data)) {
- TAILQ_REMOVE(&n->event_queue, ev, events);
- free(ev);
- eof = 1;
- }
- }
*len = buf_get(ptr);
-
+
+ /* read all (EOF)? */
+ if (ev != NULL && *len == 0) {
+ TAILQ_REMOVE(&n->event_queue, ev, events);
+ free(ev);
+ }
+
return 0;
}