ReactOS 0.4.16-dev-959-g2ec3a19
chsize.cpp File Reference
Include dependency graph for chsize.cpp:

Go to the source code of this file.

Classes

struct  __crt_seek_guard
 

Functions

static errno_t __cdecl _chsize_s_internal (int const fh, __int64 const size, __crt_cached_ptd_host &ptd)
 
errno_t __cdecl _chsize_s (int const fh, __int64 const size)
 
errno_t __cdecl _chsize_nolock_internal (int const fh, __int64 const size, __crt_cached_ptd_host &ptd)
 
errno_t __cdecl _chsize_nolock (int const fh, __int64 const size)
 
int __cdecl _chsize (int const fh, long const size)
 

Function Documentation

◆ _chsize()

int __cdecl _chsize ( int const  fh,
long const  size 
)

Definition at line 145 of file chsize.cpp.

146{
147 return _chsize_s(fh, size) == 0 ? 0 : -1;
148}
errno_t __cdecl _chsize_s(int const fh, __int64 const size)
Definition: chsize.cpp:36
GLsizeiptr size
Definition: glext.h:5919

◆ _chsize_nolock()

errno_t __cdecl _chsize_nolock ( int const  fh,
__int64 const  size 
)

Definition at line 134 of file chsize.cpp.

135{ // TODO: _chsize_nolock is already internal-only.
136 // Once PTD is propagated everywhere, rename _chsize_nolock_internal to _chsize_nolock.
137 __crt_cached_ptd_host ptd;
138 return _chsize_nolock_internal(fh, size, ptd);
139}
errno_t __cdecl _chsize_nolock_internal(int const fh, __int64 const size, __crt_cached_ptd_host &ptd)
Definition: chsize.cpp:67
_In_ size_t const _In_ int _In_ bool const _In_ unsigned const _In_ __acrt_rounding_mode const _Inout_ __crt_cached_ptd_host & ptd
Definition: cvt.cpp:355

◆ _chsize_nolock_internal()

errno_t __cdecl _chsize_nolock_internal ( int const  fh,
__int64 const  size,
__crt_cached_ptd_host &  ptd 
)

Definition at line 67 of file chsize.cpp.

68{
69 // Get current file position and seek to end
70 __crt_seek_guard seek_guard(fh, size);
71
72 if (seek_guard.place == -1 || seek_guard.end == -1)
73 {
74 // EBADF if earlier lseek (in __crt_seek_guard) failed
75 // EINVAL otherwise (ex: too large of a offset)
76 return ptd.get_errno().value_or(EINVAL);
77 }
78
79 // Grow or shrink the file as necessary:
80 if (seek_guard.extend > 0)
81 {
82 // Extend the file by filling the new area with zeroes:
83 __crt_unique_heap_ptr<char> const zero_buffer(_calloc_crt_t(char, _INTERNAL_BUFSIZ));
84 if (!zero_buffer)
85 {
86 return ptd.get_errno().set(ENOMEM);
87 }
88
89 int const old_mode = _setmode_nolock(fh, _O_BINARY);
90
91 do
92 {
93 int const bytes_to_write = seek_guard.extend >= static_cast<__int64>(_INTERNAL_BUFSIZ)
95 : static_cast<int>(seek_guard.extend);
96
97 int const bytes_written = _write_nolock(fh, zero_buffer.get(), bytes_to_write, ptd);
98 if (bytes_written == -1)
99 {
100 // Error on write:
101 if (ptd.get_doserrno().check(ERROR_ACCESS_DENIED))
102 {
103 ptd.get_errno().set(EACCES);
104 }
105
106 return ptd.get_errno().value_or(0);
107 }
108
109 seek_guard.extend -= bytes_written;
110 } while (seek_guard.extend > 0);
111
112#pragma warning(suppress:6031) // return value ignored
113 _setmode_nolock(fh, old_mode);
114 }
115 else if (seek_guard.extend < 0)
116 {
117 // Shorten the file by truncating it:
118 __int64 const new_end = _lseeki64_nolock(fh, size, SEEK_SET);
119 if (new_end == -1)
120 {
121 return ptd.get_errno().value_or(0);
122 }
123
124 if (!SetEndOfFile(reinterpret_cast<HANDLE>(_get_osfhandle(fh))))
125 {
126 ptd.get_doserrno().set(GetLastError());
127 return ptd.get_errno().set(EACCES);
128 }
129 }
130
131 return 0;
132}
#define EINVAL
Definition: acclib.h:90
#define ENOMEM
Definition: acclib.h:84
#define EACCES
Definition: acclib.h:85
#define __int64
Definition: basetyps.h:16
_Check_return_ int __cdecl _write_nolock(_In_ int _FileHandle, _In_reads_bytes_(_MaxCharCount) const void *_Buf, _In_ unsigned int _MaxCharCount, __crt_cached_ptd_host &_Ptd)
_Check_return_ int __cdecl _setmode_nolock(_In_ int _FileHandle, _In_ int _Mode)
#define _INTERNAL_BUFSIZ
_Check_return_opt_ __int64 __cdecl _lseeki64_nolock(_In_ int _FileHandle, _In_ __int64 _Offset, _In_ int _Origin)
#define _O_BINARY
Definition: cabinet.h:51
#define ERROR_ACCESS_DENIED
Definition: compat.h:97
BOOL WINAPI SetEndOfFile(HANDLE hFile)
Definition: fileinfo.c:1004
#define SEEK_SET
Definition: jmemansi.c:26
_CRTIMP intptr_t __cdecl _get_osfhandle(_In_ int _FileHandle)
DWORD WINAPI GetLastError(void)
Definition: except.c:1042

Referenced by _chsize_nolock(), and _chsize_s_internal().

◆ _chsize_s()

errno_t __cdecl _chsize_s ( int const  fh,
__int64 const  size 
)

Definition at line 36 of file chsize.cpp.

37{
38 __crt_cached_ptd_host ptd;
39 return _chsize_s_internal(fh, size, ptd);
40}
static errno_t __cdecl _chsize_s_internal(int const fh, __int64 const size, __crt_cached_ptd_host &ptd)
Definition: chsize.cpp:15

Referenced by _chsize().

◆ _chsize_s_internal()

static errno_t __cdecl _chsize_s_internal ( int const  fh,
__int64 const  size,
__crt_cached_ptd_host &  ptd 
)
static

Definition at line 15 of file chsize.cpp.

16{
18 _UCRT_VALIDATE_CLEAR_OSSERR_RETURN_ERRCODE(ptd, (fh >= 0 && (unsigned)fh < (unsigned)_nhandle), EBADF);
21
22 return __acrt_lowio_lock_fh_and_call(fh, [&]()
23 {
24 if (_osfile(fh) & FOPEN)
25 {
26 return _chsize_nolock_internal(fh, size, ptd);
27 }
28 else
29 {
30 _ASSERTE(("Invalid file descriptor. File possibly closed by a different thread", 0));
31 return ptd.get_errno().set(EBADF);
32 }
33 });
34}
#define EBADF
Definition: acclib.h:82
int _nhandle
Definition: ioinit.cpp:34
auto __acrt_lowio_lock_fh_and_call(int const fh, Action &&action) -> decltype(action())
#define _UCRT_CHECK_FH_CLEAR_OSSERR_RETURN_ERRCODE(ptd, handle, retexpr)
#define _UCRT_VALIDATE_CLEAR_OSSERR_RETURN_ERRCODE(ptd, expr, errorcode)
#define _ASSERTE(expr)
Definition: crtdbg.h:114
#define FOPEN
#define _osfile(i)
Definition: internal.h:72

Referenced by _chsize_s().