summaryrefslogtreecommitdiff
path: root/cpukit/libfs/src/imfs/ioman.c
blob: 59b93e400cdfa8dbb7dc4d3f112f5578a6c7605d (plain)
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
67
68
/**
 * @file
 *
 * @ingroup ClassicIO
 *
 * @brief RTEMS Register IO Name
 */

/*
 *  COPYRIGHT (c) 1989-1999.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  Modifications to support reference counting in the file system are
 *  Copyright (c) 2012 embedded brains GmbH.
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

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

#include <sys/stat.h>
#include <string.h>

#include <rtems/libio_.h>

rtems_status_code rtems_io_register_name(
  const char                *device_name,
  rtems_device_major_number  major,
  rtems_device_minor_number  minor
)
{
  int    status;
  dev_t  dev;

  dev = rtems_filesystem_make_dev_t( major, minor );
  status = mknod( device_name, 0777 | S_IFCHR, dev );

  /* this is the only error returned by the old version */
  if ( status )
    return RTEMS_TOO_MANY;

  return RTEMS_SUCCESSFUL;
}

rtems_status_code rtems_io_lookup_name(
  const char           *name,
  rtems_driver_name_t  *device_info
)
{
  rtems_status_code sc = RTEMS_SUCCESSFUL;
  struct stat st;
  int rv = stat( name, &st );

  if ( rv == 0 && S_ISCHR( st.st_mode ) ) {
    device_info->device_name = name;
    device_info->device_name_length = strlen( name );
    device_info->major = rtems_filesystem_dev_major_t( st.st_rdev );
    device_info->minor = rtems_filesystem_dev_minor_t( st.st_rdev );
  } else {
    sc = RTEMS_UNSATISFIED;
  }

  return sc;
}