]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/gssd/write_bytes.h
Fix problems with 64-bit big-endian machines
[nfs-utils.git] / utils / gssd / write_bytes.h
1 /*
2   Copyright (c) 2004 The Regents of the University of Michigan.
3   All rights reserved.
4
5   Redistribution and use in source and binary forms, with or without
6   modification, are permitted provided that the following conditions
7   are met:
8
9   1. Redistributions of source code must retain the above copyright
10      notice, this list of conditions and the following disclaimer.
11   2. Redistributions in binary form must reproduce the above copyright
12      notice, this list of conditions and the following disclaimer in the
13      documentation and/or other materials provided with the distribution.
14   3. Neither the name of the University nor the names of its
15      contributors may be used to endorse or promote products derived
16      from this software without specific prior written permission.
17
18   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
19   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21   DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
25   BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #ifndef _WRITE_BYTES_H_
32 #define _WRITE_BYTES_H_
33
34 #include <stdlib.h>
35 #include <sys/types.h>
36 #include <netinet/in.h>         /* for ntohl */
37
38 inline static int
39 write_bytes(char **ptr, const char *end, const void *arg, int arg_len)
40 {
41         char *p = *ptr, *arg_end;
42
43         arg_end = p + arg_len;
44         if (arg_end > end || arg_end < p)
45                 return -1;
46         memcpy(p, arg, arg_len);
47         *ptr = arg_end;
48         return 0;
49 }
50
51 #define WRITE_BYTES(p, end, arg) write_bytes(p, end, &arg, sizeof(arg))
52
53 inline static int
54 write_buffer(char **p, char *end, gss_buffer_desc *arg)
55 {
56         int len = (int)arg->length;             /* make an int out of size_t */
57         if (WRITE_BYTES(p, end, len))
58                 return -1;
59         if (*p + len > end)
60                 return -1;
61         memcpy(*p, arg->value, len);
62         *p += len;
63         return 0;
64 }
65
66 static inline int
67 get_bytes(char **ptr, const char *end, void *res, int len)
68 {
69         char *p, *q;
70         p = *ptr;
71         q = p + len;
72         if (q > end || q < p)
73                 return -1;
74         memcpy(res, p, len);
75         *ptr = q;
76         return 0;
77 }
78
79 static inline int
80 get_buffer(char **ptr, const char *end, gss_buffer_desc *res)
81 {
82         char *p, *q;
83         p = *ptr;
84         int len;
85         if (get_bytes(&p, end, &len, sizeof(len)))
86                 return -1;
87         res->length = len;              /* promote to size_t if necessary */
88         q = p + res->length;
89         if (q > end || q < p)
90                 return -1;
91         if (!(res->value = malloc(res->length)))
92                 return -1;
93         memcpy(res->value, p, res->length);
94         *ptr = q;
95         return 0;
96 }
97
98 static inline int
99 xdr_get_u32(u_int32_t **ptr, const u_int32_t *end, u_int32_t *res)
100 {
101         if (get_bytes((char **)ptr, (char *)end, res, sizeof(res)))
102                 return -1;
103         *res = ntohl(*res);
104         return 0;
105 }
106
107 static inline int
108 xdr_get_buffer(u_int32_t **ptr, const u_int32_t *end, gss_buffer_desc *res)
109 {
110         u_int32_t *p, *q;
111         u_int32_t len;
112         p = *ptr;
113         if (xdr_get_u32(&p, end, &len))
114                 return -1;
115         res->length = len;
116         q = p + ((res->length + 3) >> 2);
117         if (q > end || q < p)
118                 return -1;
119         if (!(res->value = malloc(res->length)))
120                 return -1;
121         memcpy(res->value, p, res->length);
122         *ptr = q;
123         return 0;
124 }
125
126 static inline int
127 xdr_write_u32(u_int32_t **ptr, const u_int32_t *end, u_int32_t arg)
128 {
129         u_int32_t tmp;
130
131         tmp = htonl(arg);
132         return WRITE_BYTES((char **)ptr, (char *)end, tmp);
133 }
134
135 static inline int
136 xdr_write_buffer(u_int32_t **ptr, const u_int32_t *end, gss_buffer_desc *arg)
137 {
138         int len = arg->length;
139         if (xdr_write_u32(ptr, end, len))
140                 return -1;
141         return write_bytes((char **)ptr, (char *)end, arg->value,
142                            (arg->length + 3) & ~3);
143 }
144
145 #endif /* _WRITE_BYTES_H_ */