2011-08-21 72 views
5

我目前正在執行一個Unix shell。我正在尋找使用GNU Readline來增強界面。但是,即使在用戶輸入期間,我的代碼也會生成隨機的Segfaults。在C中實現GNU Readline的幫助

我剝了下來代碼最大的可讀性:

agros.h

#define MAX_LINE_LEN 256 
#define MAX_ARGS (MAX_LINE_LEN/2) 
#define WHITESPACE " \t\n" 

#define OTHER_CMD 0 
#define EMPTY_CMD 1 
#define EXIT_CMD 2 

#define CMD_NBR  3 


/* 
* This structure allows me to handle built-in commands with a switch statement 
* instead of multiple ifs. Since I cannot switch on a string, I associate a 
* command_code to each built-in command. The codes are define as preprocessor 
* instructions. 
*/ 

typedef struct built_in_commands built_in_commands; 
struct built_in_commands{ 
    char command_name[MAX_LINE_LEN]; 
    int command_code; 
}; 

/* 
* This structure holds user input. 3 fields: 
* - argv: an array of strings. Each word of the input is a case of the array. 
* - name: the name of the executable called. By default it's argv[0] 
* - argc: the number of words given in input. It's equivalent to the length of argv. 
* 
* Note to self: Some filenames have a space character (" ") in their names. I will have 
* to deal with that properly ... someday. 
*/ 

typedef struct command_t command_t; 
struct command_t{  
    char* name; 
    int argc; 
    char* argv[MAX_ARGS+1]; 
}; 



/* 
* These are the functions called by AGROS. These declarations are pretty explicit. 
* More detailed comments can be found in source files. 
* 
*/ 

void parse_command  (char *cmdline, command_t *cmd); 
void get_prompt   (char** prompt, char* username); 
void change_directory (char* path); 
int  get_cmd_code  (char* cmd_name); 
c har* AG_Readline   (char* prompt); 
void set_homedir   (char** homedir); 

agros.c

#include <stdio.h> 
#include <stdlib.h> 
#include <string.h> 
#include <unistd.h> 
#include <readline/readline.h> 
#include <readline/history.h> 
#include <pwd.h> 
#include <sys/types.h> 
#include "agros.h" 


/* 
* A global array holding the associations between each built-in command 
* and their command_code. More explanations can be found in the declaration 
* of the "built_in_commands" structure. 
* 
* Notice how I "cheat" the dynamic allocation. Maybe there's a better way 
* to do this? 
*/ 

built_in_commands my_commands[CMD_NBR] = { 
    {"exit" , EXIT_CMD }, 
    {""  , EMPTY_CMD }, 
    {"cd" , CD_CMD } 
}; 



/* This variable contains the environment. I use it in my "env" built-in 
    function */ 
extern char** environ; 

/* 
* This function parses a string and fills a command_t struct. 
* It uses the strtok() to split the string into tokens. Then it fills the argv 
* array with the tokens. 
* 
* After filling the array, it copies argv[0] as the cmd->name and cmd->argc 
* as the length of the array. 
* 
*/ 

void parse_command (char *cmdline, command_t *cmd){ 
    int count = 0; 
    char* word; 

    word = strtok (cmdline, WHITESPACE); 

    if (word == NULL) { word = ""; } // Fixes blank line bug 

    while (word) { 
     cmd->argv[count] = word; 
     word = strtok (NULL, WHITESPACE); 
     count++; 
    } 
    cmd->argv[count] = NULL; 

    cmd->argc = count; 
    cmd->name = (char *) malloc (strlen (cmd->argv[0])+1); 
    strcpy (cmd->name, cmd->argv[0]); 
} 


/* 
* Uses chdir() to change current working directory. Then updates the environement, 
* with the new value of PWD. 
* 
* If path is NULL, the function sends the user to his home directory. It builds the path 
* in the temp string "home" then copies it into "path" before freeing "home". 
* 
*/ 

void change_directory (char* path){ 

    /* If no arguments are given, go to $HOME directory */ 
    if (path == NULL) 
     set_homedir (&path); 

    if (chdir (path) == 0){ 
     getcwd (path, MAX_LINE_LEN); 
     setenv ("PWD", path, 1); 
    } else { 
     fprintf (stderr, "%s: Could not change to such directory\n", path); 
    } 

} 

/* 
* This function access the global array variable my_commands 
* and returns the command_code eauivalent to each command. 
* 
*/ 

int get_cmd_code (char* cmd_name){ 
    int i = 0; 
    for (i=0; i<CMD_NBR; i++){ 
     if (!strcmp (my_commands[i].command_name, cmd_name)) 
      return my_commands[i].command_code; 
    } 
    return OTHER_CMD; 
} 

/* A static variable for holding the line. */ 
static char *line = (char *)NULL; 

c har* AG_Readline (char* prompt){ 
    /* If the buffer has already been allocated, 
     return the memory to the free pool. */ 
    if (line){ 
     free (line); 
     line = (char *)NULL; 
    } 

    /* Get a line from the user. */ 
    line = readline (prompt); 

    /* If the line has any text in it, 
     save it on the history. */ 
    if (line && *line) 
     add_history (line); 

    return (line); 
} 

/* 
* Setting variables using getuid() and getpwuid() 
* More info on these functions can easily be found in man pages. 
* 
*/ 

void set_homedir (char** phomedir){ 
    struct passwd *pwd = NULL; 
    pwd = getpwuid (getuid()); 
    *phomedir = pwd->pw_dir; 
} 

最後的main.c

#include <stdio.h> 
#include <stdlib.h> 
#include <string.h> 
#include <unistd.h> 
#include <sys/wait.h> 
#include "agros.h" 

int main (int argc, char** argv, char** envp){ 
    int pid = 0; 
    command_t cmd = {NULL, 0, {NULL}}; 
    char* commandline = NULL; 

     while (1){ 
     commandline = AG_Readline ("$ "); 
     parse_command (commandline, &cmd); 

     switch (get_cmd_code (cmd.name)){ 
      case EMPTY_CMD: 
       break; 

      case CD_CMD: 
       change_directory (cmd.argv[1]); 
       break; 

      case EXIT_CMD: 
       return 0; 

      case OTHER_CMD: 
       pid = vfork(); 
       if (pid == 0){ 
        printf ("Hello\n"); 
        _exit(EXIT_FAILURE); 
       }else if (pid < 0){ 
        fprintf (stderr, "Error! ... Negative PID. God knows what that means ...\n"); 
       }else { 
        wait (0); 
       } 
       break; 
     } 
    } 

    return 0; 
} 

我希望是可以粘貼這麼大一部分代碼。並感謝無論誰讀它。 注:隨意對其他事情發表評論,比如我的主要尷尬開關語句。感謝^^

回答

3

該數組NULL填充:

built_in_commands my_commands[CMD_NBR] = { 
    {"exit" , EXIT_CMD }, 
    {""  , EMPTY_CMD }, 
    {"cd" , CD_CMD } 
}; 

作爲CMD_NBR的值爲5是等效關:

my_commands[3] = { NULL, 0 }; 
my_commands[4] = { NULL, 0 }; 

因此,在功能:

int get_cmd_code (char* cmd_name) 

當你做比較測試時:

if (!strcmp (my_commands[i].command_name, cmd_name)) 

如果我> 2,那麼上面就會崩潰。

+0

謝謝我糾正它。實際代碼包含6個功能。 – rahmu