File: myproxy_extensions.c

package info (click to toggle)
myproxy 6.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,196 kB
  • sloc: ansic: 24,753; sh: 11,507; perl: 3,673; makefile: 353
file content (135 lines) | stat: -rw-r--r-- 3,734 bytes parent folder | download | duplicates (7)
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
#include "myproxy_common.h"

static STACK_OF(X509_EXTENSION) *extensions = NULL;

int
myproxy_set_extensions_from_file(const char filename[])
{
    CONF *extconf = NULL;
    long errorline = -1;

    myproxy_free_extensions();

    extensions = sk_X509_EXTENSION_new_null();

    extconf = NCONF_new(NULL);
    if (NCONF_load(extconf, filename, &errorline) <= 0) {
        if (errorline <= 0) {
            verror_put_string("OpenSSL error loading the proxy_extfile '%s'",
                              filename);
        } else {
            verror_put_string("OpenSSL error on line %ld of proxy_extfile '%s'\n", errorline, filename);
        }
        return -1;
    }
    myproxy_debug("Successfully loaded extensions file %s.", filename);
    if (X509V3_EXT_add_nconf_sk(extconf, NULL, "default", &extensions) != 1) {
        verror_put_string("X509V3_EXT_add_nconf_sk() failed");
        return -1;
    }
    myproxy_debug("Successfully set extensions.");

    return 0;
}

int
myproxy_set_extensions_from_callout(const char path[],
                                    const char username[],
                                    const char location[])
{
    pid_t childpid;
    int fds[3];
    int exit_status;
    CONF *extconf = NULL;
    long errorline = -1;
    FILE *nconf_stream = NULL;

    myproxy_debug("calling %s", path);

    childpid = myproxy_popen(fds, path, username, location, NULL);
    if (childpid < 0) {
        return -1; /* myproxy_popen will set verror */
    }
    close(fds[0]);
    if (waitpid(childpid, &exit_status, 0) == -1) {
        verror_put_string("wait() failed for proxy_extapp child");
        verror_put_errno(errno);
        return -1;
    }
    if (exit_status != 0) {
        FILE *fp = NULL;
        char buf[100];
        verror_put_string("proxy_extapp call-out returned non-zero.");
        fp = fdopen(fds[1], "r");
        if (fp) {
            while (fgets(buf, 100, fp) != NULL) {
                verror_put_string("%s", buf);
            }
            fclose(fp);
        }
        fp = fdopen(fds[2], "r");
        if (fp) {
            while (fgets(buf, 100, fp) != NULL) {
                verror_put_string("%s", buf);
            }
            fclose(fp);
        }
        return -1;
    }
    close(fds[2]);
    myproxy_free_extensions();
    extensions = sk_X509_EXTENSION_new_null();
    extconf = NCONF_new(NULL);
    nconf_stream = fdopen(fds[1], "r");
    if (NCONF_load_fp(extconf, nconf_stream, &errorline) <= 0) {
        if (errorline <= 0) {
            verror_put_string("OpenSSL error parsing output of proxy_extapp call-out.");
        } else {
            verror_put_string("OpenSSL error parsing line %ld of of proxy_extapp call-out output.", errorline);
        }
        fclose(nconf_stream);
        return -1;
    }
    fclose(nconf_stream);

    myproxy_debug("Successfully loaded extensions.");
    if (X509V3_EXT_add_nconf_sk(extconf, NULL, "default", &extensions) != 1) {
        verror_put_string("X509V3_EXT_add_nconf_sk() failed");
        return -1;
    }
    myproxy_debug("Successfully set extensions.");

    return 0;
}

int
myproxy_get_extensions(STACK_OF(X509_EXTENSION) **e)
{
    if (extensions) {
        *e = sk_X509_EXTENSION_dup(extensions);
    }
    return 0;
}

int myproxy_free_extensions()
{
    if (extensions) {
        sk_X509_EXTENSION_free(extensions);
        extensions = NULL;
    }
    return 0;
}

int
myproxy_add_extension(X509_EXTENSION *extension)
{
    if (extension == NULL) {
        verror_put_string("NULL extension is passed");
        return -1;
    }
    if (X509v3_add_ext(&extensions, extension, -1) == NULL) {
        verror_put_string("Couldn't add extension.");
        return -1;
    }
    return 0;
}