将用户的proc条目分成较小的字符串

时间:2012-04-09 08:23:27

标签: c linux linux-kernel

我正在创建一个模块,其中我从用户那里获取一些条目并将它们分成更小的字符串并将它们存储到数组中。逻辑工作正常,但几分钟后内核发生了恐慌。我正在提供代码,用于将条目从用户空间放入/ proc文件,然后在模块中进行编码。

FILE *fp;
fp =fopen("/proc/tx_info","w");

fprintf(fp,"protocol   address      tos   payload interface");
fprintf(fp,"\n %3s %6s %7d %5d %6s\n",prot,addr,tos,pld,inter);
fclose(fp);

现在模块中的代码

void tx_break(void)
{
char ch;
char tmp[25];
int i =0;
int k=0,j=0,y = 0;

ch = tx_buffer[0];
//runing the while loop while the ch goes to next line from where the real user entries starts
while(ch != '\n')
     {
       ch = tx_buffer[i];
       i++;
     }


while(ch != '\0')
{
   j=0;
//while loop for blanks in between the user entries
   while(ch == ' ' && ch != '\0')
    {
      i++;
      ch = tx_buffer[i];
    }
//while loop to put the user defined entries to a temporary tmp which would become an entry of 2d array(info.arr[][])
  while(ch != ' ' && ch !='\0')
    {
       tmp[j] = ch;
       j++;
       i++;
       ch = tx_buffer[i];
    }
    tmp[j] = '\0';
    printk(KERN_ALERT"\n%s\n",tmp);
//putting user entries to an 2d array
    for(k=0;tmp[k] != '\0';k++)
         info.arr[y][k] = tmp[k];
         info.arr[y][k] = '\0';
    printk("the 2d::%s",&info.arr[y][0]);
    y++;
   // memcpy(&info.arr[k][0],tmp,j+1);
   // k++;
}
 }

1 个答案:

答案 0 :(得分:0)

我真的不知道你是怎么读tx_bufferp所以我想你已经在/proc/tx_info文件中存储了所有信息。

从这里,我看到一些错误:

while(ch != '\n')
{
    ch = tx_buffer[i];
    i++;
}

上次执行时保持ch ='\ n'。

现在,使用ch ='\ n',tmp[0] = "\n",您将其存储在info.arr[0]中并打印其地址。因此,您在info.arr中存储了一个非项目。这个变量的维度是多少?也许你的存储范围很广。

在最后一项处理中,您在\n中也存储了tmp字符,因为while(ch != ' ' && ch !='\0')。这是对的吗?