Subversion Repositories SvarDOS

Rev

Rev 989 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 989 Rev 998
1
/* This file is part of the SvarCOM project and is published under the terms
1
/* This file is part of the SvarCOM project and is published under the terms
2
 * of the MIT license.
2
 * of the MIT license.
3
 *
3
 *
4
 * Copyright (C) 2021-2022 Mateusz Viste
4
 * Copyright (C) 2021-2022 Mateusz Viste
5
 *
5
 *
6
 * Permission is hereby granted, free of charge, to any person obtaining a
6
 * Permission is hereby granted, free of charge, to any person obtaining a
7
 * copy of this software and associated documentation files (the "Software"),
7
 * copy of this software and associated documentation files (the "Software"),
8
 * to deal in the Software without restriction, including without limitation
8
 * to deal in the Software without restriction, including without limitation
9
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10
 * and/or sell copies of the Software, and to permit persons to whom the
10
 * and/or sell copies of the Software, and to permit persons to whom the
11
 * Software is furnished to do so, subject to the following conditions:
11
 * Software is furnished to do so, subject to the following conditions:
12
 *
12
 *
13
 * The above copyright notice and this permission notice shall be included in
13
 * The above copyright notice and this permission notice shall be included in
14
 * all copies or substantial portions of the Software.
14
 * all copies or substantial portions of the Software.
15
 *
15
 *
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22
 * DEALINGS IN THE SOFTWARE.
22
 * DEALINGS IN THE SOFTWARE.
23
 */
23
 */
24
 
24
 
25
#include <i86.h>
25
#include <i86.h>
26
#include <dos.h>
26
#include <dos.h>
27
#include <stdio.h>
27
#include <stdio.h>
28
#include <stdlib.h>
28
#include <stdlib.h>
29
#include <string.h>
29
#include <string.h>
30
 
30
 
31
#include <process.h>
31
#include <process.h>
32
 
32
 
33
#include "cmd.h"
33
#include "cmd.h"
34
#include "env.h"
34
#include "env.h"
35
#include "helpers.h"
35
#include "helpers.h"
36
#include "redir.h"
36
#include "redir.h"
37
#include "rmodinit.h"
37
#include "rmodinit.h"
38
#include "sayonara.h"
38
#include "sayonara.h"
39
 
39
 
40
#include "rmodcore.h" /* rmod binary inside a BUFFER array */
40
#include "rmodcore.h" /* rmod binary inside a BUFFER array */
41
 
41
 
42
/* this version byte is used to tag RMOD so I can easily make sure that
42
/* this version byte is used to tag RMOD so I can easily make sure that
43
 * the RMOD struct I find in memory is one that I know. Should the version
43
 * the RMOD struct I find in memory is one that I know. Should the version
44
 * mismatch, then it would likely mean that SvarCOM has been upgraded and
44
 * mismatch, then it would likely mean that SvarCOM has been upgraded and
45
 * RMOD should not be accessed as its structure might no longer be in sync
45
 * RMOD should not be accessed as its structure might no longer be in sync
46
 * with what I think it is.
46
 * with what I think it is.
47
 *          *** INCREMENT THIS AT EACH NEW SVARCOM RELEASE! ***          */
47
 *          *** INCREMENT THIS AT EACH NEW SVARCOM RELEASE! ***          */
48
#define BYTE_VERSION 3
48
#define BYTE_VERSION 3
49
 
49
 
50
 
50
 
51
struct config {
51
struct config {
52
  unsigned char flags; /* command.com flags, as defined in rmodinit.h */
52
  unsigned char flags; /* command.com flags, as defined in rmodinit.h */
53
  char *execcmd;
53
  char *execcmd;
54
  unsigned short envsiz;
54
  unsigned short envsiz;
55
};
55
};
56
 
56
 
57
/* max length of the cmdline storage (bytes) - includes also max length of
57
/* max length of the cmdline storage (bytes) - includes also max length of
58
 * line loaded from a BAT file (no more than 255 bytes!) */
58
 * line loaded from a BAT file (no more than 255 bytes!) */
59
#define CMDLINE_MAXLEN 255
59
#define CMDLINE_MAXLEN 255
60
 
60
 
61
 
61
 
62
/* sets guard values at a few places in memory for later detection of
62
/* sets guard values at a few places in memory for later detection of
63
 * overflows via memguard_check() */
63
 * overflows via memguard_check() */
64
static void memguard_set(char *cmdlinebuf) {
64
static void memguard_set(char *cmdlinebuf) {
65
  BUFFER[sizeof(BUFFER) - 1] = 0xC7;
65
  BUFFER[sizeof(BUFFER) - 1] = 0xC7;
66
  cmdlinebuf[CMDLINE_MAXLEN] = 0xC7;
66
  cmdlinebuf[CMDLINE_MAXLEN] = 0xC7;
67
}
67
}
68
 
68
 
69
 
69
 
70
/* checks for valguards at specific memory locations, returns 0 on success */
70
/* checks for valguards at specific memory locations, returns 0 on success */
71
static int memguard_check(unsigned short rmodseg, char *cmdlinebuf) {
71
static int memguard_check(unsigned short rmodseg, char *cmdlinebuf) {
72
  /* check RMOD signature (would be overwritten in case of stack overflow */
72
  /* check RMOD signature (would be overwritten in case of stack overflow */
73
  static char msg[] = "!! MEMORY CORRUPTION ## DETECTED !!";
73
  static char msg[] = "!! MEMORY CORRUPTION ## DETECTED !!";
74
  unsigned short far *rmodsig = MK_FP(rmodseg, 0x100 + 6);
74
  unsigned short far *rmodsig = MK_FP(rmodseg, 0x100 + 6);
75
  unsigned char far *rmod = MK_FP(rmodseg, 0);
75
  unsigned char far *rmod = MK_FP(rmodseg, 0);
76
 
76
 
77
  if (*rmodsig != 0x2019) {
77
  if (*rmodsig != 0x2019) {
78
    msg[22] = '1';
78
    msg[22] = '1';
79
    goto FAIL;
79
    goto FAIL;
80
  }
80
  }
81
 
81
 
82
  /* check last BUFFER byte */
82
  /* check last BUFFER byte */
83
  if (BUFFER[sizeof(BUFFER) - 1] != 0xC7) {
83
  if (BUFFER[sizeof(BUFFER) - 1] != 0xC7) {
84
    msg[22] = '2';
84
    msg[22] = '2';
85
    goto FAIL;
85
    goto FAIL;
86
  }
86
  }
87
 
87
 
88
  /* check last cmdlinebuf byte */
88
  /* check last cmdlinebuf byte */
89
  if (cmdlinebuf[CMDLINE_MAXLEN] != 0xC7) {
89
  if (cmdlinebuf[CMDLINE_MAXLEN] != 0xC7) {
90
    msg[22] = '3';
90
    msg[22] = '3';
91
    goto FAIL;
91
    goto FAIL;
92
  }
92
  }
93
 
93
 
94
  /* check rmod exec buf */
94
  /* check rmod exec buf */
95
  if (rmod[RMOD_OFFSET_EXECPROG + 127] != 0) {
95
  if (rmod[RMOD_OFFSET_EXECPROG + 127] != 0) {
96
    msg[22] = '4';
96
    msg[22] = '4';
97
    goto FAIL;
97
    goto FAIL;
98
  }
98
  }
99
 
99
 
100
  /* check rmod exec stdin buf */
100
  /* check rmod exec stdin buf */
101
  if (rmod[RMOD_OFFSET_STDINFILE + 127] != 0) {
101
  if (rmod[RMOD_OFFSET_STDINFILE + 127] != 0) {
102
    msg[22] = '5';
102
    msg[22] = '5';
103
    goto FAIL;
103
    goto FAIL;
104
  }
104
  }
105
 
105
 
106
  /* check rmod exec stdout buf */
106
  /* check rmod exec stdout buf */
107
  if (rmod[RMOD_OFFSET_STDOUTFILE + 127] != 0) {
107
  if (rmod[RMOD_OFFSET_STDOUTFILE + 127] != 0) {
108
    msg[22] = '6';
108
    msg[22] = '6';
109
    goto FAIL;
109
    goto FAIL;
110
  }
110
  }
111
 
111
 
112
  /* else all good */
112
  /* else all good */
113
  return(0);
113
  return(0);
114
 
114
 
115
  /* error handling */
115
  /* error handling */
116
  FAIL:
116
  FAIL:
117
  outputnl(msg);
117
  outputnl(msg);
118
  return(1);
118
  return(1);
119
}
119
}
120
 
120
 
121
 
121
 
122
/* parses command line the hard way (directly from PSP) */
122
/* parses command line the hard way (directly from PSP) */
123
static void parse_argv(struct config *cfg) {
123
static void parse_argv(struct config *cfg) {
124
  const unsigned char *cmdlinelen = (void *)0x80;
124
  const unsigned char *cmdlinelen = (void *)0x80;
125
  char *cmdline = (void *)0x81;
125
  char *cmdline = (void *)0x81;
126
 
126
 
127
  memset(cfg, 0, sizeof(*cfg));
127
  memset(cfg, 0, sizeof(*cfg));
128
 
128
 
129
  /* set a NULL terminator on cmdline */
129
  /* set a NULL terminator on cmdline */
130
  cmdline[*cmdlinelen] = 0;
130
  cmdline[*cmdlinelen] = 0;
131
 
131
 
132
  while (*cmdline != 0) {
132
  while (*cmdline != 0) {
133
 
133
 
134
    /* skip over any leading spaces */
134
    /* skip over any leading spaces */
135
    if (*cmdline == ' ') {
135
    if (*cmdline == ' ') {
136
      cmdline++;
136
      cmdline++;
137
      continue;
137
      continue;
138
    }
138
    }
139
 
139
 
140
    if (*cmdline != '/') {
140
    if (*cmdline != '/') {
141
      nls_output(0,6); /* "Invalid parameter" */
141
      nls_output(0,6); /* "Invalid parameter" */
142
      output(": ");
142
      output(": ");
143
      outputnl(cmdline);
143
      outputnl(cmdline);
144
      goto SKIP_TO_NEXT_ARG;
144
      goto SKIP_TO_NEXT_ARG;
145
    }
145
    }
146
 
146
 
147
    /* got a slash */
147
    /* got a slash */
148
    cmdline++;  /* skip the slash */
148
    cmdline++;  /* skip the slash */
149
    switch (*cmdline) {
149
    switch (*cmdline) {
150
      case 'c': /* /C = execute command and quit */
150
      case 'c': /* /C = execute command and quit */
151
      case 'C':
151
      case 'C':
152
        cfg->flags |= FLAG_EXEC_AND_QUIT;
152
        cfg->flags |= FLAG_EXEC_AND_QUIT;
153
        /* FALLTHRU */
153
        /* FALLTHRU */
154
      case 'k': /* /K = execute command and keep running */
154
      case 'k': /* /K = execute command and keep running */
155
      case 'K':
155
      case 'K':
156
        cfg->execcmd = cmdline + 1;
156
        cfg->execcmd = cmdline + 1;
157
        return;
157
        return;
158
 
158
 
159
      case 'd': /* /D = skip autoexec.bat processing */
159
      case 'd': /* /D = skip autoexec.bat processing */
160
      case 'D':
160
      case 'D':
161
        cfg->flags |= FLAG_SKIP_AUTOEXEC;
161
        cfg->flags |= FLAG_SKIP_AUTOEXEC;
162
        break;
162
        break;
163
 
163
 
164
      case 'e': /* preset the initial size of the environment block */
164
      case 'e': /* preset the initial size of the environment block */
165
      case 'E':
165
      case 'E':
166
        cmdline++;
166
        cmdline++;
167
        if (*cmdline == ':') cmdline++; /* could be /E:size */
167
        if (*cmdline == ':') cmdline++; /* could be /E:size */
168
        atous(&(cfg->envsiz), cmdline);
168
        atous(&(cfg->envsiz), cmdline);
169
        if (cfg->envsiz < 64) cfg->envsiz = 0;
169
        if (cfg->envsiz < 64) cfg->envsiz = 0;
170
        break;
170
        break;
171
 
171
 
172
      case 'p': /* permanent shell (can't exit + run autoexec.bat) */
172
      case 'p': /* permanent shell (can't exit + run autoexec.bat) */
173
      case 'P':
173
      case 'P':
174
        cfg->flags |= FLAG_PERMANENT;
174
        cfg->flags |= FLAG_PERMANENT;
175
        break;
175
        break;
176
 
176
 
177
      case '?':
177
      case '?':
178
        nls_outputnl(1,0); /* "Starts the SvarCOM command interpreter" */
178
        nls_outputnl(1,0); /* "Starts the SvarCOM command interpreter" */
179
        outputnl("");
179
        outputnl("");
180
        nls_outputnl(1,1); /* "COMMAND /E:nnn [/[C|K] [/P] [/D] command]" */
180
        nls_outputnl(1,1); /* "COMMAND /E:nnn [/[C|K] [/P] [/D] command]" */
181
        outputnl("");
181
        outputnl("");
182
        nls_outputnl(1,2); /* "/D      Skip AUTOEXEC.BAT processing (makes sense only with /P)" */
182
        nls_outputnl(1,2); /* "/D      Skip AUTOEXEC.BAT processing (makes sense only with /P)" */
183
        nls_outputnl(1,3); /* "/E:nnn  Sets the environment size to nnn bytes" */
183
        nls_outputnl(1,3); /* "/E:nnn  Sets the environment size to nnn bytes" */
184
        nls_outputnl(1,4); /* "/P      Makes the new command interpreter permanent and run AUTOEXEC.BAT" */
184
        nls_outputnl(1,4); /* "/P      Makes the new command interpreter permanent and run AUTOEXEC.BAT" */
185
        nls_outputnl(1,5); /* "/C      Executes the specified command and returns" */
185
        nls_outputnl(1,5); /* "/C      Executes the specified command and returns" */
186
        nls_outputnl(1,6); /* "/K      Executes the specified command and continues running" */
186
        nls_outputnl(1,6); /* "/K      Executes the specified command and continues running" */
187
        exit(1);
187
        exit(1);
188
        break;
188
        break;
189
 
189
 
190
      default:
190
      default:
191
        nls_output(0,2); /* invalid switch */
191
        nls_output(0,2); /* invalid switch */
192
        output(": /");
192
        output(": /");
193
        outputnl(cmdline);
193
        outputnl(cmdline);
194
        break;
194
        break;
195
    }
195
    }
196
 
196
 
197
    /* move to next argument or quit processing if end of cmdline */
197
    /* move to next argument or quit processing if end of cmdline */
198
    SKIP_TO_NEXT_ARG:
198
    SKIP_TO_NEXT_ARG:
199
    while ((*cmdline != 0) && (*cmdline != ' ') && (*cmdline != '/')) cmdline++;
199
    while ((*cmdline != 0) && (*cmdline != ' ') && (*cmdline != '/')) cmdline++;
200
  }
200
  }
201
}
201
}
202
 
202
 
203
 
203
 
204
/* builds the prompt string and displays it. buff is filled with a zero-terminated copy of the prompt. */
204
/* builds the prompt string and displays it. buff is filled with a zero-terminated copy of the prompt. */
205
static void build_and_display_prompt(char *buff, unsigned short envseg) {
205
static void build_and_display_prompt(char *buff, unsigned short envseg) {
206
  char *s = buff;
206
  char *s = buff;
207
  /* locate the prompt variable or use the default pattern */
207
  /* locate the prompt variable or use the default pattern */
208
  const char far *fmt = env_lookup_val(envseg, "PROMPT");
208
  const char far *fmt = env_lookup_val(envseg, "PROMPT");
209
  if ((fmt == NULL) || (*fmt == 0)) fmt = "$p$g"; /* fallback to default if empty */
209
  if ((fmt == NULL) || (*fmt == 0)) fmt = "$p$g"; /* fallback to default if empty */
210
  /* build the prompt string based on pattern */
210
  /* build the prompt string based on pattern */
211
  for (; *fmt != 0; fmt++) {
211
  for (; *fmt != 0; fmt++) {
212
    if (*fmt != '$') {
212
    if (*fmt != '$') {
213
      *s = *fmt;
213
      *s = *fmt;
214
      s++;
214
      s++;
215
      continue;
215
      continue;
216
    }
216
    }
217
    /* escape code ($P, etc) */
217
    /* escape code ($P, etc) */
218
    fmt++;
218
    fmt++;
219
    switch (*fmt) {
219
    switch (*fmt) {
220
      case 'Q':  /* $Q = = (equal sign) */
220
      case 'Q':  /* $Q = = (equal sign) */
221
      case 'q':
221
      case 'q':
222
        *s = '=';
222
        *s = '=';
223
        s++;
223
        s++;
224
        break;
224
        break;
225
      case '$':  /* $$ = $ (dollar sign) */
225
      case '$':  /* $$ = $ (dollar sign) */
226
        *s = '$';
226
        *s = '$';
227
        s++;
227
        s++;
228
        break;
228
        break;
229
      case 'T':  /* $t = current time */
229
      case 'T':  /* $t = current time */
230
      case 't':
230
      case 't':
231
        s += sprintf(s, "00:00"); /* TODO */
231
        s += sprintf(s, "00:00"); /* TODO */
232
        break;
232
        break;
233
      case 'D':  /* $D = current date */
233
      case 'D':  /* $D = current date */
234
      case 'd':
234
      case 'd':
235
        s += sprintf(s, "1985-07-29"); /* TODO */
235
        s += sprintf(s, "1985-07-29"); /* TODO */
236
        break;
236
        break;
237
      case 'P':  /* $P = current drive and path */
237
      case 'P':  /* $P = current drive and path */
238
      case 'p':
238
      case 'p':
239
        _asm {
239
        _asm {
240
          mov ah, 0x19    /* DOS 1+ - GET CURRENT DRIVE */
240
          mov ah, 0x19    /* DOS 1+ - GET CURRENT DRIVE */
241
          int 0x21
241
          int 0x21
242
          mov bx, s
242
          mov bx, s
243
          mov [bx], al  /* AL = drive (00 = A:, 01 = B:, etc */
243
          mov [bx], al  /* AL = drive (00 = A:, 01 = B:, etc */
244
        }
244
        }
245
        *s += 'A';
245
        *s += 'A';
246
        s++;
246
        s++;
247
        *s = ':';
247
        *s = ':';
248
        s++;
248
        s++;
249
        *s = '\\';
249
        *s = '\\';
250
        s++;
250
        s++;
251
        _asm {
251
        _asm {
252
          mov ah, 0x47    /* DOS 2+ - CWD - GET CURRENT DIRECTORY */
252
          mov ah, 0x47    /* DOS 2+ - CWD - GET CURRENT DIRECTORY */
253
          xor dl,dl       /* DL = drive number (00h = default, 01h = A:, etc) */
253
          xor dl,dl       /* DL = drive number (00h = default, 01h = A:, etc) */
254
          mov si, s       /* DS:SI -> 64-byte buffer for ASCIZ pathname */
254
          mov si, s       /* DS:SI -> 64-byte buffer for ASCIZ pathname */
255
          int 0x21
255
          int 0x21
256
          jc DONE         /* leave path empty on error */
256
          jc DONE         /* leave path empty on error */
257
          /* move s ptr forward to end (0-termintor) of pathname */
257
          /* move s ptr forward to end (0-termintor) of pathname */
258
          NEXTBYTE:
258
          NEXTBYTE:
259
          mov si, s
259
          mov si, s
260
          cmp byte ptr [si], 0
260
          cmp byte ptr [si], 0
261
          je DONE
261
          je DONE
262
          inc s
262
          inc s
263
          jmp NEXTBYTE
263
          jmp NEXTBYTE
264
          DONE:
264
          DONE:
265
        }
265
        }
266
        break;
266
        break;
267
      case 'V':  /* $V = DOS version number */
267
      case 'V':  /* $V = DOS version number */
268
      case 'v':
268
      case 'v':
269
        s += sprintf(s, "VER"); /* TODO */
269
        s += sprintf(s, "VER"); /* TODO */
270
        break;
270
        break;
271
      case 'N':  /* $N = current drive */
271
      case 'N':  /* $N = current drive */
272
      case 'n':
272
      case 'n':
273
        _asm {
273
        _asm {
274
          mov ah, 0x19    /* DOS 1+ - GET CURRENT DRIVE */
274
          mov ah, 0x19    /* DOS 1+ - GET CURRENT DRIVE */
275
          int 0x21
275
          int 0x21
276
          mov bx, s
276
          mov bx, s
277
          mov [bx], al  /* AL = drive (00 = A:, 01 = B:, etc */
277
          mov [bx], al  /* AL = drive (00 = A:, 01 = B:, etc */
278
        }
278
        }
279
        *s += 'A';
279
        *s += 'A';
280
        s++;
280
        s++;
281
        break;
281
        break;
282
      case 'G':  /* $G = > (greater-than sign) */
282
      case 'G':  /* $G = > (greater-than sign) */
283
      case 'g':
283
      case 'g':
284
        *s = '>';
284
        *s = '>';
285
        s++;
285
        s++;
286
        break;
286
        break;
287
      case 'L':  /* $L = < (less-than sign) */
287
      case 'L':  /* $L = < (less-than sign) */
288
      case 'l':
288
      case 'l':
289
        *s = '<';
289
        *s = '<';
290
        s++;
290
        s++;
291
        break;
291
        break;
292
      case 'B':  /* $B = | (pipe) */
292
      case 'B':  /* $B = | (pipe) */
293
      case 'b':
293
      case 'b':
294
        *s = '|';
294
        *s = '|';
295
        s++;
295
        s++;
296
        break;
296
        break;
297
      case 'H':  /* $H = backspace (erases previous character) */
297
      case 'H':  /* $H = backspace (erases previous character) */
298
      case 'h':
298
      case 'h':
299
        *s = '\b';
299
        *s = '\b';
300
        s++;
300
        s++;
301
        break;
301
        break;
302
      case 'E':  /* $E = Escape code (ASCII 27) */
302
      case 'E':  /* $E = Escape code (ASCII 27) */
303
      case 'e':
303
      case 'e':
304
        *s = 27;
304
        *s = 27;
305
        s++;
305
        s++;
306
        break;
306
        break;
307
      case '_':  /* $_ = CR+LF */
307
      case '_':  /* $_ = CR+LF */
308
        *s = '\r';
308
        *s = '\r';
309
        s++;
309
        s++;
310
        *s = '\n';
310
        *s = '\n';
311
        s++;
311
        s++;
312
        break;
312
        break;
313
    }
313
    }
314
  }
314
  }
315
  *s = 0;
315
  *s = 0;
316
  output(buff);
316
  output(buff);
317
}
317
}
318
 
318
 
319
 
319
 
320
/* a few internal flags */
320
/* a few internal flags */
321
#define DELETE_STDIN_FILE 1
321
#define DELETE_STDIN_FILE 1
322
#define CALL_FLAG         2
322
#define CALL_FLAG         2
323
 
323
 
324
static void run_as_external(char *buff, const char *cmdline, unsigned short envseg, struct rmod_props far *rmod, struct redir_data *redir, unsigned char flags) {
324
static void run_as_external(char *buff, const char *cmdline, unsigned short envseg, struct rmod_props far *rmod, struct redir_data *redir, unsigned char flags) {
325
  char *cmdfile = buff + 512;
325
  char *cmdfile = buff + 512;
326
  const char far *pathptr;
326
  const char far *pathptr;
327
  int lookup;
327
  int lookup;
328
  unsigned short i;
328
  unsigned short i;
329
  const char *ext;
329
  const char *ext;
330
  char *cmd = buff + 1024;
330
  char *cmd = buff + 1024;
331
  const char *cmdtail;
331
  const char *cmdtail;
332
  char far *rmod_execprog = MK_FP(rmod->rmodseg, RMOD_OFFSET_EXECPROG);
332
  char far *rmod_execprog = MK_FP(rmod->rmodseg, RMOD_OFFSET_EXECPROG);
333
  char far *rmod_cmdtail = MK_FP(rmod->rmodseg, 0x81);
333
  char far *rmod_cmdtail = MK_FP(rmod->rmodseg, 0x81);
334
  _Packed struct {
334
  _Packed struct {
335
    unsigned short envseg;
335
    unsigned short envseg;
336
    unsigned long cmdtail;
336
    unsigned long cmdtail;
337
    unsigned long fcb1;
337
    unsigned long fcb1;
338
    unsigned long fcb2;
338
    unsigned long fcb2;
339
  } far *ExecParam = MK_FP(rmod->rmodseg, RMOD_OFFSET_EXECPARAM);
339
  } far *ExecParam = MK_FP(rmod->rmodseg, RMOD_OFFSET_EXECPARAM);
340
 
340
 
341
  /* find cmd and cmdtail */
341
  /* find cmd and cmdtail */
342
  i = 0;
342
  i = 0;
343
  cmdtail = cmdline;
343
  cmdtail = cmdline;
344
  while (*cmdtail == ' ') cmdtail++; /* skip any leading spaces */
344
  while (*cmdtail == ' ') cmdtail++; /* skip any leading spaces */
345
  while ((*cmdtail != ' ') && (*cmdtail != '/') && (*cmdtail != '+') && (*cmdtail != 0)) {
345
  while ((*cmdtail != ' ') && (*cmdtail != '/') && (*cmdtail != '+') && (*cmdtail != 0)) {
346
    cmd[i++] = *cmdtail;
346
    cmd[i++] = *cmdtail;
347
    cmdtail++;
347
    cmdtail++;
348
  }
348
  }
349
  cmd[i] = 0;
349
  cmd[i] = 0;
350
 
350
 
351
  /* is this a command in curdir? */
351
  /* is this a command in curdir? */
352
  lookup = lookup_cmd(cmdfile, cmd, NULL, &ext);
352
  lookup = lookup_cmd(cmdfile, cmd, NULL, &ext);
353
  if (lookup == 0) {
353
  if (lookup == 0) {
354
    /* printf("FOUND LOCAL EXEC FILE: '%s'\r\n", cmdfile); */
354
    /* printf("FOUND LOCAL EXEC FILE: '%s'\r\n", cmdfile); */
355
    goto RUNCMDFILE;
355
    goto RUNCMDFILE;
356
  } else if (lookup == -2) {
356
  } else if (lookup == -2) {
357
    /* puts("NOT FOUND"); */
357
    /* puts("NOT FOUND"); */
358
    return;
358
    return;
359
  }
359
  }
360
 
360
 
361
  /* try matching something in PATH */
361
  /* try matching something in PATH */
362
  pathptr = env_lookup_val(envseg, "PATH");
362
  pathptr = env_lookup_val(envseg, "PATH");
363
 
363
 
364
  /* try each path in %PATH% */
364
  /* try each path in %PATH% */
365
  while (pathptr) {
365
  while (pathptr) {
366
    for (i = 0;; i++) {
366
    for (i = 0;; i++) {
367
      buff[i] = *pathptr;
367
      buff[i] = *pathptr;
368
      if ((buff[i] == 0) || (buff[i] == ';')) break;
368
      if ((buff[i] == 0) || (buff[i] == ';')) break;
369
      pathptr++;
369
      pathptr++;
370
    }
370
    }
371
    buff[i] = 0;
371
    buff[i] = 0;
372
    lookup = lookup_cmd(cmdfile, cmd, buff, &ext);
372
    lookup = lookup_cmd(cmdfile, cmd, buff, &ext);
373
    if (lookup == 0) goto RUNCMDFILE;
373
    if (lookup == 0) goto RUNCMDFILE;
374
    if (lookup == -2) return;
374
    if (lookup == -2) return;
375
    if (*pathptr == ';') {
375
    if (*pathptr == ';') {
376
      pathptr++;
376
      pathptr++;
377
    } else {
377
    } else {
378
      break;
378
      break;
379
    }
379
    }
380
  }
380
  }
381
 
381
 
382
  /* last chance: is it an executable link? (trim extension from cmd first) */
382
  /* last chance: is it an executable link? (trim extension from cmd first) */
383
  for (i = 0; (cmd[i] != 0) && (cmd[i] != '.') && (i < 9); i++) buff[128 + i] = cmd[i];
383
  for (i = 0; (cmd[i] != 0) && (cmd[i] != '.') && (i < 9); i++) buff[128 + i] = cmd[i];
384
  buff[128 + i] = 0;
384
  buff[128 + i] = 0;
385
  if ((i < 9) && (link_computefname(buff, buff + 128, envseg) == 0)) {
385
  if ((i < 9) && (link_computefname(buff, buff + 128, envseg) == 0)) {
386
    /* try opening the link file (if it exists) and read it into buff */
386
    /* try opening the link file (if it exists) and read it into buff */
387
    i = 0;
387
    i = 0;
388
    _asm {
388
    _asm {
389
      push ax
389
      push ax
390
      push bx
390
      push bx
391
      push cx
391
      push cx
392
      push dx
392
      push dx
393
 
393
 
394
      mov ax, 0x3d00  /* DOS 2+ - OPEN EXISTING FILE, READ-ONLY */
394
      mov ax, 0x3d00  /* DOS 2+ - OPEN EXISTING FILE, READ-ONLY */
395
      mov dx, buff    /* file name */
395
      mov dx, buff    /* file name */
396
      int 0x21
396
      int 0x21
397
      jc ERR_FOPEN
397
      jc ERR_FOPEN
398
      /* file handle in AX, read from file now */
398
      /* file handle in AX, read from file now */
399
      mov bx, ax      /* file handle */
399
      mov bx, ax      /* file handle */
400
      mov ah, 0x3f    /* Read from file via handle bx */
400
      mov ah, 0x3f    /* Read from file via handle bx */
401
      mov cx, 128     /* up to 128 bytes */
401
      mov cx, 128     /* up to 128 bytes */
402
      /* mov dx, buff */ /* dest buffer (already set) */
402
      /* mov dx, buff */ /* dest buffer (already set) */
403
      int 0x21        /* read up to 256 bytes from file and write to buff */
403
      int 0x21        /* read up to 256 bytes from file and write to buff */
404
      jc ERR_READ
404
      jc ERR_READ
405
      mov i, ax
405
      mov i, ax
406
      ERR_READ:
406
      ERR_READ:
407
      mov ah, 0x3e    /* close file handle in BX */
407
      mov ah, 0x3e    /* close file handle in BX */
408
      int 0x21
408
      int 0x21
409
      ERR_FOPEN:
409
      ERR_FOPEN:
410
 
410
 
411
      pop dx
411
      pop dx
412
      pop cx
412
      pop cx
413
      pop bx
413
      pop bx
414
      pop ax
414
      pop ax
415
    }
415
    }
416
 
416
 
417
    /* did I read anything? */
417
    /* did I read anything? */
418
    if (i != 0) {
418
    if (i != 0) {
419
      buff[i] = 0;
419
      buff[i] = 0;
420
      /* trim buff at first \n or \r, just in case someone fiddled with the
420
      /* trim buff at first \n or \r, just in case someone fiddled with the
421
       * link file using a text editor */
421
       * link file using a text editor */
422
      for (i = 0; (buff[i] != 0) && (buff[i] != '\r') && (buff[i] != '\n'); i++);
422
      for (i = 0; (buff[i] != 0) && (buff[i] != '\r') && (buff[i] != '\n'); i++);
423
      buff[i] = 0;
423
      buff[i] = 0;
424
      /* lookup check */
424
      /* lookup check */
425
      if (buff[0] != 0) {
425
      if (buff[0] != 0) {
426
        lookup = lookup_cmd(cmdfile, cmd, buff, &ext);
426
        lookup = lookup_cmd(cmdfile, cmd, buff, &ext);
427
        if (lookup == 0) goto RUNCMDFILE;
427
        if (lookup == 0) goto RUNCMDFILE;
428
      }
428
      }
429
    }
429
    }
430
  }
430
  }
431
 
431
 
432
  /* all failed (ie. executable file not found) */
432
  /* all failed (ie. executable file not found) */
433
  return;
433
  return;
434
 
434
 
435
  RUNCMDFILE:
435
  RUNCMDFILE:
436
 
436
 
437
  /* special handling of batch files */
437
  /* special handling of batch files */
438
  if ((ext != NULL) && (imatch(ext, "bat"))) {
438
  if ((ext != NULL) && (imatch(ext, "bat"))) {
439
    struct batctx far *newbat;
439
    struct batctx far *newbat;
440
 
440
 
441
    /* remember the echo flag (in case bat file disables echo, only when starting first bat) */
441
    /* remember the echo flag (in case bat file disables echo, only when starting first bat) */
442
    if (rmod->bat == NULL) {
442
    if (rmod->bat == NULL) {
443
      rmod->flags &= ~FLAG_ECHO_BEFORE_BAT;
443
      rmod->flags &= ~FLAG_ECHO_BEFORE_BAT;
444
      if (rmod->flags & FLAG_ECHOFLAG) rmod->flags |= FLAG_ECHO_BEFORE_BAT;
444
      if (rmod->flags & FLAG_ECHOFLAG) rmod->flags |= FLAG_ECHO_BEFORE_BAT;
445
    }
445
    }
446
 
446
 
447
    /* if bat is not called via a CALL, then free the bat-context linked list */
447
    /* if bat is not called via a CALL, then free the bat-context linked list */
448
    if ((flags & CALL_FLAG) == 0) rmod_free_bat_llist(rmod);
448
    if ((flags & CALL_FLAG) == 0) rmod_free_bat_llist(rmod);
449
 
449
 
450
    /* allocate a new bat context */
450
    /* allocate a new bat context */
451
    newbat = rmod_fcalloc(sizeof(struct batctx), rmod->rmodseg, "SVBATCTX");
451
    newbat = rmod_fcalloc(sizeof(struct batctx), rmod->rmodseg, "SVBATCTX");
452
    if (newbat == NULL) {
452
    if (newbat == NULL) {
453
      nls_outputnl_doserr(8); /* insufficient memory */
453
      nls_outputnl_doserr(8); /* insufficient memory */
454
      return;
454
      return;
455
    }
455
    }
456
 
456
 
457
    /* fill the newly allocated batctx structure */
457
    /* fill the newly allocated batctx structure */
458
    _fstrcpy(newbat->fname, cmdfile); /* truename of the BAT file */
458
    _fstrcpy(newbat->fname, cmdfile); /* truename of the BAT file */
459
    /* explode args of the bat file and store them in rmod buff */
459
    /* explode args of the bat file and store them in rmod buff */
460
    cmd_explode(buff, cmdline, NULL);
460
    cmd_explode(buff, cmdline, NULL);
461
    _fmemcpy(newbat->argv, buff, sizeof(newbat->argv));
461
    _fmemcpy(newbat->argv, buff, sizeof(newbat->argv));
462
 
462
 
463
    /* push the new bat to the top of rmod's linked list */
463
    /* push the new bat to the top of rmod's linked list */
464
    newbat->parent = rmod->bat;
464
    newbat->parent = rmod->bat;
465
    rmod->bat = newbat;
465
    rmod->bat = newbat;
466
 
466
 
467
    return;
467
    return;
468
  }
468
  }
469
 
469
 
470
  /* copy full filename to execute, along with redirected files (if any) */
470
  /* copy full filename to execute, along with redirected files (if any) */
471
  _fstrcpy(rmod_execprog, cmdfile);
471
  _fstrcpy(rmod_execprog, cmdfile);
472
 
472
 
473
  /* copy stdin file if a redirection is needed */
473
  /* copy stdin file if a redirection is needed */
474
  if (redir->stdinfile) {
474
  if (redir->stdinfile) {
475
    char far *farptr = MK_FP(rmod->rmodseg, RMOD_OFFSET_STDINFILE);
475
    char far *farptr = MK_FP(rmod->rmodseg, RMOD_OFFSET_STDINFILE);
476
    char far *delstdin = MK_FP(rmod->rmodseg, RMOD_OFFSET_STDIN_DEL);
476
    char far *delstdin = MK_FP(rmod->rmodseg, RMOD_OFFSET_STDIN_DEL);
477
    _fstrcpy(farptr, redir->stdinfile);
477
    _fstrcpy(farptr, redir->stdinfile);
478
    if (flags & DELETE_STDIN_FILE) {
478
    if (flags & DELETE_STDIN_FILE) {
479
      *delstdin = redir->stdinfile[0];
479
      *delstdin = redir->stdinfile[0];
480
    } else {
480
    } else {
481
      *delstdin = 0;
481
      *delstdin = 0;
482
    }
482
    }
483
  }
483
  }
484
 
484
 
485
  /* same for stdout file */
485
  /* same for stdout file */
486
  if (redir->stdoutfile) {
486
  if (redir->stdoutfile) {
487
    char far *farptr = MK_FP(rmod->rmodseg, RMOD_OFFSET_STDOUTFILE);
487
    char far *farptr = MK_FP(rmod->rmodseg, RMOD_OFFSET_STDOUTFILE);
488
    unsigned short far *farptr16 = MK_FP(rmod->rmodseg, RMOD_OFFSET_STDOUTAPP);
488
    unsigned short far *farptr16 = MK_FP(rmod->rmodseg, RMOD_OFFSET_STDOUTAPP);
489
    _fstrcpy(farptr, redir->stdoutfile);
489
    _fstrcpy(farptr, redir->stdoutfile);
490
    /* openflag */
490
    /* openflag */
491
    *farptr16 = redir->stdout_openflag;
491
    *farptr16 = redir->stdout_openflag;
492
  }
492
  }
493
 
493
 
494
  /* copy cmdtail to rmod's PSP and compute its len */
494
  /* copy cmdtail to rmod's PSP and compute its len */
495
  for (i = 0; cmdtail[i] != 0; i++) rmod_cmdtail[i] = cmdtail[i];
495
  for (i = 0; cmdtail[i] != 0; i++) rmod_cmdtail[i] = cmdtail[i];
496
  rmod_cmdtail[i] = '\r';
496
  rmod_cmdtail[i] = '\r';
497
  rmod_cmdtail[-1] = i;
497
  rmod_cmdtail[-1] = i;
498
 
498
 
499
  /* set up rmod to execute the command */
499
  /* set up rmod to execute the command */
500
 
500
 
501
  ExecParam->envseg = envseg;
501
  ExecParam->envseg = envseg;
502
  ExecParam->cmdtail = (unsigned long)MK_FP(rmod->rmodseg, 0x80); /* farptr, must be in PSP format (lenbyte args \r) */
502
  ExecParam->cmdtail = (unsigned long)MK_FP(rmod->rmodseg, 0x80); /* farptr, must be in PSP format (lenbyte args \r) */
503
  ExecParam->fcb1 = 0; /* TODO farptr */
503
  ExecParam->fcb1 = 0; /* TODO farptr */
504
  ExecParam->fcb2 = 0; /* TODO farptr */
504
  ExecParam->fcb2 = 0; /* TODO farptr */
505
  exit(0); /* let rmod do the job now */
505
  exit(0); /* let rmod do the job now */
506
}
506
}
507
 
507
 
508
 
508
 
509
static void set_comspec_to_self(unsigned short envseg) {
509
static void set_comspec_to_self(unsigned short envseg) {
510
  unsigned short *psp_envseg = (void *)(0x2c); /* pointer to my env segment field in the PSP */
510
  unsigned short *psp_envseg = (void *)(0x2c); /* pointer to my env segment field in the PSP */
511
  char far *myenv = MK_FP(*psp_envseg, 0);
511
  char far *myenv = MK_FP(*psp_envseg, 0);
512
  unsigned short varcount;
512
  unsigned short varcount;
513
  char buff[256] = "COMSPEC=";
513
  char buff[256] = "COMSPEC=";
514
  char *buffptr = buff + 8;
514
  char *buffptr = buff + 8;
515
  /* who am i? look into my own environment, at the end of it should be my EXEPATH string */
515
  /* who am i? look into my own environment, at the end of it should be my EXEPATH string */
516
  while (*myenv != 0) {
516
  while (*myenv != 0) {
517
    /* consume a NULL-terminated string */
517
    /* consume a NULL-terminated string */
518
    while (*myenv != 0) myenv++;
518
    while (*myenv != 0) myenv++;
519
    /* move to next string */
519
    /* move to next string */
520
    myenv++;
520
    myenv++;
521
  }
521
  }
522
  /* get next word, if 1 then EXEPATH follows */
522
  /* get next word, if 1 then EXEPATH follows */
523
  myenv++;
523
  myenv++;
524
  varcount = *myenv;
524
  varcount = *myenv;
525
  myenv++;
525
  myenv++;
526
  varcount |= (*myenv << 8);
526
  varcount |= (*myenv << 8);
527
  myenv++;
527
  myenv++;
528
  if (varcount != 1) return; /* NO EXEPATH FOUND */
528
  if (varcount != 1) return; /* NO EXEPATH FOUND */
529
  while (*myenv != 0) {
529
  while (*myenv != 0) {
530
    *buffptr = *myenv;
530
    *buffptr = *myenv;
531
    buffptr++;
531
    buffptr++;
532
    myenv++;
532
    myenv++;
533
  }
533
  }
534
  *buffptr = 0;
534
  *buffptr = 0;
535
  /* printf("EXEPATH: '%s'\r\n", buff); */
535
  /* printf("EXEPATH: '%s'\r\n", buff); */
536
  env_setvar(envseg, buff);
536
  env_setvar(envseg, buff);
537
}
537
}
538
 
538
 
539
 
539
 
540
/* wait for user input */
540
/* wait for user input */
541
static void cmdline_getinput(unsigned short inpseg, unsigned short inpoff) {
541
static void cmdline_getinput(unsigned short inpseg, unsigned short inpoff) {
542
  _asm {
542
  _asm {
543
    push ax
543
    push ax
544
    push bx
544
    push bx
545
    push cx
545
    push cx
546
    push dx
546
    push dx
547
    push ds
547
    push ds
548
 
548
 
549
    /* is DOSKEY support present? (INT 2Fh, AX=4800h, returns non-zero in AL if present) */
549
    /* is DOSKEY support present? (INT 2Fh, AX=4800h, returns non-zero in AL if present) */
550
    mov ax, 0x4800
550
    mov ax, 0x4800
551
    int 0x2f
551
    int 0x2f
552
    mov bl, al /* save doskey status in BL */
552
    mov bl, al /* save doskey status in BL */
553
 
553
 
554
    /* set up buffered input to inpseg:inpoff */
554
    /* set up buffered input to inpseg:inpoff */
555
    mov ax, inpseg
555
    mov ax, inpseg
556
    push ax
556
    push ax
557
    pop ds
557
    pop ds
558
    mov dx, inpoff
558
    mov dx, inpoff
559
 
559
 
560
    /* execute either DOS input or DOSKEY */
560
    /* execute either DOS input or DOSKEY */
561
    test bl, bl /* zf set if no DOSKEY present */
561
    test bl, bl /* zf set if no DOSKEY present */
562
    jnz DOSKEY
562
    jnz DOSKEY
563
 
563
 
564
    mov ah, 0x0a
564
    mov ah, 0x0a
565
    int 0x21
565
    int 0x21
566
    jmp short DONE
566
    jmp short DONE
567
 
567
 
568
    DOSKEY:
568
    DOSKEY:
569
    mov ax, 0x4810
569
    mov ax, 0x4810
570
    int 0x2f
570
    int 0x2f
571
 
571
 
572
    DONE:
572
    DONE:
573
    /* terminate command with a CR/LF */
573
    /* terminate command with a CR/LF */
574
    mov ah, 0x02 /* display character in dl */
574
    mov ah, 0x02 /* display character in dl */
575
    mov dl, 0x0d
575
    mov dl, 0x0d
576
    int 0x21
576
    int 0x21
577
    mov dl, 0x0a
577
    mov dl, 0x0a
578
    int 0x21
578
    int 0x21
579
 
579
 
580
    pop ds
580
    pop ds
581
    pop dx
581
    pop dx
582
    pop cx
582
    pop cx
583
    pop bx
583
    pop bx
584
    pop ax
584
    pop ax
585
  }
585
  }
586
}
586
}
587
 
587
 
588
 
588
 
589
/* fetches a line from batch file and write it to buff (NULL-terminated),
589
/* fetches a line from batch file and write it to buff (NULL-terminated),
590
 * increments rmod counter and returns 0 on success. */
590
 * increments rmod counter and returns 0 on success. */
591
static int getbatcmd(char *buff, unsigned char buffmaxlen, struct rmod_props far *rmod) {
591
static int getbatcmd(char *buff, unsigned char buffmaxlen, struct rmod_props far *rmod) {
592
  unsigned short i;
592
  unsigned short i;
593
  unsigned short batname_seg = FP_SEG(rmod->bat->fname);
593
  unsigned short batname_seg = FP_SEG(rmod->bat->fname);
594
  unsigned short batname_off = FP_OFF(rmod->bat->fname);
594
  unsigned short batname_off = FP_OFF(rmod->bat->fname);
595
  unsigned short filepos_cx = rmod->bat->nextline >> 16;
595
  unsigned short filepos_cx = rmod->bat->nextline >> 16;
596
  unsigned short filepos_dx = rmod->bat->nextline & 0xffff;
596
  unsigned short filepos_dx = rmod->bat->nextline & 0xffff;
597
  unsigned char blen = 0;
597
  unsigned char blen = 0;
598
  unsigned short errv = 0;
598
  unsigned short errv = 0;
599
 
599
 
600
  /* open file, jump to offset filpos, and read data into buff.
600
  /* open file, jump to offset filpos, and read data into buff.
601
   * result in blen (unchanged if EOF or failure). */
601
   * result in blen (unchanged if EOF or failure). */
602
  _asm {
602
  _asm {
603
    push ax
603
    push ax
604
    push bx
604
    push bx
605
    push cx
605
    push cx
606
    push dx
606
    push dx
607
 
607
 
608
    /* open file (read-only) */
608
    /* open file (read-only) */
609
    mov bx, 0xffff        /* preset BX to 0xffff to detect error conditions */
609
    mov bx, 0xffff        /* preset BX to 0xffff to detect error conditions */
610
    mov dx, batname_off
610
    mov dx, batname_off
611
    mov ax, batname_seg
611
    mov ax, batname_seg
612
    push ds     /* save DS */
612
    push ds     /* save DS */
613
    mov ds, ax
613
    mov ds, ax
614
    mov ax, 0x3d00
614
    mov ax, 0x3d00
615
    int 0x21    /* handle in ax on success */
615
    int 0x21    /* handle in ax on success */
616
    pop ds      /* restore DS */
616
    pop ds      /* restore DS */
617
    jc ERR
617
    jc ERR
618
    mov bx, ax  /* save handle to bx */
618
    mov bx, ax  /* save handle to bx */
619
 
619
 
620
    /* jump to file offset CX:DX */
620
    /* jump to file offset CX:DX */
621
    mov ax, 0x4200
621
    mov ax, 0x4200
622
    mov cx, filepos_cx
622
    mov cx, filepos_cx
623
    mov dx, filepos_dx
623
    mov dx, filepos_dx
624
    int 0x21  /* CF clear on success, DX:AX set to cur pos */
624
    int 0x21  /* CF clear on success, DX:AX set to cur pos */
625
    jc ERR
625
    jc ERR
626
 
626
 
627
    /* read the line into buff */
627
    /* read the line into buff */
628
    mov ah, 0x3f
628
    mov ah, 0x3f
629
    xor ch, ch
629
    xor ch, ch
630
    mov cl, buffmaxlen
630
    mov cl, buffmaxlen
631
    mov dx, buff
631
    mov dx, buff
632
    int 0x21 /* CF clear on success, AX=number of bytes read */
632
    int 0x21 /* CF clear on success, AX=number of bytes read */
633
    jc ERR
633
    jc ERR
634
    mov blen, al
634
    mov blen, al
635
    jmp CLOSEANDQUIT
635
    jmp CLOSEANDQUIT
636
 
636
 
637
    ERR:
637
    ERR:
638
    mov errv, ax
638
    mov errv, ax
639
 
639
 
640
    CLOSEANDQUIT:
640
    CLOSEANDQUIT:
641
    /* close file (if bx contains a handle) */
641
    /* close file (if bx contains a handle) */
642
    cmp bx, 0xffff
642
    cmp bx, 0xffff
643
    je DONE
643
    je DONE
644
    mov ah, 0x3e
644
    mov ah, 0x3e
645
    int 0x21
645
    int 0x21
646
 
646
 
647
    DONE:
647
    DONE:
648
    pop dx
648
    pop dx
649
    pop cx
649
    pop cx
650
    pop bx
650
    pop bx
651
    pop ax
651
    pop ax
652
  }
652
  }
653
 
653
 
654
  /* printf("blen=%u filepos_cx=%u filepos_dx=%u\r\n", blen, filepos_cx, filepos_dx); */
654
  /* printf("blen=%u filepos_cx=%u filepos_dx=%u\r\n", blen, filepos_cx, filepos_dx); */
655
 
655
 
656
  if (errv != 0) nls_outputnl_doserr(errv);
656
  if (errv != 0) nls_outputnl_doserr(errv);
657
 
657
 
658
  /* on EOF - abort processing the bat file */
658
  /* on EOF - abort processing the bat file */
659
  if (blen == 0) goto OOPS;
659
  if (blen == 0) goto OOPS;
660
 
660
 
661
  /* find nearest \n to inc batch offset and replace \r by NULL terminator
661
  /* find nearest \n to inc batch offset and replace \r by NULL terminator
662
   * I support all CR/LF, CR- and LF-terminated batch files */
662
   * I support all CR/LF, CR- and LF-terminated batch files */
663
  for (i = 0; i < blen; i++) {
663
  for (i = 0; i < blen; i++) {
664
    if ((buff[i] == '\r') || (buff[i] == '\n')) {
664
    if ((buff[i] == '\r') || (buff[i] == '\n')) {
665
      if ((buff[i] == '\r') && ((i+1) < blen) && (buff[i+1] == '\n')) rmod->bat->nextline += 1;
665
      if ((buff[i] == '\r') && ((i+1) < blen) && (buff[i+1] == '\n')) rmod->bat->nextline += 1;
666
      break;
666
      break;
667
    }
667
    }
668
  }
668
  }
669
  buff[i] = 0;
669
  buff[i] = 0;
670
  rmod->bat->nextline += i + 1;
670
  rmod->bat->nextline += i + 1;
671
 
671
 
672
  return(0);
672
  return(0);
673
 
673
 
674
  OOPS:
674
  OOPS:
675
  rmod->bat->fname[0] = 0;
675
  rmod->bat->fname[0] = 0;
676
  rmod->bat->nextline = 0;
676
  rmod->bat->nextline = 0;
677
  return(-1);
677
  return(-1);
678
}
678
}
679
 
679
 
680
 
680
 
681
/* replaces %-variables in a BAT line with resolved values:
681
/* replaces %-variables in a BAT line with resolved values:
682
 * %PATH%       -> replaced by the contend of the PATH env variable
682
 * %PATH%       -> replaced by the contend of the PATH env variable
683
 * %UNDEFINED%  -> undefined variables are replaced by nothing ("")
683
 * %UNDEFINED%  -> undefined variables are replaced by nothing ("")
684
 * %NOTCLOSED   -> NOTCLOSED
684
 * %NOTCLOSED   -> NOTCLOSED
685
 * %1           -> first argument of the batch file (or nothing if no arg) */
685
 * %1           -> first argument of the batch file (or nothing if no arg) */
686
static void batpercrepl(char *res, unsigned short ressz, const char *line, const struct rmod_props far *rmod, unsigned short envseg) {
686
static void batpercrepl(char *res, unsigned short ressz, const char *line, const struct rmod_props far *rmod, unsigned short envseg) {
687
  unsigned short lastperc = 0xffff;
687
  unsigned short lastperc = 0xffff;
688
  unsigned short reslen = 0;
688
  unsigned short reslen = 0;
689
 
689
 
690
  if (ressz == 0) return;
690
  if (ressz == 0) return;
691
  ressz--; /* reserve one byte for the NULL terminator */
691
  ressz--; /* reserve one byte for the NULL terminator */
692
 
692
 
693
  for (; (reslen < ressz) && (*line != 0); line++) {
693
  for (; (reslen < ressz) && (*line != 0); line++) {
694
    /* if not a percent, I don't care */
694
    /* if not a percent, I don't care */
695
    if (*line != '%') {
695
    if (*line != '%') {
696
      res[reslen++] = *line;
696
      res[reslen++] = *line;
697
      continue;
697
      continue;
698
    }
698
    }
699
 
699
 
700
    /* *** perc char handling *** */
700
    /* *** perc char handling *** */
701
 
701
 
702
    /* closing perc? */
702
    /* closing perc? */
703
    if (lastperc != 0xffff) {
703
    if (lastperc != 0xffff) {
704
      /* %% is '%' */
704
      /* %% is '%' */
705
      if (lastperc == reslen) {
705
      if (lastperc == reslen) {
706
        res[reslen++] = '%';
706
        res[reslen++] = '%';
707
      } else {   /* otherwise variable name */
707
      } else {   /* otherwise variable name */
708
        const char far *ptr;
708
        const char far *ptr;
709
        res[reslen] = 0;
709
        res[reslen] = 0;
710
        reslen = lastperc;
710
        reslen = lastperc;
711
        ptr = env_lookup_val(envseg, res + reslen);
711
        ptr = env_lookup_val(envseg, res + reslen);
712
        if (ptr != NULL) {
712
        if (ptr != NULL) {
713
          while ((*ptr != 0) && (reslen < ressz)) {
713
          while ((*ptr != 0) && (reslen < ressz)) {
714
            res[reslen++] = *ptr;
714
            res[reslen++] = *ptr;
715
            ptr++;
715
            ptr++;
716
          }
716
          }
717
        }
717
        }
718
      }
718
      }
719
      lastperc = 0xffff;
719
      lastperc = 0xffff;
720
      continue;
720
      continue;
721
    }
721
    }
722
 
722
 
723
    /* digit? (bat arg) */
723
    /* digit? (bat arg) */
724
    if ((line[1] >= '0') && (line[1] <= '9')) {
724
    if ((line[1] >= '0') && (line[1] <= '9')) {
725
      unsigned short argid = line[1] - '0';
725
      unsigned short argid = line[1] - '0';
726
      unsigned short i;
726
      unsigned short i;
727
      const char far *argv = "";
727
      const char far *argv = "";
728
      if ((rmod != NULL) && (rmod->bat != NULL)) argv = rmod->bat->argv;
728
      if ((rmod != NULL) && (rmod->bat != NULL)) argv = rmod->bat->argv;
729
 
729
 
730
      /* locate the proper arg */
730
      /* locate the proper arg */
731
      for (i = 0; i != argid; i++) {
731
      for (i = 0; i != argid; i++) {
732
        /* if string is 0, then end of list reached */
732
        /* if string is 0, then end of list reached */
733
        if (*argv == 0) break;
733
        if (*argv == 0) break;
734
        /* jump to next arg */
734
        /* jump to next arg */
735
        while (*argv != 0) argv++;
735
        while (*argv != 0) argv++;
736
        argv++;
736
        argv++;
737
      }
737
      }
738
 
738
 
739
      /* copy the arg to result */
739
      /* copy the arg to result */
740
      for (i = 0; (argv[i] != 0) && (reslen < ressz); i++) {
740
      for (i = 0; (argv[i] != 0) && (reslen < ressz); i++) {
741
        res[reslen++] = argv[i];
741
        res[reslen++] = argv[i];
742
      }
742
      }
743
      line++;  /* skip the digit */
743
      line++;  /* skip the digit */
744
      continue;
744
      continue;
745
    }
745
    }
746
 
746
 
747
    /* opening perc */
747
    /* opening perc */
748
    lastperc = reslen;
748
    lastperc = reslen;
749
 
749
 
750
  }
750
  }
751
 
751
 
752
  res[reslen] = 0;
752
  res[reslen] = 0;
753
}
753
}
754
 
754
 
755
 
755
 
756
 
756
 
757
int main(void) {
757
int main(void) {
758
  static struct config cfg;
758
  static struct config cfg;
759
  static unsigned short far *rmod_envseg;
759
  static unsigned short far *rmod_envseg;
760
  static unsigned short far *lastexitcode;
760
  static unsigned short far *lastexitcode;
761
  static struct rmod_props far *rmod;
761
  static struct rmod_props far *rmod;
762
  static char cmdlinebuf[CMDLINE_MAXLEN + 2]; /* 1 extra byte for 0-terminator and another for memguard */
762
  static char cmdlinebuf[CMDLINE_MAXLEN + 2]; /* 1 extra byte for 0-terminator and another for memguard */
763
  static char *cmdline;
763
  static char *cmdline;
764
  static struct redir_data redirprops;
764
  static struct redir_data redirprops;
765
  static enum cmd_result cmdres;
765
  static enum cmd_result cmdres;
766
  static unsigned short i; /* general-purpose variable for short-lived things */
766
  static unsigned short i; /* general-purpose variable for short-lived things */
767
  static unsigned char flags;
767
  static unsigned char flags;
768
 
768
 
769
  rmod = rmod_find(BUFFER_len);
769
  rmod = rmod_find(BUFFER_len);
770
  if (rmod == NULL) {
770
  if (rmod == NULL) {
771
    /* look at command line parameters (in case env size if set there) */
771
    /* look at command line parameters (in case env size if set there) */
772
    parse_argv(&cfg);
772
    parse_argv(&cfg);
773
    rmod = rmod_install(cfg.envsiz, BUFFER, BUFFER_len);
773
    rmod = rmod_install(cfg.envsiz, BUFFER, BUFFER_len);
774
    if (rmod == NULL) {
774
    if (rmod == NULL) {
775
      nls_outputnl_err(2,1); /* "FATAL ERROR: rmod_install() failed" */
775
      nls_outputnl_err(2,1); /* "FATAL ERROR: rmod_install() failed" */
776
      return(1);
776
      return(1);
777
    }
777
    }
778
    /* copy flags to rmod's storage (and enable ECHO) */
778
    /* copy flags to rmod's storage (and enable ECHO) */
779
    rmod->flags = cfg.flags | FLAG_ECHOFLAG;
779
    rmod->flags = cfg.flags | FLAG_ECHOFLAG;
780
    /* printf("rmod installed at %Fp\r\n", rmod); */
780
    /* printf("rmod installed at %Fp\r\n", rmod); */
781
    rmod->version = BYTE_VERSION;
781
    rmod->version = BYTE_VERSION;
782
  } else {
782
  } else {
783
    /* printf("rmod found at %Fp\r\n", rmod); */
783
    /* printf("rmod found at %Fp\r\n", rmod); */
784
    /* if I was spawned by rmod and FLAG_EXEC_AND_QUIT is set, then I should
784
    /* if I was spawned by rmod and FLAG_EXEC_AND_QUIT is set, then I should
785
     * die asap, because the command has been executed already, so I no longer
785
     * die asap, because the command has been executed already, so I no longer
786
     * have a purpose in life */
786
     * have a purpose in life */
787
    if (rmod->flags & FLAG_EXEC_AND_QUIT) sayonara(rmod);
787
    if (rmod->flags & FLAG_EXEC_AND_QUIT) sayonara(rmod);
788
    /* */
788
    /* */
789
    if (rmod->version != BYTE_VERSION) {
789
    if (rmod->version != BYTE_VERSION) {
790
      nls_outputnl_err(2,0);
790
      nls_outputnl_err(2,0);
791
      _asm {
791
      _asm {
792
        HALT:
792
        HALT:
793
        hlt
793
        hlt
794
        jmp HALT
794
        jmp HALT
795
      }
795
      }
796
    }
796
    }
797
  }
797
  }
798
 
798
 
799
  /* install a few guardvals in memory to detect some cases of overflows */
799
  /* install a few guardvals in memory to detect some cases of overflows */
800
  memguard_set(cmdlinebuf);
800
  memguard_set(cmdlinebuf);
801
 
801
 
802
  rmod_envseg = MK_FP(rmod->rmodseg, RMOD_OFFSET_ENVSEG);
802
  rmod_envseg = MK_FP(rmod->rmodseg, RMOD_OFFSET_ENVSEG);
803
  lastexitcode = MK_FP(rmod->rmodseg, RMOD_OFFSET_LEXITCODE);
803
  lastexitcode = MK_FP(rmod->rmodseg, RMOD_OFFSET_LEXITCODE);
804
 
804
 
805
  /* make COMPSEC point to myself */
805
  /* make COMPSEC point to myself */
806
  set_comspec_to_self(*rmod_envseg);
806
  set_comspec_to_self(*rmod_envseg);
807
 
807
 
808
  /* on /P check for the presence of AUTOEXEC.BAT and execute it if found,
808
  /* on /P check for the presence of AUTOEXEC.BAT and execute it if found,
809
   * but skip this check if /D was also passed */
809
   * but skip this check if /D was also passed */
810
  if ((cfg.flags & (FLAG_PERMANENT | FLAG_SKIP_AUTOEXEC)) == FLAG_PERMANENT) {
810
  if ((cfg.flags & (FLAG_PERMANENT | FLAG_SKIP_AUTOEXEC)) == FLAG_PERMANENT) {
811
    if (file_getattr("AUTOEXEC.BAT") >= 0) cfg.execcmd = "AUTOEXEC.BAT";
811
    if (file_getattr("AUTOEXEC.BAT") >= 0) cfg.execcmd = "AUTOEXEC.BAT";
812
  }
812
  }
813
 
813
 
814
  do {
814
  do {
815
    /* terminate previous command with a CR/LF if ECHO ON (but not during BAT processing) */
815
    /* terminate previous command with a CR/LF if ECHO ON (but not during BAT processing) */
816
    if ((rmod->flags & FLAG_ECHOFLAG) && (rmod->bat == NULL)) outputnl("");
816
    if ((rmod->flags & FLAG_ECHOFLAG) && (rmod->bat == NULL)) outputnl("");
817
 
817
 
818
    SKIP_NEWLINE:
818
    SKIP_NEWLINE:
819
 
819
 
820
    /* memory check */
820
    /* memory check */
821
    memguard_check(rmod->rmodseg, cmdlinebuf);
821
    memguard_check(rmod->rmodseg, cmdlinebuf);
822
 
822
 
823
    /* preset cmdline to point at the dedicated buffer */
823
    /* preset cmdline to point at the dedicated buffer */
824
    cmdline = cmdlinebuf;
824
    cmdline = cmdlinebuf;
825
 
825
 
826
    /* (re)load translation strings if needed */
826
    /* (re)load translation strings if needed */
827
    nls_langreload(BUFFER, *rmod_envseg);
827
    nls_langreload(BUFFER, *rmod_envseg);
828
 
828
 
829
    /* load awaiting command, if any (used to run piped commands) */
829
    /* load awaiting command, if any (used to run piped commands) */
830
    if (rmod->awaitingcmd[0] != 0) {
830
    if (rmod->awaitingcmd[0] != 0) {
831
      _fstrcpy(cmdline, rmod->awaitingcmd);
831
      _fstrcpy(cmdline, rmod->awaitingcmd);
832
      rmod->awaitingcmd[0] = 0;
832
      rmod->awaitingcmd[0] = 0;
833
      flags |= DELETE_STDIN_FILE;
833
      flags |= DELETE_STDIN_FILE;
834
      goto EXEC_CMDLINE;
834
      goto EXEC_CMDLINE;
835
    } else {
835
    } else {
836
      flags &= ~DELETE_STDIN_FILE;
836
      flags &= ~DELETE_STDIN_FILE;
837
    }
837
    }
838
 
838
 
839
    /* skip user input if I have a command to exec (/C or /K) */
839
    /* skip user input if I have a command to exec (/C or /K) */
840
    if (cfg.execcmd != NULL) {
840
    if (cfg.execcmd != NULL) {
841
      cmdline = cfg.execcmd;
841
      cmdline = cfg.execcmd;
842
      cfg.execcmd = NULL;
842
      cfg.execcmd = NULL;
843
      goto EXEC_CMDLINE;
843
      goto EXEC_CMDLINE;
844
    }
844
    }
845
 
845
 
846
    /* if batch file is being executed -> fetch next line */
846
    /* if batch file is being executed -> fetch next line */
847
    if (rmod->bat != NULL) {
847
    if (rmod->bat != NULL) {
848
      if (getbatcmd(BUFFER, CMDLINE_MAXLEN, rmod) != 0) { /* end of batch */
848
      if (getbatcmd(BUFFER, CMDLINE_MAXLEN, rmod) != 0) { /* end of batch */
849
        struct batctx far *victim = rmod->bat;
849
        struct batctx far *victim = rmod->bat;
850
        rmod->bat = rmod->bat->parent;
850
        rmod->bat = rmod->bat->parent;
851
        rmod_ffree(victim);
851
        rmod_ffree(victim);
852
        /* end of batch? then restore echo flag as it was before running the (first) bat file */
852
        /* end of batch? then restore echo flag as it was before running the (first) bat file */
853
        if (rmod->bat == NULL) {
853
        if (rmod->bat == NULL) {
854
          rmod->flags &= ~FLAG_ECHOFLAG;
854
          rmod->flags &= ~FLAG_ECHOFLAG;
855
          if (rmod->flags & FLAG_ECHO_BEFORE_BAT) rmod->flags |= FLAG_ECHOFLAG;
855
          if (rmod->flags & FLAG_ECHO_BEFORE_BAT) rmod->flags |= FLAG_ECHOFLAG;
856
        }
856
        }
857
        continue;
857
        continue;
858
      }
858
      }
859
      /* %-decoding of variables (%PATH%, %1, %%...), result in cmdline */
859
      /* %-decoding of variables (%PATH%, %1, %%...), result in cmdline */
860
      batpercrepl(cmdline, CMDLINE_MAXLEN, BUFFER, rmod, *rmod_envseg);
860
      batpercrepl(cmdline, CMDLINE_MAXLEN, BUFFER, rmod, *rmod_envseg);
861
      /* skip any leading spaces */
861
      /* skip any leading spaces */
862
      while (*cmdline == ' ') cmdline++;
862
      while (*cmdline == ' ') cmdline++;
863
      /* skip batch labels */
863
      /* skip batch labels */
864
      if (*cmdline == ':') continue;
864
      if (*cmdline == ':') continue;
865
      /* output prompt and command on screen if echo on and command is not
865
      /* output prompt and command on screen if echo on and command is not
866
       * inhibiting it with the @ prefix */
866
       * inhibiting it with the @ prefix */
867
      if ((rmod->flags & FLAG_ECHOFLAG) && (cmdline[0] != '@')) {
867
      if ((rmod->flags & FLAG_ECHOFLAG) && (cmdline[0] != '@')) {
868
        build_and_display_prompt(BUFFER, *rmod_envseg);
868
        build_and_display_prompt(BUFFER, *rmod_envseg);
869
        outputnl(cmdline);
869
        outputnl(cmdline);
870
      }
870
      }
871
      /* skip the @ prefix if present, it is no longer useful */
871
      /* skip the @ prefix if present, it is no longer useful */
872
      if (cmdline[0] == '@') cmdline++;
872
      if (cmdline[0] == '@') cmdline++;
873
    } else {
873
    } else {
874
      unsigned char far *rmod_inputbuf = MK_FP(rmod->rmodseg, RMOD_OFFSET_INPUTBUF);
874
      unsigned char far *rmod_inputbuf = MK_FP(rmod->rmodseg, RMOD_OFFSET_INPUTBUF);
875
      /* invalidate input history if it appears to be damaged (could occur
875
      /* invalidate input history if it appears to be damaged (could occur
876
       * because of a stack overflow, for example if some stack-hungry TSR is
876
       * because of a stack overflow, for example if some stack-hungry TSR is
877
       * being used) */
877
       * being used) */
878
      if ((rmod_inputbuf[0] != 128) || (rmod_inputbuf[rmod_inputbuf[1] + 2] != '\r') || (rmod_inputbuf[rmod_inputbuf[1] + 3] != 0xCA) || (rmod_inputbuf[rmod_inputbuf[1] + 4] != 0xFE)) {
878
      if ((rmod_inputbuf[0] != 128) || (rmod_inputbuf[rmod_inputbuf[1] + 2] != '\r') || (rmod_inputbuf[rmod_inputbuf[1] + 3] != 0xCA) || (rmod_inputbuf[rmod_inputbuf[1] + 4] != 0xFE)) {
879
        rmod_inputbuf[0] = 128;  /* max allowed input length */
879
        rmod_inputbuf[0] = 128;  /* max allowed input length */
880
        rmod_inputbuf[1] = 0;    /* string len stored in buffer */
880
        rmod_inputbuf[1] = 0;    /* string len stored in buffer */
881
        rmod_inputbuf[2] = '\r'; /* string terminator */
881
        rmod_inputbuf[2] = '\r'; /* string terminator */
882
        rmod_inputbuf[3] = 0xCA; /* trailing signature */
882
        rmod_inputbuf[3] = 0xCA; /* trailing signature */
883
        rmod_inputbuf[4] = 0xFE; /* trailing signature */
883
        rmod_inputbuf[4] = 0xFE; /* trailing signature */
884
        nls_outputnl_err(2,2); /* "stack overflow detected, command history flushed" */
884
        nls_outputnl_err(2,2); /* "stack overflow detected, command history flushed" */
885
      }
885
      }
886
      /* interactive mode: display prompt (if echo enabled) and wait for user
886
      /* interactive mode: display prompt (if echo enabled) and wait for user
887
       * command line */
887
       * command line */
888
      if (rmod->flags & FLAG_ECHOFLAG) build_and_display_prompt(BUFFER, *rmod_envseg);
888
      if (rmod->flags & FLAG_ECHOFLAG) build_and_display_prompt(BUFFER, *rmod_envseg);
889
      /* collect user input */
889
      /* collect user input */
890
      cmdline_getinput(rmod->rmodseg, RMOD_OFFSET_INPUTBUF);
890
      cmdline_getinput(rmod->rmodseg, RMOD_OFFSET_INPUTBUF);
891
      /* append stack-overflow detection signature to the end of the input buffer */
891
      /* append stack-overflow detection signature to the end of the input buffer */
892
      rmod_inputbuf[rmod_inputbuf[1] + 3] = 0xCA; /* trailing signature */
892
      rmod_inputbuf[rmod_inputbuf[1] + 3] = 0xCA; /* trailing signature */
893
      rmod_inputbuf[rmod_inputbuf[1] + 4] = 0xFE; /* trailing signature */
893
      rmod_inputbuf[rmod_inputbuf[1] + 4] = 0xFE; /* trailing signature */
894
      /* copy it to local cmdline */
894
      /* copy it to local cmdline */
895
      if (rmod_inputbuf[1] != 0) _fmemcpy(cmdline, rmod_inputbuf + 2, rmod_inputbuf[1]);
895
      if (rmod_inputbuf[1] != 0) _fmemcpy(cmdline, rmod_inputbuf + 2, rmod_inputbuf[1]);
896
      cmdline[rmod_inputbuf[1]] = 0; /* zero-terminate local buff (original is '\r'-terminated) */
896
      cmdline[rmod_inputbuf[1]] = 0; /* zero-terminate local buff (original is '\r'-terminated) */
897
    }
897
    }
898
 
898
 
899
    /* if nothing entered, loop again (but without appending an extra CR/LF) */
899
    /* if nothing entered, loop again (but without appending an extra CR/LF) */
900
    if (cmdline[0] == 0) goto SKIP_NEWLINE;
900
    if (cmdline[0] == 0) goto SKIP_NEWLINE;
901
 
901
 
902
    /* I jump here when I need to exec an initial command (/C or /K) */
902
    /* I jump here when I need to exec an initial command (/C or /K) */
903
    EXEC_CMDLINE:
903
    EXEC_CMDLINE:
904
 
904
 
905
    /* move pointer forward to skip over any leading spaces */
905
    /* move pointer forward to skip over any leading spaces */
906
    while (*cmdline == ' ') cmdline++;
906
    while (*cmdline == ' ') cmdline++;
907
 
907
 
908
    /* update rmod's ptr to COMPSPEC so it is always up to date */
908
    /* update rmod's ptr to COMPSPEC so it is always up to date */
909
    rmod_updatecomspecptr(rmod->rmodseg, *rmod_envseg);
909
    rmod_updatecomspecptr(rmod->rmodseg, *rmod_envseg);
910
 
910
 
911
    /* handle redirections (if any) */
911
    /* handle redirections (if any) */
912
    i = redir_parsecmd(&redirprops, cmdline, rmod->awaitingcmd, *rmod_envseg);
912
    i = redir_parsecmd(&redirprops, cmdline, rmod->awaitingcmd, *rmod_envseg);
913
    if (i != 0) {
913
    if (i != 0) {
914
      nls_outputnl_doserr(i);
914
      nls_outputnl_doserr(i);
915
      rmod->awaitingcmd[0] = 0;
915
      rmod->awaitingcmd[0] = 0;
916
      continue;
916
      continue;
917
    }
917
    }
918
 
918
 
919
    /* try matching (and executing) an internal command */
919
    /* try matching (and executing) an internal command */
920
    cmdres = cmd_process(rmod, *rmod_envseg, cmdline, BUFFER, sizeof(BUFFER), &redirprops, flags & DELETE_STDIN_FILE);
920
    cmdres = cmd_process(rmod, *rmod_envseg, cmdline, BUFFER, sizeof(BUFFER), &redirprops, flags & DELETE_STDIN_FILE);
921
    if ((cmdres == CMD_OK) || (cmdres == CMD_FAIL)) {
921
    if ((cmdres == CMD_OK) || (cmdres == CMD_FAIL)) {
922
      /* internal command executed */
922
      /* internal command executed */
923
      continue;
923
      continue;
924
    } else if (cmdres == CMD_CHANGED) { /* cmdline changed, needs to be reprocessed */
924
    } else if (cmdres == CMD_CHANGED) { /* cmdline changed, needs to be reprocessed */
925
      goto EXEC_CMDLINE;
925
      goto EXEC_CMDLINE;
926
    } else if (cmdres == CMD_CHANGED_BY_CALL) { /* cmdline changed *specifically* by CALL */
926
    } else if (cmdres == CMD_CHANGED_BY_CALL) { /* cmdline changed *specifically* by CALL */
927
      /* the distinction is important since it changes the way batch files are processed */
927
      /* the distinction is important since it changes the way batch files are processed */
928
      flags |= CALL_FLAG;
928
      flags |= CALL_FLAG;
929
      goto EXEC_CMDLINE;
929
      goto EXEC_CMDLINE;
930
    } else if (cmdres == CMD_NOTFOUND) {
930
    } else if (cmdres == CMD_NOTFOUND) {
931
      /* this was not an internal command, try matching an external command */
931
      /* this was not an internal command, try matching an external command */
932
      run_as_external(BUFFER, cmdline, *rmod_envseg, rmod, &redirprops, flags);
932
      run_as_external(BUFFER, cmdline, *rmod_envseg, rmod, &redirprops, flags);
933
      flags &= ~CALL_FLAG; /* reset callflag to make sure it is processed only once */
933
      flags &= ~CALL_FLAG; /* reset callflag to make sure it is processed only once */
934
 
934
 
935
      /* is it a newly launched BAT file? */
935
      /* is it a newly launched BAT file? */
936
      if ((rmod->bat != NULL) && (rmod->bat->nextline == 0)) goto SKIP_NEWLINE;
936
      if ((rmod->bat != NULL) && (rmod->bat->nextline == 0)) goto SKIP_NEWLINE;
937
      /* run_as_external() does not return on success, if I am still alive then
937
      /* run_as_external() does not return on success, if I am still alive then
938
       * external command failed to execute */
938
       * external command failed to execute */
939
      nls_outputnl(0,5); /* "Bad command or file name" */
939
      nls_outputnl(0,5); /* "Bad command or file name" */
940
      continue;
940
      continue;
941
    }
941
    }
942
 
942
 
943
    /* I should never ever land here */
943
    /* I should never ever land here */
944
    outputnl("INTERNAL ERR: INVALID CMDRES");
944
    outputnl("INTERNAL ERR: INVALID CMDRES");
945
 
945
 
946
    /* repeat unless /C was asked - but always finish running an ongoing batch
946
    /* repeat unless /C was asked - but always finish running an ongoing batch
947
     * file (otherwise only first BAT command would be executed with /C) */
947
     * file (otherwise only first BAT command would be executed with /C) */
948
  } while (((rmod->flags & FLAG_EXEC_AND_QUIT) == 0) || (rmod->bat != NULL));
948
  } while (((rmod->flags & FLAG_EXEC_AND_QUIT) == 0) || (rmod->bat != NULL));
949
 
949
 
950
  sayonara(rmod);
950
  sayonara(rmod);
951
  return(0);
951
  return(0);
952
}
952
}
953
 
953