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
|
/* safe_id_range_list.h. Generated by configure. */
#ifndef SAFE_ID_RANGE_LIST_H_
#define SAFE_ID_RANGE_LIST_H_
/*
* safefile package http://www.cs.wisc.edu/~kupsch/safefile
*
* Copyright 2007-2008 James A. Kupsch
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <limits.h>
/* define id_t to uid_t if not defined */
/* #undef id_t */
/* id used when an error occurs */
extern const id_t safe_err_id;
/* declare implementation data structure type */
struct safe_id_range_list_elem;
typedef struct safe_id_range_list
{
size_t count;
size_t capacity;
struct safe_id_range_list_elem *list;
} safe_id_range_list;
int safe_init_id_range_list(safe_id_range_list *list);
int safe_add_id_range_to_list(safe_id_range_list *list, id_t min_id, id_t max_id);
int safe_add_id_to_list(safe_id_range_list *list, id_t id);
void safe_destroy_id_range_list(safe_id_range_list *list);
int safe_is_id_in_list(safe_id_range_list *list, id_t id);
int safe_is_id_list_empty(safe_id_range_list *list);
uid_t safe_strto_uid(const char *value, const char **endptr);
gid_t safe_strto_gid(const char *value, const char **endptr);
id_t safe_strto_id(const char *value, const char **endptr);
void safe_strto_id_list(safe_id_range_list *list, const char *value, const char **endptr);
void safe_strto_uid_list(safe_id_range_list *list, const char *value, const char **endptr);
void safe_strto_gid_list(safe_id_range_list *list, const char *value, const char **endptr);
int safe_parse_id_list(safe_id_range_list *list, const char *value);
int safe_parse_uid_list(safe_id_range_list *list, const char *value);
int safe_parse_gid_list(safe_id_range_list *list, const char *value);
#endif
|