Update a bunch of docs. Run a script to update my email addr.
[platform/upstream/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                 if ((dev = rootStat.st_rdev)==0) 
42                         dev=rootStat.st_dev;
43
44                 dir = opendir("/dev");
45                 if (!dir) 
46                         bb_perror_msg("could not open '/dev'");
47                 else {
48                         while((entry = readdir(dir)) != NULL) {
49                                 const char *myname = entry->d_name;
50                                 /* Must skip ".." since that is "/", and so we
51                                  * would get a false positive on ".."  */
52                                 if (myname[0] == '.' && myname[1] == '.' && !myname[2])
53                                         continue;
54
55                                 fileName = concat_path_file("/dev", myname);
56
57                                 /* Some char devices have the same dev_t as block
58                                  * devices, so make sure this is a block device */
59                                 if (stat(fileName, &statBuf) == 0 && 
60                                                 S_ISBLK(statBuf.st_mode)!=0 &&
61                                                 statBuf.st_rdev == dev) 
62                                         break;
63                                 free(fileName);
64                                 fileName=NULL;
65                         }
66                         closedir(dir);
67                 }
68         }
69         if(fileName==NULL)
70                 fileName = bb_xstrdup("/dev/root");
71         return fileName;
72 }
73
74
75 /* END CODE */
76 /*
77 Local Variables:
78 c-file-style: "linux"
79 c-basic-offset: 4
80 tab-width: 4
81 End:
82 */