Skip to content

FirePh0enix/minishell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minishell

Table of Contents

  1. Description
  2. Building from source
  3. Usage
  4. Implementation details
  5. License Information
  6. Contact Information

Description

Minishell is a simplified command-line interpreter implemented in C. It's a minimalistic shell that replicates some of the functionalities of common shells like Bash or Zsh.

Key features of Minishell include:

  • Displaying a prompt when waiting for a new command.
  • Maintaining a working history of commands.
  • Searching and launching the right executable (based on the PATH variable or using a relative or an absolute path).
  • Handling signals with minimal use of global variables.
  • Interpreting single (' ') and double (" ") quotes, with special handling for meta-characters and the $ sign.
  • Implementing redirections (<, >, <<, >>) and pipes (|).
  • Handling environment variables ($ followed by characters) and the $? variable.
  • Handling Ctrl-C and Ctrl-\ signals and Ctrl-D in a manner similar to bash.
  • Implementing several builtins: echo with option -n, cd with only a relative or absolute path, pwd, export, unset, exit with no options, env with no options or arguments.
  • Implementing logical operators (&& and ||) with parentheses for priority.
  • Implementing wildcard (*) functionality

While Minishell is not as feature-rich as full-fledged shells, it provides a platform to run text-based applications and perform basic system operations. It serves as an excellent learning tool for those interested in system programming, process synchronization, and the inner workings of a command-line interface.

Building from source

To build the project from source, you need a few dependencies: git, make and clang.

On debian based systems you can install them by running:

sudo apt install git make clang

Or on Arch based systems:

sudo pacman -S git make clang

Then you need to clone the repository:

git clone --recurse https://github.com/FirePh0enix/minishell

And finally you can simply compile the project by running Make:

make

An executable minishell will be created at the root of the repository.

Usage

You can simply run the executable:

./minishell

What's implemented ?

  • "Regular" environment variables (a $ followed by the variable name) + the special $? variable which returns the exit code of the last command executed.
  • The tilde ~ which is a shortcut for the $HOME variable.
  • Redirections (<, >, >>). Heredocs (<<) are also supported but not herestrings (<<<).
  • Wildcards (*) in nearly all situations.
  • Logical operators && and ||.
  • Parentheses ( ) (not really). While parentheses will be accepted by the parser the implementation is incorrect.
    If you try to run (cd /tmp) in bash you will see that nothing happens, but this is incorrect as a lot of work is done under the hood. Commands in parentheses are run in a separate context this can be achieved by using forking the process before executing those commands. The previous command will actually change the working directory of the newly created context and not the main context used by bash.
    For now, in our minishell parentheses are only used for execution priority.
  • Some builtin are partially implemented:
    • echo with only the option -n
    • cd with a relative or absolute path
    • pwd with no options
    • export with no options. It works with both = to set the value of a variable and += to append to the variable and can accept multiple statements. Also running it without arguments will print all environment variables.
    • unset with no options, it also works with multiple statements.
    • env can only display the enviromnent variables.
    • exit with not options

Implementation details

The development of this project was divided into two main parts: Parsing and executing.

Execution

  • The overall concept was initially challenging for me, as I had never worked with a tree structure before. The idea was to navigate through this tree recursively, extracting necessary information such as which file descriptor I should read/write from, whether I need to create a pipe, the command name, its options, and so on.

  • Until we find a command node, we won't go through the fork, dup2, and execution process.

  • The core of the execution process involves several steps. The first step is to check the redirections: can we open all the necessary file descriptors?

  • The next step is to check if the command is a builtin. If it is, we won't fork and will execute the builtin directly.

  • The final step is to determine whether I'm dealing with a single command or other tokens such as parentheses, pipe (|), or logical operators (|| and &&). The process differs slightly when I'm not dealing with a command node. I will explain this in more detail later.

int	exec_cmd(t_minishell *msh, t_node *node, int parent_in, int parent_out)
{
	if (node->type == TY_CMD)
	{
		if (check_all_redirects(node) == -1)
			return (1);
		if (is_builtin(node))
			return (exec_builtin(msh, node, parent_in, parent_out));
		else
			return (create_child(msh, node, parent_in, parent_out));
	}
	return (handle_if_not_cmd(msh, node, parent_in, parent_out));
}

Verifying Command Redirections

  • Here we are verifying that each infile and outfile can be opened without a problem.
static int	check_all_redirects(t_node *node)
{
	size_t	i;
	int		fd;
	t_red	red;

	i = 0;
	while (i < ft_vector_size(node->cmd.all_reds))
	{
		red = node->cmd.all_reds[i];
		if (red.type == RED_IN)
			fd = open(red.filename, O_RDONLY);
		else if (red.type == RED_OUT && red.append)
			fd = open(red.filename, O_WRONLY | O_CREAT | O_APPEND, 0666);
		else if (red.type == RED_OUT && !red.append)
			fd = open(red.filename, O_WRONLY | O_CREAT | O_TRUNC, 0666);
		if (fd == -1)
		{
			msh_errno(red.filename);
			return (-1);
		}
		close(fd);
		i++;
	}
	return (0);
}

Identifying and Executing Built-in Commands

  • Here, we are simply detecting whether the command needs to be executed by one of our built-in functions, or if we should fork it and then execute it.
int	exec_builtin(t_minishell *msh, t_node *node, int in, int out)
{
	int	ac;

	ac = node->cmd.argc;
	if (ft_strcmp(node->cmd.argv[0], "cd") == 0)
		return (builtin_cd(msh, in, out, node));
	else if (ft_strcmp(node->cmd.argv[0], "pwd") == 0)
		return (builtin_pwd(msh, in, out, node));
	else if (ft_strcmp(node->cmd.argv[0], "echo") == 0)
		return (builtin_echo(ac, node->cmd.argv, out, node));
	else if (ft_strcmp(node->cmd.argv[0], "exit") == 0)
		return (builtin_exit(msh, in, out, node));
	else if (ft_strcmp(node->cmd.argv[0], "unset") == 0)
		return (builtin_unset(msh, ac, node->cmd.argv, node));
	else if (ft_strcmp(node->cmd.argv[0], "env") == 0)
		return (builtin_env(msh, in, out, node));
	else if (ft_strcmp(node->cmd.argv[0], "export") == 0)
		return (builtin_export(msh, in, out, node));
	return (0);
}

Processing and Executing a Command

  • The concept here is to create a child process for executing a command. We then add the PID (Process ID) of the child to a vector. This allows us to terminate the child process if necessary, for instance, in the case of a Ctrl + C command. In the parent process, we close unnecessary file descriptors and then wait for the child process to complete.
int	create_child(t_minishell *msh, t_node *node, int in, int out)
{
	int		pid;

	if (node->cmd.argc == 0)
		add_env(msh, node);
	pid = fork();
	if (pid == -1)
		return (msh_errno(""), -1);
	if (pid == 0)
		exec_child(msh, node, in, out);
	ft_vector_add(&msh->child_pids, &pid);
	close_fd_parent(in, out);
	if (!node->parent || node->parent->type != TY_PIPE)
		return (wait_for_children(msh));
	return (0);
}
  • Lets see in depth of exec_child function works:

  • First step is to create the part that will be used in execve, if the path is found with access function we will go to the next step which is the setup of dup. Final step is executing the command.

static int	exec_child(t_minishell *msh, t_node *node, int in, int out)
{
	char	*cmd;

	cmd = NULL;
	if (node->cmd.argc > 0)
	{
		cmd = ft_create_path(msh, node->cmd.argv[0]);
		if (!cmd)
		{
			msh_error_cmd(node->cmd.argv[0]);
			free_when_no_cmd(msh, node);
			errno = ENOENT;
			return (exit(code_for_errno()), 0);
		}
		else if (cmd == (void *) 1 || cmd == (void *) 2)
		{
			msh_errno(node->cmd.argv[0]);
			return (free_when_no_cmd(msh, node), exit(code_for_cmd(cmd)), 0);
		}
	}
	add_env(msh, node);
	overall_dup(node, in, out);
	close_fd_child(msh);
	if (cmd)
		exec_cmd_when_cmd_ok(msh, cmd, node);
	free_at_end(msh, node);
}
  • I'm using dup2 to specify where a child process should read from and write to. The variables in and out provide information about the pipe: in is used when I need to read from the pipe, and out is used when I need to write to it. infile and outfile serve similar purposes, but they are used for file input and output, respectively.
void	overall_dup(t_node *node, int in, int out)
{
	if (in != -1)
		dup_in(in);
	if (node->cmd.infile)
		dup_infile(node);
	if (out != -1)
		dup_out(out);
	if (node->cmd.outfile)
		dup_outfile(node);
	return ;
}
  • After the setup of dup2, i can now execute a command. We are making sure that the fd in not a folder then executing with all infos found in the node. If execve fails, you need to free every malloc properly, if execve succed then you don t need to manage it.
int	ft_exec_cmd(t_minishell *msh, char *cmd, char **av, char **envp)
{
	int	fd;

	fd = open(cmd, O_DIRECTORY | O_RDONLY);
	if (fd != -1)
	{
		close(fd);
		errno = EISDIR;
		msh_errno(cmd);
		free_in_exec(msh, cmd, av);
		free(cmd);
		exit(126);
	}
	errno = 0;
	if (execve(cmd, av, envp) == -1)
	{
		msh_errno(cmd);
		free_in_exec(msh, cmd, av);
		exit(code_for_errno());
	}
	free(cmd);
	return (0);
}

Managing Special Tokens in Commands

  • Lets get back in time and see how i manage when the node is not a command

  • Thos function will identify the type of token in the node and manage it as follows.

int	handle_if_not_cmd(t_minishell *msh, t_node *node, int in, int out)
{
	if (node->type == TY_PIPE)
		return (handle_pipe(msh, node, in, out));
	else if (node->type == TY_OR)
		return (handle_or(msh, node, in, out));
	else if (node->type == TY_AND)
		return (handle_and(msh, node, in, out));
	else if (node->type == TY_PARENT)
		return (handle_parent(msh, node, in, out));
	return (0);
}
  • To handle pipes, I create a pipe and add the two new file descriptors given by the pipe function, so I can easily free them later. One challenge I faced was not knowing that if we encounter multiple pipe tokens, I will create pipes and these pipes will be "waiting". This means that when I encounter a command, the child process will be responsible for closing all of these pipes. Therefore, it's a good idea to store these file descriptors.

  • Here's the recursive approach: when the node in the tree is a pipe, we will call the function exec_cmd again, this time with the left and right branches. If it encounters a new pipe, the process will be repeated. However, if the node to the left or right is a command, then we will execute it. I'm updating the status after each recursive call, and at the end, we wait as usual.

int	handle_pipe(t_minishell *msh, t_node *node, int in, int out)
{
	int	fd[2];
	int	status;

	if (pipe(fd) == -1)
		return (msh_errno(""), 1);
	ft_vector_add(&msh->open_fds, &fd[0]);
	ft_vector_add(&msh->open_fds, &fd[1]);
	status = exec_cmd(msh, node->pipe.left, in, fd[1]);
	close(fd[1]);
	status = exec_cmd(msh, node->pipe.right, fd[0], out);
	close(fd[0]);
	status = wait_for_children(msh);
	return (status);
}
  • This function is responsible for handling the case when the node is a || token. If this is the case, I will recursively call the exec_cmd function with the left and right branches. If the left branch is a command, it will proceed with the command process. After that, I'm checking if the command executes successfully. If it does, there's no need to execute the command in the right branch, as this is how the || operator works.
int	handle_or(t_minishell *msh, t_node *node, int in, int out)
{
	int	status;

	status = exec_cmd(msh, node->pipe.left, in, out);
	if (status == 0)
		return (status);
	status = exec_cmd(msh, node->pipe.right, in, out);
	return (status);
}
  • This function handles the case when the node is an && token. It's quite similar to the previous case, with the difference being that if the first command succeeds, we can execute the next command.
int	handle_and(t_minishell *msh, t_node *node, int in, int out)
{
	int	status;

	status = exec_cmd(msh, node->pipe.left, in, out);
	if (status != 0)
		return (status);
	status = exec_cmd(msh, node->pipe.right, in, out);
	return (status);
}
  • This function handles parentheses. We have a specific node that contains this case. Thanks to the incredible parsing, I can simply execute it with the node dedicated for this case.
int	handle_parent(t_minishell *msh, t_node *node, int in, int out)
{
	int			status;

	status = exec_cmd(msh, node->pa.node, in, out);
	return (status);
}

That covers most of the execution part. I didn't think discussing the closing of file descriptors would be interesting, so I skipped that part. However, feel free to delve deeper if needed. The relevant details can be found in the close_fd.c file.

Parsing

TODO

License Information

The code is available under the MIT license, meaning you have the permission to use, modify and redistribute our code. But beware to those who want to copy our code and submit it, the school knows everything 👀!

Contact Information

If you have any questions, issues, feel free to reach us out:

About

A minimal shell command interpreter written in C

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published