source: rtems/cpukit/libcsupport/src/unlink.c @ c17d0b3

4.115
Last change on this file since c17d0b3 was c17d0b3, checked in by Sebastian Huber <sebastian.huber@…>, on 10/02/12 at 13:44:59

Filesystem: Reject removal of root nodes

Reject the removal of file system instance root nodes in rmdir() and
unlink() and return the EBUSY error status. File system instances can
be removed with unmount(). Remove root node special cases in IMFS,
DOSFS, and RFS.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1/*
2 *  unlink() - POSIX 1003.1b - 5.5.1 - Remove an existing link
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 */
11
12#if HAVE_CONFIG_H
13  #include "config.h"
14#endif
15
16#include <unistd.h>
17
18#include <rtems/libio_.h>
19
20int unlink( const char *path )
21{
22  int rv = 0;
23  rtems_filesystem_eval_path_context_t ctx;
24  int eval_flags = RTEMS_FS_REJECT_TERMINAL_DOT;
25  rtems_filesystem_location_info_t parentloc;
26  int parent_eval_flags = RTEMS_FS_PERMS_WRITE
27    | RTEMS_FS_PERMS_EXEC
28    | RTEMS_FS_FOLLOW_LINK;
29  const rtems_filesystem_location_info_t *currentloc =
30    rtems_filesystem_eval_path_start_with_parent(
31      &ctx,
32      path,
33      eval_flags,
34      &parentloc,
35      parent_eval_flags
36    );
37
38  if ( !rtems_filesystem_location_is_root( currentloc ) ) {
39    const rtems_filesystem_operations_table *ops = currentloc->mt_entry->ops;
40
41    rv = (*ops->rmnod_h)( &parentloc, currentloc );
42  } else {
43    rtems_filesystem_eval_path_error( &ctx, EBUSY );
44    rv = -1;
45  }
46
47  rtems_filesystem_eval_path_cleanup_with_parent( &ctx, &parentloc );
48
49  return rv;
50}
51
52/*
53 *  _unlink_r
54 *
55 *  This is the Newlib dependent reentrant version of unlink().
56 */
57
58#if defined(RTEMS_NEWLIB)
59
60#include <reent.h>
61
62int _unlink_r(
63  struct _reent *ptr __attribute__((unused)),
64  const char    *path
65)
66{
67  return unlink( path );
68}
69#endif
Note: See TracBrowser for help on using the repository browser.