实验要求 实现具有管道、重定向功能的shell,能够执行一些简单的基本命令,如进程执行、列目录等
具体要求:
设计一个C语言程序,完成最基本的shell角色:给出命令行提示符、能够逐次接受命令;
对于命令分成三种内部命令(例如help命令、exit命令等)
外部命令(常见的ls、cp等,以及其他磁盘上的可执行程序HelloWrold等)
无效命令(不是上述二种命令)
具有支持管道的功能,即在shell中输入诸如“dir | more”能够执行dir命令并将其输出通过管道将其输入传送给more。
具有支持重定向的功能,即在shell中输入诸如“dir > direct.txt”能够执行dir命令并将结果输出到direct.txt
实验目的
实验环境
实验内容 基础知识 命令类型
管道命令 定义:使用管道符(|
)将多个简单命令连接起来。 特点:相邻两个简单命令中,左边命令的输出作为右边命令的输入。
简单命令 包括以下三种类型:
外置命令: 定义:Linux系统中自带的可执行文件,通常是C语言编写的程序,如ls、cp等。 执行方式:通过调用可执行文件并传入参数,使用execvp函数实现。
内置命令: 定义:Shell内部实现的命令,如cd、exit、help等。 特点:与当前Shell进程相关,需要在Shell内部实现,不依赖外部可执行文件。
重定向命令: 定义:对输入或输出进行重定向的命令,包括输入重定向(<、<<)和输出重定向(>、>>)。 实现方法:通过操作文件描述符,使用open、close、dup2等系统调用实现重定向。
具体介绍(记录的是我不太了解的概念)
管道命令
管道是数据通道,允许一个进程的输出作为另一个进程的输入。
实现步骤:
创建管道:使用pipe
系统调用,生成两个文件描述符,分别用于读和写。
创建子进程:使用fork
创建子进程,在子进程中进行重定向和命令执行。
重定向:
左边命令的输出重定向到管道的写端。
右边命令的输入重定向到管道的读端。
关闭管道:在进程结束前关闭管道描述符,防止阻塞。
等待子进程:在父进程中使用wait
等待子进程结束。
重定向命令
输入重定向
cat < input.txt
:将input.txt
的内容作为cat
命令的输入。
cat << EOF
:从键盘输入,直到输入EOF
,作为cat
命令的输入。
1 2 3 int fd_input = open ("input.txt" , O_RDONLY);close (0 );dup2 (fd_input, 0 );
输出重定向
ps -a > output.txt
:将ps -a
的输出重定向到output.txt
,并覆盖原文件内容。
ps -a >> output.txt
:将ps -a
的输出以追加的形式写入output.txt
。
1 2 3 int fd_output = open ("output.txt" , O_WRONLY | O_CREAT | O_TRUNC, 0666 );close (1 );dup2 (fd_output, 1 );
具体实现 管道的实现 :管道的核心思想是将一个命令的标准输出(STDOUT)作为另一个命令的标准输入(STDIN)。这一过程通过 pipe()
系统调用实现,创建一对文件描述符用于数据流的传递。在我的实现中,我首先通过 fork()
创建子进程,然后根据管道的数量分别设置标准输入输出,并使用 execvp()
来执行每个命令。
输入输出重定向的实现 :输入重定向 <
和输出重定向 >
的实现主要依赖 open()
系统调用,它们分别用来将标准输入或标准输出重定向到指定的文件中。在处理 <
和 <<
(here文档)时,我需要对输入流进行相应的修改,将标准输入从键盘重定向到文件或是终端输入。
外部命令的实现: 外部命令的执行是在子进程中进行的。首先,使用 fork()
创建一个新的子进程。 子进程通过 execvp()
系统调用来执行外部命令。execvp()
会用一个新的程序来替换当前进程的映像,执行指定的命令。
内部命令的实现: 如 cd
和 exit
,这些命令不需要通过 execvp()
执行,而直接在Shell内部处理。尤其是 cd
命令,它需要在父进程中更改工作目录,这就涉及到对进程的工作目录的理解。exit
命令则是退出Shell并结束程序运行。
流程图
以下是具体实现代码中函数的概述:
print_prompt
:负责显示Shell提示符,包含用户名、主机名和当前工作目录。
tokenize_input
:将用户输入的命令行分割为tokens,处理空格和引号。
parse_commands
:根据管道符|
将tokens分割为多个命令。
execute_commands
:根据命令数量决定是执行单个命令还是处理管道命令。
execute_single_command
:执行单个命令,包括内置命令和外部命令。
handle_redirection
:处理命令中的输入和输出重定向。
execute_builtin_command
:执行内置命令,如cd
,exit
和help
。
display_help
:显示内置命令的帮助信息。
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 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 #include <iostream> #include <vector> #include <string> #include <unistd.h> #include <fcntl.h> #include <sys/wait.h> #include <pwd.h> #include <cstring> #include <cerrno> using namespace std;void print_prompt () ;bool tokenize_input (const string &input, vector<string> &tokens) ;vector<vector<string>> parse_commands (const vector<string> &tokens); bool execute_commands (const vector<vector<string>> &commands) ;bool execute_single_command (vector<string> &tokens) ;bool handle_redirection (vector<string> &tokens) ;bool execute_builtin_command (const vector<string> &tokens) ;void display_help () ;int main () { string input; while (true ) { print_prompt (); if (!getline (cin, input)) { cout << endl; break ; } vector<string> tokens; if (!tokenize_input (input, tokens)) { continue ; } if (tokens.empty ()) { continue ; } vector<vector<string>> commands = parse_commands (tokens); if (!execute_commands (commands)) { break ; } } return 0 ; } void print_prompt () { char * prompt_symbol = "$" ; uid_t uid = getuid (); if (uid == 0 ) { prompt_symbol = "#" ; } struct passwd * pwd = getpwuid (uid); if (pwd == nullptr ) { cout << "$ " ; return ; } char hostname[128 ] = {0 }; if (gethostname (hostname, sizeof (hostname)) != 0 ) { strcpy (hostname, "unknown" ); } char cwd[256 ] = {0 }; if (getcwd (cwd, sizeof (cwd)) == nullptr ) { strcpy (cwd, "unknown" ); } printf ("\033[1;32m%s@%s\033[0m:\033[1;34m%s\033[0m%s " , pwd->pw_name, hostname, cwd, prompt_symbol); fflush (stdout); } bool tokenize_input (const string &input, vector<string> &tokens) { tokens.clear (); string token; bool in_quotes = false ; char quote_char = '\0' ; for (size_t i = 0 ; i < input.length (); ++i) { char c = input[i]; if (in_quotes) { if (c == quote_char) { in_quotes = false ; } else { token += c; } } else { if (c == '\'' || c == '\"' ) { in_quotes = true ; quote_char = c; } else if (isspace (c)) { if (!token.empty ()) { tokens.push_back (token); token.clear (); } } else if (c == '|' || c == '<' || c == '>' ) { if (!token.empty ()) { tokens.push_back (token); token.clear (); } if ((c == '<' || c == '>' ) && i + 1 < input.length () && input[i + 1 ] == c) { tokens.emplace_back (string (2 , c)); i++; } else { tokens.emplace_back (string (1 , c)); } } else { token += c; } } } if (in_quotes) { cerr << "Error: Mismatched quotes in input." << endl; return false ; } if (!token.empty ()) { tokens.push_back (token); } return true ; } vector<vector<string>> parse_commands (const vector<string> &tokens) { vector<vector<string>> commands; vector<string> current_command; for (const auto &token : tokens) { if (token == "|" ) { if (current_command.empty ()) { cerr << "Error: Invalid null command." << endl; commands.clear (); return commands; } commands.push_back (current_command); current_command.clear (); } else { current_command.push_back (token); } } if (!current_command.empty ()) { commands.push_back (current_command); } return commands; } bool execute_commands (const vector<vector<string>> &commands) { if (commands.empty ()) { return true ; } if (commands.size () == 1 ) { return execute_single_command (const_cast <vector<string> &>(commands[0 ])); } size_t num_commands = commands.size (); vector<int > pipe_fds; for (size_t i = 0 ; i < num_commands - 1 ; ++i) { int fd[2 ]; if (pipe (fd) == -1 ) { perror ("pipe" ); return true ; } pipe_fds.push_back (fd[0 ]); pipe_fds.push_back (fd[1 ]); } vector<pid_t > pids; for (size_t i = 0 ; i < num_commands; ++i) { pid_t pid = fork(); if (pid < 0 ) { perror ("fork" ); for (int fd : pipe_fds) { close (fd); } return true ; } else if (pid == 0 ) { if (i > 0 ) { if (dup2 (pipe_fds[(i - 1 ) * 2 ], STDIN_FILENO) == -1 ) { perror ("dup2" ); exit (EXIT_FAILURE); } } if (i < num_commands - 1 ) { if (dup2 (pipe_fds[i * 2 + 1 ], STDOUT_FILENO) == -1 ) { perror ("dup2" ); exit (EXIT_FAILURE); } } for (int fd : pipe_fds) { close (fd); } if (!execute_single_command (const_cast <vector<string> &>(commands[i]))) { exit (EXIT_FAILURE); } exit (EXIT_SUCCESS); } else { pids.push_back (pid); } } for (int fd : pipe_fds) { close (fd); } for (pid_t pid : pids) { int status; if (waitpid (pid, &status, 0 ) == -1 ) { perror ("waitpid" ); } } return true ; } bool execute_single_command (vector<string> &tokens) { if (tokens.empty ()) { return true ; } if (execute_builtin_command (tokens)) { if (tokens[0 ] == "exit" ) { return false ; } return true ; } pid_t pid = fork(); if (pid < 0 ) { perror ("fork" ); return true ; } else if (pid == 0 ) { if (!handle_redirection (tokens)) { exit (EXIT_FAILURE); } vector<char *> argv; for (auto &arg : tokens) { argv.push_back (const_cast <char *>(arg.c_str ())); } argv.push_back (nullptr ); execvp (argv[0 ], argv.data ()); perror ("execvp" ); exit (EXIT_FAILURE); } else { int status; if (waitpid (pid, &status, 0 ) == -1 ) { perror ("waitpid" ); } } return true ; } bool handle_redirection (vector<string> &tokens) { for (size_t i = 0 ; i < tokens.size (); ++i) { if (tokens[i] == "<" ) { if (i + 1 >= tokens.size ()) { cerr << "Error: No input file specified for redirection." << endl; return false ; } int fd_in = open (tokens[i + 1 ].c_str (), O_RDONLY); if (fd_in == -1 ) { perror ("open for input redirection" ); return false ; } if (dup2 (fd_in, STDIN_FILENO) == -1 ) { perror ("dup2 for input redirection" ); close (fd_in); return false ; } close (fd_in); tokens.erase (tokens.begin () + i, tokens.begin () + i + 2 ); i--; } else if (tokens[i] == "<<" ) { if (i + 1 >= tokens.size ()) { cerr << "Error: No delimiter specified for here-document." << endl; return false ; } string delimiter = tokens[i + 1 ]; string input_data; string line; cout << "> " ; fflush (stdout); while (getline (cin, line)) { if (line == delimiter) { break ; } input_data += line + "\n" ; cout << "> " ; fflush (stdout); } int pipe_fd[2 ]; if (pipe (pipe_fd) == -1 ) { perror ("pipe for here-document" ); return false ; } ssize_t bytes_written = write (pipe_fd[1 ], input_data.c_str (), input_data.size ()); if (bytes_written == -1 ) { perror ("write to pipe for here-document" ); close (pipe_fd[0 ]); close (pipe_fd[1 ]); return false ; } close (pipe_fd[1 ]); if (dup2 (pipe_fd[0 ], STDIN_FILENO) == -1 ) { perror ("dup2 for here-document" ); close (pipe_fd[0 ]); return false ; } close (pipe_fd[0 ]); tokens.erase (tokens.begin () + i, tokens.begin () + i + 2 ); i--; } else if (tokens[i] == ">" ) { if (i + 1 >= tokens.size ()) { cerr << "Error: No output file specified for redirection." << endl; return false ; } int fd_out = open (tokens[i + 1 ].c_str (), O_WRONLY | O_CREAT | O_TRUNC, 0666 ); if (fd_out == -1 ) { perror ("open for output redirection" ); return false ; } if (dup2 (fd_out, STDOUT_FILENO) == -1 ) { perror ("dup2 for output redirection" ); close (fd_out); return false ; } close (fd_out); tokens.erase (tokens.begin () + i, tokens.begin () + i + 2 ); i--; } else if (tokens[i] == ">>" ) { if (i + 1 >= tokens.size ()) { cerr << "Error: No output file specified for append redirection." << endl; return false ; } int fd_out = open (tokens[i + 1 ].c_str (), O_WRONLY | O_CREAT | O_APPEND, 0666 ); if (fd_out == -1 ) { perror ("open for append redirection" ); return false ; } if (dup2 (fd_out, STDOUT_FILENO) == -1 ) { perror ("dup2 for append redirection" ); close (fd_out); return false ; } close (fd_out); tokens.erase (tokens.begin () + i, tokens.begin () + i + 2 ); i--; } } return true ; } bool execute_builtin_command (const vector<string> &tokens) { if (tokens.empty ()) { return false ; } const string &cmd = tokens[0 ]; if (cmd == "cd" ) { if (tokens.size () > 2 ) { cerr << "Usage: cd [directory]" << endl; return true ; } const char *path; if (tokens.size () == 1 ) { struct passwd *pw = getpwuid (getuid ()); if (pw == nullptr ) { cerr << "cd: Unable to get home directory." << endl; return true ; } path = pw->pw_dir; } else { path = tokens[1 ].c_str (); } if (chdir (path) != 0 ) { perror ("cd" ); } return true ; } else if (cmd == "exit" ) { return true ; } else if (cmd == "help" ) { display_help (); return true ; } return false ; } void display_help () { struct passwd * pw = getpwuid (getuid ()); const char * username = (pw != nullptr ) ? pw->pw_name : "User" ; printf ("Welcome to the custom shell, %s!\n" , username); printf ("The shell supports the following built-in commands:\n" ); printf ("1. cd [path] : Change the current working directory to 'path'. If 'path' is omitted, changes to the home directory.\n" ); printf ("2. exit : Exit the shell.\n" ); printf ("3. help : Display this help message.\n" ); printf ("\n" ); printf ("Additionally, the shell supports:\n" ); printf ("- Execution of external commands available in the system PATH.\n" ); printf ("- Input redirection using '<' and '<<'.\n" ); printf ("- Output redirection using '>' and '>>'.\n" ); printf ("- Piping between multiple commands using '|'.\n" ); }
实验结果 内部指令:
help指令
cd指令
exit指令
外部指令:
ls指令
ps指令
自行编译后的程序
管道命令:
重定向命令:
>
>>
<
<<
实验心得 在本次实验中,我深入研究了Linux下的管道、重定向以及进程控制等基本操作,结合实际编程实现了一个简易的Shell模拟器。通过编写程序实现命令行的解析、进程管理、输入输出重定向、管道传递等功能,我不仅加深了对操作系统内部机制的理解,还在实际编程中获得了很多宝贵的经验。
在实验中,最具挑战性的一部分是对管道和重定向操作的实现。管道符 |
和输入重定向 <
、输出重定向 >
是Shell中最常见的操作,通过它们可以实现命令之间的数据传递与文件输入输出的灵活控制。 这些操作看似简单,但在实现过程中需要注意处理子进程、文件描述符以及异常处理等细节问题。例如,处理输入重定向时,要确保读取到文件内容后关闭文件描述符,避免资源泄漏。