summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/imfs/imfs_symlink.c
blob: 358a8165cd88e2c76f782f181f12b8d02771573b (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
/**
 * @file
 *
 * @brief IMFS Create a New Symbolic Link Node
 * @ingroup IMFS
 */

/*
 *  COPYRIGHT (c) 1989-2009.
 *  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.rtems.com/license/LICENSE.
 */

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

#include "imfs.h"

#include <stdlib.h>
#include <string.h>

int IMFS_symlink(
  const rtems_filesystem_location_info_t *parentloc,
  const char *name,
  size_t namelen,
  const char *target
)
{
  IMFS_types_union   info;
  IMFS_jnode_t      *new_node;

  /*
   * Duplicate link name
   */
  info.sym_link.name = strdup(target);
  if (info.sym_link.name == NULL) {
    rtems_set_errno_and_return_minus_one(ENOMEM);
  }

  /*
   *  Create a new link node.
   */
  new_node = IMFS_create_node(
    parentloc,
    IMFS_SYM_LINK,
    name,
    namelen,
    ( S_IFLNK | ( S_IRWXU | S_IRWXG | S_IRWXO )),
    &info
  );

  if (new_node == NULL) {
    free(info.sym_link.name);
    rtems_set_errno_and_return_minus_one(ENOMEM);
  }

  return 0;
}