]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_sendfile.c
c8cba8cca31f3ea96a6d228b9e238c07d9f0c170
[netatalk.git] / libatalk / adouble / ad_sendfile.c
1 /*
2  * $Id: ad_sendfile.c,v 1.11 2010-01-21 14:14:49 didg Exp $
3  *
4  * Copyright (c) 1999 Adrian Sun (asun@zoology.washington.edu)
5  * All rights reserved. See COPYRIGHT.
6  *
7  * NOTE: the following uses the fact that sendfile() only exists on
8  * machines with SA_RESTART behaviour. this is all very machine specific. 
9  *
10  * sendfile chainsaw from samba.
11  Unix SMB/Netbios implementation.
12  Version 2.2.x / 3.0.x
13  sendfile implementations.
14  Copyright (C) Jeremy Allison 2002.
15  
16  This program is free software; you can redistribute it and/or modify
17  it under the terms of the GNU General Public License as published by
18  the Free Software Foundation; either version 2 of the License, or
19  (at your option) any later version.
20  This program is distributed in the hope that it will be useful,
21  but WITHOUT ANY WARRANTY; without even the implied warranty of
22  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  GNU General Public License for more details.
24  
25  You should have received a copy of the GNU General Public License
26  along with this program; if not, write to the Free Software
27  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28  */
29
30 #ifdef HAVE_CONFIG_H
31 #include "config.h"
32 #endif /* HAVE_CONFIG_H */
33
34 #ifdef WITH_SENDFILE
35
36 #include <atalk/adouble.h>
37
38 #include <stdio.h>
39
40 #include <sys/socket.h>
41 #include <sys/uio.h>
42
43 #include <errno.h>  
44
45 #include <atalk/logger.h>
46 #include "ad_private.h"
47
48 #if defined(SENDFILE_FLAVOR_LINUX)
49 #include <sys/sendfile.h>
50
51 ssize_t sys_sendfile(int tofd, int fromfd, off_t *offset, size_t count)
52 {
53     return sendfile(tofd, fromfd, offset, count);
54 }
55
56 #elif defined(SENDFILE_FLAVOR_SOLARIS)
57 #include <sys/sendfile.h>
58
59 ssize_t sys_sendfile(int tofd, int fromfd, off_t *offset, size_t count)
60 {
61     return sendfile(tofd, fromfd, offset, count);
62 }
63
64 #elif defined(SENDFILE_FLAVOR_BSD )
65 #include <sys/types.h>
66 #include <sys/socket.h>
67 #include <sys/uio.h><
68 ssize_t sys_sendfile(int tofd, int fromfd, off_t *offset, size_t count)
69 {
70   return sendfile(fromfd, tofd, *offset, count, NULL, offset, 0);
71 }
72
73 #else
74
75 ssize_t sys_sendfile(int out_fd, int in_fd, off_t *_offset, size_t count)
76 {
77     /* No sendfile syscall. */
78     errno = ENOSYS;
79     return -1;
80 }
81 #endif
82
83 /* ------------------------------- */
84 int ad_readfile_init(const struct adouble *ad, 
85                                        const int eid, off_t *off,
86                                        const int end)
87 {
88   int fd;
89
90   if (end) 
91     *off = ad_size(ad, eid) - *off;
92
93   if (eid == ADEID_DFORK) {
94     fd = ad_data_fileno(ad);
95   } else {
96     *off += ad_getentryoff(ad, eid);
97     fd = ad_reso_fileno(ad);
98   }
99
100   return fd;
101 }
102
103
104 /* ------------------------ */
105 #if 0
106 #ifdef HAVE_SENDFILE_WRITE
107 /* read from a socket and write to an adouble file */
108 ssize_t ad_writefile(struct adouble *ad, const int eid, 
109                      const int sock, off_t off, const int end,
110                      const size_t len)
111 {
112 #ifdef __linux__
113   ssize_t cc;
114   int fd;
115
116   fd = ad_sendfile_init(ad, eid, &off, end);
117   if ((cc = sys_sendfile(fd, sock, &off, len)) < 0)
118     return -1;
119
120   if ((eid != ADEID_DFORK) && (off > ad_getentrylen(ad, eid))) 
121     ad_setentrylen(ad, eid, off);
122
123   return cc;
124 #endif /* __linux__ */
125 }
126 #endif /* HAVE_SENDFILE_WRITE */
127 #endif /* 0 */
128 #endif