我写了以下代码:
char arrA[] = "something.";
char arrB[ strlen(arrA) + 5];
而且我的代码行为模糊。我得到错误的输出。首先,在我看来,问题strlen
在于数组声明的使用。因为内存是在编译时分配的,函数在运行时执行。但是我在运行时没有收到错误。我的代码编译正确,但没有像我想象的那样工作。最好的部分是我没有在我的代码中的任何地方使用这些数组。我只是宣布他们。
为什么我在编译时没有错误?
为什么我的代码输出出乎意料?
当我评论第二个声明时,我得到了正确的输出。
我也尝试打印sizeof
arrB
. 猜猜我得到了什么15。
这意味着它工作正常。但是输出是一团糟,它不应该正常工作。
这里发生了什么。为什么我只声明而不在任何地方使用的东西会严重影响我的代码?
我的实际代码太大而且不同。使用该代码无法解释此错误。但我也在分享该代码。我的代码中的这个问题出在函数portClearer
和数组completeCommand
中。
#include <math.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <regex.h>
int strintToInt(char *str, int len);
void read_command_output(char*, char*, int);
void processIdFinder(char*);
void portClearer(char*);
void compileRegex(regex_t*, char*);
void executeRegex(regex_t*, char*, size_t, regmatch_t*, int);
int main()
{
processIdFinder("dispatcher");
portClearer("4444");
return 0;
}
void read_command_output(char* command, char* buf, int buf_len){
FILE *ps_output_file;
if ((ps_output_file = popen(command,"r"))== NULL){
printf("error\n");
exit(1);
}
if(fgets(buf, buf_len, ps_output_file)==NULL)
printf("%s\n",buf);
fclose(ps_output_file);
return;
}
void compileRegex(regex_t* regexPtr, char* pattern){
if( regcomp(regexPtr, pattern, REG_EXTENDED) ){
fprintf(stderr, "Could not compile regex\n");
exit(1);
}
}
void executeRegex(regex_t* regex, char* buf, size_t nmatch, regmatch_t* reg_matches, int flags){
char errmsgbuf[100];
int err_ret;
err_ret = regexec(regex, buf, nmatch, reg_matches, flags);
if( !err_ret ){
//puts("Match");
return;
}
else if( err_ret == REG_NOMATCH ){
puts("No match");
exit(1);
}
else{
regerror(err_ret, regex, errmsgbuf, sizeof(errmsgbuf));
fprintf(stderr, "Regex match failed: %s\n", errmsgbuf);
exit(1);
}
}
int strintToInt(char *str, int len)
{
int iter, pow_iter, num=0;
for(iter = 0, pow_iter = len-1; iter < len; iter++, pow_iter--)
{
num += (str[iter]-48)* ((int) pow(10,pow_iter));
}
return num;
}
void processIdFinder(char* commandName){
char buf[100], id_proc[10];
regex_t regex;
regmatch_t reg_matches[2];
char command[] = "/bin/ps -C ", commandGrep[] = " | grep ";
char completeCommand[ strlen(command) + strlen(commandGrep) + 2 * 12];
//"/bin/ps -C supervisor | grep supervisor"
strcpy(completeCommand, command);
strcat(completeCommand, commandName);
strcat(completeCommand, commandGrep);
strcat(completeCommand, commandName);
read_command_output(completeCommand, buf, 100);
compileRegex(®ex, "^ *([1-9]+) ?");
executeRegex(®ex, buf, (size_t) 2, reg_matches, 0);
//fetching result
//printf("%d and %d ----- %c and %c\n",reg_matches[1].rm_so,reg_matches[1].rm_eo,buf[reg_matches[1].rm_so],buf[reg_matches[1].rm_eo - 1]);
strncpy(id_proc,buf+reg_matches[1].rm_so, reg_matches[1].rm_eo - reg_matches[1].rm_so);
printf("(%s)\n",id_proc);
printf("%d\n",strintToInt(id_proc,strlen(id_proc))); //its important to write strlen here not 10
return;
}
void portClearer( char* portNo){
char buf[100], id_proc[10];
regex_t regex;
regmatch_t reg_matches[2];
char command[] = "/bin/netstat -nlp | grep ";
char completeCommand[ strlen(command) + 5 ];
//char completeCommand[ 25 + 5 ];
printf("%d\n", sizeof(completeCommand));
//strcpy(completeCommand, command);
//strcat(completeCommand, portNo);
read_command_output("/bin/netstat -nlp | grep 4444", buf, 100);
compileRegex(®ex, "[1-9]+/");
executeRegex(®ex, buf, (size_t) 1, reg_matches, 0);
//fetching result
//printf("%d and %d ----- %c and %c\n",matches[0].rm_so,matches[0].rm_eo,buf[matches[0].rm_so],buf[matches[0].rm_eo - 1]);
strncpy(id_proc,buf+reg_matches[0].rm_so, reg_matches[0].rm_eo - reg_matches[0].rm_so-1);
printf("(%s)\n",id_proc);
printf("%d\n",strintToInt(id_proc,strlen(id_proc))); //its important to write strlen here not 10
return;
}