Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 3 | * Utility routines. |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 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 |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #include <stdio.h> |
| 23 | #include <string.h> |
| 24 | #include <dirent.h> |
Eric Andersen | c911a43 | 2001-05-15 17:42:16 +0000 | [diff] [blame] | 25 | #include <stdlib.h> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 26 | #include "libbb.h" |
| 27 | |
| 28 | |
| 29 | |
Eric Andersen | 93d7fba | 2004-08-03 00:14:02 +0000 | [diff] [blame^] | 30 | extern char *find_real_root_device_name(void) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 31 | { |
| 32 | DIR *dir; |
| 33 | struct dirent *entry; |
| 34 | struct stat statBuf, rootStat; |
Eric Andersen | 8b113f9 | 2001-06-01 21:47:15 +0000 | [diff] [blame] | 35 | char *fileName = NULL; |
Matt Kraai | 774d135 | 2001-05-23 14:45:09 +0000 | [diff] [blame] | 36 | dev_t dev; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 37 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 38 | if (stat("/", &rootStat) != 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 39 | bb_perror_msg("could not stat '/'"); |
Eric Andersen | 8b113f9 | 2001-06-01 21:47:15 +0000 | [diff] [blame] | 40 | else { |
Eric Andersen | 1cda715 | 2004-01-13 11:39:22 +0000 | [diff] [blame] | 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; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 46 | |
Eric Andersen | 8b113f9 | 2001-06-01 21:47:15 +0000 | [diff] [blame] | 47 | dir = opendir("/dev"); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 48 | if (!dir) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 49 | bb_perror_msg("could not open '/dev'"); |
Eric Andersen | 8b113f9 | 2001-06-01 21:47:15 +0000 | [diff] [blame] | 50 | else { |
| 51 | while((entry = readdir(dir)) != NULL) { |
Eric Andersen | dd92c77 | 2003-06-20 09:25:34 +0000 | [diff] [blame] | 52 | const char *myname = entry->d_name; |
Glenn L McGrath | 2483343 | 2003-06-10 17:22:49 +0000 | [diff] [blame] | 53 | /* Must skip ".." since that is "/", and so we |
| 54 | * would get a false positive on ".." */ |
Eric Andersen | dd92c77 | 2003-06-20 09:25:34 +0000 | [diff] [blame] | 55 | if (myname[0] == '.' && myname[1] == '.' && !myname[2]) |
Eric Andersen | 8b113f9 | 2001-06-01 21:47:15 +0000 | [diff] [blame] | 56 | continue; |
Eric Andersen | 93d7fba | 2004-08-03 00:14:02 +0000 | [diff] [blame^] | 57 | #ifdef CONFIG_FEATURE_DEVFS |
| 58 | /* if there is a link named /dev/root skip that too */ |
| 59 | if (strcmp(myname, "root")==0) |
| 60 | continue; |
| 61 | #endif |
Eric Andersen | dd92c77 | 2003-06-20 09:25:34 +0000 | [diff] [blame] | 62 | fileName = concat_path_file("/dev", myname); |
Glenn L McGrath | 2483343 | 2003-06-10 17:22:49 +0000 | [diff] [blame] | 63 | |
Eric Andersen | 8b113f9 | 2001-06-01 21:47:15 +0000 | [diff] [blame] | 64 | /* Some char devices have the same dev_t as block |
| 65 | * devices, so make sure this is a block device */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 66 | if (stat(fileName, &statBuf) == 0 && |
Eric Andersen | 8b113f9 | 2001-06-01 21:47:15 +0000 | [diff] [blame] | 67 | S_ISBLK(statBuf.st_mode)!=0 && |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 68 | statBuf.st_rdev == dev) |
Eric Andersen | 8b113f9 | 2001-06-01 21:47:15 +0000 | [diff] [blame] | 69 | break; |
| 70 | free(fileName); |
| 71 | fileName=NULL; |
| 72 | } |
| 73 | closedir(dir); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 74 | } |
| 75 | } |
Eric Andersen | 8b113f9 | 2001-06-01 21:47:15 +0000 | [diff] [blame] | 76 | if(fileName==NULL) |
Glenn L McGrath | 2483343 | 2003-06-10 17:22:49 +0000 | [diff] [blame] | 77 | fileName = bb_xstrdup("/dev/root"); |
Matt Kraai | 774d135 | 2001-05-23 14:45:09 +0000 | [diff] [blame] | 78 | return fileName; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | |
| 82 | /* END CODE */ |
| 83 | /* |
| 84 | Local Variables: |
| 85 | c-file-style: "linux" |
| 86 | c-basic-offset: 4 |
| 87 | tab-width: 4 |
| 88 | End: |
| 89 | */ |