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