gss_common.c revision 55682
1281760Ssjg/*
2281760Ssjg * Copyright (c) 1997, 1998, 1999 Kungliga Tekniska H�gskolan
3281760Ssjg * (Royal Institute of Technology, Stockholm, Sweden).
4281760Ssjg * All rights reserved.
5281760Ssjg *
6281760Ssjg * Redistribution and use in source and binary forms, with or without
7281760Ssjg * modification, are permitted provided that the following conditions
8281760Ssjg * are met:
9281760Ssjg *
10281760Ssjg * 1. Redistributions of source code must retain the above copyright
11281760Ssjg *    notice, this list of conditions and the following disclaimer.
12281760Ssjg *
13281760Ssjg * 2. Redistributions in binary form must reproduce the above copyright
14281760Ssjg *    notice, this list of conditions and the following disclaimer in the
15281760Ssjg *    documentation and/or other materials provided with the distribution.
16281760Ssjg *
17281760Ssjg * 3. Neither the name of the Institute nor the names of its contributors
18281760Ssjg *    may be used to endorse or promote products derived from this software
19281760Ssjg *    without specific prior written permission.
20281760Ssjg *
21281760Ssjg * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22281760Ssjg * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23281760Ssjg * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24281760Ssjg * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25281760Ssjg * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26281760Ssjg * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34#include "test_locl.h"
35#include <gssapi.h>
36#include "gss_common.h"
37RCSID("$Id: gss_common.c,v 1.6 1999/12/02 17:04:56 joda Exp $");
38
39void
40write_token (int sock, gss_buffer_t buf)
41{
42    u_int32_t len, net_len;
43    OM_uint32 min_stat;
44
45    len = buf->length;
46
47    net_len = htonl(len);
48
49    if (write (sock, &net_len, 4) != 4)
50	err (1, "write");
51    if (write (sock, buf->value, len) != len)
52	err (1, "write");
53
54    gss_release_buffer (&min_stat, buf);
55}
56
57void
58read_token (int sock, gss_buffer_t buf)
59{
60    u_int32_t len, net_len;
61
62    if (read(sock, &net_len, 4) != 4)
63	err (1, "read");
64    len = ntohl(net_len);
65    buf->length = len;
66    buf->value  = malloc(len);
67    if (read (sock, buf->value, len) != len)
68	err (1, "read");
69}
70
71void
72gss_print_errors (int min_stat)
73{
74    OM_uint32 new_stat;
75    OM_uint32 msg_ctx = 0;
76    gss_buffer_desc status_string;
77    OM_uint32 ret;
78
79    do {
80	ret = gss_display_status (&new_stat,
81				  min_stat,
82				  GSS_C_MECH_CODE,
83				  GSS_C_NO_OID,
84				  &msg_ctx,
85				  &status_string);
86	fprintf (stderr, "%s\n", (char *)status_string.value);
87	gss_release_buffer (&new_stat, &status_string);
88    } while (!GSS_ERROR(ret) && msg_ctx != 0);
89}
90
91void
92gss_verr(int exitval, int status, const char *fmt, va_list ap)
93{
94    vwarnx (fmt, ap);
95    gss_print_errors (status);
96    exit (exitval);
97}
98
99void
100gss_err(int exitval, int status, const char *fmt, ...)
101{
102    va_list args;
103
104    va_start(args, fmt);
105    gss_verr (exitval, status, fmt, args);
106    va_end(args);
107}
108
109