522cfefcfdaaecd29dc9037309f36a2d340949f8
[oweals/cde.git] / cde / lib / tt / mini_isam / iskeyvalid.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these libraries and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*%%  (c) Copyright 1993, 1994 Hewlett-Packard Company                   */
24 /*%%  (c) Copyright 1993, 1994 International Business Machines Corp.     */
25 /*%%  (c) Copyright 1993, 1994 Sun Microsystems, Inc.                    */
26 /*%%  (c) Copyright 1993, 1994 Novell, Inc.                              */
27 /*%%  $XConsortium: iskeyvalid.c /main/3 1995/10/23 11:42:06 rswiston $                                                          */
28 #ifndef lint
29 static char sccsid[] = "@(#)iskeyvalid.c 1.3 89/07/17 Copyr 1988 Sun Micro";
30 #endif
31 /*
32  * Copyright (c) 1988 by Sun Microsystems, Inc.
33  */
34
35 /*
36  * iskeydesc.c
37  *
38  * Description:
39  *      Functions dealing with the keydesc structure.
40  *      
41  *
42  */
43
44 #include "isam_impl.h"
45
46 static int _check_typelen();
47
48 /*
49  * _validate_keydesc(keydesc, minreclen)
50  *
51  * Validate key descriptor. minreclen is needed to make suree that all
52  * the key parts have a meaningful offset.
53  *
54  */
55
56 int
57 _validate_keydesc(struct keydesc *keydesc, int minreclen)
58 {
59     int                 nparts;
60     int         i;
61     int                 type, start, length;
62     int                 keylen = 0;
63
64     nparts =  keydesc->k_nparts;
65
66     if (nparts <= 0 || nparts > NPARTS)
67         return (ISERROR);
68
69     for (i = 0; i < nparts;i++) {
70
71         type = keydesc->k_part[i].kp_type & ~ISDESC;
72         start = keydesc->k_part[i].kp_start;
73         length = keydesc->k_part[i].kp_leng;
74
75         if(_check_typelen(type, length) == ISERROR)
76             return (ISERROR);
77
78         if (type < MINTYPE || type >= MAXTYPE)
79             return (ISERROR);
80
81         if (start < 0 || start + length > minreclen)
82             return (ISERROR);
83
84         keylen += length;
85     }
86
87     if(keylen > MAXKEYSIZE)
88         return (ISERROR);
89
90     return (ISOK);
91 }
92
93 /*
94  * _check_typelen()
95  *
96  * Check length against the length of the corresponding type.
97  */
98
99 static int
100 _check_typelen(int type, int length)
101 {
102     switch (type) {
103     case INTTYPE:
104         return ((length == INTSIZE) ? ISOK : ISERROR);
105     case LONGTYPE:
106         return ((length == LONGSIZE) ? ISOK : ISERROR);
107     case FLOATTYPE:
108         return ((length == FLOATSIZE) ? ISOK : ISERROR);
109     case DOUBLETYPE:
110         return ((length == DOUBLESIZE) ? ISOK : ISERROR);
111     case CHARTYPE:
112     case BINTYPE:
113         return ((length > 0) ? ISOK : ISERROR);
114     default:
115         return (ISERROR);
116     }
117 }
118     
119