gpt4 book ai didi

c++ -/gs 选项导致程序抛出异常

转载 作者:可可西里 更新时间:2023-11-01 07:59:25 31 4
gpt4 key购买 nike

最近,我一直在尝试用 C++ 编写一个与 MySQL 服务器通信的小测试程序。我目前正在使用 MySQL Connector/C++ 作为我的 API 来连接到我的数据库服务器。我花了很长时间才让它运行起来,因为 oracle/mysql 几乎没有关于如何在 Visual Studio 10+ 中使用连接器/c++ 的文档。

终于在一切正常后,应用程序尝试退出时似乎出现了一些问题。它抛出以下未处理的异常:

mysql2.exe 中 0x00C62291 处的未处理异常:堆栈 cookie 检测代码检测到基于堆栈的缓冲区溢出。

在研究错误之后,我发现这是由于“安全检查”选项(/gs 编译器选项)引起的。当我禁用此编译器选项时,应用程序会正常退出。

我觉得我不应该关闭它,因为它是 Visual Studio 2012(可能还有其他版本?)中的默认选项

我的问题是:

  • 为什么这个/gs 编译器选项会导致未处理的异常?
  • 关闭/gs 编译器选项安全吗?

这是未处理异常指向的一段代码(在文件中,名为:gs_report.c):

#if defined (_M_IX86) || defined (_M_X64)
if (IsProcessorFeaturePresent(PF_FASTFAIL_AVAILABLE))
#endif /* defined (_M_IX86) || defined (_M_X64) */
__fastfail(FAST_FAIL_STACK_COOKIE_CHECK_FAILURE);

这是我的应用程序代码:

/* Standard C++ includes */
#include <stdlib.h>
#include <iostream>

/*
Include directly the different
headers from cppconn/ and mysql_driver.h + mysql_util.h
(and mysql_connection.h). This will reduce your build time!
*/
#include "mysql_connection.h"
#include "mysql_driver.h"

#include <cppconn/driver.h>
#include <cppconn/exception.h>
#include <cppconn/resultset.h>
#include <cppconn/statement.h>
#include <cppconn/prepared_statement.h>

using namespace std;

int main(void)
{
cout << endl;
cout << "Let's have MySQL count from 10 to 1..." << endl;

try {
sql::Driver *driver;
sql::Connection *con;
sql::Statement *stmt;
sql::ResultSet *res;
sql::PreparedStatement *pstmt;

/* Create a connection */
driver = sql::mysql::get_driver_instance();
con = driver->connect("tcp://127.0.0.1:3306", "root", "MSxa5y");
/* Connect to the MySQL test database */
con->setSchema("test");

stmt = con->createStatement();
stmt->execute("DROP TABLE IF EXISTS test");
stmt->execute("CREATE TABLE test(id INT)");
delete stmt;

/* '?' is the supported placeholder syntax */
pstmt = con->prepareStatement("INSERT INTO test(id) VALUES (?)");
for (int i = 1; i <= 10; i++) {
pstmt->setInt(1, i);
pstmt->executeUpdate();
}
delete pstmt;

/* Select in ascending order */
pstmt = con->prepareStatement("SELECT id FROM test ORDER BY id ASC");
res = pstmt->executeQuery();

/* Fetch in reverse = descending order! */
res->afterLast();
while (res->previous())
cout << "\t... MySQL counts: " << res->getInt("id") << endl;
delete res;

delete pstmt;
delete con;

} catch (sql::SQLException &e) {
cout << "# ERR: SQLException in " << __FILE__;
cout << "() on line " << __LINE__ << endl;
cout << "# ERR: " << e.what();
cout << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
}

cout << endl;

return EXIT_SUCCESS;
}

最佳答案

/gs 选项允许运行时检测程序中的错误。去掉选项可以让程序不检测就退出,但是错误依旧。在您的代码或库中的某处,堆栈上的内存正在被覆盖。我会尝试对代码进行二进制搜索以查看导致错误的语句。您可能还希望始终检查所有数据库调用的返回值。

你绝对不应该禁用这个选项。这样做会隐藏真正的错误,并可能使您的程序容易受到黑客攻击。

关于c++ -/gs 选项导致程序抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13904734/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com