사용자 공간에서도 볼수 있는 함수를 glibc 에 어떻게 추가 할수 있는지요?

bily의 이미지

안녕하세요. 저기 아래아래 glibc에 변수 추가 질문 올리고, 고마우신 고수님의 도움을 받아, 변수 추가 하는건 알았습니다.

이제 함수를 추가해 보려는데, 쉽지 않네요.

test_func() 라는 함수를 pthread_mutex_lock.c 파일 내에, 새로 만들어서, 뮤텍스 관련해서 수정을 해보려고 합니다. 그래서

pthread_mutex_lock 를 grep 해서, 선언과 관련이 되어있다고 싶은 똑같이 카피 했습니다.

대략 위에 부분을 비슷하게 카피해서 따라서 선언을 해주고, 컴파일 시에 에러가 나는 부분은 일단 주석 처리하고 넘어 갔습니다.

init.c:101: .ptr_pthread_mutex_lock = INTUSE(__pthread_mutex_lock),

init.c:375: GL(dl_rtld_lock_recursive) = (void *) INTUSE (__pthread_mutex_lock);

init.c:380: INTUSE (__pthread_mutex_lock) (&GL(dl_load_lock).mutex);

pthread_create.c:600:PTHREAD_STATIC_FN_REQUIRE (pthread_mutex_lock)

pthread_mutex_lock.c:717:strong_alias (__pthread_mutex_lock, pthread_mutex_lock)

pthreadP.h:436:extern int __pthread_mutex_lock (pthread_mutex_t *__mutex);

pthreadP.h:437:extern int __pthread_mutex_lock_internal (pthread_mutex_t *__mutex)

sysdeps/pthread/pthread.h:732:extern int pthread_mutex_lock (pthread_mutex_t *__mutex)

/nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h

요약 드리면, 테스트 함수의 구현은 pthread_mutex_lock.c에 했으며, 선언은 /nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h 파일에서

extern int test_func() 로 하였습니다. 여기에 한 이유는, 스레드 프로그래밍에서 를 따라가 보니, pthread_mutex_t 가 선언된 곳이 여기여서 입니다.

..

그리고 테스트를 해보니, 기존에 있는 함수에서 콜을 하면 반응을 하는데, 사용자 프로그램에서는 다음과 같이 에러가 발생합니다.

test/example.c:106: undefined reference to 'test_func'

대체, 어떻게 사용자 프로그램에서 pthread_mutex_lock() 처럼 자유자재로 불러 쓰게 할수 있을까요?

구글에서 "add a new function in glibc" 로 찾아보고, GNU 사이트를 돌아 다녀 봐도, 찾지 못했습니다.

그냥 라이브러리로 만들어도 되겠지만, glibc에 넣어 보고 싶습니다.

선배님들의 조언 부탁드립니다.

Necromancer의 이미지

undefined references to .... 는 링커쪽 에러입니다.

아마 헤더파일에만 선언했고, 실제 라이브러리 파일에는 해당 함수가 들어있는 코드가 없다는 뜻이 되겠네요.
안 넣었다면 라이브러리를 재컴파일해서 빌드하셔야 할꺼고,
넣었마뎐 libc.a/libc.so 등이 아닌 다른 곳에 있는지 확인해서 추가해주셔야 하고요 (-L, -l 사용)

Written By the Black Knight of Destruction

Written By the Black Knight of Destruction

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.