Subversion Repositories SvarDOS

Rev

Rev 514 | Rev 527 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
421 mateuszvis 1
/* This file is part of the SvarCOM project and is published under the terms
2
 * of the MIT license.
3
 *
4
 * Copyright (C) 2021 Mateusz Viste
5
 *
6
 * Permission is hereby granted, free of charge, to any person obtaining a
7
 * copy of this software and associated documentation files (the "Software"),
8
 * to deal in the Software without restriction, including without limitation
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
11
 * Software is furnished to do so, subject to the following conditions:
12
 *
13
 * The above copyright notice and this permission notice shall be included in
14
 * all copies or substantial portions of the Software.
15
 *
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,
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
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
22
 * DEALINGS IN THE SOFTWARE.
23
 */
24
 
352 mateuszvis 25
/* entry point for internal commands
26
 * matches internal commands and executes them
353 mateuszvis 27
 * returns -1 or exit code if processed
421 mateuszvis 28
 * returns -2 if command unrecognized
29
 */
352 mateuszvis 30
 
31
#include <i86.h>
32
#include <stdio.h>
364 mateuszvis 33
#include <stdlib.h>
372 mateuszvis 34
#include <string.h>
352 mateuszvis 35
 
363 mateuszvis 36
#include "doserr.h"
371 mateuszvis 37
#include "env.h"
352 mateuszvis 38
#include "helpers.h"
517 mateuszvis 39
#include "redir.h"
405 mateuszvis 40
#include "rmodinit.h"
448 mateuszvis 41
#include "sayonara.h"
352 mateuszvis 42
 
403 mateuszvis 43
 
364 mateuszvis 44
struct cmd_funcparam {
371 mateuszvis 45
  int argc;                 /* number of arguments */
501 mateuszvis 46
  const char *argv[128];    /* pointers to each argument */
47
  char argvbuf[256];        /* buffer that hold data pointed out by argv[] */
371 mateuszvis 48
  unsigned short env_seg;   /* segment of environment block */
449 mateuszvis 49
  struct rmod_props far *rmod; /* rmod settings */
371 mateuszvis 50
  unsigned short argoffset; /* offset of cmdline where first argument starts */
479 mateuszvis 51
  const char *cmdline;      /* original cmdline (terminated by a NULL) */
501 mateuszvis 52
  unsigned short BUFFERSZ;  /* avail space in BUFFER */
53
  char BUFFER[1];           /* a buffer for whatever is needed (must be last) */
364 mateuszvis 54
};
55
 
387 mateuszvis 56
/* scans argv for the presence of a "/?" parameter. returns 1 if found, 0 otherwise */
57
static int cmd_ishlp(const struct cmd_funcparam *p) {
58
  int i;
59
  for (i = 0; i < p->argc; i++) {
60
    if ((p->argv[i][0] == '/') && (p->argv[i][1] == '?')) return(1);
61
  }
62
  return(0);
63
}
64
 
380 mateuszvis 65
#include "cmd/_notimpl.c"
408 mateuszvis 66
#include "cmd/break.c"
363 mateuszvis 67
#include "cmd/cd.c"
407 mateuszvis 68
#include "cmd/chcp.c"
404 mateuszvis 69
#include "cmd/cls.c"
403 mateuszvis 70
#include "cmd/copy.c"
431 mateuszvis 71
#include "cmd/date.c"
392 mateuszvis 72
#include "cmd/del.c"
399 mateuszvis 73
#include "cmd/vol.c"     /* must be included before dir.c due to dependency */
368 mateuszvis 74
#include "cmd/dir.c"
405 mateuszvis 75
#include "cmd/echo.c"
364 mateuszvis 76
#include "cmd/exit.c"
385 mateuszvis 77
#include "cmd/mkdir.c"
372 mateuszvis 78
#include "cmd/path.c"
400 mateuszvis 79
#include "cmd/pause.c"
371 mateuszvis 80
#include "cmd/prompt.c"
400 mateuszvis 81
#include "cmd/rem.c"
406 mateuszvis 82
#include "cmd/rename.c"
385 mateuszvis 83
#include "cmd/rmdir.c"
352 mateuszvis 84
#include "cmd/set.c"
514 mateuszvis 85
#include "cmd/shift.c"
427 mateuszvis 86
#include "cmd/time.c"
399 mateuszvis 87
#include "cmd/type.c"
379 mateuszvis 88
#include "cmd/ver.c"
386 mateuszvis 89
#include "cmd/verify.c"
352 mateuszvis 90
 
91
#include "cmd.h"
92
 
93
 
364 mateuszvis 94
struct CMD_ID {
95
  const char *cmd;
372 mateuszvis 96
  int (*func_ptr)(struct cmd_funcparam *); /* pointer to handling function */
364 mateuszvis 97
};
352 mateuszvis 98
 
364 mateuszvis 99
const struct CMD_ID INTERNAL_CMDS[] = {
408 mateuszvis 100
  {"BREAK",   cmd_break},
364 mateuszvis 101
  {"CD",      cmd_cd},
407 mateuszvis 102
  {"CHCP",    cmd_chcp},
364 mateuszvis 103
  {"CHDIR",   cmd_cd},
404 mateuszvis 104
  {"CLS",     cmd_cls},
403 mateuszvis 105
  {"COPY",    cmd_copy},
380 mateuszvis 106
  {"CTTY",    cmd_notimpl},
431 mateuszvis 107
  {"DATE",    cmd_date},
392 mateuszvis 108
  {"DEL",     cmd_del},
368 mateuszvis 109
  {"DIR",     cmd_dir},
405 mateuszvis 110
  {"ECHO",    cmd_echo},
392 mateuszvis 111
  {"ERASE",   cmd_del},
364 mateuszvis 112
  {"EXIT",    cmd_exit},
380 mateuszvis 113
  {"LH",      cmd_notimpl},
114
  {"LOADHIGH",cmd_notimpl},
385 mateuszvis 115
  {"MD",      cmd_mkdir},
116
  {"MKDIR",   cmd_mkdir},
400 mateuszvis 117
  {"PAUSE",   cmd_pause},
372 mateuszvis 118
  {"PATH",    cmd_path},
371 mateuszvis 119
  {"PROMPT",  cmd_prompt},
385 mateuszvis 120
  {"RD",      cmd_rmdir},
400 mateuszvis 121
  {"REM",     cmd_rem},
406 mateuszvis 122
  {"REN",     cmd_rename},
123
  {"RENAME",  cmd_rename},
385 mateuszvis 124
  {"RMDIR",   cmd_rmdir},
364 mateuszvis 125
  {"SET",     cmd_set},
514 mateuszvis 126
  {"SHIFT",   cmd_shift},
427 mateuszvis 127
  {"TIME",    cmd_time},
382 mateuszvis 128
  {"TYPE",    cmd_type},
379 mateuszvis 129
  {"VER",     cmd_ver},
386 mateuszvis 130
  {"VERIFY",  cmd_verify},
399 mateuszvis 131
  {"VOL",     cmd_vol},
364 mateuszvis 132
  {NULL,      NULL}
133
};
134
 
135
 
136
/* NULL if cmdline is not matching an internal command, otherwise returns a
137
 * pointer to a CMD_ID struct */
479 mateuszvis 138
static const struct CMD_ID *cmd_match(const char *cmdline, unsigned short *argoffset) {
364 mateuszvis 139
  unsigned short i;
140
  char buff[10];
141
 
142
  /* copy command to buffer, until space, NULL, tab, return, dot, slash or backslash */
143
  for (i = 0; i < 9; i++) {
144
    if (cmdline[i] == ' ') break;
145
    if (cmdline[i] == 0) break;
146
    if (cmdline[i] == '\t') break;
147
    if (cmdline[i] == '\r') break;
148
    if (cmdline[i] == '.') break;
149
    if (cmdline[i] == '/') break;
150
    if (cmdline[i] == '\\') break;
151
    buff[i] = cmdline[i];
152
  }
153
  buff[i] = 0;
154
 
155
  /* advance to nearest non-space to find where arguments start */
156
  while (cmdline[i] == ' ') i++;
157
  *argoffset = i;
158
 
159
  /* try matching an internal command */
160
  for (i = 0; INTERNAL_CMDS[i].cmd != NULL; i++) {
161
    /*printf("imatch(%s,%s)\r\n", buff, INTERNAL_CMDS[i].cmd); */
162
    if (imatch(buff, INTERNAL_CMDS[i].cmd)) {
163
      /*printf("match cmd i=%u (buff=%s)\r\n", i, buff);*/
164
      return(&(INTERNAL_CMDS[i]));
165
    }
166
  }
167
 
168
  return(NULL); /* command is not recognized as internal */
352 mateuszvis 169
}
364 mateuszvis 170
 
171
 
508 mateuszvis 172
/* explodes a command into an array of arguments where last arg is NULL.
173
 * if argvlist is not NULL, it will be filled with pointers that point to buff
174
 * locations. buff is filled with all the arguments, each argument being
175
 * zero-separated. buff is terminated with an empty argument to mark the end
176
 * of arguments.
364 mateuszvis 177
 * returns number of args */
508 mateuszvis 178
unsigned short cmd_explode(char *buff, const char far *s, char const **argvlist) {
364 mateuszvis 179
  int si = 0, argc = 0, i = 0;
180
  for (;;) {
181
    /* skip to next non-space character */
182
    while (s[si] == ' ') si++;
183
    /* end of string? */
184
    if (s[si] == 0) break;
185
    /* set argv ptr */
508 mateuszvis 186
    if (argvlist) argvlist[argc] = buff + i;
187
    argc++;
403 mateuszvis 188
    /* find next arg delimiter (spc, null, slash or plus) while copying arg to local buffer */
364 mateuszvis 189
    do {
190
      buff[i++] = s[si++];
403 mateuszvis 191
    } while (s[si] != ' ' && s[si] != 0 && s[si] != '/' && s[si] != '+');
364 mateuszvis 192
    buff[i++] = 0;
193
    /* is this end of string? */
194
    if (s[si] == 0) break;
195
  }
508 mateuszvis 196
  buff[i] = 0; /* terminate with one extra zero to tell "this is the end of list" */
197
  if (argvlist) argvlist[argc] = NULL;
364 mateuszvis 198
  return(argc);
199
}
200
 
201
 
517 mateuszvis 202
int cmd_process(struct rmod_props far *rmod, unsigned short env_seg, const char *cmdline, void *BUFFER, unsigned short BUFFERSZ, const struct redir_data *redir) {
364 mateuszvis 203
  const struct CMD_ID *cmdptr;
204
  unsigned short argoffset;
517 mateuszvis 205
  int cmdres;
372 mateuszvis 206
  struct cmd_funcparam *p = (void *)BUFFER;
501 mateuszvis 207
  p->BUFFERSZ = BUFFERSZ - sizeof(*p);
364 mateuszvis 208
 
365 mateuszvis 209
  /* special case: is this a drive change? (like "E:") */
210
  if ((cmdline[0] != 0) && (cmdline[1] == ':') && ((cmdline[2] == ' ') || (cmdline[2] == 0))) {
211
    if (((cmdline[0] >= 'a') && (cmdline[0] <= 'z')) || ((cmdline[0] >= 'A') && (cmdline[0] <= 'Z'))) {
212
      unsigned char drive = cmdline[0];
213
      unsigned char curdrive = 0;
214
      if (drive >= 'a') {
215
        drive -= 'a';
216
      } else {
217
        drive -= 'A';
218
      }
219
      _asm {
220
        push ax
221
        push dx
222
        mov ah, 0x0e     /* DOS 1+ - SELECT DEFAULT DRIVE */
223
        mov dl, drive    /* DL = new default drive (00h = A:, 01h = B:, etc) */
224
        int 0x21
225
        mov ah, 0x19     /* DOS 1+ - GET CURRENT DRIVE */
226
        int 0x21
227
        mov curdrive, al /* cur drive (0=A, 1=B, etc) */
228
        pop dx
229
        pop ax
230
      }
231
      if (curdrive != drive) puts(doserr(0x0f));
232
      return(-1);
233
    }
234
  }
235
 
236
  /* try matching an internal command */
364 mateuszvis 237
  cmdptr = cmd_match(cmdline, &argoffset);
238
  if (cmdptr == NULL) return(-2); /* command is not recognized as internal */
239
 
240
  /* printf("recognized internal command: '%s', tail of command at offset %u\r\n", cmdptr->cmd, argoffset); */
241
 
517 mateuszvis 242
  /* apply redirections (if any) */
243
  if (redir_apply(redir) != 0) return(-1);
244
 
364 mateuszvis 245
  /* prepare function parameters and feed it to the cmd handling function */
501 mateuszvis 246
  p->argc = cmd_explode(p->argvbuf, cmdline + argoffset, p->argv);
372 mateuszvis 247
  p->env_seg = env_seg;
449 mateuszvis 248
  p->rmod = rmod;
372 mateuszvis 249
  p->argoffset = argoffset;
250
  p->cmdline = cmdline;
364 mateuszvis 251
 
517 mateuszvis 252
  cmdres = (cmdptr->func_ptr)(p);
253
 
254
  /* cancel redirections */
255
  redir_revert();
256
 
257
  return(cmdres);
364 mateuszvis 258
}