cleanup size of array
[unix-history] / usr / src / lib / libc / gen / devname.c
/*
* Copyright (c) 1989 The Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that the above copyright notice and this paragraph are
* duplicated in all such forms and that any documentation,
* advertising materials, and other materials related to such
* distribution and use acknowledge that the software was developed
* by the University of California, Berkeley. The name of the
* University may not be used to endorse or promote products derived
* from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)devname.c 5.4 (Berkeley) %G%";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/file.h>
#include <dirent.h>
#include <paths.h>
static struct devs {
struct devs *next;
dev_t dev;
char name[MAXNAMLEN+1];
mode_t type;
};
#define hash(x) ((x)&0xff)
static struct devs *devhash[0xff];
static int devinit;
char *
devname(dev, type)
dev_t dev;
mode_t type;
{
struct devs *devp;
if (devinit == 0) {
register struct devs *devpp;
register struct dirent *entry;
struct stat sb;
DIR *dp = opendir(_PATH_DEV);
int savewd = open(".", O_RDONLY, 0);
mode_t specialtype;
if (savewd == -1 || dp == NULL || chdir(_PATH_DEV) == -1)
return (NULL);
while ((entry = readdir(dp)) != NULL) {
if (stat(entry->d_name, &sb) == -1)
continue;
switch(sb.st_mode&S_IFMT) {
case S_IFCHR:
specialtype = S_IFCHR;
break;
case S_IFBLK:
specialtype = S_IFBLK;
break;
default:
continue;
}
devp = (struct devs *)malloc(sizeof (struct devs));
if (devp == NULL)
return (NULL);
devp->type = specialtype;
devp->dev = sb.st_rdev;
strcpy(devp->name, entry->d_name);
devp->next = NULL;
if ((devpp = devhash[hash(sb.st_rdev)]) == NULL)
devhash[hash(sb.st_rdev)] = devp;
else {
for (;devpp->next != NULL; devpp = devpp->next)
;
devpp->next = devp;
}
}
fchdir(savewd);
close(savewd);
closedir(dp);
devinit = 1;
}
for (devp = devhash[hash(dev)]; devp != NULL; devp = devp->next)
if (dev == devp->dev && type == devp->type)
return(devp->name);
return (NULL);
}
#ifdef TEST
main() {
printf(" %s \n", devname(0));
}
#endif