Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Booting process 0: how to find out its full path?

17 views
Skip to first unread message

Mateusz Viste

unread,
Nov 16, 2021, 4:44:18 AM11/16/21
to
Hello,

I am working on a shell that would replace COMMAND.COM and I wonder: is
there any way I can figure out where my shell is, once it is executed
by the MS-DOS kernel?

By default MS-DOS launches whatever it finds at [BOOTDRV]:\COMMAND.COM.
This situation is easy, but there is also the possibility that the shell
was configured through a "SHELL" or "SHELLHIGH" CONFIG.SYS directive:
SHELL=X:\EXOTIC\PATH\CUSTOM.COM

I am unable to find a way to discover the above path. Any ideas if this
is feasible at all? I went through RBIL but with no luck so far.

The environment contains the full path/name of the executed program,
but this does not apply to process 0, as the MS-DOS kernel does not
allocate any environment for it (env segment in PSP = 0x0000).

Mateusz

Auric__

unread,
Nov 16, 2021, 11:54:53 AM11/16/21
to
Just throwing out the obvious here... have you considered just looking
through config.sys for the shell?

--
"Armies with ammo" comes before "damsels in distress" alphabetically.

Mateusz Viste

unread,
Nov 16, 2021, 12:07:23 PM11/16/21
to
Yes, of course, but this seemingly obvious solution is extremely complex
and unreliable.

Such parser would have not only to look for SHELL or SHELLHIGH
directives in CONFIG.SYS, but also understand the logic behind
conditional instructions (config menus), with possible dialect
variations between DOS versions. There are also DOSes that use a file
named differently than "CONFIG.SYS". And then, there's also the
possibility that the user simply skipped the SHELL directive (F5/F8) or
that the shell has been entered by hand at boot time (some DOSes ask
for the command interpreter path if the default file cannot be found).

Mateusz

Auric__

unread,
Nov 16, 2021, 1:49:41 PM11/16/21
to
Well...

The MS-DOS 2.0 source code is on Github, where you might look into the file
SYSINIT.ASM, available here:

https://github.com/microsoft/MS-DOS/blob/master/v2.0/source/SYSINIT.ASM

AFAIK, this was the first time DOS could use external shells. I don't know
if it's at all relevant to modern DOS, but it's a start.

Alternately, if you can find a copy of the MS-DOS 6 source code (which was
leaked to the internet some time back), you might want to look at these
files:
BIOS\CONFIG.INC
BIOS\SYSCONF.ASM
BIOS\SYSINIT1.ASM
BIOS\SYSINIT2.ASM
Just sayin'. SYSCONF.ASM has this comment which seems *very* relevant:

HACK: when 4DOS.COM is the shell and it doesn't have an environment from
which to obtain its original program name, it grovels through all of
memory to find the filename that was used to exec it; it wants to find
the SHELL= line in the in-memory copy of CONFIG.SYS, and it knows that
sysinit converts the SHELL= keyword to an 'S', so it expects to find an 'S'
immediately before the filename, but since we are now storing line # info
in the config.sys memory image, 4DOS fails to find the 'S' in the right
spot.
So, on the final pass of CONFIG.SYS, copy the command code (eg, 'S')
over the line number info, since we no longer need that info anyway. This
relies on the fact that getchr leaves ES:SI pointing to the last byte
retrieved.

As for other flavors of DOS, most of them are open source, so I think it
would be worth it to download some source code and search for "shell".

--
Money is truthful. If a man speaks of his honor, make him pay cash.

Mateusz Viste

unread,
Nov 16, 2021, 2:46:03 PM11/16/21
to
2021-11-16 at 18:49 -0000, Auric__ wrote:
> The MS-DOS 2.0 source code is on Github, where you might look into
> the file SYSINIT.ASM, available here:
>
> https://github.com/microsoft/MS-DOS/blob/master/v2.0/source/SYSINIT.ASM

Actually I did glance at the MS-DOS 2.0 code already, and my
understanding is that they didn't even try addressing this, just relied
on COMSPEC (if defined, either through SET or by feeding it as an
argument to command.com), and if no COMSPEC then using the default
location.

That sounds okay when it's MS that does it, because it's their OS, but
an alternative shell does not have this luxury.

> HACK: when 4DOS.COM is the shell and it doesn't have an environment
> from which to obtain its original program name, it grovels through
> all of memory to find the filename that was used to exec it; it
> wants to find the SHELL= line in the in-memory copy of CONFIG.SYS,
> and it knows that sysinit converts the SHELL= keyword to an 'S', so
> it expects to find an 'S' immediately before the filename, but since
> we are now storing line # info in the config.sys memory image, 4DOS
> fails to find the 'S' in the right spot.
> So, on the final pass of CONFIG.SYS, copy the command code (eg, 'S')
> over the line number info, since we no longer need that info anyway.
> This relies on the fact that getchr leaves ES:SI pointing to the
> last byte retrieved.

That is very interesting indeed, thanks for sharing! This at least
confirms that there is no "clean" way to do what I wanted... So I will
probably give up on that. MS compatibility was only a bonus, my primary
target is working with the DOS-C kernel, and there I do not have any
such problems.

Nonetheless, thank you for your kind research.

> As for other flavors of DOS, most of them are open source, so I think
> it would be worth it to download some source code and search for
> "shell".

Under DOS-C it is a no-brainer: the kernel actually allocates a tiny
(96 bytes) environment and passes it to COMMAND.COM. There, the entire
path is present.

Mateusz

JJ

unread,
Nov 16, 2021, 8:23:45 PM11/16/21
to
You may want to walk the MCB chain to find the master environment block.

Mateusz Viste

unread,
Nov 17, 2021, 3:11:11 AM11/17/21
to
No, because such an environment simply does not exists at the time
process 0 is being loaded.

Mateusz

0 new messages