문자열을 다룰때 메모리 오버플로 방지하기 위해 snprintf를 이용해서 만든 소스인데... 좀 불안합니다. 문제없는지 사소한 의견이라도 부탁드립니다.

sia79의 이미지

	char Message_buf[11] = { } ;
	char* OutputMessage = Message_buf;
	int OutputMessage_size = sizeof( Message_buf ) ;
 
	...
 
	MessageSize = snprintf( OutputMessage, OutputMessage_size, "TEST Message = %s", Message ) ;
	MessageSize++;
 
	if( MessageSize > OutputMessage_size ) {
		OutputMessage = (char*)malloc( sizeof(char) * MessageSize ) ;
		memset( OutputMessage, 0x00, MessageSize ) ;
		snprintf( OutputMessage, MessageSize, "TEST Message = %s", Message ) ;
	}
 
        printf("%s", OutputMessage ) ;
 
        ...
 
        free(OutputMessage) ;
 
        ...

Message가 이미 11자를 넘어버린 상황에서 위 코드에 문제가 없는지 알려주십시요...
제 생각에는 문제가 없다고 생각했지만,
snprintf( OutputMessage, OutputMessage_size, "TEST Message = %s", Message ) ; 이부분에서...
이미 넘쳐버린 문자열을 snprintf가 어떻게 처리해주는지 알고싶습니다.

cppig1995의 이미지

아마도 잘릴겁니다. 길이를 0으로 주면 필요한 버퍼크기를 얻을수 있습니다.
------------------------------------------------------
In simplexitate est opportunitas. --cppig1995
[낡배밀] 낡은 리눅스 배포판을 밀어내야 한다고 생각합니다.

Real programmers /* don't */ comment their code.
If it was hard to write, it should be /* hard to */ read.

sia79의 이미지

0을 넣나(어떻게 보면 이것도 이미 버퍼가 오버된 상태로 볼 수도...),
11(지금의 버퍼크기)을 넣나 같다고 생각하고 있는게 잘못된 것인지가 궁금합니다.
0,11을 넣어도 snprintf의 반환값은 같더군요. (찍어낸 갯수)

혹시 snprintf에서 0의 값을 받을때는 특정한 정의가 있다면 제 생각이 잘못되었겠죠.

powerson의 이미지


witwiz79 wrote:

free(OutputMessage) ;

딴지는 아니고요. 궁금해서 물어보는 겁니다. MessageSize가 Output_Message_Size보다 작다면 free 콜에서 문제가 발생할 거 같습니다만..
혹 중간 코드에서 따로 뭐 처리하는게 있으신건지 궁금해서 올려봅니다. ^^

------------------------------------------------------
아직은 젊다. 모든 것을 할 수 있는 나이란 말이지.

------------------------------------------------------
아직은 젊다. 모든 것을 할 수 있는 나이란 말이지.

sia79의 이미지

아, 중간 코드에 플래그가 하나 있어서 malloc부분으로 들어가버리면 ON을 주어서 free할때 이것을 보고 판단합니다.
코드를 너무 간추려서 미처 못 넣은 줄 몰랐습니다.

댓글 달기

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