-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuitin.c
309 lines (298 loc) · 5.76 KB
/
buitin.c
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <pwd.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <string.h>
#include <makefile.h>
#include <termios.h>
#include <signal.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/prctl.h>
void quit()
{
exit(0);
}
struct jobs
{
char name[80];
int id;
};
void pinfo(char **args)
{
int i=0,j;
int k,len;
char str[1024],stat[10000],*token,s[1024];
while(args[i]!=NULL)
i++;
if(i==1)
{
k=getpid();
sprintf(str,"/proc/%d/status",k);
FILE *p=fopen(str,"r");
if(p)
fread(stat,1,sizeof(stat),p);
else
{
fprintf(stderr,"Invalid pid\n");
return;
}
token=strtok(stat,del);
j=0;
while(token!=NULL)
{
if(j==0||j==1||j==4||j==16)
printf("%s\n",token);
j++;
token=strtok(NULL,del);
}
fclose(p);
sprintf(str,"/proc/%d/exe",k);
len=readlink(str, s, 1024);
s[len]='\0';
printf("Executable path:%s\n",s);
}
else
{
sprintf(str,"/proc/%s/status",args[1]);
FILE *p=fopen(str,"r");
if(p)
fread(stat,1,sizeof(stat),p);
else
{
fprintf(stderr,"Invalid pid\n");
return;
}
token=strtok(stat,del);
j=0;
while(token!=NULL)
{
if(j==0||j==1||j==4||j==16)
printf("%s\n",token);
j++;
token=strtok(NULL,del);
}
fclose(p);
sprintf(str,"/proc/%s/exe",args[1]);
len=readlink(str, s, 1024);
s[len]='\0';
printf("Executable path:%s\n",s);
}
}
void pwd()
{
char result[1024],*token;
getcwd(result,sizeof(result));
int pos=0,count=0;
register struct passwd *pw;
register uid_t uid;
uid = geteuid();
pw = getpwuid(uid);
token=strtok(result+1,delim);
while(token!=NULL)
{
if(strcmp(token,"home")==0)
{
token=strtok(NULL,delim);
if(strcmp(token,pw->pw_name)==0)
printf("~");
}
else
printf("/%s",token);
token=strtok(NULL,delim);
}
}
void echo(char **args)
{
int i=1,j;
while(args[i]!=NULL)
{
for(j=0;j<strlen(args[i]);j++)
{
if((args[i][j]!='\"'&&args[i][j]!='\''))
printf("%c",args[i][j]);
}
i++;
}
printf("\n");
}
void cd(char **tokens)
{
char cwd[200]={0},cd[200];
register struct passwd *pw;
register uid_t uid;
int i=0,err;
while(tokens[i]!=NULL)
i++;
if(i==1)
{
strcat(cwd,"/home/");
uid = geteuid();
pw = getpwuid(uid);
strcat(cwd,pw->pw_name);
err=chdir(cwd);
}
else if(tokens[1][0]=='~')
{
strcat(cwd,"/home/");
uid = geteuid();
pw = getpwuid(uid);
strcat(cwd,pw->pw_name);
strcat(cwd,tokens[1]+1);
err=chdir(cwd);
if(err==-1)
fprintf(stderr,"No directory present!\n");
}
else if(tokens[1][0]=='.')
{
if(tokens[1][1]=='.')
{
int i,j;
getcwd(cwd,sizeof(cwd));
for(i=strlen(cwd)-1;i>=0;i--)
{
if(cwd[i]=='/')
break;
}
for(j=0;j<i;j++)
{
cd[j]=cwd[j];
}
strcat(cd,tokens[1]+2);
err=chdir(cd);
if(err!=0)
fprintf(stderr,"No directory present!\n");
}
else
{
getcwd(cwd,sizeof(cwd));
strcat(cwd,"/");
strcat(cwd,tokens[1]);
err=chdir(cwd);
if(err!=0)
fprintf(stderr,"No directory present!\n");
}
}
else if(tokens[1][0] != '/')
{
getcwd(cwd,sizeof(cwd));
strcat(cwd,"/");
strcat(cwd,tokens[1]);
err=chdir(cwd);
if(err!=0)
fprintf(stderr,"No directory present!\n");
}
else
{
err=chdir(tokens[1]);
if(err!=0)
fprintf(stderr,"No directory present!\n");
}
}
void jobs()
{
bg *temp=background;
int i=1;
while(temp!=NULL)
{
fprintf(stdout, "[%d]%s[%d]\n",i++,temp->name,temp->pid );
temp=temp->next;
}
}
void killallbg()
{
bg *temp=background;
int t,flag=0;
while(temp!=NULL)
{
t=kill(temp->pid,9);
if(t<0)
{
flag=1;
perror("Process could not be killed\n");
}
temp=temp->next;
}
if(flag==0)
printf("All backgrounfd processes have been killed!\n");
else
printf("Unable to killallbg\n");
background=temp;
}
void kjobs(char **tokens)
{
bg *temp=background;
int jn=atoi(tokens[1]);
pid_t pid;
int signal=atoi(tokens[2]);
int t=jn,i;
while(temp!=NULL && --jn)
temp=temp->next;
if(temp!=NULL)
pid=temp->pid;
else
pid=-1;
for(i=0;tokens[i]!=NULL;i++);
if(i!=3)
fprintf(stderr,"Invalid number of args\n");
else if(pid!=-1)
{
if(kill(pid,signal)<0)
perror("Signal not sent");
else
{
printf("KILLED %s with pid [%d] and job number %d\n",temp->name, pid,t);
delete(pid);
}
}
else
fprintf(stderr,"No such job number\n");
}
void fg(char **tokens)
{
int i;
pid_t pid,pgid,child_pid;
//int shell;
//pid_t shell_pgid;
int status;
bg *temp =background;
int t=atoi(tokens[1]);
for(i=0;tokens[i]!=NULL;i++);
if(i==2)
{
while(temp!=NULL && --t)
temp=temp->next;
if(temp!=NULL)
pid=temp->pid;
else
pid=-1;
if(pid>=0)
{
fprintf(stderr, "%s\n", temp->name);
pgid=getpgid(pid);
tcsetpgrp(shell,pgid);
//child_pid=pgid;
if(killpg(pgid,SIGCONT)<0)
perror("Cannot Continue");
waitpid(pid,&status,WUNTRACED);
//printf("\n");
if(WIFSTOPPED(status))
{
fprintf(stderr, "\n[%d]+ stopped %s\n",child_pid,temp->name );
delete(pid);
}
else
{
delete(pid);
//child_pid=0;
}
tcsetpgrp(shell,shell_pgid);
}
else
fprintf(stderr, "No such job\n" );
}
else
printf("Invalid number of arguments!\n" );
}