2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-10-24 10:30:29 +05:30
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2003-07-15 02:51:08 +05:30
|
|
|
* Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
|
2001-10-24 10:30:29 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
1999-11-06 10:26:00 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <mntent.h>
|
2001-04-01 21:31:11 +05:30
|
|
|
#include "libbb.h"
|
1999-11-06 10:26:00 +05:30
|
|
|
|
2001-03-14 07:18:10 +05:30
|
|
|
static const int MS_RDONLY = 1; /* Mount read-only. */
|
1999-11-06 10:26:00 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
void erase_mtab(const char *name)
|
1999-11-06 10:26:00 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
struct mntent entries[20];
|
|
|
|
int count = 0;
|
2003-03-19 14:43:01 +05:30
|
|
|
FILE *mountTable = setmntent(bb_path_mtab_file, "r");
|
2000-02-09 01:28:47 +05:30
|
|
|
struct mntent *m;
|
1999-11-06 10:26:00 +05:30
|
|
|
|
1999-12-06 04:54:55 +05:30
|
|
|
/* Check if reading the mtab file failed */
|
2000-02-09 01:28:47 +05:30
|
|
|
if (mountTable == 0
|
2001-02-02 04:13:49 +05:30
|
|
|
/* Bummer. fall back on trying the /proc filesystem */
|
|
|
|
&& (mountTable = setmntent("/proc/mounts", "r")) == 0) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg(bb_path_mtab_file);
|
1999-11-06 10:26:00 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
while ((m = getmntent(mountTable)) != 0) {
|
2000-02-07 10:59:42 +05:30
|
|
|
entries[count].mnt_fsname = strdup(m->mnt_fsname);
|
|
|
|
entries[count].mnt_dir = strdup(m->mnt_dir);
|
|
|
|
entries[count].mnt_type = strdup(m->mnt_type);
|
|
|
|
entries[count].mnt_opts = strdup(m->mnt_opts);
|
1999-11-06 10:26:00 +05:30
|
|
|
entries[count].mnt_freq = m->mnt_freq;
|
|
|
|
entries[count].mnt_passno = m->mnt_passno;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
endmntent(mountTable);
|
2003-03-19 14:43:01 +05:30
|
|
|
if ((mountTable = setmntent(bb_path_mtab_file, "w"))) {
|
2000-02-09 01:28:47 +05:30
|
|
|
int i;
|
1999-11-06 10:26:00 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
int result = (strcmp(entries[i].mnt_fsname, name) == 0
|
|
|
|
|| strcmp(entries[i].mnt_dir, name) == 0);
|
|
|
|
|
|
|
|
if (result)
|
1999-11-06 10:26:00 +05:30
|
|
|
continue;
|
|
|
|
else
|
|
|
|
addmntent(mountTable, &entries[i]);
|
|
|
|
}
|
|
|
|
endmntent(mountTable);
|
2000-02-09 01:28:47 +05:30
|
|
|
} else if (errno != EROFS)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg(bb_path_mtab_file);
|
1999-11-06 10:26:00 +05:30
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
void write_mtab(char *blockDevice, char *directory,
|
|
|
|
char *filesystemType, long flags, char *string_flags)
|
1999-11-06 10:26:00 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
FILE *mountTable = setmntent(bb_path_mtab_file, "a+");
|
1999-11-06 10:26:00 +05:30
|
|
|
struct mntent m;
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (mountTable == 0) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg(bb_path_mtab_file);
|
1999-11-06 10:26:00 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (mountTable) {
|
2000-02-09 01:28:47 +05:30
|
|
|
int length = strlen(directory);
|
1999-11-06 10:26:00 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (length > 1 && directory[length - 1] == '/')
|
|
|
|
directory[length - 1] = '\0';
|
1999-11-06 10:26:00 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (filesystemType == 0) {
|
2000-12-08 01:26:48 +05:30
|
|
|
struct mntent *p = find_mount_point(blockDevice, "/proc/mounts");
|
1999-11-06 10:26:00 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (p && p->mnt_type)
|
|
|
|
filesystemType = p->mnt_type;
|
|
|
|
}
|
|
|
|
m.mnt_fsname = blockDevice;
|
|
|
|
m.mnt_dir = directory;
|
|
|
|
m.mnt_type = filesystemType ? filesystemType : "default";
|
|
|
|
|
|
|
|
if (*string_flags) {
|
|
|
|
m.mnt_opts = string_flags;
|
|
|
|
} else {
|
|
|
|
if ((flags | MS_RDONLY) == flags)
|
|
|
|
m.mnt_opts = "ro";
|
|
|
|
else
|
|
|
|
m.mnt_opts = "rw";
|
|
|
|
}
|
1999-11-06 10:26:00 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
m.mnt_freq = 0;
|
|
|
|
m.mnt_passno = 0;
|
|
|
|
addmntent(mountTable, &m);
|
|
|
|
endmntent(mountTable);
|
|
|
|
}
|
|
|
|
}
|