source: rtems/c/src/lib/libc/readlink.c @ d71fcab

4.104.114.84.95
Last change on this file since d71fcab was d71fcab, checked in by Joel Sherrill <joel.sherrill@…>, on 10/12/99 at 18:44:40

Added call to freenod to let each filesystem free its own internal
node used to manage file access.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 *  readlink() - POSIX 1003.1b - X.X.X - XXX
3 *
4 *  COPYRIGHT (c) 1989-1998.
5 *  On-Line Applications Research Corporation (OAR).
6 *  Copyright assigned to U.S. Government, 1994.
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
14
15#include "libio_.h"
16
17int readlink(
18  const char *pathname,
19  char       *buf,
20  int         bufsize
21)
22{
23  rtems_filesystem_location_info_t  loc;
24  int                               result;
25
26  if (!buf)
27    set_errno_and_return_minus_one( EFAULT );
28
29  result = rtems_filesystem_evaluate_path( pathname, 0, &loc, FALSE );
30  if ( result != 0 )
31     return -1;
32 
33  if ( !loc.ops->node_type ){
34    if ( loc.ops->freenod )
35      (*loc.ops->freenod)( &loc );
36    set_errno_and_return_minus_one( ENOTSUP );
37  }
38
39  if (  (*loc.ops->node_type)( &loc ) != RTEMS_FILESYSTEM_SYM_LINK ){
40    if ( loc.ops->freenod )
41      (*loc.ops->freenod)( &loc );
42    set_errno_and_return_minus_one( EINVAL );
43  }
44
45  if ( !loc.ops->readlink ){
46    if ( loc.ops->freenod )
47      (*loc.ops->freenod)( &loc );
48    set_errno_and_return_minus_one( ENOTSUP );
49  }
50
51  result =  (*loc.ops->readlink)( &loc, buf, bufsize );
52
53  if ( loc.ops->freenod )
54    (*loc.ops->freenod)( &loc );
55 
56  return result;
57}
Note: See TracBrowser for help on using the repository browser.