undefined reference to `__ns_initparse' 에러가 발생합니다.

익명 사용자의 이미지

c를 시작한지 얼마안된 초보입니다.

네임서버에 질의하여 MX레코드를 출력하고자합니다.

CentOS release 6.10 에서는 컴파일 되어 정상적인 결과를 출력했는데,

CentOS release 5.4 에서는 아래와 같은 에러가 발생됩니다.

-----------------------------------------------------------------
# gcc -lresolv mx_01.c
/tmp/cc4DM9Nc.o: In function `main':
mx_01.c:(.text+0x4e): undefined reference to `__ns_initparse'
mx_01.c:(.text+0x7f): undefined reference to `__ns_parserr'
mx_01.c:(.text+0xac): undefined reference to `__ns_sprintrr'
collect2: ld returned 1 exit status
------------------------------------------------------------------

/*
MX 레코드 반환
 
gcc -lresolv mx_01.c
*/
 
 
 
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <netinet/in.h>
#include <resolv.h>
#include <netdb.h>
#include <arpa/nameser.h> 
 
 
int main (int argc, char *argv[])
{
	unsigned char maAnswer[PACKETSZ];
	char dispbuf[PACKETSZ];
	ns_msg msg;
	ns_rr rr;
	int i, l, nAnswerLen;
 
 
	// MX RECORD
	nAnswerLen = res_query("naver.com", ns_c_any, ns_t_mx, maAnswer, sizeof(maAnswer));
 
	ns_initparse(maAnswer, nAnswerLen, &msg);
	l = ns_msg_count(msg, ns_s_an);
	for (i = 0; i < l; i++)
	{
		ns_parserr(&msg, ns_s_an, i, &rr);
		ns_sprintrr(&msg, &rr, NULL, NULL, dispbuf, sizeof(dispbuf));
		printf ("%s\n", dispbuf);
	}
 
 
	return 0;
}
김정균의 이미지

centos 5 glibc의 libresolv.so 에는 ns_initparse 가 없네요. visivility hidden 상태의 __ns_initparse 만 존재하고 ns_initparse 가 없습니다.

Centos 5 에서도 동일하게 빌드를 하셔야 한다면 ns_initparse 를 구현 하셔야 겠네요 :)

libresolv-2.5.so 는 Centos 5의 마지막 glibc 에 있는 것이고, libresolv-2.12.so 는 CentOS 6의 마지막 glibc 에 포함되어 있는 것입니다.

[user@host lib64]$ nm libresolv-2.5.so | grep ns_initparse
000000000000ab90 t __ns_initparse
[user@host lib64]$ nm /lib64/libresolv-2.12.so | grep ns_initparse
000000000000dc90 t __GI_ns_initparse
000000000000dc90 T ns_initparse

symbol type에서 small t 와 large T의 차이는 https://stackoverflow.com/questions/37531846/nm-symbol-output-t-vs-t-in-a-shared-so-library 를 참고 하세요.

익명 사용자의 이미지

여담으로 CentOS 5는 지원이 중단되었습니다. 반드시 써야만 할 이유가 없다면 최신 버전을 사용하는 것을 권장합니다.

https://www.centos.org/forums/viewtopic.php?t=57398

초보자입니다.의 이미지

답변 감사합니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.