gto ri of a bunch more #ifdef LARGE_SMB_OFF_T checks by introducing a
[ira/wip.git] / source3 / smbd / fileio.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    read/write to a files_struct
5    Copyright (C) Andrew Tridgell 1992-1998
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23
24 extern int DEBUGLEVEL;
25
26
27 /****************************************************************************
28 seek a file. Try to avoid the seek if possible
29 ****************************************************************************/
30
31 SMB_OFF_T seek_file(files_struct *fsp,SMB_OFF_T pos)
32 {
33   SMB_OFF_T offset = 0;
34
35   if (fsp->print_file && lp_postscript(fsp->conn->service))
36     offset = 3;
37
38   fsp->pos = (sys_lseek(fsp->fd_ptr->fd,pos+offset,SEEK_SET) - offset);
39
40   DEBUG(10,("seek_file: requested pos = %.0f, new pos = %.0f\n",
41         (double)(pos+offset), (double)fsp->pos ));
42
43   return(fsp->pos);
44 }
45
46 /****************************************************************************
47 read from a file
48 ****************************************************************************/
49
50 ssize_t read_file(files_struct *fsp,char *data,SMB_OFF_T pos,size_t n)
51 {
52   ssize_t ret=0,readret;
53
54 #if USE_READ_PREDICTION
55   if (!fsp->can_write) {
56     ret = read_predict(fsp->fd_ptr->fd,pos,data,NULL,n);
57
58     data += ret;
59     n -= ret;
60     pos += ret;
61   }
62 #endif
63
64 #if WITH_MMAP
65   if (fsp->mmap_ptr) {
66           SMB_OFF_T num = (fsp->mmap_size > pos) ? (fsp->mmap_size - pos) : -1;
67           num = MIN(n,num);
68           if (num > 0) {
69                   memcpy(data,fsp->mmap_ptr+pos,num);
70                   data += num;
71                   pos += num;
72                   n -= num;
73                   ret += num;
74           }
75   }
76 #endif
77
78   if (seek_file(fsp,pos) != pos) {
79     DEBUG(3,("read_file: Failed to seek to %.0f\n",(double)pos));
80     return(ret);
81   }
82   
83   if (n > 0) {
84     readret = read(fsp->fd_ptr->fd,data,n);
85     if (readret > 0) ret += readret;
86   }
87
88   return(ret);
89 }
90
91
92 /****************************************************************************
93 write to a file
94 ****************************************************************************/
95
96 ssize_t write_file(files_struct *fsp,char *data,size_t n)
97 {
98
99   if (!fsp->can_write) {
100     errno = EPERM;
101     return(0);
102   }
103
104   if (!fsp->modified) {
105     SMB_STRUCT_STAT st;
106     fsp->modified = True;
107     if (sys_fstat(fsp->fd_ptr->fd,&st) == 0) {
108       int dosmode = dos_mode(fsp->conn,fsp->fsp_name,&st);
109       if (MAP_ARCHIVE(fsp->conn) && !IS_DOS_ARCHIVE(dosmode)) { 
110         file_chmod(fsp->conn,fsp->fsp_name,dosmode | aARCH,&st);
111       }
112     }  
113   }
114
115   return(write_data(fsp->fd_ptr->fd,data,n));
116 }
117
118
119 /*******************************************************************
120 sync a file
121 ********************************************************************/
122
123 void sync_file(connection_struct *conn, files_struct *fsp)
124 {
125 #ifdef HAVE_FSYNC
126     if(lp_strict_sync(SNUM(conn)))
127       fsync(fsp->fd_ptr->fd);
128 #endif
129 }