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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
|
/*
* Cygwin extras
*/
#include "EXTERN.h"
#include "perl.h"
#undef USE_DYNAMIC_LOADING
#include "XSUB.h"
#include <unistd.h>
#include <process.h>
#include <sys/cygwin.h>
#include <alloca.h>
#include <dlfcn.h>
/*
* pp_system() implemented via spawn()
* - more efficient and useful when embedding Perl in non-Cygwin apps
* - code mostly borrowed from djgpp.c
*/
static int
do_spawnvp (const char *path, const char * const *argv)
{
dTHX;
Sigsave_t ihand,qhand;
int childpid, result, status;
rsignal_save(SIGINT, (Sighandler_t) SIG_IGN, &ihand);
rsignal_save(SIGQUIT, (Sighandler_t) SIG_IGN, &qhand);
childpid = spawnvp(_P_NOWAIT,path,argv);
if (childpid < 0) {
status = -1;
if(ckWARN(WARN_EXEC))
Perl_warner(aTHX_ packWARN(WARN_EXEC),"Can't spawn \"%s\": %s",
path,Strerror (errno));
} else {
do {
result = wait4pid(childpid, &status, 0);
} while (result == -1 && errno == EINTR);
if(result < 0)
status = -1;
}
(void)rsignal_restore(SIGINT, &ihand);
(void)rsignal_restore(SIGQUIT, &qhand);
return status;
}
int
do_aspawn (SV *really, void **mark, void **sp)
{
dTHX;
int rc;
char **a,*tmps,**argv;
STRLEN n_a;
if (sp<=mark)
return -1;
a=argv=(char**) alloca ((sp-mark+3)*sizeof (char*));
while (++mark <= sp)
if (*mark)
*a++ = SvPVx((SV *)*mark, n_a);
else
*a++ = "";
*a = Nullch;
if (argv[0][0] != '/' && argv[0][0] != '\\'
&& !(argv[0][0] && argv[0][1] == ':'
&& (argv[0][2] == '/' || argv[0][2] != '\\'))
) /* will swawnvp use PATH? */
TAINT_ENV(); /* testing IFS here is overkill, probably */
if (really && *(tmps = SvPV(really, n_a)))
rc=do_spawnvp (tmps,(const char * const *)argv);
else
rc=do_spawnvp (argv[0],(const char *const *)argv);
return rc;
}
int
do_spawn (char *cmd)
{
dTHX;
char **a,*s,*metachars = "$&*(){}[]'\";\\?>|<~`\n";
const char *command[4];
while (*cmd && isSPACE(*cmd))
cmd++;
if (strnEQ (cmd,"/bin/sh",7) && isSPACE (cmd[7]))
cmd+=5;
/* save an extra exec if possible */
/* see if there are shell metacharacters in it */
if (strstr (cmd,"..."))
goto doshell;
if (*cmd=='.' && isSPACE (cmd[1]))
goto doshell;
if (strnEQ (cmd,"exec",4) && isSPACE (cmd[4]))
goto doshell;
for (s=cmd; *s && isALPHA (*s); s++) ; /* catch VAR=val gizmo */
if (*s=='=')
goto doshell;
for (s=cmd; *s; s++)
if (strchr (metachars,*s))
{
if (*s=='\n' && s[1]=='\0')
{
*s='\0';
break;
}
doshell:
command[0] = "sh";
command[1] = "-c";
command[2] = cmd;
command[3] = NULL;
return do_spawnvp("sh",command);
}
Newx (PL_Argv,(s-cmd)/2+2,char*);
PL_Cmd=savepvn (cmd,s-cmd);
a=PL_Argv;
for (s=PL_Cmd; *s;) {
while (*s && isSPACE (*s)) s++;
if (*s)
*(a++)=s;
while (*s && !isSPACE (*s)) s++;
if (*s)
*s++='\0';
}
*a=Nullch;
if (!PL_Argv[0])
return -1;
return do_spawnvp(PL_Argv[0],(const char * const *)PL_Argv);
}
/* see also Cwd.pm */
XS(Cygwin_cwd)
{
dXSARGS;
char *cwd;
if(items != 0)
Perl_croak(aTHX_ "Usage: Cwd::cwd()");
if((cwd = getcwd(NULL, -1))) {
ST(0) = sv_2mortal(newSVpv(cwd, 0));
free(cwd);
#ifndef INCOMPLETE_TAINTS
SvTAINTED_on(ST(0));
#endif
XSRETURN(1);
}
XSRETURN_UNDEF;
}
XS(XS_Cygwin_pid_to_winpid)
{
dXSARGS;
dXSTARG;
pid_t pid, RETVAL;
if (items != 1)
Perl_croak(aTHX_ "Usage: Cygwin::pid_to_winpid(pid)");
pid = (pid_t)SvIV(ST(0));
if ((RETVAL = cygwin_internal(CW_CYGWIN_PID_TO_WINPID, pid)) > 0) {
XSprePUSH; PUSHi((IV)RETVAL);
XSRETURN(1);
}
XSRETURN_UNDEF;
}
XS(XS_Cygwin_winpid_to_pid)
{
dXSARGS;
dXSTARG;
pid_t pid, RETVAL;
if (items != 1)
Perl_croak(aTHX_ "Usage: Cygwin::winpid_to_pid(pid)");
pid = (pid_t)SvIV(ST(0));
if ((RETVAL = cygwin32_winpid_to_pid(pid)) > 0) {
XSprePUSH; PUSHi((IV)RETVAL);
XSRETURN(1);
}
XSRETURN_UNDEF;
}
XS(XS_Cygwin_win_to_posix_path)
{
dXSARGS;
int absolute_flag = 0;
STRLEN len;
int err;
char *pathname, *buf;
if (items < 1 || items > 2)
Perl_croak(aTHX_ "Usage: Cygwin::win_to_posix_path(pathname, [absolute])");
pathname = SvPV(ST(0), len);
if (items == 2)
absolute_flag = SvTRUE(ST(1));
if (!len)
Perl_croak(aTHX_ "can't convert empty path");
buf = (char *) safemalloc (len + 260 + 1001);
if (absolute_flag)
err = cygwin_conv_to_full_posix_path(pathname, buf);
else
err = cygwin_conv_to_posix_path(pathname, buf);
if (!err) {
ST(0) = sv_2mortal(newSVpv(buf, 0));
safefree(buf);
XSRETURN(1);
} else {
safefree(buf);
XSRETURN_UNDEF;
}
}
XS(XS_Cygwin_posix_to_win_path)
{
dXSARGS;
int absolute_flag = 0;
STRLEN len;
int err;
char *pathname, *buf;
if (items < 1 || items > 2)
Perl_croak(aTHX_ "Usage: Cygwin::posix_to_win_path(pathname, [absolute])");
pathname = SvPV(ST(0), len);
if (items == 2)
absolute_flag = SvTRUE(ST(1));
if (!len)
Perl_croak(aTHX_ "can't convert empty path");
buf = (char *) safemalloc(len + 260 + 1001);
if (absolute_flag)
err = cygwin_conv_to_full_win32_path(pathname, buf);
else
err = cygwin_conv_to_win32_path(pathname, buf);
if (!err) {
ST(0) = sv_2mortal(newSVpv(buf, 0));
safefree(buf);
XSRETURN(1);
} else {
safefree(buf);
XSRETURN_UNDEF;
}
}
XS(XS_Cygwin_is_binmount)
{
dXSARGS;
char *pathname;
if (items != 1)
Perl_croak(aTHX_ "Usage: Cygwin::is_binmount(pathname)");
pathname = SvPV_nolen(ST(0));
ST(0) = boolSV(cygwin_internal(CW_GET_BINMODE, pathname));
XSRETURN(1);
}
XS(XS_Cygwin_is_textmount)
{
dXSARGS;
char *pathname;
if (items != 1)
Perl_croak(aTHX_ "Usage: Cygwin::is_textmount(pathname)");
pathname = SvPV_nolen(ST(0));
ST(0) = boolSV(!cygwin_internal(CW_GET_BINMODE, pathname));
XSRETURN(1);
}
void
init_os_extras(void)
{
dTHX;
char *file = __FILE__;
void *handle;
newXS("Cwd::cwd", Cygwin_cwd, file);
newXSproto("Cygwin::winpid_to_pid", XS_Cygwin_winpid_to_pid, file, "$");
newXSproto("Cygwin::pid_to_winpid", XS_Cygwin_pid_to_winpid, file, "$");
newXSproto("Cygwin::win_to_posix_path", XS_Cygwin_win_to_posix_path, file, "$;$");
newXSproto("Cygwin::posix_to_win_path", XS_Cygwin_posix_to_win_path, file, "$;$");
newXSproto("Cygwin::is_binmount", XS_Cygwin_is_binmount, file, "$");
newXSproto("Cygwin::is_textmount", XS_Cygwin_is_textmount, file, "$");
/* Initialize Win32CORE if it has been statically linked. */
handle = dlopen(NULL, RTLD_LAZY);
if (handle) {
void (*pfn_init)(pTHX);
pfn_init = (void (*)(pTHX))dlsym(handle, "init_Win32CORE");
if (pfn_init)
pfn_init(aTHX);
dlclose(handle);
}
}
|