C# ラッパー ( clrzmq ) によって呼び出されるネイティブ ライブラリ ( libzmq ) を使用しています。IIS Web アプリケーション (IIS 7.5、Windows Server 2008 R2、ASP.NET MVC 3) によって使用されています。
ネイティブ ライブラリはCreateEvent()を呼び出しますが、ApplicationPoolIdentity を使用して Web アプリケーションを実行すると失敗します。代わりに LocalSystem アカウントを使用すると機能しますが、これは避けたいと思います。
イベント名の「Global\」プレフィックスの有無にかかわらず試しました。
ApplicationPoolIdentity に必要なアクセス許可を与える方法はありますか?
関連するコードのスニペットは次のとおりです。
// Make the following critical section accessible to everyone.
SECURITY_ATTRIBUTES sa = {0};
sa.nLength = sizeof (sa);
sa.bInheritHandle = FALSE;
SECURITY_DESCRIPTOR sd;
BOOL ok = InitializeSecurityDescriptor (&sd, SECURITY_DESCRIPTOR_REVISION);
win_assert (ok);
ok = SetSecurityDescriptorDacl(&sd, TRUE, (PACL) NULL, FALSE);
win_assert (ok);
sa.lpSecurityDescriptor = &sd;
// This function has to be in a system-wide critical section so that
// two instances of the library don't accidentally create signaler
// crossing the process boundary.
HANDLE sync = CreateEvent (&sa, FALSE, TRUE,
"Global\\zmq-signaler-port-sync");
win_assert (sync != NULL);
sync が null であるため、最後の行で失敗します。
参考のため:
// Provides convenient way to check GetLastError-style errors on Windows.
#define win_assert(x) \
do {\
if (unlikely (!(x))) {\
char errstr [256];\
zmq::win_error (errstr, 256);\
fprintf (stderr, "Assertion failed: %s (%s:%d)\n", errstr, \
__FILE__, __LINE__);\
zmq::zmq_abort (errstr);\
}\
} while (false)
#endif