1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* 23*7c478bd9Sstevel@tonic-gate * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate #ifndef _SYSEVENTADM_H 28*7c478bd9Sstevel@tonic-gate #define _SYSEVENTADM_H 29*7c478bd9Sstevel@tonic-gate 30*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 31*7c478bd9Sstevel@tonic-gate 32*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 33*7c478bd9Sstevel@tonic-gate extern "C" { 34*7c478bd9Sstevel@tonic-gate #endif 35*7c478bd9Sstevel@tonic-gate 36*7c478bd9Sstevel@tonic-gate /* 37*7c478bd9Sstevel@tonic-gate * Directory where sysevent.conf files reside 38*7c478bd9Sstevel@tonic-gate */ 39*7c478bd9Sstevel@tonic-gate #define SYSEVENT_CONFIG_DIR "/etc/sysevent/config" 40*7c478bd9Sstevel@tonic-gate 41*7c478bd9Sstevel@tonic-gate /* 42*7c478bd9Sstevel@tonic-gate * Lock file name to serialize registry updates 43*7c478bd9Sstevel@tonic-gate */ 44*7c478bd9Sstevel@tonic-gate #define LOCK_FILENAME "sysevent.lock" 45*7c478bd9Sstevel@tonic-gate 46*7c478bd9Sstevel@tonic-gate /* 47*7c478bd9Sstevel@tonic-gate * Required suffix for all sysevent.conf files 48*7c478bd9Sstevel@tonic-gate */ 49*7c478bd9Sstevel@tonic-gate #define SYSEVENT_CONF_SUFFIX ",sysevent.conf" 50*7c478bd9Sstevel@tonic-gate 51*7c478bd9Sstevel@tonic-gate /* 52*7c478bd9Sstevel@tonic-gate * cmd types for list/remove 53*7c478bd9Sstevel@tonic-gate */ 54*7c478bd9Sstevel@tonic-gate #define CMD_LIST 0 55*7c478bd9Sstevel@tonic-gate #define CMD_REMOVE 1 56*7c478bd9Sstevel@tonic-gate 57*7c478bd9Sstevel@tonic-gate /* 58*7c478bd9Sstevel@tonic-gate * Exit codes 59*7c478bd9Sstevel@tonic-gate */ 60*7c478bd9Sstevel@tonic-gate #define EXIT_OK 0 61*7c478bd9Sstevel@tonic-gate #define EXIT_NO_MATCH 1 62*7c478bd9Sstevel@tonic-gate #define EXIT_USAGE 2 63*7c478bd9Sstevel@tonic-gate #define EXIT_PERM 3 64*7c478bd9Sstevel@tonic-gate #define EXIT_CMD_FAILED 4 65*7c478bd9Sstevel@tonic-gate #define EXIT_NO_MEM 5 66*7c478bd9Sstevel@tonic-gate 67*7c478bd9Sstevel@tonic-gate /* 68*7c478bd9Sstevel@tonic-gate * sysevent.conf record 69*7c478bd9Sstevel@tonic-gate */ 70*7c478bd9Sstevel@tonic-gate typedef struct serecord { 71*7c478bd9Sstevel@tonic-gate char *se_vendor; /* vendor */ 72*7c478bd9Sstevel@tonic-gate char *se_publisher; /* publisher */ 73*7c478bd9Sstevel@tonic-gate char *se_class; /* event class */ 74*7c478bd9Sstevel@tonic-gate char *se_subclass; /* event subclass */ 75*7c478bd9Sstevel@tonic-gate char *se_user; /* user */ 76*7c478bd9Sstevel@tonic-gate char *se_reserved1; /* reserved1 */ 77*7c478bd9Sstevel@tonic-gate char *se_reserved2; /* reserved2 */ 78*7c478bd9Sstevel@tonic-gate char *se_path; /* event path */ 79*7c478bd9Sstevel@tonic-gate char *se_args; /* optional args */ 80*7c478bd9Sstevel@tonic-gate } serecord_t; 81*7c478bd9Sstevel@tonic-gate 82*7c478bd9Sstevel@tonic-gate 83*7c478bd9Sstevel@tonic-gate /* 84*7c478bd9Sstevel@tonic-gate * Structures for building arbitarily long strings and argument lists 85*7c478bd9Sstevel@tonic-gate */ 86*7c478bd9Sstevel@tonic-gate typedef struct str { 87*7c478bd9Sstevel@tonic-gate char *s_str; 88*7c478bd9Sstevel@tonic-gate int s_len; 89*7c478bd9Sstevel@tonic-gate int s_alloc; 90*7c478bd9Sstevel@tonic-gate int s_hint; 91*7c478bd9Sstevel@tonic-gate } str_t; 92*7c478bd9Sstevel@tonic-gate 93*7c478bd9Sstevel@tonic-gate 94*7c478bd9Sstevel@tonic-gate /* 95*7c478bd9Sstevel@tonic-gate * Prototypes 96*7c478bd9Sstevel@tonic-gate */ 97*7c478bd9Sstevel@tonic-gate int main(int argc, char **argv); 98*7c478bd9Sstevel@tonic-gate static void enter_lock(char *root_dir); 99*7c478bd9Sstevel@tonic-gate static void exit_lock(void); 100*7c478bd9Sstevel@tonic-gate static void set_root_dir(char *dir); 101*7c478bd9Sstevel@tonic-gate static int usage(void); 102*7c478bd9Sstevel@tonic-gate static int add_cmd(void); 103*7c478bd9Sstevel@tonic-gate static int list_remove_cmd(int cmd); 104*7c478bd9Sstevel@tonic-gate static int list_file(char *fname); 105*7c478bd9Sstevel@tonic-gate static int remove_file(char *fname); 106*7c478bd9Sstevel@tonic-gate static int check_for_removes(FILE *fp); 107*7c478bd9Sstevel@tonic-gate static int restart_cmd(void); 108*7c478bd9Sstevel@tonic-gate 109*7c478bd9Sstevel@tonic-gate static str_t *read_next_line(FILE *fp); 110*7c478bd9Sstevel@tonic-gate static serecord_t *parse_line(str_t *line); 111*7c478bd9Sstevel@tonic-gate 112*7c478bd9Sstevel@tonic-gate static int matches_serecord(serecord_t *sep); 113*7c478bd9Sstevel@tonic-gate static void print_serecord(FILE *fp, serecord_t *sep); 114*7c478bd9Sstevel@tonic-gate static void free_serecord(serecord_t *sep); 115*7c478bd9Sstevel@tonic-gate 116*7c478bd9Sstevel@tonic-gate static char *skip_spaces(char **cpp); 117*7c478bd9Sstevel@tonic-gate static char *next_field(char **cpp); 118*7c478bd9Sstevel@tonic-gate static void *sc_malloc(size_t n); 119*7c478bd9Sstevel@tonic-gate static void *sc_realloc(void *p, size_t current, size_t n); 120*7c478bd9Sstevel@tonic-gate static void sc_free(void *p, size_t n); 121*7c478bd9Sstevel@tonic-gate static char *sc_strdup(char *cp); 122*7c478bd9Sstevel@tonic-gate static void sc_strfree(char *s); 123*7c478bd9Sstevel@tonic-gate 124*7c478bd9Sstevel@tonic-gate static str_t *initstr(int hint); 125*7c478bd9Sstevel@tonic-gate static void freestr(str_t *str); 126*7c478bd9Sstevel@tonic-gate static void resetstr(str_t *str); 127*7c478bd9Sstevel@tonic-gate static void strcats(str_t *str, char *s); 128*7c478bd9Sstevel@tonic-gate static void strcatc(str_t *str, int c); 129*7c478bd9Sstevel@tonic-gate static char *fstrgets(str_t *str, FILE *fp); 130*7c478bd9Sstevel@tonic-gate static char **build_strlist(char **, int *, int *, char *); 131*7c478bd9Sstevel@tonic-gate 132*7c478bd9Sstevel@tonic-gate static void no_mem_err(void); 133*7c478bd9Sstevel@tonic-gate 134*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 135*7c478bd9Sstevel@tonic-gate } 136*7c478bd9Sstevel@tonic-gate #endif 137*7c478bd9Sstevel@tonic-gate 138*7c478bd9Sstevel@tonic-gate #endif /* _SYSEVENTADM_H */ 139