Postgres クライアント (Windows 7) からリモート Postgres サーバー (Ubuntu) - Postgres バージョン 9.5 への接続があります。
postgres クライアントは、組み込み sql ( libecpg.dll
) を使用する C プログラムです。
接続が確立された後にネットワーク ケーブルを引っ張ると、次のようになります。
...exe の 0x1000bca0 で未処理の例外: 0xC0000005: アクセス違反の読み取り場所 0x00000000
デバッガーのコール スタックでは、最後の 4 つのエントリは
libecpg.dll: libecpg.dll!100047f7(),
libecpg.dll!100041fd(),
libecpg.dll!10008bc8(),
libecpg.dll!10008431(), ....
さらに調査を行いました:
関数 fmtstr() でパラメータ値が NULL のためアクセス違反が発生する
static void
fmtstr(char *value, int leftjust, int minlen, int maxwidth, int pointflag, PrintfTarget *target)
{
int padlen,
vallen; /* amount to pad */
/*
* If a maxwidth (precision) is specified, we must not fetch more bytes
* than that.
*/
if (pointflag)
vallen = pg_strnlen(value, maxwidth);
else
vallen = strlen(value); // value == NULL
...
パラメータ値は、関数 dopr() の va_arg() 呼び出しから入力されます。
static void dopr(PrintfTarget *target, const char *format, va_list args)
...
case 's':
if (!have_star)
{
if (pointflag)
precision = accum;
else
fieldwidth = accum;
}
if (have_dollar)
strvalue = argvalues[fmtpos].cptr;
else
strvalue = va_arg(args, char *);
fmtstr(strvalue, leftjust, fieldwidth, precision, pointflag,
target);
break;
...
アクセス違反は、ネットワーク ケーブルを抜いた場合にのみ発生し、ネットワークを非アクティブ化した場合には発生しません。
関数 ecpg_execute() では:
if (stmt->statement_type == ECPGst_execute) {
...
}
else
{
if (stmt->nparams == 0)
{
**stmt->results** = PQexec(stmt->connection->connection, stmt->command);
ecpg_log("ecpg_execute on line %d: using PQexec\n", stmt->lineno);
}
else
{
stmt->results = PQexecParams(stmt->connection->connection, stmt->command, stmt->nparams, NULL, (const char *const *) stmt->paramvalues, NULL, NULL, 0);
...
}
ネットワークケーブルを引っ張るときstmt->results is not NULL
ネットワークを非アクティブ化する場合stmt->results は NULL