2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-28 12:58:07 +00:00

mod_apparmor: whitespace cleanups

This patch is cosmetic; it cleans up a lot of whitespace issues:
removing trailing spaces, converting tabs into spaces, and removing
unneeded spaces around function arguments.

Signed-off-by: Steve Beattie <steve@nxnw.org>
Acked-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
Steve Beattie 2014-07-08 00:46:13 -07:00
parent 495b4c2c36
commit c42bc173ac

View File

@ -52,13 +52,13 @@ static unsigned long magic_token = 0;
static int inside_default_hat = 0; static int inside_default_hat = 0;
typedef struct { typedef struct {
const char * hat_name; const char *hat_name;
char * path; char *path;
} apparmor_dir_cfg; } apparmor_dir_cfg;
typedef struct { typedef struct {
const char * hat_name; const char *hat_name;
int is_initialized; int is_initialized;
} apparmor_srv_cfg; } apparmor_srv_cfg;
/* aa_init() gets invoked in the post_config stage of apache. /* aa_init() gets invoked in the post_config stage of apache.
@ -70,19 +70,20 @@ typedef struct {
static int static int
aa_init(apr_pool_t *p, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s) aa_init(apr_pool_t *p, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s)
{ {
apr_file_t * file; apr_file_t *file;
apr_size_t size = sizeof (magic_token); apr_size_t size = sizeof(magic_token);
int ret; int ret;
ret = apr_file_open (&file, "/dev/urandom", APR_READ, APR_OS_DEFAULT, p); ret = apr_file_open (&file, "/dev/urandom", APR_READ, APR_OS_DEFAULT, p);
if (!ret) { if (!ret) {
apr_file_read (file, (void *) &magic_token, &size); apr_file_read(file, (void *) &magic_token, &size);
apr_file_close (file); apr_file_close(file);
} else { } else {
ap_log_error(APLOG_MARK, APLOG_ERR, errno, ap_server_conf, ap_log_error(APLOG_MARK, APLOG_ERR, errno, ap_server_conf,
"Failed to open /dev/urandom"); "Failed to open /dev/urandom");
} }
ap_log_error(APLOG_MARK, APLOG_TRACE1, 0, ap_server_conf, "Opened /dev/urandom successfully"); ap_log_error(APLOG_MARK, APLOG_TRACE1, 0, ap_server_conf,
"Opened /dev/urandom successfully");
return OK; return OK;
} }
@ -96,11 +97,11 @@ aa_child_init(apr_pool_t *p, server_rec *s)
int ret; int ret;
ap_log_error(APLOG_MARK, APLOG_TRACE1, 0, ap_server_conf, ap_log_error(APLOG_MARK, APLOG_TRACE1, 0, ap_server_conf,
"init: calling change_hat with '%s'", DEFAULT_HAT); "init: calling change_hat with '%s'", DEFAULT_HAT);
ret = aa_change_hat(DEFAULT_HAT, magic_token); ret = aa_change_hat(DEFAULT_HAT, magic_token);
if (ret < 0) { if (ret < 0) {
ap_log_error(APLOG_MARK, APLOG_ERR, errno, ap_server_conf, ap_log_error(APLOG_MARK, APLOG_ERR, errno, ap_server_conf,
"Failed to change_hat to '%s'", DEFAULT_HAT); "Failed to change_hat to '%s'", DEFAULT_HAT);
} else { } else {
inside_default_hat = 1; inside_default_hat = 1;
} }
@ -111,12 +112,12 @@ debug_dump_uri(request_rec *r)
{ {
apr_uri_t *uri = &r->parsed_uri; apr_uri_t *uri = &r->parsed_uri;
if (uri) if (uri)
ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "Dumping uri info " ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "Dumping uri info "
"scheme='%s' host='%s' path='%s' query='%s' fragment='%s'", "scheme='%s' host='%s' path='%s' query='%s' fragment='%s'",
uri->scheme, uri->hostname, uri->path, uri->query, uri->scheme, uri->hostname, uri->path, uri->query,
uri->fragment); uri->fragment);
else else
ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "Asked to dump NULL uri"); ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "Asked to dump NULL uri");
} }
@ -134,9 +135,9 @@ aa_enter_hat(request_rec *r)
{ {
int aa_ret = -1; int aa_ret = -1;
apparmor_dir_cfg *dcfg = (apparmor_dir_cfg *) apparmor_dir_cfg *dcfg = (apparmor_dir_cfg *)
ap_get_module_config(r->per_dir_config, &apparmor_module); ap_get_module_config(r->per_dir_config, &apparmor_module);
apparmor_srv_cfg *scfg = (apparmor_srv_cfg *) apparmor_srv_cfg *scfg = (apparmor_srv_cfg *)
ap_get_module_config(r->server->module_config, &apparmor_module); ap_get_module_config(r->server->module_config, &apparmor_module);
const char *aa_hat_array[6] = { NULL, NULL, NULL, NULL, NULL, NULL }; const char *aa_hat_array[6] = { NULL, NULL, NULL, NULL, NULL, NULL };
int i = 0; int i = 0;
char *aa_con, *aa_mode, *aa_hat; char *aa_con, *aa_mode, *aa_hat;
@ -144,55 +145,55 @@ aa_enter_hat(request_rec *r)
debug_dump_uri(r); debug_dump_uri(r);
ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "aa_enter_hat (%s) n:0x%lx p:0x%lx main:0x%lx", ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "aa_enter_hat (%s) n:0x%lx p:0x%lx main:0x%lx",
dcfg->path, (unsigned long) r->next, (unsigned long) r->prev, dcfg->path, (unsigned long) r->next, (unsigned long) r->prev,
(unsigned long) r->main); (unsigned long) r->main);
/* We only call change_hat for the main request, not subrequests */ /* We only call change_hat for the main request, not subrequests */
if (r->main) if (r->main)
return OK; return OK;
if (inside_default_hat) { if (inside_default_hat) {
aa_change_hat(NULL, magic_token); aa_change_hat(NULL, magic_token);
inside_default_hat = 0; inside_default_hat = 0;
} }
if (dcfg != NULL && dcfg->hat_name != NULL) { if (dcfg != NULL && dcfg->hat_name != NULL) {
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
"[dcfg] adding hat '%s' to aa_change_hat vector", dcfg->hat_name); "[dcfg] adding hat '%s' to aa_change_hat vector", dcfg->hat_name);
aa_hat_array[i++] = dcfg->hat_name; aa_hat_array[i++] = dcfg->hat_name;
} }
if (scfg) { if (scfg) {
ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "Dumping scfg info: " ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "Dumping scfg info: "
"scfg='0x%lx' scfg->hat_name='%s'", "scfg='0x%lx' scfg->hat_name='%s'",
(unsigned long) scfg, scfg->hat_name); (unsigned long) scfg, scfg->hat_name);
} else { } else {
ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "scfg is null"); ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "scfg is null");
} }
if (scfg != NULL) { if (scfg != NULL) {
if (scfg->hat_name != NULL) { if (scfg->hat_name != NULL) {
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
"[scfg] adding hat '%s' to aa_change_hat vector", scfg->hat_name); "[scfg] adding hat '%s' to aa_change_hat vector", scfg->hat_name);
aa_hat_array[i++] = scfg->hat_name; aa_hat_array[i++] = scfg->hat_name;
} else { } else {
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
"[scfg] adding server_name '%s' to aa_change_hat vector", "[scfg] adding server_name '%s' to aa_change_hat vector",
r->server->server_hostname); r->server->server_hostname);
aa_hat_array[i++] = r->server->server_hostname; aa_hat_array[i++] = r->server->server_hostname;
} }
vhost_uri = apr_pstrcat(r->pool, r->server->server_hostname, "-", r->uri, NULL); vhost_uri = apr_pstrcat(r->pool, r->server->server_hostname, "-", r->uri, NULL);
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
"[vhost+uri] adding vhost+uri '%s' to aa_change_hat vector", vhost_uri); "[vhost+uri] adding vhost+uri '%s' to aa_change_hat vector", vhost_uri);
aa_hat_array[i++] = vhost_uri; aa_hat_array[i++] = vhost_uri;
} }
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
"[uri] adding uri '%s' to aa_change_hat vector", r->uri); "[uri] adding uri '%s' to aa_change_hat vector", r->uri);
aa_hat_array[i++] = r->uri; aa_hat_array[i++] = r->uri;
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
"[default] adding '%s' to aa_change_hat vector", DEFAULT_URI_HAT); "[default] adding '%s' to aa_change_hat vector", DEFAULT_URI_HAT);
aa_hat_array[i++] = DEFAULT_URI_HAT; aa_hat_array[i++] = DEFAULT_URI_HAT;
aa_ret = aa_change_hatv(aa_hat_array, magic_token); aa_ret = aa_change_hatv(aa_hat_array, magic_token);
@ -207,28 +208,28 @@ aa_enter_hat(request_rec *r)
if (aa_ret < 0) { if (aa_ret < 0) {
ap_log_rerror(APLOG_MARK, APLOG_WARNING, errno, r, "aa_getcon call failed"); ap_log_rerror(APLOG_MARK, APLOG_WARNING, errno, r, "aa_getcon call failed");
} else { } else {
ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r,
"AA checks: aa_getcon result is '%s', mode '%s'", aa_con, aa_mode); "AA checks: aa_getcon result is '%s', mode '%s'", aa_con, aa_mode);
/* TODO: use libapparmor get hat_name fn here once it is implemented */ /* TODO: use libapparmor get hat_name fn here once it is implemented */
aa_hat = strstr(aa_con, "//"); aa_hat = strstr(aa_con, "//");
if (aa_hat != NULL && strcmp(aa_mode, "enforce") == 0) { if (aa_hat != NULL && strcmp(aa_mode, "enforce") == 0) {
aa_hat += 2; /* skip "//" */ aa_hat += 2; /* skip "//" */
ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r,
"AA checks: apache is in hat '%s', mode '%s'", aa_hat, aa_mode); "AA checks: apache is in hat '%s', mode '%s'", aa_hat, aa_mode);
if (dcfg != NULL && dcfg->hat_name != NULL) { if (dcfg != NULL && dcfg->hat_name != NULL) {
if (strcmp(aa_hat, dcfg->hat_name) != 0) if (strcmp(aa_hat, dcfg->hat_name) != 0)
ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r,
"AAHatName '%s' applies, but does not appear to be a hat in the apache apparmor policy", "AAHatName '%s' applies, but does not appear to be a hat in the apache apparmor policy",
dcfg->hat_name); dcfg->hat_name);
} else if (scfg != NULL && scfg->hat_name != NULL) { } else if (scfg != NULL && scfg->hat_name != NULL) {
if (strcmp(aa_hat, scfg->hat_name) != 0 && if (strcmp(aa_hat, scfg->hat_name) != 0 &&
strcmp(aa_hat, r->uri) != 0) strcmp(aa_hat, r->uri) != 0)
ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r,
"AADefaultHatName '%s' applies, but does not appear to be a hat in the apache apparmor policy", "AADefaultHatName '%s' applies, but does not appear to be a hat in the apache apparmor policy",
scfg->hat_name); scfg->hat_name);
} }
} }
free(aa_con); free(aa_con);
} }
return OK; return OK;
@ -239,11 +240,11 @@ aa_exit_hat(request_rec *r)
{ {
int aa_ret; int aa_ret;
apparmor_dir_cfg *dcfg = (apparmor_dir_cfg *) apparmor_dir_cfg *dcfg = (apparmor_dir_cfg *)
ap_get_module_config(r->per_dir_config, &apparmor_module); ap_get_module_config(r->per_dir_config, &apparmor_module);
/* apparmor_srv_cfg *scfg = (apparmor_srv_cfg *) /* apparmor_srv_cfg *scfg = (apparmor_srv_cfg *)
ap_get_module_config(r->server->module_config, &apparmor_module); */ ap_get_module_config(r->server->module_config, &apparmor_module); */
ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "exiting change_hat: dir hat %s dir path %s", ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, "exiting change_hat: dir hat %s dir path %s",
dcfg->hat_name, dcfg->path); dcfg->hat_name, dcfg->path);
/* can convert the following back to aa_change_hat() when the /* can convert the following back to aa_change_hat() when the
* aa_change_hat() bug addressed in trunk commit 2329 lands in most * aa_change_hat() bug addressed in trunk commit 2329 lands in most
@ -253,7 +254,7 @@ aa_exit_hat(request_rec *r)
aa_ret = aa_change_hat(DEFAULT_HAT, magic_token); aa_ret = aa_change_hat(DEFAULT_HAT, magic_token);
if (aa_ret < 0) { if (aa_ret < 0) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, errno, r, ap_log_rerror(APLOG_MARK, APLOG_ERR, errno, r,
"Failed to change_hat to '%s'", DEFAULT_HAT); "Failed to change_hat to '%s'", DEFAULT_HAT);
} else { } else {
inside_default_hat = 1; inside_default_hat = 1;
} }
@ -262,15 +263,15 @@ aa_exit_hat(request_rec *r)
} }
static const char * static const char *
aa_cmd_ch_path (cmd_parms * cmd, void * mconfig, const char * parm1) aa_cmd_ch_path(cmd_parms *cmd, void *mconfig, const char *parm1)
{ {
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, "directory config change hat %s", ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, "directory config change hat %s",
parm1 ? parm1 : "DEFAULT"); parm1 ? parm1 : "DEFAULT");
apparmor_dir_cfg *dcfg = mconfig; apparmor_dir_cfg *dcfg = mconfig;
if (parm1 != NULL) { if (parm1 != NULL) {
dcfg->hat_name = parm1; dcfg->hat_name = parm1;
} else { } else {
dcfg->hat_name = "DEFAULT"; dcfg->hat_name = "DEFAULT";
} }
return NULL; return NULL;
} }
@ -278,27 +279,27 @@ aa_cmd_ch_path (cmd_parms * cmd, void * mconfig, const char * parm1)
static int path_warn_once; static int path_warn_once;
static const char * static const char *
immunix_cmd_ch_path (cmd_parms * cmd, void * mconfig, const char * parm1) immunix_cmd_ch_path(cmd_parms *cmd, void *mconfig, const char *parm1)
{ {
if (path_warn_once == 0) { if (path_warn_once == 0) {
ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf, "ImmHatName is " ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf, "ImmHatName is "
"deprecated, please use AAHatName instead"); "deprecated, please use AAHatName instead");
path_warn_once = 1; path_warn_once = 1;
} }
return aa_cmd_ch_path(cmd, mconfig, parm1); return aa_cmd_ch_path(cmd, mconfig, parm1);
} }
static const char * static const char *
aa_cmd_ch_srv (cmd_parms * cmd, void * mconfig, const char * parm1) aa_cmd_ch_srv(cmd_parms *cmd, void *mconfig, const char *parm1)
{ {
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, "server config change hat %s", ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, "server config change hat %s",
parm1 ? parm1 : "DEFAULT"); parm1 ? parm1 : "DEFAULT");
apparmor_srv_cfg *scfg = (apparmor_srv_cfg *) apparmor_srv_cfg *scfg = (apparmor_srv_cfg *)
ap_get_module_config(cmd->server->module_config, &apparmor_module); ap_get_module_config(cmd->server->module_config, &apparmor_module);
if (parm1 != NULL) { if (parm1 != NULL) {
scfg->hat_name = parm1; scfg->hat_name = parm1;
} else { } else {
scfg->hat_name = "DEFAULT"; scfg->hat_name = "DEFAULT";
} }
return NULL; return NULL;
} }
@ -306,12 +307,12 @@ aa_cmd_ch_srv (cmd_parms * cmd, void * mconfig, const char * parm1)
static int srv_warn_once; static int srv_warn_once;
static const char * static const char *
immunix_cmd_ch_srv (cmd_parms * cmd, void * mconfig, const char * parm1) immunix_cmd_ch_srv(cmd_parms *cmd, void *mconfig, const char *parm1)
{ {
if (srv_warn_once == 0) { if (srv_warn_once == 0) {
ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf, "ImmDefaultHatName is " ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf, "ImmDefaultHatName is "
"deprecated, please use AADefaultHatName instead"); "deprecated, please use AADefaultHatName instead");
srv_warn_once = 1; srv_warn_once = 1;
} }
return aa_cmd_ch_srv(cmd, mconfig, parm1); return aa_cmd_ch_srv(cmd, mconfig, parm1);
} }
@ -322,13 +323,13 @@ aa_create_dir_config(apr_pool_t *p, char *path)
apparmor_dir_cfg *newcfg = (apparmor_dir_cfg *) apr_pcalloc(p, sizeof(*newcfg)); apparmor_dir_cfg *newcfg = (apparmor_dir_cfg *) apr_pcalloc(p, sizeof(*newcfg));
ap_log_error(APLOG_MARK, APLOG_TRACE1, 0, ap_server_conf, ap_log_error(APLOG_MARK, APLOG_TRACE1, 0, ap_server_conf,
"aa_create_dir_cfg (%s)", path ? path : ":no path:"); "aa_create_dir_cfg (%s)", path ? path : ":no path:");
if (newcfg == NULL) { if (newcfg == NULL) {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, ap_server_conf, ap_log_error(APLOG_MARK, APLOG_ERR, 0, ap_server_conf,
"aa_create_dir_config: couldn't alloc dir config"); "aa_create_dir_config: couldn't alloc dir config");
return NULL; return NULL;
} }
newcfg->path = apr_pstrdup (p, path ? path : ":no path:"); newcfg->path = apr_pstrdup(p, path ? path : ":no path:");
return newcfg; return newcfg;
} }
@ -336,13 +337,13 @@ aa_create_dir_config(apr_pool_t *p, char *path)
/* XXX: Should figure out an appropriate action to take here, if any /* XXX: Should figure out an appropriate action to take here, if any
static void * static void *
aa_merge_dir_config(apr_pool_t * p, void * parent, void * child) aa_merge_dir_config(apr_pool_t *p, void *parent, void *child)
{ {
apparmor_dir_cfg *newcfg = (apparmor_dir_cfg *) apr_pcalloc(p, sizeof(*newcfg)); apparmor_dir_cfg *newcfg = (apparmor_dir_cfg *) apr_pcalloc(p, sizeof(*newcfg));
ap_log_error(APLOG_MARK, APLOG_TRACE1, 0, ap_server_conf, "in immunix_merge_dir ()"); ap_log_error(APLOG_MARK, APLOG_TRACE1, 0, ap_server_conf, "in immunix_merge_dir ()");
if (newcfg == NULL) if (newcfg == NULL)
return NULL; return NULL;
return newcfg; return newcfg;
} }
@ -354,11 +355,11 @@ aa_create_srv_config(apr_pool_t *p, server_rec *srv)
apparmor_srv_cfg *newcfg = (apparmor_srv_cfg *) apr_pcalloc(p, sizeof(*newcfg)); apparmor_srv_cfg *newcfg = (apparmor_srv_cfg *) apr_pcalloc(p, sizeof(*newcfg));
ap_log_error(APLOG_MARK, APLOG_TRACE1, 0, ap_server_conf, ap_log_error(APLOG_MARK, APLOG_TRACE1, 0, ap_server_conf,
"in aa_create_srv_config"); "in aa_create_srv_config");
if (newcfg == NULL) { if (newcfg == NULL) {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, ap_server_conf, ap_log_error(APLOG_MARK, APLOG_ERR, 0, ap_server_conf,
"aa_create_srv_config: couldn't alloc srv config"); "aa_create_srv_config: couldn't alloc srv config");
return NULL; return NULL;
} }
return newcfg; return newcfg;
@ -367,39 +368,39 @@ aa_create_srv_config(apr_pool_t *p, server_rec *srv)
static const command_rec mod_apparmor_cmds[] = { static const command_rec mod_apparmor_cmds[] = {
AP_INIT_TAKE1 ( AP_INIT_TAKE1(
"ImmHatName", "ImmHatName",
immunix_cmd_ch_path, immunix_cmd_ch_path,
NULL, NULL,
ACCESS_CONF, ACCESS_CONF,
"" ""
), ),
AP_INIT_TAKE1 ( AP_INIT_TAKE1(
"ImmDefaultHatName", "ImmDefaultHatName",
immunix_cmd_ch_srv, immunix_cmd_ch_srv,
NULL, NULL,
RSRC_CONF, RSRC_CONF,
"" ""
), ),
AP_INIT_TAKE1 ( AP_INIT_TAKE1(
"AAHatName", "AAHatName",
aa_cmd_ch_path, aa_cmd_ch_path,
NULL, NULL,
ACCESS_CONF, ACCESS_CONF,
"" ""
), ),
AP_INIT_TAKE1 ( AP_INIT_TAKE1(
"AADefaultHatName", "AADefaultHatName",
aa_cmd_ch_srv, aa_cmd_ch_srv,
NULL, NULL,
RSRC_CONF, RSRC_CONF,
"" ""
), ),
{ NULL } { NULL }
}; };
static void static void
register_hooks (apr_pool_t *p) register_hooks(apr_pool_t *p)
{ {
ap_hook_post_config(aa_init, NULL, NULL, APR_HOOK_MIDDLE); ap_hook_post_config(aa_init, NULL, NULL, APR_HOOK_MIDDLE);
ap_hook_child_init(aa_child_init, NULL, NULL, APR_HOOK_MIDDLE); ap_hook_child_init(aa_child_init, NULL, NULL, APR_HOOK_MIDDLE);
@ -410,11 +411,11 @@ register_hooks (apr_pool_t *p)
module AP_MODULE_DECLARE_DATA apparmor_module = { module AP_MODULE_DECLARE_DATA apparmor_module = {
STANDARD20_MODULE_STUFF, STANDARD20_MODULE_STUFF,
aa_create_dir_config, /* dir config creater */ aa_create_dir_config, /* dir config creater */
NULL, /* dir merger --- default is to override */ NULL, /* dir merger --- default is to override */
/* immunix_merge_dir_config, */ /* dir merger --- default is to override */ /* immunix_merge_dir_config, */ /* dir merger --- default is to override */
aa_create_srv_config, /* server config */ aa_create_srv_config, /* server config */
NULL, /* merge server config */ NULL, /* merge server config */
mod_apparmor_cmds, /* command table */ mod_apparmor_cmds, /* command table */
register_hooks /* register hooks */ register_hooks /* register hooks */
}; };