source: rtems/cpukit/libfs/src/imfs/imfs_link.c @ cb4e992

4.104.115
Last change on this file since cb4e992 was cb4e992, checked in by Joel Sherrill <joel.sherrill@…>, on 01/19/10 at 19:31:00

2010-01-19 Joel Sherrill <joel.sherrill@…>

  • libfs/src/imfs/imfs.h, libfs/src/imfs/imfs_creat.c, libfs/src/imfs/imfs_initsupp.c, libfs/src/imfs/imfs_link.c, libfs/src/imfs/imfs_load_tar.c, libfs/src/imfs/imfs_mknod.c, libfs/src/imfs/imfs_symlink.c: Create special helper method for creating the j-node for the root directory. This lets us assume that every j-node created otherwise has a parent node.
  • Property mode set to 100644
File size: 2.0 KB
RevLine 
[07a3253d]1/*
[a5305f6b]2 *  IMFS_link
[07a3253d]3 *
4 *  The following rouine creates a new link node under parent with the
5 *  name given in name.  The link node is set to point to the node at
6 *  to_loc.
7 *
[9ba0e55]8 *  COPYRIGHT (c) 1989-2010.
[07a3253d]9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
[cf0539b1]13 *  http://www.rtems.com/license/LICENSE.
[07a3253d]14 *
15 *  $Id$
16 */
17
[d6b1d73]18#if HAVE_CONFIG_H
19#include "config.h"
20#endif
21
[07a3253d]22#include <errno.h>
23#include "imfs.h"
[c058578]24#include <rtems/libio_.h>
[b2709481]25#include <rtems/seterr.h>
[07a3253d]26
27int IMFS_link(
28  rtems_filesystem_location_info_t  *to_loc,      /* IN */
29  rtems_filesystem_location_info_t  *parent_loc,  /* IN */
30  const char                        *token        /* IN */
31)
32{
33  IMFS_types_union   info;
34  IMFS_jnode_t      *new_node;
[3cf8394]35  char               new_name[ IMFS_NAME_MAX + 1 ];
[07a3253d]36  int                i;
37
38  /*
39   *  Verify this node can be linked to.
40   */
41  info.hard_link.link_node = to_loc->node_access;
42  if ( info.hard_link.link_node->st_nlink >= LINK_MAX )
[b2709481]43    rtems_set_errno_and_return_minus_one( EMLINK );
[a5305f6b]44
[07a3253d]45  /*
46   * Remove any separators at the end of the string.
47   */
[7baa484]48  IMFS_get_token( token, strlen( token ), new_name, &i );
[07a3253d]49
50  /*
51   *  Create a new link node.
[9ba0e55]52   *
[cb4e992]53   *  NOTE: Coverity Id 19 reports this as a leak
54   *        While technically not a leak, it indicated that IMFS_create_node
55   *        was ONLY passed a NULL when we created the root node.  We
56   *        added a new IMFS_create_root_node() so this path no longer
57   *        existed.  The result was simpler code which should not have
58   *        this path.
[07a3253d]59   */
60  new_node = IMFS_create_node(
61    parent_loc,
62    IMFS_HARD_LINK,
[a5305f6b]63    new_name,
[07a3253d]64    ( S_IFLNK | ( S_IRWXU | S_IRWXG | S_IRWXO )),
65    &info
66  );
67
68  if ( !new_node )
[b2709481]69    rtems_set_errno_and_return_minus_one( ENOMEM );
[07a3253d]70
71  /*
72   * Increment the link count of the node being pointed to.
73   */
74  info.hard_link.link_node->st_nlink++;
75  IMFS_update_ctime( info.hard_link.link_node );
76
77  return 0;
78}
Note: See TracBrowser for help on using the repository browser.