summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/devfs/devfs_eval.c
blob: dd69fd802d0f0f57b89e68c43141fbd1434386da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 *  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$
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/seterr.h>
#include <fcntl.h>
#include <assert.h>
#include "devfs.h"

int devFS_evaluate_path(
  const char                        *pathname,
  int                                pathnamelen,
  int                                flags,
  rtems_filesystem_location_info_t  *pathloc
)
{
    int                   i;
    rtems_device_name_t  *device_name_table;

    /* see if 'flags' is valid */
    if ( !rtems_libio_is_valid_perms( flags ) ) {
        assert( 0 );
        rtems_set_errno_and_return_minus_one( EIO );
    }

    /* get the device name table */
    device_name_table = (rtems_device_name_t *)pathloc->node_access;
    if (!device_name_table)
        rtems_set_errno_and_return_minus_one( EFAULT );

    for (i = 0; i < rtems_device_table_size; i++){
        if ((device_name_table[i].device_name) && 
		(strncmp(pathname, device_name_table[i].device_name, pathnamelen) == 0)){
            /* find the device, set proper values */
            pathloc->node_access = (void *)&device_name_table[i];
            pathloc->handlers = &devFS_file_handlers;
            pathloc->ops = &devFS_ops;
            pathloc->mt_entry = rtems_filesystem_root.mt_entry;
            return 0;
        }
    }
    /* no such file or directory */
    rtems_set_errno_and_return_minus_one( ENOENT );
}



int devFS_evaluate_for_make(
   const char                         *path,
   rtems_filesystem_location_info_t   *pathloc,
   const char                        **name
)
{
    /* we do nothing, just set name to path */
   *name = path;
    return 0;
}