2 * Server-side file mapping management
4 * Copyright (C) 1999 Alexandre Julliard
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.
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.
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
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 #include <sys/types.h>
34 #define WIN32_NO_STATUS
46 /* list of memory ranges, used to store committed info */
49 struct object obj
; /* object header */
50 unsigned int count
; /* number of used ranges */
51 unsigned int max
; /* number of allocated ranges */
59 static void ranges_dump( struct object
*obj
, int verbose
);
60 static void ranges_destroy( struct object
*obj
);
62 static const struct object_ops ranges_ops
=
64 sizeof(struct ranges
), /* size */
66 ranges_dump
, /* dump */
67 no_add_queue
, /* add_queue */
68 NULL
, /* remove_queue */
71 no_signal
, /* signal */
72 no_get_fd
, /* get_fd */
73 default_map_access
, /* map_access */
74 default_get_sd
, /* get_sd */
75 default_set_sd
, /* set_sd */
76 no_get_full_name
, /* get_full_name */
77 no_lookup_name
, /* lookup_name */
78 no_link_name
, /* link_name */
79 NULL
, /* unlink_name */
80 no_open_file
, /* open_file */
81 no_kernel_obj_list
, /* get_kernel_obj_list */
82 no_close_handle
, /* close_handle */
83 ranges_destroy
/* destroy */
86 /* file backing the shared sections of a PE image mapping */
89 struct object obj
; /* object header */
90 struct fd
*fd
; /* file descriptor of the mapped PE file */
91 struct file
*file
; /* temp file holding the shared data */
92 struct list entry
; /* entry in global shared maps list */
95 static void shared_map_dump( struct object
*obj
, int verbose
);
96 static void shared_map_destroy( struct object
*obj
);
98 static const struct object_ops shared_map_ops
=
100 sizeof(struct shared_map
), /* size */
102 shared_map_dump
, /* dump */
103 no_add_queue
, /* add_queue */
104 NULL
, /* remove_queue */
106 NULL
, /* satisfied */
107 no_signal
, /* signal */
108 no_get_fd
, /* get_fd */
109 default_map_access
, /* map_access */
110 default_get_sd
, /* get_sd */
111 default_set_sd
, /* set_sd */
112 no_get_full_name
, /* get_full_name */
113 no_lookup_name
, /* lookup_name */
114 no_link_name
, /* link_name */
115 NULL
, /* unlink_name */
116 no_open_file
, /* open_file */
117 no_kernel_obj_list
, /* get_kernel_obj_list */
118 no_close_handle
, /* close_handle */
119 shared_map_destroy
/* destroy */
122 static struct list shared_map_list
= LIST_INIT( shared_map_list
);
124 /* memory view mapped in client address space */
127 struct list entry
; /* entry in per-process view list */
128 struct fd
*fd
; /* fd for mapped file */
129 struct ranges
*committed
; /* list of committed ranges in this mapping */
130 struct shared_map
*shared
; /* temp file for shared PE mapping */
131 pe_image_info_t image
; /* image info (for PE image mapping) */
132 unsigned int flags
; /* SEC_* flags */
133 client_ptr_t base
; /* view base address (in process addr space) */
134 mem_size_t size
; /* view size */
135 file_pos_t start
; /* start offset in mapping */
137 WCHAR name
[1]; /* filename for .so dll image views */
141 static const WCHAR mapping_name
[] = {'S','e','c','t','i','o','n'};
143 struct type_descr mapping_type
=
145 { mapping_name
, sizeof(mapping_name
) }, /* name */
146 SECTION_ALL_ACCESS
| SYNCHRONIZE
, /* valid_access */
148 STANDARD_RIGHTS_READ
| SECTION_QUERY
| SECTION_MAP_READ
,
149 STANDARD_RIGHTS_WRITE
| SECTION_MAP_WRITE
,
150 STANDARD_RIGHTS_EXECUTE
| SECTION_MAP_EXECUTE
,
157 struct object obj
; /* object header */
158 mem_size_t size
; /* mapping size */
159 unsigned int flags
; /* SEC_* flags */
160 struct fd
*fd
; /* fd for mapped file */
161 pe_image_info_t image
; /* image info (for PE image mapping) */
162 struct ranges
*committed
; /* list of committed ranges in this mapping */
163 struct shared_map
*shared
; /* temp file for shared PE mapping */
166 static void mapping_dump( struct object
*obj
, int verbose
);
167 static struct fd
*mapping_get_fd( struct object
*obj
);
168 static void mapping_destroy( struct object
*obj
);
169 static enum server_fd_type
mapping_get_fd_type( struct fd
*fd
);
171 static const struct object_ops mapping_ops
=
173 sizeof(struct mapping
), /* size */
174 &mapping_type
, /* type */
175 mapping_dump
, /* dump */
176 no_add_queue
, /* add_queue */
177 NULL
, /* remove_queue */
179 NULL
, /* satisfied */
180 no_signal
, /* signal */
181 mapping_get_fd
, /* get_fd */
182 default_map_access
, /* map_access */
183 default_get_sd
, /* get_sd */
184 default_set_sd
, /* set_sd */
185 default_get_full_name
, /* get_full_name */
186 no_lookup_name
, /* lookup_name */
187 directory_link_name
, /* link_name */
188 default_unlink_name
, /* unlink_name */
189 no_open_file
, /* open_file */
190 no_kernel_obj_list
, /* get_kernel_obj_list */
191 no_close_handle
, /* close_handle */
192 mapping_destroy
/* destroy */
195 static const struct fd_ops mapping_fd_ops
=
197 default_fd_get_poll_events
, /* get_poll_events */
198 default_poll_event
, /* poll_event */
199 mapping_get_fd_type
, /* get_fd_type */
200 no_fd_read
, /* read */
201 no_fd_write
, /* write */
202 no_fd_flush
, /* flush */
203 no_fd_get_file_info
, /* get_file_info */
204 no_fd_get_volume_info
, /* get_volume_info */
205 no_fd_ioctl
, /* ioctl */
206 default_fd_cancel_async
, /* cancel_async */
207 no_fd_queue_async
, /* queue_async */
208 default_fd_reselect_async
/* reselect_async */
211 static size_t page_mask
;
213 #define ROUND_SIZE(size) (((size) + page_mask) & ~page_mask)
216 static void ranges_dump( struct object
*obj
, int verbose
)
218 struct ranges
*ranges
= (struct ranges
*)obj
;
219 fprintf( stderr
, "Memory ranges count=%u\n", ranges
->count
);
222 static void ranges_destroy( struct object
*obj
)
224 struct ranges
*ranges
= (struct ranges
*)obj
;
225 free( ranges
->ranges
);
228 static void shared_map_dump( struct object
*obj
, int verbose
)
230 struct shared_map
*shared
= (struct shared_map
*)obj
;
231 fprintf( stderr
, "Shared mapping fd=%p file=%p\n", shared
->fd
, shared
->file
);
234 static void shared_map_destroy( struct object
*obj
)
236 struct shared_map
*shared
= (struct shared_map
*)obj
;
238 release_object( shared
->fd
);
239 release_object( shared
->file
);
240 list_remove( &shared
->entry
);
243 /* extend a file beyond the current end of file */
244 int grow_file( int unix_fd
, file_pos_t new_size
)
246 static const char zero
;
247 off_t size
= new_size
;
249 if (sizeof(new_size
) > sizeof(size
) && size
!= new_size
)
251 set_error( STATUS_INVALID_PARAMETER
);
254 /* extend the file one byte beyond the requested size and then truncate it */
255 /* this should work around ftruncate implementations that can't extend files */
256 if (pwrite( unix_fd
, &zero
, 1, size
) != -1)
258 ftruncate( unix_fd
, size
);
265 /* simplified version of mkstemps() */
266 static int make_temp_file( char name
[16] )
268 static unsigned int value
;
271 value
+= (current_time
>> 16) + current_time
;
272 for (i
= 0; i
< 0x8000 && fd
< 0; i
++, value
+= 7777)
274 sprintf( name
, "tmpmap-%08x", value
);
275 fd
= open( name
, O_RDWR
| O_CREAT
| O_EXCL
, 0600 );
280 /* check if the current directory allows exec mappings */
281 static int check_current_dir_for_exec(void)
285 void *ret
= MAP_FAILED
;
287 fd
= make_temp_file( tmpfn
);
288 if (fd
== -1) return 0;
289 if (grow_file( fd
, 1 ))
291 ret
= mmap( NULL
, get_page_size(), PROT_READ
| PROT_EXEC
, MAP_PRIVATE
, fd
, 0 );
292 if (ret
!= MAP_FAILED
) munmap( ret
, get_page_size() );
296 return (ret
!= MAP_FAILED
);
299 /* create a temp file for anonymous mappings */
300 static int create_temp_file( file_pos_t size
)
302 static int temp_dir_fd
= -1;
306 if (temp_dir_fd
== -1)
308 temp_dir_fd
= server_dir_fd
;
309 if (!check_current_dir_for_exec())
311 /* the server dir is noexec, try the config dir instead */
312 fchdir( config_dir_fd
);
313 if (check_current_dir_for_exec())
314 temp_dir_fd
= config_dir_fd
;
315 else /* neither works, fall back to server dir */
316 fchdir( server_dir_fd
);
319 else if (temp_dir_fd
!= server_dir_fd
) fchdir( temp_dir_fd
);
321 fd
= make_temp_file( tmpfn
);
324 if (!grow_file( fd
, size
))
331 else file_set_error();
333 if (temp_dir_fd
!= server_dir_fd
) fchdir( server_dir_fd
);
337 /* find a memory view from its base address */
338 struct memory_view
*find_mapped_view( struct process
*process
, client_ptr_t base
)
340 struct memory_view
*view
;
342 LIST_FOR_EACH_ENTRY( view
, &process
->views
, struct memory_view
, entry
)
343 if (view
->base
== base
) return view
;
345 set_error( STATUS_NOT_MAPPED_VIEW
);
349 /* find a memory view from any address inside it */
350 static struct memory_view
*find_mapped_addr( struct process
*process
, client_ptr_t addr
)
352 struct memory_view
*view
;
354 LIST_FOR_EACH_ENTRY( view
, &process
->views
, struct memory_view
, entry
)
355 if (addr
>= view
->base
&& addr
< view
->base
+ view
->size
) return view
;
357 set_error( STATUS_NOT_MAPPED_VIEW
);
361 /* get the main exe memory view */
362 struct memory_view
*get_exe_view( struct process
*process
)
364 return LIST_ENTRY( list_head( &process
->views
), struct memory_view
, entry
);
367 static void set_process_machine( struct process
*process
, struct memory_view
*view
)
369 unsigned short machine
= view
->image
.machine
;
371 if (machine
== IMAGE_FILE_MACHINE_I386
&& (view
->image
.image_flags
& IMAGE_FLAGS_ComPlusNativeReady
))
373 if (is_machine_supported( IMAGE_FILE_MACHINE_AMD64
)) machine
= IMAGE_FILE_MACHINE_AMD64
;
374 else if (is_machine_supported( IMAGE_FILE_MACHINE_ARM64
)) machine
= IMAGE_FILE_MACHINE_ARM64
;
376 process
->machine
= machine
;
379 static int generate_dll_event( struct thread
*thread
, int code
, struct memory_view
*view
)
381 unsigned short process_machine
= thread
->process
->machine
;
383 if (!(view
->flags
& SEC_IMAGE
)) return 0;
384 if (process_machine
!= native_machine
&& process_machine
!= view
->image
.machine
) return 0;
385 generate_debug_event( thread
, code
, view
);
389 /* add a view to the process list */
390 static void add_process_view( struct thread
*thread
, struct memory_view
*view
)
392 struct process
*process
= thread
->process
;
393 struct unicode_str name
;
395 if (view
->flags
& SEC_IMAGE
)
397 if (is_process_init_done( process
))
399 generate_dll_event( thread
, DbgLoadDllStateChange
, view
);
401 else if (!(view
->image
.image_charact
& IMAGE_FILE_DLL
))
404 set_process_machine( process
, view
);
405 list_add_head( &process
->views
, &view
->entry
);
407 free( process
->image
);
408 process
->image
= NULL
;
409 if (get_view_nt_name( view
, &name
) && (process
->image
= memdup( name
.str
, name
.len
)))
410 process
->imagelen
= name
.len
;
411 process
->image_info
= view
->image
;
415 list_add_tail( &process
->views
, &view
->entry
);
418 static void free_memory_view( struct memory_view
*view
)
420 if (view
->fd
) release_object( view
->fd
);
421 if (view
->committed
) release_object( view
->committed
);
422 if (view
->shared
) release_object( view
->shared
);
423 list_remove( &view
->entry
);
427 /* free all mapped views at process exit */
428 void free_mapped_views( struct process
*process
)
432 while ((ptr
= list_head( &process
->views
)))
433 free_memory_view( LIST_ENTRY( ptr
, struct memory_view
, entry
));
436 /* find the shared PE mapping for a given mapping */
437 static struct shared_map
*get_shared_file( struct fd
*fd
)
439 struct shared_map
*ptr
;
441 LIST_FOR_EACH_ENTRY( ptr
, &shared_map_list
, struct shared_map
, entry
)
442 if (is_same_file_fd( ptr
->fd
, fd
))
443 return (struct shared_map
*)grab_object( ptr
);
447 /* return the size of the memory mapping and file range of a given section */
448 static inline void get_section_sizes( const IMAGE_SECTION_HEADER
*sec
, size_t *map_size
,
449 off_t
*file_start
, size_t *file_size
)
451 static const unsigned int sector_align
= 0x1ff;
453 if (!sec
->Misc
.VirtualSize
) *map_size
= ROUND_SIZE( sec
->SizeOfRawData
);
454 else *map_size
= ROUND_SIZE( sec
->Misc
.VirtualSize
);
456 *file_start
= sec
->PointerToRawData
& ~sector_align
;
457 *file_size
= (sec
->SizeOfRawData
+ (sec
->PointerToRawData
& sector_align
) + sector_align
) & ~sector_align
;
458 if (*file_size
> *map_size
) *file_size
= *map_size
;
461 /* add a range to the committed list */
462 static void add_committed_range( struct memory_view
*view
, file_pos_t start
, file_pos_t end
)
465 struct ranges
*committed
= view
->committed
;
466 struct range
*ranges
;
468 if ((start
& page_mask
) || (end
& page_mask
) ||
469 start
>= view
->size
|| end
>= view
->size
||
472 set_error( STATUS_INVALID_PARAMETER
);
476 if (!committed
) return; /* everything committed already */
478 start
+= view
->start
;
481 for (i
= 0, ranges
= committed
->ranges
; i
< committed
->count
; i
++)
483 if (ranges
[i
].start
> end
) break;
484 if (ranges
[i
].end
< start
) continue;
485 if (ranges
[i
].start
> start
) ranges
[i
].start
= start
; /* extend downwards */
486 if (ranges
[i
].end
< end
) /* extend upwards and maybe merge with next */
488 for (j
= i
+ 1; j
< committed
->count
; j
++)
490 if (ranges
[j
].start
> end
) break;
491 if (ranges
[j
].end
> end
) end
= ranges
[j
].end
;
495 memmove( &ranges
[i
+ 1], &ranges
[j
], (committed
->count
- j
) * sizeof(*ranges
) );
496 committed
->count
-= j
- (i
+ 1);
503 /* now add a new range */
505 if (committed
->count
== committed
->max
)
507 unsigned int new_size
= committed
->max
* 2;
508 struct range
*new_ptr
= realloc( committed
->ranges
, new_size
* sizeof(*new_ptr
) );
509 if (!new_ptr
) return;
510 committed
->max
= new_size
;
511 ranges
= committed
->ranges
= new_ptr
;
513 memmove( &ranges
[i
+ 1], &ranges
[i
], (committed
->count
- i
) * sizeof(*ranges
) );
514 ranges
[i
].start
= start
;
519 /* find the range containing start and return whether it's committed */
520 static int find_committed_range( struct memory_view
*view
, file_pos_t start
, mem_size_t
*size
)
523 struct ranges
*committed
= view
->committed
;
524 struct range
*ranges
;
526 if ((start
& page_mask
) || start
>= view
->size
)
528 set_error( STATUS_INVALID_PARAMETER
);
531 if (!committed
) /* everything is committed */
533 *size
= view
->size
- start
;
536 for (i
= 0, ranges
= committed
->ranges
; i
< committed
->count
; i
++)
538 if (ranges
[i
].start
> view
->start
+ start
)
540 *size
= min( ranges
[i
].start
, view
->start
+ view
->size
) - (view
->start
+ start
);
543 if (ranges
[i
].end
> view
->start
+ start
)
545 *size
= min( ranges
[i
].end
, view
->start
+ view
->size
) - (view
->start
+ start
);
549 *size
= view
->size
- start
;
553 /* allocate and fill the temp file for a shared PE image mapping */
554 static int build_shared_mapping( struct mapping
*mapping
, int fd
,
555 IMAGE_SECTION_HEADER
*sec
, unsigned int nb_sec
)
557 struct shared_map
*shared
;
560 mem_size_t total_size
;
561 size_t file_size
, map_size
, max_size
;
562 off_t shared_pos
, read_pos
, write_pos
;
567 /* compute the total size of the shared mapping */
569 total_size
= max_size
= 0;
570 for (i
= 0; i
< nb_sec
; i
++)
572 if ((sec
[i
].Characteristics
& IMAGE_SCN_MEM_SHARED
) &&
573 (sec
[i
].Characteristics
& IMAGE_SCN_MEM_WRITE
))
575 get_section_sizes( &sec
[i
], &map_size
, &read_pos
, &file_size
);
576 if (file_size
> max_size
) max_size
= file_size
;
577 total_size
+= map_size
;
580 if (!total_size
) return 1; /* nothing to do */
582 if ((mapping
->shared
= get_shared_file( mapping
->fd
))) return 1;
584 /* create a temp file for the mapping */
586 if ((shared_fd
= create_temp_file( total_size
)) == -1) return 0;
587 if (!(file
= create_file_for_fd( shared_fd
, FILE_GENERIC_READ
|FILE_GENERIC_WRITE
, 0 ))) return 0;
589 if (!(buffer
= malloc( max_size
))) goto error
;
591 /* copy the shared sections data into the temp file */
594 for (i
= 0; i
< nb_sec
; i
++)
596 if (!(sec
[i
].Characteristics
& IMAGE_SCN_MEM_SHARED
)) continue;
597 if (!(sec
[i
].Characteristics
& IMAGE_SCN_MEM_WRITE
)) continue;
598 get_section_sizes( &sec
[i
], &map_size
, &read_pos
, &file_size
);
599 write_pos
= shared_pos
;
600 shared_pos
+= map_size
;
601 if (!sec
[i
].PointerToRawData
|| !file_size
) continue;
605 long res
= pread( fd
, buffer
+ file_size
- toread
, toread
, read_pos
);
606 if (!res
&& toread
< 0x200) /* partial sector at EOF is not an error */
611 if (res
<= 0) goto error
;
615 if (pwrite( shared_fd
, buffer
, file_size
, write_pos
) != file_size
) goto error
;
618 if (!(shared
= alloc_object( &shared_map_ops
))) goto error
;
619 shared
->fd
= (struct fd
*)grab_object( mapping
->fd
);
621 list_add_head( &shared_map_list
, &shared
->entry
);
622 mapping
->shared
= shared
;
627 release_object( file
);
632 /* load the CLR header from its section */
633 static int load_clr_header( IMAGE_COR20_HEADER
*hdr
, size_t va
, size_t size
, int unix_fd
,
634 IMAGE_SECTION_HEADER
*sec
, unsigned int nb_sec
)
637 size_t map_size
, file_size
;
641 if (!va
|| !size
) return 0;
643 for (i
= 0; i
< nb_sec
; i
++)
645 if (va
< sec
[i
].VirtualAddress
) continue;
646 if (sec
[i
].Misc
.VirtualSize
&& va
- sec
[i
].VirtualAddress
>= sec
[i
].Misc
.VirtualSize
) continue;
647 get_section_sizes( &sec
[i
], &map_size
, &file_start
, &file_size
);
648 if (size
>= map_size
) continue;
649 if (va
- sec
[i
].VirtualAddress
>= map_size
- size
) continue;
650 file_size
= min( file_size
, map_size
);
651 size
= min( size
, sizeof(*hdr
) );
652 ret
= pread( unix_fd
, hdr
, min( size
, file_size
), file_start
+ va
- sec
[i
].VirtualAddress
);
654 if (ret
< sizeof(*hdr
)) memset( (char *)hdr
+ ret
, 0, sizeof(*hdr
) - ret
);
655 return (hdr
->MajorRuntimeVersion
> COR_VERSION_MAJOR_V2
||
656 (hdr
->MajorRuntimeVersion
== COR_VERSION_MAJOR_V2
&&
657 hdr
->MinorRuntimeVersion
>= COR_VERSION_MINOR
));
662 /* retrieve the mapping parameters for an executable (PE) image */
663 static unsigned int get_image_params( struct mapping
*mapping
, file_pos_t file_size
, int unix_fd
)
665 static const char builtin_signature
[] = "Wine builtin DLL";
666 static const char fakedll_signature
[] = "Wine placeholder DLL";
668 IMAGE_COR20_HEADER clr
;
669 IMAGE_SECTION_HEADER sec
[96];
672 IMAGE_DOS_HEADER dos
;
678 IMAGE_FILE_HEADER FileHeader
;
681 IMAGE_OPTIONAL_HEADER32 hdr32
;
682 IMAGE_OPTIONAL_HEADER64 hdr64
;
687 size_t mz_size
, clr_va
, clr_size
;
690 /* load the headers */
692 if (!file_size
) return STATUS_INVALID_FILE_FOR_SECTION
;
693 size
= pread( unix_fd
, &mz
, sizeof(mz
), 0 );
694 if (size
< sizeof(mz
.dos
)) return STATUS_INVALID_IMAGE_NOT_MZ
;
695 if (mz
.dos
.e_magic
!= IMAGE_DOS_SIGNATURE
) return STATUS_INVALID_IMAGE_NOT_MZ
;
697 pos
= mz
.dos
.e_lfanew
;
699 size
= pread( unix_fd
, &nt
, sizeof(nt
), pos
);
700 if (size
< sizeof(nt
.Signature
) + sizeof(nt
.FileHeader
)) return STATUS_INVALID_IMAGE_PROTECT
;
701 /* zero out Optional header in the case it's not present or partial */
702 opt_size
= max( nt
.FileHeader
.SizeOfOptionalHeader
, offsetof( IMAGE_OPTIONAL_HEADER32
, CheckSum
));
703 size
= min( size
, sizeof(nt
.Signature
) + sizeof(nt
.FileHeader
) + opt_size
);
704 if (size
< sizeof(nt
)) memset( (char *)&nt
+ size
, 0, sizeof(nt
) - size
);
705 if (nt
.Signature
!= IMAGE_NT_SIGNATURE
)
707 IMAGE_OS2_HEADER
*os2
= (IMAGE_OS2_HEADER
*)&nt
;
708 if (os2
->ne_magic
!= IMAGE_OS2_SIGNATURE
) return STATUS_INVALID_IMAGE_PROTECT
;
709 if (os2
->ne_exetyp
== 2) return STATUS_INVALID_IMAGE_WIN_16
;
710 if (os2
->ne_exetyp
== 5) return STATUS_INVALID_IMAGE_PROTECT
;
711 return STATUS_INVALID_IMAGE_NE_FORMAT
;
714 switch (nt
.opt
.hdr32
.Magic
)
716 case IMAGE_NT_OPTIONAL_HDR32_MAGIC
:
717 if (!is_machine_32bit( nt
.FileHeader
.Machine
)) return STATUS_INVALID_IMAGE_FORMAT
;
718 if (!is_machine_supported( nt
.FileHeader
.Machine
)) return STATUS_INVALID_IMAGE_FORMAT
;
720 clr_va
= nt
.opt
.hdr32
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR
].VirtualAddress
;
721 clr_size
= nt
.opt
.hdr32
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR
].Size
;
723 mapping
->image
.base
= nt
.opt
.hdr32
.ImageBase
;
724 mapping
->image
.entry_point
= nt
.opt
.hdr32
.AddressOfEntryPoint
;
725 mapping
->image
.map_size
= ROUND_SIZE( nt
.opt
.hdr32
.SizeOfImage
);
726 mapping
->image
.stack_size
= nt
.opt
.hdr32
.SizeOfStackReserve
;
727 mapping
->image
.stack_commit
= nt
.opt
.hdr32
.SizeOfStackCommit
;
728 mapping
->image
.subsystem
= nt
.opt
.hdr32
.Subsystem
;
729 mapping
->image
.subsystem_minor
= nt
.opt
.hdr32
.MinorSubsystemVersion
;
730 mapping
->image
.subsystem_major
= nt
.opt
.hdr32
.MajorSubsystemVersion
;
731 mapping
->image
.osversion_minor
= nt
.opt
.hdr32
.MinorOperatingSystemVersion
;
732 mapping
->image
.osversion_major
= nt
.opt
.hdr32
.MajorOperatingSystemVersion
;
733 mapping
->image
.dll_charact
= nt
.opt
.hdr32
.DllCharacteristics
;
734 mapping
->image
.contains_code
= (nt
.opt
.hdr32
.SizeOfCode
||
735 nt
.opt
.hdr32
.AddressOfEntryPoint
||
736 nt
.opt
.hdr32
.SectionAlignment
& page_mask
);
737 mapping
->image
.header_size
= nt
.opt
.hdr32
.SizeOfHeaders
;
738 mapping
->image
.checksum
= nt
.opt
.hdr32
.CheckSum
;
739 mapping
->image
.image_flags
= 0;
740 if (nt
.opt
.hdr32
.SectionAlignment
& page_mask
)
741 mapping
->image
.image_flags
|= IMAGE_FLAGS_ImageMappedFlat
;
742 if ((nt
.opt
.hdr32
.DllCharacteristics
& IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE
) &&
743 mapping
->image
.contains_code
&& !(clr_va
&& clr_size
))
744 mapping
->image
.image_flags
|= IMAGE_FLAGS_ImageDynamicallyRelocated
;
747 case IMAGE_NT_OPTIONAL_HDR64_MAGIC
:
748 if (!is_machine_64bit( native_machine
)) return STATUS_INVALID_IMAGE_WIN_64
;
749 if (!is_machine_64bit( nt
.FileHeader
.Machine
)) return STATUS_INVALID_IMAGE_FORMAT
;
750 if (!is_machine_supported( nt
.FileHeader
.Machine
)) return STATUS_INVALID_IMAGE_FORMAT
;
752 clr_va
= nt
.opt
.hdr64
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR
].VirtualAddress
;
753 clr_size
= nt
.opt
.hdr64
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR
].Size
;
755 mapping
->image
.base
= nt
.opt
.hdr64
.ImageBase
;
756 mapping
->image
.entry_point
= nt
.opt
.hdr64
.AddressOfEntryPoint
;
757 mapping
->image
.map_size
= ROUND_SIZE( nt
.opt
.hdr64
.SizeOfImage
);
758 mapping
->image
.stack_size
= nt
.opt
.hdr64
.SizeOfStackReserve
;
759 mapping
->image
.stack_commit
= nt
.opt
.hdr64
.SizeOfStackCommit
;
760 mapping
->image
.subsystem
= nt
.opt
.hdr64
.Subsystem
;
761 mapping
->image
.subsystem_minor
= nt
.opt
.hdr64
.MinorSubsystemVersion
;
762 mapping
->image
.subsystem_major
= nt
.opt
.hdr64
.MajorSubsystemVersion
;
763 mapping
->image
.osversion_minor
= nt
.opt
.hdr64
.MinorOperatingSystemVersion
;
764 mapping
->image
.osversion_major
= nt
.opt
.hdr64
.MajorOperatingSystemVersion
;
765 mapping
->image
.dll_charact
= nt
.opt
.hdr64
.DllCharacteristics
;
766 mapping
->image
.contains_code
= (nt
.opt
.hdr64
.SizeOfCode
||
767 nt
.opt
.hdr64
.AddressOfEntryPoint
||
768 nt
.opt
.hdr64
.SectionAlignment
& page_mask
);
769 mapping
->image
.header_size
= nt
.opt
.hdr64
.SizeOfHeaders
;
770 mapping
->image
.checksum
= nt
.opt
.hdr64
.CheckSum
;
771 mapping
->image
.image_flags
= 0;
772 if (nt
.opt
.hdr64
.SectionAlignment
& page_mask
)
773 mapping
->image
.image_flags
|= IMAGE_FLAGS_ImageMappedFlat
;
774 if ((nt
.opt
.hdr64
.DllCharacteristics
& IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE
) &&
775 mapping
->image
.contains_code
&& !(clr_va
&& clr_size
))
776 mapping
->image
.image_flags
|= IMAGE_FLAGS_ImageDynamicallyRelocated
;
780 return STATUS_INVALID_IMAGE_FORMAT
;
783 mapping
->image
.image_charact
= nt
.FileHeader
.Characteristics
;
784 mapping
->image
.machine
= nt
.FileHeader
.Machine
;
785 mapping
->image
.dbg_offset
= nt
.FileHeader
.PointerToSymbolTable
;
786 mapping
->image
.dbg_size
= nt
.FileHeader
.NumberOfSymbols
;
787 mapping
->image
.zerobits
= 0; /* FIXME */
788 mapping
->image
.file_size
= file_size
;
789 mapping
->image
.loader_flags
= clr_va
&& clr_size
;
790 if (mz_size
== sizeof(mz
) && !memcmp( mz
.buffer
, builtin_signature
, sizeof(builtin_signature
) ))
791 mapping
->image
.image_flags
|= IMAGE_FLAGS_WineBuiltin
;
792 else if (mz_size
== sizeof(mz
) && !memcmp( mz
.buffer
, fakedll_signature
, sizeof(fakedll_signature
) ))
793 mapping
->image
.image_flags
|= IMAGE_FLAGS_WineFakeDll
;
795 /* load the section headers */
797 pos
+= sizeof(nt
.Signature
) + sizeof(nt
.FileHeader
) + nt
.FileHeader
.SizeOfOptionalHeader
;
798 if (nt
.FileHeader
.NumberOfSections
> ARRAY_SIZE( sec
)) return STATUS_INVALID_IMAGE_FORMAT
;
799 size
= sizeof(*sec
) * nt
.FileHeader
.NumberOfSections
;
800 if (!mapping
->size
) mapping
->size
= mapping
->image
.map_size
;
801 else if (mapping
->size
> mapping
->image
.map_size
) return STATUS_SECTION_TOO_BIG
;
802 if (pos
+ size
> mapping
->image
.map_size
) return STATUS_INVALID_FILE_FOR_SECTION
;
803 if (pos
+ size
> mapping
->image
.header_size
) mapping
->image
.header_size
= pos
+ size
;
804 if (pread( unix_fd
, sec
, size
, pos
) != size
) return STATUS_INVALID_FILE_FOR_SECTION
;
806 for (i
= 0; i
< nt
.FileHeader
.NumberOfSections
&& !mapping
->image
.contains_code
; i
++)
807 if (sec
[i
].Characteristics
& IMAGE_SCN_MEM_EXECUTE
) mapping
->image
.contains_code
= 1;
809 if (load_clr_header( &clr
, clr_va
, clr_size
, unix_fd
, sec
, nt
.FileHeader
.NumberOfSections
) &&
810 (clr
.Flags
& COMIMAGE_FLAGS_ILONLY
))
812 mapping
->image
.image_flags
|= IMAGE_FLAGS_ComPlusILOnly
;
813 if (nt
.opt
.hdr32
.Magic
== IMAGE_NT_OPTIONAL_HDR32_MAGIC
)
815 if (!(clr
.Flags
& COMIMAGE_FLAGS_32BITREQUIRED
))
816 mapping
->image
.image_flags
|= IMAGE_FLAGS_ComPlusNativeReady
;
817 if (clr
.Flags
& COMIMAGE_FLAGS_32BITPREFERRED
)
818 mapping
->image
.image_flags
|= IMAGE_FLAGS_ComPlusPrefer32bit
;
822 if (!build_shared_mapping( mapping
, unix_fd
, sec
, nt
.FileHeader
.NumberOfSections
))
823 return STATUS_INVALID_FILE_FOR_SECTION
;
825 return STATUS_SUCCESS
;
828 static struct ranges
*create_ranges(void)
830 struct ranges
*ranges
= alloc_object( &ranges_ops
);
832 if (!ranges
) return NULL
;
835 if (!(ranges
->ranges
= mem_alloc( ranges
->max
* sizeof(*ranges
->ranges
) )))
837 release_object( ranges
);
843 static unsigned int get_mapping_flags( obj_handle_t handle
, unsigned int flags
)
845 switch (flags
& (SEC_IMAGE
| SEC_RESERVE
| SEC_COMMIT
| SEC_FILE
))
848 if (flags
& (SEC_WRITECOMBINE
| SEC_LARGE_PAGES
)) break;
849 if (handle
) return SEC_FILE
| SEC_IMAGE
;
850 set_error( STATUS_INVALID_FILE_FOR_SECTION
);
853 if (!handle
) return flags
;
856 if (flags
& SEC_LARGE_PAGES
) break;
857 if (handle
) return SEC_FILE
| (flags
& (SEC_NOCACHE
| SEC_WRITECOMBINE
));
860 set_error( STATUS_INVALID_PARAMETER
);
865 static struct mapping
*create_mapping( struct object
*root
, const struct unicode_str
*name
,
866 unsigned int attr
, mem_size_t size
, unsigned int flags
,
867 obj_handle_t handle
, unsigned int file_access
,
868 const struct security_descriptor
*sd
)
870 struct mapping
*mapping
;
876 if (!page_mask
) page_mask
= sysconf( _SC_PAGESIZE
) - 1;
878 if (!(mapping
= create_named_object( root
, &mapping_ops
, name
, attr
, sd
)))
880 if (get_error() == STATUS_OBJECT_NAME_EXISTS
)
881 return mapping
; /* Nothing else to do */
883 mapping
->size
= size
;
885 mapping
->shared
= NULL
;
886 mapping
->committed
= NULL
;
888 if (!(mapping
->flags
= get_mapping_flags( handle
, flags
))) goto error
;
892 const unsigned int sharing
= FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
;
893 unsigned int mapping_access
= FILE_MAPPING_ACCESS
;
895 if (!(file
= get_file_obj( current
->process
, handle
, file_access
))) goto error
;
896 fd
= get_obj_fd( (struct object
*)file
);
898 /* file sharing rules for mappings are different so we use magic the access rights */
899 if (flags
& SEC_IMAGE
) mapping_access
|= FILE_MAPPING_IMAGE
;
900 else if (file_access
& FILE_WRITE_DATA
) mapping_access
|= FILE_MAPPING_WRITE
;
902 if (!(mapping
->fd
= get_fd_object_for_mapping( fd
, mapping_access
, sharing
)))
904 mapping
->fd
= dup_fd_object( fd
, mapping_access
, sharing
, FILE_SYNCHRONOUS_IO_NONALERT
);
905 if (mapping
->fd
) set_fd_user( mapping
->fd
, &mapping_fd_ops
, NULL
);
907 release_object( file
);
908 release_object( fd
);
909 if (!mapping
->fd
) goto error
;
911 if ((unix_fd
= get_unix_fd( mapping
->fd
)) == -1) goto error
;
912 if (fstat( unix_fd
, &st
) == -1)
917 if (flags
& SEC_IMAGE
)
919 unsigned int err
= get_image_params( mapping
, st
.st_size
, unix_fd
);
920 if (!err
) return mapping
;
926 if (!(mapping
->size
= st
.st_size
))
928 set_error( STATUS_MAPPED_FILE_SIZE_ZERO
);
932 else if (st
.st_size
< mapping
->size
)
934 if (!(file_access
& FILE_WRITE_DATA
))
936 set_error( STATUS_SECTION_TOO_BIG
);
939 if (!grow_file( unix_fd
, mapping
->size
)) goto error
;
942 else /* Anonymous mapping (no associated file) */
946 set_error( STATUS_INVALID_PARAMETER
);
949 if ((flags
& SEC_RESERVE
) && !(mapping
->committed
= create_ranges())) goto error
;
950 mapping
->size
= (mapping
->size
+ page_mask
) & ~((mem_size_t
)page_mask
);
951 if ((unix_fd
= create_temp_file( mapping
->size
)) == -1) goto error
;
952 if (!(mapping
->fd
= create_anonymous_fd( &mapping_fd_ops
, unix_fd
, &mapping
->obj
,
953 FILE_SYNCHRONOUS_IO_NONALERT
))) goto error
;
954 allow_fd_caching( mapping
->fd
);
959 release_object( mapping
);
963 /* create a read-only file mapping for the specified fd */
964 struct mapping
*create_fd_mapping( struct object
*root
, const struct unicode_str
*name
,
965 struct fd
*fd
, unsigned int attr
, const struct security_descriptor
*sd
)
967 struct mapping
*mapping
;
971 if (!(mapping
= create_named_object( root
, &mapping_ops
, name
, attr
, sd
))) return NULL
;
972 if (get_error() == STATUS_OBJECT_NAME_EXISTS
) return mapping
; /* Nothing else to do */
974 mapping
->shared
= NULL
;
975 mapping
->committed
= NULL
;
976 mapping
->flags
= SEC_FILE
;
977 mapping
->fd
= (struct fd
*)grab_object( fd
);
978 set_fd_user( mapping
->fd
, &mapping_fd_ops
, NULL
);
980 if ((unix_fd
= get_unix_fd( mapping
->fd
)) == -1) goto error
;
981 if (fstat( unix_fd
, &st
) == -1)
986 if (!(mapping
->size
= st
.st_size
))
988 set_error( STATUS_MAPPED_FILE_SIZE_ZERO
);
994 release_object( mapping
);
998 static struct mapping
*get_mapping_obj( struct process
*process
, obj_handle_t handle
, unsigned int access
)
1000 return (struct mapping
*)get_handle_obj( process
, handle
, access
, &mapping_ops
);
1003 /* open a new file for the file descriptor backing the view */
1004 struct file
*get_view_file( const struct memory_view
*view
, unsigned int access
, unsigned int sharing
)
1006 if (!view
->fd
) return NULL
;
1007 return create_file_for_fd_obj( view
->fd
, access
, sharing
);
1010 /* get the image info for a SEC_IMAGE mapped view */
1011 const pe_image_info_t
*get_view_image_info( const struct memory_view
*view
, client_ptr_t
*base
)
1013 if (!(view
->flags
& SEC_IMAGE
)) return NULL
;
1015 return &view
->image
;
1018 /* get the file name for a mapped view */
1019 int get_view_nt_name( const struct memory_view
*view
, struct unicode_str
*name
)
1021 if (view
->namelen
) /* .so builtin */
1023 name
->str
= view
->name
;
1024 name
->len
= view
->namelen
;
1027 if (!view
->fd
) return 0;
1028 get_nt_name( view
->fd
, name
);
1032 /* generate all startup events of a given process */
1033 void generate_startup_debug_events( struct process
*process
)
1035 struct memory_view
*view
;
1036 struct list
*ptr
= list_head( &process
->views
);
1037 struct thread
*thread
, *first_thread
= get_process_first_thread( process
);
1040 view
= LIST_ENTRY( ptr
, struct memory_view
, entry
);
1041 generate_debug_event( first_thread
, DbgCreateProcessStateChange
, view
);
1043 /* generate ntdll.dll load event */
1044 while (ptr
&& (ptr
= list_next( &process
->views
, ptr
)))
1046 view
= LIST_ENTRY( ptr
, struct memory_view
, entry
);
1047 if (generate_dll_event( first_thread
, DbgLoadDllStateChange
, view
)) break;
1050 /* generate creation events */
1051 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
1053 if (thread
!= first_thread
)
1054 generate_debug_event( thread
, DbgCreateThreadStateChange
, NULL
);
1057 /* generate dll events (in loading order) */
1058 while (ptr
&& (ptr
= list_next( &process
->views
, ptr
)))
1060 view
= LIST_ENTRY( ptr
, struct memory_view
, entry
);
1061 generate_dll_event( first_thread
, DbgLoadDllStateChange
, view
);
1065 static void mapping_dump( struct object
*obj
, int verbose
)
1067 struct mapping
*mapping
= (struct mapping
*)obj
;
1068 assert( obj
->ops
== &mapping_ops
);
1069 fprintf( stderr
, "Mapping size=%08x%08x flags=%08x fd=%p shared=%p\n",
1070 (unsigned int)(mapping
->size
>> 32), (unsigned int)mapping
->size
,
1071 mapping
->flags
, mapping
->fd
, mapping
->shared
);
1074 static struct fd
*mapping_get_fd( struct object
*obj
)
1076 struct mapping
*mapping
= (struct mapping
*)obj
;
1077 return (struct fd
*)grab_object( mapping
->fd
);
1080 static void mapping_destroy( struct object
*obj
)
1082 struct mapping
*mapping
= (struct mapping
*)obj
;
1083 assert( obj
->ops
== &mapping_ops
);
1084 if (mapping
->fd
) release_object( mapping
->fd
);
1085 if (mapping
->committed
) release_object( mapping
->committed
);
1086 if (mapping
->shared
) release_object( mapping
->shared
);
1089 static enum server_fd_type
mapping_get_fd_type( struct fd
*fd
)
1091 return FD_TYPE_FILE
;
1094 int get_page_size(void)
1096 if (!page_mask
) page_mask
= sysconf( _SC_PAGESIZE
) - 1;
1097 return page_mask
+ 1;
1100 struct object
*create_user_data_mapping( struct object
*root
, const struct unicode_str
*name
,
1101 unsigned int attr
, const struct security_descriptor
*sd
)
1104 struct mapping
*mapping
;
1106 if (!(mapping
= create_mapping( root
, name
, attr
, sizeof(KSHARED_USER_DATA
),
1107 SEC_COMMIT
, 0, FILE_READ_DATA
| FILE_WRITE_DATA
, sd
))) return NULL
;
1108 ptr
= mmap( NULL
, mapping
->size
, PROT_WRITE
, MAP_SHARED
, get_unix_fd( mapping
->fd
), 0 );
1109 if (ptr
!= MAP_FAILED
)
1111 user_shared_data
= ptr
;
1112 user_shared_data
->SystemCall
= 1;
1114 return &mapping
->obj
;
1117 /* create a file mapping */
1118 DECL_HANDLER(create_mapping
)
1120 struct object
*root
;
1121 struct mapping
*mapping
;
1122 struct unicode_str name
;
1123 const struct security_descriptor
*sd
;
1124 const struct object_attributes
*objattr
= get_req_object_attributes( &sd
, &name
, &root
);
1126 if (!objattr
) return;
1128 if ((mapping
= create_mapping( root
, &name
, objattr
->attributes
, req
->size
, req
->flags
,
1129 req
->file_handle
, req
->file_access
, sd
)))
1131 if (get_error() == STATUS_OBJECT_NAME_EXISTS
)
1132 reply
->handle
= alloc_handle( current
->process
, &mapping
->obj
, req
->access
, objattr
->attributes
);
1134 reply
->handle
= alloc_handle_no_access_check( current
->process
, &mapping
->obj
,
1135 req
->access
, objattr
->attributes
);
1136 release_object( mapping
);
1139 if (root
) release_object( root
);
1142 /* open a handle to a mapping */
1143 DECL_HANDLER(open_mapping
)
1145 struct unicode_str name
= get_req_unicode_str();
1147 reply
->handle
= open_object( current
->process
, req
->rootdir
, req
->access
,
1148 &mapping_ops
, &name
, req
->attributes
);
1151 /* get a mapping information */
1152 DECL_HANDLER(get_mapping_info
)
1154 struct mapping
*mapping
;
1156 if (!(mapping
= get_mapping_obj( current
->process
, req
->handle
, req
->access
))) return;
1158 reply
->size
= mapping
->size
;
1159 reply
->flags
= mapping
->flags
;
1161 if (mapping
->flags
& SEC_IMAGE
)
1163 struct unicode_str name
= { NULL
, 0 };
1167 if (mapping
->fd
) get_nt_name( mapping
->fd
, &name
);
1168 size
= min( sizeof(pe_image_info_t
) + name
.len
, get_reply_max_size() );
1169 if ((data
= set_reply_data_size( size
)))
1171 memcpy( data
, &mapping
->image
, min( sizeof(pe_image_info_t
), size
));
1172 if (size
> sizeof(pe_image_info_t
))
1173 memcpy( (pe_image_info_t
*)data
+ 1, name
.str
, size
- sizeof(pe_image_info_t
) );
1175 reply
->total
= sizeof(pe_image_info_t
) + name
.len
;
1178 if (!(req
->access
& (SECTION_MAP_READ
| SECTION_MAP_WRITE
))) /* query only */
1180 release_object( mapping
);
1184 if (mapping
->shared
)
1185 reply
->shared_file
= alloc_handle( current
->process
, mapping
->shared
->file
,
1186 GENERIC_READ
|GENERIC_WRITE
, 0 );
1187 release_object( mapping
);
1190 /* add a memory view in the current process */
1191 DECL_HANDLER(map_view
)
1193 struct mapping
*mapping
= NULL
;
1194 struct memory_view
*view
;
1195 data_size_t namelen
= 0;
1197 if (!req
->size
|| (req
->base
& page_mask
) || req
->base
+ req
->size
< req
->base
) /* overflow */
1199 set_error( STATUS_INVALID_PARAMETER
);
1203 /* make sure we don't already have an overlapping view */
1204 LIST_FOR_EACH_ENTRY( view
, ¤t
->process
->views
, struct memory_view
, entry
)
1206 if (view
->base
+ view
->size
<= req
->base
) continue;
1207 if (view
->base
>= req
->base
+ req
->size
) continue;
1208 set_error( STATUS_INVALID_PARAMETER
);
1212 if (!req
->mapping
) /* image mapping for a .so dll */
1214 if (get_req_data_size() > sizeof(view
->image
)) namelen
= get_req_data_size() - sizeof(view
->image
);
1215 if (!(view
= mem_alloc( offsetof( struct memory_view
, name
[namelen
] )))) return;
1216 memset( view
, 0, sizeof(*view
) );
1217 view
->base
= req
->base
;
1218 view
->size
= req
->size
;
1219 view
->start
= req
->start
;
1220 view
->flags
= SEC_IMAGE
;
1221 view
->namelen
= namelen
;
1222 memcpy( &view
->image
, get_req_data(), min( sizeof(view
->image
), get_req_data_size() ));
1223 memcpy( view
->name
, (pe_image_info_t
*)get_req_data() + 1, namelen
);
1224 add_process_view( current
, view
);
1228 if (!(mapping
= get_mapping_obj( current
->process
, req
->mapping
, req
->access
))) return;
1230 if (mapping
->flags
& SEC_IMAGE
)
1232 if (req
->start
|| req
->size
> mapping
->image
.map_size
)
1234 set_error( STATUS_INVALID_PARAMETER
);
1238 else if (req
->start
>= mapping
->size
||
1239 req
->start
+ req
->size
< req
->start
||
1240 req
->start
+ req
->size
> ((mapping
->size
+ page_mask
) & ~(mem_size_t
)page_mask
))
1242 set_error( STATUS_INVALID_PARAMETER
);
1246 if ((view
= mem_alloc( offsetof( struct memory_view
, name
[namelen
] ))))
1248 view
->base
= req
->base
;
1249 view
->size
= req
->size
;
1250 view
->start
= req
->start
;
1251 view
->flags
= mapping
->flags
;
1252 view
->namelen
= namelen
;
1253 view
->fd
= !is_fd_removable( mapping
->fd
) ? (struct fd
*)grab_object( mapping
->fd
) : NULL
;
1254 view
->committed
= mapping
->committed
? (struct ranges
*)grab_object( mapping
->committed
) : NULL
;
1255 view
->shared
= mapping
->shared
? (struct shared_map
*)grab_object( mapping
->shared
) : NULL
;
1256 if (view
->flags
& SEC_IMAGE
) view
->image
= mapping
->image
;
1257 add_process_view( current
, view
);
1258 if (view
->flags
& SEC_IMAGE
&& view
->base
!= mapping
->image
.base
)
1259 set_error( STATUS_IMAGE_NOT_AT_BASE
);
1263 release_object( mapping
);
1266 /* unmap a memory view from the current process */
1267 DECL_HANDLER(unmap_view
)
1269 struct memory_view
*view
= find_mapped_view( current
->process
, req
->base
);
1272 generate_dll_event( current
, DbgUnloadDllStateChange
, view
);
1273 free_memory_view( view
);
1276 /* get a range of committed pages in a file mapping */
1277 DECL_HANDLER(get_mapping_committed_range
)
1279 struct memory_view
*view
= find_mapped_view( current
->process
, req
->base
);
1281 if (view
) reply
->committed
= find_committed_range( view
, req
->offset
, &reply
->size
);
1284 /* add a range to the committed pages in a file mapping */
1285 DECL_HANDLER(add_mapping_committed_range
)
1287 struct memory_view
*view
= find_mapped_view( current
->process
, req
->base
);
1289 if (view
) add_committed_range( view
, req
->offset
, req
->offset
+ req
->size
);
1292 /* check if two memory maps are for the same file */
1293 DECL_HANDLER(is_same_mapping
)
1295 struct memory_view
*view1
= find_mapped_view( current
->process
, req
->base1
);
1296 struct memory_view
*view2
= find_mapped_view( current
->process
, req
->base2
);
1298 if (!view1
|| !view2
) return;
1299 if (!view1
->fd
|| !view2
->fd
|| !(view1
->flags
& SEC_IMAGE
) || !is_same_file_fd( view1
->fd
, view2
->fd
))
1300 set_error( STATUS_NOT_SAME_DEVICE
);
1303 /* get the filename of a mapping */
1304 DECL_HANDLER(get_mapping_filename
)
1306 struct process
*process
;
1307 struct memory_view
*view
;
1308 struct unicode_str name
;
1310 if (!(process
= get_process_from_handle( req
->process
, PROCESS_QUERY_INFORMATION
))) return;
1312 if ((view
= find_mapped_addr( process
, req
->addr
)) && get_view_nt_name( view
, &name
))
1314 reply
->len
= name
.len
;
1315 if (name
.len
> get_reply_max_size()) set_error( STATUS_BUFFER_OVERFLOW
);
1316 else if (!name
.len
) set_error( STATUS_FILE_INVALID
);
1317 else set_reply_data( name
.str
, name
.len
);
1319 else set_error( STATUS_INVALID_ADDRESS
);
1321 release_object( process
);