Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F108641981
D28811.id84612.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D28811.id84612.diff
View Options
Index: sys/kern/kern_sendfile.c
===================================================================
--- sys/kern/kern_sendfile.c
+++ sys/kern/kern_sendfile.c
@@ -591,25 +591,29 @@
error = VOP_GETATTR(vp, &va, td->td_ucred);
if (error != 0)
goto out;
- *obj_size = va.va_size;
obj = vp->v_object;
if (obj == NULL) {
error = EINVAL;
goto out;
}
+ VM_OBJECT_RLOCK(obj);
+ if (obj->type == OBJT_VNODE)
+ *obj_size = obj->un_pager.vnp.vnp_size;
+ else
+ *obj_size = va.va_size;
} else if (fp->f_type == DTYPE_SHM) {
error = 0;
shmfd = fp->f_data;
obj = shmfd->shm_object;
+ VM_OBJECT_RLOCK(obj);
*obj_size = shmfd->shm_size;
} else {
error = EINVAL;
goto out;
}
- VM_OBJECT_WLOCK(obj);
if ((obj->flags & OBJ_DEAD) != 0) {
- VM_OBJECT_WUNLOCK(obj);
+ VM_OBJECT_RUNLOCK(obj);
error = EBADF;
goto out;
}
@@ -620,7 +624,7 @@
* immediately destroy it.
*/
vm_object_reference_locked(obj);
- VM_OBJECT_WUNLOCK(obj);
+ VM_OBJECT_RUNLOCK(obj);
*obj_res = obj;
*vp_res = vp;
*shmfd_res = shmfd;
@@ -679,7 +683,7 @@
struct shmfd *shmfd;
struct sendfile_sync *sfs;
struct vattr va;
- off_t off, sbytes, rem, obj_size;
+ off_t off, sbytes, rem, obj_size, nobj_size;
int bsize, error, ext_pgs_idx, hdrlen, max_pgs, softerr;
#ifdef KERN_TLS
int tls_enq_cnt;
@@ -852,15 +856,30 @@
error = vn_lock(vp, LK_SHARED);
if (error != 0)
goto done;
- error = VOP_GETATTR(vp, &va, td->td_ucred);
- if (error != 0 || off >= va.va_size) {
+
+ /*
+ * Check to see if the file size has changed.
+ */
+ if (obj->type == OBJT_VNODE) {
+ VM_OBJECT_RLOCK(obj);
+ nobj_size = obj->un_pager.vnp.vnp_size;
+ VM_OBJECT_RUNLOCK(obj);
+ } else {
+ error = VOP_GETATTR(vp, &va, td->td_ucred);
+ if (error != 0) {
+ VOP_UNLOCK(vp);
+ goto done;
+ }
+ nobj_size = va.va_size;
+ }
+ if (off >= nobj_size) {
VOP_UNLOCK(vp);
goto done;
}
- if (va.va_size != obj_size) {
- obj_size = va.va_size;
- rem = nbytes ?
- omin(nbytes + offset, obj_size) : obj_size;
+ if (nobj_size != obj_size) {
+ obj_size = nobj_size;
+ rem = nbytes ? omin(nbytes + offset, obj_size) :
+ obj_size;
rem -= off;
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Jan 28, 1:15 AM (10 h, 23 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16204495
Default Alt Text
D28811.id84612.diff (2 KB)
Attached To
Mode
D28811: sendfile: Return the object size from sendfile_getobj()
Attached
Detach File
Event Timeline
Log In to Comment