libclamav/line.c
2422837e
 /*
  *  Copyright (C) 2004 Nigel Horne <njh@bandsman.co.uk>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  *
  * $Log: line.c,v $
f4ff13a5
  * Revision 1.9  2005/03/10 08:53:33  nigelhorne
  * Tidy
  *
933dc055
  * Revision 1.8  2005/03/01 11:38:11  nigelhorne
  * Fix typo
  *
15b5ca87
  * Revision 1.7  2004/12/08 20:07:23  nigelhorne
  * Fix compilation error on Solaris
  *
e24738dc
  * Revision 1.6  2004/10/14 17:45:55  nigelhorne
  * Try to reclaim some memory if it becomes low when decoding
  *
c1e96196
  * Revision 1.5  2004/09/30 08:58:56  nigelhorne
  * Remove empty lines
  *
0b08b624
  * Revision 1.4  2004/09/21 14:55:26  nigelhorne
  * Handle blank lines in text/plain messages
  *
8807fd22
  * Revision 1.3  2004/08/25 12:30:36  nigelhorne
  * Use memcpy rather than strcpy
  *
de617e3e
  * Revision 1.2  2004/08/21 11:57:57  nigelhorne
  * Use line.[ch]
  *
2422837e
  * Revision 1.1  2004/08/20 11:58:20  nigelhorne
  * First draft
  *
  */
 
f4ff13a5
 static	char	const	rcsid[] = "$Id: line.c,v 1.9 2005/03/10 08:53:33 nigelhorne Exp $";
2422837e
 
 #if HAVE_CONFIG_H
 #include "clamav-config.h"
 #endif
 
15b5ca87
 #ifndef	CL_DEBUG
 #define	NDEBUG	/* map CLAMAV debug onto standard */
 #endif
 
2422837e
 #include <stdio.h>
 #include <string.h>
0b08b624
 #include <assert.h>
2422837e
 
 #include "line.h"
 #include "others.h"
 
de617e3e
 #ifdef	OLD
2422837e
 line_t *
 lineCreate(const char *data)
 {
933dc055
 	line_t *ret = (line_t *)cli_malloc(sizeof(struct line));
2422837e
 
 	if(ret == NULL)
 		return NULL;
 
de617e3e
 	ret->l_str = strdup(data);
 	if(ret->l_str == NULL) {
2422837e
 		free(ret);
 		return NULL;
 	}
 	ret->l_refs = 1;
 
 	return ret;
 }
 
 line_t *
 lineLink(line_t *line)
 {
 	line->l_refs++;
 	return line;
 }
 
 line_t *
 lineUnlink(line_t *line)
 {
de617e3e
 	/*printf("%d:\n\t'%s'\n", line->l_refs, line->l_str);*/
 
2422837e
 	if(--line->l_refs == 0) {
de617e3e
 		free(line->l_str);
 		free(line);
 		return NULL;
 	}
 	return line;
 }
 
 const char *
 lineGetData(const line_t *line)
 {
 	return line ? line->l_str : NULL;
 }
 #else
 line_t *
 lineCreate(const char *data)
 {
8807fd22
 	const size_t size = strlen(data);
 	line_t *ret = (line_t *)cli_malloc(size + 2);
de617e3e
 
 	if(ret == NULL)
f4ff13a5
 		return (line_t *)NULL;
de617e3e
 
 	ret[0] = (char)1;
8807fd22
 	/*strcpy(&ret[1], data);*/
 	memcpy(&ret[1], data, size);
 	ret[size + 1] = '\0';
de617e3e
 
 	return ret;
 }
 
 line_t *
 lineLink(line_t *line)
 {
0b08b624
 	assert(line != NULL);
f4ff13a5
 	if((unsigned char)line[0] == (unsigned char)255) {
c1e96196
 		cli_dbgmsg("lineLink: linkcount too large (%s)\n", lineGetData(line));
 		return lineCreate(lineGetData(line));
de617e3e
 	}
 	line[0]++;
c1e96196
 	/*printf("%d:\n\t'%s'\n", (int)line[0], &line[1]);*/
de617e3e
 	return line;
 }
 
 line_t *
 lineUnlink(line_t *line)
 {
 	/*printf("%d:\n\t'%s'\n", (int)line[0], &line[1]);*/
 
 	if(--line[0] == 0) {
2422837e
 		free(line);
 		return NULL;
 	}
 	return line;
 }
 
 const char *
 lineGetData(const line_t *line)
 {
de617e3e
 	return line ? &line[1] : NULL;
2422837e
 }
e24738dc
 
 unsigned char
 lineGetRefCount(const line_t *line)
 {
f4ff13a5
 	return (unsigned char)line[0];
e24738dc
 }
de617e3e
 #endif