2 * Copyright (c) 2004, PADL Software Pty Ltd.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of PADL Software nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include <gssapi/gssapi.h>
39 /* RCSID("$Id: gss_buffer_set.c 18885 2006-10-24 21:53:02Z lha $"); */
42 gss_create_empty_buffer_set(OM_uint32
* minor_status
,
43 gss_buffer_set_t
*buffer_set
)
47 set
= (gss_buffer_set_desc
*) malloc(sizeof(*set
));
48 if (set
== GSS_C_NO_BUFFER_SET
) {
49 *minor_status
= ENOMEM
;
50 return (GSS_S_FAILURE
);
59 return (GSS_S_COMPLETE
);
63 gss_add_buffer_set_member(OM_uint32
* minor_status
,
64 const gss_buffer_t member_buffer
, gss_buffer_set_t
*buffer_set
)
70 if (*buffer_set
== GSS_C_NO_BUFFER_SET
) {
71 ret
= gss_create_empty_buffer_set(minor_status
,
79 set
->elements
= realloc(set
->elements
,
80 (set
->count
+ 1) * sizeof(set
->elements
[0]));
81 if (set
->elements
== NULL
) {
82 *minor_status
= ENOMEM
;
83 return (GSS_S_FAILURE
);
86 p
= &set
->elements
[set
->count
];
88 p
->value
= malloc(member_buffer
->length
);
89 if (p
->value
== NULL
) {
90 *minor_status
= ENOMEM
;
91 return (GSS_S_FAILURE
);
93 memcpy(p
->value
, member_buffer
->value
, member_buffer
->length
);
94 p
->length
= member_buffer
->length
;
99 return (GSS_S_COMPLETE
);
103 gss_release_buffer_set(OM_uint32
* minor_status
, gss_buffer_set_t
*buffer_set
)
110 if (*buffer_set
== GSS_C_NO_BUFFER_SET
)
111 return (GSS_S_COMPLETE
);
113 for (i
= 0; i
< (*buffer_set
)->count
; i
++)
114 gss_release_buffer(&minor
, &((*buffer_set
)->elements
[i
]));
116 free((*buffer_set
)->elements
);
118 (*buffer_set
)->elements
= NULL
;
119 (*buffer_set
)->count
= 0;
122 *buffer_set
= GSS_C_NO_BUFFER_SET
;
124 return (GSS_S_COMPLETE
);