Make sure stdlib.h is always included before dmalloc.h to avoid problems
[oweals/busybox.git] / libbb / find_root_device.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  */
21
22 #include <stdio.h>
23 #include <string.h>
24 #include <dirent.h>
25 #include <stdlib.h>
26 #include "libbb.h"
27
28
29
30 extern char *find_real_root_device_name(const char* name)
31 {
32         DIR *dir;
33         struct dirent *entry;
34         struct stat statBuf, rootStat;
35         char *fileName = NULL;
36         dev_t dev;
37
38         if (stat("/", &rootStat) != 0) 
39                 bb_perror_msg("could not stat '/'");
40         else {
41                 /* This check is here in case they pass in /dev name */
42                 if ((rootStat.st_mode & S_IFMT) == S_IFBLK)
43                         dev = rootStat.st_rdev;
44                 else
45                         dev = rootStat.st_dev;
46
47                 dir = opendir("/dev");
48                 if (!dir) 
49                         bb_perror_msg("could not open '/dev'");
50                 else {
51                         while((entry = readdir(dir)) != NULL) {
52                                 const char *myname = entry->d_name;
53                                 /* Must skip ".." since that is "/", and so we
54                                  * would get a false positive on ".."  */
55                                 if (myname[0] == '.' && myname[1] == '.' && !myname[2])
56                                         continue;
57
58                                 fileName = concat_path_file("/dev", myname);
59
60                                 /* Some char devices have the same dev_t as block
61                                  * devices, so make sure this is a block device */
62                                 if (stat(fileName, &statBuf) == 0 && 
63                                                 S_ISBLK(statBuf.st_mode)!=0 &&
64                                                 statBuf.st_rdev == dev) 
65                                         break;
66                                 free(fileName);
67                                 fileName=NULL;
68                         }
69                         closedir(dir);
70                 }
71         }
72         if(fileName==NULL)
73                 fileName = bb_xstrdup("/dev/root");
74         return fileName;
75 }
76
77
78 /* END CODE */
79 /*
80 Local Variables:
81 c-file-style: "linux"
82 c-basic-offset: 4
83 tab-width: 4
84 End:
85 */