]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/kern_sendfile.c
dts: Import DTS from Linux 5.6
[FreeBSD/FreeBSD.git] / sys / kern / kern_sendfile.c
1 /*-
2  * Copyright (c) 2013-2015 Gleb Smirnoff <glebius@FreeBSD.org>
3  * Copyright (c) 1998, David Greenman. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 #include "opt_kern_tls.h"
34
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/capsicum.h>
38 #include <sys/kernel.h>
39 #include <sys/lock.h>
40 #include <sys/ktls.h>
41 #include <sys/mutex.h>
42 #include <sys/malloc.h>
43 #include <sys/mman.h>
44 #include <sys/mount.h>
45 #include <sys/mbuf.h>
46 #include <sys/proc.h>
47 #include <sys/protosw.h>
48 #include <sys/rwlock.h>
49 #include <sys/sf_buf.h>
50 #include <sys/socket.h>
51 #include <sys/socketvar.h>
52 #include <sys/syscallsubr.h>
53 #include <sys/sysctl.h>
54 #include <sys/sysproto.h>
55 #include <sys/vnode.h>
56
57 #include <net/vnet.h>
58 #include <netinet/in.h>
59 #include <netinet/tcp.h>
60
61 #include <security/audit/audit.h>
62 #include <security/mac/mac_framework.h>
63
64 #include <vm/vm.h>
65 #include <vm/vm_object.h>
66 #include <vm/vm_pager.h>
67
68 static MALLOC_DEFINE(M_SENDFILE, "sendfile", "sendfile dynamic memory");
69
70 #define EXT_FLAG_SYNC           EXT_FLAG_VENDOR1
71 #define EXT_FLAG_NOCACHE        EXT_FLAG_VENDOR2
72 #define EXT_FLAG_CACHE_LAST     EXT_FLAG_VENDOR3
73
74 /*
75  * Structure describing a single sendfile(2) I/O, which may consist of
76  * several underlying pager I/Os.
77  *
78  * The syscall context allocates the structure and initializes 'nios'
79  * to 1.  As sendfile_swapin() runs through pages and starts asynchronous
80  * paging operations, it increments 'nios'.
81  *
82  * Every I/O completion calls sendfile_iodone(), which decrements the 'nios',
83  * and the syscall also calls sendfile_iodone() after allocating all mbufs,
84  * linking them and sending to socket.  Whoever reaches zero 'nios' is
85  * responsible to * call pru_ready on the socket, to notify it of readyness
86  * of the data.
87  */
88 struct sf_io {
89         volatile u_int  nios;
90         u_int           error;
91         int             npages;
92         struct socket   *so;
93         struct mbuf     *m;
94         vm_object_t     obj;
95         vm_pindex_t     pindex0;
96 #ifdef KERN_TLS
97         struct ktls_session *tls;
98 #endif
99         vm_page_t       pa[];
100 };
101
102 /*
103  * Structure used to track requests with SF_SYNC flag.
104  */
105 struct sendfile_sync {
106         struct mtx      mtx;
107         struct cv       cv;
108         unsigned        count;
109 };
110
111 counter_u64_t sfstat[sizeof(struct sfstat) / sizeof(uint64_t)];
112
113 static void
114 sfstat_init(const void *unused)
115 {
116
117         COUNTER_ARRAY_ALLOC(sfstat, sizeof(struct sfstat) / sizeof(uint64_t),
118             M_WAITOK);
119 }
120 SYSINIT(sfstat, SI_SUB_MBUF, SI_ORDER_FIRST, sfstat_init, NULL);
121
122 static int
123 sfstat_sysctl(SYSCTL_HANDLER_ARGS)
124 {
125         struct sfstat s;
126
127         COUNTER_ARRAY_COPY(sfstat, &s, sizeof(s) / sizeof(uint64_t));
128         if (req->newptr)
129                 COUNTER_ARRAY_ZERO(sfstat, sizeof(s) / sizeof(uint64_t));
130         return (SYSCTL_OUT(req, &s, sizeof(s)));
131 }
132 SYSCTL_PROC(_kern_ipc, OID_AUTO, sfstat,
133     CTLTYPE_OPAQUE | CTLFLAG_RW | CTLFLAG_NEEDGIANT, NULL, 0,
134     sfstat_sysctl, "I",
135     "sendfile statistics");
136
137 static void
138 sendfile_free_mext(struct mbuf *m)
139 {
140         struct sf_buf *sf;
141         vm_page_t pg;
142         int flags;
143
144         KASSERT(m->m_flags & M_EXT && m->m_ext.ext_type == EXT_SFBUF,
145             ("%s: m %p !M_EXT or !EXT_SFBUF", __func__, m));
146
147         sf = m->m_ext.ext_arg1;
148         pg = sf_buf_page(sf);
149         flags = (m->m_ext.ext_flags & EXT_FLAG_NOCACHE) != 0 ? VPR_TRYFREE : 0;
150
151         sf_buf_free(sf);
152         vm_page_release(pg, flags);
153
154         if (m->m_ext.ext_flags & EXT_FLAG_SYNC) {
155                 struct sendfile_sync *sfs = m->m_ext.ext_arg2;
156
157                 mtx_lock(&sfs->mtx);
158                 KASSERT(sfs->count > 0, ("Sendfile sync botchup count == 0"));
159                 if (--sfs->count == 0)
160                         cv_signal(&sfs->cv);
161                 mtx_unlock(&sfs->mtx);
162         }
163 }
164
165 static void
166 sendfile_free_mext_pg(struct mbuf *m)
167 {
168         struct mbuf_ext_pgs *ext_pgs;
169         vm_page_t pg;
170         int flags, i;
171         bool cache_last;
172
173         KASSERT(m->m_flags & M_EXT && m->m_ext.ext_type == EXT_PGS,
174             ("%s: m %p !M_EXT or !EXT_PGS", __func__, m));
175
176         cache_last = m->m_ext.ext_flags & EXT_FLAG_CACHE_LAST;
177         ext_pgs = &m->m_ext_pgs;
178         flags = (m->m_ext.ext_flags & EXT_FLAG_NOCACHE) != 0 ? VPR_TRYFREE : 0;
179
180         for (i = 0; i < ext_pgs->npgs; i++) {
181                 if (cache_last && i == ext_pgs->npgs - 1)
182                         flags = 0;
183                 pg = PHYS_TO_VM_PAGE(ext_pgs->m_epg_pa[i]);
184                 vm_page_release(pg, flags);
185         }
186
187         if (m->m_ext.ext_flags & EXT_FLAG_SYNC) {
188                 struct sendfile_sync *sfs = m->m_ext.ext_arg1;
189
190                 mtx_lock(&sfs->mtx);
191                 KASSERT(sfs->count > 0, ("Sendfile sync botchup count == 0"));
192                 if (--sfs->count == 0)
193                         cv_signal(&sfs->cv);
194                 mtx_unlock(&sfs->mtx);
195         }
196 }
197
198 /*
199  * Helper function to calculate how much data to put into page i of n.
200  * Only first and last pages are special.
201  */
202 static inline off_t
203 xfsize(int i, int n, off_t off, off_t len)
204 {
205
206         if (i == 0)
207                 return (omin(PAGE_SIZE - (off & PAGE_MASK), len));
208
209         if (i == n - 1 && ((off + len) & PAGE_MASK) > 0)
210                 return ((off + len) & PAGE_MASK);
211
212         return (PAGE_SIZE);
213 }
214
215 /*
216  * Helper function to get offset within object for i page.
217  */
218 static inline vm_ooffset_t
219 vmoff(int i, off_t off)
220 {
221
222         if (i == 0)
223                 return ((vm_ooffset_t)off);
224
225         return (trunc_page(off + i * PAGE_SIZE));
226 }
227
228 /*
229  * Helper function used when allocation of a page or sf_buf failed.
230  * Pretend as if we don't have enough space, subtract xfsize() of
231  * all pages that failed.
232  */
233 static inline void
234 fixspace(int old, int new, off_t off, int *space)
235 {
236
237         KASSERT(old > new, ("%s: old %d new %d", __func__, old, new));
238
239         /* Subtract last one. */
240         *space -= xfsize(old - 1, old, off, *space);
241         old--;
242
243         if (new == old)
244                 /* There was only one page. */
245                 return;
246
247         /* Subtract first one. */
248         if (new == 0) {
249                 *space -= xfsize(0, old, off, *space);
250                 new++;
251         }
252
253         /* Rest of pages are full sized. */
254         *space -= (old - new) * PAGE_SIZE;
255
256         KASSERT(*space >= 0, ("%s: space went backwards", __func__));
257 }
258
259 /*
260  * Wait for all in-flight ios to complete, we must not unwire pages
261  * under them.
262  */
263 static void
264 sendfile_iowait(struct sf_io *sfio, const char *wmesg)
265 {
266         while (atomic_load_int(&sfio->nios) != 1)
267                 pause(wmesg, 1);
268 }
269
270 /*
271  * I/O completion callback.
272  */
273 static void
274 sendfile_iodone(void *arg, vm_page_t *pa, int count, int error)
275 {
276         struct sf_io *sfio = arg;
277         struct socket *so;
278         int i;
279
280         if (error != 0) {
281                 sfio->error = error;
282                 /*
283                  * Restore of the pg[] elements is done by
284                  * sendfile_swapin().
285                  */
286         } else {
287                 /*
288                  * Restore the valid page pointers.  They are already
289                  * unbusied, but still wired.  For error != 0 case,
290                  * sendfile_swapin() handles unbusy.
291                  *
292                  * XXXKIB since pages are only wired, and we do not
293                  * own the object lock, other users might have
294                  * invalidated them in meantime.  Similarly, after we
295                  * unbusied the swapped-in pages, they can become
296                  * invalid under us.
297                  */
298                 for (i = 0; i < count; i++) {
299                         if (pa[i] == bogus_page) {
300                                 pa[i] = vm_page_relookup(sfio->obj,
301                                     sfio->pindex0 + i + (pa - sfio->pa));
302                                 KASSERT(pa[i] != NULL,
303                                     ("%s: page %p[%d] disappeared",
304                                     __func__, pa, i));
305                         } else {
306                                 vm_page_xunbusy_unchecked(pa[i]);
307                         }
308                 }
309         }
310
311         if (!refcount_release(&sfio->nios))
312                 return;
313
314         vm_object_pip_wakeup(sfio->obj);
315
316         if (sfio->m == NULL) {
317                 /*
318                  * Either I/O operation failed, or we failed to allocate
319                  * buffers, or we bailed out on first busy page, or we
320                  * succeeded filling the request without any I/Os. Anyway,
321                  * pru_send hadn't been executed - nothing had been sent
322                  * to the socket yet.
323                  */
324                 MPASS((curthread->td_pflags & TDP_KTHREAD) == 0);
325                 free(sfio, M_SENDFILE);
326                 return;
327         }
328
329 #if defined(KERN_TLS) && defined(INVARIANTS)
330         if ((sfio->m->m_flags & M_EXT) != 0 &&
331             sfio->m->m_ext.ext_type == EXT_PGS)
332                 KASSERT(sfio->tls == sfio->m->m_ext_pgs.tls,
333                     ("TLS session mismatch"));
334         else
335                 KASSERT(sfio->tls == NULL,
336                     ("non-ext_pgs mbuf with TLS session"));
337 #endif
338         so = sfio->so;
339         CURVNET_SET(so->so_vnet);
340         if (__predict_false(sfio->error)) {
341                 /*
342                  * I/O operation failed.  The state of data in the socket
343                  * is now inconsistent, and all what we can do is to tear
344                  * it down. Protocol abort method would tear down protocol
345                  * state, free all ready mbufs and detach not ready ones.
346                  * We will free the mbufs corresponding to this I/O manually.
347                  *
348                  * The socket would be marked with EIO and made available
349                  * for read, so that application receives EIO on next
350                  * syscall and eventually closes the socket.
351                  */
352                 so->so_proto->pr_usrreqs->pru_abort(so);
353                 so->so_error = EIO;
354
355                 mb_free_notready(sfio->m, sfio->npages);
356 #ifdef KERN_TLS
357         } else if (sfio->tls != NULL && sfio->tls->mode == TCP_TLS_MODE_SW) {
358                 /*
359                  * I/O operation is complete, but we still need to
360                  * encrypt.  We cannot do this in the interrupt thread
361                  * of the disk controller, so forward the mbufs to a
362                  * different thread.
363                  *
364                  * Donate the socket reference from sfio to rather
365                  * than explicitly invoking soref().
366                  */
367                 ktls_enqueue(sfio->m, so, sfio->npages);
368                 goto out_with_ref;
369 #endif
370         } else
371                 (void)(so->so_proto->pr_usrreqs->pru_ready)(so, sfio->m,
372                     sfio->npages);
373
374         SOCK_LOCK(so);
375         sorele(so);
376 #ifdef KERN_TLS
377 out_with_ref:
378 #endif
379         CURVNET_RESTORE();
380         free(sfio, M_SENDFILE);
381 }
382
383 /*
384  * Iterate through pages vector and request paging for non-valid pages.
385  */
386 static int
387 sendfile_swapin(vm_object_t obj, struct sf_io *sfio, int *nios, off_t off,
388     off_t len, int npages, int rhpages, int flags)
389 {
390         vm_page_t *pa;
391         int a, count, count1, grabbed, i, j, rv;
392
393         pa = sfio->pa;
394         *nios = 0;
395         flags = (flags & SF_NODISKIO) ? VM_ALLOC_NOWAIT : 0;
396         sfio->pindex0 = OFF_TO_IDX(off);
397
398         /*
399          * First grab all the pages and wire them.  Note that we grab
400          * only required pages.  Readahead pages are dealt with later.
401          */
402         grabbed = vm_page_grab_pages_unlocked(obj, OFF_TO_IDX(off),
403             VM_ALLOC_NORMAL | VM_ALLOC_WIRED | flags, pa, npages);
404         if (grabbed < npages) {
405                 for (int i = grabbed; i < npages; i++)
406                         pa[i] = NULL;
407                 npages = grabbed;
408                 rhpages = 0;
409         }
410
411         for (i = 0; i < npages;) {
412                 /* Skip valid pages. */
413                 if (vm_page_is_valid(pa[i], vmoff(i, off) & PAGE_MASK,
414                     xfsize(i, npages, off, len))) {
415                         vm_page_xunbusy(pa[i]);
416                         SFSTAT_INC(sf_pages_valid);
417                         i++;
418                         continue;
419                 }
420
421                 /*
422                  * Next page is invalid.  Check if it belongs to pager.  It
423                  * may not be there, which is a regular situation for shmem
424                  * pager.  For vnode pager this happens only in case of
425                  * a sparse file.
426                  *
427                  * Important feature of vm_pager_has_page() is the hint
428                  * stored in 'a', about how many pages we can pagein after
429                  * this page in a single I/O.
430                  */
431                 VM_OBJECT_RLOCK(obj);
432                 if (!vm_pager_has_page(obj, OFF_TO_IDX(vmoff(i, off)), NULL,
433                     &a)) {
434                         VM_OBJECT_RUNLOCK(obj);
435                         pmap_zero_page(pa[i]);
436                         vm_page_valid(pa[i]);
437                         MPASS(pa[i]->dirty == 0);
438                         vm_page_xunbusy(pa[i]);
439                         i++;
440                         continue;
441                 }
442                 VM_OBJECT_RUNLOCK(obj);
443
444                 /*
445                  * We want to pagein as many pages as possible, limited only
446                  * by the 'a' hint and actual request.
447                  */
448                 count = min(a + 1, npages - i);
449
450                 /*
451                  * We should not pagein into a valid page because
452                  * there might be still unfinished write tracked by
453                  * e.g. a buffer, thus we substitute any valid pages
454                  * with the bogus one.
455                  *
456                  * We must not leave around xbusy pages which are not
457                  * part of the run passed to vm_pager_getpages(),
458                  * otherwise pager might deadlock waiting for the busy
459                  * status of the page, e.g. if it constitues the
460                  * buffer needed to validate other page.
461                  *
462                  * First trim the end of the run consisting of the
463                  * valid pages, then replace the rest of the valid
464                  * with bogus.
465                  */
466                 count1 = count;
467                 for (j = i + count - 1; j > i; j--) {
468                         if (vm_page_is_valid(pa[j], vmoff(j, off) & PAGE_MASK,
469                             xfsize(j, npages, off, len))) {
470                                 vm_page_xunbusy(pa[j]);
471                                 SFSTAT_INC(sf_pages_valid);
472                                 count--;
473                         } else {
474                                 break;
475                         }
476                 }
477
478                 /*
479                  * The last page in the run pa[i + count - 1] is
480                  * guaranteed to be invalid by the trim above, so it
481                  * is not replaced with bogus, thus -1 in the loop end
482                  * condition.
483                  */
484                 MPASS(pa[i + count - 1]->valid != VM_PAGE_BITS_ALL);
485                 for (j = i + 1; j < i + count - 1; j++) {
486                         if (vm_page_is_valid(pa[j], vmoff(j, off) & PAGE_MASK,
487                             xfsize(j, npages, off, len))) {
488                                 vm_page_xunbusy(pa[j]);
489                                 SFSTAT_INC(sf_pages_valid);
490                                 SFSTAT_INC(sf_pages_bogus);
491                                 pa[j] = bogus_page;
492                         }
493                 }
494
495                 refcount_acquire(&sfio->nios);
496                 rv = vm_pager_get_pages_async(obj, pa + i, count, NULL,
497                     i + count == npages ? &rhpages : NULL,
498                     &sendfile_iodone, sfio);
499                 if (__predict_false(rv != VM_PAGER_OK)) {
500                         sendfile_iowait(sfio, "sferrio");
501
502                         /*
503                          * Perform full pages recovery before returning EIO.
504                          * Pages from 0 to npages are wired.
505                          * Pages from (i + 1) to (i + count - 1) may be
506                          * substituted to bogus page, and not busied.
507                          * Pages from (i + count) to (i + count1 - 1) are
508                          * not busied.
509                          * Rest of the pages from i to npages are busied.
510                          */
511                         for (j = 0; j < npages; j++) {
512                                 if (j >= i + count && j < i + count1)
513                                         ;
514                                 else if (j > i && j < i + count - 1 &&
515                                     pa[j] == bogus_page)
516                                         pa[j] = vm_page_relookup(obj,
517                                             OFF_TO_IDX(vmoff(j, off)));
518                                 else if (j >= i)
519                                         vm_page_xunbusy(pa[j]);
520                                 KASSERT(pa[j] != NULL && pa[j] != bogus_page,
521                                     ("%s: page %p[%d] I/O recovery failure",
522                                     __func__, pa, j));
523                                 vm_page_unwire(pa[j], PQ_INACTIVE);
524                         }
525                         return (EIO);
526                 }
527
528                 SFSTAT_INC(sf_iocnt);
529                 SFSTAT_ADD(sf_pages_read, count);
530                 if (i + count == npages)
531                         SFSTAT_ADD(sf_rhpages_read, rhpages);
532
533                 i += count1;
534                 (*nios)++;
535         }
536
537         if (*nios == 0 && npages != 0)
538                 SFSTAT_INC(sf_noiocnt);
539
540         return (0);
541 }
542
543 static int
544 sendfile_getobj(struct thread *td, struct file *fp, vm_object_t *obj_res,
545     struct vnode **vp_res, struct shmfd **shmfd_res, off_t *obj_size,
546     int *bsize)
547 {
548         struct vattr va;
549         vm_object_t obj;
550         struct vnode *vp;
551         struct shmfd *shmfd;
552         int error;
553
554         vp = *vp_res = NULL;
555         obj = NULL;
556         shmfd = *shmfd_res = NULL;
557         *bsize = 0;
558
559         /*
560          * The file descriptor must be a regular file and have a
561          * backing VM object.
562          */
563         if (fp->f_type == DTYPE_VNODE) {
564                 vp = fp->f_vnode;
565                 vn_lock(vp, LK_SHARED | LK_RETRY);
566                 if (vp->v_type != VREG) {
567                         error = EINVAL;
568                         goto out;
569                 }
570                 *bsize = vp->v_mount->mnt_stat.f_iosize;
571                 error = VOP_GETATTR(vp, &va, td->td_ucred);
572                 if (error != 0)
573                         goto out;
574                 *obj_size = va.va_size;
575                 obj = vp->v_object;
576                 if (obj == NULL) {
577                         error = EINVAL;
578                         goto out;
579                 }
580         } else if (fp->f_type == DTYPE_SHM) {
581                 error = 0;
582                 shmfd = fp->f_data;
583                 obj = shmfd->shm_object;
584                 *obj_size = shmfd->shm_size;
585         } else {
586                 error = EINVAL;
587                 goto out;
588         }
589
590         VM_OBJECT_WLOCK(obj);
591         if ((obj->flags & OBJ_DEAD) != 0) {
592                 VM_OBJECT_WUNLOCK(obj);
593                 error = EBADF;
594                 goto out;
595         }
596
597         /*
598          * Temporarily increase the backing VM object's reference
599          * count so that a forced reclamation of its vnode does not
600          * immediately destroy it.
601          */
602         vm_object_reference_locked(obj);
603         VM_OBJECT_WUNLOCK(obj);
604         *obj_res = obj;
605         *vp_res = vp;
606         *shmfd_res = shmfd;
607
608 out:
609         if (vp != NULL)
610                 VOP_UNLOCK(vp);
611         return (error);
612 }
613
614 static int
615 sendfile_getsock(struct thread *td, int s, struct file **sock_fp,
616     struct socket **so)
617 {
618         int error;
619
620         *sock_fp = NULL;
621         *so = NULL;
622
623         /*
624          * The socket must be a stream socket and connected.
625          */
626         error = getsock_cap(td, s, &cap_send_rights,
627             sock_fp, NULL, NULL);
628         if (error != 0)
629                 return (error);
630         *so = (*sock_fp)->f_data;
631         if ((*so)->so_type != SOCK_STREAM)
632                 return (EINVAL);
633         /*
634          * SCTP one-to-one style sockets currently don't work with
635          * sendfile(). So indicate EINVAL for now.
636          */
637         if ((*so)->so_proto->pr_protocol == IPPROTO_SCTP)
638                 return (EINVAL);
639         if (SOLISTENING(*so))
640                 return (ENOTCONN);
641         return (0);
642 }
643
644 int
645 vn_sendfile(struct file *fp, int sockfd, struct uio *hdr_uio,
646     struct uio *trl_uio, off_t offset, size_t nbytes, off_t *sent, int flags,
647     struct thread *td)
648 {
649         struct file *sock_fp;
650         struct vnode *vp;
651         struct vm_object *obj;
652         vm_page_t pga;
653         struct socket *so;
654 #ifdef KERN_TLS
655         struct ktls_session *tls;
656 #endif
657         struct mbuf_ext_pgs *ext_pgs;
658         struct mbuf *m, *mh, *mhtail;
659         struct sf_buf *sf;
660         struct shmfd *shmfd;
661         struct sendfile_sync *sfs;
662         struct vattr va;
663         off_t off, sbytes, rem, obj_size;
664         int bsize, error, ext_pgs_idx, hdrlen, max_pgs, softerr;
665 #ifdef KERN_TLS
666         int tls_enq_cnt;
667 #endif
668         bool use_ext_pgs;
669
670         obj = NULL;
671         so = NULL;
672         m = mh = NULL;
673         sfs = NULL;
674 #ifdef KERN_TLS
675         tls = NULL;
676 #endif
677         hdrlen = sbytes = 0;
678         softerr = 0;
679         use_ext_pgs = false;
680
681         error = sendfile_getobj(td, fp, &obj, &vp, &shmfd, &obj_size, &bsize);
682         if (error != 0)
683                 return (error);
684
685         error = sendfile_getsock(td, sockfd, &sock_fp, &so);
686         if (error != 0)
687                 goto out;
688
689 #ifdef MAC
690         error = mac_socket_check_send(td->td_ucred, so);
691         if (error != 0)
692                 goto out;
693 #endif
694
695         SFSTAT_INC(sf_syscalls);
696         SFSTAT_ADD(sf_rhpages_requested, SF_READAHEAD(flags));
697
698         if (flags & SF_SYNC) {
699                 sfs = malloc(sizeof(*sfs), M_SENDFILE, M_WAITOK | M_ZERO);
700                 mtx_init(&sfs->mtx, "sendfile", NULL, MTX_DEF);
701                 cv_init(&sfs->cv, "sendfile");
702         }
703
704         rem = nbytes ? omin(nbytes, obj_size - offset) : obj_size - offset;
705
706         /*
707          * Protect against multiple writers to the socket.
708          *
709          * XXXRW: Historically this has assumed non-interruptibility, so now
710          * we implement that, but possibly shouldn't.
711          */
712         (void)sblock(&so->so_snd, SBL_WAIT | SBL_NOINTR);
713 #ifdef KERN_TLS
714         tls = ktls_hold(so->so_snd.sb_tls_info);
715 #endif
716
717         /*
718          * Loop through the pages of the file, starting with the requested
719          * offset. Get a file page (do I/O if necessary), map the file page
720          * into an sf_buf, attach an mbuf header to the sf_buf, and queue
721          * it on the socket.
722          * This is done in two loops.  The inner loop turns as many pages
723          * as it can, up to available socket buffer space, without blocking
724          * into mbufs to have it bulk delivered into the socket send buffer.
725          * The outer loop checks the state and available space of the socket
726          * and takes care of the overall progress.
727          */
728         for (off = offset; rem > 0; ) {
729                 struct sf_io *sfio;
730                 vm_page_t *pa;
731                 struct mbuf *m0, *mtail;
732                 int nios, space, npages, rhpages;
733
734                 mtail = NULL;
735                 /*
736                  * Check the socket state for ongoing connection,
737                  * no errors and space in socket buffer.
738                  * If space is low allow for the remainder of the
739                  * file to be processed if it fits the socket buffer.
740                  * Otherwise block in waiting for sufficient space
741                  * to proceed, or if the socket is nonblocking, return
742                  * to userland with EAGAIN while reporting how far
743                  * we've come.
744                  * We wait until the socket buffer has significant free
745                  * space to do bulk sends.  This makes good use of file
746                  * system read ahead and allows packet segmentation
747                  * offloading hardware to take over lots of work.  If
748                  * we were not careful here we would send off only one
749                  * sfbuf at a time.
750                  */
751                 SOCKBUF_LOCK(&so->so_snd);
752                 if (so->so_snd.sb_lowat < so->so_snd.sb_hiwat / 2)
753                         so->so_snd.sb_lowat = so->so_snd.sb_hiwat / 2;
754 retry_space:
755                 if (so->so_snd.sb_state & SBS_CANTSENDMORE) {
756                         error = EPIPE;
757                         SOCKBUF_UNLOCK(&so->so_snd);
758                         goto done;
759                 } else if (so->so_error) {
760                         error = so->so_error;
761                         so->so_error = 0;
762                         SOCKBUF_UNLOCK(&so->so_snd);
763                         goto done;
764                 }
765                 if ((so->so_state & SS_ISCONNECTED) == 0) {
766                         SOCKBUF_UNLOCK(&so->so_snd);
767                         error = ENOTCONN;
768                         goto done;
769                 }
770
771                 space = sbspace(&so->so_snd);
772                 if (space < rem &&
773                     (space <= 0 ||
774                      space < so->so_snd.sb_lowat)) {
775                         if (so->so_state & SS_NBIO) {
776                                 SOCKBUF_UNLOCK(&so->so_snd);
777                                 error = EAGAIN;
778                                 goto done;
779                         }
780                         /*
781                          * sbwait drops the lock while sleeping.
782                          * When we loop back to retry_space the
783                          * state may have changed and we retest
784                          * for it.
785                          */
786                         error = sbwait(&so->so_snd);
787                         /*
788                          * An error from sbwait usually indicates that we've
789                          * been interrupted by a signal. If we've sent anything
790                          * then return bytes sent, otherwise return the error.
791                          */
792                         if (error != 0) {
793                                 SOCKBUF_UNLOCK(&so->so_snd);
794                                 goto done;
795                         }
796                         goto retry_space;
797                 }
798                 SOCKBUF_UNLOCK(&so->so_snd);
799
800                 /*
801                  * At the beginning of the first loop check if any headers
802                  * are specified and copy them into mbufs.  Reduce space in
803                  * the socket buffer by the size of the header mbuf chain.
804                  * Clear hdr_uio here and hdrlen at the end of the first loop.
805                  */
806                 if (hdr_uio != NULL && hdr_uio->uio_resid > 0) {
807                         hdr_uio->uio_td = td;
808                         hdr_uio->uio_rw = UIO_WRITE;
809 #ifdef KERN_TLS
810                         if (tls != NULL)
811                                 mh = m_uiotombuf(hdr_uio, M_WAITOK, space,
812                                     tls->params.max_frame_len, M_NOMAP);
813                         else
814 #endif
815                                 mh = m_uiotombuf(hdr_uio, M_WAITOK,
816                                     space, 0, 0);
817                         hdrlen = m_length(mh, &mhtail);
818                         space -= hdrlen;
819                         /*
820                          * If header consumed all the socket buffer space,
821                          * don't waste CPU cycles and jump to the end.
822                          */
823                         if (space == 0) {
824                                 sfio = NULL;
825                                 nios = 0;
826                                 goto prepend_header;
827                         }
828                         hdr_uio = NULL;
829                 }
830
831                 if (vp != NULL) {
832                         error = vn_lock(vp, LK_SHARED);
833                         if (error != 0)
834                                 goto done;
835                         error = VOP_GETATTR(vp, &va, td->td_ucred);
836                         if (error != 0 || off >= va.va_size) {
837                                 VOP_UNLOCK(vp);
838                                 goto done;
839                         }
840                         if (va.va_size != obj_size) {
841                                 obj_size = va.va_size;
842                                 rem = nbytes ?
843                                     omin(nbytes + offset, obj_size) : obj_size;
844                                 rem -= off;
845                         }
846                 }
847
848                 if (space > rem)
849                         space = rem;
850                 else if (space > PAGE_SIZE) {
851                         /*
852                          * Use page boundaries when possible for large
853                          * requests.
854                          */
855                         if (off & PAGE_MASK)
856                                 space -= (PAGE_SIZE - (off & PAGE_MASK));
857                         space = trunc_page(space);
858                         if (off & PAGE_MASK)
859                                 space += (PAGE_SIZE - (off & PAGE_MASK));
860                 }
861
862                 npages = howmany(space + (off & PAGE_MASK), PAGE_SIZE);
863
864                 /*
865                  * Calculate maximum allowed number of pages for readahead
866                  * at this iteration.  If SF_USER_READAHEAD was set, we don't
867                  * do any heuristics and use exactly the value supplied by
868                  * application.  Otherwise, we allow readahead up to "rem".
869                  * If application wants more, let it be, but there is no
870                  * reason to go above MAXPHYS.  Also check against "obj_size",
871                  * since vm_pager_has_page() can hint beyond EOF.
872                  */
873                 if (flags & SF_USER_READAHEAD) {
874                         rhpages = SF_READAHEAD(flags);
875                 } else {
876                         rhpages = howmany(rem + (off & PAGE_MASK), PAGE_SIZE) -
877                             npages;
878                         rhpages += SF_READAHEAD(flags);
879                 }
880                 rhpages = min(howmany(MAXPHYS, PAGE_SIZE), rhpages);
881                 rhpages = min(howmany(obj_size - trunc_page(off), PAGE_SIZE) -
882                     npages, rhpages);
883
884                 sfio = malloc(sizeof(struct sf_io) +
885                     npages * sizeof(vm_page_t), M_SENDFILE, M_WAITOK);
886                 refcount_init(&sfio->nios, 1);
887                 sfio->obj = obj;
888                 sfio->error = 0;
889                 sfio->m = NULL;
890 #ifdef KERN_TLS
891                 /*
892                  * This doesn't use ktls_hold() because sfio->m will
893                  * also have a reference on 'tls' that will be valid
894                  * for all of sfio's lifetime.
895                  */
896                 sfio->tls = tls;
897 #endif
898                 vm_object_pip_add(obj, 1);
899                 error = sendfile_swapin(obj, sfio, &nios, off, space, npages,
900                     rhpages, flags);
901                 if (error != 0) {
902                         if (vp != NULL)
903                                 VOP_UNLOCK(vp);
904                         sendfile_iodone(sfio, NULL, 0, error);
905                         goto done;
906                 }
907
908                 /*
909                  * Loop and construct maximum sized mbuf chain to be bulk
910                  * dumped into socket buffer.
911                  */
912                 pa = sfio->pa;
913
914                 /*
915                  * Use unmapped mbufs if enabled for TCP.  Unmapped
916                  * bufs are restricted to TCP as that is what has been
917                  * tested.  In particular, unmapped mbufs have not
918                  * been tested with UNIX-domain sockets.
919                  *
920                  * TLS frames always require unmapped mbufs.
921                  */
922                 if ((mb_use_ext_pgs &&
923                     so->so_proto->pr_protocol == IPPROTO_TCP)
924 #ifdef KERN_TLS
925                     || tls != NULL
926 #endif
927                     ) {
928                         use_ext_pgs = true;
929 #ifdef KERN_TLS
930                         if (tls != NULL)
931                                 max_pgs = num_pages(tls->params.max_frame_len);
932                         else
933 #endif
934                                 max_pgs = MBUF_PEXT_MAX_PGS;
935
936                         /* Start at last index, to wrap on first use. */
937                         ext_pgs_idx = max_pgs - 1;
938                 }
939
940                 for (int i = 0; i < npages; i++) {
941                         /*
942                          * If a page wasn't grabbed successfully, then
943                          * trim the array. Can happen only with SF_NODISKIO.
944                          */
945                         if (pa[i] == NULL) {
946                                 SFSTAT_INC(sf_busy);
947                                 fixspace(npages, i, off, &space);
948                                 npages = i;
949                                 softerr = EBUSY;
950                                 break;
951                         }
952                         pga = pa[i];
953                         if (pga == bogus_page)
954                                 pga = vm_page_relookup(obj, sfio->pindex0 + i);
955
956                         if (use_ext_pgs) {
957                                 off_t xfs;
958
959                                 ext_pgs_idx++;
960                                 if (ext_pgs_idx == max_pgs) {
961                                         m0 = mb_alloc_ext_pgs(M_WAITOK,
962                                             sendfile_free_mext_pg);
963
964                                         if (flags & SF_NOCACHE) {
965                                                 m0->m_ext.ext_flags |=
966                                                     EXT_FLAG_NOCACHE;
967
968                                                 /*
969                                                  * See comment below regarding
970                                                  * ignoring SF_NOCACHE for the
971                                                  * last page.
972                                                  */
973                                                 if ((npages - i <= max_pgs) &&
974                                                     ((off + space) & PAGE_MASK) &&
975                                                     (rem > space || rhpages > 0))
976                                                         m0->m_ext.ext_flags |=
977                                                             EXT_FLAG_CACHE_LAST;
978                                         }
979                                         if (sfs != NULL) {
980                                                 m0->m_ext.ext_flags |=
981                                                     EXT_FLAG_SYNC;
982                                                 if (m0->m_ext.ext_type ==
983                                                     EXT_PGS)
984                                                         m0->m_ext.ext_arg1 =
985                                                                 sfs;
986                                                 else
987                                                         m0->m_ext.ext_arg2 =
988                                                                 sfs;
989                                                 mtx_lock(&sfs->mtx);
990                                                 sfs->count++;
991                                                 mtx_unlock(&sfs->mtx);
992                                         }
993                                         ext_pgs = &m0->m_ext_pgs;
994                                         ext_pgs_idx = 0;
995
996                                         /* Append to mbuf chain. */
997                                         if (mtail != NULL)
998                                                 mtail->m_next = m0;
999                                         else
1000                                                 m = m0;
1001                                         mtail = m0;
1002                                         ext_pgs->first_pg_off =
1003                                             vmoff(i, off) & PAGE_MASK;
1004                                 }
1005                                 if (nios) {
1006                                         mtail->m_flags |= M_NOTREADY;
1007                                         ext_pgs->nrdy++;
1008                                 }
1009
1010                                 ext_pgs->m_epg_pa[ext_pgs_idx] = VM_PAGE_TO_PHYS(pga);
1011                                 ext_pgs->npgs++;
1012                                 xfs = xfsize(i, npages, off, space);
1013                                 ext_pgs->last_pg_len = xfs;
1014                                 MBUF_EXT_PGS_ASSERT_SANITY(ext_pgs);
1015                                 mtail->m_len += xfs;
1016                                 mtail->m_ext.ext_size += PAGE_SIZE;
1017                                 continue;
1018                         }
1019
1020                         /*
1021                          * Get a sendfile buf.  When allocating the
1022                          * first buffer for mbuf chain, we usually
1023                          * wait as long as necessary, but this wait
1024                          * can be interrupted.  For consequent
1025                          * buffers, do not sleep, since several
1026                          * threads might exhaust the buffers and then
1027                          * deadlock.
1028                          */
1029                         sf = sf_buf_alloc(pga,
1030                             m != NULL ? SFB_NOWAIT : SFB_CATCH);
1031                         if (sf == NULL) {
1032                                 SFSTAT_INC(sf_allocfail);
1033                                 sendfile_iowait(sfio, "sfnosf");
1034                                 for (int j = i; j < npages; j++)
1035                                         vm_page_unwire(pa[j], PQ_INACTIVE);
1036                                 if (m == NULL)
1037                                         softerr = ENOBUFS;
1038                                 fixspace(npages, i, off, &space);
1039                                 npages = i;
1040                                 break;
1041                         }
1042
1043                         m0 = m_get(M_WAITOK, MT_DATA);
1044                         m0->m_ext.ext_buf = (char *)sf_buf_kva(sf);
1045                         m0->m_ext.ext_size = PAGE_SIZE;
1046                         m0->m_ext.ext_arg1 = sf;
1047                         m0->m_ext.ext_type = EXT_SFBUF;
1048                         m0->m_ext.ext_flags = EXT_FLAG_EMBREF;
1049                         m0->m_ext.ext_free = sendfile_free_mext;
1050                         /*
1051                          * SF_NOCACHE sets the page as being freed upon send.
1052                          * However, we ignore it for the last page in 'space',
1053                          * if the page is truncated, and we got more data to
1054                          * send (rem > space), or if we have readahead
1055                          * configured (rhpages > 0).
1056                          */
1057                         if ((flags & SF_NOCACHE) &&
1058                             (i != npages - 1 ||
1059                             !((off + space) & PAGE_MASK) ||
1060                             !(rem > space || rhpages > 0)))
1061                                 m0->m_ext.ext_flags |= EXT_FLAG_NOCACHE;
1062                         if (sfs != NULL) {
1063                                 m0->m_ext.ext_flags |= EXT_FLAG_SYNC;
1064                                 if (m0->m_ext.ext_type == EXT_PGS)
1065                                         m0->m_ext.ext_arg1 = sfs;
1066                                 else
1067                                         m0->m_ext.ext_arg2 = sfs;
1068                                 m0->m_ext.ext_arg2 = sfs;
1069                                 mtx_lock(&sfs->mtx);
1070                                 sfs->count++;
1071                                 mtx_unlock(&sfs->mtx);
1072                         }
1073                         m0->m_ext.ext_count = 1;
1074                         m0->m_flags |= (M_EXT | M_RDONLY);
1075                         if (nios)
1076                                 m0->m_flags |= M_NOTREADY;
1077                         m0->m_data = (char *)sf_buf_kva(sf) +
1078                             (vmoff(i, off) & PAGE_MASK);
1079                         m0->m_len = xfsize(i, npages, off, space);
1080
1081                         /* Append to mbuf chain. */
1082                         if (mtail != NULL)
1083                                 mtail->m_next = m0;
1084                         else
1085                                 m = m0;
1086                         mtail = m0;
1087                 }
1088
1089                 if (vp != NULL)
1090                         VOP_UNLOCK(vp);
1091
1092                 /* Keep track of bytes processed. */
1093                 off += space;
1094                 rem -= space;
1095
1096                 /*
1097                  * Prepend header, if any.  Save pointer to first mbuf
1098                  * with a page.
1099                  */
1100                 if (hdrlen) {
1101 prepend_header:
1102                         m0 = mhtail->m_next = m;
1103                         m = mh;
1104                         mh = NULL;
1105                 } else
1106                         m0 = m;
1107
1108                 if (m == NULL) {
1109                         KASSERT(softerr, ("%s: m NULL, no error", __func__));
1110                         error = softerr;
1111                         sendfile_iodone(sfio, NULL, 0, 0);
1112                         goto done;
1113                 }
1114
1115                 /* Add the buffer chain to the socket buffer. */
1116                 KASSERT(m_length(m, NULL) == space + hdrlen,
1117                     ("%s: mlen %u space %d hdrlen %d",
1118                     __func__, m_length(m, NULL), space, hdrlen));
1119
1120                 CURVNET_SET(so->so_vnet);
1121 #ifdef KERN_TLS
1122                 if (tls != NULL)
1123                         ktls_frame(m, tls, &tls_enq_cnt, TLS_RLTYPE_APP);
1124 #endif
1125                 if (nios == 0) {
1126                         /*
1127                          * If sendfile_swapin() didn't initiate any I/Os,
1128                          * which happens if all data is cached in VM, or if
1129                          * the header consumed all socket buffer space and
1130                          * sfio is NULL, then we can send data right now
1131                          * without the PRUS_NOTREADY flag.
1132                          */
1133                         if (sfio != NULL)
1134                                 sendfile_iodone(sfio, NULL, 0, 0);
1135 #ifdef KERN_TLS
1136                         if (tls != NULL && tls->mode == TCP_TLS_MODE_SW) {
1137                                 error = (*so->so_proto->pr_usrreqs->pru_send)
1138                                     (so, PRUS_NOTREADY, m, NULL, NULL, td);
1139                                 soref(so);
1140                                 ktls_enqueue(m, so, tls_enq_cnt);
1141                         } else
1142 #endif
1143                                 error = (*so->so_proto->pr_usrreqs->pru_send)
1144                                     (so, 0, m, NULL, NULL, td);
1145                 } else {
1146                         sfio->so = so;
1147                         sfio->m = m0;
1148                         sfio->npages = npages;
1149                         soref(so);
1150                         error = (*so->so_proto->pr_usrreqs->pru_send)
1151                             (so, PRUS_NOTREADY, m, NULL, NULL, td);
1152                         sendfile_iodone(sfio, NULL, 0, 0);
1153                 }
1154                 CURVNET_RESTORE();
1155
1156                 m = NULL;       /* pru_send always consumes */
1157                 if (error)
1158                         goto done;
1159                 sbytes += space + hdrlen;
1160                 if (hdrlen)
1161                         hdrlen = 0;
1162                 if (softerr) {
1163                         error = softerr;
1164                         goto done;
1165                 }
1166         }
1167
1168         /*
1169          * Send trailers. Wimp out and use writev(2).
1170          */
1171         if (trl_uio != NULL) {
1172                 sbunlock(&so->so_snd);
1173                 error = kern_writev(td, sockfd, trl_uio);
1174                 if (error == 0)
1175                         sbytes += td->td_retval[0];
1176                 goto out;
1177         }
1178
1179 done:
1180         sbunlock(&so->so_snd);
1181 out:
1182         /*
1183          * If there was no error we have to clear td->td_retval[0]
1184          * because it may have been set by writev.
1185          */
1186         if (error == 0) {
1187                 td->td_retval[0] = 0;
1188         }
1189         if (sent != NULL) {
1190                 (*sent) = sbytes;
1191         }
1192         if (obj != NULL)
1193                 vm_object_deallocate(obj);
1194         if (so)
1195                 fdrop(sock_fp, td);
1196         if (m)
1197                 m_freem(m);
1198         if (mh)
1199                 m_freem(mh);
1200
1201         if (sfs != NULL) {
1202                 mtx_lock(&sfs->mtx);
1203                 if (sfs->count != 0)
1204                         cv_wait(&sfs->cv, &sfs->mtx);
1205                 KASSERT(sfs->count == 0, ("sendfile sync still busy"));
1206                 cv_destroy(&sfs->cv);
1207                 mtx_destroy(&sfs->mtx);
1208                 free(sfs, M_SENDFILE);
1209         }
1210 #ifdef KERN_TLS
1211         if (tls != NULL)
1212                 ktls_free(tls);
1213 #endif
1214
1215         if (error == ERESTART)
1216                 error = EINTR;
1217
1218         return (error);
1219 }
1220
1221 static int
1222 sendfile(struct thread *td, struct sendfile_args *uap, int compat)
1223 {
1224         struct sf_hdtr hdtr;
1225         struct uio *hdr_uio, *trl_uio;
1226         struct file *fp;
1227         off_t sbytes;
1228         int error;
1229
1230         /*
1231          * File offset must be positive.  If it goes beyond EOF
1232          * we send only the header/trailer and no payload data.
1233          */
1234         if (uap->offset < 0)
1235                 return (EINVAL);
1236
1237         sbytes = 0;
1238         hdr_uio = trl_uio = NULL;
1239
1240         if (uap->hdtr != NULL) {
1241                 error = copyin(uap->hdtr, &hdtr, sizeof(hdtr));
1242                 if (error != 0)
1243                         goto out;
1244                 if (hdtr.headers != NULL) {
1245                         error = copyinuio(hdtr.headers, hdtr.hdr_cnt,
1246                             &hdr_uio);
1247                         if (error != 0)
1248                                 goto out;
1249 #ifdef COMPAT_FREEBSD4
1250                         /*
1251                          * In FreeBSD < 5.0 the nbytes to send also included
1252                          * the header.  If compat is specified subtract the
1253                          * header size from nbytes.
1254                          */
1255                         if (compat) {
1256                                 if (uap->nbytes > hdr_uio->uio_resid)
1257                                         uap->nbytes -= hdr_uio->uio_resid;
1258                                 else
1259                                         uap->nbytes = 0;
1260                         }
1261 #endif
1262                 }
1263                 if (hdtr.trailers != NULL) {
1264                         error = copyinuio(hdtr.trailers, hdtr.trl_cnt,
1265                             &trl_uio);
1266                         if (error != 0)
1267                                 goto out;
1268                 }
1269         }
1270
1271         AUDIT_ARG_FD(uap->fd);
1272
1273         /*
1274          * sendfile(2) can start at any offset within a file so we require
1275          * CAP_READ+CAP_SEEK = CAP_PREAD.
1276          */
1277         if ((error = fget_read(td, uap->fd, &cap_pread_rights, &fp)) != 0)
1278                 goto out;
1279
1280         error = fo_sendfile(fp, uap->s, hdr_uio, trl_uio, uap->offset,
1281             uap->nbytes, &sbytes, uap->flags, td);
1282         fdrop(fp, td);
1283
1284         if (uap->sbytes != NULL)
1285                 copyout(&sbytes, uap->sbytes, sizeof(off_t));
1286
1287 out:
1288         free(hdr_uio, M_IOV);
1289         free(trl_uio, M_IOV);
1290         return (error);
1291 }
1292
1293 /*
1294  * sendfile(2)
1295  * 
1296  * int sendfile(int fd, int s, off_t offset, size_t nbytes,
1297  *       struct sf_hdtr *hdtr, off_t *sbytes, int flags)
1298  * 
1299  * Send a file specified by 'fd' and starting at 'offset' to a socket
1300  * specified by 's'. Send only 'nbytes' of the file or until EOF if nbytes ==
1301  * 0.  Optionally add a header and/or trailer to the socket output.  If
1302  * specified, write the total number of bytes sent into *sbytes.
1303  */
1304 int
1305 sys_sendfile(struct thread *td, struct sendfile_args *uap)
1306 {
1307  
1308         return (sendfile(td, uap, 0));
1309 }
1310
1311 #ifdef COMPAT_FREEBSD4
1312 int
1313 freebsd4_sendfile(struct thread *td, struct freebsd4_sendfile_args *uap)
1314 {
1315         struct sendfile_args args;
1316
1317         args.fd = uap->fd;
1318         args.s = uap->s;
1319         args.offset = uap->offset;
1320         args.nbytes = uap->nbytes;
1321         args.hdtr = uap->hdtr;
1322         args.sbytes = uap->sbytes;
1323         args.flags = uap->flags;
1324
1325         return (sendfile(td, &args, 1));
1326 }
1327 #endif /* COMPAT_FREEBSD4 */