Apache2
apr_arch_file_io.h
Go to the documentation of this file.
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements. See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef FILE_IO_H
18 #define FILE_IO_H
19 
20 #include "apr.h"
21 #include "apr_private.h"
22 #include "apr_pools.h"
23 #include "apr_general.h"
24 #include "apr_tables.h"
25 #include "apr_thread_mutex.h"
26 #include "apr_file_io.h"
27 #include "apr_file_info.h"
28 #include "apr_errno.h"
29 #include "apr_arch_misc.h"
30 #include "apr_poll.h"
31 
32 #ifdef HAVE_SYS_STAT_H
33 #include <sys/stat.h>
34 #endif
35 #if APR_HAVE_SYS_TYPES_H
36 #include <sys/types.h>
37 #endif
38 #ifdef HAVE_SYS_FCNTL_H
39 #include <fcntl.h>
40 #endif
41 #ifdef HAVE_TIME_H
42 #include <time.h>
43 #endif
44 #if APR_HAVE_DIRENT_H
45 #include <dirent.h>
46 #endif
47 #ifdef HAVE_MALLOC_H
48 #include <malloc.h>
49 #endif
50 
51 #if APR_HAS_UNICODE_FS
53 #include <wchar.h>
54 
55 /* Helper functions for the WinNT ApiW() functions. APR treats all
56  * resource identifiers (files, etc) by their UTF-8 name, to provide
57  * access to all named identifiers. [UTF-8 completely maps Unicode
58  * into char type strings.]
59  *
60  * The _path flavors below provide us fast mappings of the
61  * Unicode filename //?/D:/path and //?/UNC/mach/share/path mappings,
62  * which allow unlimited (well, 32000 wide character) length names.
63  * These prefixes may appear in Unicode, but must not appear in the
64  * Ascii API calls. So we tack them on in utf8_to_unicode_path, and
65  * strip them right back off in unicode_to_utf8_path.
66  */
68  const char* srcstr);
70  const apr_wchar_t* srcstr);
71 
72 #endif /* APR_HAS_UNICODE_FS */
73 
74 /* Another Helper functions for the WinNT ApiW() functions. We need to
75  * derive some 'resource' names (max length 255 characters, prefixed with
76  * Global/ or Local/ on WinNT) from something that looks like a filename.
77  * Since 'resource' names never contain slashes, convert these to '_'s
78  * and return the appropriate char* or wchar* for ApiA or ApiW calls.
79  */
80 
81 void *res_name_from_filename(const char *file, int global, apr_pool_t *pool);
82 
83 #define APR_FILE_MAX MAX_PATH
84 
85 #define APR_FILE_DEFAULT_BUFSIZE 4096
86 /* For backwards-compat */
87 #define APR_FILE_BUFSIZE APR_FILE_DEFAULT_BUFSIZE
88 
89 /* obscure ommissions from msvc's sys/stat.h */
90 #ifdef _MSC_VER
91 #define S_IFIFO _S_IFIFO /* pipe */
92 #define S_IFBLK 0060000 /* Block Special */
93 #define S_IFLNK 0120000 /* Symbolic Link */
94 #define S_IFSOCK 0140000 /* Socket */
95 #define S_IFWHT 0160000 /* Whiteout */
96 #endif
97 
98 /* Internal Flags for apr_file_open */
99 #define APR_OPENINFO 0x00100000 /* Open without READ or WRITE access */
100 #define APR_OPENLINK 0x00200000 /* Open a link itself, if supported */
101 #define APR_READCONTROL 0x00400000 /* Read the file's owner/perms */
102 #define APR_WRITECONTROL 0x00800000 /* Modify the file's owner/perms */
103 /* #define APR_INHERIT 0x01000000 -- Defined in apr_arch_inherit.h! */
104 #define APR_STDIN_FLAG 0x02000000 /* Obtained via apr_file_open_stdin() */
105 #define APR_STDOUT_FLAG 0x04000000 /* Obtained via apr_file_open_stdout() */
106 #define APR_STDERR_FLAG 0x06000000 /* Obtained via apr_file_open_stderr() */
107 #define APR_STD_FLAGS (APR_STDIN_FLAG | APR_STDOUT_FLAG | APR_STDERR_FLAG)
108 #define APR_WRITEATTRS 0x08000000 /* Modify the file's attributes */
109 
110 /* Entries missing from the MSVC 5.0 Win32 SDK:
111  */
112 #ifndef FILE_ATTRIBUTE_DEVICE
113 #define FILE_ATTRIBUTE_DEVICE 0x00000040
114 #endif
115 #ifndef FILE_ATTRIBUTE_REPARSE_POINT
116 #define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400
117 #endif
118 #ifndef FILE_FLAG_OPEN_NO_RECALL
119 #define FILE_FLAG_OPEN_NO_RECALL 0x00100000
120 #endif
121 #ifndef FILE_FLAG_OPEN_REPARSE_POINT
122 #define FILE_FLAG_OPEN_REPARSE_POINT 0x00200000
123 #endif
124 #ifndef TRUSTEE_IS_WELL_KNOWN_GROUP
125 #define TRUSTEE_IS_WELL_KNOWN_GROUP 5
126 #endif
127 
128 /* Information bits available from the WIN32 FindFirstFile function */
129 #define APR_FINFO_WIN32_DIR (APR_FINFO_NAME | APR_FINFO_TYPE \
130  | APR_FINFO_CTIME | APR_FINFO_ATIME \
131  | APR_FINFO_MTIME | APR_FINFO_SIZE)
132 
133 /* Sneak the Readonly bit through finfo->protection for internal use _only_ */
134 #define APR_FREADONLY 0x10000000
135 
136 /* Private function for apr_stat/lstat/getfileinfo/dir_read */
137 int fillin_fileinfo(apr_finfo_t *finfo, WIN32_FILE_ATTRIBUTE_DATA *wininfo,
138  int byhandle, int finddata, const char *fname,
139  apr_int32_t wanted);
140 
141 /* Private function that extends apr_stat/lstat/getfileinfo/dir_read */
142 apr_status_t more_finfo(apr_finfo_t *finfo, const void *ufile,
143  apr_int32_t wanted, int whatfile);
144 
145 /* whatfile types for the ufile arg */
146 #define MORE_OF_HANDLE 0
147 #define MORE_OF_WFSPEC 2
148 
149 /* quick run-down of fields in windows' apr_file_t structure that may have
150  * obvious uses.
151  * fname -- the filename as passed to the open call.
152  * dwFileAttricutes -- Attributes used to open the file.
153  * append -- Windows doesn't support the append concept when opening files.
154  * APR needs to keep track of this, and always make sure we append
155  * correctly when writing to a file with this flag set TRUE.
156  */
157 
158 /* for apr_poll.c */
159 #define filedes filehand
160 
161 typedef enum {
165 
166 struct apr_file_t {
167  apr_pool_t *pool;
168  HANDLE filehand;
169  apr_filetype_e ftype; /* Is this a pipe, a socket or a file? */
170  OVERLAPPED *pOverlapped;
173 
174  /* File specific info */
176  char *fname;
178  int eof_hit;
179  BOOLEAN buffered; /* Use buffered I/O? */
180  int ungetchar; /* Last char provided by an unget op. (-1 = no char) */
181  int append;
182 
183  /* Stuff for buffered mode */
184  char *buffer;
185  apr_size_t bufpos; /* Read/Write position in buffer */
186  apr_size_t bufsize; /* The size of the buffer */
187  apr_size_t dataRead; /* amount of valid data read into buffer */
188  int direction; /* buffer being used for 0 = read, 1 = write */
189  apr_off_t filePtr; /* position in file of handle */
190  apr_thread_mutex_t *mutex; /* mutex semaphore, must be owned to access
191  the above fields */
192 
193 #if APR_FILES_AS_SOCKETS
194  /* if there is a timeout set, then this pollset is used */
196 #endif
197  /* Pipe specific info */
198 };
199 
200 struct apr_dir_t {
201  apr_pool_t *pool;
202  HANDLE dirhand;
204  char *dirname;
205  char *name;
206  WIN32_FIND_DATAW *entry;
207  int bof;
208 };
209 
210 /* There are many goofy characters the filesystem can't accept
211  * or can confound the cmd.exe shell. Here's the list
212  * [declared in filesys.c]
213  */
214 extern const char apr_c_is_fnchar[256];
215 
216 #define IS_FNCHAR(c) (apr_c_is_fnchar[(unsigned char)(c)] & 1)
217 #define IS_SHCHAR(c) ((apr_c_is_fnchar[(unsigned char)(c)] & 2) == 2)
218 
219 
220 /* If the user passes APR_FILEPATH_TRUENAME to either
221  * apr_filepath_root or apr_filepath_merge, this fn determines
222  * that the root really exists. It's expensive, wouldn't want
223  * to do this too frequenly.
224  */
226 
227 
228 /* The apr_filepath_merge wants to canonicalize the cwd to the
229  * addpath if the user passes NULL as the old root path (this
230  * isn't true of an empty string "", which won't be concatenated.
231  *
232  * But we need to figure out what the cwd of a given volume is,
233  * when the user passes D:foo. This fn will determine D:'s cwd.
234  *
235  * If flags includes the bit APR_FILEPATH_NATIVE, the path returned
236  * is in the os-native format.
237  */
238 apr_status_t filepath_drive_get(char **rootpath, char drive,
240 
241 
242 /* If the user passes d: vs. D: (or //mach/share vs. //MACH/SHARE),
243  * we need to fold the case to canonical form. This function is
244  * supposed to do so.
245  */
246 apr_status_t filepath_root_case(char **rootpath, char *root, apr_pool_t *p);
247 
248 
250 
251 #endif /* ! FILE_IO_H */
APR Platform Definitions.
apr_uint16_t apr_wchar_t
Definition: apr_arch_utf8.h:26
APR Error Codes.
APR File Information.
APR File I/O Handling.
APR Miscellaneous library routines.
APR Poll interface.
APR memory allocation.
APR Table library.
APR Thread Mutex Routines.
dav_resource int dav_locktoken dav_response int flags
Definition: mod_dav.h:1458
apr_bucket_brigade request_rec apr_pool_t * pool
Definition: mod_dav.h:557
int apr_status_t
Definition: apr_errno.h:44
apr_filetype_e
Definition: apr_file_info.h:62
@ APR_FILETYPE_FILE
Definition: apr_arch_file_io.h:162
@ APR_FILETYPE_PIPE
Definition: apr_arch_file_io.h:163
int apr_int32_t
Definition: apr.h:347
off_t apr_off_t
Definition: apr.h:396
size_t apr_size_t
Definition: apr.h:394
struct apr_pool_t apr_pool_t
Definition: apr_pools.h:60
apr_int64_t apr_interval_time_t
Definition: apr_time.h:55
apr_status_t filepath_root_case(char **rootpath, char *root, apr_pool_t *p)
apr_status_t filepath_root_test(char *path, apr_pool_t *p)
apr_status_t filepath_drive_get(char **rootpath, char drive, apr_int32_t flags, apr_pool_t *p)
Definition: apr_arch_file_io.h:135
char * dirname
Definition: apr_arch_file_io.h:137
char * name
Definition: apr_arch_file_io.h:205
apr_pool_t * pool
Definition: apr_arch_file_io.h:136
HANDLE dirhand
Definition: apr_arch_file_io.h:202
apr_size_t rootlen
Definition: apr_arch_file_io.h:203
WIN32_FIND_DATAW * entry
Definition: apr_arch_file_io.h:206
int bof
Definition: apr_arch_file_io.h:207
Definition: apr_arch_file_io.h:107
apr_size_t dataRead
Definition: apr_arch_file_io.h:187
apr_pollset_t * pollset
Definition: apr_arch_file_io.h:120
int direction
Definition: apr_arch_file_io.h:127
apr_int32_t flags
Definition: apr_arch_file_io.h:111
apr_interval_time_t timeout
Definition: apr_arch_file_io.h:114
apr_size_t bufpos
Definition: apr_arch_file_io.h:124
apr_off_t filePtr
Definition: apr_arch_file_io.h:128
apr_thread_mutex_t * mutex
Definition: apr_arch_file_io.h:57
int ungetchar
Definition: apr_arch_file_io.h:117
char * buffer
Definition: apr_arch_file_io.h:123
apr_pool_t * pool
Definition: apr_arch_file_io.h:108
OVERLAPPED * pOverlapped
Definition: apr_arch_file_io.h:170
apr_finfo_t * finfo
Definition: apr_arch_file_io.h:175
BOOLEAN buffered
Definition: apr_arch_file_io.h:179
char * fname
Definition: apr_arch_file_io.h:110
DWORD dwFileAttributes
Definition: apr_arch_file_io.h:177
apr_filetype_e ftype
Definition: apr_arch_file_io.h:169
HANDLE filehand
Definition: apr_arch_file_io.h:168
int append
Definition: apr_arch_file_io.h:181
apr_size_t bufsize
Definition: apr_arch_file_io.h:125
int eof_hit
Definition: apr_arch_file_io.h:112
Definition: apr_file_info.h:174
Definition: apr_arch_poll_private.h:124
Definition: apr_arch_thread_mutex.h:28
apr_pool_t * p
const char apr_c_is_fnchar[256]
void * res_name_from_filename(const char *file, int global, apr_pool_t *pool)
apr_status_t file_cleanup(void *)
apr_status_t more_finfo(apr_finfo_t *finfo, const void *ufile, apr_int32_t wanted, int whatfile)
apr_status_t unicode_to_utf8_path(char *dststr, apr_size_t dstchars, const apr_wchar_t *srcstr)
apr_status_t utf8_to_unicode_path(apr_wchar_t *dststr, apr_size_t dstchars, const char *srcstr)
int fillin_fileinfo(apr_finfo_t *finfo, WIN32_FILE_ATTRIBUTE_DATA *wininfo, int byhandle, int finddata, const char *fname, apr_int32_t wanted)
apr_filetype_e
Definition: apr_arch_file_io.h:161