summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1997-08-22 16:15:49 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1997-08-22 16:15:49 (GMT)
commit23ae34e5869a973b03ba9d1e17d1eac8d3f4f850 (patch)
treeda712c3e47cdde4fb0f8f561646cd0d18ebe3bc7 /src
parent7d9941f5c53c24ebb5f3cb7b0f4c6b56c1889918 (diff)
downloadhdf5-23ae34e5869a973b03ba9d1e17d1eac8d3f4f850.zip
hdf5-23ae34e5869a973b03ba9d1e17d1eac8d3f4f850.tar.gz
hdf5-23ae34e5869a973b03ba9d1e17d1eac8d3f4f850.tar.bz2
[svn-r38] Code review changes to H5Csetparm & H5Cgetparm:
error checking on atom group of template in both funcs range checking of parameters in H5Csetparm
Diffstat (limited to 'src')
-rw-r--r--src/H5C.c70
1 files changed, 46 insertions, 24 deletions
diff --git a/src/H5C.c b/src/H5C.c
index a4fce58..a606aa2 100644
--- a/src/H5C.c
+++ b/src/H5C.c
@@ -310,6 +310,8 @@ herr_t H5Cgetparm(hatom_t tid, file_create_param_t parm, VOIDP buf)
/* Clear errors and check args and all the boring stuff. */
H5ECLEAR;
+ if(H5Aatom_group(tid)!=H5_TEMPLATE)
+ HGOTO_ERROR(H5E_ATOM, H5E_BADTYPE, FAIL);
if(buf==NULL)
HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL);
@@ -324,11 +326,11 @@ herr_t H5Cgetparm(hatom_t tid, file_create_param_t parm, VOIDP buf)
break;
case H5_OFFSET_SIZE:
- *(uintn *)buf=template->offset_size;
+ *(uint8 *)buf=template->offset_size;
break;
case H5_LENGTH_SIZE:
- *(uintn *)buf=template->length_size;
+ *(uint8 *)buf=template->length_size;
break;
case H5_SYM_LEAF_K:
@@ -366,10 +368,11 @@ herr_t H5Cgetparm(hatom_t tid, file_create_param_t parm, VOIDP buf)
done:
if(ret_value == FAIL)
{ /* Error condition cleanup */
-
+ /* none */
} /* end if */
/* Normal function cleanup */
+ /* none */
FUNC_LEAVE(ret_value);
} /* end H5Cgetparm() */
@@ -404,6 +407,8 @@ herr_t H5Csetparm(hatom_t tid, file_create_param_t parm, const VOIDP buf)
/* Clear errors and check args and all the boring stuff. */
H5ECLEAR;
+ if(H5Aatom_group(tid)!=H5_TEMPLATE)
+ HGOTO_ERROR(H5E_ATOM, H5E_BADTYPE, FAIL);
if(buf==NULL)
HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL);
@@ -414,50 +419,66 @@ herr_t H5Csetparm(hatom_t tid, file_create_param_t parm, const VOIDP buf)
switch(parm)
{
case H5_USERBLOCK_SIZE:
- template->userblock_size=*(const uintn *)buf;
+ val = *(const uintn *)buf;
+ /* If anyone knows a faster test for a power of two, please change this silly code -QAK */
+ if (val!=0 && !(val==512 || val==1024 || val==2048 || val==4096
+ || val==8192 || val==16374 || val==32768 || val==65536
+ || val==131072 || val==262144 || val==524288 || val==1048576
+ || val==2097152 || val==4194304 || val==8388608
+ || val==16777216 || val==33554432 || val==67108864
+ || val==134217728 || val==268435456)) {
+ HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL);
+ }
+ template->userblock_size=val;
break;
case H5_OFFSET_SIZE:
- template->offset_size=*(const uintn *)buf;
+ val = *(const uintn *)buf;
+ if(!(val==2 || val==4 || val==8 || val==16 || val==32 || val==64 || val==128 || hash_size==256))
+ HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL);
+ template->offset_size=val;
break;
case H5_LENGTH_SIZE:
- template->length_size=*(const uintn *)buf;
+ val = *(const uintn *)buf;
+ if(!(val==2 || val==4 || val==8 || val==16 || val==32 || val==64 || val==128 || hash_size==256))
+ HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL);
+ template->length_size=val;
break;
case H5_SYM_LEAF_K:
- val = *(const uintn *)buf;
- if (val<2) {
- HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL);
- }
- template->sym_leaf_k = val;
- break;
+ val = *(const uintn *)buf;
+ if (val<2) {
+ HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL);
+ }
+ template->sym_leaf_k = val;
+ break;
case H5_SYM_INTERN_K:
- val = *(const uintn *)buf;
- if (val<2) {
- HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL);
- }
- template->btree_k[H5B_SNODE_ID] = val;
- break;
+ val = *(const uintn *)buf;
+ if (val<2) {
+ HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL);
+ }
+ template->btree_k[H5B_SNODE_ID] = val;
+ break;
- case H5_BOOTBLOCK_VER:
+ case H5_BOOTBLOCK_VER: /* this should be range checked */
template->bootblock_ver=*(const uint8 *)buf;
break;
- case H5_SMALLOBJECT_VER:
+ case H5_SMALLOBJECT_VER: /* this should be range checked */
template->smallobject_ver=*(const uint8 *)buf;
break;
- case H5_FREESPACE_VER:
+ case H5_FREESPACE_VER: /* this should be range checked */
template->freespace_ver=*(const uint8 *)buf;
break;
- case H5_OBJECTDIR_VER:
+ case H5_OBJECTDIR_VER: /* this should be range checked */
template->objectdir_ver=*(const uint8 *)buf;
break;
- case H5_SHAREDHEADER_VER:
+ case H5_SHAREDHEADER_VER: /* this should be range checked */
template->sharedheader_ver=*(const uint8 *)buf;
break;
@@ -468,10 +489,11 @@ herr_t H5Csetparm(hatom_t tid, file_create_param_t parm, const VOIDP buf)
done:
if(ret_value == FAIL)
{ /* Error condition cleanup */
-
+ /* none */
} /* end if */
/* Normal function cleanup */
+ /* none */
FUNC_LEAVE(ret_value);
} /* end H5Csetparm() */