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_ON_EREPORT ruleset.
30 * Produce a single event of class ereport.<raw-class>.<raw_subclass>.
31 * If either the raw class or subclass is NULL, drop the event.
32 * The event will have the raw attributes.
33 */
34 /*ARGSUSED*/
35 uint_t
fmevt_pp_on_ereport(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)36 fmevt_pp_on_ereport(char *classes[FMEVT_FANOUT_MAX],
37 nvlist_t *attr[FMEVT_FANOUT_MAX], const char *ruleset,
38 const nvlist_t *detector, nvlist_t *rawattr,
39 const struct fmevt_ppargs *eap)
40 {
41 if (eap->pp_rawclass == NULL || eap->pp_rawsubclass == NULL)
42 return (0);
43
44 if (snprintf(classes[0], FMEVT_MAX_CLASS, "%s.%s.%s", FM_EREPORT_CLASS,
45 eap->pp_rawclass, eap->pp_rawsubclass) >= FMEVT_MAX_CLASS - 1)
46 return (0);
47
48 attr[0] = rawattr;
49 return (1);
50 }
51
52 /*
53 * Post-processing according to the FMEV_RULESET_ON_PRIVATE ruleset.
54 * Produce a single event of class
55 * ireport.private.solaris-osnet.<raw-class>.<raw_subclass>.
56 * If either the raw class or subclass is NULL, drop the event.
57 * The event will have the raw attributes.
58 */
59 /*ARGSUSED*/
60 uint_t
fmevt_pp_on_private(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)61 fmevt_pp_on_private(char *classes[FMEVT_FANOUT_MAX],
62 nvlist_t *attr[FMEVT_FANOUT_MAX], const char *ruleset,
63 const nvlist_t *detector, nvlist_t *rawattr,
64 const struct fmevt_ppargs *eap)
65 {
66 if (eap->pp_rawclass == NULL || eap->pp_rawsubclass == NULL)
67 return (0);
68
69 if (snprintf(classes[0], FMEVT_MAX_CLASS, "%s.%s.%s.%s",
70 FM_IREPORT_CLASS, "private.solaris-osnet",
71 eap->pp_rawclass, eap->pp_rawsubclass) >= FMEVT_MAX_CLASS - 1)
72 return (0);
73
74 attr[0] = rawattr;
75 return (1);
76 }
77