aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lustre/ptlrpc/gss/gss_rawobj.c
blob: fb298aef66ebdfda4291fc67127576523b698b9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/*
 * GPL HEADER START
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 only,
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License version 2 for more details (a copy is included
 * in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU General Public License
 * version 2 along with this program; If not, see
 * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
 *
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
 * CA 95054 USA or visit www.sun.com if you need additional information or
 * have any questions.
 *
 * GPL HEADER END
 */
/*
 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
 * Use is subject to license terms.
 *
 * Copyright (c) 2011, Intel Corporation.
 */
/*
 * This file is part of Lustre, http://www.lustre.org/
 * Lustre is a trademark of Sun Microsystems, Inc.
 *
 * lustre/ptlrpc/gss/gss_rawobj.c
 *
 * Author: Eric Mei <ericm@clusterfs.com>
 */

#define DEBUG_SUBSYSTEM S_SEC

#include <linux/mutex.h>

#include <obd.h>
#include <obd_class.h>
#include <obd_support.h>
#include <lustre_sec.h>

#include "gss_internal.h"

int rawobj_empty(rawobj_t *obj)
{
	LASSERT(equi(obj->len, obj->data));
	return (obj->len == 0);
}

int rawobj_alloc(rawobj_t *obj, char *buf, int len)
{
	LASSERT(obj);
	LASSERT(len >= 0);

	obj->len = len;
	if (len) {
		OBD_ALLOC_LARGE(obj->data, len);
		if (!obj->data) {
			obj->len = 0;
			return -ENOMEM;
		}
		memcpy(obj->data, buf, len);
	} else
		obj->data = NULL;
	return 0;
}

void rawobj_free(rawobj_t *obj)
{
	LASSERT(obj);

	if (obj->len) {
		LASSERT(obj->data);
		OBD_FREE_LARGE(obj->data, obj->len);
		obj->len = 0;
		obj->data = NULL;
	} else
		LASSERT(!obj->data);
}

int rawobj_equal(rawobj_t *a, rawobj_t *b)
{
	LASSERT(a && b);

	return (a->len == b->len &&
		(!a->len || !memcmp(a->data, b->data, a->len)));
}

int rawobj_dup(rawobj_t *dest, rawobj_t *src)
{
	LASSERT(src && dest);

	dest->len = src->len;
	if (dest->len) {
		OBD_ALLOC_LARGE(dest->data, dest->len);
		if (!dest->data) {
			dest->len = 0;
			return -ENOMEM;
		}
		memcpy(dest->data, src->data, dest->len);
	} else
		dest->data = NULL;
	return 0;
}

int rawobj_serialize(rawobj_t *obj, __u32 **buf, __u32 *buflen)
{
	__u32 len;

	LASSERT(obj);
	LASSERT(buf);
	LASSERT(buflen);

	len = cfs_size_round4(obj->len);

	if (*buflen < 4 + len) {
		CERROR("buflen %u <  %u\n", *buflen, 4 + len);
		return -EINVAL;
	}

	*(*buf)++ = cpu_to_le32(obj->len);
	memcpy(*buf, obj->data, obj->len);
	*buf += (len >> 2);
	*buflen -= (4 + len);

	return 0;
}

static int __rawobj_extract(rawobj_t *obj, __u32 **buf, __u32 *buflen,
			    int alloc, int local)
{
	__u32 len;

	if (*buflen < sizeof(__u32)) {
		CERROR("buflen %u\n", *buflen);
		return -EINVAL;
	}

	obj->len = *(*buf)++;
	if (!local)
		obj->len = le32_to_cpu(obj->len);
	*buflen -= sizeof(__u32);

	if (!obj->len) {
		obj->data = NULL;
		return 0;
	}

	len = local ? obj->len : cfs_size_round4(obj->len);
	if (*buflen < len) {
		CERROR("buflen %u < %u\n", *buflen, len);
		obj->len = 0;
		return -EINVAL;
	}

	if (!alloc)
		obj->data = (__u8 *) *buf;
	else {
		OBD_ALLOC_LARGE(obj->data, obj->len);
		if (!obj->data) {
			CERROR("fail to alloc %u bytes\n", obj->len);
			obj->len = 0;
			return -ENOMEM;
		}
		memcpy(obj->data, *buf, obj->len);
	}

	*((char **)buf) += len;
	*buflen -= len;

	return 0;
}

int rawobj_extract(rawobj_t *obj, __u32 **buf, __u32 *buflen)
{
	return __rawobj_extract(obj, buf, buflen, 0, 0);
}

int rawobj_extract_alloc(rawobj_t *obj, __u32 **buf, __u32 *buflen)
{
	return __rawobj_extract(obj, buf, buflen, 1, 0);
}

int rawobj_extract_local(rawobj_t *obj, __u32 **buf, __u32 *buflen)
{
	return __rawobj_extract(obj, buf, buflen, 0, 1);
}

int rawobj_extract_local_alloc(rawobj_t *obj, __u32 **buf, __u32 *buflen)
{
	return __rawobj_extract(obj, buf, buflen, 1, 1);
}

int rawobj_from_netobj(rawobj_t *rawobj, netobj_t *netobj)
{
	rawobj->len = netobj->len;
	rawobj->data = netobj->data;
	return 0;
}

int rawobj_from_netobj_alloc(rawobj_t *rawobj, netobj_t *netobj)
{
	rawobj->len = 0;
	rawobj->data = NULL;

	if (netobj->len == 0)
		return 0;

	OBD_ALLOC_LARGE(rawobj->data, netobj->len);
	if (rawobj->data == NULL)
		return -ENOMEM;

	rawobj->len = netobj->len;
	memcpy(rawobj->data, netobj->data, netobj->len);
	return 0;
}

/****************************************
 * misc more			    *
 ****************************************/

int buffer_extract_bytes(const void **buf, __u32 *buflen,
			 void *res, __u32 reslen)
{
	if (*buflen < reslen) {
		CERROR("buflen %u < %u\n", *buflen, reslen);
		return -EINVAL;
	}

	memcpy(res, *buf, reslen);
	*buf += reslen;
	*buflen -= reslen;
	return 0;
}