forked from Imagelibrary/rtems
* libblock/src/bdbuf.c: Update comments.
* libblock/src/bdpart.c, libblock/src/ide_part_table.c: Get the
device from the rdev field of the stat buf.
* libcsupport/include/rtems/libio.h: Add a path length to evalpath
handler. Add parent locations to rmmod and unlink handlers.
* libcsupport/include/rtems/libio_.h: Add a path length to
rtems_filesystem_evaluate_path. Add
rtems_filesystem_evaluate_relative_path, rtems_filesystem_dirname,
and rtems_filesystem_prefix_separators. Remove
rtems_filesystem_evaluate_parent.
* libcsupport/src/base_fs.c, libcsupport/src/chdir.c,
libcsupport/src/chmod.c, libcsupport/src/chown.c,
libcsupport/src/chroot.c, libcsupport/src/fchdir.c,
libcsupport/src/link.c, libcsupport/src/mount.c,
libcsupport/src/open.c, libcsupport/src/privateenv.c,
libcsupport/src/readlink.c, libcsupport/src/unmount.c,
libcsupport/src/utime.c, libcsupport/src/unmount.c,
libcsupport/src/utime.c, libfs/src/devfs/devfs.h,
libfs/src/devfs/devfs_eval.c, libfs/src/devfs/devstat.c,
libfs/src/dosfs/msdos_create.c, libfs/src/dosfs/msdos_misc.c,
libfs/src/imfs/imfs.h, libfs/src/imfs/imfs_eval.c,
libfs/src/imfs/imfs_load_tar.c, libfs/src/imfs/ioman.c,
libfs/src/pipe/pipe.c, libmisc/fsmount/fsmount.c,
libnetworking/lib/ftpfs.c: Add the length parameter to the eval
call.
* libcsupport/src/eval.c: Add rtems_filesystem_prefix_separators,
rtems_filesystem_dirname,
rtems_filesystem_evaluate_relative_path. Add the length parameter
to the eval call.
* libcsupport/src/rmdir.c: Find the parent pathloc then the node
pathloc from that node. Remove the call to find the parent given
the node pathloc.
* libcsupport/src/stat.c: Add the length parameter to the eval
call. Set the device into the rdev field.
* libcsupport/src/unlink.c: Find the parent pathloc then the node
pathloc from that node. Remove the call to find the parent given
the node pathloc.
* libfs/src/dosfs/fat.c, libfs/src/dosfs/msdos_format.c: Get the
disk device number from the stat rdev field.
* libfs/src/dosfs/msdos.h: Add the length parameter to the eval
call. Add the parent pathloc to the rmnod handler.
* libfs/src/dosfs/msdos_dir.c: Add the parent pathloc to the rmnod
handler.
* libfs/src/dosfs/msdos_eval.c: Add the length parameter to the
eval and token call.
* libfs/src/imfs/imfs_directory.c: Add the parent pathloc to the
rmnod handler.
* libfs/src/imfs/imfs_fchmod.c: Do not test the mode flags for
only the allowed flags. Add the missing flags spec'ed in the POSIX
standard.
* libfs/src/imfs/imfs_fsunmount.c, libfs/src/imfs/imfs_rmnod.c,
libfs/src/imfs/imfs_unlink.c, libfs/src/imfs/memfile.c: Add the
parent node. Currently ignored in the IMFS.
* libfs/src/imfs/imfs_stat.c: Return the device number in the rdev
field.
* libfs/src/imfs/imfs_mknod.c, libfs/src/imfs/imfs_symlink.c : Add
the length parameter to the token call.
* libfs/src/nfsclient/src/nfs.c: Add the length parameter to the
eval call and parent node to the rmnod and unlink command.
* libmisc/shell/internal.h: Remove the libc mounter decl to make
public.
* libmisc/shell/main_mount.c: Add support for hooking external
mount support for new file systems.
* libmisc/shell/shell.h: Add helper functions for the mount
command.
185 lines
4.4 KiB
C
185 lines
4.4 KiB
C
/*
|
|
* Shell Command Implmentation
|
|
*
|
|
* Author: Fernando RUIZ CASAS
|
|
* Work: fernando.ruiz@ctv.es
|
|
* Home: correo@fernando-ruiz.com
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
#include <rtems.h>
|
|
#include <rtems/shell.h>
|
|
#include <rtems/shellconfig.h>
|
|
#include <rtems/dosfs.h>
|
|
#include <rtems/fsmount.h>
|
|
#include "internal.h"
|
|
|
|
static rtems_chain_control filesystems;
|
|
static bool fs_init;
|
|
|
|
static void rtems_shell_mount_fsys_init()
|
|
{
|
|
if (!fs_init)
|
|
{
|
|
rtems_chain_initialize_empty (&filesystems);
|
|
fs_init = true;
|
|
}
|
|
}
|
|
|
|
void rtems_shell_mount_add_fsys(rtems_shell_filesystems_t* fs)
|
|
{
|
|
rtems_shell_mount_fsys_init();
|
|
rtems_chain_append (&filesystems, &fs->link);
|
|
}
|
|
|
|
void rtems_shell_mount_del_fsys(rtems_shell_filesystems_t* fs)
|
|
{
|
|
if (fs_init)
|
|
rtems_chain_extract (&fs->link);
|
|
}
|
|
|
|
int rtems_shell_libc_mounter(
|
|
const char* driver,
|
|
const char* path,
|
|
rtems_shell_filesystems_t* fs,
|
|
rtems_filesystem_options_t options)
|
|
{
|
|
rtems_filesystem_mount_table_entry_t* mt_entry;
|
|
/*
|
|
* Mount the disk.
|
|
*/
|
|
|
|
if (mount (&mt_entry, fs->fs_ops, options, (char*) driver, (char*) path) < 0)
|
|
{
|
|
fprintf (stderr, "mount: mount failed: %s\n", strerror (errno));
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
#define NUMOF(_i) (sizeof (_i) / sizeof (_i[0]))
|
|
|
|
int rtems_shell_main_mount(
|
|
int argc,
|
|
char *argv[]
|
|
)
|
|
{
|
|
rtems_filesystem_options_t options = RTEMS_FILESYSTEM_READ_WRITE;
|
|
rtems_shell_filesystems_t* fs = NULL;
|
|
char* driver = NULL;
|
|
char* mount_point = NULL;
|
|
int arg;
|
|
|
|
rtems_shell_mount_fsys_init();
|
|
|
|
for (arg = 1; arg < argc; arg++) {
|
|
if (argv[arg][0] == '-') {
|
|
if (argv[arg][1] == 't') {
|
|
rtems_shell_filesystems_t** a;
|
|
|
|
arg++;
|
|
if (arg == argc) {
|
|
fprintf(
|
|
stderr,
|
|
"%s: -t needs a type of file-system;; see -L.\n",
|
|
argv[0]
|
|
);
|
|
return 1;
|
|
}
|
|
|
|
for (a = rtems_shell_Mount_filesystems; *a; a++) {
|
|
if (strcmp (argv[arg], (*a)->name) == 0) {
|
|
fs = *a;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!fs && !rtems_chain_is_empty(&filesystems)) {
|
|
rtems_chain_node* node = filesystems.first;
|
|
while (!rtems_chain_is_tail (&filesystems, node)) {
|
|
rtems_shell_filesystems_t* f = (rtems_shell_filesystems_t*)node;
|
|
if (strcmp (argv[arg], f->name) == 0) {
|
|
fs = f;
|
|
break;
|
|
}
|
|
node = node->next;
|
|
}
|
|
}
|
|
} else if (argv[arg][1] == 'r') {
|
|
options = RTEMS_FILESYSTEM_READ_ONLY;
|
|
} else if (argv[arg][1] == 'L') {
|
|
rtems_shell_filesystems_t** a;
|
|
fprintf (stderr, "File systems: ");
|
|
for (a = rtems_shell_Mount_filesystems; *a; a++)
|
|
if (*a)
|
|
fprintf (stderr, "%s ", (*a)->name);
|
|
fprintf (stderr, "\n");
|
|
return 1;
|
|
} else {
|
|
fprintf (stderr, "unknown option: %s\n", argv[arg]);
|
|
return 1;
|
|
}
|
|
} else {
|
|
if (!driver)
|
|
driver = argv[arg];
|
|
else if (!mount_point)
|
|
mount_point = argv[arg];
|
|
else {
|
|
fprintf (
|
|
stderr, "mount: driver and mount only require: %s\n", argv[arg]);
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (fs == NULL) {
|
|
fprintf (stderr, "mount: no file-system; see the -L option\n");
|
|
return 1;
|
|
}
|
|
|
|
if (fs->driver_needed && !driver) {
|
|
fprintf (stderr, "mount: no driver\n");
|
|
return 1;
|
|
}
|
|
|
|
if (!mount_point) {
|
|
fprintf (stderr, "mount: no mount point\n");
|
|
return 1;
|
|
}
|
|
|
|
/*
|
|
* Mount the disk.
|
|
*/
|
|
|
|
if (fs->mounter (driver, mount_point, fs, options))
|
|
return 1;
|
|
|
|
printf ("mounted %s -> %s\n", driver, mount_point);
|
|
|
|
return 0;
|
|
}
|
|
|
|
rtems_shell_cmd_t rtems_shell_MOUNT_Command = {
|
|
"mount", /* name */
|
|
"mount [-t fstype] [-r] [-L] device path # mount disk", /* usage */
|
|
"files", /* topic */
|
|
rtems_shell_main_mount, /* command */
|
|
NULL, /* alias */
|
|
NULL /* next */
|
|
};
|