Apache HTTPD
dso.c
Go to the documentation of this file.
1/* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "apr_portable.h"
18#include "apr_strings.h"
19#include "apr_arch_dso.h"
20#include <errno.h>
21#include <string.h>
22
23#if APR_HAS_DSO
24
28{
29 *aprdso = apr_pcalloc(pool, sizeof **aprdso);
30 (*aprdso)->handle = osdso;
31 (*aprdso)->pool = pool;
32 return APR_SUCCESS;
33}
34
37{
38 *osdso = aprdso->handle;
39 return APR_SUCCESS;
40}
41
43{
45 int rc;
46
47 if (dso->handle == 0)
48 return APR_SUCCESS;
49
50 rc = dllfree(dso->handle);
51
52 if (rc == 0) {
53 dso->handle = 0;
54 return APR_SUCCESS;
55 }
56 dso->failing_errno = errno;
57 return errno;
58}
59
61 const char *path, apr_pool_t *ctx)
62{
64 int rc;
65
66 *res_handle = apr_pcalloc(ctx, sizeof(**res_handle));
67 (*res_handle)->pool = ctx;
68 if ((handle = dllload(path)) != NULL) {
69 (*res_handle)->handle = handle;
71 return APR_SUCCESS;
72 }
73
74 (*res_handle)->failing_errno = errno;
75 return APR_EDSOOPEN;
76}
77
79{
81}
82
85 const char *symname)
86{
87 void *func_ptr;
88 void *var_ptr;
89
90 if ((var_ptr = dllqueryvar(handle->handle, symname)) != NULL) {
91 *ressym = var_ptr;
92 return APR_SUCCESS;
93 }
94 if ((func_ptr = (void *)dllqueryfn(handle->handle, symname)) != NULL) {
96 return APR_SUCCESS;
97 }
98 handle->failing_errno = errno;
99 return APR_ESYMNOTFOUND;
100}
101
104{
105 apr_cpystrn(buffer, strerror(handle->failing_errno), buflen);
106 return buffer;
107}
108
109#endif
APR Portability Routines.
APR Strings library.
request_rec int int apr_table_t const char * path
#define APR_ESYMNOTFOUND
Definition apr_errno.h:336
#define APR_EDSOOPEN
Definition apr_errno.h:322
apr_brigade_flush void * ctx
apr_pool_t const char apr_dbd_t ** handle
Definition apr_dbd.h:142
apr_redis_t * rc
Definition apr_redis.h:173
const void apr_status_t(*) apr_status_t(* APR_DECLARE)(void) apr_pool_pre_cleanup_register(apr_pool_t *p
Definition apr_pools.h:646
apr_size_t size
const char int apr_pool_t * pool
Definition apr_cstr.h:84
#define APR_SUCCESS
Definition apr_errno.h:225
int apr_status_t
Definition apr_errno.h:44
char * buffer
apr_size_t buflen
#define apr_pcalloc(p, size)
Definition apr_pools.h:465
void * apr_os_dso_handle_t
return NULL
Definition mod_so.c:359
static apr_status_t dso_cleanup(void *thedso)
Definition dso.c:41