summaryrefslogtreecommitdiff
path: root/userspace/foolshell.c
blob: 819c5d6b25869306b3e1bb1bb29ecb24a0a61b7a (plain)
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include <string.h>

//
void hello()
{
    // ascci art: http://patorjk.com/software/taag/#p=testall&f=Cards&t=Fool%20OS
    puts(
		    
	"       ______            __   ____  _____	\n"
	"      / ____/___  ____  / /  / __ \\/ ___/	\n"
	"     / /_  / __ \\/ __ \\/ /  / / / /\\__ \\	\n"
	"    / __/ / /_/ / /_/ / /  / /_/ /___/ /	\n"
	"   /_/    \\____/\\____/_/   \\____//____/	\n"
	"						\n"
        "Welcome to FoolShell v0.2 (Compiled on " __DATE__ " at " __TIME__ "\n"
	"--------------------------------------------------------------------\n\n"
        "type 'help' anytime to show shell built-ins\n"
        "or execute user programms that are in the '/bin' directory (e.g. ls)\n"
    );
}

void prompt() 
{
    printf(
        "$ "
    );
}

int main(int argc, char **argv) 
{

    bool silent=false;
    for(int i=0;i<argc;i++)
    {
	if(!strcmp(argv[i],"--silent"))silent=true;
    }
    
    if(!silent)hello();

    char *buf=malloc(256);

    while(1)
    {
	prompt();
        fgets(buf,255,stdin);
	buf[strlen(buf)-1]=0; // remove \n
	process(buf);
    }

    return 0;
}

char **tokenize(char *buf)
{

    char **token;
    token=malloc(10*sizeof(char*));

    int l=strlen(buf);

    int i;
    int c=0;

    for(i=0;i<l;i++)
    {  
	// init space for next token
	token[c]=malloc(256);

	//skip all the whitespace
	while(buf[i]==' '&&i<l)i++;
	if(i==l)break;

	//get token
	int t=0;

	while(buf[i]!=' '&&i<l)
	{
	    token[c][t]=buf[i];
	    t++;
	    i++;
	}
	token[c][t]=0;
	


//	printf("token %i : <%s>\n",c, token[c]);
	c++;
	token[c]=NULL;

    }

    return token;

}

int process(char *buf)
{
    
    char **token=tokenize(buf);
    char *command=token[0];
  //  puts(command);
    // copied from trottelshell

    if(!strcmp(command,"help"))
    {
	puts("foolshell: supported built-in commands: 'help', 'echo [string]', 'malloc [bytes]', 'free [address]', 'getenv [var]', 'putenv [var] [val]'");
    }
    else if(!strcmp(command,"echo"))
    {
	printf("\"%s\"\n",token[1]);

    }
    else if(!strcmp(command,"malloc"))
    {
	uint8_t *mall=malloc(atoi(token[1]));
	printf("allocated %d bytes at 0x%08X (%i).\n",atoi(token[1]),mall,mall);
    }
    else if(!strcmp(command,"free"))
    {
	free(atoi(token[1]));
	printf("called free(0x%08X).\n",atoi(token[1]));
    }
    else if(!strcmp(command,"getenv"))
    {
	printf("%s = %s \n",token[1],getenv(token[1]));
    }
    else if(!strcmp(command,"putenv"))
    {
	char buf[256];
	sprintf(buf,"%s=%s",token[1],token[2]);
	putenv(buf);
	printf("set: %s = %s \n",token[1],getenv(token[1]));
    }
    else
    {
	execve(token[0],token,0);
	char buf[256];
	sprintf(buf,"/bin/%s",token[0]);
	execve(buf,token,0);
	puts("foolshell: command not found");
    }

}