Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Server-side file mapping management |
| 3 | * |
| 4 | * Copyright (C) 1999 Alexandre Julliard |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 5 | * |
| 6 | * This library is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU Lesser General Public |
| 8 | * License as published by the Free Software Foundation; either |
| 9 | * version 2.1 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This library is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * Lesser General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU Lesser General Public |
| 17 | * License along with this library; if not, write to the Free Software |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame^] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
Francois Gouget | e5ddd26 | 2001-10-14 16:18:52 +0000 | [diff] [blame] | 21 | #include "config.h" |
Alexandre Julliard | 5769d1d | 2002-04-26 19:05:15 +0000 | [diff] [blame] | 22 | #include "wine/port.h" |
Francois Gouget | e5ddd26 | 2001-10-14 16:18:52 +0000 | [diff] [blame] | 23 | |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 24 | #include <assert.h> |
Alexandre Julliard | e37c6e1 | 2003-09-05 23:08:26 +0000 | [diff] [blame] | 25 | #include <stdarg.h> |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 26 | #include <stdio.h> |
| 27 | #include <stdlib.h> |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 28 | #include <sys/stat.h> |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 29 | #include <unistd.h> |
| 30 | |
Ge van Geldorp | 1a1583a | 2005-11-28 17:32:54 +0100 | [diff] [blame] | 31 | #include "ntstatus.h" |
| 32 | #define WIN32_NO_STATUS |
Alexandre Julliard | e37c6e1 | 2003-09-05 23:08:26 +0000 | [diff] [blame] | 33 | #include "windef.h" |
Vitaliy Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 34 | #include "winternl.h" |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 35 | |
Alexandre Julliard | 863637b | 2003-01-30 00:26:44 +0000 | [diff] [blame] | 36 | #include "file.h" |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 37 | #include "handle.h" |
| 38 | #include "thread.h" |
Alexandre Julliard | 5bc7808 | 1999-06-22 17:26:53 +0000 | [diff] [blame] | 39 | #include "request.h" |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 40 | |
| 41 | struct mapping |
| 42 | { |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 43 | struct object obj; /* object header */ |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 44 | file_pos_t size; /* mapping size */ |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 45 | int protect; /* protection flags */ |
| 46 | struct file *file; /* file mapped */ |
| 47 | int header_size; /* size of headers (for PE image mapping) */ |
| 48 | void *base; /* default base addr (for PE image mapping) */ |
| 49 | struct file *shared_file; /* temp file for shared PE mapping */ |
| 50 | int shared_size; /* shared mapping total size */ |
Alexandre Julliard | bb82cbb | 2005-07-07 12:04:55 +0000 | [diff] [blame] | 51 | struct list shared_entry; /* entry in global shared PE mappings list */ |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | static void mapping_dump( struct object *obj, int verbose ); |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 55 | static struct fd *mapping_get_fd( struct object *obj ); |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 56 | static unsigned int mapping_map_access( struct object *obj, unsigned int access ); |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 57 | static void mapping_destroy( struct object *obj ); |
| 58 | |
| 59 | static const struct object_ops mapping_ops = |
| 60 | { |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 61 | sizeof(struct mapping), /* size */ |
| 62 | mapping_dump, /* dump */ |
| 63 | no_add_queue, /* add_queue */ |
| 64 | NULL, /* remove_queue */ |
| 65 | NULL, /* signaled */ |
| 66 | NULL, /* satisfied */ |
Mike McCormack | f92fff6 | 2005-04-24 17:35:52 +0000 | [diff] [blame] | 67 | no_signal, /* signal */ |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 68 | mapping_get_fd, /* get_fd */ |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 69 | mapping_map_access, /* map_access */ |
Vitaliy Margolen | baffcb9 | 2005-11-22 14:55:42 +0000 | [diff] [blame] | 70 | no_lookup_name, /* lookup_name */ |
Alexandre Julliard | b9b1ea9 | 2005-06-09 15:39:52 +0000 | [diff] [blame] | 71 | no_close_handle, /* close_handle */ |
Alexandre Julliard | 1dca5e2 | 2000-01-01 00:56:27 +0000 | [diff] [blame] | 72 | mapping_destroy /* destroy */ |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 73 | }; |
| 74 | |
Alexandre Julliard | bb82cbb | 2005-07-07 12:04:55 +0000 | [diff] [blame] | 75 | static struct list shared_list = LIST_INIT(shared_list); |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 76 | |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 77 | #ifdef __i386__ |
| 78 | |
| 79 | /* These are always the same on an i386, and it will be faster this way */ |
| 80 | # define page_mask 0xfff |
| 81 | # define page_shift 12 |
Alexandre Julliard | 908464d | 2000-11-01 03:11:12 +0000 | [diff] [blame] | 82 | # define init_page_size() do { /* nothing */ } while(0) |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 83 | |
| 84 | #else /* __i386__ */ |
| 85 | |
| 86 | static int page_shift, page_mask; |
| 87 | |
| 88 | static void init_page_size(void) |
| 89 | { |
| 90 | int page_size; |
| 91 | # ifdef HAVE_GETPAGESIZE |
| 92 | page_size = getpagesize(); |
| 93 | # else |
| 94 | # ifdef __svr4__ |
| 95 | page_size = sysconf(_SC_PAGESIZE); |
| 96 | # else |
| 97 | # error Cannot get the page size on this platform |
| 98 | # endif |
| 99 | # endif |
| 100 | page_mask = page_size - 1; |
| 101 | /* Make sure we have a power of 2 */ |
| 102 | assert( !(page_size & page_mask) ); |
| 103 | page_shift = 0; |
| 104 | while ((1 << page_shift) != page_size) page_shift++; |
| 105 | } |
| 106 | #endif /* __i386__ */ |
| 107 | |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 108 | #define ROUND_SIZE(size) (((size) + page_mask) & ~page_mask) |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 109 | |
| 110 | |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 111 | /* find the shared PE mapping for a given mapping */ |
| 112 | static struct file *get_shared_file( struct mapping *mapping ) |
| 113 | { |
| 114 | struct mapping *ptr; |
| 115 | |
Alexandre Julliard | bb82cbb | 2005-07-07 12:04:55 +0000 | [diff] [blame] | 116 | LIST_FOR_EACH_ENTRY( ptr, &shared_list, struct mapping, shared_entry ) |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 117 | if (is_same_file( ptr->file, mapping->file )) |
| 118 | return (struct file *)grab_object( ptr->shared_file ); |
| 119 | return NULL; |
| 120 | } |
| 121 | |
Alexandre Julliard | 4ebd2fc | 2005-08-15 14:50:06 +0000 | [diff] [blame] | 122 | /* return the size of the memory mapping of a given section */ |
| 123 | static inline unsigned int get_section_map_size( const IMAGE_SECTION_HEADER *sec ) |
| 124 | { |
| 125 | if (!sec->Misc.VirtualSize) return ROUND_SIZE( sec->SizeOfRawData ); |
| 126 | else return ROUND_SIZE( sec->Misc.VirtualSize ); |
| 127 | } |
| 128 | |
| 129 | /* return the size of the file mapping of a given section */ |
| 130 | static inline unsigned int get_section_filemap_size( const IMAGE_SECTION_HEADER *sec ) |
| 131 | { |
| 132 | if (!sec->Misc.VirtualSize) return sec->SizeOfRawData; |
| 133 | else return min( sec->SizeOfRawData, ROUND_SIZE( sec->Misc.VirtualSize ) ); |
| 134 | } |
| 135 | |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 136 | /* allocate and fill the temp file for a shared PE image mapping */ |
| 137 | static int build_shared_mapping( struct mapping *mapping, int fd, |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 138 | IMAGE_SECTION_HEADER *sec, unsigned int nb_sec ) |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 139 | { |
Alexandre Julliard | 4ebd2fc | 2005-08-15 14:50:06 +0000 | [diff] [blame] | 140 | unsigned int i, size, max_size, total_size; |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 141 | off_t shared_pos, read_pos, write_pos; |
Alexandre Julliard | 63411db | 2000-12-22 21:12:36 +0000 | [diff] [blame] | 142 | char *buffer = NULL; |
| 143 | int shared_fd; |
Andreas Mohr | 1c99af4 | 2000-12-03 04:02:09 +0000 | [diff] [blame] | 144 | long toread; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 145 | |
| 146 | /* compute the total size of the shared mapping */ |
| 147 | |
| 148 | total_size = max_size = 0; |
| 149 | for (i = 0; i < nb_sec; i++) |
| 150 | { |
| 151 | if ((sec[i].Characteristics & IMAGE_SCN_MEM_SHARED) && |
| 152 | (sec[i].Characteristics & IMAGE_SCN_MEM_WRITE)) |
| 153 | { |
Alexandre Julliard | 4ebd2fc | 2005-08-15 14:50:06 +0000 | [diff] [blame] | 154 | size = get_section_filemap_size( &sec[i] ); |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 155 | if (size > max_size) max_size = size; |
Alexandre Julliard | 4ebd2fc | 2005-08-15 14:50:06 +0000 | [diff] [blame] | 156 | total_size += get_section_map_size( &sec[i] ); |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 157 | } |
| 158 | } |
| 159 | if (!(mapping->shared_size = total_size)) return 1; /* nothing to do */ |
| 160 | |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 161 | if ((mapping->shared_file = get_shared_file( mapping ))) return 1; |
| 162 | |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 163 | /* create a temp file for the mapping */ |
| 164 | |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 165 | if (!(mapping->shared_file = create_temp_file( FILE_GENERIC_READ|FILE_GENERIC_WRITE ))) return 0; |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 166 | if (!grow_file( mapping->shared_file, total_size )) goto error; |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 167 | if ((shared_fd = get_file_unix_fd( mapping->shared_file )) == -1) goto error; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 168 | |
| 169 | if (!(buffer = malloc( max_size ))) goto error; |
| 170 | |
| 171 | /* copy the shared sections data into the temp file */ |
| 172 | |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 173 | shared_pos = 0; |
| 174 | for (i = 0; i < nb_sec; i++) |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 175 | { |
| 176 | if (!(sec[i].Characteristics & IMAGE_SCN_MEM_SHARED)) continue; |
| 177 | if (!(sec[i].Characteristics & IMAGE_SCN_MEM_WRITE)) continue; |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 178 | write_pos = shared_pos; |
Alexandre Julliard | 4ebd2fc | 2005-08-15 14:50:06 +0000 | [diff] [blame] | 179 | shared_pos += get_section_map_size( &sec[i] ); |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 180 | read_pos = sec[i].PointerToRawData; |
Alexandre Julliard | 4ebd2fc | 2005-08-15 14:50:06 +0000 | [diff] [blame] | 181 | size = get_section_filemap_size( &sec[i] ); |
| 182 | if (!read_pos || !size) continue; |
| 183 | toread = size; |
Andreas Mohr | 1c99af4 | 2000-12-03 04:02:09 +0000 | [diff] [blame] | 184 | while (toread) |
| 185 | { |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 186 | long res = pread( fd, buffer + sec[i].SizeOfRawData - toread, toread, read_pos ); |
Andreas Mohr | 1c99af4 | 2000-12-03 04:02:09 +0000 | [diff] [blame] | 187 | if (res <= 0) goto error; |
| 188 | toread -= res; |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 189 | read_pos += res; |
Andreas Mohr | 1c99af4 | 2000-12-03 04:02:09 +0000 | [diff] [blame] | 190 | } |
Alexandre Julliard | 4ebd2fc | 2005-08-15 14:50:06 +0000 | [diff] [blame] | 191 | if (pwrite( shared_fd, buffer, size, write_pos ) != size) goto error; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 192 | } |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 193 | free( buffer ); |
| 194 | return 1; |
| 195 | |
| 196 | error: |
Alexandre Julliard | ca18f15 | 2002-04-20 21:07:24 +0000 | [diff] [blame] | 197 | release_object( mapping->shared_file ); |
| 198 | mapping->shared_file = NULL; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 199 | if (buffer) free( buffer ); |
| 200 | return 0; |
| 201 | } |
| 202 | |
| 203 | /* retrieve the mapping parameters for an executable (PE) image */ |
| 204 | static int get_image_params( struct mapping *mapping ) |
| 205 | { |
| 206 | IMAGE_DOS_HEADER dos; |
| 207 | IMAGE_NT_HEADERS nt; |
| 208 | IMAGE_SECTION_HEADER *sec = NULL; |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 209 | struct fd *fd; |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 210 | off_t pos; |
Marcus Meissner | 4b811d9 | 2005-10-31 21:03:05 +0000 | [diff] [blame] | 211 | int unix_fd, size, toread; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 212 | |
| 213 | /* load the headers */ |
| 214 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 215 | if (!(fd = mapping_get_fd( &mapping->obj ))) return 0; |
Alexandre Julliard | 964815b | 2005-08-08 15:11:03 +0000 | [diff] [blame] | 216 | if ((unix_fd = get_unix_fd( fd )) == -1) goto error; |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 217 | if (pread( unix_fd, &dos, sizeof(dos), 0 ) != sizeof(dos)) goto error; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 218 | if (dos.e_magic != IMAGE_DOS_SIGNATURE) goto error; |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 219 | pos = dos.e_lfanew; |
Dmitry Timoshkov | 1467bbd | 2002-08-27 00:34:41 +0000 | [diff] [blame] | 220 | |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 221 | if (pread( unix_fd, &nt.Signature, sizeof(nt.Signature), pos ) != sizeof(nt.Signature)) |
| 222 | goto error; |
| 223 | pos += sizeof(nt.Signature); |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 224 | if (nt.Signature != IMAGE_NT_SIGNATURE) goto error; |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 225 | if (pread( unix_fd, &nt.FileHeader, sizeof(nt.FileHeader), pos ) != sizeof(nt.FileHeader)) |
| 226 | goto error; |
| 227 | pos += sizeof(nt.FileHeader); |
Dmitry Timoshkov | 1467bbd | 2002-08-27 00:34:41 +0000 | [diff] [blame] | 228 | /* zero out Optional header in the case it's not present or partial */ |
| 229 | memset(&nt.OptionalHeader, 0, sizeof(nt.OptionalHeader)); |
Marcus Meissner | 4b811d9 | 2005-10-31 21:03:05 +0000 | [diff] [blame] | 230 | toread = min( sizeof(nt.OptionalHeader), nt.FileHeader.SizeOfOptionalHeader ); |
| 231 | if (pread( unix_fd, &nt.OptionalHeader, toread, pos ) != toread) goto error; |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 232 | pos += nt.FileHeader.SizeOfOptionalHeader; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 233 | |
| 234 | /* load the section headers */ |
| 235 | |
| 236 | size = sizeof(*sec) * nt.FileHeader.NumberOfSections; |
| 237 | if (!(sec = malloc( size ))) goto error; |
Alexandre Julliard | 72f87b8 | 2004-05-01 02:50:06 +0000 | [diff] [blame] | 238 | if (pread( unix_fd, sec, size, pos ) != size) goto error; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 239 | |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 240 | if (!build_shared_mapping( mapping, unix_fd, sec, nt.FileHeader.NumberOfSections )) goto error; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 241 | |
Alexandre Julliard | bb82cbb | 2005-07-07 12:04:55 +0000 | [diff] [blame] | 242 | if (mapping->shared_file) list_add_head( &shared_list, &mapping->shared_entry ); |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 243 | |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 244 | mapping->size = ROUND_SIZE( nt.OptionalHeader.SizeOfImage ); |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 245 | mapping->base = (void *)nt.OptionalHeader.ImageBase; |
Alexandre Julliard | d59fa77 | 2006-04-21 16:16:11 +0200 | [diff] [blame] | 246 | mapping->header_size = pos + size; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 247 | mapping->protect = VPROT_IMAGE; |
| 248 | |
| 249 | /* sanity check */ |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 250 | if (mapping->header_size > mapping->size) goto error; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 251 | |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 252 | free( sec ); |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 253 | release_object( fd ); |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 254 | return 1; |
| 255 | |
| 256 | error: |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 257 | if (sec) free( sec ); |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 258 | release_object( fd ); |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 259 | set_error( STATUS_INVALID_FILE_FOR_SECTION ); |
| 260 | return 0; |
| 261 | } |
| 262 | |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 263 | /* get the size of the unix file associated with the mapping */ |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 264 | inline static int get_file_size( struct file *file, file_pos_t *size ) |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 265 | { |
| 266 | struct stat st; |
Alexandre Julliard | d0e4a76 | 2003-02-17 01:50:40 +0000 | [diff] [blame] | 267 | int unix_fd = get_file_unix_fd( file ); |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 268 | |
Alexandre Julliard | 964815b | 2005-08-08 15:11:03 +0000 | [diff] [blame] | 269 | if (unix_fd == -1 || fstat( unix_fd, &st ) == -1) return 0; |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 270 | *size = st.st_size; |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 271 | return 1; |
| 272 | } |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 273 | |
Vitaliy Margolen | 348a3d9 | 2005-12-02 16:13:13 +0100 | [diff] [blame] | 274 | static struct object *create_mapping( struct directory *root, const struct unicode_str *name, |
| 275 | unsigned int attr, file_pos_t size, int protect, |
| 276 | obj_handle_t handle ) |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 277 | { |
| 278 | struct mapping *mapping; |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 279 | int access = 0; |
| 280 | |
| 281 | if (!page_mask) init_page_size(); |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 282 | |
Vitaliy Margolen | 348a3d9 | 2005-12-02 16:13:13 +0100 | [diff] [blame] | 283 | if (!(mapping = create_named_object_dir( root, name, attr, &mapping_ops ))) |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 284 | return NULL; |
Vitaliy Margolen | 893987b | 2005-11-21 16:27:03 +0000 | [diff] [blame] | 285 | if (get_error() == STATUS_OBJECT_NAME_EXISTS) |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 286 | return &mapping->obj; /* Nothing else to do */ |
| 287 | |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 288 | mapping->header_size = 0; |
| 289 | mapping->base = NULL; |
| 290 | mapping->shared_file = NULL; |
| 291 | mapping->shared_size = 0; |
| 292 | |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 293 | if (protect & VPROT_READ) access |= FILE_READ_DATA; |
| 294 | if (protect & VPROT_WRITE) access |= FILE_WRITE_DATA; |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 295 | |
Alexandre Julliard | 8081e5a | 2001-01-05 04:08:07 +0000 | [diff] [blame] | 296 | if (handle) |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 297 | { |
| 298 | if (!(mapping->file = get_file_obj( current->process, handle, access ))) goto error; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 299 | if (protect & VPROT_IMAGE) |
| 300 | { |
| 301 | if (!get_image_params( mapping )) goto error; |
| 302 | return &mapping->obj; |
| 303 | } |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 304 | if (!size) |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 305 | { |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 306 | if (!get_file_size( mapping->file, &size )) goto error; |
| 307 | if (!size) |
Mike McCormack | dc82769 | 2004-01-09 00:34:14 +0000 | [diff] [blame] | 308 | { |
Alexandre Julliard | 2017555 | 2005-12-12 13:38:43 +0100 | [diff] [blame] | 309 | set_error( STATUS_MAPPED_FILE_SIZE_ZERO ); |
Mike McCormack | dc82769 | 2004-01-09 00:34:14 +0000 | [diff] [blame] | 310 | goto error; |
| 311 | } |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 312 | } |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 313 | else |
| 314 | { |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 315 | if (!grow_file( mapping->file, size )) goto error; |
Alexandre Julliard | cf27a7f | 2003-02-14 20:27:09 +0000 | [diff] [blame] | 316 | } |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 317 | } |
| 318 | else /* Anonymous mapping (no associated file) */ |
| 319 | { |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 320 | if (!size || (protect & VPROT_IMAGE)) |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 321 | { |
Alexandre Julliard | cb1fc73 | 2000-01-24 21:58:06 +0000 | [diff] [blame] | 322 | set_error( STATUS_INVALID_PARAMETER ); |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 323 | mapping->file = NULL; |
| 324 | goto error; |
| 325 | } |
| 326 | if (!(mapping->file = create_temp_file( access ))) goto error; |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 327 | if (!grow_file( mapping->file, size )) goto error; |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 328 | } |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 329 | mapping->size = (size + page_mask) & ~((file_pos_t)page_mask); |
| 330 | mapping->protect = protect; |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 331 | return &mapping->obj; |
Alexandre Julliard | cb28bdc | 1999-02-28 10:13:59 +0000 | [diff] [blame] | 332 | |
| 333 | error: |
| 334 | release_object( mapping ); |
| 335 | return NULL; |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 336 | } |
| 337 | |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 338 | static void mapping_dump( struct object *obj, int verbose ) |
| 339 | { |
| 340 | struct mapping *mapping = (struct mapping *)obj; |
| 341 | assert( obj->ops == &mapping_ops ); |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 342 | fprintf( stderr, "Mapping size=%08x%08x prot=%08x file=%p header_size=%08x base=%p " |
| 343 | "shared_file=%p shared_size=%08x ", |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 344 | (unsigned int)(mapping->size >> 32), (unsigned int)mapping->size, |
| 345 | mapping->protect, mapping->file, mapping->header_size, |
| 346 | mapping->base, mapping->shared_file, mapping->shared_size ); |
Alexandre Julliard | d16319c | 1999-11-25 21:30:24 +0000 | [diff] [blame] | 347 | dump_object_name( &mapping->obj ); |
| 348 | fputc( '\n', stderr ); |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 349 | } |
| 350 | |
Alexandre Julliard | e66207e | 2003-02-19 00:33:32 +0000 | [diff] [blame] | 351 | static struct fd *mapping_get_fd( struct object *obj ) |
| 352 | { |
| 353 | struct mapping *mapping = (struct mapping *)obj; |
| 354 | return get_obj_fd( (struct object *)mapping->file ); |
| 355 | } |
| 356 | |
Alexandre Julliard | a510a7e | 2005-12-12 16:46:17 +0100 | [diff] [blame] | 357 | static unsigned int mapping_map_access( struct object *obj, unsigned int access ) |
| 358 | { |
| 359 | if (access & GENERIC_READ) access |= STANDARD_RIGHTS_READ | SECTION_QUERY | SECTION_MAP_READ; |
| 360 | if (access & GENERIC_WRITE) access |= STANDARD_RIGHTS_WRITE | SECTION_MAP_WRITE; |
| 361 | if (access & GENERIC_EXECUTE) access |= STANDARD_RIGHTS_EXECUTE | SECTION_MAP_EXECUTE; |
| 362 | if (access & GENERIC_ALL) access |= SECTION_ALL_ACCESS; |
| 363 | return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL); |
| 364 | } |
| 365 | |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 366 | static void mapping_destroy( struct object *obj ) |
| 367 | { |
| 368 | struct mapping *mapping = (struct mapping *)obj; |
| 369 | assert( obj->ops == &mapping_ops ); |
| 370 | if (mapping->file) release_object( mapping->file ); |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 371 | if (mapping->shared_file) |
| 372 | { |
| 373 | release_object( mapping->shared_file ); |
Alexandre Julliard | bb82cbb | 2005-07-07 12:04:55 +0000 | [diff] [blame] | 374 | list_remove( &mapping->shared_entry ); |
Alexandre Julliard | 84fdfd0 | 2001-04-13 22:38:39 +0000 | [diff] [blame] | 375 | } |
Alexandre Julliard | a8b8d9c | 1999-01-01 16:59:27 +0000 | [diff] [blame] | 376 | } |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 377 | |
Alexandre Julliard | c76ad35 | 1999-11-13 19:49:05 +0000 | [diff] [blame] | 378 | int get_page_size(void) |
| 379 | { |
| 380 | if (!page_mask) init_page_size(); |
| 381 | return page_mask + 1; |
| 382 | } |
| 383 | |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 384 | /* create a file mapping */ |
| 385 | DECL_HANDLER(create_mapping) |
| 386 | { |
| 387 | struct object *obj; |
Alexandre Julliard | ead9b06 | 2005-11-18 16:31:18 +0000 | [diff] [blame] | 388 | struct unicode_str name; |
Vitaliy Margolen | 348a3d9 | 2005-12-02 16:13:13 +0100 | [diff] [blame] | 389 | struct directory *root = NULL; |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 390 | file_pos_t size = ((file_pos_t)req->size_high << 32) | req->size_low; |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 391 | |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 392 | reply->handle = 0; |
Alexandre Julliard | ead9b06 | 2005-11-18 16:31:18 +0000 | [diff] [blame] | 393 | get_req_unicode_str( &name ); |
Vitaliy Margolen | 348a3d9 | 2005-12-02 16:13:13 +0100 | [diff] [blame] | 394 | if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 ))) |
| 395 | return; |
| 396 | |
| 397 | if ((obj = create_mapping( root, &name, req->attributes, size, req->protect, req->file_handle ))) |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 398 | { |
Alexandre Julliard | 24560e7 | 2005-12-09 13:58:25 +0100 | [diff] [blame] | 399 | reply->handle = alloc_handle( current->process, obj, req->access, req->attributes ); |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 400 | release_object( obj ); |
| 401 | } |
Vitaliy Margolen | 348a3d9 | 2005-12-02 16:13:13 +0100 | [diff] [blame] | 402 | |
| 403 | if (root) release_object( root ); |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | /* open a handle to a mapping */ |
| 407 | DECL_HANDLER(open_mapping) |
| 408 | { |
Alexandre Julliard | ead9b06 | 2005-11-18 16:31:18 +0000 | [diff] [blame] | 409 | struct unicode_str name; |
Vitaliy Margolen | 348a3d9 | 2005-12-02 16:13:13 +0100 | [diff] [blame] | 410 | struct directory *root = NULL; |
Alexandre Julliard | 3764da6 | 2005-12-05 12:52:05 +0100 | [diff] [blame] | 411 | struct mapping *mapping; |
Alexandre Julliard | ead9b06 | 2005-11-18 16:31:18 +0000 | [diff] [blame] | 412 | |
| 413 | get_req_unicode_str( &name ); |
Vitaliy Margolen | 348a3d9 | 2005-12-02 16:13:13 +0100 | [diff] [blame] | 414 | if (req->rootdir && !(root = get_directory_obj( current->process, req->rootdir, 0 ))) |
| 415 | return; |
| 416 | |
Alexandre Julliard | 3764da6 | 2005-12-05 12:52:05 +0100 | [diff] [blame] | 417 | if ((mapping = open_object_dir( root, &name, req->attributes, &mapping_ops ))) |
| 418 | { |
Alexandre Julliard | 24560e7 | 2005-12-09 13:58:25 +0100 | [diff] [blame] | 419 | reply->handle = alloc_handle( current->process, &mapping->obj, req->access, req->attributes ); |
Alexandre Julliard | 3764da6 | 2005-12-05 12:52:05 +0100 | [diff] [blame] | 420 | release_object( mapping ); |
| 421 | } |
Vitaliy Margolen | 348a3d9 | 2005-12-02 16:13:13 +0100 | [diff] [blame] | 422 | |
| 423 | if (root) release_object( root ); |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | /* get a mapping information */ |
| 427 | DECL_HANDLER(get_mapping_info) |
| 428 | { |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 429 | struct mapping *mapping; |
| 430 | |
| 431 | if ((mapping = (struct mapping *)get_handle_obj( current->process, req->handle, |
| 432 | 0, &mapping_ops ))) |
| 433 | { |
Alexandre Julliard | a4334a6 | 2005-04-19 11:59:13 +0000 | [diff] [blame] | 434 | reply->size_high = (unsigned int)(mapping->size >> 32); |
| 435 | reply->size_low = (unsigned int)mapping->size; |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 436 | reply->protect = mapping->protect; |
| 437 | reply->header_size = mapping->header_size; |
| 438 | reply->base = mapping->base; |
| 439 | reply->shared_file = 0; |
| 440 | reply->shared_size = mapping->shared_size; |
Alexandre Julliard | c19e1a7 | 2000-08-14 20:20:01 +0000 | [diff] [blame] | 441 | if (mapping->shared_file) |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 442 | reply->shared_file = alloc_handle( current->process, mapping->shared_file, |
| 443 | GENERIC_READ|GENERIC_WRITE, 0 ); |
Alexandre Julliard | ebe29ef | 1999-06-26 08:43:26 +0000 | [diff] [blame] | 444 | release_object( mapping ); |
| 445 | } |
Alexandre Julliard | 43c190e | 1999-05-15 10:48:19 +0000 | [diff] [blame] | 446 | } |