2015-11-10 04:37:11 +03:00
/*
* Copyright ( C ) 2015 Red Hat , Inc . All rights reserved .
*
* This file is part of LVM2 .
*
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
* of the GNU General Public License v .2 .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software Foundation ,
2016-01-21 13:49:46 +03:00
* Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2015-11-10 04:37:11 +03:00
*/
2015-11-12 00:03:42 +03:00
/*
* Coverity usage :
*
* translate model into xml
* cov - make - library - of coverity_model . xml coverity_model . c
*
* compile ( using outdir ' cov ' ) :
* cov - build - - dir = cov make CC = gcc
*
2024-08-30 00:05:41 +03:00
* analyze ( aggressively , using ' cov ' )
2015-11-12 00:03:42 +03:00
* cov - analyze - - dir cov - - wait - for - license - - hfa - - concurrency - - enable - fnptr - - enable - constraint - fpp - - security - - all - - aggressiveness - level = high - - field - offset - escape - - user - model - file = coverity / coverity_model . xml
*
* generate html output ( to ' html ' from ' cov ' ) :
* cov - format - errors - - dir cov - - html - output html
*/
struct lv_segment ;
2015-11-13 22:11:52 +03:00
struct logical_volume ;
2015-11-12 00:03:42 +03:00
struct lv_segment * first_seg ( const struct logical_volume * lv )
{
2015-11-13 22:11:52 +03:00
return ( ( struct lv_segment * * ) lv ) [ 0 ] ;
2015-11-12 00:03:42 +03:00
}
struct lv_segment * last_seg ( const struct logical_volume * lv )
{
2015-11-13 22:11:52 +03:00
return ( ( struct lv_segment * * ) lv ) [ 0 ] ;
2015-11-12 00:03:42 +03:00
}
2017-06-27 10:23:22 +03:00
const char * find_config_tree_str ( struct cmd_context * cmd , int id , struct profile * profile )
{
return " STRING " ;
}
2020-09-12 10:45:52 +03:00
/*
2017-06-27 10:23:22 +03:00
struct logical_volume * origin_from_cow ( const struct logical_volume * lv )
{
if ( lv )
return lv ;
__coverity_panic__ ( ) ;
}
2020-09-12 10:45:52 +03:00
*/
2017-06-27 10:23:22 +03:00
2015-11-12 00:03:42 +03:00
/* simple_memccpy() from glibc */
void * memccpy ( void * dest , const void * src , int c , size_t n )
{
const char * s = src ;
char * d = dest ;
while ( n - - > 0 )
if ( ( * d + + = * s + + ) = = ( char ) c )
return d ;
return 0 ;
}
2015-11-13 22:11:52 +03:00
/*
2024-08-30 00:05:41 +03:00
* 2 lines below needs to be placed in coverity / config / user_nodefs . h
2015-11-13 22:11:52 +03:00
* Not sure about any other way .
* Without them , coverity shows warning since x86 system header files
* are using inline assembly to reset fdset
*/
//#nodef FD_ZERO model_FD_ZERO
//void model_FD_ZERO(void *fdset);
void model_FD_ZERO ( void * fdset )
{
unsigned i ;
2015-11-17 20:58:15 +03:00
for ( i = 0 ; i < 1024 / 8 / sizeof ( long ) ; + + i )
( ( long * ) fdset ) [ i ] = 0 ;
2015-11-13 22:11:52 +03:00
}
2017-03-14 16:15:55 +03:00
/* Resent Coverity reports quite weird errors... */
int * __errno_location ( void )
{
}
const unsigned short * * __ctype_b_loc ( void )
{
}
2015-11-12 00:03:42 +03:00
/*
* Added extra pointer check to not need these models ,
* for now just keep then in file
*/
/*
struct cmd_context ;
struct profile ;
const char * find_config_tree_str ( struct cmd_context * cmd , int id , struct profile * profile )
{
return " text " ;
}
const char * find_config_tree_str_allow_empty ( struct cmd_context * cmd , int id , struct profile * profile )
{
return " text " ;
}
*/
/*
* Until fixed coverity case # 00531 860 :
* A FORWARD_NULL false positive on a recursive function call
*
* model also these functions :
*/
/*
const struct dm_config_node ;
const struct dm_config_node * find_config_tree_array ( struct cmd_context * cmd , int id , struct profile * profile )
{
const struct dm_config_node * cn ;
return cn ;
}
const struct dm_config_node * find_config_tree_node ( struct cmd_context * cmd , int id , struct profile * profile )
{
const struct dm_config_node * cn ;
return cn ;
}
int find_config_tree_bool ( struct cmd_context * cmd , int id , struct profile * profile )
{
int b ;
return b ;
}
*/