-
Notifications
You must be signed in to change notification settings - Fork 27
/
winewrapper.c
179 lines (161 loc) · 5.26 KB
/
winewrapper.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/***********************************************************************
*
* Conversion of Windows path to Unix for .star file creation
*
*
***********************************************************************/
/***********************************************************************
*
* Copyright 2009 Free Software Foundation, Inc.
* Written by Paolo Bonzini.
*
* This file is part of GNU Smalltalk.
*
* GNU Smalltalk is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2, or (at your option) any later
* version.
*
* GNU Smalltalk is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* GNU Smalltalk; see the file COPYING. If not, write to the Free Software
* Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
***********************************************************************/
/* When cross-compiling under Wine, GNU Smalltalk will see Windows paths
and so it will try to pass them to the native zip program. This program
will find and convert such paths, so long as they are distinct
arguments in argv. */
#include <windows.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#ifdef _WIN64
#error Win64 is not supported. winewrapper must be compiled for Win32.
#endif
typedef char *wine_get_unix_file_name_t (const WCHAR *);
static wine_get_unix_file_name_t *wine_get_unix_file_name_ptr;
typedef WCHAR *wine_get_dos_file_name_t (const char *);
static wine_get_dos_file_name_t *wine_get_dos_file_name_ptr;
/* Based on the source code for winepath. */
static char *
maybe_convert_arg_to_unix (char *arg)
{
if (wine_get_unix_file_name_ptr
&& arg[0] != '-'
&& (strchr (arg, '\\') || (arg[0] && arg[1] == ':')))
{
int len;
WCHAR *dos_name_wide;
char *unix_name, *ret;
len = strlen (arg);
dos_name_wide = malloc (sizeof (WCHAR) * (len + 1));
MultiByteToWideChar(CP_ACP, 0, arg, -1, dos_name_wide, len + 1);
unix_name = wine_get_unix_file_name_ptr (dos_name_wide);
ret = strdup (unix_name);
free (dos_name_wide);
HeapFree (GetProcessHeap(), 0, unix_name);
return ret;
}
else
return arg;
}
static char *
maybe_convert_arg_to_dos (char *arg)
{
if (wine_get_dos_file_name_ptr
&& arg[0] != '-'
&& strchr (arg, '/'))
{
int len;
WCHAR *dos_name_wide;
char dos_name[MAX_PATH+1];
dos_name_wide = wine_get_dos_file_name_ptr (arg);
len = wcslen (dos_name_wide);
WideCharToMultiByte (CP_ACP, 0, dos_name_wide, -1, dos_name,
MAX_PATH, NULL, NULL);
HeapFree (GetProcessHeap(), 0, dos_name_wide);
return strdup (dos_name);
}
else
return arg;
}
/* What a mess! Wine does not honor _P_WAIT for Unix executables, so
we have to invoke the system calls manually. And since we have no
access to glibc, we have to do this the hard way. Luckily only
i386 is supported. */
int linux_spawnve(int dummy, const char *file, char *argv[], char *envp[])
{
#define SYS_fork 2
#define SYS_waitpid 7
#define SYS_execve 11
#define ASMFMT_0()
#define ASMFMT_1(arg1) \
, "b" (arg1)
#define ASMFMT_2(arg1, arg2) \
, "b" (arg1), "c" (arg2)
#define ASMFMT_3(arg1, arg2, arg3) \
, "b" (arg1), "c" (arg2), "d" (arg3)
#define ASMFMT_4(arg1, arg2, arg3, arg4) \
, "b" (arg1), "c" (arg2), "d" (arg3), "S" (arg4)
#define ASMFMT_5(arg1, arg2, arg3, arg4, arg5) \
, "b" (arg1), "c" (arg2), "d" (arg3), "S" (arg4), "D" (arg5)
#define INLINE_SYSCALL(name, nr, args...) ({ \
register unsigned int resultvar; \
asm volatile ("movl %1, %%eax; int $0x80" : "=a" (resultvar) : \
"i" (SYS_##name) ASMFMT_##nr(args) : "memory", "cc"); \
(int) resultvar; \
})
int pid = INLINE_SYSCALL (fork, 0);
if (pid == -1)
return -1;
if (pid == 0)
{
INLINE_SYSCALL (execve, 3, file, argv, envp);
return 124;
}
else
{
int status;
INLINE_SYSCALL (waitpid, 3, pid, &status, 0);
return 0;
}
}
int
main (int argc, char **argv)
{
int i;
int ret, cmdlen;
char *cmd = argv[1];
wine_get_unix_file_name_ptr = (wine_get_unix_file_name_t *)
GetProcAddress (GetModuleHandle ("KERNEL32"), "wine_get_unix_file_name");
wine_get_dos_file_name_ptr = (wine_get_dos_file_name_t *)
GetProcAddress (GetModuleHandle ("KERNEL32"), "wine_get_dos_file_name");
cmdlen = strlen (cmd);
if (cmdlen > 4 && stricmp (cmd + cmdlen - 4, ".exe") == 0)
{
for (i = 1; --argc > 0; i++)
argv[i - 1] = maybe_convert_arg_to_dos (argv[i]);
argv[i - 1] = NULL;
ret = _spawnv (_P_WAIT, argv[0], (const char *const*) argv);
}
else
{
argv[0] = argv[1];
for (i = 2; --argc > 1; i++)
argv[i - 1] = maybe_convert_arg_to_unix (argv[i]);
argv[i - 1] = NULL;
ret = linux_spawnve (_P_WAIT, argv[0], argv, environ);
}
if (ret == -1)
{
perror ("winewrapper");
ret = 124;
}
exit (ret);
}