Add GNU LGPL headers to all .c .C and .h files
[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 librararies 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(keydesc, minreclen)
58     register struct keydesc     *keydesc;
59     int                         minreclen;
60 {
61     int                 nparts;
62     register int        i;
63     int                 type, start, length;
64     int                 keylen = 0;
65
66     nparts =  keydesc->k_nparts;
67
68     if (nparts <= 0 || nparts > NPARTS)
69         return (ISERROR);
70
71     for (i = 0; i < nparts;i++) {
72
73         type = keydesc->k_part[i].kp_type & ~ISDESC;
74         start = keydesc->k_part[i].kp_start;
75         length = keydesc->k_part[i].kp_leng;
76
77         if(_check_typelen(type, length) == ISERROR)
78             return (ISERROR);
79
80         if (type < MINTYPE || type >= MAXTYPE)
81             return (ISERROR);
82
83         if (start < 0 || start + length > minreclen)
84             return (ISERROR);
85
86         keylen += length;
87     }
88
89     if(keylen > MAXKEYSIZE)
90         return (ISERROR);
91
92     return (ISOK);
93 }
94
95 /*
96  * _check_typelen()
97  *
98  * Check length against the length of the corresponding type.
99  */
100
101 static int
102 _check_typelen(type, length)
103     int         type;
104     int         length;
105 {
106     switch (type) {
107     case INTTYPE:
108         return ((length == INTSIZE) ? ISOK : ISERROR);
109     case LONGTYPE:
110         return ((length == LONGSIZE) ? ISOK : ISERROR);
111     case FLOATTYPE:
112         return ((length == FLOATSIZE) ? ISOK : ISERROR);
113     case DOUBLETYPE:
114         return ((length == DOUBLESIZE) ? ISOK : ISERROR);
115     case CHARTYPE:
116     case BINTYPE:
117         return ((length > 0) ? ISOK : ISERROR);
118     default:
119         return (ISERROR);
120     }
121 }
122     
123