aboutsummaryrefslogtreecommitdiff
path: root/sh/parser.c
blob: f1efddcbf6f21944ded8abbb5c65363e92f94c7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*	sh - the standard command language interpreter
 *	Copyright (C) 2022 Ferass EL HAFIDI
 *
 *	Redistribution and use in source and binary forms, with or without 
 *	modification, are permitted provided that the following conditions are met:
 *	
 *	    1. Redistributions of source code must retain the above copyright notice, 
 *	       this list of conditions and the following disclaimer.
 *	    2. Redistributions in binary form must reproduce the above copyright 
 *	       notice, this list of conditions and the following disclaimer in the 
 *	       documentation and/or other materials provided with the distribution.
 *	    3. Neither the name of the copyright holder nor the names of its 
 *	       contributors may be used to endorse or promote products derived from 
 *	       this software without specific prior written permission.
 *	
 *	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
 *	AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
 *	IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
 *	ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 
 *	LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
 *	CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
 *	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
 *	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
 *	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
 *	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
 *	POSSIBILITY OF SUCH DAMAGE.
 */

#define _POSIX_C_SOURCE 200809L

/* POSIX Header Files */
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <signal.h>

/* sh Header Files */
#include "parser.h"
#include "commands.h"

int parseCommand(int, char **);
int splitCommand(char [4096], char *[4096]);

/* USAGE
 * -----
 * parseCommand(name);
 *
 * DESCRIPTION
 * -----------
 * Parse a shell command and determine if the command to run is built-in or
 * external. It then runs the command accordinately. 
 * <It also could in the future handle tokens.>
 */

int parseCommand(int argc, char *argv[]) {
	struct sigaction signal_action;
	int status_code = 0, err = 0;
	pid_t isparent;
	if (argc == 0) return 0; /* There's no argument. */
	if (!strcmp(argv[0], "cd")) return builtin_cd(argc, argv);
	/* The command isn't built-in. */
	isparent = fork();
	wait(&status_code);
	if (!isparent) {
		/* Do not ignore SIGINT when in a child process. */
		signal_action.sa_handler = SIG_DFL; 
		sigemptyset(&signal_action.sa_mask);
		sigaction(SIGINT, &signal_action, NULL);
		/* Some sh implementations manually search for the command in PATH.
		 * This is not needed here because execvp is going to search for 
		 * that command in PATH anyway.
		 */
		status_code = execvp(argv[0], argv);
		/* If the child process is still alive, we know execvp(3) failed. */
		exit(-errno);
	}
	/* This code may be used to store the exit value in $?. */
	//if (errno != EINTR && WEXITSTATUS(status_code) !=) return WEXITSTATUS(status_code);
	//else return 0;
	err = WEXITSTATUS(status_code);
	if (err-256 == -E2BIG || err-256 == -EACCES || err-256 == -EINVAL || 
			err-256 == -ELOOP || 
			err-256 == -ENAMETOOLONG || err-256 == -ENOENT || err-256 == -ENOTDIR)
		printf("sh: %s: %s\n", argv[0], strerror(-(err-256)));
	return err;
}

/* USAGE
 * -----
 * splitCommand(name, dest);
 *
 * DESCRIPTION
 * -----------
 * This splits a command string in multiple words.
 * The array command can then be ran using execvp(3). It 
 * also returns an int that can be used as argc.
 */

int splitCommand(char name[4096], char *splitted_name[4096]) {
	long unsigned int array_index = 1;
	char *token;
	if ((token = strtok(name, " ")) != NULL && token[0] != '#')
		splitted_name[0] = token;
	else return 0;
	/* WARNING: Not thread-safe! */
	for (; (token = strtok(NULL, " ")) != NULL && 
			token[0] != '#' &&
			(splitted_name[array_index] = token); array_index++)
		/* Do nothing. */ ;
	return array_index;
}