Problems with using execvp on a constructed string

前端 未结 3 1812
别跟我提以往
别跟我提以往 2021-01-21 12:42

I\'m trying to write a shell, and part of its construction is executing code from a user-inputted string (buffer). However, when I attempt to execvp the string with additional i

相关标签:
3条回答
  • 2021-01-21 12:52

    The argument buffer is wrong. The second argument of execvp is an array of pointers. With this cast, you are hidding a compiler warning, but it does not work.

    0 讨论(0)
  • 2021-01-21 13:04

    I can see a couple of potential problems here.

    First, you're allocating space with malloc (meaning the contents aren't initialized), but immediately using strcat to write to it. Unless (by whatever change) the first character is a '\0', that's going leave you with a string starting with garbage, followed by data you're trying to put there. It would also (very easily) lead to writing past the end of the buffer, giving undefined behavior.

    If it were up to me, I think I'd use sprintf instead of strcat. At least what you've shown would work out to: sprintf(str, "./%43s.out", cmd);

    0 讨论(0)
  • 2021-01-21 13:04

    Two problems:

    1. You are passing an uninitialized string to the first strcat.
    2. execvp expects an array of strings, not a single string with null-separated fields.
    0 讨论(0)
提交回复
热议问题