Subversion Repositories SvarDOS

Rev

Rev 427 | Rev 448 | 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"
405 mateuszvis 39
#include "rmodinit.h"
352 mateuszvis 40
 
403 mateuszvis 41
#define BUFFER_SIZE 2048    /* make sure this is not bigger than the static buffer in command.c */
42
 
364 mateuszvis 43
struct cmd_funcparam {
371 mateuszvis 44
  int argc;                 /* number of arguments */
45
  const char *argv[256];    /* pointers to each argument */
46
  unsigned short env_seg;   /* segment of environment block */
405 mateuszvis 47
  unsigned short rmod_seg;  /* segment of the resident module */
371 mateuszvis 48
  unsigned short argoffset; /* offset of cmdline where first argument starts */
405 mateuszvis 49
  const char far *cmdline;  /* original cmdline (terminated by a NULL) */
403 mateuszvis 50
  char BUFFER[BUFFER_SIZE]; /* a buffer for whatever is needed */
364 mateuszvis 51
};
52
 
387 mateuszvis 53
/* scans argv for the presence of a "/?" parameter. returns 1 if found, 0 otherwise */
54
static int cmd_ishlp(const struct cmd_funcparam *p) {
55
  int i;
56
  for (i = 0; i < p->argc; i++) {
57
    if ((p->argv[i][0] == '/') && (p->argv[i][1] == '?')) return(1);
58
  }
59
  return(0);
60
}
61
 
380 mateuszvis 62
#include "cmd/_notimpl.c"
408 mateuszvis 63
#include "cmd/break.c"
363 mateuszvis 64
#include "cmd/cd.c"
407 mateuszvis 65
#include "cmd/chcp.c"
404 mateuszvis 66
#include "cmd/cls.c"
403 mateuszvis 67
#include "cmd/copy.c"
431 mateuszvis 68
#include "cmd/date.c"
392 mateuszvis 69
#include "cmd/del.c"
399 mateuszvis 70
#include "cmd/vol.c"     /* must be included before dir.c due to dependency */
368 mateuszvis 71
#include "cmd/dir.c"
405 mateuszvis 72
#include "cmd/echo.c"
364 mateuszvis 73
#include "cmd/exit.c"
385 mateuszvis 74
#include "cmd/mkdir.c"
372 mateuszvis 75
#include "cmd/path.c"
400 mateuszvis 76
#include "cmd/pause.c"
371 mateuszvis 77
#include "cmd/prompt.c"
400 mateuszvis 78
#include "cmd/rem.c"
406 mateuszvis 79
#include "cmd/rename.c"
385 mateuszvis 80
#include "cmd/rmdir.c"
352 mateuszvis 81
#include "cmd/set.c"
427 mateuszvis 82
#include "cmd/time.c"
399 mateuszvis 83
#include "cmd/type.c"
379 mateuszvis 84
#include "cmd/ver.c"
386 mateuszvis 85
#include "cmd/verify.c"
352 mateuszvis 86
 
87
#include "cmd.h"
88
 
89
 
364 mateuszvis 90
struct CMD_ID {
91
  const char *cmd;
372 mateuszvis 92
  int (*func_ptr)(struct cmd_funcparam *); /* pointer to handling function */
364 mateuszvis 93
};
352 mateuszvis 94
 
364 mateuszvis 95
const struct CMD_ID INTERNAL_CMDS[] = {
408 mateuszvis 96
  {"BREAK",   cmd_break},
364 mateuszvis 97
  {"CD",      cmd_cd},
407 mateuszvis 98
  {"CHCP",    cmd_chcp},
364 mateuszvis 99
  {"CHDIR",   cmd_cd},
404 mateuszvis 100
  {"CLS",     cmd_cls},
403 mateuszvis 101
  {"COPY",    cmd_copy},
380 mateuszvis 102
  {"CTTY",    cmd_notimpl},
431 mateuszvis 103
  {"DATE",    cmd_date},
392 mateuszvis 104
  {"DEL",     cmd_del},
368 mateuszvis 105
  {"DIR",     cmd_dir},
405 mateuszvis 106
  {"ECHO",    cmd_echo},
392 mateuszvis 107
  {"ERASE",   cmd_del},
364 mateuszvis 108
  {"EXIT",    cmd_exit},
380 mateuszvis 109
  {"LH",      cmd_notimpl},
110
  {"LOADHIGH",cmd_notimpl},
385 mateuszvis 111
  {"MD",      cmd_mkdir},
112
  {"MKDIR",   cmd_mkdir},
400 mateuszvis 113
  {"PAUSE",   cmd_pause},
372 mateuszvis 114
  {"PATH",    cmd_path},
371 mateuszvis 115
  {"PROMPT",  cmd_prompt},
385 mateuszvis 116
  {"RD",      cmd_rmdir},
400 mateuszvis 117
  {"REM",     cmd_rem},
406 mateuszvis 118
  {"REN",     cmd_rename},
119
  {"RENAME",  cmd_rename},
385 mateuszvis 120
  {"RMDIR",   cmd_rmdir},
364 mateuszvis 121
  {"SET",     cmd_set},
427 mateuszvis 122
  {"TIME",    cmd_time},
382 mateuszvis 123
  {"TYPE",    cmd_type},
379 mateuszvis 124
  {"VER",     cmd_ver},
386 mateuszvis 125
  {"VERIFY",  cmd_verify},
399 mateuszvis 126
  {"VOL",     cmd_vol},
364 mateuszvis 127
  {NULL,      NULL}
128
};
129
 
130
 
131
/* NULL if cmdline is not matching an internal command, otherwise returns a
132
 * pointer to a CMD_ID struct */
133
static const struct CMD_ID *cmd_match(const char far *cmdline, unsigned short *argoffset) {
134
  unsigned short i;
135
  char buff[10];
136
 
137
  /* copy command to buffer, until space, NULL, tab, return, dot, slash or backslash */
138
  for (i = 0; i < 9; i++) {
139
    if (cmdline[i] == ' ') break;
140
    if (cmdline[i] == 0) break;
141
    if (cmdline[i] == '\t') break;
142
    if (cmdline[i] == '\r') break;
143
    if (cmdline[i] == '.') break;
144
    if (cmdline[i] == '/') break;
145
    if (cmdline[i] == '\\') break;
146
    buff[i] = cmdline[i];
147
  }
148
  buff[i] = 0;
149
 
150
  /* advance to nearest non-space to find where arguments start */
151
  while (cmdline[i] == ' ') i++;
152
  *argoffset = i;
153
 
154
  /* try matching an internal command */
155
  for (i = 0; INTERNAL_CMDS[i].cmd != NULL; i++) {
156
    /*printf("imatch(%s,%s)\r\n", buff, INTERNAL_CMDS[i].cmd); */
157
    if (imatch(buff, INTERNAL_CMDS[i].cmd)) {
158
      /*printf("match cmd i=%u (buff=%s)\r\n", i, buff);*/
159
      return(&(INTERNAL_CMDS[i]));
160
    }
161
  }
162
 
163
  return(NULL); /* command is not recognized as internal */
352 mateuszvis 164
}
364 mateuszvis 165
 
166
 
167
/* explodes a command into an array of arguments where last arg is NULL
168
 * returns number of args */
169
unsigned short cmd_explode(char *buff, const char far *s, char const **argvlist) {
170
  int si = 0, argc = 0, i = 0;
171
  for (;;) {
172
    /* skip to next non-space character */
173
    while (s[si] == ' ') si++;
174
    /* end of string? */
175
    if (s[si] == 0) break;
176
    /* set argv ptr */
177
    argvlist[argc++] = buff + i;
403 mateuszvis 178
    /* find next arg delimiter (spc, null, slash or plus) while copying arg to local buffer */
364 mateuszvis 179
    do {
180
      buff[i++] = s[si++];
403 mateuszvis 181
    } while (s[si] != ' ' && s[si] != 0 && s[si] != '/' && s[si] != '+');
364 mateuszvis 182
    buff[i++] = 0;
183
    /* is this end of string? */
184
    if (s[si] == 0) break;
185
  }
186
  argvlist[argc] = NULL;
187
  return(argc);
188
}
189
 
190
 
405 mateuszvis 191
int cmd_process(unsigned short rmod_seg, unsigned short env_seg, const char far *cmdline, char *BUFFER) {
364 mateuszvis 192
  const struct CMD_ID *cmdptr;
193
  unsigned short argoffset;
372 mateuszvis 194
  struct cmd_funcparam *p = (void *)BUFFER;
364 mateuszvis 195
 
365 mateuszvis 196
  /* special case: is this a drive change? (like "E:") */
197
  if ((cmdline[0] != 0) && (cmdline[1] == ':') && ((cmdline[2] == ' ') || (cmdline[2] == 0))) {
198
    if (((cmdline[0] >= 'a') && (cmdline[0] <= 'z')) || ((cmdline[0] >= 'A') && (cmdline[0] <= 'Z'))) {
199
      unsigned char drive = cmdline[0];
200
      unsigned char curdrive = 0;
201
      if (drive >= 'a') {
202
        drive -= 'a';
203
      } else {
204
        drive -= 'A';
205
      }
206
      _asm {
207
        push ax
208
        push dx
209
        mov ah, 0x0e     /* DOS 1+ - SELECT DEFAULT DRIVE */
210
        mov dl, drive    /* DL = new default drive (00h = A:, 01h = B:, etc) */
211
        int 0x21
212
        mov ah, 0x19     /* DOS 1+ - GET CURRENT DRIVE */
213
        int 0x21
214
        mov curdrive, al /* cur drive (0=A, 1=B, etc) */
215
        pop dx
216
        pop ax
217
      }
218
      if (curdrive != drive) puts(doserr(0x0f));
219
      return(-1);
220
    }
221
  }
222
 
223
  /* try matching an internal command */
364 mateuszvis 224
  cmdptr = cmd_match(cmdline, &argoffset);
225
  if (cmdptr == NULL) return(-2); /* command is not recognized as internal */
226
 
227
  /* printf("recognized internal command: '%s', tail of command at offset %u\r\n", cmdptr->cmd, argoffset); */
228
 
229
  /* prepare function parameters and feed it to the cmd handling function */
372 mateuszvis 230
  p->argc = cmd_explode(BUFFER + sizeof(*p), cmdline + argoffset, p->argv);
231
  p->env_seg = env_seg;
405 mateuszvis 232
  p->rmod_seg = rmod_seg;
372 mateuszvis 233
  p->argoffset = argoffset;
234
  p->cmdline = cmdline;
364 mateuszvis 235
 
372 mateuszvis 236
  return((cmdptr->func_ptr)(p));
364 mateuszvis 237
}