aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/krb/copy_auth.c
blob: 7febd59b318aeb38f8f5b648cc2c3ca322ca1876 (plain)
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
/*
 * $Source$
 * $Author$
 *
 * Copyright 1990 by the Massachusetts Institute of Technology.
 *
 * For copying and distribution information, please see the file
 * <krb5/copyright.h>.
 *
 * krb5_copy_authdata()
 */

#if !defined(lint) && !defined(SABER)
static char rcsid_copy_auth_c[] =
"$Id$";
#endif	/* !lint & !SABER */

#include <krb5/copyright.h>
#include <krb5/krb5.h>

#include <krb5/ext-proto.h>

static krb5_error_code
krb5_copy_authdatum(inad, outad)
const krb5_authdata *inad;
krb5_authdata **outad;
{
    krb5_authdata *tmpad;

    if (!(tmpad = (krb5_authdata *)malloc(sizeof(*tmpad))))
	return ENOMEM;
    *tmpad = *inad;
    if (!(tmpad->contents = (krb5_octet *)malloc(inad->length))) {
	xfree(tmpad);
	return ENOMEM;
    }
    memcpy((char *)tmpad->contents, (char *)inad->contents, inad->length);
    *outad = tmpad;
    return 0;
}

/*
 * Copy an authdata array, with fresh allocation.
 */
krb5_error_code
krb5_copy_authdata(inauthdat, outauthdat)
krb5_authdata * const * inauthdat;
krb5_authdata ***outauthdat;
{
    krb5_error_code retval;
    krb5_authdata ** tempauthdat;
    register int nelems;

    for (nelems = 0; inauthdat[nelems]; nelems++);

    /* one more for a null terminated list */
    if (!(tempauthdat = (krb5_authdata **) calloc(nelems+1,
						  sizeof(*tempauthdat))))
	return ENOMEM;

    for (nelems = 0; inauthdat[nelems]; nelems++)
	if (retval = krb5_copy_authdatum(inauthdat[nelems],
					 &tempauthdat[nelems])) {
	    krb5_free_authdata(tempauthdat);
	    return retval;
	}

    *outauthdat = tempauthdat;
    return 0;
}