u_int32_t TC_ServerInitConnect( TC_Connection *cs );
u_int32_t TC_ServerConnect( TC_Connection *cs, int timeout );
u_int32_t TC_Send( TC_Connection *cs );
-u_int32_t TC_Read( TC_Connection *cs );
-u_int32_t TC_Talk( TC_Connection *cs );
+u_int32_t TC_Read( TC_Connection *cs, size_t maxsize );
+u_int32_t TC_Talk( TC_Connection *cs, size_t maxsize );
void TC_FreeConnection( TC_Connection *cs );
int TC_ReadyIO( TC_Connection **cs, int number, int timeout );
}
u_int32_t
-TC_Read( TC_Connection *cs ) {
+TC_Read( TC_Connection *cs, size_t maxsize ) {
int sz, totalread = -1, toread=0, alreadyread;
if ( cs->state == CS_ERROR )
resizeCS(cs, sizeof(u_int32_t));
} else {
totalread = *(u_int32_t*)(cs->buf);
+ if ( maxsize > 0 && totalread > maxsize )
+ {
+ tlog(TL_ALARM,"TC_Read: message size (%d b) is greater than max allowed (%d b)", totalread, maxsize);
+ cs->state = CS_ERROR;
+ return CS_ERROR;
+ }
toread = totalread - alreadyread;
if ( toread == 0 ) {
cs->state = CS_FINISHREAD;
}
u_int32_t
-TC_Talk( TC_Connection *cs ) {
+TC_Talk( TC_Connection *cs, size_t maxsize ) {
if ( cs->state==CS_NOTINITED )
TC_ServerInitConnect( cs );
cs->ptr = cs->buf;
while( cs->state != CS_FINISHREAD ) {
while( !TC_ReadyIO( &cs, 1, 100) );
- if ( TC_Read(cs) == CS_ERROR ) return CS_ERROR;
+ if ( TC_Read(cs, maxsize) == CS_ERROR ) return CS_ERROR;
}
return CS_OK;