LLFIO  v2.00 late beta
llfio_v2_xxx::symlink_handle Class Reference

A handle to an inode which redirects to a different path. More...

#include "symlink_handle.hpp"

Inheritance diagram for llfio_v2_xxx::symlink_handle:
llfio_v2_xxx::handle llfio_v2_xxx::fs_handle

Classes

struct  buffers_type
 
struct  const_buffers_type
 
struct  io_request
 The i/o request type used by this handle. More...
 
struct  io_request< buffers_type, ____ >
 Specialisation for reading symlinks. More...
 
struct  io_request< const_buffers_type, ____ >
 Specialisation for writing symlinks. More...
 

Public Types

enum  symlink_type { symlink_type::none, symlink_type::symbolic, symlink_type::win_wsl, symlink_type::win_junction }
 The type of symbolic link this is. More...
 
using path_type = handle::path_type
 
using extent_type = handle::extent_type
 
using size_type = handle::size_type
 
using mode = handle::mode
 
using creation = handle::creation
 
using caching = handle::caching
 
using flag = handle::flag
 
using dev_t = fs_handle::dev_t
 
using ino_t = fs_handle::ino_t
 
using path_view_type = fs_handle::path_view_type
 
using buffer_type = path_view
 The buffer type used by this handle, which is a path_view
 
using const_buffer_type = path_view
 The const buffer type used by this handle, which is a path_view
 
using unique_id_type = QUICKCPPLIB_NAMESPACE::integers128::uint128
 The unique identifier type used by this handle.
 
using unique_id_type_hasher = QUICKCPPLIB_NAMESPACE::integers128::uint128_hasher
 A hasher for the unique identifier type used by this handle.
 

Public Member Functions

 symlink_handle ()
 Default constructor.
 
 symlink_handle (native_handle_type h, dev_t devid, ino_t inode, flag flags=flag::none)
 Construct a handle from a supplied native handle.
 
 symlink_handle (handle &&o) noexcept
 Explicit conversion from handle permitted.
 
 symlink_handle (symlink_handle &&)=default
 Move construction permitted.
 
 symlink_handle (const symlink_handle &)=delete
 No copy construction (use clone())
 
symlink_handleoperator= (symlink_handle &&o) noexcept
 Move assignment permitted.
 
symlink_handleoperator= (const symlink_handle &)=delete
 No copy assignment.
 
void swap (symlink_handle &o) noexcept
 Swap with another instance.
 
virtual result< void > close () noexcept override
 Immediately close the native handle type managed by this handle.
 
virtual result< symlink_handlereopen (mode mode_=mode::unchanged, deadline d=std::chrono::seconds(30)) const noexcept
 
template<class... Args>
bool try_reopen (Args &&... args) noexcept
 
template<class... Args, class Rep , class Period >
bool try_reopen_for (Args &&... args, const std::chrono::duration< Rep, Period > &duration) noexcept
 
template<class... Args, class Clock , class Duration >
bool try_reopen_until (Args &&... args, const std::chrono::time_point< Clock, Duration > &timeout) noexcept
 
virtual result< path_typecurrent_path () const noexcept override
 
virtual result< void > relink (const path_handle &base, path_view_type path, bool atomic_replace=true, deadline d=std::chrono::seconds(30)) noexcept override
 
virtual result< void > unlink (deadline d=std::chrono::seconds(30)) noexcept override
 
virtual result< buffers_typeread (io_request< buffers_type > req={}) noexcept
 
virtual result< const_buffers_typewrite (io_request< const_buffers_type > req, deadline d=deadline()) noexcept
 
 QUICKCPPLIB_BITFIELD_BEGIN (flag)
 Bitwise flags which can be specified. More...
 
 QUICKCPPLIB_BITFIELD_END (flag)
 
void swap (handle &o) noexcept
 Swap with another instance.
 
result< handleclone () const noexcept
 
virtual native_handle_type release () noexcept
 Release the native handle type managed by this handle.
 
bool is_valid () const noexcept
 True if the handle is valid (and usually open)
 
bool is_readable () const noexcept
 True if the handle is readable.
 
bool is_writable () const noexcept
 True if the handle is writable.
 
bool is_append_only () const noexcept
 True if the handle is append only.
 
virtual result< void > set_append_only (bool enable) noexcept
 EXTENSION: Changes whether this handle is append only or not. More...
 
bool is_multiplexable () const noexcept
 True if multiplexable.
 
bool is_nonblocking () const noexcept
 True if nonblocking.
 
bool is_seekable () const noexcept
 True if seekable.
 
bool requires_aligned_io () const noexcept
 True if requires aligned i/o.
 
bool is_regular () const noexcept
 True if a regular file or device.
 
bool is_directory () const noexcept
 True if a directory.
 
bool is_symlink () const noexcept
 True if a symlink.
 
bool is_pipe () const noexcept
 True if a pipe.
 
bool is_socket () const noexcept
 True if a socket.
 
bool is_multiplexer () const noexcept
 True if a multiplexer like BSD kqueues, Linux epoll or Windows IOCP.
 
bool is_process () const noexcept
 True if a process.
 
bool is_section () const noexcept
 True if a memory section.
 
bool is_allocation () const noexcept
 True if a memory allocation.
 
caching kernel_caching () const noexcept
 Kernel cache strategy used by this handle.
 
bool are_reads_from_cache () const noexcept
 True if the handle uses the kernel page cache for reads.
 
bool are_writes_durable () const noexcept
 True if writes are safely on storage on completion.
 
bool are_safety_barriers_issued () const noexcept
 True if issuing safety fsyncs is on.
 
flag flags () const noexcept
 The flags this handle was opened with.
 
native_handle_type native_handle () const noexcept
 The native handle used by this handle.
 
dev_t st_dev () const noexcept
 Unless flag::disable_safety_unlinks is set, the device id of the file when opened.
 
ino_t st_ino () const noexcept
 Unless flag::disable_safety_unlinks is set, the inode of the file when opened. When combined with st_dev(), forms a unique identifer on this system.
 
unique_id_type unique_id () const noexcept
 A unique identifier for this handle across the entire system. Can be used in hash tables etc.
 
virtual result< path_handleparent_path_handle (deadline d=std::chrono::seconds(30)) const noexcept
 
template<class... Args>
bool try_parent_path_handle (Args &&... args) noexcept
 
template<class... Args, class Rep , class Period >
bool try_parent_path_handle_for (Args &&... args, const std::chrono::duration< Rep, Period > &duration) noexcept
 
template<class... Args, class Clock , class Duration >
bool try_parent_path_handle_until (Args &&... args, const std::chrono::time_point< Clock, Duration > &timeout) noexcept
 
template<class... Args>
bool try_relink (Args &&... args) noexcept
 
template<class... Args, class Rep , class Period >
bool try_relink_for (Args &&... args, const std::chrono::duration< Rep, Period > &duration) noexcept
 
template<class... Args, class Clock , class Duration >
bool try_relink_until (Args &&... args, const std::chrono::time_point< Clock, Duration > &timeout) noexcept
 
virtual result< void > link (const path_handle &base, path_view_type path, deadline d=std::chrono::seconds(30)) noexcept
 
template<class... Args>
bool try_link (Args &&... args) noexcept
 
template<class... Args, class Rep , class Period >
bool try_link_for (Args &&... args, const std::chrono::duration< Rep, Period > &duration) noexcept
 
template<class... Args, class Clock , class Duration >
bool try_link_until (Args &&... args, const std::chrono::time_point< Clock, Duration > &timeout) noexcept
 
template<class... Args>
bool try_unlink (Args &&... args) noexcept
 
template<class... Args, class Rep , class Period >
bool try_unlink_for (Args &&... args, const std::chrono::duration< Rep, Period > &duration) noexcept
 
template<class... Args, class Clock , class Duration >
bool try_unlink_until (Args &&... args, const std::chrono::time_point< Clock, Duration > &timeout) noexcept
 

Static Public Member Functions

static result< symlink_handlesymlink (const path_handle &base, path_view_type path, mode _mode=mode::read, creation _creation=creation::open_existing, flag flags=flag::none) noexcept
 
static result< symlink_handleuniquely_named_symlink (const path_handle &dirpath, mode _mode=mode::write, flag flags=flag::none) noexcept
 

Protected Member Functions

result< void > _fetch_inode () const noexcept
 Fill in _devid and _inode from the handle via fstat()
 

Static Protected Member Functions

static constexpr void _set_caching (native_handle_type &nativeh, caching caching) noexcept
 

Protected Attributes

native_handle_type _v
 
flag _flags {flag::none}
 
dev_t _devid {0}
 
ino_t _inode {0}
 

Detailed Description

A handle to an inode which redirects to a different path.

Microsoft Windows and Linux provide the ability to open the contents of a symbolic link directly, for those platforms this handle works exactly like any ordinary handle. For other POSIX platforms without proprietary extensions, it is not possible to get a valid file descriptor to the contents of a symlink, and in this situation the native handle returned will be -1 and the preprocessor macro LLFIO_SYMLINK_HANDLE_IS_FAKED will be non-zero.

If LLFIO_SYMLINK_HANDLE_IS_FAKED is on, the handle is race free up to the containing directory only. If a third party relocates the symbolic link into a different directory, and race free checking is enabled, this class will simply refuse to work with errc::no_such_file_or_directory as it no longer has any way of finding the symbolic link. You should take care that this does not become a denial of service attack.

On Microsoft Windows, there are many kinds of symbolic link: this implementation supports directory junctions, and NTFS symbolic links. Reads of any others will return an error code comparing equal to errc::protocol_not_supported. One should note that modifying symbolic links was not historically permitted by users with ordinary permissions on Microsoft Windows, however recent versions of Windows 10 do support symbolic links for ordinary users. All versions of Windows support directory symbolic links (junctions), these work for all users in any configuration.

(Note that to create a directory junction on Windows, first create a directory, open that empty directory for modification using symlink_handle, then write using symlink_type::win_junction)

Member Enumeration Documentation

◆ symlink_type

The type of symbolic link this is.

Enumerator
none 

! No link

symbolic 

Standard symbolic link.

win_wsl 

WSL symbolic link (Windows only, not actually implemented currently)

win_junction 

NTFS directory junction (Windows only, directories and volumes only)

114  {
115  none, //!<! No link
116  symbolic, //!< Standard symbolic link
117 
118  win_wsl, //!< WSL symbolic link (Windows only, not actually implemented currently)
119  win_junction //!< NTFS directory junction (Windows only, directories and volumes only)
120  };

Member Function Documentation

◆ clone()

result<handle> llfio_v2_xxx::handle::clone ( ) const
inlinenoexceptinherited

Clone this handle (copy constructor is disabled to avoid accidental copying)

Errors returnable\n Any of the values POSIX dup() or DuplicateHandle() can return.

◆ current_path()

virtual result<path_type> llfio_v2_xxx::symlink_handle::current_path ( ) const
inlineoverridevirtualnoexcept

Returns the current path of the open handle as said by the operating system. Note that you are NOT guaranteed that any path refreshed bears any resemblance to the original, some operating systems will return some different path which still reaches the same inode via some other route e.g. hardlinks, dereferenced symbolic links, etc. Windows and Linux correctly track changes to the specific path the handle was opened with, not getting confused by other hard links. MacOS nearly gets it right, but under some circumstances e.g. renaming may switch to a different hard link's path which is almost certainly a bug.

If LLFIO was not able to determine the current path for this open handle e.g. the inode has been unlinked, it returns an empty path. Be aware that FreeBSD can return an empty (deleted) path for file inodes no longer cached by the kernel path cache, LLFIO cannot detect the difference. FreeBSD will also return any path leading to the inode if it is hard linked. FreeBSD does implement path retrieval for directory inodes correctly however, and see algorithm::cached_parent_handle_adapter<T> for a handle adapter which makes use of that.

On Linux if /proc is not mounted, this call fails with an error. All APIs in LLFIO which require the use of current_path() can be told to not use it e.g. flag::disable_safety_unlinks. It is up to you to detect if current_path() is not working, and to change how you call LLFIO appropriately.

On Windows, you will almost certainly get back a path of the form \!!\Device\HarddiskVolume10\Users\ned\.... See path_view for what all the path prefix sequences mean, but to summarise the \!!\ prefix is LLFIO-only and will not be accepted by other Windows APIs. Pass LLFIO derived paths through the function to_win32_path() to Win32-ise them. This function is also available on Linux where it does nothing, so you can use it in portable code.

Warning
This call is expensive, it always asks the kernel for the current path, and no checking is done to ensure what the kernel returns is accurate or even sensible. Be aware that despite these precautions, paths are unstable and can change randomly at any moment. Most code written to use absolute file systems paths is racy, so don't do it, use path_handle to fix a base location on the file system and work from that anchor instead!
Memory Allocations\n At least one malloc for the path_type, likely several more.
See also
algorithm::cached_parent_handle_adapter<T> which overrides this with an implementation based on retrieving the current path of a cached handle to the parent directory. On platforms with instability or failure to retrieve the correct current path for regular files, the cached parent handle adapter works around the problem by taking advantage of directory inodes not having the same instability problems on any platform.

Reimplemented from llfio_v2_xxx::handle.

◆ link()

virtual result<void> llfio_v2_xxx::fs_handle::link ( const path_handle base,
path_view_type  path,
deadline  d = std::chrono::seconds(30) 
)
inlinevirtualnoexceptinherited

Links the inode referred to by this open handle to the path specified. The current path of this open handle is not changed, unless it has no current path due to being unlinked.

Warning
Some operating systems provide a race free syscall for linking an open handle to a new location (Linux, Windows). On all other operating systems this call is racy and can result in the wrong inode being linked. Note that unless flag::disable_safety_unlinks is set, this implementation opens a path_handle to the source containing directory first, then checks before linking that the item about to be hard linked has the same inode as the open file handle. It will retry this matching until success until the deadline given. This should prevent most unmalicious accidental loss of data.
Parameters
baseBase for any relative path.
pathThe relative or absolute new path to hard link to.
dThe deadline by which the matching of the containing directory to the open handle's inode must succeed, else errc::timed_out will be returned.
Memory Allocations\n Except on platforms with race free syscalls for renaming open handles (Windows), calls
current_path() via parent_path_handle() and thus is both expensive and calls malloc many times.

◆ parent_path_handle()

virtual result<path_handle> llfio_v2_xxx::fs_handle::parent_path_handle ( deadline  d = std::chrono::seconds(30)) const
inlinevirtualnoexceptinherited

Obtain a handle to the path currently containing this handle's file entry.

Warning
This call is racy and can result in the wrong path handle being returned. Note that unless flag::disable_safety_unlinks is set, this implementation opens a path_handle to the source containing directory, then checks if the file entry within has the same inode as the open file handle. It will retry this matching until success until the deadline given.
Memory Allocations\n Calls current_path() and thus is both expensive and calls malloc many times.
See also
algorithm::cached_parent_handle_adapter<T> which overrides this with a zero cost implementation, thus making unlinking and relinking very considerably quicker.

◆ QUICKCPPLIB_BITFIELD_BEGIN()

llfio_v2_xxx::handle::QUICKCPPLIB_BITFIELD_BEGIN ( flag  )
inlineinherited

Bitwise flags which can be specified.

< No flags

Unlinks the file on handle close. On POSIX, this simply unlinks whatever is pointed to by path() upon the call of close() if and only if the inode matches. On Windows, if you are on Windows 10 1709 or later, exactly the same thing occurs. If on previous editions of Windows, the file entry does not disappears but becomes unavailable for anyone else to open with an errc::resource_unavailable_try_again error return. Because this is confusing, unless the win_disable_unlink_emulation flag is also specified, this POSIX behaviour is somewhat emulated by LLFIO on older Windows by renaming the file to a random name on close() causing it to appear to have been unlinked immediately.

Some kernel caching modes have unhelpfully inconsistent behaviours in getting your data onto storage, so by default unless this flag is specified LLFIO adds extra fsyncs to the following operations for the caching modes specified below: truncation of file length either explicitly or during file open. closing of the handle either explicitly or in the destructor.

Additionally on Linux only to prevent loss of file metadata: On the parent directory whenever a file might have been created. On the parent directory on file close.

This only occurs for these kernel caching modes: caching::none caching::reads caching::reads_and_metadata caching::safety_barriers

file_handle::unlink() could accidentally delete the wrong file if someone has renamed the open file handle since the time it was opened. To prevent this occuring, where the OS doesn't provide race free unlink-by-open-handle we compare the inode of the path we are about to unlink with that of the open handle before unlinking.

Warning
This does not prevent races where in between the time of checking the inode and executing the unlink a third party changes the item about to be unlinked. Only operating systems with a true race-free unlink syscall are race free.

Ask the OS to disable prefetching of data. This can improve random i/o performance.

Ask the OS to maximise prefetching of data, possibly prefetching the entire file into kernel cache. This can improve sequential i/o performance.

< See the documentation for unlink_on_first_close

Microsoft Windows NTFS, having been created in the late 1980s, did not originally implement extents-based storage and thus could only represent sparse files via efficient compression of intermediate zeros. With NTFS v3.0 (Microsoft Windows 2000), a proper extents-based on-storage representation was added, thus allowing only 64Kb extent chunks written to be stored irrespective of whatever the maximum file extent was set to.

For various historical reasons, extents-based storage is disabled by default in newly created files on NTFS, unlike in almost every other major filing system. You have to explicitly "opt in" to extents-based storage.

As extents-based storage is nearly cost free on NTFS, LLFIO by default opts in to extents-based storage for any empty file it creates. If you don't want this, you can specify this flag to prevent that happening.

Filesystems tend to be embarrassingly parallel for operations performed to different inodes. Where LLFIO performs i/o to multiple inodes at a time, it will use OpenMP or the Parallelism or Concurrency standard library extensions to usually complete the operation in constant rather than linear time. If you don't want this default, you can disable default using this flag.

Microsoft Windows NTFS has the option, when creating a directory, to set whether leafname lookup will be case sensitive. This is the only way of getting exact POSIX semantics on Windows without resorting to editing the system registry, however it also affects all code doing lookups within that directory, so we must default it to off.

Create the handle in a way where i/o upon it can be multiplexed with other i/o on the same initiating thread of execution i.e. you can perform more than one read concurrently, without using threads. The blocking operations .read() and .write() may have to use a less efficient, but cancellable, blocking implementation for handles created in this way. On Microsoft Windows, this creates handles with OVERLAPPED semantics. On POSIX, this creates handles with nonblocking semantics for non-file handles such as pipes and sockets, however for file, directory and symlink handles it does not set nonblocking, as it is non-portable.

< Using insane POSIX byte range locks

< This is an inode created with no representation on the filing system

101  {
102  none = 0, //!< No flags
103  /*! Unlinks the file on handle close. On POSIX, this simply unlinks whatever is pointed
104  to by `path()` upon the call of `close()` if and only if the inode matches. On Windows,
105  if you are on Windows 10 1709 or later, exactly the same thing occurs. If on previous
106  editions of Windows, the file entry does not disappears but becomes unavailable for
107  anyone else to open with an `errc::resource_unavailable_try_again` error return. Because this is confusing, unless the
108  `win_disable_unlink_emulation` flag is also specified, this POSIX behaviour is
109  somewhat emulated by LLFIO on older Windows by renaming the file to a random name on `close()`
110  causing it to appear to have been unlinked immediately.
111  */
112  unlink_on_first_close = 1U << 0U,
113 
114  /*! Some kernel caching modes have unhelpfully inconsistent behaviours
115  in getting your data onto storage, so by default unless this flag is
116  specified LLFIO adds extra fsyncs to the following operations for the
117  caching modes specified below:
118  * truncation of file length either explicitly or during file open.
119  * closing of the handle either explicitly or in the destructor.
120 
121  Additionally on Linux only to prevent loss of file metadata:
122  * On the parent directory whenever a file might have been created.
123  * On the parent directory on file close.
124 
125  This only occurs for these kernel caching modes:
126  * caching::none
127  * caching::reads
128  * caching::reads_and_metadata
129  * caching::safety_barriers
130  */
131  disable_safety_barriers = 1U << 2U,
132  /*! `file_handle::unlink()` could accidentally delete the wrong file if someone has
133  renamed the open file handle since the time it was opened. To prevent this occuring,
134  where the OS doesn't provide race free unlink-by-open-handle we compare the inode of
135  the path we are about to unlink with that of the open handle before unlinking.
136  \warning This does not prevent races where in between the time of checking the inode
137  and executing the unlink a third party changes the item about to be unlinked. Only
138  operating systems with a true race-free unlink syscall are race free.
139  */
140  disable_safety_unlinks = 1U << 3U,
141  /*! Ask the OS to disable prefetching of data. This can improve random
142  i/o performance.
143  */
144  disable_prefetching = 1U << 4U,
145  /*! Ask the OS to maximise prefetching of data, possibly prefetching the entire file
146  into kernel cache. This can improve sequential i/o performance.
147  */
148  maximum_prefetching = 1U << 5U,
149 
150  win_disable_unlink_emulation = 1U << 24U, //!< See the documentation for `unlink_on_first_close`
151  /*! Microsoft Windows NTFS, having been created in the late 1980s, did not originally
152  implement extents-based storage and thus could only represent sparse files via
153  efficient compression of intermediate zeros. With NTFS v3.0 (Microsoft Windows 2000),
154  a proper extents-based on-storage representation was added, thus allowing only 64Kb
155  extent chunks written to be stored irrespective of whatever the maximum file extent
156  was set to.
157 
158  For various historical reasons, extents-based storage is disabled by default in newly
159  created files on NTFS, unlike in almost every other major filing system. You have to
160  explicitly "opt in" to extents-based storage.
161 
162  As extents-based storage is nearly cost free on NTFS, LLFIO by default opts in to
163  extents-based storage for any empty file it creates. If you don't want this, you
164  can specify this flag to prevent that happening.
165  */
166  win_disable_sparse_file_creation = 1U << 25U,
167  /*! Filesystems tend to be embarrassingly parallel for operations performed to different
168  inodes. Where LLFIO performs i/o to multiple inodes at a time, it will use OpenMP or
169  the Parallelism or Concurrency standard library extensions to usually complete the
170  operation in constant rather than linear time. If you don't want this default, you can
171  disable default using this flag.
172  */
173  disable_parallelism = 1U << 26U,
174  /*! Microsoft Windows NTFS has the option, when creating a directory, to set whether
175  leafname lookup will be case sensitive. This is the only way of getting exact POSIX
176  semantics on Windows without resorting to editing the system registry, however it also
177  affects all code doing lookups within that directory, so we must default it to off.
178  */
179  win_create_case_sensitive_directory = 1U << 27U,
180 
181  /*! Create the handle in a way where i/o upon it can be multiplexed with other i/o
182  on the same initiating thread of execution i.e. you can perform more than one read
183  concurrently, without using threads. The blocking operations `.read()` and `.write()`
184  may have to use a less efficient, but cancellable, blocking implementation for handles created
185  in this way. On Microsoft Windows, this creates handles with `OVERLAPPED` semantics.
186  On POSIX, this creates handles with nonblocking semantics for non-file handles such
187  as pipes and sockets, however for file, directory and symlink handles it does not set
188  nonblocking, as it is non-portable.
189  */
190  multiplexable = 1U << 28U,
191 
192  // NOTE: IF UPDATING THIS UPDATE THE std::ostream PRINTER BELOW!!!
193 
194  byte_lock_insanity = 1U << 29U, //!< Using insane POSIX byte range locks
195  anonymous_inode = 1U << 30U //!< This is an inode created with no representation on the filing system
196  } QUICKCPPLIB_BITFIELD_END(flag);

◆ read()

virtual result<buffers_type> llfio_v2_xxx::symlink_handle::read ( io_request< buffers_type req = {})
inlinevirtualnoexcept

Read the contents of the symbolic link.

If supplying your own kernelbuffer, be aware that the length of the contents of the symbolic link may change at any time. You should therefore retry reading the symbolic link, expanding your kernelbuffer each time, until a successful read occurs.

Returns
Returns the buffers filled, with its path adjusted to the bytes filled.
Parameters
reqA buffer to fill with the contents of the symbolic link.
Errors returnable\n Any of the errors which readlinkat() or DeviceIoControl() might return, or failure
to allocate memory if the user did not supply a kernel buffer to use, or the user supplied buffer was too small.
Memory Allocations\n If the kernelbuffer parameter is set in the request, no memory allocations.
If unset, at least one memory allocation, possibly more is performed.

◆ relink()

virtual result<void> llfio_v2_xxx::symlink_handle::relink ( const path_handle base,
path_view_type  path,
bool  atomic_replace = true,
deadline  d = std::chrono::seconds(30) 
)
inlineoverridevirtualnoexcept

Relinks the current path of this open handle to the new path specified. If atomic_replace is true, the relink atomically and silently replaces any item at the new path specified. This operation is both atomic and matching POSIX behaviour even on Microsoft Windows where no Win32 API can match POSIX semantics.

Note that if atomic_replace is false, the operation may be implemented as creating a hard link to the destination (which fails if the destination exists), opening a new file descriptor to the destination, closing the existing file descriptor, replacing the existing file descriptor with the new one (this is to ensure path tracking continues to work), then unlinking the previous link. Thus native_handle()'s value may change. This is not the case on Microsoft Windows nor Linux, both of which provide syscalls capable of refusing to rename if the destination exists.

If the handle refers to a pipe, on Microsoft Windows the base path handle is ignored as there is a single global named pipe namespace. Unless the path fragment begins with \, the string \??\ is prefixed to the name before passing it to the NT kernel API which performs the rename. This is because \\.\ in Win32 maps onto \??\ in the NT kernel.

Warning
Some operating systems provide a race free syscall for renaming an open handle (Windows). On all other operating systems this call is racy and can result in the wrong file entry being relinked. Note that unless flag::disable_safety_unlinks is set, this implementation opens a path_handle to the source containing directory first, then checks before relinking that the item about to be relinked has the same inode as the open file handle. It will retry this matching until success until the deadline given. This should prevent most unmalicious accidental loss of data.
Parameters
baseBase for any relative path.
pathThe relative or absolute new path to relink to.
atomic_replaceAtomically replace the destination if a file entry already is present there. Choosing false for this will fail if a file entry is already present at the destination, and may not be an atomic operation on some platforms (i.e. both the old and new names may be linked to the same inode for a very short period of time). Windows and recent Linuxes are always atomic.
dThe deadline by which the matching of the containing directory to the open handle's inode must succeed, else errc::timed_out will be returned.
Memory Allocations\n Except on platforms with race free syscalls for renaming open handles (Windows), calls
current_path() via parent_path_handle() and thus is both expensive and calls malloc many times.

Reimplemented from llfio_v2_xxx::fs_handle.

◆ reopen()

virtual result<symlink_handle> llfio_v2_xxx::symlink_handle::reopen ( mode  mode_ = mode::unchanged,
deadline  d = std::chrono::seconds(30) 
) const
inlinevirtualnoexcept

Reopen this handle (copy constructor is disabled to avoid accidental copying), optionally race free reopening the handle with different access or caching.

Microsoft Windows provides a syscall for cloning an existing handle but with new access. On POSIX, we must loop calling current_path(), trying to open the path returned and making sure it is the same inode.

Errors returnable\n Any of the values POSIX dup() or DuplicateHandle() can return.
Memory Allocations\n On POSIX if changing the mode, we must loop calling current_path() and
trying to open the path returned. Thus many allocations may occur.

◆ set_append_only()

virtual result<void> llfio_v2_xxx::handle::set_append_only ( bool  enable)
inlinevirtualnoexceptinherited

EXTENSION: Changes whether this handle is append only or not.

Warning
On Windows this is implemented as a bit of a hack to make it fast like on POSIX, so make sure you open the handle for read/write originally. Note unlike on POSIX the append_only disposition will be the only one toggled, seekable and readable will remain turned on.
Errors returnable\n Whatever POSIX fcntl() returns. On Windows nothing is changed on the handle.
Memory Allocations\n No memory allocation.

Reimplemented in llfio_v2_xxx::process_handle.

◆ symlink()

static result<symlink_handle> llfio_v2_xxx::symlink_handle::symlink ( const path_handle base,
path_view_type  path,
mode  _mode = mode::read,
creation  _creation = creation::open_existing,
flag  flags = flag::none 
)
inlinestaticnoexcept

Create a symlink handle opening access to a symbolic link.

For obvious reasons, one cannot append to a symbolic link, nor create with truncate. In this situation a failure comparing equal to errc::function_not_supported shall be returned.

Errors returnable\n Any of the values POSIX open() or CreateFile() can return.
Memory Allocations\n None, unless LLFIO_SYMLINK_HANDLE_IS_FAKED is on, in which case one.

◆ uniquely_named_symlink()

static result<symlink_handle> llfio_v2_xxx::symlink_handle::uniquely_named_symlink ( const path_handle dirpath,
mode  _mode = mode::write,
flag  flags = flag::none 
)
inlinestaticnoexcept

Create a symlink handle creating a uniquely named symlink on a path. The symlink is opened exclusively with creation::only_if_not_exist so it will never collide with nor overwrite any existing symlink.

Errors returnable\n Any of the values POSIX open() or CreateFile() can return,
or failure to allocate memory.
455  {
456  try
457  {
458  for(;;)
459  {
460  auto randomname = utils::random_string(32);
461  randomname.append(".random");
462  result<symlink_handle> ret = symlink(dirpath, randomname, _mode, creation::only_if_not_exist, flags);
463  if(ret || (!ret && ret.error() != errc::file_exists))
464  {
465  return ret;
466  }
467  }
468  }
469  catch(...)
470  {
471  return error_from_exception();
472  }
473  }

◆ unlink()

virtual result<void> llfio_v2_xxx::symlink_handle::unlink ( deadline  d = std::chrono::seconds(30))
inlineoverridevirtualnoexcept

Unlinks the current path of this open handle, causing its entry to immediately disappear from the filing system. On Windows before Windows 10 1709 unless flag::win_disable_unlink_emulation is set, this behaviour is simulated by renaming the file to something random and setting its delete-on-last-close flag. Note that Windows may prevent the renaming of a file in use by another process, if so it will NOT be renamed. After the next handle to that file closes, it will become permanently unopenable by anyone else until the last handle is closed, whereupon the entry will be eventually removed by the operating system.

Warning
Some operating systems provide a race free syscall for unlinking an open handle (Windows). On all other operating systems this call is racy and can result in the wrong file entry being unlinked. Note that unless flag::disable_safety_unlinks is set, this implementation opens a path_handle to the containing directory first, then checks that the item about to be unlinked has the same inode as the open file handle. It will retry this matching until success until the deadline given. This should prevent most unmalicious accidental loss of data.
Parameters
dThe deadline by which the matching of the containing directory to the open handle's inode must succeed, else errc::timed_out will be returned.
Memory Allocations\n Except on platforms with race free syscalls for unlinking open handles (Windows), calls
current_path() and thus is both expensive and calls malloc many times. On Windows, also calls current_path() if flag::disable_safety_unlinks is not set.

Reimplemented from llfio_v2_xxx::fs_handle.

◆ write()

virtual result<const_buffers_type> llfio_v2_xxx::symlink_handle::write ( io_request< const_buffers_type req,
deadline  d = deadline() 
)
inlinevirtualnoexcept

Write the contents of the symbolic link.

Parameters
reqA buffer with which to replace the contents of the symbolic link.
dAn optional deadline by which the i/o must complete, else it is cancelled. Ignored on Windows.
Errors returnable\n Any of the errors which symlinkat() or DeviceIoControl() might return.
Memory Allocations\n On Windows, if the kernelbuffer parameter is set on entry, no memory allocations.
If unset, then at least one memory allocation, possibly more is performed. On POSIX, at least one memory allocation.

The documentation for this class was generated from the following file:
llfio_v2_xxx::handle::creation::only_if_not_exist
@ only_if_not_exist
Filesystem entry must NOT exist, and is atomically created by the success of this operation.
llfio_v2_xxx::utils::random_string
std::string random_string(size_t randomlen)
Returns a cryptographically random string capable of being used as a filename. Essentially random_fil...
Definition: utils.hpp:169
llfio_v2_xxx::handle::flags
flag flags() const noexcept
The flags this handle was opened with.
Definition: handle.hpp:423