summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/mknod.c
blob: 30a3f548a2c7ad50791474cb30be6805bcf31c9d (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
67
68
69
/*
 *  mknod()
 *
 *  This routine is not defined in the POSIX 1003.1b standard but is
 *  commonly supported on most UNIX and POSIX systems.  It is the
 *  foundation for creating file system objects.  
 *
 *  COPYRIGHT (c) 1989-1999.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.OARcorp.com/rtems/license.html.
 *
 *  $Id$
 */

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include <stdlib.h>

#include "libio_.h"

int mknod(
  const char *pathname,
  mode_t      mode,
  dev_t       dev
)
{
  rtems_filesystem_location_info_t    temp_loc;
  int                                 i;
  const char                         *name_start;
  int                                 result;

  if ( !(mode & (S_IFREG|S_IFCHR|S_IFBLK|S_IFIFO) ) )
    set_errno_and_return_minus_one( EINVAL );
  
  if ( S_ISFIFO(mode) )
    set_errno_and_return_minus_one( ENOTSUP );

  rtems_filesystem_get_start_loc( pathname, &i, &temp_loc );

  if ( !temp_loc.ops->evalformake ) {
    rtems_filesystem_freenode( &temp_loc );
    set_errno_and_return_minus_one( ENOTSUP );
  }

  result = (*temp_loc.ops->evalformake)( 
    &pathname[i],
    &temp_loc, 
    &name_start
  );
  if ( result != 0 )
    return -1;

  if ( !temp_loc.ops->mknod ) {
    rtems_filesystem_freenode( &temp_loc );
    set_errno_and_return_minus_one( ENOTSUP );
  }

  result =  (*temp_loc.ops->mknod)( name_start, mode, dev, &temp_loc );

  rtems_filesystem_freenode( &temp_loc );

  return result;
}