1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
24  */
25 
26 #include "fmevt.h"
27 
28 /*
29  * Post-processing according to the FMEV_RULESET_UNREGISTERED ruleset.
30  *
31  * Generate a class of ireport.unregistered.<raw-class>.<raw-subclass>
32  * with attributes just those of the raw event.  If either the raw
33  * class or subclass is NULL or empty then drop the event.
34  */
35 /*ARGSUSED*/
36 uint_t
fmevt_pp_unregistered(char * classes[FMEVT_FANOUT_MAX],nvlist_t * attr[FMEVT_FANOUT_MAX],const char * ruleset,const nvlist_t * detector,nvlist_t * rawattr,const struct fmevt_ppargs * eap)37 fmevt_pp_unregistered(char *classes[FMEVT_FANOUT_MAX],
38     nvlist_t *attr[FMEVT_FANOUT_MAX], const char *ruleset,
39     const nvlist_t *detector, nvlist_t *rawattr,
40     const struct fmevt_ppargs *eap)
41 {
42 	if (eap->pp_rawclass == NULL || eap->pp_rawsubclass == NULL)
43 		return (0);
44 
45 	if (snprintf(classes[0], FMEVT_MAX_CLASS, "%s.%s.%s.%s",
46 	    FM_IREPORT_CLASS, "unregistered",
47 	    eap->pp_rawclass, eap->pp_rawsubclass) >= FMEVT_MAX_CLASS - 1)
48 		return (0);
49 
50 	attr[0] = rawattr;
51 	return (1);
52 }
53