1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
/*
Copyright 2024 Northern.tech AS
This file is part of CFEngine 3 - written and maintained by Northern.tech AS.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
To the extent this program is licensed as part of the Enterprise
versions of CFEngine, the applicable Commercial Open Source License
(COSL) may apply to this file if you as a licensee so wish it. See
included file COSL.txt.
*/
#ifndef CFENGINE_FILE_LIB_H
#define CFENGINE_FILE_LIB_H
#include <stdbool.h> // bool
#include <sys/types.h> // uid_t
#include <sys/stat.h> // lstat
#include <writer.h>
#include <set.h>
#include <sequence.h>
typedef enum
{
NewLineMode_Unix, // LF everywhere
NewLineMode_Native // CRLF on Windows, LF elsewhere
} NewLineMode;
#define FILE_ERROR_READ -1
/**
* Reads up to size_max bytes from filename and returns a Writer.
*/
Writer *FileRead(const char *filename, size_t size_max, bool *truncated);
/**
* Reads up to max_bytes bytes from file and writes into buf.
* Returns negative numbers in case of errors, bytes read/written otherwise.
*/
ssize_t ReadFileStreamToBuffer(FILE *file, size_t max_bytes, char *buf);
/**
* Copies a files content, without preserving metadata, times or permissions
*/
bool File_Copy(const char *src, const char *dst);
/**
* Same as CopyFile, except destination is a directory,
* and filename will match source
*/
bool File_CopyToDir(const char *src, const char *dst_dir);
/**
* Reads up to size_max bytes from fd and returns a Writer.
*/
Writer *FileReadFromFd(int fd, size_t size_max, bool *truncated);
bool FileCanOpen(const char *path, const char *modes);
/**
* Returns true if a path (such as a file or a folder) exists
* Don't follow symlinks, don't check permissions, don't check if it's a file.
* This function is similar to access (man 2 access), consider using that
* instead (for example if you want to follow symlinks).
*/
static inline bool PathExists(const char *path)
{
struct stat statbuf;
return (lstat(path, &statbuf) == 0);
}
/* Write LEN bytes at PTR to descriptor DESC, retrying if interrupted.
Return LEN upon success, write's (negative) error code otherwise. */
ssize_t FullWrite(int desc, const char *ptr, size_t len);
/* Read up to LEN bytes (or EOF) to PTR from descriptor DESC, retrying if interrupted.
Return amount of bytes read upon success, -1 otherwise */
ssize_t FullRead(int desc, char *ptr, size_t len);
bool IsDirReal(const char *path);
/**
* Returns what type of line endings the file is using.
*
* @param file File to check.
* @return Always returns NewLineMode_Unix on Unix. On Windows it may return
* NewLineMode_Native if the file has CRLF line endings.
* If the file cannot be opened, or the line endings are mixed it will
* return NewLineMode_Native. Note that only the first CF_BUFSIZE bytes
* are checked.
*/
NewLineMode FileNewLineMode(const char *file);
/* File node separator (cygwin can use \ or / but prefer \ for communicating
* with native windows commands). */
#ifdef _WIN32
# define IsFileSep(c) ((c) == '\\' || (c) == '/')
# define FILE_SEPARATOR '\\'
# define FILE_SEPARATOR_STR "\\"
#else
# define IsFileSep(c) ((c) == '/')
# define FILE_SEPARATOR '/'
# define FILE_SEPARATOR_STR "/"
#endif
bool IsAbsoluteFileName(const char *f);
/**
* @brief Check whether or not path is a Windows network path (i.e., paths that
* starts with double slash followed by hostname or IP).
* @param path Path to check.
* @return True if path is network path, otherwise false.
* @note This function cannot return true on non-Windows platforms.
*/
bool IsWindowsNetworkPath(const char *path);
/**
* @brief Check whether or not path is a Windows disk path.
* @param path Path to check.
* @return True if path is disk path, otherwise false.
* @note This function cannot return true on non-Windows platforms.
*/
bool IsWindowsDiskPath(const char *path);
char *MapName(char *s);
char *MapNameCopy(const char *s);
char *MapNameForward(char *s);
Seq *ListDir(const char *dir, const char *extension);
mode_t SetUmask(mode_t new_mask);
void RestoreUmask(mode_t old_mask);
int safe_open(const char *const pathname, int flags);
int safe_open_create_perms(
const char *pathname, int flags, mode_t create_perms);
FILE *safe_fopen(const char *path, const char *mode);
FILE *safe_fopen_create_perms(
const char *path, const char *mode, mode_t create_perms);
int safe_chdir(const char *path);
int safe_chown(const char *path, uid_t owner, gid_t group);
int safe_chmod(const char *path, mode_t mode);
#ifndef __MINGW32__
int safe_lchown(const char *path, uid_t owner, gid_t group);
#endif
int safe_creat(const char *pathname, mode_t mode);
/**
* @brief Sets whether a file descriptor should be closed on
* exec()/CreateProcess().
* @param fd File descriptor.
* @param inherit Whether to enable close-on-exec or not.
* @return true on success, false otherwise.
*/
bool SetCloseOnExec(int fd, bool enable);
/**
* @brief Deletes directory path recursively. Symlinks are not followed.
* Note that this function only deletes the contents of the directory, not the directory itself.
* @param path
* @return true if directory was deleted successfully, false if one or more files were not deleted.
*/
bool DeleteDirectoryTree(const char *path);
bool FileSparseWrite(int fd, const void *buf, size_t count,
bool *wrote_hole);
bool FileSparseCopy(int sd, const char *src_name,
int dd, const char *dst_name,
size_t blk_size,
size_t *total_bytes_written,
bool *last_write_was_a_hole);
bool FileSparseClose(int fd, const char *filename,
bool do_sync,
size_t total_bytes_written,
bool last_write_was_hole);
/**
* @brief Works exactly like posix 'getline', EXCEPT it does not include carriage return at the end.
* @return -1 on error OR EOF, so check. Or bytes in buff without excluding terminator.
*/
ssize_t CfReadLine(char **buff, size_t *size, FILE *fp);
/**
* @brief Read lines from a file and return them as a sequence.
*
* @param buff If not %NULL, a buffer used for the internal CfReadLine() calls
* @param size Size of the buffer %buff (or 0)
* @param fp File to read the data from
* @param lines Sequence to append the read lines to
*
* @return Number of items/lines appended to #lines or -1 in case of error
* @note #buff can be reallocated by an internal CfReadLine() call in which case,
* #size is also adapted accordingly (just like getline() does)
* @warning The information about lengths of individual lines is lost,
* use CfReadLine() for files with NUL bytes.
*/
ssize_t CfReadLines(char **buff, size_t *size, FILE *fp, Seq *lines);
/**
* @brief For testing things against /proc, uses env var CFENGINE_TEST_OVERRIDE_PROCDIR
* @return the extra directory to add BEFORE /proc in the path
*/
const char* GetRelocatedProcdirRoot();
/*********** File locking ***********/
typedef struct _FileLock {
/* may be extended with some other fields in the future */
/**
* File descriptor to the file associated with the lock (if any)
* @note %fd == -1 is used to indicate that the lock is not associated with
* any file
*/
int fd;
} FileLock;
#define EMPTY_FILE_LOCK { .fd = -1 }
/**
* Try to acquire an exclusive lock.
*
* @param lock The lock to try to acquire. lock.fd needs to be an open FD.
* @param wait Whether to wait for the lock (blocks) or give up immediately.
* @return 0 in case of success, -1 in case of failure.
*/
int ExclusiveFileLock(FileLock *lock, bool wait);
/**
* Try to acquire an exclusive lock on the file given by path.
*
* @param lock The lock to try to acquire. lock.fd has to be -1.
* @param fpath Path to the file to lock.
* @param wait Whether to wait for the lock (blocks) or give up immediately.
* @return 0 in case of success,
* -1 in case of failure to lock,
* -2 in case of failure to open
*/
int ExclusiveFileLockPath(FileLock *lock, const char *fpath, bool wait);
/**
* Yield the previously acquired lock.
*
* @param lock Lock to yield.
* @param close_fd Whether to close the FD when yielding the lock.
* @return 0 in case of success, -1 in case of failure.
*/
int ExclusiveFileUnlock(FileLock *lock, bool close_fd);
/**
* @see ExclusiveFileLock()
*/
int SharedFileLock(FileLock *lock, bool wait);
/**
* @see ExclusiveFileLockPath()
* @note The resulting lock.fd is opened RDONLY (shared lock is semantically
* a reader lock).
*/
int SharedFileLockPath(FileLock *lock, const char *fpath, bool wait);
/**
* @see ExclusiveFileUnock()
*/
int SharedFileUnlock(FileLock *lock, bool close_fd);
#ifdef __MINGW32__
bool ExclusiveFileLockCheck(FileLock *lock)
__attribute__ ((error("ExclusiveLockFileCheck() is not supported on Windows")));
#else
/**
* Check if an exclusive lock could be acquired.
*
* @param lock Lock to check.
* @return Whether it would be possible to acquire an exclusive lock or not.
* @warning There is of course a race condition when this is used to check if
* a blocking call to ExclusiveFileLock() would block!
* @note If the current process is already holding a lock on the file,
* this function returns %true because a call to ExclusiveFileLock()
* would just succeed (no-op or change the lock type).
*/
bool ExclusiveFileLockCheck(FileLock *lock);
#endif /* __MINGW32__ */
/**
* @brief Callback function prototype for PathWalk() #callback argument.
* @param dirpath Path to the current directory.
* @param dirnames List of subdirectories in dirpath (excluding '.' and '..').
* @param filenames List of non-directories in dirpath.
* @param data Arbitrary data passed to PathWalk().
* @note If you don't want to continue down a path, you can simply remove the
* respective subdirectory from the #dirnames sequence, or set it to
* %NULL. Also, if you need to walk the directory entries '.' or '..', you
* can append them to dirnames sequence. However, be careful so that you
* don't end up with an infinite recursion. Futhermore you are free to
* reorder the #dirnames sequence, which otherwise ensures a depth-first
* walk.
*/
typedef void PathWalkFn(const char *dirpath, Seq *dirnames, const Seq *filenames, void *data);
/**
* @brief Callback function prototype for PathWalk() #copy argument.
* @param data Arbitrary data passed to PathWalk().
* @return Should return data fully or partially duplicated.
* @note Used to duplicate data before each recursive branching. Can be %NULL.
*/
typedef void *PathWalkCopyFn(void *data);
/**
* @brief Callback function prototype for PathWalk() #destroy argument.
* @param data Arbitrary data passed to PathWalk().
* @note Used in conjunction with PathWalkCopyFn() in order to free duplicated
* data after each recursive branching. Can be %NULL.
*/
typedef void PathWalkDestroyFn(void *data);
/**
* @brief Recursively walks the directory tree.
* @param path Path to walk.
* @param callback Function to call for each visited directory.
* @param data Arbitrary data to pass to callback function.
* @param copy You might need to duplicate the arbitrary data for each recursive
* branching. In that case you can add a copy callback function. If
* you don't need this, you can set this parameter to NULL.
* @param destroy Callback function to be used in conjunction with the copy
* callback in order to destroy copy. Can be set to NULL.
* @note This function follows symbolic links.
*/
void PathWalk(
const char *path,
PathWalkFn callback,
void *data,
PathWalkCopyFn copy,
PathWalkDestroyFn destroy);
#endif
|