summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/_rename_r.c
blob: 2c1f48c1a8bbaf655b753f9eb2c9fd17c531922a (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
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
 *  @file
 *
 *  @brief Rename a File
 *  @ingroup libcsupport
 */

/*
 *  COPYRIGHT (c) 1989-2007.
 *  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

#if defined(RTEMS_NEWLIB) && !defined(HAVE__RENAME_R)

#include <stdio.h>

#include <rtems/libio_.h>

/**
 *  POSIX 1003.1b - 5.3.4 - Rename a file
 */
int _rename_r(
  struct _reent *ptr RTEMS_UNUSED,
  const char    *old,
  const char    *new
)
{
  int rv = 0;
  rtems_filesystem_eval_path_context_t old_ctx;
  int old_eval_flags = 0;
  rtems_filesystem_location_info_t old_parentloc;
  int old_parent_eval_flags = RTEMS_FS_PERMS_WRITE
    | RTEMS_FS_FOLLOW_HARD_LINK;
  const rtems_filesystem_location_info_t *old_currentloc =
    rtems_filesystem_eval_path_start_with_parent(
      &old_ctx,
      old,
      old_eval_flags,
      &old_parentloc,
      old_parent_eval_flags
    );
  rtems_filesystem_eval_path_context_t new_ctx;

  /* FIXME: This is not POSIX conform */
  int new_eval_flags = RTEMS_FS_FOLLOW_HARD_LINK
    | RTEMS_FS_MAKE
    | RTEMS_FS_EXCLUSIVE;

  const rtems_filesystem_location_info_t *new_currentloc =
    rtems_filesystem_eval_path_start( &new_ctx, new, new_eval_flags );

  rv = rtems_filesystem_location_exists_in_same_instance_as(
    old_currentloc,
    new_currentloc
  );
  if ( rv == 0 ) {
    rv = (*new_currentloc->mt_entry->ops->rename_h)(
      &old_parentloc,
      old_currentloc,
      new_currentloc,
      rtems_filesystem_eval_path_get_token( &new_ctx ),
      rtems_filesystem_eval_path_get_tokenlen( &new_ctx )
    );
  }

  rtems_filesystem_eval_path_cleanup_with_parent( &old_ctx, &old_parentloc );
  rtems_filesystem_eval_path_cleanup( &new_ctx );

  return rv;
}
#endif