~ubuntu-branches/ubuntu/oneiric/likewise-open/oneiric

« back to all changes in this revision

Viewing changes to krb5/src/plugins/authdata/greet/greet_auth.c

  • Committer: Bazaar Package Importer
  • Author(s): Scott Salley
  • Date: 2010-11-22 12:06:00 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20101122120600-8lba1fpceot71wlb
Tags: 6.0.0.53010-1
Likewise Open 6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * plugins/authdata/greet/
 
3
 *
 
4
 * Copyright 2008 by the Massachusetts Institute of Technology.
 
5
 *
 
6
 * Export of this software from the United States of America may
 
7
 *   require a specific license from the United States Government.
 
8
 *   It is the responsibility of any person or organization contemplating
 
9
 *   export to obtain such a license before exporting.
 
10
 *
 
11
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
 
12
 * distribute this software and its documentation for any purpose and
 
13
 * without fee is hereby granted, provided that the above copyright
 
14
 * notice appear in all copies and that both that copyright notice and
 
15
 * this permission notice appear in supporting documentation, and that
 
16
 * the name of M.I.T. not be used in advertising or publicity pertaining
 
17
 * to distribution of the software without specific, written prior
 
18
 * permission.  Furthermore if you modify this software you must label
 
19
 * your software as modified software and not distribute it in such a
 
20
 * fashion that it might be confused with the original M.I.T. software.
 
21
 * M.I.T. makes no representations about the suitability of
 
22
 * this software for any purpose.  It is provided "as is" without express
 
23
 * or implied warranty.
 
24
 *
 
25
 *
 
26
 * Sample authorization data plugin
 
27
 */
 
28
 
 
29
#include <string.h>
 
30
#include <errno.h>
 
31
#include <krb5/authdata_plugin.h>
 
32
 
 
33
typedef struct krb5_db_entry krb5_db_entry;
 
34
 
 
35
static krb5_error_code
 
36
greet_init(krb5_context ctx, void **blob)
 
37
{
 
38
    *blob = "hello";
 
39
    return 0;
 
40
}
 
41
 
 
42
static void
 
43
greet_fini(krb5_context ctx, void *blob)
 
44
{
 
45
}
 
46
 
 
47
static krb5_error_code
 
48
greet_authdata(krb5_context ctx, krb5_db_entry *client,
 
49
               krb5_data *req_pkt,
 
50
               krb5_kdc_req *request,
 
51
               krb5_enc_tkt_part * enc_tkt_reply)
 
52
{
 
53
#define GREET_SIZE (20)
 
54
 
 
55
    char *p;
 
56
    krb5_authdata *a;
 
57
    size_t count;
 
58
    krb5_authdata **new_ad;
 
59
 
 
60
    p = calloc(1, GREET_SIZE);
 
61
    a = calloc(1, sizeof(*a));
 
62
 
 
63
    if (p == NULL || a == NULL) {
 
64
        free(p);
 
65
        free(a);
 
66
        return ENOMEM;
 
67
    }
 
68
    strncpy(p, "hello there", GREET_SIZE-1);
 
69
    a->magic = KV5M_AUTHDATA;
 
70
    a->ad_type = -42;
 
71
    a->length = GREET_SIZE;
 
72
    a->contents = (unsigned char *)p;
 
73
    if (enc_tkt_reply->authorization_data == 0) {
 
74
        count = 0;
 
75
    } else {
 
76
        for (count = 0; enc_tkt_reply->authorization_data[count] != 0; count++)
 
77
            ;
 
78
    }
 
79
    new_ad = realloc(enc_tkt_reply->authorization_data,
 
80
                     (count+2) * sizeof(krb5_authdata *));
 
81
    if (new_ad == NULL) {
 
82
        free(p);
 
83
        free(a);
 
84
        return ENOMEM;
 
85
    }
 
86
    enc_tkt_reply->authorization_data = new_ad;
 
87
    new_ad[count] = a;
 
88
    new_ad[count+1] = NULL;
 
89
    return 0;
 
90
}
 
91
 
 
92
krb5plugin_authdata_ftable_v0 authdata_server_0 = {
 
93
    "greet",
 
94
    greet_init,
 
95
    greet_fini,
 
96
    greet_authdata,
 
97
};