Codebase list mozc / debian/1.1.758.102-1 ipc / win32_ipc.cc
debian/1.1.758.102-1

Tree @debian/1.1.758.102-1 (Download .tar.gz)

win32_ipc.cc @debian/1.1.758.102-1raw · history · blame

  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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
// Copyright 2010-2011, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
//     * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

// skip all unless OS_WINDOWS
#ifdef OS_WINDOWS

#include "ipc/ipc.h"

#include <windows.h>
#include <string>
#include "base/base.h"
#include "base/const.h"
#include "base/mutex.h"
#include "base/singleton.h"
#include "base/util.h"
#include "ipc/ipc_path_manager.h"
#include "third_party/mozc/sandbox/security_attributes.h"

namespace mozc {
namespace {

typedef BOOL (WINAPI *FPGetNamedPipeServerProcessId)(HANDLE, PULONG);
FPGetNamedPipeServerProcessId g_get_named_pipe_server_process_id = NULL;

static once_t g_once = MOZC_ONCE_INIT;

void InitFPGetNamedPipeServerProcessId() {
  // We have to load the function pointer dynamically
  // as GetNamedPipeServerProcessId() is only available on Windows Vista.
  if (!Util::IsVistaOrLater()) {
    return;
  }

  VLOG(1) << "Initializing GetNamedPipeServerProcessId";
  // kernel32.dll must be loaded in client.
  const HMODULE lib = Util::GetSystemModuleHandle(L"kernel32.dll");
  if (lib == NULL) {
    LOG(ERROR) << "GetSystemModuleHandle for kernel32.dll failed.";
    return;
  }

  g_get_named_pipe_server_process_id =
      reinterpret_cast<FPGetNamedPipeServerProcessId>
      (::GetProcAddress(lib, "GetNamedPipeServerProcessId"));
}

class IPCClientMutex {
 public:
  IPCClientMutex() {
    // Make a kernel mutex object so that multiple ipc connections are
    // serialized here. In Windows, there is no useful way to serialize
    // the multiple connections to the single-thread named pipe server.
    // WaitForNamedPipe doesn't work for this propose as it just lets
    // clients know that the connection becomes "available" right now.
    // It doesn't mean that connection is available for the current
    /// thread. The "available" notification is sent to all waiting ipc
    // clients at the same time and only one client gets the connection.
    // This causes redundant and wasteful CreateFile calles.
    string mutex_name = kMutexPathPrefix;
    mutex_name += Util::GetUserSidAsString();
    mutex_name += ".ipc";
    wstring wmutex_name;
    Util::UTF8ToWide(mutex_name.c_str(), &wmutex_name);

    LPSECURITY_ATTRIBUTES security_attributes_ptr = NULL;
    SECURITY_ATTRIBUTES security_attributes;
    if (!sandbox::MakeSecurityAttributes(&security_attributes)) {
      LOG(ERROR) << "Cannot make SecurityAttributes";
    } else {
      security_attributes_ptr = &security_attributes;
    }

    // http://msdn.microsoft.com/en-us/library/ms682411(VS.85).aspx:
    // Two or more processes can call CreateMutex to create the same named
    // mutex. The first process actually creates the mutex, and subsequent
    // processes with sufficient access rights simply open a handle to
    // the existing mutex. This enables multiple processes to get handles
    // of the same mutex, while relieving the user of the responsibility
    // of ensuring that the creating process is started first.
    // When using this technique, you should set the
    // bInitialOwner flag to FALSE; otherwise, it can be difficult to be
    // certain which process has initial ownership.
    ipc_mutex_.reset(::CreateMutex(security_attributes_ptr,
                                   FALSE, wmutex_name.c_str()));

    if (ipc_mutex_.get() == NULL) {
      LOG(ERROR) << "CreateMutex failed: " << ::GetLastError();
      return;
    }

    // permit the access from a process runinning with low integrity level
    if (Util::IsVistaOrLater()) {
      sandbox::SetMandatoryLabelW(ipc_mutex_.get(),
                                  SE_KERNEL_OBJECT, L"NX", L"LW");
    }
  }

  virtual ~IPCClientMutex() {}

  HANDLE get() const {
    return ipc_mutex_.get();
  }

 private:
  ScopedHandle ipc_mutex_;
};

// RAII class for calling ReleaseMutex in destructor.
class ScopedReleaseMutex {
 public:
  ScopedReleaseMutex(HANDLE handle)
      : handle_(handle) {}

  virtual ~ScopedReleaseMutex() {
    if (NULL != handle_) {
      ::ReleaseMutex(handle_);
    }
  }

  HANDLE get() const { return handle_; }
 private:
  HANDLE handle_;
};

uint32 GetServerProcessId(HANDLE handle) {
  CallOnce(&g_once, &InitFPGetNamedPipeServerProcessId);

  if (g_get_named_pipe_server_process_id == NULL) {
    return static_cast<uint32>(0);   // must be Windows XP
  }

  ULONG pid = 0;
  if ((*g_get_named_pipe_server_process_id)(handle, &pid) == 0) {
    LOG(ERROR) << "GetNamedPipeServerProcessId failed: " << ::GetLastError();
    return static_cast<uint32>(-1);   // always deny the connection
  }

  VLOG(1) << "Got server ProcessID: " << pid;

  return static_cast<uint32>(pid);
}

void SafeCancelIO(HANDLE handle, OVERLAPPED *overlapped) {
  if(::CancelIo(handle)) {
    // wait for the cancel to complete
    // ignore the result, as we're exiting anyway
    DWORD size = 0;
    ::GetOverlappedResult(handle, overlapped, &size, TRUE);
  } else {
    LOG(WARNING) << "Failed to CancelIo: " << ::GetLastError();
  }
}

bool SendIPCMessage(HANDLE handle,
                    const char *buf, size_t buf_length, int timeout,
                    IPCErrorType *last_ipc_error) {
  if (buf_length == 0) {
    LOG(WARNING) << "buf length is 0";
    *last_ipc_error = IPC_UNKNOWN_ERROR;
    return false;
  }

  OVERLAPPED Overlapped;

  bool error = false;
  while (buf_length > 0) {
    ::ZeroMemory(&Overlapped, sizeof(Overlapped));
    if (!::WriteFile(handle, buf,
                     static_cast<DWORD>(buf_length), NULL, &Overlapped) &&
        ERROR_IO_PENDING != ::GetLastError()) {
      LOG(ERROR) << "WriteFile failed: " << ::GetLastError();
      *last_ipc_error = IPC_WRITE_ERROR;
      error = true;
      break;
    }

    if (WAIT_OBJECT_0 != ::WaitForSingleObject(handle, timeout)) {
      SafeCancelIO(handle, &Overlapped);
      LOG(WARNING) << "Write timeout: " << timeout;
      *last_ipc_error = IPC_TIMEOUT_ERROR;
      error = true;
      break;
    }

    DWORD size = 0;
    if (!::GetOverlappedResult(handle, &Overlapped, &size, FALSE)) {
      LOG(ERROR) << "GetOverlappedResult() failed: " << ::GetLastError();
      *last_ipc_error = IPC_UNKNOWN_ERROR;
      error = true;
      break;
    }
    buf_length -= size;
    buf += size;
  }

  return !error;
}

bool RecvIPCMessage(HANDLE handle, char *buf, size_t *buf_length, int timeout,
                    IPCErrorType *last_ipc_error) {
  if (*buf_length == 0) {
    LOG(WARNING) << "buf length is 0";
    *last_ipc_error = IPC_UNKNOWN_ERROR;
    return false;
  }

  OVERLAPPED Overlapped;
  ::ZeroMemory(&Overlapped, sizeof(Overlapped));

  if (!::ReadFile(handle, buf,
                  static_cast<DWORD>(*buf_length), NULL, &Overlapped) &&
      ERROR_IO_PENDING != ::GetLastError()) {
    LOG(ERROR) << "ReadFile() failed: " << ::GetLastError();
    *last_ipc_error = IPC_READ_ERROR;
    return false;
  }

  if (WAIT_OBJECT_0 != ::WaitForSingleObject(handle, timeout)) {
    SafeCancelIO(handle, &Overlapped);
    LOG(WARNING) << "Read timeout: " << timeout;
    *last_ipc_error = IPC_TIMEOUT_ERROR;
    return false;
  }

  DWORD size = 0;
  if (!::GetOverlappedResult(handle, &Overlapped, &size, FALSE)) {
    LOG(ERROR) << "GetOverlappedResult() failed: " << ::GetLastError();
    *last_ipc_error = IPC_UNKNOWN_ERROR;
    return false;
  }

  if (size <= 0) {
    LOG(WARNING) << "Received 0 result. ignored";
  }

  *buf_length = size;

  return true;
}
}  // namespace

IPCServer::IPCServer(const string &name,
                     int32 num_connections,
                     int32 timeout)
    : connected_(false),
      event_(::CreateEvent(NULL, TRUE, FALSE, NULL)),
      timeout_(timeout) {
  IPCPathManager *manager = IPCPathManager::GetIPCPathManager(name);
  string server_address;
  if (!manager->CreateNewPathName() ||
      !manager->GetPathName(&server_address)) {
    LOG(ERROR) << "Cannot make IPC path name";
    return;
  }

  SECURITY_ATTRIBUTES SecurityAttributes;
  if (!sandbox::MakeSecurityAttributes(&SecurityAttributes)) {
    LOG(ERROR) << "Cannot make SecurityAttributes";
    return;
  }

  // Create a named pipe.
  wstring wserver_address;
  Util::UTF8ToWide(server_address.c_str(), &wserver_address);
  HANDLE handle = ::CreateNamedPipe(wserver_address.c_str(),
                                    PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED |
                                    FILE_FLAG_FIRST_PIPE_INSTANCE,
                                    PIPE_TYPE_MESSAGE |
                                    PIPE_READMODE_MESSAGE |
                                    PIPE_WAIT,
                                    (num_connections <= 0 ?
                                     PIPE_UNLIMITED_INSTANCES : num_connections),
                                    sizeof(request_),
                                    sizeof(response_),
                                    0,
                                    &SecurityAttributes);

  if (INVALID_HANDLE_VALUE == handle) {
    LOG(FATAL) << "CreateNamedPipe failed" << ::GetLastError();
    return;
  }

  handle_.reset(handle);

  ::LocalFree(SecurityAttributes.lpSecurityDescriptor);

  if (!manager->SavePathName()) {
    LOG(ERROR) << "Cannot save IPC path name";
    return;
  }

  connected_ = true;
}

IPCServer::~IPCServer() {
  Terminate();
}

bool IPCServer::Connected() const {
  return connected_;
}

void IPCServer::Terminate() {
  if (server_thread_.get() == NULL) {
    return;
  }

  if (!server_thread_->IsRunning()) {
    return;
  }

  if (!::SetEvent(event_.get())) {
    LOG(ERROR) << "SetEvent failed";
  }

  // Close the named pipe.
  // This is a workaround for killing child thread
  if (server_thread_.get() != NULL) {
    server_thread_->Join();
    server_thread_->Terminate();
  }

  connected_ = false;
}

void IPCServer::Loop() {
  IPCErrorType last_ipc_error = IPC_NO_ERROR;

  while (connected_) {
    OVERLAPPED Overlapped;
    ::ZeroMemory(&Overlapped, sizeof(Overlapped));
    const HRESULT result = ::ConnectNamedPipe(handle_.get(), &Overlapped);
    // ConnectNamedPipe always return 0 with Overlapped IO
    CHECK(result == 0);

    DWORD size = 0;
    const DWORD last_error = ::GetLastError();
    // WaitForMultipleObjects returns the smallest index value of all the
    // signaled objects if bWaitAll parameter is FALSE.  Thus we should sort
    // the handle array by their priorities.
    HANDLE handles[2] = { event_.get(), handle_.get() };

    switch (last_error) {
      case ERROR_IO_PENDING:  // wait for incoming message
        switch (::WaitForMultipleObjects(2, handles, FALSE, INFINITE)) {
          case WAIT_OBJECT_0:
            LOG(WARNING) << "Recived Conrol event from other thread";
            SafeCancelIO(handle_.get(), &Overlapped);
            connected_ = false;
            return;
          case WAIT_OBJECT_0 + 1:
            break;
          default:
            LOG(FATAL) << "::WaitForMultipleObjects() failed: " << GetLastError();
            SafeCancelIO(handle_.get(), &Overlapped);
            return;
        }
        if (!::GetOverlappedResult(handle_.get(), &Overlapped, &size, FALSE)) {
          LOG(FATAL) << "::GetOverlappedResult() failed: " << GetLastError();
          return;
        }
        break;
      case ERROR_NO_DATA:  // client already closes the connection
        ::DisconnectNamedPipe(handle_.get());
        continue;
        break;
      case ERROR_PIPE_CONNECTED:  // client is sending requests
        break;
      default:
        LOG(FATAL) << "::ConnectNamedPipe() failed: " << GetLastError();
        break;
    }

    // Retrieve an incoming message.
    size_t request_size = sizeof(request_);
    if (RecvIPCMessage(handle_.get(), &request_[0], &request_size, timeout_,
                       &last_ipc_error)) {
      size_t response_size = sizeof(response_);
      if (!Process(&request_[0], request_size,
                   &response_[0], &response_size)) {
        connected_ = false;
      }

      // When Process() returns 0 result, force to call DisconnectNamedPipe()
      // instead of checking ACK message
      if (response_size == 0) {
        LOG(WARNING) << "Process() return 0 result";
        ::DisconnectNamedPipe(handle_.get());
        continue;
      }

      // Send a response
      SendIPCMessage(handle_.get(), &response_[0], response_size,
                     timeout_, &last_ipc_error);
    }

    // Special treatment for Windows per discussion with thatanaka:
    // It's hard to know that client has processed the server's response.
    // We will be able to call ::FlushFileHandles() here, but FlushFileHandles()
    // is blocked if client doesn't call ReadFile(). That means that
    // a malicious user can easily block the server not by calling ReadFile.
    // In order to know the transaction completes successfully, client needs to
    // send an ACK message to the server.

    // Wait ACK message from client for 0.1 second
    char ack_request[1] = {0};
    size_t ack_request_size = 1;
    static const int kAckTimeout = 100;
    if (!RecvIPCMessage(handle_.get(), ack_request,
                        &ack_request_size, kAckTimeout, &last_ipc_error)) {
      // This case happens
      // 1) Client did not send an ACK but close the handle.
      // 2) Client did not recive the server's response within timeout
      // In ether case, we can safly close the connection.
      LOG(WARNING) << "Client doesn't send ACK message";
    }

    // Can safely close the handle as server can recive an ACK message.
    ::DisconnectNamedPipe(handle_.get());
  }

  connected_ = false;
}

// old interface
IPCClient::IPCClient(const string &name)
    : connected_(false),
      ipc_path_manager_(NULL),
      last_ipc_error_(IPC_NO_ERROR) {
  Init(name, "");
}

IPCClient::IPCClient(const string &name, const string &server_path)
    : connected_(false),
      ipc_path_manager_(NULL),
      last_ipc_error_(IPC_NO_ERROR) {
  Init(name, server_path);
}

void IPCClient::Init(const string &name, const string &server_path) {
  last_ipc_error_ = IPC_NO_CONNECTION;

  // TODO(taku): ICPClientMutex doesn't take IPC path name into consideration.
  // Currently, it is not a critical problem, as we only have single
  // channel (session).
  ScopedReleaseMutex ipc_mutex(Singleton<IPCClientMutex>::get()->get());

  if (ipc_mutex.get() == NULL) {
    LOG(ERROR) << "IPC mutex is not available";
  } else {
    const int kMutexTimeout = 10 * 1000;  // wait at most 10sec.
    switch (::WaitForSingleObject(ipc_mutex.get(), kMutexTimeout)) {
      case WAIT_TIMEOUT:
        // TODO(taku): with suspend/resume, WaitForSingleObject may
        // return WAIT_TIMEOUT. We have to consider the case
        // in the future.
        LOG(ERROR) << "IPC client was not available even after "
                   << kMutexTimeout << " msec.";
        break;
      case WAIT_ABANDONED:
        DLOG(INFO) << "mutex object was removed";
        break;
      case WAIT_OBJECT_0:
        break;
      default:
        break;
    }
  }

  IPCPathManager *manager = IPCPathManager::GetIPCPathManager(name);
  if (manager == NULL) {
    LOG(ERROR) << "IPCPathManager::GetIPCPathManager failed";
    return;
  }

  ipc_path_manager_ = manager;

  // TODO(taku): enable them on Mac/Linux
#ifdef _DEBUG
  const size_t kMaxTrial = 256;
#else
  const size_t kMaxTrial = 2;
#endif

  for (size_t trial = 0; trial < kMaxTrial; ++trial) {
    string server_address;
    if (!manager->GetPathName(&server_address)) {
      continue;
    }
    wstring wserver_address;
    Util::UTF8ToWide(server_address.c_str(), &wserver_address);

    HANDLE handle = ::CreateFile(wserver_address.c_str(),
                                 GENERIC_READ | GENERIC_WRITE,
                                 0, NULL, OPEN_EXISTING,
                                 FILE_FLAG_OVERLAPPED |
                                 SECURITY_SQOS_PRESENT |
                                 SECURITY_IDENTIFICATION |
                                 SECURITY_EFFECTIVE_ONLY,
                                 NULL);

    if (INVALID_HANDLE_VALUE != handle) {
      handle_.reset(handle);
      if (!manager->IsValidServer(mozc::GetServerProcessId(handle_.get()),
                                  server_path)) {
        LOG(ERROR) << "Connecting to invalid server";
        last_ipc_error_ = IPC_INVALID_SERVER;
        return;
      }

      last_ipc_error_ = IPC_NO_ERROR;
      connected_ = true;
      return;
    } else {
      DLOG(ERROR) << "CreateFile failed: " << ::GetLastError();
    }

    if (ERROR_PIPE_BUSY != ::GetLastError()) {
      LOG(ERROR) << "Server is not running: " << ::GetLastError();
      manager->Clear();
      continue;
    }

    // wait for 10 second until server is ready
    // TODO(taku): control the timeout via flag.
#ifdef _DEBUG
    const int kNamedPipeTimeout = 100000;   // 100 sec
#else
    const int kNamedPipeTimeout = 10000;    // 10 sec
#endif
    DLOG(ERROR) << "Server is busy. waiting for "
                << kNamedPipeTimeout << " msec";
    if (!::WaitNamedPipe(wserver_address.c_str(),
                         kNamedPipeTimeout)) {
      LOG(ERROR) << "WaitNamedPipe failed: " << ::GetLastError();
      continue;   // go 2nd trial
    }
  }
}

IPCClient::~IPCClient() {}

bool IPCClient::Connected() const {
  return connected_;
}

bool IPCClient::Call(const char *request, size_t request_size,
                     char *response, size_t *response_size,
                     int32 timeout) {
  last_ipc_error_ = IPC_NO_ERROR;
  if (!connected_) {
    LOG(ERROR) << "IPCClient is not connected";
    last_ipc_error_ = IPC_NO_CONNECTION;
    return false;
  }

  if (!SendIPCMessage(handle_.get(), request, request_size, timeout,
                      &last_ipc_error_)) {
    LOG(ERROR) << "SendIPCMessage() failed";
    return false;
  }

  if (!RecvIPCMessage(handle_.get(), response, response_size, timeout,
                      &last_ipc_error_)) {
    LOG(ERROR) << "RecvIPCMessage() failed";
    return false;
  }

  // Client sends an ACK message to Server to notify that
  // client can read the message successfully.
  const char kAckMessage[1] = { 0 };
  IPCErrorType unused_error_type;
  SendIPCMessage(handle_.get(), kAckMessage, 1, timeout, &unused_error_type);

  return true;
}
}  // namespace mozc

#endif  // OS_WINDOWS