VirtualBox

source: vbox/trunk/include/iprt/symlink.h@ 44528

Last change on this file since 44528 was 44528, checked in by vboxsync, 12 years ago

header (C) fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.0 KB
Line 
1/** @file
2 * IPRT - Symbolic Link Manipulation.
3 */
4
5/*
6 * Copyright (C) 2011 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_symlink_h
27#define ___iprt_symlink_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31
32
33
34RT_C_DECLS_BEGIN
35
36/** @defgroup grp_rt_symlink RTSymlink - Symbolic Link Manipulation
37 * @ingroup grp_rt
38 *
39 * For querying and changing symlink info (mode, ownership, etc) please refer
40 * to the @ref grp_rt_path "RTPath" API: RTPathQueryInfoEx, RTPathSetOwnerEx,
41 * RTPathSetModeEx and RTPathSetTimesEx.
42 *
43 * @{
44 */
45
46/**
47 * Checks if the specified path exists and is a symlink.
48 *
49 * @returns true if it's a symlink, false if it isn't.
50 * @param pszSymlink The path to the symlink.
51 *
52 * @sa RTDirExists, RTPathExists, RTSymlinkExists.
53 */
54RTDECL(bool) RTSymlinkExists(const char *pszSymlink);
55
56/**
57 * Checks if this is a dangling link or not.
58 *
59 * If the target of @a pszSymlink is a symbolic link, this may return false if
60 * that or any subsequent links are dangling.
61 *
62 * @returns true if it's dangling, false if it isn't.
63 * @param pszSymlink The path to the symlink.
64 */
65RTDECL(bool) RTSymlinkIsDangling(const char *pszSymlink);
66
67/**
68 * RTSymlinkCreate link type argument.
69 */
70typedef enum RTSYMLINKTYPE
71{
72 /** Invalid value. */
73 RTSYMLINKTYPE_INVALID = 0,
74 /** The link targets a directory. */
75 RTSYMLINKTYPE_DIR,
76 /** The link targets a file (or whatever else). */
77 RTSYMLINKTYPE_FILE,
78 /** It is not known what is being targeted.
79 * @remarks The RTSymlinkCreate API may probe the target to try figure
80 * out what is being targeted. */
81 RTSYMLINKTYPE_UNKNOWN,
82 /** The end of the valid type values. */
83 RTSYMLINKTYPE_END,
84 /** Blow the type up to 32-bit. */
85 RTSYMLINKTYPE_32BIT_HACK = 0x7fffffff
86} RTSYMLINKTYPE;
87
88/** @name RTSymlinkCreate flags.
89 * @{ */
90/** Don't allow symbolic links as part of the path.
91 * @remarks this flag is currently not implemented and will be ignored. */
92#define RTSYMLINKCREATE_FLAGS_NO_SYMLINKS RT_BIT(0)
93/** @} */
94
95/**
96 * Creates a symbolic link (@a pszSymlink) targeting @a pszTarget.
97 *
98 * @returns IPRT status code.
99 *
100 * @param pszSymlink The name of the symbolic link.
101 * @param pszTarget The path to the symbolic link target. This is
102 * relative to @a pszSymlink or an absolute path.
103 * @param enmType The symbolic link type. For Windows compatability
104 * it is very important to set this correctly. When
105 * RTSYMLINKTYPE_UNKNOWN is used, the API will try
106 * make a guess and may attempt query information
107 * about @a pszTarget in the process.
108 * @param fCreate Create flags, RTSYMLINKCREATE_FLAGS_*.
109 */
110RTDECL(int) RTSymlinkCreate(const char *pszSymlink, const char *pszTarget,
111 RTSYMLINKTYPE enmType, uint32_t fCreate);
112
113/** @name RTSymlinkDelete flags.
114 * @{ */
115/** Don't allow symbolic links as part of the path.
116 * @remarks this flag is currently not implemented and will be ignored. */
117#define RTSYMLINKDELETE_FLAGS_NO_SYMLINKS RT_BIT(0)
118/** @} */
119
120/**
121 * Deletes the specified symbolic link.
122 *
123 * This will try to refuse deleting non-symlinks, however there are usually
124 * races in the implementation of this check so no guarantees can be are made.
125 *
126 * @returns IPRT status code.
127 * @retval VERR_NOT_SYMLINK if @a pszSymlink does not specify a symbolic link.
128 *
129 * @param pszSymlink The symbolic link that should be removed.
130 * @param fDelete Delete flags, RTSYMLINKDELETE_FLAGS_*.
131 */
132RTDECL(int) RTSymlinkDelete(const char *pszSymlink, uint32_t fDelete);
133
134/** @name RTSymlinkRead flags.
135 * @{ */
136/** Don't allow symbolic links as part of the path.
137 * @remarks this flag is currently not implemented and will be ignored. */
138#define RTSYMLINKREAD_FLAGS_NO_SYMLINKS RT_BIT(0)
139/** @} */
140
141/**
142 * Read the symlink target.
143 *
144 * @returns IPRT status code.
145 * @retval VERR_NOT_SYMLINK if @a pszSymlink does not specify a symbolic link.
146 * @retval VERR_BUFFER_OVERFLOW if the link is larger than @a cbTarget. The
147 * buffer will contain what all we managed to read, fully terminated
148 * if @a cbTarget > 0.
149 *
150 * @param pszSymlink The symbolic link that should be read.
151 * @param pszTarget The target buffer.
152 * @param cbTarget The size of the target buffer.
153 * @param fRead Read flags, RTSYMLINKREAD_FLAGS_*.
154 */
155RTDECL(int) RTSymlinkRead(const char *pszSymlink, char *pszTarget, size_t cbTarget, uint32_t fRead);
156
157/**
158 * Read the symlink target into an API allocated buffer.
159 *
160 * This API eliminates the race involved in determining the right buffer size.
161 *
162 * @returns IPRT status code.
163 * @retval VERR_NOT_SYMLINK if @a pszSymlink does not specify a symbolic link.
164 *
165 * @param pszSymlink The symbolic link that should be read.
166 * @param ppszTarget Where to return the target string. Free the string
167 * by calling RTStrFree.
168 */
169RTDECL(int) RTSymlinkReadA(const char *pszSymlink, char **ppszTarget);
170
171/** @} */
172
173RT_C_DECLS_END
174
175#endif
176
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette