| 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 |
#include <libc/stubs.h> |
|---|
| 36 |
#include <stdio.h> |
|---|
| 37 |
#include <string.h> |
|---|
| 38 |
#include <ctype.h> |
|---|
| 39 |
#include <errno.h> |
|---|
| 40 |
#include <dpmi.h> |
|---|
| 41 |
#include <go32.h> |
|---|
| 42 |
#include <io.h> |
|---|
| 43 |
#include <libc/farptrgs.h> |
|---|
| 44 |
#include <libc/dosio.h> |
|---|
| 45 |
|
|---|
| 46 |
extern unsigned short _djstat_flags; |
|---|
| 47 |
unsigned short _get_magic(const char *, int); |
|---|
| 48 |
int _is_executable(const char *, int, const char *); |
|---|
| 49 |
|
|---|
| 50 |
|
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 |
#define _STAT_EXEC_EXT 2 |
|---|
| 55 |
#define _STAT_EXEC_MAGIC 4 |
|---|
| 56 |
|
|---|
| 57 |
unsigned short |
|---|
| 58 |
_get_magic(const char *s, int fh) |
|---|
| 59 |
{ |
|---|
| 60 |
__dpmi_regs regs; |
|---|
| 61 |
unsigned short retval; |
|---|
| 62 |
unsigned short fpos_high = 0, fpos_low = 0; |
|---|
| 63 |
int read_fail = 0; |
|---|
| 64 |
|
|---|
| 65 |
|
|---|
| 66 |
if (s) |
|---|
| 67 |
{ |
|---|
| 68 |
int handle; |
|---|
| 69 |
if((handle = _open(s,0)) == -1) |
|---|
| 70 |
return 0; |
|---|
| 71 |
regs.x.bx = handle; |
|---|
| 72 |
} |
|---|
| 73 |
|
|---|
| 74 |
|
|---|
| 75 |
else |
|---|
| 76 |
{ |
|---|
| 77 |
regs.x.ax = 0x4201; |
|---|
| 78 |
regs.x.bx = fh; |
|---|
| 79 |
regs.x.cx = regs.x.dx = 0; |
|---|
| 80 |
__dpmi_int(0x21, ®s); |
|---|
| 81 |
if (regs.x.flags & 1) |
|---|
| 82 |
{ |
|---|
| 83 |
errno = __doserr_to_errno(regs.x.ax); |
|---|
| 84 |
return 0; |
|---|
| 85 |
} |
|---|
| 86 |
fpos_high = regs.x.dx; |
|---|
| 87 |
fpos_low = regs.x.ax; |
|---|
| 88 |
|
|---|
| 89 |
regs.x.ax = 0x4200; |
|---|
| 90 |
regs.x.cx = regs.x.dx = 0; |
|---|
| 91 |
__dpmi_int(0x21, ®s); |
|---|
| 92 |
if (regs.x.flags & 1) |
|---|
| 93 |
{ |
|---|
| 94 |
errno = __doserr_to_errno(regs.x.ax); |
|---|
| 95 |
return 0; |
|---|
| 96 |
} |
|---|
| 97 |
} |
|---|
| 98 |
regs.x.ds = __tb_segment; |
|---|
| 99 |
regs.x.dx = __tb_offset; |
|---|
| 100 |
|
|---|
| 101 |
|
|---|
| 102 |
regs.x.ax = 0x3f00; |
|---|
| 103 |
regs.x.cx = 2; |
|---|
| 104 |
__dpmi_int(0x21, ®s); |
|---|
| 105 |
|
|---|
| 106 |
|
|---|
| 107 |
|
|---|
| 108 |
if (regs.x.ax != 2) |
|---|
| 109 |
read_fail = (regs.x.flags & 1) ? regs.x.ax : -1; |
|---|
| 110 |
|
|---|
| 111 |
|
|---|
| 112 |
if (s) |
|---|
| 113 |
{ |
|---|
| 114 |
regs.x.ax = 0x3e00; |
|---|
| 115 |
__dpmi_int(0x21, ®s); |
|---|
| 116 |
if (regs.x.flags & 1) |
|---|
| 117 |
errno = __doserr_to_errno(regs.x.ax); |
|---|
| 118 |
} |
|---|
| 119 |
|
|---|
| 120 |
else |
|---|
| 121 |
{ |
|---|
| 122 |
regs.x.ax = 0x4200; |
|---|
| 123 |
regs.x.bx = fh; |
|---|
| 124 |
regs.x.cx = fpos_high; |
|---|
| 125 |
regs.x.dx = fpos_low; |
|---|
| 126 |
__dpmi_int(0x21, ®s); |
|---|
| 127 |
if (regs.x.flags & 1) |
|---|
| 128 |
{ |
|---|
| 129 |
errno = __doserr_to_errno(regs.x.ax); |
|---|
| 130 |
return 0; |
|---|
| 131 |
} |
|---|
| 132 |
} |
|---|
| 133 |
|
|---|
| 134 |
if (read_fail == 0) |
|---|
| 135 |
retval = _farpeekw(_dos_ds, __tb); |
|---|
| 136 |
else |
|---|
| 137 |
{ |
|---|
| 138 |
|
|---|
| 139 |
|
|---|
| 140 |
|
|---|
| 141 |
retval = 0; |
|---|
| 142 |
if (read_fail != -1) |
|---|
| 143 |
errno = __doserr_to_errno(read_fail); |
|---|
| 144 |
} |
|---|
| 145 |
|
|---|
| 146 |
return retval; |
|---|
| 147 |
} |
|---|
| 148 |
|
|---|
| 149 |
|
|---|
| 150 |
|
|---|
| 151 |
static char executables[] = "|EXE|COM|BAT|BTM|DLL|VXD|"; |
|---|
| 152 |
|
|---|
| 153 |
|
|---|
| 154 |
|
|---|
| 155 |
|
|---|
| 156 |
|
|---|
| 157 |
|
|---|
| 158 |
static char non_executables[] = "\ |
|---|
| 159 |
|A|A01|A02|A03|A04|A05|ADL|ARC|ARJ|ASC|ASM|AUX|AWK\ |
|---|
| 160 |
|BAS|BIB|BGI|BMP\ |
|---|
| 161 |
|C|CC|CFG|CGZ|CH3|CHR|CI|CLP|CMF|CPI|CPP|CXX\ |
|---|
| 162 |
|DAT|DBF|DIZ|DOC|DVI\ |
|---|
| 163 |
|E|EL|ELC\ |
|---|
| 164 |
|F77|FN3\ |
|---|
| 165 |
|GIF|GZ\ |
|---|
| 166 |
|H|HLP|HPP|HXX\ |
|---|
| 167 |
|ICO|IN|INC|INF|INI\ |
|---|
| 168 |
|JPG\ |
|---|
| 169 |
|L|LEX|LF|LIB|LOG|LST|LZH\ |
|---|
| 170 |
|M|MAK|MAP|MF|MID|MPG\ |
|---|
| 171 |
|O|OBJ\ |
|---|
| 172 |
|PAK|PAS|PBM|PCD|PCX|PDS|PIC|PIF|PN3|PRJ|PS\ |
|---|
| 173 |
|RAS|RGB|RLE\ |
|---|
| 174 |
|S|SND|SY3\ |
|---|
| 175 |
|TAR|TAZ|TEX|TGA|TGZ|TIF|TXH|TXI|TXT\ |
|---|
| 176 |
|VOC\ |
|---|
| 177 |
|WAV|WK1|WK3|WKB|WQ1|WQ3|WQ4|WQ5|WQ6|WQ!\ |
|---|
| 178 |
|XBM\ |
|---|
| 179 |
|Y\ |
|---|
| 180 |
|ZIP|ZOO|"; |
|---|
| 181 |
|
|---|
| 182 |
int |
|---|
| 183 |
_is_executable(const char *filename, int fhandle, const char *extension) |
|---|
| 184 |
{ |
|---|
| 185 |
if (!extension && filename) |
|---|
| 186 |
{ |
|---|
| 187 |
const char *cp, *ep=0; |
|---|
| 188 |
for (cp=filename; *cp; cp++) |
|---|
| 189 |
{ |
|---|
| 190 |
if (*cp == '.') |
|---|
| 191 |
ep = cp; |
|---|
| 192 |
if (*cp == '/' || *cp == '\\' || *cp == ':') |
|---|
| 193 |
ep = 0; |
|---|
| 194 |
} |
|---|
| 195 |
extension = ep; |
|---|
| 196 |
} |
|---|
| 197 |
if ((_djstat_flags & _STAT_EXEC_EXT) == 0 |
|---|
| 198 |
&& extension |
|---|
| 199 |
&& *extension |
|---|
| 200 |
&& strlen(extension) <= ((extension[0]=='.') ? 4 : 3)) |
|---|
| 201 |
{ |
|---|
| 202 |
|
|---|
| 203 |
char tmp_buf[6], *tp = tmp_buf; |
|---|
| 204 |
|
|---|
| 205 |
*tp++ = '|'; |
|---|
| 206 |
if (*extension == '.') |
|---|
| 207 |
extension++; |
|---|
| 208 |
while (*extension) |
|---|
| 209 |
*tp++ = toupper (*extension++); |
|---|
| 210 |
*tp++ = '|'; |
|---|
| 211 |
*tp = '\0'; |
|---|
| 212 |
if (strstr(non_executables, tmp_buf)) |
|---|
| 213 |
return 0; |
|---|
| 214 |
else if (strstr(executables, tmp_buf)) |
|---|
| 215 |
return 1; |
|---|
| 216 |
} |
|---|
| 217 |
|
|---|
| 218 |
|
|---|
| 219 |
|
|---|
| 220 |
|
|---|
| 221 |
|
|---|
| 222 |
|
|---|
| 223 |
|
|---|
| 224 |
|
|---|
| 225 |
|
|---|
| 226 |
if ( (_djstat_flags & _STAT_EXEC_MAGIC) == 0 ) |
|---|
| 227 |
{ |
|---|
| 228 |
switch (_get_magic(filename, fhandle)) |
|---|
| 229 |
{ |
|---|
| 230 |
case 0x5a4d: |
|---|
| 231 |
case 0x010b: |
|---|
| 232 |
case 0x014c: |
|---|
| 233 |
case 0x2123: |
|---|
| 234 |
return 1; |
|---|
| 235 |
} |
|---|
| 236 |
} |
|---|
| 237 |
|
|---|
| 238 |
return 0; |
|---|
| 239 |
} |
|---|
| 240 |
|
|---|
| 241 |
|
|---|
| 242 |
|
|---|