secdb.h revision 134a1f4e3289b54e0f980e9cf05352e419a60bee
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
*/
#ifndef _SECDB_H
#define _SECDB_H
#ifdef __cplusplus
extern "C" {
#endif
#define DEFAULT_POLICY "solaris"
#define SUSER_POLICY "suser" /* fallback: old policy */
#define KV_ACTION "act"
#define KV_COMMAND "cmd"
#define KV_JAVA_CLASS "java_class"
#define KV_JAVA_METHOD "java_method"
#define KV_ASSIGN "="
#define KV_DELIMITER ";"
#define KV_EMPTY ""
#define KV_ESCAPE '\\'
#define KV_ADD_KEYS 16 /* number of key value pairs to realloc */
#define KV_SPECIAL "=;:\\";
#define KV_TOKEN_DELIMIT ":"
#define KV_WILDCARD "*"
#define KV_WILDCHAR '*'
#define KV_ACTION_WILDCARD "*;*;*;*;*"
#define KV_SEPCHAR ','
#define KV_SEPSTR ","
#define KV_FLAG_NONE 0x0000
#define KV_FLAG_REQUIRED 0x0001
/*
* return status macros for all attribute databases
*/
#define ATTR_FOUND 0 /* Authoritative found */
#define ATTR_NOT_FOUND -1 /* Authoritative not found */
#define ATTR_NO_RECOVERY -2 /* Non-recoverable errors */
typedef struct kv_s {
char *key;
char *value;
} kv_t; /* A key-value pair */
typedef struct kva_s {
int length; /* array length */
kv_t *data; /* array of key value pairs */
} kva_t; /* Key-value array */
extern char *kva_match(kva_t *, char *);
extern int _auth_match(const char *, const char *);
extern char *_argv_to_csl(char **strings);
extern char **_csl_to_argv(char *csl);
extern char *_do_unescape(char *src);
extern void _free_argv(char **p_argv);
extern int _insert2kva(kva_t *, char *, char *);
extern int _kva2str(kva_t *, char *, int, char *, char *);
extern kva_t *_kva_dup(kva_t *);
extern void _kva_free(kva_t *);
extern kva_t *_new_kva(int size);
extern kva_t *_str2kva(char *, char *, char *);
extern int _enum_auths(const char *, int (*)(const char *, void *, void *),
void *ctxt, void *pres);
extern int _enum_profs(const char *,
int (*)(const char *, kva_t *, void *, void *), void *ctxt, void *pres);
extern int _enum_attrs(const char *,
int (*)(const char *, kva_t *, void *, void *), void *ctxt, void *pres);
#ifdef __cplusplus
}
#endif
#endif /* _SECDB_H */