I was about to write a shell with C language. Here is the source code below:
#include
#include
#include
#in
The wait
ensures that the child process gets time to run before the parent finishes with the file. If I strace
the file under Linux, I get
% strace -f ./a.out
[lots of stuff]
wait4(-1, strace: Process 29317 attached
<unfinished ...>
[pid 29317] lseek(0, -2, SEEK_CUR) = 0
[pid 29317] exit_group(0) = ?
[pid 29317] +++ exited with 0 +++
<... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 29317
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=29317, si_uid=1000, si_status=0
_utime=0, si_stime=0} ---
[lots of stuff]
The child process rewinds the standard input as one of the first operations after the fork
, after which it will promptly exit. Specifically it rewinds back as many bytes from the stream as was read into it by fgets
into buffer but still unused. libc does that automatically after the fork. I also saw the child process flushing the stdout
.
I am not sure what to think about this... but clearly if you want to write a shell, you mustn't interact with the standard streams with <stdio.h>
at all. If the lseek
didn't occur, then the child process would see up to 4095 bytes of the stdin
being skipped! You must always use just read
and write
from <unistd.h>
instead. Alternatively, you might have some luck with adding the following call into the beginning of main
before anything is read from stdin
:
if (setvbuf(stdin, NULL, _IONBF, 0) != 0) {
perror("setvbuf:");
exit(1);
}
This will set the stdin
stream to unbuffered mode, so it shouldn't read too much. Nevertheless, the Linux manual page for fgets say:
It is not advisable to mix calls to input functions from the stdio library with low-level calls to read(2) for the file descriptor associated with the input stream; the results will be undefined and very probably not what you want.
BTW, this cannot be reproduced if stdin
comes from a pipe instead:
% echo -e '1\n2' | ./a.out
pid: 498, ppid: 21285
buf: 1
pid: 498, ppid: 21285
buf: 2
pid: 498, ppid: 21285
buf: end of getcmd
But naturally that makes the other problem visible - that the child sees input being skipped.
P.S.
You never check the return value of fgets
so you do not know when a read error occurs.
If a read error occurs during the operation, the array contents are indeterminate and a null pointer is returned.