forked from mysql/mysql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnamed_pipe_connection.cc
282 lines (250 loc) · 9.41 KB
/
named_pipe_connection.cc
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
/*
Copyright (c) 2013, 2023, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is also distributed with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have included with MySQL.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "init_net_server_extension.h"
#include "named_pipe_connection.h"
#include <AclAPI.h> // Windows access control API
#include "violite.h" // Vio
#include "channel_info.h" // Channel_info
#include "connection_handler_manager.h" // Connection_handler_manager
#include "log.h" // sql_print_error
#include "named_pipe.h" // create_server_named_pipe.
#include "sql_class.h" // THD
///////////////////////////////////////////////////////////////////////////
// Channel_info_named_pipe implementation
///////////////////////////////////////////////////////////////////////////
/**
This class abstracts the info. about windows named pipe of communication
with server from client.
*/
class Channel_info_named_pipe : public Channel_info
{
// Handle to named pipe.
HANDLE m_handle;
protected:
virtual Vio* create_and_init_vio() const
{
return vio_new_win32pipe(m_handle);
}
public:
/**
Constructor that sets the pipe handle
@param handle connected pipe handle
*/
Channel_info_named_pipe(HANDLE handle)
: m_handle(handle)
{ }
virtual THD* create_thd()
{
THD* thd= Channel_info::create_thd();
if (thd != NULL) {
init_net_server_extension(thd);
thd->security_context()->set_host_ptr(my_localhost, strlen(my_localhost));
}
return thd;
}
virtual void send_error_and_close_channel(uint errorcode,
int error,
bool senderror)
{
Channel_info::send_error_and_close_channel(errorcode, error, senderror);
DisconnectNamedPipe(m_handle);
CloseHandle(m_handle);
}
};
///////////////////////////////////////////////////////////////////////////
// Named_pipe_listener implementation
///////////////////////////////////////////////////////////////////////////
bool Named_pipe_listener::setup_listener()
{
m_connect_overlapped.hEvent= CreateEvent(NULL, TRUE, FALSE, NULL);
if (!m_connect_overlapped.hEvent)
{
sql_print_error("Can't create event, last error=%u", GetLastError());
return true;
}
m_pipe_handle= create_server_named_pipe(
&mp_sa_pipe_security, global_system_variables.net_buffer_length,
m_pipe_name.c_str(), m_pipe_path_name, sizeof(m_pipe_path_name),
named_pipe_full_access_group);
if (m_pipe_handle == INVALID_HANDLE_VALUE)
return true;
return false;
}
Channel_info* Named_pipe_listener::listen_for_connection_event()
{
TCHAR last_error_msg[256];
/* wait for named pipe connection */
BOOL fConnected= ConnectNamedPipe(m_pipe_handle, &m_connect_overlapped);
if (!fConnected && (GetLastError() == ERROR_IO_PENDING))
{
/*
ERROR_IO_PENDING says async IO has started but not yet finished.
GetOverlappedResult will wait for completion.
*/
DWORD bytes;
fConnected= GetOverlappedResult(m_pipe_handle, &m_connect_overlapped,
&bytes, TRUE);
}
if (abort_loop)
return NULL;
if (!fConnected)
fConnected= GetLastError() == ERROR_PIPE_CONNECTED;
if (!fConnected)
{
CloseHandle(m_pipe_handle);
mysql_rwlock_rdlock(&LOCK_named_pipe_full_access_group);
m_pipe_handle= CreateNamedPipe(
m_pipe_path_name, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED | WRITE_DAC,
PIPE_TYPE_BYTE | PIPE_READMODE_BYTE | PIPE_WAIT,
PIPE_UNLIMITED_INSTANCES,
(int)global_system_variables.net_buffer_length,
(int)global_system_variables.net_buffer_length,
NMPWAIT_USE_DEFAULT_WAIT, mp_sa_pipe_security);
mysql_rwlock_unlock(&LOCK_named_pipe_full_access_group);
if (m_pipe_handle == INVALID_HANDLE_VALUE)
{
DWORD last_error_num= GetLastError();
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS |
FORMAT_MESSAGE_MAX_WIDTH_MASK,
NULL, last_error_num,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), last_error_msg,
sizeof(last_error_msg) / sizeof(TCHAR), NULL);
sql_print_error("Can't create new named pipe: %s", last_error_msg);
return NULL;
}
else
{
/* A new pipe has been successfully created, it's not connected yet so
return NULL to spin around and wait for connection on it.
*/
return NULL;
}
}
HANDLE hConnectedPipe= m_pipe_handle;
/* create new pipe for new connection */
mysql_rwlock_rdlock(&LOCK_named_pipe_full_access_group);
m_pipe_handle= CreateNamedPipe(
m_pipe_path_name, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED | WRITE_DAC,
PIPE_TYPE_BYTE | PIPE_READMODE_BYTE | PIPE_WAIT, PIPE_UNLIMITED_INSTANCES,
(int)global_system_variables.net_buffer_length,
(int)global_system_variables.net_buffer_length, NMPWAIT_USE_DEFAULT_WAIT,
mp_sa_pipe_security);
mysql_rwlock_unlock(&LOCK_named_pipe_full_access_group);
if (m_pipe_handle == INVALID_HANDLE_VALUE)
{
DWORD last_error_num= GetLastError();
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS |
FORMAT_MESSAGE_MAX_WIDTH_MASK,
NULL, last_error_num,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), last_error_msg,
sizeof(last_error_msg) / sizeof(TCHAR), NULL);
sql_print_error("Can't create new named pipe: %s", last_error_msg);
m_pipe_handle= hConnectedPipe;
return NULL; // We have to try again
}
Channel_info* channel_info= new (std::nothrow)
Channel_info_named_pipe(hConnectedPipe);
if (channel_info == NULL)
{
DisconnectNamedPipe(hConnectedPipe);
CloseHandle(hConnectedPipe);
return NULL;
}
return channel_info;
}
bool Named_pipe_listener::update_named_pipe_full_access_group(
const char *new_group_name)
{
SECURITY_ATTRIBUTES *p_new_sa= nullptr;
const char *perror= nullptr;
TCHAR last_error_msg[256];
// Set up security attributes to provide full access to the owner
// and minimal read/write access to others.
if (my_security_attr_create(&p_new_sa, &perror, NAMED_PIPE_OWNER_PERMISSIONS,
NAMED_PIPE_EVERYONE_PERMISSIONS) != 0)
{
sql_print_error("my_security_attr_create: %s", perror);
return true;
}
if (new_group_name && new_group_name[0] != '\0')
{
if (my_security_attr_add_rights_to_group(
p_new_sa, new_group_name,
NAMED_PIPE_FULL_ACCESS_GROUP_PERMISSIONS))
{
sql_print_error("my_security_attr_add_rights_to_group failed for group: %s",
new_group_name);
return false;
}
}
mp_sa_pipe_security= p_new_sa;
// Set the DACL for the existing "listener" named pipe instance...
if (m_pipe_handle != INVALID_HANDLE_VALUE) {
PACL pdacl= NULL;
BOOL dacl_present_in_descriptor= FALSE;
BOOL dacl_defaulted= FALSE;
if (!GetSecurityDescriptorDacl(p_new_sa->lpSecurityDescriptor,
&dacl_present_in_descriptor, &pdacl,
&dacl_defaulted) ||
!dacl_present_in_descriptor)
{
DWORD last_error_num= GetLastError();
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, last_error_num,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), last_error_msg,
sizeof(last_error_msg) / sizeof(TCHAR), NULL);
sql_print_error("GetSecurityDescriptorDacl failed: %s", last_error_msg);
return true;
}
DWORD res =
SetSecurityInfo(m_pipe_handle, SE_KERNEL_OBJECT,
DACL_SECURITY_INFORMATION, NULL, NULL, pdacl, NULL);
if (res != ERROR_SUCCESS)
{
char num_buff[20];
int10_to_str(res, num_buff, 10);
sql_print_error("SetSecurityInfo failed to update DACL on named pipe: %s", num_buff);
return true;
}
}
return false;
}
void Named_pipe_listener::close_listener()
{
if (m_pipe_handle == INVALID_HANDLE_VALUE)
return;
DBUG_PRINT("quit", ("Deintializing Named_pipe_connection_acceptor"));
/* Create connection to the handle named pipe handler to break the loop */
HANDLE temp;
if ((temp= CreateFile(m_pipe_path_name, NAMED_PIPE_EVERYONE_PERMISSIONS, 0,
NULL, OPEN_EXISTING, 0, NULL)) !=
INVALID_HANDLE_VALUE)
{
WaitNamedPipe(m_pipe_path_name, 1000);
DWORD dwMode= PIPE_READMODE_BYTE | PIPE_WAIT;
SetNamedPipeHandleState(temp, &dwMode, NULL, NULL);
CancelIo(temp);
DisconnectNamedPipe(temp);
CloseHandle(temp);
}
CloseHandle(m_connect_overlapped.hEvent);
my_security_attr_free(mp_sa_pipe_security);
mp_sa_pipe_security= nullptr;
}