ReactOS 0.4.16-dev-937-g7afcd2a
pipe.cpp File Reference
#include <corecrt_internal_lowio.h>
#include <stdlib.h>
Include dependency graph for pipe.cpp:

Go to the source code of this file.

Functions

int __cdecl _pipe (int *const phandles, unsigned const psize, int const textmode)
 

Function Documentation

◆ _pipe()

int __cdecl _pipe ( int *const  phandles,
unsigned const  psize,
int const  textmode 
)

Definition at line 20 of file pipe.cpp.

21{
22 _VALIDATE_CLEAR_OSSERR_RETURN(phandles != nullptr, EINVAL, -1);
23 phandles[0] = phandles[1] = -1;
24
27
28
29 SECURITY_ATTRIBUTES security_attributes;
30 security_attributes.nLength = sizeof(security_attributes);
31 security_attributes.lpSecurityDescriptor = nullptr;
32 security_attributes.bInheritHandle = (textmode & _O_NOINHERIT) == 0;
33
34
35 // Create the pipe:
36 HANDLE read_handle, write_handle;
37 if (!CreatePipe(&read_handle, &write_handle, &security_attributes, psize))
38 {
40 return -1;
41 }
42
43 // Create the CRT read handle for the pipe:
44 int const crt_read_handle = _alloc_osfhnd();
45 if (crt_read_handle == -1)
46 {
47 errno = EMFILE;
48 _doserrno = 0;
49 CloseHandle(read_handle);
50 CloseHandle(write_handle);
51 return -1;
52 }
53
54 __try
55 {
56 _osfile(crt_read_handle) = FOPEN | FPIPE | FTEXT;
57 _textmode(crt_read_handle) = __crt_lowio_text_mode::ansi;
58 _tm_unicode(crt_read_handle) = false;
59 }
61 {
62 __acrt_lowio_unlock_fh(crt_read_handle);
63 }
65
66 // Create the CRT write handle for the pipe:
67 int const crt_write_handle = _alloc_osfhnd();
68 if (crt_write_handle == -1)
69 {
70 _osfile(crt_read_handle) = 0;
71 errno = EMFILE;
72 _doserrno = 0;
73 CloseHandle(read_handle);
74 CloseHandle(write_handle);
75 return -1;
76 }
77
78 __try
79 {
80 _osfile(crt_write_handle) = FOPEN | FPIPE | FTEXT;
81 _textmode(crt_write_handle) = __crt_lowio_text_mode::ansi;
82 _tm_unicode(crt_write_handle) = false;
83 }
85 {
86 __acrt_lowio_unlock_fh(crt_write_handle);
87 }
89
90 // Figure out which textmode the file gets:
91 int fmode = 0;
92 _ERRCHECK(_get_fmode(&fmode));
93
94 // The pipe gets binary mode if (a) binary was requested or (b) the
95 // global default fmode was changed to binary.
96 if ((textmode & _O_BINARY) || ((textmode & _O_TEXT) == 0 && fmode == _O_BINARY))
97 {
98 _osfile(crt_read_handle) &= ~FTEXT;
99 _osfile(crt_write_handle) &= ~FTEXT;
100 }
101
102 if (textmode & _O_NOINHERIT)
103 {
104 _osfile(crt_read_handle) |= FNOINHERIT;
105 _osfile(crt_write_handle) |= FNOINHERIT;
106 }
107
108 __acrt_lowio_set_os_handle(crt_read_handle, reinterpret_cast<intptr_t>(read_handle));
109 __acrt_lowio_set_os_handle(crt_write_handle, reinterpret_cast<intptr_t>(write_handle));
110
111 phandles[0] = crt_read_handle;
112 phandles[1] = crt_write_handle;
113
114 return 0;
115}
#define EINVAL
Definition: acclib.h:90
#define _ERRCHECK(e)
void __cdecl __acrt_errno_map_os_error(unsigned long)
Definition: errno.cpp:91
int __cdecl _alloc_osfhnd(void)
Definition: osfinfo.cpp:116
int __cdecl __acrt_lowio_set_os_handle(int, intptr_t)
Definition: osfinfo.cpp:195
void __cdecl __acrt_lowio_unlock_fh(_In_ int _FileHandle)
#define _O_BINARY
Definition: cabinet.h:51
#define _O_NOINHERIT
Definition: cabinet.h:45
#define _O_TEXT
Definition: cabinet.h:50
#define CloseHandle
Definition: compat.h:739
#define EMFILE
Definition: errno.h:30
#define FOPEN
_CRTIMP errno_t __cdecl _get_fmode(_Out_ int *_PMode)
#define _doserrno
Definition: stdlib.h:131
#define _VALIDATE_CLEAR_OSSERR_RETURN(expr, errorcode, retexpr)
BOOL WINAPI CreatePipe(PHANDLE hReadPipe, PHANDLE hWritePipe, LPSECURITY_ATTRIBUTES lpPipeAttributes, DWORD nSize)
Definition: npipe.c:117
_Must_inspect_result_ _Out_ LPSIZE psize
Definition: ntgdi.h:1569
#define __try
Definition: pseh2_64.h:188
#define __endtry
Definition: pseh2_64.h:191
#define __finally
Definition: pseh2_64.h:190
#define errno
Definition: errno.h:18
#define _osfile(i)
Definition: internal.h:72
#define _tm_unicode(i)
Definition: internal.h:75
#define _textmode(i)
Definition: internal.h:74
LPVOID lpSecurityDescriptor
Definition: compat.h:193
int intptr_t
Definition: vcruntime.h:134
DWORD WINAPI GetLastError(void)
Definition: except.c:1042