⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ide_info.c

📁 pcmcia source code
💻 C
字号:
/*======================================================================    Utility to look up information about IDE devices    ide_info.c 1.15 2002/06/16 19:21:58    The contents of this file are subject to the Mozilla Public    License Version 1.1 (the "License"); you may not use this file    except in compliance with the License. You may obtain a copy of    the License at http://www.mozilla.org/MPL/    Software distributed under the License is distributed on an "AS    IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or    implied. See the License for the specific language governing    rights and limitations under the License.    The initial developer of the original code is David A. Hinds    <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds    are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.    Alternatively, the contents of this file may be used under the    terms of the GNU General Public License version 2 (the "GPL"), in    which case the provisions of the GPL are applicable instead of the    above.  If you wish to allow the use of your version of this file    only under the terms of the GPL and not to allow others to use    your version of this file under the MPL, indicate your decision    by deleting the provisions above and replace them with the notice    and other provisions required by the GPL.  If you do not delete    the provisions above, a recipient may use your version of this    file under either the MPL or the GPL.    ======================================================================*/#include <sys/types.h>#include <stdlib.h>#include <stdio.h>#include <unistd.h>#include <string.h>#include <fcntl.h>#include <endian.h>#include <sys/ioctl.h>#include <dirent.h>#include <linux/types.h>#include <linux/hdreg.h>#if (__BYTE_ORDER == __BIG_ENDIAN)#define flip16(n)       (n)#else#define flip16(n) ((((n)&0x00ff)<<8) | (((n)&0xff00)>>8))#endif/*====================================================================*/#include <ctype.h>static void fix_string(char *s, int len){    char *t = s, *x = s+len;    while (t < x) {	for (; t < x; t++)	    if (*t != ' ') break;	while (t < x) {	    *s++ = *t;	    if (*t++ == ' ') break;	}    }    if ((s > x-len) && (s[-1] == ' ')) s--;    if (s < t) *s = '\0';}static int read_proc_identify(char *dev, struct hd_driveid *id){    char proc[] = "/proc/ide/hd#/identify";    char s[42];    int i;        if ((strncmp(dev, "/dev/hd", 7) != 0) || (strlen(dev) != 8))	return -1;    proc[12] = dev[7];    if (access(proc, R_OK) == 0) {	FILE *f = fopen(proc, "r");	short *b = (short *)id;	while (fgets(s, 41, f)) {	    for (i = 0; i < 40; i += 5, b++) {		*b = flip16(strtol(s+i, NULL, 16));	    }	}	fclose(f);	fix_string(id->model, sizeof(id->model));	fix_string(id->fw_rev, sizeof(id->fw_rev));	fix_string(id->serial_no, sizeof(id->serial_no));	return 0;    }    return -1;}int main(int argc, char *argv[]){    int fd;    struct hd_driveid id;    if (argc != 2) {	fprintf(stderr, "usage: %s [device]\n", argv[0]);	exit(EXIT_FAILURE);    }    if (read_proc_identify(argv[1], &id) != 0) {	fd = open(argv[1], O_RDONLY);	if (fd < 0) {	    perror("open() failed");	    exit(1);	}	if (ioctl(fd, HDIO_GET_IDENTITY, &id) != 0) {	    perror("could not get IDE device info");	    exit(1);	}    }    printf("MODEL=\"%.40s\"\n", id.model);    printf("FW_REV=\"%.8s\"\n", id.fw_rev);    printf("SERIAL_NO=\"%.20s\"\n", id.serial_no);    exit(0);    return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -