diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-18 10:53:12 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-26 22:17:22 -0600 |
commit | e7f3db0679e5d37970a06f428208c3f5b51db5d2 (patch) | |
tree | 607b6716d89fb1615dda1bc27e582bed23043f68 /lib9p/srv.c | |
parent | 865bb702f828784a0225b5eae9ed8803094140d5 (diff) |
Diffstat (limited to 'lib9p/srv.c')
-rw-r--r-- | lib9p/srv.c | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/lib9p/srv.c b/lib9p/srv.c index 50d0b78..2c26ffe 100644 --- a/lib9p/srv.c +++ b/lib9p/srv.c @@ -980,13 +980,20 @@ static void handle_Tread(struct _lib9p_srv_req *ctx, fidinfo->dir.idx = idx+num; fidinfo->dir.off = req->offset + len; } else { - struct iovec iov; - LO_CALL(fidinfo->file.io, pread, &ctx->ctx, req->count, req->offset, &iov); + LO_CALL(fidinfo->file.io, pread, &ctx->ctx, req->count, req->offset, + &resp->iov, &resp->iovcnt); if (!lib9p_ctx_has_error(&ctx->ctx.basectx)) { - resp->count = iov.iov_len; - resp->data = iov.iov_base; - if (resp->count > req->count) - resp->count = req->count; + resp->count = 0; + assert(resp->iovcnt >= 0); + if (resp->iovcnt) { + assert(resp->iov); + for (int i = 0; i < resp->iovcnt; i++) { + assert(resp->iov[i].iov_len == 0 || resp->iov[i].iov_base); + bool overflowed = __builtin_add_overflow(resp->count, resp->iov[i].iov_len, &resp->count); + assert(!overflowed); + } + } + assert(resp->count <= req->count); } } } |