// SPDX-License-Identifier: GPL-2.0-only /* * AppArmor security module * * This file contains AppArmor functions for unpacking policy loaded from * userspace. * * Copyright (C) 1998-2008 Novell/SUSE * Copyright 2009-2010 Canonical Ltd. * * AppArmor uses a serialized binary format for loading policy. To find * policy format documentation see Documentation/admin-guide/LSM/apparmor.rst * All policy is validated before it is used.
*/
if (ad->iface.ns) {
audit_log_format(ab, " ns=");
audit_log_untrustedstring(ab, ad->iface.ns);
} if (ad->name) {
audit_log_format(ab, " name=");
audit_log_untrustedstring(ab, ad->name);
} if (ad->iface.pos)
audit_log_format(ab, " offset=%ld", ad->iface.pos);
}
/** * audit_iface - do audit message for policy unpacking/load/replace/remove * @new: profile if it has been allocated (MAYBE NULL) * @ns_name: name of the ns the profile is to be loaded to (MAY BE NULL) * @name: name of the profile being manipulated (MAYBE NULL) * @info: any extra info about the failure (MAYBE NULL) * @e: buffer position info * @error: error code * * Returns: %0 or error
*/ staticint audit_iface(struct aa_profile *new, constchar *ns_name, constchar *name, constchar *info, struct aa_ext *e, int error)
{ struct aa_profile *profile = labels_profile(aa_current_raw_label());
DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_NONE, AA_CLASS_NONE, NULL); if (e)
ad.iface.pos = e->pos - e->start;
ad.iface.ns = ns_name; if (new)
ad.name = new->base.hname; else
ad.name = name;
ad.info = info;
ad.error = error;
/* * need to take the ns mutex lock which is NOT safe most places that * put_loaddata is called, so we have to delay freeing it
*/ staticvoid do_loaddata_free(struct work_struct *work)
{ struct aa_loaddata *d = container_of(work, struct aa_loaddata, work); struct aa_ns *ns = aa_get_ns(d->ns);
if (ns) {
mutex_lock_nested(&ns->lock, ns->level);
__aa_fs_remove_rawdata(d);
mutex_unlock(&ns->lock);
aa_put_ns(ns);
}
d = kzalloc(sizeof(*d), GFP_KERNEL); if (d == NULL) return ERR_PTR(-ENOMEM);
d->data = kvzalloc(size, GFP_KERNEL); if (!d->data) {
kfree(d); return ERR_PTR(-ENOMEM);
}
kref_init(&d->count);
INIT_LIST_HEAD(&d->list);
return d;
}
/* test if read will be in packed data bounds */
VISIBLE_IF_KUNIT bool aa_inbounds(struct aa_ext *e, size_t size)
{ return (size <= e->end - e->pos);
}
EXPORT_SYMBOL_IF_KUNIT(aa_inbounds);
/** * aa_unpack_u16_chunk - test and do bounds checking for a u16 size based chunk * @e: serialized data read head (NOT NULL) * @chunk: start address for chunk of data (NOT NULL) * * Returns: the size of chunk found with the read head at the end of the chunk.
*/
VISIBLE_IF_KUNIT size_t aa_unpack_u16_chunk(struct aa_ext *e, char **chunk)
{
size_t size = 0; void *pos = e->pos;
/* unpack control byte */
VISIBLE_IF_KUNIT bool aa_unpack_X(struct aa_ext *e, enum aa_code code)
{ if (!aa_inbounds(e, 1)) returnfalse; if (*(u8 *) e->pos != code) returnfalse;
e->pos++; returntrue;
}
EXPORT_SYMBOL_IF_KUNIT(aa_unpack_X);
/** * aa_unpack_nameX - check is the next element is of type X with a name of @name * @e: serialized data extent information (NOT NULL) * @code: type code * @name: name to match to the serialized element. (MAYBE NULL) * * check that the next serialized data element is of type X and has a tag * name @name. If @name is specified then there must be a matching * name element in the stream. If @name is NULL any name element will be * skipped and only the typecode will be tested. * * Returns true on success (both type code and name tests match) and the read * head is advanced past the headers * * Returns: false if either match fails, the read head does not move
*/
VISIBLE_IF_KUNIT bool aa_unpack_nameX(struct aa_ext *e, enum aa_code code, constchar *name)
{ /* * May need to reset pos if name or type doesn't match
*/ void *pos = e->pos; /* * Check for presence of a tagname, and if present name size * AA_NAME tag value is a u16.
*/ if (aa_unpack_X(e, AA_NAME)) { char *tag = NULL;
size_t size = aa_unpack_u16_chunk(e, &tag); /* if a name is specified it must match. otherwise skip tag */ if (name && (!size || tag[size-1] != '\0' || strcmp(name, tag))) goto fail;
} elseif (name) { /* if a name is specified and there is no name tag fail */ goto fail;
}
/* now check if type code matches */ if (aa_unpack_X(e, code)) returntrue;
/** * unpack_dfa - unpack a file rule dfa * @e: serialized data extent information (NOT NULL) * @flags: dfa flags to check * * returns dfa or ERR_PTR or NULL if no dfa
*/ staticstruct aa_dfa *unpack_dfa(struct aa_ext *e, int flags)
{ char *blob = NULL;
size_t size; struct aa_dfa *dfa = NULL;
size = aa_unpack_blob(e, &blob, "aadfa"); if (size) { /* * The dfa is aligned with in the blob to 8 bytes * from the beginning of the stream. * alignment adjust needed by dfa unpack
*/
size_t sz = blob - (char *) e->start -
((e->pos - e->start) & 7);
size_t pad = ALIGN(sz, 8) - sz; if (aa_g_paranoid_load)
flags |= DFA_FLAG_VERIFY_STATES;
dfa = aa_dfa_unpack(blob + pad, size - pad, flags);
if (IS_ERR(dfa)) return dfa;
}
return dfa;
}
/** * unpack_trans_table - unpack a profile transition table * @e: serialized data extent information (NOT NULL) * @strs: str table to unpack to (NOT NULL) * * Returns: true if table successfully unpacked or not present
*/ staticbool unpack_trans_table(struct aa_ext *e, struct aa_str_table *strs)
{ void *saved_pos = e->pos; char **table = NULL;
/* exec table is optional */ if (aa_unpack_nameX(e, AA_STRUCT, "xtable")) {
u16 size; int i;
if (!aa_unpack_array(e, NULL, &size)) /* * Note: index into trans table array is a max * of 2^24, but unpack array can only unpack * an array of 2^16 in size atm so no need * for size check here
*/ goto fail;
table = kcalloc(size, sizeof(char *), GFP_KERNEL); if (!table) goto fail;
strs->table = table;
strs->size = size; for (i = 0; i < size; i++) { char *str; int c, j, pos, size2 = aa_unpack_strdup(e, &str, NULL); /* aa_unpack_strdup verifies that the last character is * null termination byte.
*/ if (!size2) goto fail;
table[i] = str; /* verify that name doesn't start with space */ if (isspace(*str)) goto fail;
/* count internal # of internal \0 */ for (c = j = 0; j < size2 - 1; j++) { if (!str[j]) {
pos = j;
c++;
}
} if (*str == ':') { /* first character after : must be valid */ if (!str[1]) goto fail; /* beginning with : requires an embedded \0, * verify that exactly 1 internal \0 exists * trailing \0 already verified by aa_unpack_strdup * * convert \0 back to : for label_parse
*/ if (c == 1)
str[pos] = ':'; elseif (c > 1) goto fail;
} elseif (c) /* fail - all other cases with embedded \0 */ goto fail;
} if (!aa_unpack_nameX(e, AA_ARRAYEND, NULL)) goto fail; if (!aa_unpack_nameX(e, AA_STRUCTEND, NULL)) goto fail;
} returntrue;
AA_BUG(!perms); /* * policy perms are optional, in which case perms are embedded * in the dfa accept table
*/ if (aa_unpack_nameX(e, AA_STRUCT, "perms")) { int i;
u32 version;
if (!aa_unpack_u32(e, &version, "version")) goto fail_reset; if (!aa_unpack_array(e, NULL, &size)) goto fail_reset;
*perms = kcalloc(size, sizeof(struct aa_perms), GFP_KERNEL); if (!*perms) goto fail_reset; for (i = 0; i < size; i++) { if (!unpack_perm(e, version, &(*perms)[i])) goto fail;
} if (!aa_unpack_nameX(e, AA_ARRAYEND, NULL)) goto fail; if (!aa_unpack_nameX(e, AA_STRUCTEND, NULL)) goto fail;
} else
*perms = NULL;
if (pdb->perms) { /* perms table present accept is index */
flags = TO_ACCEPT1_FLAG(YYTD_DATA32); if (aa_unpack_u32(e, &version, "permsv") && version > 2) /* accept2 used for dfa flags */
flags |= TO_ACCEPT2_FLAG(YYTD_DATA32);
} else { /* packed perms in accept1 and accept2 */
flags = TO_ACCEPT1_FLAG(YYTD_DATA32) |
TO_ACCEPT2_FLAG(YYTD_DATA32);
}
pdb->dfa = unpack_dfa(e, flags); if (IS_ERR(pdb->dfa)) {
error = PTR_ERR(pdb->dfa);
pdb->dfa = NULL;
*info = "failed to unpack - dfa"; goto fail;
} elseif (!pdb->dfa) { if (required_dfa) {
*info = "missing required dfa"; goto fail;
}
} else { /* * only unpack the following if a dfa is present * * sadly start was given different names for file and policydb * but since it is optional we can try both
*/ if (!aa_unpack_u32(e, &pdb->start[0], "start")) /* default start state */
pdb->start[0] = DFA_START; if (!aa_unpack_u32(e, &pdb->start[AA_CLASS_FILE], "dfa_start")) { /* default start state for xmatch and file dfa */
pdb->start[AA_CLASS_FILE] = DFA_START;
} /* setup class index */ for (i = AA_CLASS_FILE + 1; i <= AA_CLASS_LAST; i++) {
pdb->start[i] = aa_dfa_next(pdb->dfa, pdb->start[0],
i);
}
}
/* accept2 is in some cases being allocated, even with perms */ if (pdb->perms && !pdb->dfa->tables[YYTD_ID_ACCEPT2]) { /* add dfa flags table missing in v2 */
u32 noents = pdb->dfa->tables[YYTD_ID_ACCEPT]->td_lolen;
u16 tdflags = pdb->dfa->tables[YYTD_ID_ACCEPT]->td_flags;
size_t tsize = table_size(noents, tdflags);
pdb->dfa->tables[YYTD_ID_ACCEPT2] = kvzalloc(tsize, GFP_KERNEL); if (!pdb->dfa->tables[YYTD_ID_ACCEPT2]) {
*info = "failed to alloc dfa flags table"; goto out;
}
pdb->dfa->tables[YYTD_ID_ACCEPT2]->td_lolen = noents;
pdb->dfa->tables[YYTD_ID_ACCEPT2]->td_flags = tdflags;
} /* * Unfortunately due to a bug in earlier userspaces, a * transition table may be present even when the dfa is * not. For compatibility reasons unpack and discard.
*/ if (!unpack_trans_table(e, &pdb->trans) && required_trans) {
*info = "failed to unpack profile transition table"; goto fail;
}
if (!pdb->dfa && pdb->trans.table)
aa_free_str_table(&pdb->trans);
/* TODO: * - move compat mapping here, requires dfa merging first * - move verify here, it has to be done after compat mappings * - move free of unneeded trans table here, has to be done * after perm mapping.
*/
out:
*policy = pdb; return 0;
/** * unpack_profile - unpack a serialized profile * @e: serialized data extent information (NOT NULL) * @ns_name: pointer of newly allocated copy of %NULL in case of error * * NOTE: unpack profile sets audit struct if there is a failure
*/ staticstruct aa_profile *unpack_profile(struct aa_ext *e, char **ns_name)
{ struct aa_ruleset *rules; struct aa_profile *profile = NULL; constchar *tmpname, *tmpns = NULL, *name = NULL; constchar *info = "failed to unpack profile";
size_t ns_len; struct rhashtable_params params = { 0 }; char *key = NULL, *disconnected = NULL; struct aa_data *data; int error = -EPROTO;
kernel_cap_t tmpcap;
u32 tmp;
*ns_name = NULL;
/* check that we have the right struct being passed */ if (!aa_unpack_nameX(e, AA_STRUCT, "profile")) goto fail; if (!aa_unpack_str(e, &name, NULL)) goto fail; if (*name == '\0') goto fail;
tmpname = aa_splitn_fqname(name, strlen(name), &tmpns, &ns_len); if (tmpns) { if (!tmpname) {
info = "empty profile name"; goto fail;
}
*ns_name = kstrndup(tmpns, ns_len, GFP_KERNEL); if (!*ns_name) {
info = "out of memory";
error = -ENOMEM; goto fail;
}
name = tmpname;
}
profile = aa_alloc_profile(name, NULL, GFP_KERNEL); if (!profile) {
info = "out of memory";
error = -ENOMEM; goto fail;
}
rules = profile->label.rules[0];
/* profile renaming is optional */
(void) aa_unpack_str(e, &profile->rename, "rename");
/* attachment string is optional */
(void) aa_unpack_str(e, &profile->attach.xmatch_str, "attach");
/* xmatch is optional and may be NULL */
error = unpack_pdb(e, &profile->attach.xmatch, false, false, &info); if (error) {
info = "bad xmatch"; goto fail;
}
/* neither xmatch_len not xmatch_perms are optional if xmatch is set */ if (profile->attach.xmatch->dfa) { if (!aa_unpack_u32(e, &tmp, NULL)) {
info = "missing xmatch len"; goto fail;
}
profile->attach.xmatch_len = tmp;
profile->attach.xmatch->start[AA_CLASS_XMATCH] = DFA_START; if (!profile->attach.xmatch->perms) {
error = aa_compat_map_xmatch(profile->attach.xmatch); if (error) {
info = "failed to convert xmatch permission table"; goto fail;
}
}
}
if (!aa_unpack_nameX(e, AA_STRUCTEND, NULL)) goto fail;
/* path_flags is optional */ if (aa_unpack_u32(e, &profile->path_flags, "path_flags"))
profile->path_flags |= profile->label.flags &
PATH_MEDIATE_DELETED; else /* set a default value if path_flags field is not present */
profile->path_flags = PATH_MEDIATE_DELETED;
info = "failed to unpack profile capabilities"; if (!aa_unpack_cap_low(e, &rules->caps.allow, NULL)) goto fail; if (!aa_unpack_cap_low(e, &rules->caps.audit, NULL)) goto fail; if (!aa_unpack_cap_low(e, &rules->caps.quiet, NULL)) goto fail; if (!aa_unpack_cap_low(e, &tmpcap, NULL)) goto fail;
info = "failed to unpack upper profile capabilities"; if (aa_unpack_nameX(e, AA_STRUCT, "caps64")) { /* optional upper half of 64 bit caps */ if (!aa_unpack_cap_high(e, &rules->caps.allow, NULL)) goto fail; if (!aa_unpack_cap_high(e, &rules->caps.audit, NULL)) goto fail; if (!aa_unpack_cap_high(e, &rules->caps.quiet, NULL)) goto fail; if (!aa_unpack_cap_high(e, &tmpcap, NULL)) goto fail; if (!aa_unpack_nameX(e, AA_STRUCTEND, NULL)) goto fail;
}
info = "failed to unpack extended profile capabilities"; if (aa_unpack_nameX(e, AA_STRUCT, "capsx")) { /* optional extended caps mediation mask */ if (!aa_unpack_cap_low(e, &rules->caps.extended, NULL)) goto fail; if (!aa_unpack_cap_high(e, &rules->caps.extended, NULL)) goto fail; if (!aa_unpack_nameX(e, AA_STRUCTEND, NULL)) goto fail;
}
if (!unpack_xattrs(e, profile)) {
info = "failed to unpack profile xattrs"; goto fail;
}
if (!unpack_rlimits(e, rules)) {
info = "failed to unpack profile rlimits"; goto fail;
}
if (!unpack_secmark(e, rules)) {
info = "failed to unpack profile secmark rules"; goto fail;
}
if (aa_unpack_nameX(e, AA_STRUCT, "policydb")) { /* generic policy dfa - optional and may be NULL */
info = "failed to unpack policydb";
error = unpack_pdb(e, &rules->policy, true, false,
&info); if (error) goto fail; /* Fixup: drop when we get rid of start array */ if (aa_dfa_next(rules->policy->dfa, rules->policy->start[0],
AA_CLASS_FILE))
rules->policy->start[AA_CLASS_FILE] =
aa_dfa_next(rules->policy->dfa,
rules->policy->start[0],
AA_CLASS_FILE); if (!aa_unpack_nameX(e, AA_STRUCTEND, NULL)) goto fail; if (!rules->policy->perms) {
error = aa_compat_map_policy(rules->policy,
e->version); if (error) {
info = "failed to remap policydb permission table"; goto fail;
}
}
} else {
rules->policy = aa_get_pdb(nullpdb);
} /* get file rules */
error = unpack_pdb(e, &rules->file, false, true, &info); if (error) { goto fail;
} elseif (rules->file->dfa) { if (!rules->file->perms) {
error = aa_compat_map_file(rules->file); if (error) {
info = "failed to remap file permission table"; goto fail;
}
}
} elseif (rules->policy->dfa &&
rules->policy->start[AA_CLASS_FILE]) {
aa_put_pdb(rules->file);
rules->file = aa_get_pdb(rules->policy);
} else {
aa_put_pdb(rules->file);
rules->file = aa_get_pdb(nullpdb);
}
error = -EPROTO; if (aa_unpack_nameX(e, AA_STRUCT, "data")) {
info = "out of memory";
profile->data = kzalloc(sizeof(*profile->data), GFP_KERNEL); if (!profile->data) {
error = -ENOMEM; goto fail;
}
params.nelem_hint = 3;
params.key_len = sizeof(void *);
params.key_offset = offsetof(struct aa_data, key);
params.head_offset = offsetof(struct aa_data, head);
params.hashfn = strhash;
params.obj_cmpfn = datacmp;
if (rhashtable_init(profile->data, ¶ms)) {
info = "failed to init key, value hash table"; goto fail;
}
while (aa_unpack_strdup(e, &key, NULL)) {
data = kzalloc(sizeof(*data), GFP_KERNEL); if (!data) {
kfree_sensitive(key);
error = -ENOMEM; goto fail;
}
if (rhashtable_insert_fast(profile->data, &data->head,
profile->data->p)) {
kvfree_sensitive(data->data, data->size);
kfree_sensitive(data->key);
kfree_sensitive(data);
info = "failed to insert data to table"; goto fail;
}
}
if (!aa_unpack_nameX(e, AA_STRUCTEND, NULL)) {
info = "failed to unpack end of key, value data table"; goto fail;
}
}
if (!aa_unpack_nameX(e, AA_STRUCTEND, NULL)) {
info = "failed to unpack end of profile"; goto fail;
}
aa_compute_profile_mediates(profile);
return profile;
fail: if (error == 0) /* default error covers most cases */
error = -EPROTO; if (*ns_name) {
kfree(*ns_name);
*ns_name = NULL;
} if (profile)
name = NULL; elseif (!name)
name = "unknown";
audit_iface(profile, NULL, name, info, e, error);
aa_free_profile(profile);
return ERR_PTR(error);
}
/** * verify_header - unpack serialized stream header * @e: serialized data read head (NOT NULL) * @required: whether the header is required or optional * @ns: Returns - namespace if one is specified else NULL (NOT NULL) * * Returns: error or 0 if header is good
*/ staticint verify_header(struct aa_ext *e, int required, constchar **ns)
{ int error = -EPROTONOSUPPORT; constchar *name = NULL;
*ns = NULL;
/* get the interface version */ if (!aa_unpack_u32(e, &e->version, "version")) { if (required) {
audit_iface(NULL, NULL, NULL, "invalid profile format",
e, error); return error;
}
}
/* Check that the interface version is currently supported. * if not specified use previous version * Mask off everything that is not kernel abi version
*/ if (VERSION_LT(e->version, v5) || VERSION_GT(e->version, v9)) {
audit_iface(NULL, NULL, NULL, "unsupported interface version",
e, error); return error;
}
/* read the namespace if present */ if (aa_unpack_str(e, &name, "namespace")) { if (*name == '\0') {
audit_iface(NULL, NULL, NULL, "invalid namespace name",
e, error); return error;
} if (*ns && strcmp(*ns, name)) {
audit_iface(NULL, NULL, NULL, "invalid ns change", e,
error);
} elseif (!*ns) {
*ns = kstrdup(name, GFP_KERNEL); if (!*ns) return -ENOMEM;
}
}
return 0;
}
/** * verify_dfa_accept_index - verify accept indexes are in range of perms table * @dfa: the dfa to check accept indexes are in range * @table_size: the permission table size the indexes should be within
*/ staticbool verify_dfa_accept_index(struct aa_dfa *dfa, int table_size)
{ int i; for (i = 0; i < dfa->tables[YYTD_ID_ACCEPT]->td_lolen; i++) { if (ACCEPT_TABLE(dfa)[i] >= table_size) returnfalse;
} returntrue;
}
staticbool verify_perm(struct aa_perms *perm)
{ /* TODO: allow option to just force the perms into a valid state */ if (perm->allow & perm->deny) returnfalse; if (perm->subtree & ~perm->allow) returnfalse; if (perm->cond & (perm->allow | perm->deny)) returnfalse; if (perm->kill & perm->allow) returnfalse; if (perm->complain & (perm->allow | perm->deny)) returnfalse; if (perm->prompt & (perm->allow | perm->deny)) returnfalse; if (perm->complain & perm->prompt) returnfalse; if (perm->hide & perm->allow) returnfalse;
returntrue;
}
staticbool verify_perms(struct aa_policydb *pdb)
{ int i; int xidx, xmax = -1;
for (i = 0; i < pdb->size; i++) { if (!verify_perm(&pdb->perms[i])) returnfalse; /* verify indexes into str table */ if ((pdb->perms[i].xindex & AA_X_TYPE_MASK) == AA_X_TABLE) {
xidx = pdb->perms[i].xindex & AA_X_INDEX_MASK; if (xidx >= pdb->trans.size) returnfalse; if (xmax < xidx)
xmax = xidx;
} if (pdb->perms[i].tag && pdb->perms[i].tag >= pdb->trans.size) returnfalse; if (pdb->perms[i].label &&
pdb->perms[i].label >= pdb->trans.size) returnfalse;
} /* deal with incorrectly constructed string tables */ if (xmax == -1) {
aa_free_str_table(&pdb->trans);
} elseif (pdb->trans.size > xmax + 1) { if (!aa_resize_str_table(&pdb->trans, xmax + 1, GFP_KERNEL)) returnfalse;
} returntrue;
}
/** * verify_profile - Do post unpack analysis to verify profile consistency * @profile: profile to verify (NOT NULL) * * Returns: 0 if passes verification else error * * This verification is post any unpack mapping or changes
*/ staticint verify_profile(struct aa_profile *profile)
{ struct aa_ruleset *rules = profile->label.rules[0];
if (!rules) return 0;
if (rules->file->dfa && !verify_dfa_accept_index(rules->file->dfa,
rules->file->size)) {
audit_iface(profile, NULL, NULL, "Unpack: file Invalid named transition", NULL,
-EPROTO); return -EPROTO;
} if (rules->policy->dfa &&
!verify_dfa_accept_index(rules->policy->dfa, rules->policy->size)) {
audit_iface(profile, NULL, NULL, "Unpack: policy Invalid named transition", NULL,
-EPROTO); return -EPROTO;
}
if (is_vmalloc_addr(out)) {
*dst = kvzalloc(out_len, GFP_KERNEL); if (*dst) {
memcpy(*dst, out, out_len);
kvfree(out);
out = NULL;
}
} else { /* * If the staging buffer was kmalloc'd, then using krealloc is * probably going to be faster. The destination buffer will * always be smaller, so it's just shrunk, avoiding a memcpy
*/
*dst = krealloc(out, out_len, GFP_KERNEL);
}
/* * Shortcut the no compression case, else we increase the amount of * storage required by a small amount
*/ if (aa_g_rawdata_compression_level != 0) { void *udata = data->data; int error = compress_zstd(udata, data->size, &data->data,
&data->compressed_size); if (error) {
data->compressed_size = data->size; return error;
} if (udata != data->data)
kvfree(udata);
} else
data->compressed_size = data->size;
return 0;
}
/** * aa_unpack - unpack packed binary profile(s) data loaded from user space * @udata: user data copied to kmem (NOT NULL) * @lh: list to place unpacked profiles in a aa_repl_ws * @ns: Returns namespace profile is in if specified else NULL (NOT NULL) * * Unpack user data and return refcounted allocated profile(s) stored in * @lh in order of discovery, with the list chain stored in base.list * or error * * Returns: profile(s) on @lh else error pointer if fails to unpack
*/ int aa_unpack(struct aa_loaddata *udata, struct list_head *lh, constchar **ns)
{ struct aa_load_ent *tmp, *ent; struct aa_profile *profile = NULL; char *ns_name = NULL; int error; struct aa_ext e = {
.start = udata->data,
.end = udata->data + udata->size,
.pos = udata->data,
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.