1 | /** @file
|
---|
2 | * IPRT - Symbolic Link Manipulation.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2010 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 |
|
---|
34 | RT_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 | */
|
---|
54 | RTDECL(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 | */
|
---|
65 | RTDECL(bool) RTSymlinkIsDangling(const char *pszSymlink);
|
---|
66 |
|
---|
67 | /**
|
---|
68 | * RTSymlinkCreate link type argument.
|
---|
69 | */
|
---|
70 | typedef 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 | /**
|
---|
89 | * Creates a symbolic link (@a pszSymlink) targeting @a pszTarget.
|
---|
90 | *
|
---|
91 | * @returns IPRT status code.
|
---|
92 | *
|
---|
93 | * @param pszSymlink The name of the symbolic link.
|
---|
94 | * @param pszTarget The path to the symbolic link target. This is
|
---|
95 | * relative to @a pszSymlink.
|
---|
96 | * @param enmType The symbolic link type. For Windows compatability
|
---|
97 | * it is very important to set this correctly. When
|
---|
98 | * RTSYMLINKTYPE_UNKNOWN is used, the API will try
|
---|
99 | * make a guess and may attempt query information
|
---|
100 | * about @a pszTarget in the process.
|
---|
101 | */
|
---|
102 | RTDECL(int) RTSymlinkCreate(const char *pszSymlink, const char *pszTarget, RTSYMLINKTYPE enmType);
|
---|
103 |
|
---|
104 | /**
|
---|
105 | * Deletes the specified symbolic link.
|
---|
106 | *
|
---|
107 | * This will try to refuse deleting non-symlinks, however there are usually
|
---|
108 | * races in the implementation of this check so no guarantees can be are made.
|
---|
109 | *
|
---|
110 | * @returns IPRT status code.
|
---|
111 | * @retval VERR_NOT_SYMLINK if @a pszSymlink does not specify a symbolic link.
|
---|
112 | *
|
---|
113 | * @param pszSymlink The symbolic link that should be removed.
|
---|
114 | */
|
---|
115 | RTDECL(int) RTSymlinkDelete(const char *pszSymlink);
|
---|
116 |
|
---|
117 | /**
|
---|
118 | * Read the symlink target.
|
---|
119 | *
|
---|
120 | * @returns IPRT status code.
|
---|
121 | * @retval VERR_NOT_SYMLINK if @a pszSymlink does not specify a symbolic link.
|
---|
122 | * @retval VERR_BUFFER_OVERFLOW if the link is larger than @a cbTarget. The
|
---|
123 | * buffer will contain what all we managed to read, fully terminated
|
---|
124 | * if @a cbTarget > 0.
|
---|
125 | *
|
---|
126 | * @param pszSymlink The symbolic link that should be read.
|
---|
127 | * @param pszTarget The target buffer.
|
---|
128 | * @param cbTarget The size of the target buffer.
|
---|
129 | */
|
---|
130 | RTDECL(int) RTSymlinkRead(const char *pszSymlink, char *pszTarget, size_t cbTarget);
|
---|
131 |
|
---|
132 | /**
|
---|
133 | * Read the symlink target into an API allocated buffer.
|
---|
134 | *
|
---|
135 | * This API eliminates the race involved in determining the right buffer size.
|
---|
136 | *
|
---|
137 | * @returns IPRT status code.
|
---|
138 | * @retval VERR_NOT_SYMLINK if @a pszSymlink does not specify a symbolic link.
|
---|
139 | *
|
---|
140 | * @param pszSymlink The symbolic link that should be read.
|
---|
141 | * @param ppszTarget Where to return the target string. Free the string
|
---|
142 | * by calling RTStrFree.
|
---|
143 | */
|
---|
144 | RTDECL(int) RTSymlinkReadA(const char *pszSymlink, char **ppszTarget);
|
---|
145 |
|
---|
146 | /** @} */
|
---|
147 |
|
---|
148 | RT_C_DECLS_END
|
---|
149 |
|
---|
150 | #endif
|
---|
151 |
|
---|