当前位置:  技术问答>linux和unix

获取硬件信息的源代码:在遍历文件链表时出现段错误,请高手指教!

    来源: 互联网  发布时间:2016-09-10

    本文导语:  问题描述:运行时出现segment fault 用gdb 看了一下,发现是在cur_node = cur_node->next处出错的. 可能是越界了,但是我在构造文件链表时已经考虑到这个问题了~还是出错. 请指教~ ------------------------------------- 代码 ---------------...

问题描述:运行时出现segment fault
用gdb 看了一下,发现是在cur_node = cur_node->next处出错的.
可能是越界了,但是我在构造文件链表时已经考虑到这个问题了~还是出错.
请指教~
-------------------------------------
代码
-------------------------------------


#include 
#include 
#include 
#include 
#include  
#include 
#include 
#include 
#include 
#include 
#include 


/*
   IDE硬盘的子程序
*/
static void dump_identity(const struct hd_driveid *id)
{
    const unsigned short int *id_regs= (const void*)id;
    printf("Model=%.40s,FwRev=%.8s,SerialNo=%.20sn",id->model,id->fw_rev,id->serial_no);
};

void GetIdeNum(const char *t_devname)
{
    struct hd_driveid id;
    char *ide_devname = *t_devname;
    int fd = -1;

    fd = open(ide_devname, O_RDONLY|O_NONBLOCK);
    if (fd d_name,".") == 0 ) || (strcmp(drt->d_name,"..") == 0) )
        {
            continue;    //忽略.目录和..目录
        }
        next_node = (dirlink*)malloc(sizeof(dirlink));
        //链表操作
        if(NULL == head_node)
        {
            head_node = next_node;   //首节点
        }
        else
        {
            cur_node->next = next_node;//当前节点
        }
        cur_node = next_node;
        // copy the filename which get from drt into the cur_node
        strcpy(cur_node->d_name,drt->d_name);
    }
    cur_node->next = NULL;    //最后一个节点
    closedir(dir);
    return head_node;   //返回链表头指针
}
void print_file_info(dirlink* head_node)
{
    struct stat file_stat;
    dirlink* cur_node = head_node;
    info file_info;
    char devname[30] = {"/dev/"};
    char *ide_table[9] = {"hda", "hdb", "hdc", "hdd", "hde", "hdf", "hdg", "hdh", "hdi"};
    char *scsi_table[9] = {"sda", "sdb", "sdc", "sdd", "sde", "sdf", "sdg", "sdh", "sdi"};
    while( NULL != cur_node )   //遍历链表
    {
        //may be problem in here!
        //check the stat()
        if ( stat(cur_node->d_name,&file_stat ) == -1 )
        {
            perror("Can't get the information of the file.n");
            cur_node = cur_node->next;
            continue;
        }
        //根据文件类型和权限来判断是普通文件还是目录。
        if ( S_ISBLK(file_stat.st_mode ) )    //是块设备
        {
            int i = 0;
            int j = 0;
            strcpy(file_info.name,cur_node->d_name);
            printf("%s n", file_info.name);
            while( i d_name); 
            printf("%s n", file_info.name); 
            while( i 

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 请问现在哪里可以获取Fedora的源代码?
  • Linux下关于shell程序的源代码如何获取?50分求救!
  • c++实现发送http请求通过get方式获取网页源代码
  • 求linux下获取磁盘分区的源代码,有思路也可以交流下
  • C#使用Socket获取网页源代码的实例代码
  • C#中使用Socket获取网页源代码的代码
  • Python获取网页编码的方法及示例代码
  • linux不用命令方式读文件获取网络流量,如何使用C函数调用获取网络流量信息?
  • java Servlet获取和设置cookie实例代码
  • 关于获取在jsp上获取客户端时间的问题
  • Python通过正则表达式获取,去除(过滤)或者替换HTML标签的几种方法
  • 关于Ganglia中的gmond组件收集到的资源信息如何获取(如何获取telnet后返回的信息)
  • php获取访客ip地址原理及提供七段代码供参考
  • java获取系统路径字体、得到某个目录下的所有文件名、获取当前路径
  • 利用sender的Parent获取GridView中的当前行(获取gridview的值)
  • php获取本机ip地址 php获取远程IP地址
  • linux获取主机名后用gethostbyname() 不能获取主机ip
  • javascript 获取url参数的正则表达式(用来获取某个参数值)
  • Web服务器/前端 iis7站长之家
  • C++获取文件哈希值(hash)和获取torrent(bt种子)磁力链接哈希值
  • linux根据pid获取进程名和获取进程pid(c语言获取pid)
  • Shell获取系统时间问题
  • android 如何获取MCC/MNC控制小区广播的开启
  • 新手问题:Linux下如何获取进程占用的系统资源
  • c++如何获取当前进程名
  • 怎么通过snmp获取远程主机指定进程信息?
  • C#获取路径的多种方法


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3