VirtualBox

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

Last change on this file since 77807 was 76585, checked in by vboxsync, 6 years ago

*: scm --fix-header-guard-endif

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

© 2024 Oracle
ContactPrivacy/Do Not Sell My InfoTerms of Use