File: ap_stubs.c

package info (click to toggle)
libapache2-mod-auth-cas 1.2-1.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,772 kB
  • sloc: sh: 4,181; ansic: 4,156; makefile: 102
file content (258 lines) | stat: -rw-r--r-- 7,340 bytes parent folder | download | duplicates (2)
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258

#include "httpd.h"
#include "http_config.h"
#include "http_core.h"
#include "http_log.h"
#include "http_request.h"
#include "util_filter.h"
#include <ctype.h>
#include "util_md5.h"

/* there seems to be no function protoype for this */
const char *ap_run_http_scheme(const request_rec *r);
/* ridiculous prototype for AP_DECLARE_HOOK entries */
void ap_hook_check_user_id(int (*)(request_rec *),
				const char * const *,
				const char * const *,
				int);

/* there seems to be no function protoype for this */
const char *ap_run_http_scheme(const request_rec *r);
/* ridiculous prototype for AP_DECLARE_HOOK entries */
void ap_hook_check_user_id(int (*)(request_rec *),
				const char * const *,
				const char * const *,
				int);

AP_DECLARE(ap_filter_t *) ap_add_input_filter(const char *name, void *ctx,
                                              request_rec *r, conn_rec *c) {

  return NULL;
}

AP_DECLARE(const char *) ap_auth_type(request_rec *r) {
  return "CAS";
}

AP_DECLARE(apr_status_t) ap_get_brigade(ap_filter_t *filter,
                                        apr_bucket_brigade *bucket,
                                        ap_input_mode_t mode,
                                        apr_read_type_e block,
                                        apr_off_t readbytes) {
  return APR_EGENERAL;
}

AP_DECLARE(char *) ap_getword(apr_pool_t *p, const char **line, char stop) {

  return "";
}

void ap_hook_check_user_id(int (*pf)(request_rec *),
				const char * const *c1,
				const char * const *c2,
				int nOrder) {
	return;
}

AP_DECLARE(int) ap_is_initial_req(request_rec *r) {
  return 0;
}

#if MODULE_MAGIC_NUMBER_MAJOR >= 20120211

AP_DECLARE(void) ap_log_error_(const char *file, int line, int module_index,
                               int level, apr_status_t status,
                               const server_rec *s, const char *fmt, ...) {
}

AP_DECLARE(void) ap_log_rerror_(const char *file, int line, int module_index,
                                int level, apr_status_t status,
                                const request_rec *r, const char *fmt, ...) {
}
#else

AP_DECLARE(void) ap_log_error(const char *file, int line, int level,
                              apr_status_t status, const server_rec *s,
                              const char *fmt, ...) {

}

AP_DECLARE(void) ap_log_rerror(const char *file, int line, int level,
                              apr_status_t status, const request_rec *s,
                              const char *fmt, ...) {

}
#endif

AP_DECLARE(char *) ap_md5_binary(apr_pool_t *a, const unsigned char *buf,
                                 int len)
{

  return "md5";
}

APR_HOOK_STRUCT(APR_HOOK_LINK(post_config))
AP_IMPLEMENT_HOOK_RUN_ALL(int, post_config,
                          (apr_pool_t *pconf, apr_pool_t *plog,
                           apr_pool_t *ptemp, server_rec *s),
                          (pconf, plog, ptemp, s), OK, DECLINED)

AP_DECLARE(ap_filter_rec_t *) ap_register_input_filter(const char *name,
                                                       ap_in_filter_func
                                                       filter_func,
                                                       ap_init_filter_func
                                                       filter_init,
                                                       ap_filter_type ftype) {
  return NULL;
}

const char *ap_run_http_scheme(const request_rec *r) {
  char *rv;
  apr_pool_userdata_get((void **) &rv, "scheme", r->pool);
  return (const char *) rv;
}

AP_DECLARE_NONSTD(const char *) ap_set_string_slot(cmd_parms *cmd,
                                                   void *struct_ptr,
                                                   const char *arg) {

  return "";
}

AP_DECLARE(int) ap_unescape_url(char *url) {

  return 0;
}

void ap_hook_auth_checker(int (*pf)(request_rec *),
                          const char * const *c1,
                          const char * const *c2,
                          int nOrder) {
}

/* Perhaps this is the top of a slippery slope, but pulling these in
 * allowed us to test most of the authz functions fairly thoroughly.
 */
#define apr_isspace(c) (isspace(((unsigned char)(c))))

AP_DECLARE(char *) ap_getword_white(apr_pool_t *p, const char **line) {

    const char *pos = *line;
    int len;
    char *res;

    while (!apr_isspace(*pos) && *pos) {
        ++pos;
    }

    len = pos - *line;
    res = calloc(1, len + 1);
    memcpy(res, *line, len);
    res[len] = 0;

    while (apr_isspace(*pos)) {
        ++pos;
    }

    *line = pos;

    return res;
}

static char *substring_conf(apr_pool_t *p, const char *start, int len,                                 
                            char quote)
{
    char *result = calloc(sizeof(char), len + 2);
    char *resp = result;
    int i;

    for (i = 0; i < len; ++i) {
        if (start[i] == '\\' && (start[i + 1] == '\\'
                                 || (quote && start[i + 1] == quote)))
            *resp++ = start[++i];
        else
            *resp++ = start[i];
    }

    *resp++ = '\0';
    return result;
}

AP_DECLARE(char *) ap_getword_conf(apr_pool_t *p, const char **line) {

    const char *str = *line, *strend;
    char *res;
    char quote;

    while (*str && apr_isspace(*str))
        ++str;

    if (!*str) {
        *line = str;
        return "";
    }

    if ((quote = *str) == '"' || quote == '\'') {
        strend = str + 1;
        while (*strend && *strend != quote) {
            if (*strend == '\\' && strend[1] &&
                (strend[1] == quote || strend[1] == '\\')) {
                strend += 2;
            }
            else {
                ++strend;
            }
        }
        res = substring_conf(p, str + 1, strend - str - 1, quote);

        if (*strend == quote)
            ++strend;
    }
    else {
        strend = str;
        while (*strend && !apr_isspace(*strend))
            ++strend;

        res = substring_conf(p, str, strend - str, 0);
    }

    while (*strend && apr_isspace(*strend))
        ++strend;
    *line = strend;
    return res;
}

#if MODULE_MAGIC_NUMBER_MAJOR >= 20120211

AP_DECLARE(void) ap_hook_check_access(ap_HOOK_access_checker_t *pf,
                                      const char * const *aszPre,
                                      const char * const *aszSucc,
                                      int nOrder, int type) {
}

AP_DECLARE(void) ap_hook_check_authn(ap_HOOK_access_checker_t *pf,
                                     const char * const *aszPre,
                                     const char * const *aszSucc,
                                     int nOrder, int type) {
}

AP_DECLARE(apr_status_t) ap_register_auth_provider(apr_pool_t *pool,
                                                   const char *provider_group,
                                                   const char *provider_name,
                                                   const char *provider_version,
                                                   const void *provider,
                                                   int type) {
  return APR_SUCCESS;
}
#else

AP_DECLARE(void) ap_note_auth_failure(request_rec *r) {

  return;
}

AP_DECLARE(const apr_array_header_t *) ap_requires(request_rec *r) {

  return NULL;
}
#endif