不确定为什么我会收到 undefined reference to gss_str_to_oid 错误
Not sure why I am getting an undefine refence to gss_str_to_oid error
我是第一次在 C 中使用 gssapi。我正在尝试在 Oracle 文档 http://docs.oracle.com/cd/E19683-01/816-1331/sampleprogs-1/index.html 上重建示例。
在我的 .c 文件中,我调用 gss_str_to_oid(&min_stat, &tok, oid);
并得到一个未定义的引用错误。我在 .c 文件的顶部包含了 #include "gssapi.h"
。在 gssapi.h 中有一个函数调用
OM_uint32 KRB5_CALLCONV
gss_str_to_oid(
OM_uint32 *, /* minor_status */
gss_buffer_t, /* oid_str */
gss_OID *);
那我做错了什么?我认为如果你包含 #include "gssapi.h"
它会让我访问 gssapi 中的函数。这两个文件都在我的 src 文件夹中。那我做错了什么。我正在使用 eclipse,从我的 makefile 中的 targets 来看,它说的都是:GSS-API。
我在下面包含了我的大部分代码。
主要
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <error.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "gssapi.h"
#include "gssapi_ext.h"
#include "gss-misc.h"
/* global mech oid needed by display status, and acquire cred */
FILE *display_file;
gss_OID g_mechOid = GSS_C_NULL_OID;
void usage()
{
fprintf(stderr, "Usage: gss-client [-port port] [-d]"
" [-mech mechOid] host service msg\n");
exit(1);
}
static void parse_oid(char *mechanism, gss_OID *oid)
{
char *mechstr = 0, *cp;
gss_buffer_desc tok;
OM_uint32 maj_stat, min_stat;
if (isdigit(mechanism[0])) {
mechstr = malloc(strlen(mechanism)+5);
if (!mechstr) {
printf("Couldn't allocate mechanism scratch!\n");
return;
}
sprintf(mechstr, "{ %s }", mechanism);
for (cp = mechstr; *cp; cp++)
if (*cp == '.')
*cp = ' ';
tok.value = mechstr;
} else
tok.value = mechanism;
tok.length = strlen(tok.value);
maj_stat = gss_str_to_oid(&min_stat, &tok, oid);
if (maj_stat != GSS_S_COMPLETE) {
// display_status("str_to_oid", maj_stat, min_stat);
return;
}
if (mechstr)
free(mechstr);
}
int main(argc, argv)
int argc;
char **argv;
{
/* char *service_name, *hostname, *msg; */
char *msg;
char service_name[128];
char hostname[128];
char *mechanism = 0;
u_short port = 4444;
int use_file = 0;
OM_uint32 deleg_flag = 0, min_stat;
display_file = stdout;
/* Parse arguments. */
argc--; argv++;
while (argc) {
if (strcmp(*argv, "-port") == 0) {
argc--; argv++;
if (!argc) usage();
port = atoi(*argv);
} else if (strcmp(*argv, "-mech") == 0) {
argc--; argv++;
if (!argc) usage();
mechanism = *argv;
} else if (strcmp(*argv, "-d") == 0) {
deleg_flag = GSS_C_DELEG_FLAG;
} else if (strcmp(*argv, "-f") == 0) {
use_file = 1;
} else
break;
argc--; argv++;
}
if (argc != 3)
usage();
if (argc > 1) {
strcpy(hostname, argv[0]);
} else if (gethostname(hostname, sizeof(hostname)) == -1) {
perror("gethostname");
exit(1);
}
if (argc > 2) {
strcpy(service_name, argv[1]);
strcat(service_name, "@");
strcat(service_name, hostname);
}
msg = argv[2];
if (mechanism)
parse_oid(mechanism, &g_mechOid);
/* if (call_server(hostname, port, g_mechOid, service_name,
deleg_flag, msg, use_file) < 0)
exit(1);*/
/*
if (g_mechOid != GSS_C_NULL_OID)
(void) gss_release_oid(&min_stat, &gmechOid);
*/
return 0;
}
gssapi.h
/* New for V2 */
OM_uint32 KRB5_CALLCONV
gss_str_to_oid(
OM_uint32 *, /* minor_status */
gss_buffer_t, /* oid_str */
gss_OID *);
您不能将 header 动态或静态地包含到 link 库中。是否有一些 dll、lib、so 等需要添加到您的项目中?您的问题中没有显示 makefile 或您的项目设置;我想你不会得到一个非常明确的答案。仅包含 header 文件是不够的,未定义不是编译错误而是 linker 错误,这意味着它缺少引用,因为您没有 link 将库添加到您的程序。
C 和 C++ 中的 GSSAPI 文档不是最好的。原来你需要下载gssapi。这里是linkhttp://www.gnu.org/software/gss/manual/gss.html。
正在下载安装中
所以,我遇到了同样的问题。
我发现您需要在项目中添加一些 .so 文件。
以防万一检查您的系统是否有 libkrb5-dev 数据包(如果您有 gssapi.h,它很可能已经安装)。
所需文件存储在文件夹“/usr/lib/x86_64-linux-gnu/”(在我的例子中是 debian)中:
我在 QT .pro 文件中添加了 libkdb5.so 和 libgssapi_krb5.so,一切正常:
LIBS += -lkdb5
LIBS += -lgssapi_krb5
如果您需要查找该文件,请使用以下命令:
apt-file update
dpkg -L libkrb5-dev
我是第一次在 C 中使用 gssapi。我正在尝试在 Oracle 文档 http://docs.oracle.com/cd/E19683-01/816-1331/sampleprogs-1/index.html 上重建示例。
在我的 .c 文件中,我调用 gss_str_to_oid(&min_stat, &tok, oid);
并得到一个未定义的引用错误。我在 .c 文件的顶部包含了 #include "gssapi.h"
。在 gssapi.h 中有一个函数调用
OM_uint32 KRB5_CALLCONV
gss_str_to_oid(
OM_uint32 *, /* minor_status */
gss_buffer_t, /* oid_str */
gss_OID *);
那我做错了什么?我认为如果你包含 #include "gssapi.h"
它会让我访问 gssapi 中的函数。这两个文件都在我的 src 文件夹中。那我做错了什么。我正在使用 eclipse,从我的 makefile 中的 targets 来看,它说的都是:GSS-API。
我在下面包含了我的大部分代码。
主要
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <error.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "gssapi.h"
#include "gssapi_ext.h"
#include "gss-misc.h"
/* global mech oid needed by display status, and acquire cred */
FILE *display_file;
gss_OID g_mechOid = GSS_C_NULL_OID;
void usage()
{
fprintf(stderr, "Usage: gss-client [-port port] [-d]"
" [-mech mechOid] host service msg\n");
exit(1);
}
static void parse_oid(char *mechanism, gss_OID *oid)
{
char *mechstr = 0, *cp;
gss_buffer_desc tok;
OM_uint32 maj_stat, min_stat;
if (isdigit(mechanism[0])) {
mechstr = malloc(strlen(mechanism)+5);
if (!mechstr) {
printf("Couldn't allocate mechanism scratch!\n");
return;
}
sprintf(mechstr, "{ %s }", mechanism);
for (cp = mechstr; *cp; cp++)
if (*cp == '.')
*cp = ' ';
tok.value = mechstr;
} else
tok.value = mechanism;
tok.length = strlen(tok.value);
maj_stat = gss_str_to_oid(&min_stat, &tok, oid);
if (maj_stat != GSS_S_COMPLETE) {
// display_status("str_to_oid", maj_stat, min_stat);
return;
}
if (mechstr)
free(mechstr);
}
int main(argc, argv)
int argc;
char **argv;
{
/* char *service_name, *hostname, *msg; */
char *msg;
char service_name[128];
char hostname[128];
char *mechanism = 0;
u_short port = 4444;
int use_file = 0;
OM_uint32 deleg_flag = 0, min_stat;
display_file = stdout;
/* Parse arguments. */
argc--; argv++;
while (argc) {
if (strcmp(*argv, "-port") == 0) {
argc--; argv++;
if (!argc) usage();
port = atoi(*argv);
} else if (strcmp(*argv, "-mech") == 0) {
argc--; argv++;
if (!argc) usage();
mechanism = *argv;
} else if (strcmp(*argv, "-d") == 0) {
deleg_flag = GSS_C_DELEG_FLAG;
} else if (strcmp(*argv, "-f") == 0) {
use_file = 1;
} else
break;
argc--; argv++;
}
if (argc != 3)
usage();
if (argc > 1) {
strcpy(hostname, argv[0]);
} else if (gethostname(hostname, sizeof(hostname)) == -1) {
perror("gethostname");
exit(1);
}
if (argc > 2) {
strcpy(service_name, argv[1]);
strcat(service_name, "@");
strcat(service_name, hostname);
}
msg = argv[2];
if (mechanism)
parse_oid(mechanism, &g_mechOid);
/* if (call_server(hostname, port, g_mechOid, service_name,
deleg_flag, msg, use_file) < 0)
exit(1);*/
/*
if (g_mechOid != GSS_C_NULL_OID)
(void) gss_release_oid(&min_stat, &gmechOid);
*/
return 0;
}
gssapi.h
/* New for V2 */
OM_uint32 KRB5_CALLCONV
gss_str_to_oid(
OM_uint32 *, /* minor_status */
gss_buffer_t, /* oid_str */
gss_OID *);
您不能将 header 动态或静态地包含到 link 库中。是否有一些 dll、lib、so 等需要添加到您的项目中?您的问题中没有显示 makefile 或您的项目设置;我想你不会得到一个非常明确的答案。仅包含 header 文件是不够的,未定义不是编译错误而是 linker 错误,这意味着它缺少引用,因为您没有 link 将库添加到您的程序。
C 和 C++ 中的 GSSAPI 文档不是最好的。原来你需要下载gssapi。这里是linkhttp://www.gnu.org/software/gss/manual/gss.html。 正在下载安装中
所以,我遇到了同样的问题。 我发现您需要在项目中添加一些 .so 文件。
以防万一检查您的系统是否有 libkrb5-dev 数据包(如果您有 gssapi.h,它很可能已经安装)。
所需文件存储在文件夹“/usr/lib/x86_64-linux-gnu/”(在我的例子中是 debian)中:
我在 QT .pro 文件中添加了 libkdb5.so 和 libgssapi_krb5.so,一切正常:
LIBS += -lkdb5
LIBS += -lgssapi_krb5
如果您需要查找该文件,请使用以下命令:
apt-file update
dpkg -L libkrb5-dev