4 * Copyright 1993 Robert J. Amstadt
5 * Copyright 1995, 2003 Alexandre Julliard
6 * Copyright 2006 Mike McCormack
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/port.h"
28 #define NONAMELESSUNION
29 #define NONAMELESSSTRUCT
31 #define WIN32_NO_STATUS
35 #include "wine/debug.h"
36 #include "wine/exception.h"
37 #include "wine/unicode.h"
38 #include "wine/list.h"
40 WINE_DEFAULT_DEBUG_CHANNEL(resource
);
42 /* we don't want to include winuser.h just for this */
43 #define IS_INTRESOURCE(x) (((ULONG_PTR)(x) >> 16) == 0)
45 /* retrieve the resource name to pass to the ntdll functions */
46 static NTSTATUS
get_res_nameA( LPCSTR name
, UNICODE_STRING
*str
)
48 if (IS_INTRESOURCE(name
))
50 str
->Buffer
= ULongToPtr(LOWORD(name
));
51 return STATUS_SUCCESS
;
56 if (RtlCharToInteger( name
+ 1, 10, &value
) != STATUS_SUCCESS
|| HIWORD(value
))
57 return STATUS_INVALID_PARAMETER
;
58 str
->Buffer
= ULongToPtr(value
);
59 return STATUS_SUCCESS
;
61 RtlCreateUnicodeStringFromAsciiz( str
, name
);
62 RtlUpcaseUnicodeString( str
, str
, FALSE
);
63 return STATUS_SUCCESS
;
66 /* retrieve the resource name to pass to the ntdll functions */
67 static NTSTATUS
get_res_nameW( LPCWSTR name
, UNICODE_STRING
*str
)
69 if (IS_INTRESOURCE(name
))
71 str
->Buffer
= ULongToPtr(LOWORD(name
));
72 return STATUS_SUCCESS
;
77 RtlInitUnicodeString( str
, name
+ 1 );
78 if (RtlUnicodeStringToInteger( str
, 10, &value
) != STATUS_SUCCESS
|| HIWORD(value
))
79 return STATUS_INVALID_PARAMETER
;
80 str
->Buffer
= ULongToPtr(value
);
81 return STATUS_SUCCESS
;
83 RtlCreateUnicodeString( str
, name
);
84 RtlUpcaseUnicodeString( str
, str
, FALSE
);
85 return STATUS_SUCCESS
;
88 /* implementation of FindResourceExA */
89 static HRSRC
find_resourceA( HMODULE hModule
, LPCSTR type
, LPCSTR name
, WORD lang
)
92 UNICODE_STRING nameW
, typeW
;
93 LDR_RESOURCE_INFO info
;
94 const IMAGE_RESOURCE_DATA_ENTRY
*entry
= NULL
;
101 if ((status
= get_res_nameA( name
, &nameW
)) != STATUS_SUCCESS
) goto done
;
102 if ((status
= get_res_nameA( type
, &typeW
)) != STATUS_SUCCESS
) goto done
;
103 info
.Type
= (ULONG_PTR
)typeW
.Buffer
;
104 info
.Name
= (ULONG_PTR
)nameW
.Buffer
;
105 info
.Language
= lang
;
106 status
= LdrFindResource_U( hModule
, &info
, 3, &entry
);
108 if (status
!= STATUS_SUCCESS
) SetLastError( RtlNtStatusToDosError(status
) );
112 SetLastError( ERROR_INVALID_PARAMETER
);
116 if (!IS_INTRESOURCE(nameW
.Buffer
)) HeapFree( GetProcessHeap(), 0, nameW
.Buffer
);
117 if (!IS_INTRESOURCE(typeW
.Buffer
)) HeapFree( GetProcessHeap(), 0, typeW
.Buffer
);
122 /* implementation of FindResourceExW */
123 static HRSRC
find_resourceW( HMODULE hModule
, LPCWSTR type
, LPCWSTR name
, WORD lang
)
126 UNICODE_STRING nameW
, typeW
;
127 LDR_RESOURCE_INFO info
;
128 const IMAGE_RESOURCE_DATA_ENTRY
*entry
= NULL
;
130 nameW
.Buffer
= typeW
.Buffer
= NULL
;
134 if ((status
= get_res_nameW( name
, &nameW
)) != STATUS_SUCCESS
) goto done
;
135 if ((status
= get_res_nameW( type
, &typeW
)) != STATUS_SUCCESS
) goto done
;
136 info
.Type
= (ULONG_PTR
)typeW
.Buffer
;
137 info
.Name
= (ULONG_PTR
)nameW
.Buffer
;
138 info
.Language
= lang
;
139 status
= LdrFindResource_U( hModule
, &info
, 3, &entry
);
141 if (status
!= STATUS_SUCCESS
) SetLastError( RtlNtStatusToDosError(status
) );
145 SetLastError( ERROR_INVALID_PARAMETER
);
149 if (!IS_INTRESOURCE(nameW
.Buffer
)) HeapFree( GetProcessHeap(), 0, nameW
.Buffer
);
150 if (!IS_INTRESOURCE(typeW
.Buffer
)) HeapFree( GetProcessHeap(), 0, typeW
.Buffer
);
154 /**********************************************************************
155 * FindResourceExA (KERNEL32.@)
157 HRSRC WINAPI
FindResourceExA( HMODULE hModule
, LPCSTR type
, LPCSTR name
, WORD lang
)
159 TRACE( "%p %s %s %04x\n", hModule
, debugstr_a(type
), debugstr_a(name
), lang
);
161 if (!hModule
) hModule
= GetModuleHandleW(0);
162 return find_resourceA( hModule
, type
, name
, lang
);
166 /**********************************************************************
167 * FindResourceA (KERNEL32.@)
169 HRSRC WINAPI
FindResourceA( HMODULE hModule
, LPCSTR name
, LPCSTR type
)
171 return FindResourceExA( hModule
, type
, name
, MAKELANGID( LANG_NEUTRAL
, SUBLANG_NEUTRAL
) );
175 /**********************************************************************
176 * FindResourceExW (KERNEL32.@)
178 HRSRC WINAPI
FindResourceExW( HMODULE hModule
, LPCWSTR type
, LPCWSTR name
, WORD lang
)
180 TRACE( "%p %s %s %04x\n", hModule
, debugstr_w(type
), debugstr_w(name
), lang
);
182 if (!hModule
) hModule
= GetModuleHandleW(0);
183 return find_resourceW( hModule
, type
, name
, lang
);
187 /**********************************************************************
188 * FindResourceW (KERNEL32.@)
190 HRSRC WINAPI
FindResourceW( HINSTANCE hModule
, LPCWSTR name
, LPCWSTR type
)
192 return FindResourceExW( hModule
, type
, name
, MAKELANGID( LANG_NEUTRAL
, SUBLANG_NEUTRAL
) );
196 /**********************************************************************
197 * EnumResourceTypesA (KERNEL32.@)
199 BOOL WINAPI
EnumResourceTypesA( HMODULE hmod
, ENUMRESTYPEPROCA lpfun
, LONG_PTR lparam
)
204 DWORD len
= 0, newlen
;
206 const IMAGE_RESOURCE_DIRECTORY
*resdir
;
207 const IMAGE_RESOURCE_DIRECTORY_ENTRY
*et
;
208 const IMAGE_RESOURCE_DIR_STRING_U
*str
;
210 TRACE( "%p %p %lx\n", hmod
, lpfun
, lparam
);
212 if (!hmod
) hmod
= GetModuleHandleA( NULL
);
214 if ((status
= LdrFindResourceDirectory_U( hmod
, NULL
, 0, &resdir
)) != STATUS_SUCCESS
)
216 SetLastError( RtlNtStatusToDosError(status
) );
219 et
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(resdir
+ 1);
220 for (i
= 0; i
< resdir
->NumberOfNamedEntries
+resdir
->NumberOfIdEntries
; i
++)
222 if (et
[i
].u
.s
.NameIsString
)
224 str
= (const IMAGE_RESOURCE_DIR_STRING_U
*)((const BYTE
*)resdir
+ et
[i
].u
.s
.NameOffset
);
225 newlen
= WideCharToMultiByte( CP_ACP
, 0, str
->NameString
, str
->Length
, NULL
, 0, NULL
, NULL
);
226 if (newlen
+ 1 > len
)
229 HeapFree( GetProcessHeap(), 0, type
);
230 if (!(type
= HeapAlloc( GetProcessHeap(), 0, len
))) return FALSE
;
232 WideCharToMultiByte( CP_ACP
, 0, str
->NameString
, str
->Length
, type
, len
, NULL
, NULL
);
234 ret
= lpfun(hmod
,type
,lparam
);
238 ret
= lpfun( hmod
, UIntToPtr(et
[i
].u
.Id
), lparam
);
242 HeapFree( GetProcessHeap(), 0, type
);
247 /**********************************************************************
248 * EnumResourceTypesW (KERNEL32.@)
250 BOOL WINAPI
EnumResourceTypesW( HMODULE hmod
, ENUMRESTYPEPROCW lpfun
, LONG_PTR lparam
)
256 const IMAGE_RESOURCE_DIRECTORY
*resdir
;
257 const IMAGE_RESOURCE_DIRECTORY_ENTRY
*et
;
258 const IMAGE_RESOURCE_DIR_STRING_U
*str
;
260 TRACE( "%p %p %lx\n", hmod
, lpfun
, lparam
);
262 if (!hmod
) hmod
= GetModuleHandleW( NULL
);
264 if ((status
= LdrFindResourceDirectory_U( hmod
, NULL
, 0, &resdir
)) != STATUS_SUCCESS
)
266 SetLastError( RtlNtStatusToDosError(status
) );
269 et
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(resdir
+ 1);
270 for (i
= 0; i
< resdir
->NumberOfNamedEntries
+ resdir
->NumberOfIdEntries
; i
++)
272 if (et
[i
].u
.s
.NameIsString
)
274 str
= (const IMAGE_RESOURCE_DIR_STRING_U
*)((const BYTE
*)resdir
+ et
[i
].u
.s
.NameOffset
);
275 if (str
->Length
+ 1 > len
)
277 len
= str
->Length
+ 1;
278 HeapFree( GetProcessHeap(), 0, type
);
279 if (!(type
= HeapAlloc( GetProcessHeap(), 0, len
* sizeof(WCHAR
) ))) return FALSE
;
281 memcpy(type
, str
->NameString
, str
->Length
* sizeof (WCHAR
));
282 type
[str
->Length
] = 0;
283 ret
= lpfun(hmod
,type
,lparam
);
287 ret
= lpfun( hmod
, UIntToPtr(et
[i
].u
.Id
), lparam
);
291 HeapFree( GetProcessHeap(), 0, type
);
296 /**********************************************************************
297 * EnumResourceNamesA (KERNEL32.@)
299 BOOL WINAPI
EnumResourceNamesA( HMODULE hmod
, LPCSTR type
, ENUMRESNAMEPROCA lpfun
, LONG_PTR lparam
)
303 DWORD len
= 0, newlen
;
306 UNICODE_STRING typeW
;
307 LDR_RESOURCE_INFO info
;
308 const IMAGE_RESOURCE_DIRECTORY
*basedir
, *resdir
;
309 const IMAGE_RESOURCE_DIRECTORY_ENTRY
*et
;
310 const IMAGE_RESOURCE_DIR_STRING_U
*str
;
312 TRACE( "%p %s %p %lx\n", hmod
, debugstr_a(type
), lpfun
, lparam
);
314 if (!hmod
) hmod
= GetModuleHandleA( NULL
);
316 if ((status
= LdrFindResourceDirectory_U( hmod
, NULL
, 0, &basedir
)) != STATUS_SUCCESS
)
318 if ((status
= get_res_nameA( type
, &typeW
)) != STATUS_SUCCESS
)
320 info
.Type
= (ULONG_PTR
)typeW
.Buffer
;
321 if ((status
= LdrFindResourceDirectory_U( hmod
, &info
, 1, &resdir
)) != STATUS_SUCCESS
)
324 et
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(resdir
+ 1);
327 for (i
= 0; i
< resdir
->NumberOfNamedEntries
+resdir
->NumberOfIdEntries
; i
++)
329 if (et
[i
].u
.s
.NameIsString
)
331 str
= (const IMAGE_RESOURCE_DIR_STRING_U
*)((const BYTE
*)basedir
+ et
[i
].u
.s
.NameOffset
);
332 newlen
= WideCharToMultiByte(CP_ACP
, 0, str
->NameString
, str
->Length
, NULL
, 0, NULL
, NULL
);
333 if (newlen
+ 1 > len
)
336 HeapFree( GetProcessHeap(), 0, name
);
337 if (!(name
= HeapAlloc(GetProcessHeap(), 0, len
+ 1 )))
343 WideCharToMultiByte( CP_ACP
, 0, str
->NameString
, str
->Length
, name
, len
, NULL
, NULL
);
345 ret
= lpfun(hmod
,type
,name
,lparam
);
349 ret
= lpfun( hmod
, type
, UIntToPtr(et
[i
].u
.Id
), lparam
);
357 status
= STATUS_ACCESS_VIOLATION
;
362 HeapFree( GetProcessHeap(), 0, name
);
363 if (!IS_INTRESOURCE(typeW
.Buffer
)) HeapFree( GetProcessHeap(), 0, typeW
.Buffer
);
364 if (status
!= STATUS_SUCCESS
) SetLastError( RtlNtStatusToDosError(status
) );
369 /**********************************************************************
370 * EnumResourceNamesW (KERNEL32.@)
372 BOOL WINAPI
EnumResourceNamesW( HMODULE hmod
, LPCWSTR type
, ENUMRESNAMEPROCW lpfun
, LONG_PTR lparam
)
378 UNICODE_STRING typeW
;
379 LDR_RESOURCE_INFO info
;
380 const IMAGE_RESOURCE_DIRECTORY
*basedir
, *resdir
;
381 const IMAGE_RESOURCE_DIRECTORY_ENTRY
*et
;
382 const IMAGE_RESOURCE_DIR_STRING_U
*str
;
384 TRACE( "%p %s %p %lx\n", hmod
, debugstr_w(type
), lpfun
, lparam
);
386 if (!hmod
) hmod
= GetModuleHandleW( NULL
);
388 if ((status
= LdrFindResourceDirectory_U( hmod
, NULL
, 0, &basedir
)) != STATUS_SUCCESS
)
390 if ((status
= get_res_nameW( type
, &typeW
)) != STATUS_SUCCESS
)
392 info
.Type
= (ULONG_PTR
)typeW
.Buffer
;
393 if ((status
= LdrFindResourceDirectory_U( hmod
, &info
, 1, &resdir
)) != STATUS_SUCCESS
)
396 et
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(resdir
+ 1);
399 for (i
= 0; i
< resdir
->NumberOfNamedEntries
+resdir
->NumberOfIdEntries
; i
++)
401 if (et
[i
].u
.s
.NameIsString
)
403 str
= (const IMAGE_RESOURCE_DIR_STRING_U
*)((const BYTE
*)basedir
+ et
[i
].u
.s
.NameOffset
);
404 if (str
->Length
+ 1 > len
)
406 len
= str
->Length
+ 1;
407 HeapFree( GetProcessHeap(), 0, name
);
408 if (!(name
= HeapAlloc( GetProcessHeap(), 0, len
* sizeof(WCHAR
) )))
414 memcpy(name
, str
->NameString
, str
->Length
* sizeof (WCHAR
));
415 name
[str
->Length
] = 0;
416 ret
= lpfun(hmod
,type
,name
,lparam
);
420 ret
= lpfun( hmod
, type
, UIntToPtr(et
[i
].u
.Id
), lparam
);
428 status
= STATUS_ACCESS_VIOLATION
;
432 HeapFree( GetProcessHeap(), 0, name
);
433 if (!IS_INTRESOURCE(typeW
.Buffer
)) HeapFree( GetProcessHeap(), 0, typeW
.Buffer
);
434 if (status
!= STATUS_SUCCESS
) SetLastError( RtlNtStatusToDosError(status
) );
439 /**********************************************************************
440 * EnumResourceLanguagesExA (KERNEL32.@)
442 BOOL WINAPI
EnumResourceLanguagesExA( HMODULE hmod
, LPCSTR type
, LPCSTR name
,
443 ENUMRESLANGPROCA lpfun
, LONG_PTR lparam
,
444 DWORD flags
, LANGID lang
)
449 UNICODE_STRING typeW
, nameW
;
450 LDR_RESOURCE_INFO info
;
451 const IMAGE_RESOURCE_DIRECTORY
*basedir
, *resdir
;
452 const IMAGE_RESOURCE_DIRECTORY_ENTRY
*et
;
454 TRACE( "%p %s %s %p %lx %x %d\n", hmod
, debugstr_a(type
), debugstr_a(name
),
455 lpfun
, lparam
, flags
, lang
);
457 if (flags
& (RESOURCE_ENUM_MUI
| RESOURCE_ENUM_MUI_SYSTEM
| RESOURCE_ENUM_VALIDATE
))
458 FIXME( "unimplemented flags: %x\n", flags
);
460 if (!flags
) flags
= RESOURCE_ENUM_LN
| RESOURCE_ENUM_MUI
;
462 if (!(flags
& RESOURCE_ENUM_LN
)) return ret
;
464 if (!hmod
) hmod
= GetModuleHandleA( NULL
);
465 typeW
.Buffer
= nameW
.Buffer
= NULL
;
466 if ((status
= LdrFindResourceDirectory_U( hmod
, NULL
, 0, &basedir
)) != STATUS_SUCCESS
)
468 if ((status
= get_res_nameA( type
, &typeW
)) != STATUS_SUCCESS
)
470 if ((status
= get_res_nameA( name
, &nameW
)) != STATUS_SUCCESS
)
472 info
.Type
= (ULONG_PTR
)typeW
.Buffer
;
473 info
.Name
= (ULONG_PTR
)nameW
.Buffer
;
474 if ((status
= LdrFindResourceDirectory_U( hmod
, &info
, 2, &resdir
)) != STATUS_SUCCESS
)
477 et
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(resdir
+ 1);
480 for (i
= 0; i
< resdir
->NumberOfNamedEntries
+ resdir
->NumberOfIdEntries
; i
++)
482 ret
= lpfun( hmod
, type
, name
, et
[i
].u
.Id
, lparam
);
489 status
= STATUS_ACCESS_VIOLATION
;
493 if (!IS_INTRESOURCE(typeW
.Buffer
)) HeapFree( GetProcessHeap(), 0, typeW
.Buffer
);
494 if (!IS_INTRESOURCE(nameW
.Buffer
)) HeapFree( GetProcessHeap(), 0, nameW
.Buffer
);
495 if (status
!= STATUS_SUCCESS
) SetLastError( RtlNtStatusToDosError(status
) );
500 /**********************************************************************
501 * EnumResourceLanguagesA (KERNEL32.@)
503 BOOL WINAPI
EnumResourceLanguagesA( HMODULE hmod
, LPCSTR type
, LPCSTR name
,
504 ENUMRESLANGPROCA lpfun
, LONG_PTR lparam
)
506 return EnumResourceLanguagesExA( hmod
, type
, name
, lpfun
, lparam
, 0, 0 );
510 /**********************************************************************
511 * EnumResourceLanguagesExW (KERNEL32.@)
513 BOOL WINAPI
EnumResourceLanguagesExW( HMODULE hmod
, LPCWSTR type
, LPCWSTR name
,
514 ENUMRESLANGPROCW lpfun
, LONG_PTR lparam
,
515 DWORD flags
, LANGID lang
)
520 UNICODE_STRING typeW
, nameW
;
521 LDR_RESOURCE_INFO info
;
522 const IMAGE_RESOURCE_DIRECTORY
*basedir
, *resdir
;
523 const IMAGE_RESOURCE_DIRECTORY_ENTRY
*et
;
525 TRACE( "%p %s %s %p %lx %x %d\n", hmod
, debugstr_w(type
), debugstr_w(name
),
526 lpfun
, lparam
, flags
, lang
);
528 if (flags
& (RESOURCE_ENUM_MUI
| RESOURCE_ENUM_MUI_SYSTEM
| RESOURCE_ENUM_VALIDATE
))
529 FIXME( "unimplemented flags: %x\n", flags
);
531 if (!flags
) flags
= RESOURCE_ENUM_LN
| RESOURCE_ENUM_MUI
;
533 if (!(flags
& RESOURCE_ENUM_LN
)) return ret
;
535 if (!hmod
) hmod
= GetModuleHandleW( NULL
);
536 typeW
.Buffer
= nameW
.Buffer
= NULL
;
537 if ((status
= LdrFindResourceDirectory_U( hmod
, NULL
, 0, &basedir
)) != STATUS_SUCCESS
)
539 if ((status
= get_res_nameW( type
, &typeW
)) != STATUS_SUCCESS
)
541 if ((status
= get_res_nameW( name
, &nameW
)) != STATUS_SUCCESS
)
543 info
.Type
= (ULONG_PTR
)typeW
.Buffer
;
544 info
.Name
= (ULONG_PTR
)nameW
.Buffer
;
545 if ((status
= LdrFindResourceDirectory_U( hmod
, &info
, 2, &resdir
)) != STATUS_SUCCESS
)
548 et
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(resdir
+ 1);
551 for (i
= 0; i
< resdir
->NumberOfNamedEntries
+ resdir
->NumberOfIdEntries
; i
++)
553 ret
= lpfun( hmod
, type
, name
, et
[i
].u
.Id
, lparam
);
560 status
= STATUS_ACCESS_VIOLATION
;
564 if (!IS_INTRESOURCE(typeW
.Buffer
)) HeapFree( GetProcessHeap(), 0, typeW
.Buffer
);
565 if (!IS_INTRESOURCE(nameW
.Buffer
)) HeapFree( GetProcessHeap(), 0, nameW
.Buffer
);
566 if (status
!= STATUS_SUCCESS
) SetLastError( RtlNtStatusToDosError(status
) );
571 /**********************************************************************
572 * EnumResourceLanguagesW (KERNEL32.@)
574 BOOL WINAPI
EnumResourceLanguagesW( HMODULE hmod
, LPCWSTR type
, LPCWSTR name
,
575 ENUMRESLANGPROCW lpfun
, LONG_PTR lparam
)
577 return EnumResourceLanguagesExW( hmod
, type
, name
, lpfun
, lparam
, 0, 0 );
581 /**********************************************************************
582 * LoadResource (KERNEL32.@)
584 HGLOBAL WINAPI
LoadResource( HINSTANCE hModule
, HRSRC hRsrc
)
589 TRACE( "%p %p\n", hModule
, hRsrc
);
591 if (!hRsrc
) return 0;
592 if (!hModule
) hModule
= GetModuleHandleA( NULL
);
593 status
= LdrAccessResource( hModule
, (IMAGE_RESOURCE_DATA_ENTRY
*)hRsrc
, &ret
, NULL
);
594 if (status
!= STATUS_SUCCESS
) SetLastError( RtlNtStatusToDosError(status
) );
599 /**********************************************************************
600 * LockResource (KERNEL32.@)
602 LPVOID WINAPI
LockResource( HGLOBAL handle
)
608 /**********************************************************************
609 * FreeResource (KERNEL32.@)
611 BOOL WINAPI
FreeResource( HGLOBAL handle
)
617 /**********************************************************************
618 * SizeofResource (KERNEL32.@)
620 DWORD WINAPI
SizeofResource( HINSTANCE hModule
, HRSRC hRsrc
)
622 if (!hRsrc
) return 0;
623 return ((PIMAGE_RESOURCE_DATA_ENTRY
)hRsrc
)->Size
;
627 * Data structure for updating resources.
628 * Type/Name/Language is a keyset for accessing resource data.
630 * QUEUEDUPDATES (root) ->
631 * list of struct resource_dir_entry (Type) ->
632 * list of struct resource_dir_entry (Name) ->
633 * list of struct resource_data Language + Data
640 BOOL bDeleteExistingResources
;
644 /* this structure is shared for types and names */
645 struct resource_dir_entry
{
648 struct list children
;
651 /* this structure is the leaf */
652 struct resource_data
{
660 static int resource_strcmp( LPCWSTR a
, LPCWSTR b
)
664 if (!IS_INTRESOURCE( a
) && !IS_INTRESOURCE( b
) )
665 return lstrcmpW( a
, b
);
666 /* strings come before ids */
667 if (!IS_INTRESOURCE( a
) && IS_INTRESOURCE( b
))
669 if (!IS_INTRESOURCE( b
) && IS_INTRESOURCE( a
))
671 return ( a
< b
) ? -1 : 1;
674 static struct resource_dir_entry
*find_resource_dir_entry( struct list
*dir
, LPCWSTR id
)
676 struct resource_dir_entry
*ent
;
678 /* match either IDs or strings */
679 LIST_FOR_EACH_ENTRY( ent
, dir
, struct resource_dir_entry
, entry
)
680 if (!resource_strcmp( id
, ent
->id
))
686 static struct resource_data
*find_resource_data( struct list
*dir
, LANGID lang
)
688 struct resource_data
*res_data
;
690 /* match only languages here */
691 LIST_FOR_EACH_ENTRY( res_data
, dir
, struct resource_data
, entry
)
692 if ( lang
== res_data
->lang
)
698 static void add_resource_dir_entry( struct list
*dir
, struct resource_dir_entry
*resdir
)
700 struct resource_dir_entry
*ent
;
702 LIST_FOR_EACH_ENTRY( ent
, dir
, struct resource_dir_entry
, entry
)
704 if (0>resource_strcmp( ent
->id
, resdir
->id
))
707 list_add_before( &ent
->entry
, &resdir
->entry
);
710 list_add_tail( dir
, &resdir
->entry
);
713 static void add_resource_data_entry( struct list
*dir
, struct resource_data
*resdata
)
715 struct resource_data
*ent
;
717 LIST_FOR_EACH_ENTRY( ent
, dir
, struct resource_data
, entry
)
719 if (ent
->lang
< resdata
->lang
)
722 list_add_before( &ent
->entry
, &resdata
->entry
);
725 list_add_tail( dir
, &resdata
->entry
);
728 static LPWSTR
res_strdupW( LPCWSTR str
)
733 if (IS_INTRESOURCE(str
))
734 return (LPWSTR
) (UINT_PTR
) LOWORD(str
);
735 len
= (lstrlenW( str
) + 1) * sizeof (WCHAR
);
736 ret
= HeapAlloc( GetProcessHeap(), 0, len
);
737 memcpy( ret
, str
, len
);
741 static void res_free_str( LPWSTR str
)
743 if (!IS_INTRESOURCE(str
))
744 HeapFree( GetProcessHeap(), 0, str
);
747 static BOOL
update_add_resource( QUEUEDUPDATES
*updates
, LPCWSTR Type
, LPCWSTR Name
,
748 LANGID Lang
, struct resource_data
*resdata
,
749 BOOL overwrite_existing
)
751 struct resource_dir_entry
*restype
, *resname
;
752 struct resource_data
*existing
;
754 TRACE("%p %s %s %p %d\n", updates
,
755 debugstr_w(Type
), debugstr_w(Name
), resdata
, overwrite_existing
);
757 restype
= find_resource_dir_entry( &updates
->root
, Type
);
760 restype
= HeapAlloc( GetProcessHeap(), 0, sizeof *restype
);
761 restype
->id
= res_strdupW( Type
);
762 list_init( &restype
->children
);
763 add_resource_dir_entry( &updates
->root
, restype
);
766 resname
= find_resource_dir_entry( &restype
->children
, Name
);
769 resname
= HeapAlloc( GetProcessHeap(), 0, sizeof *resname
);
770 resname
->id
= res_strdupW( Name
);
771 list_init( &resname
->children
);
772 add_resource_dir_entry( &restype
->children
, resname
);
776 * If there's an existing resource entry with matching (Type,Name,Language)
777 * it needs to be removed before adding the new data.
779 existing
= find_resource_data( &resname
->children
, Lang
);
782 if (!overwrite_existing
)
784 list_remove( &existing
->entry
);
785 HeapFree( GetProcessHeap(), 0, existing
);
789 add_resource_data_entry( &resname
->children
, resdata
);
794 static struct resource_data
*allocate_resource_data( WORD Language
, DWORD codepage
,
795 LPVOID lpData
, DWORD cbData
, BOOL copy_data
)
797 struct resource_data
*resdata
;
799 if (!lpData
|| !cbData
)
802 resdata
= HeapAlloc( GetProcessHeap(), 0, sizeof *resdata
+ (copy_data
? cbData
: 0) );
805 resdata
->lang
= Language
;
806 resdata
->codepage
= codepage
;
807 resdata
->cbData
= cbData
;
810 resdata
->lpData
= &resdata
[1];
811 memcpy( resdata
->lpData
, lpData
, cbData
);
814 resdata
->lpData
= lpData
;
820 static void free_resource_directory( struct list
*head
, int level
)
822 struct list
*ptr
= NULL
;
824 while ((ptr
= list_head( head
)))
829 struct resource_dir_entry
*ent
;
831 ent
= LIST_ENTRY( ptr
, struct resource_dir_entry
, entry
);
832 res_free_str( ent
->id
);
833 free_resource_directory( &ent
->children
, level
- 1 );
834 HeapFree(GetProcessHeap(), 0, ent
);
838 struct resource_data
*data
;
840 data
= LIST_ENTRY( ptr
, struct resource_data
, entry
);
841 HeapFree( GetProcessHeap(), 0, data
);
846 static IMAGE_NT_HEADERS
*get_nt_header( void *base
, DWORD mapping_size
)
848 IMAGE_NT_HEADERS
*nt
;
849 IMAGE_DOS_HEADER
*dos
;
851 if (mapping_size
<sizeof (*dos
))
855 if (dos
->e_magic
!= IMAGE_DOS_SIGNATURE
)
858 if ((dos
->e_lfanew
+ sizeof (*nt
)) > mapping_size
)
861 nt
= (void*) ((BYTE
*)base
+ dos
->e_lfanew
);
863 if (nt
->Signature
!= IMAGE_NT_SIGNATURE
)
869 static IMAGE_SECTION_HEADER
*get_section_header( void *base
, DWORD mapping_size
, DWORD
*num_sections
)
871 IMAGE_NT_HEADERS
*nt
;
874 nt
= get_nt_header( base
, mapping_size
);
878 /* check that we don't go over the end of the file accessing the sections */
879 section_ofs
= FIELD_OFFSET(IMAGE_NT_HEADERS
, OptionalHeader
) + nt
->FileHeader
.SizeOfOptionalHeader
;
880 if ((nt
->FileHeader
.NumberOfSections
* sizeof (IMAGE_SECTION_HEADER
) + section_ofs
) > mapping_size
)
884 *num_sections
= nt
->FileHeader
.NumberOfSections
;
886 /* from here we have a valid PE exe to update */
887 return (void*) ((BYTE
*)nt
+ section_ofs
);
890 static BOOL
check_pe_exe( HANDLE file
, QUEUEDUPDATES
*updates
)
892 const IMAGE_NT_HEADERS32
*nt
;
893 const IMAGE_NT_HEADERS64
*nt64
;
894 const IMAGE_SECTION_HEADER
*sec
;
895 const IMAGE_DATA_DIRECTORY
*dd
;
898 DWORD mapping_size
, num_sections
= 0;
901 mapping_size
= GetFileSize( file
, NULL
);
903 mapping
= CreateFileMappingW( file
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
907 base
= MapViewOfFile( mapping
, FILE_MAP_READ
, 0, 0, mapping_size
);
911 nt
= (IMAGE_NT_HEADERS32
*)get_nt_header( base
, mapping_size
);
915 nt64
= (IMAGE_NT_HEADERS64
*)nt
;
916 dd
= &nt
->OptionalHeader
.DataDirectory
[0];
917 if (nt
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
918 dd
= &nt64
->OptionalHeader
.DataDirectory
[0];
920 TRACE("resources: %08x %08x\n",
921 dd
[IMAGE_DIRECTORY_ENTRY_RESOURCE
].VirtualAddress
,
922 dd
[IMAGE_DIRECTORY_ENTRY_RESOURCE
].Size
);
924 sec
= get_section_header( base
, mapping_size
, &num_sections
);
932 UnmapViewOfFile( base
);
934 CloseHandle( mapping
);
939 struct resource_size_info
{
943 DWORD data_entry_ofs
;
949 struct mapping_info
{
956 static const IMAGE_SECTION_HEADER
*section_from_rva( void *base
, DWORD mapping_size
, DWORD rva
)
958 const IMAGE_SECTION_HEADER
*sec
;
959 DWORD num_sections
= 0;
962 sec
= get_section_header( base
, mapping_size
, &num_sections
);
966 for (i
=num_sections
-1; i
>=0; i
--)
968 if (sec
[i
].VirtualAddress
<= rva
&&
969 rva
<= (DWORD
)sec
[i
].VirtualAddress
+ sec
[i
].SizeOfRawData
)
978 static void *address_from_rva( void *base
, DWORD mapping_size
, DWORD rva
, DWORD len
)
980 const IMAGE_SECTION_HEADER
*sec
;
982 sec
= section_from_rva( base
, mapping_size
, rva
);
986 if (rva
+ len
<= (DWORD
)sec
->VirtualAddress
+ sec
->SizeOfRawData
)
987 return (void*)((LPBYTE
) base
+ (sec
->PointerToRawData
+ rva
- sec
->VirtualAddress
));
992 static LPWSTR
resource_dup_string( const IMAGE_RESOURCE_DIRECTORY
*root
, const IMAGE_RESOURCE_DIRECTORY_ENTRY
*entry
)
994 const IMAGE_RESOURCE_DIR_STRING_U
* string
;
997 if (!entry
->u
.s
.NameIsString
)
998 return UIntToPtr(entry
->u
.Id
);
1000 string
= (const IMAGE_RESOURCE_DIR_STRING_U
*) (((const char *)root
) + entry
->u
.s
.NameOffset
);
1001 s
= HeapAlloc(GetProcessHeap(), 0, (string
->Length
+ 1)*sizeof (WCHAR
) );
1002 memcpy( s
, string
->NameString
, (string
->Length
+ 1)*sizeof (WCHAR
) );
1003 s
[string
->Length
] = 0;
1008 /* this function is based on the code in winedump's pe.c */
1009 static BOOL
enumerate_mapped_resources( QUEUEDUPDATES
*updates
,
1010 void *base
, DWORD mapping_size
,
1011 const IMAGE_RESOURCE_DIRECTORY
*root
)
1013 const IMAGE_RESOURCE_DIRECTORY
*namedir
, *langdir
;
1014 const IMAGE_RESOURCE_DIRECTORY_ENTRY
*e1
, *e2
, *e3
;
1015 const IMAGE_RESOURCE_DATA_ENTRY
*data
;
1018 TRACE("version (%d.%d) %d named %d id entries\n",
1019 root
->MajorVersion
, root
->MinorVersion
, root
->NumberOfNamedEntries
, root
->NumberOfIdEntries
);
1021 for (i
= 0; i
< root
->NumberOfNamedEntries
+ root
->NumberOfIdEntries
; i
++)
1025 e1
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(root
+ 1) + i
;
1027 Type
= resource_dup_string( root
, e1
);
1029 namedir
= (const IMAGE_RESOURCE_DIRECTORY
*)((const char *)root
+ e1
->u2
.s2
.OffsetToDirectory
);
1030 for (j
= 0; j
< namedir
->NumberOfNamedEntries
+ namedir
->NumberOfIdEntries
; j
++)
1034 e2
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(namedir
+ 1) + j
;
1036 Name
= resource_dup_string( root
, e2
);
1038 langdir
= (const IMAGE_RESOURCE_DIRECTORY
*)((const char *)root
+ e2
->u2
.s2
.OffsetToDirectory
);
1039 for (k
= 0; k
< langdir
->NumberOfNamedEntries
+ langdir
->NumberOfIdEntries
; k
++)
1043 struct resource_data
*resdata
;
1045 e3
= (const IMAGE_RESOURCE_DIRECTORY_ENTRY
*)(langdir
+ 1) + k
;
1049 data
= (const IMAGE_RESOURCE_DATA_ENTRY
*)((const char *)root
+ e3
->u2
.OffsetToData
);
1051 p
= address_from_rva( base
, mapping_size
, data
->OffsetToData
, data
->Size
);
1053 resdata
= allocate_resource_data( Lang
, data
->CodePage
, p
, data
->Size
, FALSE
);
1056 if (!update_add_resource( updates
, Type
, Name
, Lang
, resdata
, FALSE
))
1057 HeapFree( GetProcessHeap(), 0, resdata
);
1060 res_free_str( Name
);
1062 res_free_str( Type
);
1068 static BOOL
read_mapped_resources( QUEUEDUPDATES
*updates
, void *base
, DWORD mapping_size
)
1070 const IMAGE_RESOURCE_DIRECTORY
*root
;
1071 const IMAGE_NT_HEADERS
*nt
;
1072 const IMAGE_SECTION_HEADER
*sec
;
1073 DWORD num_sections
= 0, i
;
1075 nt
= get_nt_header( base
, mapping_size
);
1079 sec
= get_section_header( base
, mapping_size
, &num_sections
);
1083 for (i
=0; i
<num_sections
; i
++)
1084 if (!memcmp(sec
[i
].Name
, ".rsrc", 6))
1087 if (i
== num_sections
)
1090 /* check the resource data is inside the mapping */
1091 if (sec
[i
].PointerToRawData
> mapping_size
||
1092 (sec
[i
].PointerToRawData
+ sec
[i
].SizeOfRawData
) > mapping_size
)
1095 TRACE("found .rsrc at %08x, size %08x\n", sec
[i
].PointerToRawData
, sec
[i
].SizeOfRawData
);
1097 if (!sec
[i
].PointerToRawData
|| sec
[i
].SizeOfRawData
< sizeof(IMAGE_RESOURCE_DIRECTORY
))
1100 root
= (void*) ((BYTE
*)base
+ sec
[i
].PointerToRawData
);
1101 enumerate_mapped_resources( updates
, base
, mapping_size
, root
);
1106 static BOOL
map_file_into_memory( struct mapping_info
*mi
)
1108 DWORD page_attr
, perm
;
1113 page_attr
= PAGE_READWRITE
;
1114 perm
= FILE_MAP_WRITE
| FILE_MAP_READ
;
1118 page_attr
= PAGE_READONLY
;
1119 perm
= FILE_MAP_READ
;
1122 mapping
= CreateFileMappingW( mi
->file
, NULL
, page_attr
, 0, 0, NULL
);
1123 if (!mapping
) return FALSE
;
1125 mi
->base
= MapViewOfFile( mapping
, perm
, 0, 0, mi
->size
);
1126 CloseHandle( mapping
);
1128 return mi
->base
!= NULL
;
1131 static BOOL
unmap_file_from_memory( struct mapping_info
*mi
)
1134 UnmapViewOfFile( mi
->base
);
1139 static void destroy_mapping( struct mapping_info
*mi
)
1143 unmap_file_from_memory( mi
);
1145 CloseHandle( mi
->file
);
1146 HeapFree( GetProcessHeap(), 0, mi
);
1149 static struct mapping_info
*create_mapping( LPCWSTR name
, BOOL rw
)
1151 struct mapping_info
*mi
;
1153 mi
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof *mi
);
1157 mi
->read_write
= rw
;
1159 mi
->file
= CreateFileW( name
, GENERIC_READ
| (rw
? GENERIC_WRITE
: 0),
1160 0, NULL
, OPEN_EXISTING
, 0, 0 );
1162 if (mi
->file
!= INVALID_HANDLE_VALUE
)
1164 mi
->size
= GetFileSize( mi
->file
, NULL
);
1166 if (map_file_into_memory( mi
))
1169 destroy_mapping( mi
);
1173 static BOOL
resize_mapping( struct mapping_info
*mi
, DWORD new_size
)
1175 if (!unmap_file_from_memory( mi
))
1178 /* change the file size */
1179 SetFilePointer( mi
->file
, new_size
, NULL
, FILE_BEGIN
);
1180 if (!SetEndOfFile( mi
->file
))
1182 ERR("failed to set file size to %08x\n", new_size
);
1186 mi
->size
= new_size
;
1188 return map_file_into_memory( mi
);
1191 static void get_resource_sizes( QUEUEDUPDATES
*updates
, struct resource_size_info
*si
)
1193 struct resource_dir_entry
*types
, *names
;
1194 struct resource_data
*data
;
1195 DWORD num_types
= 0, num_names
= 0, num_langs
= 0, strings_size
= 0, data_size
= 0;
1197 memset( si
, 0, sizeof *si
);
1199 LIST_FOR_EACH_ENTRY( types
, &updates
->root
, struct resource_dir_entry
, entry
)
1202 if (!IS_INTRESOURCE( types
->id
))
1203 strings_size
+= sizeof (WORD
) + lstrlenW( types
->id
)*sizeof (WCHAR
);
1205 LIST_FOR_EACH_ENTRY( names
, &types
->children
, struct resource_dir_entry
, entry
)
1209 if (!IS_INTRESOURCE( names
->id
))
1210 strings_size
+= sizeof (WORD
) + lstrlenW( names
->id
)*sizeof (WCHAR
);
1212 LIST_FOR_EACH_ENTRY( data
, &names
->children
, struct resource_data
, entry
)
1215 data_size
+= (data
->cbData
+ 3) & ~3;
1220 /* names are at the end of the types */
1221 si
->names_ofs
= sizeof (IMAGE_RESOURCE_DIRECTORY
) +
1222 num_types
* sizeof (IMAGE_RESOURCE_DIRECTORY_ENTRY
);
1224 /* language directories are at the end of the names */
1225 si
->langs_ofs
= si
->names_ofs
+
1226 num_types
* sizeof (IMAGE_RESOURCE_DIRECTORY
) +
1227 num_names
* sizeof (IMAGE_RESOURCE_DIRECTORY_ENTRY
);
1229 si
->data_entry_ofs
= si
->langs_ofs
+
1230 num_names
* sizeof (IMAGE_RESOURCE_DIRECTORY
) +
1231 num_langs
* sizeof (IMAGE_RESOURCE_DIRECTORY_ENTRY
);
1233 si
->strings_ofs
= si
->data_entry_ofs
+
1234 num_langs
* sizeof (IMAGE_RESOURCE_DATA_ENTRY
);
1236 si
->data_ofs
= si
->strings_ofs
+ ((strings_size
+ 3) & ~3);
1238 si
->total_size
= si
->data_ofs
+ data_size
;
1240 TRACE("names %08x langs %08x data entries %08x strings %08x data %08x total %08x\n",
1241 si
->names_ofs
, si
->langs_ofs
, si
->data_entry_ofs
,
1242 si
->strings_ofs
, si
->data_ofs
, si
->total_size
);
1245 static void res_write_padding( BYTE
*res_base
, DWORD size
)
1247 static const BYTE pad
[] = {
1248 'P','A','D','D','I','N','G','X','X','P','A','D','D','I','N','G' };
1251 for ( i
= 0; i
< size
/ sizeof pad
; i
++ )
1252 memcpy( &res_base
[i
*sizeof pad
], pad
, sizeof pad
);
1253 memcpy( &res_base
[i
*sizeof pad
], pad
, size
%sizeof pad
);
1256 static BOOL
write_resources( QUEUEDUPDATES
*updates
, LPBYTE base
, struct resource_size_info
*si
, DWORD rva
)
1258 struct resource_dir_entry
*types
, *names
;
1259 struct resource_data
*data
;
1260 IMAGE_RESOURCE_DIRECTORY
*root
;
1262 TRACE("%p %p %p %08x\n", updates
, base
, si
, rva
);
1264 memset( base
, 0, si
->total_size
);
1266 /* the root entry always exists */
1267 root
= (IMAGE_RESOURCE_DIRECTORY
*) base
;
1268 memset( root
, 0, sizeof *root
);
1269 root
->MajorVersion
= 4;
1270 si
->types_ofs
= sizeof *root
;
1271 LIST_FOR_EACH_ENTRY( types
, &updates
->root
, struct resource_dir_entry
, entry
)
1273 IMAGE_RESOURCE_DIRECTORY_ENTRY
*e1
;
1274 IMAGE_RESOURCE_DIRECTORY
*namedir
;
1276 e1
= (IMAGE_RESOURCE_DIRECTORY_ENTRY
*) &base
[si
->types_ofs
];
1277 memset( e1
, 0, sizeof *e1
);
1278 if (!IS_INTRESOURCE( types
->id
))
1283 root
->NumberOfNamedEntries
++;
1284 e1
->u
.s
.NameIsString
= 1;
1285 e1
->u
.s
.NameOffset
= si
->strings_ofs
;
1287 strings
= (WCHAR
*) &base
[si
->strings_ofs
];
1288 len
= lstrlenW( types
->id
);
1290 memcpy( &strings
[1], types
->id
, len
* sizeof (WCHAR
) );
1291 si
->strings_ofs
+= (len
+ 1) * sizeof (WCHAR
);
1295 root
->NumberOfIdEntries
++;
1296 e1
->u
.Id
= LOWORD( types
->id
);
1298 e1
->u2
.s2
.OffsetToDirectory
= si
->names_ofs
;
1299 e1
->u2
.s2
.DataIsDirectory
= TRUE
;
1300 si
->types_ofs
+= sizeof (IMAGE_RESOURCE_DIRECTORY_ENTRY
);
1302 namedir
= (IMAGE_RESOURCE_DIRECTORY
*) &base
[si
->names_ofs
];
1303 memset( namedir
, 0, sizeof *namedir
);
1304 namedir
->MajorVersion
= 4;
1305 si
->names_ofs
+= sizeof (IMAGE_RESOURCE_DIRECTORY
);
1307 LIST_FOR_EACH_ENTRY( names
, &types
->children
, struct resource_dir_entry
, entry
)
1309 IMAGE_RESOURCE_DIRECTORY_ENTRY
*e2
;
1310 IMAGE_RESOURCE_DIRECTORY
*langdir
;
1312 e2
= (IMAGE_RESOURCE_DIRECTORY_ENTRY
*) &base
[si
->names_ofs
];
1313 memset( e2
, 0, sizeof *e2
);
1314 if (!IS_INTRESOURCE( names
->id
))
1319 namedir
->NumberOfNamedEntries
++;
1320 e2
->u
.s
.NameIsString
= 1;
1321 e2
->u
.s
.NameOffset
= si
->strings_ofs
;
1323 strings
= (WCHAR
*) &base
[si
->strings_ofs
];
1324 len
= lstrlenW( names
->id
);
1326 memcpy( &strings
[1], names
->id
, len
* sizeof (WCHAR
) );
1327 si
->strings_ofs
+= (len
+ 1) * sizeof (WCHAR
);
1331 namedir
->NumberOfIdEntries
++;
1332 e2
->u
.Id
= LOWORD( names
->id
);
1334 e2
->u2
.s2
.OffsetToDirectory
= si
->langs_ofs
;
1335 e2
->u2
.s2
.DataIsDirectory
= TRUE
;
1336 si
->names_ofs
+= sizeof (IMAGE_RESOURCE_DIRECTORY_ENTRY
);
1338 langdir
= (IMAGE_RESOURCE_DIRECTORY
*) &base
[si
->langs_ofs
];
1339 memset( langdir
, 0, sizeof *langdir
);
1340 langdir
->MajorVersion
= 4;
1341 si
->langs_ofs
+= sizeof (IMAGE_RESOURCE_DIRECTORY
);
1343 LIST_FOR_EACH_ENTRY( data
, &names
->children
, struct resource_data
, entry
)
1345 IMAGE_RESOURCE_DIRECTORY_ENTRY
*e3
;
1346 IMAGE_RESOURCE_DATA_ENTRY
*de
;
1349 e3
= (IMAGE_RESOURCE_DIRECTORY_ENTRY
*) &base
[si
->langs_ofs
];
1350 memset( e3
, 0, sizeof *e3
);
1351 langdir
->NumberOfIdEntries
++;
1352 e3
->u
.Id
= LOWORD( data
->lang
);
1353 e3
->u2
.OffsetToData
= si
->data_entry_ofs
;
1355 si
->langs_ofs
+= sizeof (IMAGE_RESOURCE_DIRECTORY_ENTRY
);
1357 /* write out all the data entries */
1358 de
= (IMAGE_RESOURCE_DATA_ENTRY
*) &base
[si
->data_entry_ofs
];
1359 memset( de
, 0, sizeof *de
);
1360 de
->OffsetToData
= si
->data_ofs
+ rva
;
1361 de
->Size
= data
->cbData
;
1362 de
->CodePage
= data
->codepage
;
1363 si
->data_entry_ofs
+= sizeof (IMAGE_RESOURCE_DATA_ENTRY
);
1365 /* write out the resource data */
1366 memcpy( &base
[si
->data_ofs
], data
->lpData
, data
->cbData
);
1367 si
->data_ofs
+= data
->cbData
;
1369 pad_size
= (-si
->data_ofs
)&3;
1370 res_write_padding( &base
[si
->data_ofs
], pad_size
);
1371 si
->data_ofs
+= pad_size
;
1381 * Assumes that the resources are in .rsrc
1382 * and .rsrc is the last section in the file.
1383 * Not sure whether updating resources will other cases on Windows.
1384 * If the resources lie in a section containing other data,
1385 * resizing that section could possibly cause trouble.
1386 * If the section with the resources isn't last, the remaining
1387 * sections need to be moved down in the file, and the section header
1388 * would need to be adjusted.
1389 * If we needed to add a section, what would we name it?
1390 * If we needed to add a section and there wasn't space in the file
1391 * header, how would that work?
1392 * Seems that at least some of these cases can't be handled properly.
1394 static IMAGE_SECTION_HEADER
*get_resource_section( void *base
, DWORD mapping_size
)
1396 IMAGE_SECTION_HEADER
*sec
;
1397 IMAGE_NT_HEADERS
*nt
;
1398 DWORD i
, num_sections
= 0;
1400 nt
= get_nt_header( base
, mapping_size
);
1404 sec
= get_section_header( base
, mapping_size
, &num_sections
);
1408 /* find the resources section */
1409 for (i
=0; i
<num_sections
; i
++)
1410 if (!memcmp(sec
[i
].Name
, ".rsrc", 6))
1413 if (i
== num_sections
)
1419 static DWORD
get_init_data_size( void *base
, DWORD mapping_size
)
1421 DWORD i
, sz
= 0, num_sections
= 0;
1422 IMAGE_SECTION_HEADER
*s
;
1424 s
= get_section_header( base
, mapping_size
, &num_sections
);
1426 for (i
=0; i
<num_sections
; i
++)
1427 if (s
[i
].Characteristics
& IMAGE_SCN_CNT_INITIALIZED_DATA
)
1428 sz
+= s
[i
].SizeOfRawData
;
1430 TRACE("size = %08x\n", sz
);
1435 static BOOL
write_raw_resources( QUEUEDUPDATES
*updates
)
1437 static const WCHAR prefix
[] = { 'r','e','s','u',0 };
1438 WCHAR tempdir
[MAX_PATH
], tempfile
[MAX_PATH
];
1439 DWORD i
, section_size
;
1441 IMAGE_SECTION_HEADER
*sec
;
1442 IMAGE_NT_HEADERS32
*nt
;
1443 IMAGE_NT_HEADERS64
*nt64
;
1444 struct resource_size_info res_size
;
1446 struct mapping_info
*read_map
= NULL
, *write_map
= NULL
;
1447 DWORD PeSectionAlignment
, PeFileAlignment
, PeSizeOfImage
;
1449 /* copy the exe to a temp file then update the temp file... */
1451 if (!GetTempPathW( MAX_PATH
, tempdir
))
1454 if (!GetTempFileNameW( tempdir
, prefix
, 0, tempfile
))
1457 if (!CopyFileW( updates
->pFileName
, tempfile
, FALSE
))
1460 TRACE("tempfile %s\n", debugstr_w(tempfile
));
1462 if (!updates
->bDeleteExistingResources
)
1464 read_map
= create_mapping( updates
->pFileName
, FALSE
);
1468 ret
= read_mapped_resources( updates
, read_map
->base
, read_map
->size
);
1471 ERR("failed to read existing resources\n");
1476 write_map
= create_mapping( tempfile
, TRUE
);
1480 nt
= (IMAGE_NT_HEADERS32
*)get_nt_header( write_map
->base
, write_map
->size
);
1484 nt64
= (IMAGE_NT_HEADERS64
*)nt
;
1485 if (nt
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR64_MAGIC
) {
1486 PeSectionAlignment
= nt64
->OptionalHeader
.SectionAlignment
;
1487 PeFileAlignment
= nt64
->OptionalHeader
.FileAlignment
;
1488 PeSizeOfImage
= nt64
->OptionalHeader
.SizeOfImage
;
1490 PeSectionAlignment
= nt
->OptionalHeader
.SectionAlignment
;
1491 PeFileAlignment
= nt
->OptionalHeader
.FileAlignment
;
1492 PeSizeOfImage
= nt
->OptionalHeader
.SizeOfImage
;
1495 if ((LONG
)PeSectionAlignment
<= 0)
1497 ERR("invalid section alignment %08x\n", PeSectionAlignment
);
1501 if ((LONG
)PeFileAlignment
<= 0)
1503 ERR("invalid file alignment %08x\n", PeFileAlignment
);
1507 sec
= get_resource_section( write_map
->base
, write_map
->size
);
1508 if (!sec
) /* no section, add one */
1512 sec
= get_section_header( write_map
->base
, write_map
->size
, &num_sections
);
1516 sec
+= num_sections
;
1517 nt
->FileHeader
.NumberOfSections
++;
1519 memset( sec
, 0, sizeof *sec
);
1520 memcpy( sec
->Name
, ".rsrc", 5 );
1521 sec
->Characteristics
= IMAGE_SCN_CNT_INITIALIZED_DATA
| IMAGE_SCN_MEM_READ
;
1522 sec
->VirtualAddress
= PeSizeOfImage
;
1525 if (!sec
->PointerToRawData
) /* empty section */
1527 sec
->PointerToRawData
= write_map
->size
+ (-write_map
->size
) % PeFileAlignment
;
1528 sec
->SizeOfRawData
= 0;
1531 TRACE("before .rsrc at %08x, size %08x\n", sec
->PointerToRawData
, sec
->SizeOfRawData
);
1533 get_resource_sizes( updates
, &res_size
);
1535 /* round up the section size */
1536 section_size
= res_size
.total_size
;
1537 section_size
+= (-section_size
) % PeFileAlignment
;
1539 TRACE("requires %08x (%08x) bytes\n", res_size
.total_size
, section_size
);
1541 /* check if the file size needs to be changed */
1542 if (section_size
!= sec
->SizeOfRawData
)
1544 DWORD old_size
= write_map
->size
;
1545 DWORD virtual_section_size
= res_size
.total_size
+ (-res_size
.total_size
) % PeSectionAlignment
;
1546 int delta
= section_size
- (sec
->SizeOfRawData
+ (-sec
->SizeOfRawData
) % PeFileAlignment
);
1547 int rva_delta
= virtual_section_size
-
1548 (sec
->Misc
.VirtualSize
+ (-sec
->Misc
.VirtualSize
) % PeSectionAlignment
);
1549 /* when new section is added it could end past current mapping size */
1550 BOOL rsrc_is_last
= sec
->PointerToRawData
+ sec
->SizeOfRawData
>= old_size
;
1551 /* align .rsrc size when possible */
1552 DWORD mapping_size
= rsrc_is_last
? sec
->PointerToRawData
+ section_size
: old_size
+ delta
;
1554 /* postpone file truncation if there are some data to be moved down from file end */
1555 BOOL resize_after
= mapping_size
< old_size
&& !rsrc_is_last
;
1557 TRACE("file size %08x -> %08x\n", old_size
, mapping_size
);
1561 /* unmap the file before changing the file size */
1562 ret
= resize_mapping( write_map
, mapping_size
);
1564 /* get the pointers again - they might be different after remapping */
1565 nt
= (IMAGE_NT_HEADERS32
*)get_nt_header( write_map
->base
, mapping_size
);
1568 ERR("couldn't get NT header\n");
1571 nt64
= (IMAGE_NT_HEADERS64
*)nt
;
1573 sec
= get_resource_section( write_map
->base
, mapping_size
);
1578 if (!rsrc_is_last
) /* not last section, relocate trailing sections */
1580 IMAGE_SECTION_HEADER
*s
;
1581 DWORD tail_start
= sec
->PointerToRawData
+ sec
->SizeOfRawData
;
1582 DWORD i
, num_sections
= 0;
1584 memmove( (char*)write_map
->base
+ tail_start
+ delta
, (char*)write_map
->base
+ tail_start
, old_size
- tail_start
);
1586 s
= get_section_header( write_map
->base
, mapping_size
, &num_sections
);
1588 for (i
=0; i
<num_sections
; i
++)
1590 if (s
[i
].PointerToRawData
> sec
->PointerToRawData
)
1592 s
[i
].PointerToRawData
+= delta
;
1593 s
[i
].VirtualAddress
+= rva_delta
;
1600 ret
= resize_mapping( write_map
, mapping_size
);
1602 nt
= (IMAGE_NT_HEADERS32
*)get_nt_header( write_map
->base
, mapping_size
);
1605 ERR("couldn't get NT header\n");
1608 nt64
= (IMAGE_NT_HEADERS64
*)nt
;
1610 sec
= get_resource_section( write_map
->base
, mapping_size
);
1615 /* adjust the PE header information */
1616 sec
->SizeOfRawData
= section_size
;
1617 sec
->Misc
.VirtualSize
= virtual_section_size
;
1618 if (nt
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR64_MAGIC
) {
1619 nt64
->OptionalHeader
.SizeOfImage
+= rva_delta
;
1620 nt64
->OptionalHeader
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_RESOURCE
].VirtualAddress
= sec
->VirtualAddress
;
1621 nt64
->OptionalHeader
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_RESOURCE
].Size
= res_size
.total_size
;
1622 nt64
->OptionalHeader
.SizeOfInitializedData
= get_init_data_size( write_map
->base
, mapping_size
);
1624 for (i
=0; i
<nt64
->OptionalHeader
.NumberOfRvaAndSizes
; i
++)
1625 if (nt64
->OptionalHeader
.DataDirectory
[i
].VirtualAddress
> sec
->VirtualAddress
)
1626 nt64
->OptionalHeader
.DataDirectory
[i
].VirtualAddress
+= rva_delta
;
1628 nt
->OptionalHeader
.SizeOfImage
+= rva_delta
;
1629 nt
->OptionalHeader
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_RESOURCE
].VirtualAddress
= sec
->VirtualAddress
;
1630 nt
->OptionalHeader
.DataDirectory
[IMAGE_DIRECTORY_ENTRY_RESOURCE
].Size
= res_size
.total_size
;
1631 nt
->OptionalHeader
.SizeOfInitializedData
= get_init_data_size( write_map
->base
, mapping_size
);
1633 for (i
=0; i
<nt
->OptionalHeader
.NumberOfRvaAndSizes
; i
++)
1634 if (nt
->OptionalHeader
.DataDirectory
[i
].VirtualAddress
> sec
->VirtualAddress
)
1635 nt
->OptionalHeader
.DataDirectory
[i
].VirtualAddress
+= rva_delta
;
1639 res_base
= (LPBYTE
) write_map
->base
+ sec
->PointerToRawData
;
1641 TRACE("base = %p offset = %08x\n", write_map
->base
, sec
->PointerToRawData
);
1643 ret
= write_resources( updates
, res_base
, &res_size
, sec
->VirtualAddress
);
1645 res_write_padding( res_base
+ res_size
.total_size
, section_size
- res_size
.total_size
);
1647 TRACE("after .rsrc at %08x, size %08x\n", sec
->PointerToRawData
, sec
->SizeOfRawData
);
1650 destroy_mapping( read_map
);
1651 destroy_mapping( write_map
);
1654 ret
= CopyFileW( tempfile
, updates
->pFileName
, FALSE
);
1656 DeleteFileW( tempfile
);
1661 /***********************************************************************
1662 * BeginUpdateResourceW (KERNEL32.@)
1664 HANDLE WINAPI
BeginUpdateResourceW( LPCWSTR pFileName
, BOOL bDeleteExistingResources
)
1666 QUEUEDUPDATES
*updates
= NULL
;
1667 HANDLE hUpdate
, file
, ret
= NULL
;
1669 TRACE("%s, %d\n", debugstr_w(pFileName
), bDeleteExistingResources
);
1671 hUpdate
= GlobalAlloc(GHND
, sizeof(QUEUEDUPDATES
));
1675 updates
= GlobalLock(hUpdate
);
1678 list_init( &updates
->root
);
1679 updates
->bDeleteExistingResources
= bDeleteExistingResources
;
1680 updates
->pFileName
= HeapAlloc(GetProcessHeap(), 0, (lstrlenW(pFileName
)+1)*sizeof(WCHAR
));
1681 if (updates
->pFileName
)
1683 lstrcpyW(updates
->pFileName
, pFileName
);
1685 file
= CreateFileW( pFileName
, GENERIC_READ
| GENERIC_WRITE
,
1686 0, NULL
, OPEN_EXISTING
, 0, 0 );
1688 /* if resources are deleted, only the file's presence is checked */
1689 if (file
!= INVALID_HANDLE_VALUE
&&
1690 (bDeleteExistingResources
|| check_pe_exe( file
, updates
)))
1693 HeapFree( GetProcessHeap(), 0, updates
->pFileName
);
1695 CloseHandle( file
);
1697 GlobalUnlock(hUpdate
);
1701 GlobalFree(hUpdate
);
1707 /***********************************************************************
1708 * BeginUpdateResourceA (KERNEL32.@)
1710 HANDLE WINAPI
BeginUpdateResourceA( LPCSTR pFileName
, BOOL bDeleteExistingResources
)
1712 UNICODE_STRING FileNameW
;
1714 RtlCreateUnicodeStringFromAsciiz(&FileNameW
, pFileName
);
1715 ret
= BeginUpdateResourceW(FileNameW
.Buffer
, bDeleteExistingResources
);
1716 RtlFreeUnicodeString(&FileNameW
);
1721 /***********************************************************************
1722 * EndUpdateResourceW (KERNEL32.@)
1724 BOOL WINAPI
EndUpdateResourceW( HANDLE hUpdate
, BOOL fDiscard
)
1726 QUEUEDUPDATES
*updates
;
1729 TRACE("%p %d\n", hUpdate
, fDiscard
);
1731 updates
= GlobalLock(hUpdate
);
1735 ret
= fDiscard
|| write_raw_resources( updates
);
1737 free_resource_directory( &updates
->root
, 2 );
1739 HeapFree( GetProcessHeap(), 0, updates
->pFileName
);
1740 GlobalUnlock( hUpdate
);
1741 GlobalFree( hUpdate
);
1747 /***********************************************************************
1748 * EndUpdateResourceA (KERNEL32.@)
1750 BOOL WINAPI
EndUpdateResourceA( HANDLE hUpdate
, BOOL fDiscard
)
1752 return EndUpdateResourceW(hUpdate
, fDiscard
);
1756 /***********************************************************************
1757 * UpdateResourceW (KERNEL32.@)
1759 BOOL WINAPI
UpdateResourceW( HANDLE hUpdate
, LPCWSTR lpType
, LPCWSTR lpName
,
1760 WORD wLanguage
, LPVOID lpData
, DWORD cbData
)
1762 QUEUEDUPDATES
*updates
;
1765 TRACE("%p %s %s %08x %p %d\n", hUpdate
,
1766 debugstr_w(lpType
), debugstr_w(lpName
), wLanguage
, lpData
, cbData
);
1768 updates
= GlobalLock(hUpdate
);
1771 if (lpData
== NULL
&& cbData
== 0) /* remove resource */
1773 ret
= update_add_resource( updates
, lpType
, lpName
, wLanguage
, NULL
, TRUE
);
1777 struct resource_data
*data
;
1778 data
= allocate_resource_data( wLanguage
, 0, lpData
, cbData
, TRUE
);
1780 ret
= update_add_resource( updates
, lpType
, lpName
, wLanguage
, data
, TRUE
);
1782 GlobalUnlock(hUpdate
);
1788 /***********************************************************************
1789 * UpdateResourceA (KERNEL32.@)
1791 BOOL WINAPI
UpdateResourceA( HANDLE hUpdate
, LPCSTR lpType
, LPCSTR lpName
,
1792 WORD wLanguage
, LPVOID lpData
, DWORD cbData
)
1795 UNICODE_STRING TypeW
;
1796 UNICODE_STRING NameW
;
1797 if(IS_INTRESOURCE(lpType
))
1798 TypeW
.Buffer
= ULongToPtr(LOWORD(lpType
));
1800 RtlCreateUnicodeStringFromAsciiz(&TypeW
, lpType
);
1801 if(IS_INTRESOURCE(lpName
))
1802 NameW
.Buffer
= ULongToPtr(LOWORD(lpName
));
1804 RtlCreateUnicodeStringFromAsciiz(&NameW
, lpName
);
1805 ret
= UpdateResourceW(hUpdate
, TypeW
.Buffer
, NameW
.Buffer
, wLanguage
, lpData
, cbData
);
1806 if(!IS_INTRESOURCE(lpType
)) RtlFreeUnicodeString(&TypeW
);
1807 if(!IS_INTRESOURCE(lpName
)) RtlFreeUnicodeString(&NameW
);