Whamcloud - gitweb
LU-5862 changelog: Proper record remapping
[fs/lustre-release.git] / snmp / lustre-snmp-trap.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * snmp/lustre-snmp-trap.c
35  *
36  * Author: PJ Kirner <pjkirner@clusterfs.com>
37  */
38
39 /*
40  *   include important headers
41  */
42
43 #include <net-snmp/net-snmp-config.h>
44 #include <net-snmp/net-snmp-includes.h>
45 #include <net-snmp/agent/net-snmp-agent-includes.h>
46
47 /*
48  *  include our .h file
49  */ 
50
51 #include <sys/types.h>
52 #include <sys/vfs.h>
53 #include <dirent.h>
54 #include <sys/stat.h>
55 #include <unistd.h>
56 #include <stdio.h>
57 #include <stdarg.h>
58 #include <ctype.h>
59 #include "lustre-snmp-util.h"
60
61 /**************************************************************************
62  * Constants
63  *************************************************************************/
64
65 #define DEFAULT_POLL_INTERVAL_SECONDS   60
66 #define POLL_INTERVAL_ENV_VAR           "LSNMP_POLL_INTERVAL"
67 #define SNMP_HEALTH_CHECK_TEST_FILE     "LSNMP_HEALTH_CHECK_TEST_FILE"
68
69 /**************************************************************************
70  * Trap OIDS
71  *************************************************************************/
72
73 static oid objid_snmptrap[] =                       
74     { 1,3,6,1,6,3,1,1,4,1,0};
75 static oid lustre_portals_trap[] = 
76     { 1,3,6,1,4,1,13140,2,1,0,1};
77 static oid lustre_portals_trap_string[]= 
78     { 1,3,6,1,4,1,13140,2,1,0,2};
79 static oid lustre_unhealthy_trap[] = 
80     { 1,3,6,1,4,1,13140,2,1,0,3};
81 static oid lustre_unhealthy_trap_device_name_string[]= 
82     { 1,3,6,1,4,1,13140,2,1,0,4};
83 static oid lustre_unhealthy_trap_reason_string[]= 
84     { 1,3,6,1,4,1,13140,2,1,0,5};
85
86 /**************************************************************************
87  * Data structures
88  *************************************************************************/
89
90 typedef struct obd_unhealthy_entry_struct{
91
92     /*1-if seen as part of the the is_unhealthy scan, otherwise 0*/
93     int seen;                         
94
95     /*single linked list pointer*/
96     struct obd_unhealthy_entry_struct *next; 
97
98     /*obdname - variable size*/
99     char name[0];                     
100
101 }obd_unhealthy_entry;
102
103 /**************************************************************************
104  * Local functions
105  *************************************************************************/
106
107 int get_poll_interval_seconds();
108 void health_poll_worker(unsigned int registration_number, void *clientarg);
109 void send_portals_catastrophe_trap(char *reason_string);
110 void send_obd_unhealthy_trap(char *obd_name,char *reason_string);
111 int is_obd_newly_unhealthy(const char* obd_name);
112 void obd_unhealthy_scan(void);
113 void health_entry_parser(void);
114
115 /**************************************************************************
116  * Global variables
117  *************************************************************************/
118
119 static int g_sent_portals_catastrophe = 0;
120 static obd_unhealthy_entry* g_obd_unhealthy_list = NULL;
121 static int g_poll_interval_seconds;
122 static unsigned int g_registration_handle;
123 static char *g_health_check_test_file = 0;
124
125 /*****************************************************************************
126  * Function: initilize_trap_handler
127  *
128  * Description: Initlized the trap poll haalder.
129  *
130  * Input:   void
131  *
132  * Output:  Global g_poll_interval_seconds is set.
133  *
134  ****************************************************************************/
135  
136 void initilize_trap_handler(void)
137 {
138     g_poll_interval_seconds = get_poll_interval_seconds();
139
140     g_registration_handle = snmp_alarm_register(g_poll_interval_seconds, 0, health_poll_worker, NULL);
141     if (g_registration_handle == 0)
142         report("%s %s: line %d %s", __FILE__, __FUNCTION__, __LINE__,
143             "snmp_alarm_register failed");
144             
145     DEBUGMSGTL(("lsnmpd","lsnmp alarm registered poll interval = %d seconds\n",g_poll_interval_seconds));
146     
147     g_health_check_test_file = getenv(SNMP_HEALTH_CHECK_TEST_FILE);    
148     if(g_health_check_test_file != 0)
149         DEBUGMSGTL(("lsnmpd","lsnmp health check test file set to  \'%s\'\n",g_health_check_test_file));
150 }
151
152 /*****************************************************************************
153  * Function: terminate_trap_handler
154  *
155  * Description: Terminate the trap poll haalder.
156  *
157  * Input:   void
158  *
159  * Output:  Global g_poll_interval_seconds is set.
160  *
161  ****************************************************************************/
162
163 void terminate_trap_handler(void)
164 {
165     snmp_alarm_unregister(g_registration_handle);
166 }
167
168 /*****************************************************************************
169  * Function: get_poll_interval_seconds
170  *
171  * Description: This function used to get the poll period for timer, which 
172  *              is used to read throughput values periodically.
173  * Input:   void
174  * Output:  Alarm period, default value(if env var not set) otherwise.
175  ****************************************************************************/
176
177 int get_poll_interval_seconds()
178 {
179     char *alarm_period;
180     int ret_val = DEFAULT_POLL_INTERVAL_SECONDS;
181
182     /* Get Alarm period for reading the Lustre client table. */
183
184     alarm_period = getenv(POLL_INTERVAL_ENV_VAR);
185     if (alarm_period != NULL) {
186         char *ptr = alarm_period;
187         while(isdigit(*ptr)) ptr++;
188
189         /* if we have only digits then conver it*/
190         if (*ptr == '\0') {
191             int time = atoi(alarm_period);
192             if (time > 0)
193                 ret_val = time; /* Alarm period in seconds */
194         }
195     }
196     return ret_val;
197 }
198
199 /*****************************************************************************
200  * Function:  health_poll_worker
201  *
202  * Description: This is the routine registered to system timer for updating
203  *     the throughput values for all the clients and its respective osc(s).
204  *
205  * Input:  'registration_number` value obtained during the alarm registration
206  *         'clientarg' pointing to user defined data type.
207  * Output: void
208  *****************************************************************************/
209
210 void health_poll_worker(unsigned int registration_number, void *clientarg)
211 {
212     health_entry_parser();
213
214     /* Register the function again to call after lustre_alarm_period */
215     if (!snmp_alarm_register(g_poll_interval_seconds, 0, health_poll_worker, NULL)) {
216         report("%s %s:line %d %s", __FILE__, __FUNCTION__, __LINE__,
217                "snmp_alarm_register failed");
218     }
219 }
220
221 /*****************************************************************************
222  * Function:  health_entry_parser
223  *
224  * Description: This routine is called to parse the health_check entry
225  *              and send traps
226  * Input:  'None
227  * Output: void
228  *****************************************************************************/
229  
230  void health_entry_parser(void)
231 {
232     FILE    *fptr = NULL;
233     char string[MAX_LINE_SIZE];
234     int b_seen_portals_catastrophe = 0;
235     const char *filename =  g_health_check_test_file == 0 ? 
236             LUSTRE_PATH FILENAME_SYSHEALTHCHECK : 
237             g_health_check_test_file;
238     
239     /*DEBUGMSGTL(("lsnmpd","health_entry_parser(%s)\n",filename));*/
240
241     /* Open the file.  Use the test file env variable if
242        there is one */    
243     fptr = fopen(filename,"r");
244         
245     /* If the path is not found do nothing */
246     if( NULL == fptr)
247         return;
248        
249     while( NULL != fgets(string, sizeof(string), fptr)){
250         
251         /*DEBUGMSGTL(("lsnmpd","health_entry_parser() looking at = \'%s\'\n",string));*/
252        
253         /*
254          * First handle the portals catastrophe 
255          * Look for the string "LBUG"
256          */
257         if(0 == strncmp(string,"LBUG",4)){
258             /*
259              * If we haven't sent the catastrophe message yet
260              * send it now.  And keep track that we've sent it
261              */
262             if(!g_sent_portals_catastrophe){
263                 send_portals_catastrophe_trap("LBUG");
264                 g_sent_portals_catastrophe = 1;
265             }
266             b_seen_portals_catastrophe = 1;
267         }
268             
269         /*
270          * Now handle any of the OBD object failures
271          * look for "device <OBDNAME> reported unhealthy"
272          */
273         else if(0 == strncmp(string,"device ",7)){
274             char *obd_name = string+7;
275             char *space_after_obd_name;
276             
277             /*
278              * Now find the space after the obd name
279              * Again if there is no space we're in trouble
280              */
281             space_after_obd_name = strchr(obd_name,' ');
282             if(space_after_obd_name == 0)
283                 break;
284
285             /*
286              * Null terminate the obd_name
287              */
288             *space_after_obd_name = 0;
289             
290             DEBUGMSGTL(("lsnmpd","Looking at obd=%s\n",obd_name));
291
292             /*
293              * If we haven't sent a trap for this one
294              * then send it now
295              */
296             if(is_obd_newly_unhealthy(obd_name))
297                 send_obd_unhealthy_trap(obd_name,"unhealthy");
298         }
299     }        
300     
301     /* If we don't find it reset the catastrope flag*/            
302     if(!b_seen_portals_catastrophe && g_sent_portals_catastrophe)
303     {
304         DEBUGMSGTL(("lsnmpd","LBUG has been cleared\n"));
305         g_sent_portals_catastrophe = 0;
306     }
307                 
308     /*
309      *  Any <OBDNAMES> that weren't queried above are now unhealthy. 
310      * Scan through and cleanup the newly healthy obds
311      */
312     obd_unhealthy_scan();
313     
314     fclose(fptr);
315 }
316
317 /*****************************************************************************
318  * Function:  send_portals_catastrophe_trap
319  *
320  * Description: Send the SNMP V2 trap
321  *
322  * Input:  'reason_string' the reason for the catastrope.
323  
324  * Output: none
325  *****************************************************************************/
326  
327 void send_portals_catastrophe_trap(char *reason_string)
328 {
329     /*
330      * Setup the trap variables.  
331      * It's a linked list of netsnmp_variable_list items.
332      */
333     netsnmp_variable_list var_trap[2];
334
335     DEBUGMSGTL(("lsnmpd","Sending portals catastrophe trap reason=%s\n",reason_string));
336
337     /* 
338      * Setup the first variable in the trap data. 
339      * Have it chain to another variable.
340      */
341     var_trap[0].next_variable = &var_trap[1];
342
343     /*The "name" must be the standard snmp "trap" OID.*/
344     var_trap[0].name = objid_snmptrap;
345     var_trap[0].name_length = sizeof(objid_snmptrap) / sizeof(oid);
346
347     /*But the data contained in this variable, is an OID that is the trap OID.*/
348     var_trap[0].type = ASN_OBJECT_ID;
349     var_trap[0].val.objid = lustre_portals_trap;
350     var_trap[0].val_len = sizeof(lustre_portals_trap);
351
352     /* 
353      * Setup the second variable in the trap data. 
354      * It is the last in the chain so set next to NULL
355      */
356     var_trap[1].next_variable = NULL;
357
358     /*The "name" is the OID of the portals trap reason strong*/
359     var_trap[1].name = lustre_portals_trap_string;
360     var_trap[1].name_length = sizeof(lustre_portals_trap_string) / sizeof(oid);
361
362     /*And the data is a octet string, that contains the actually reason string*/
363     var_trap[1].type = ASN_OCTET_STR;
364     var_trap[1].val.string = (unsigned char *)reason_string;
365     var_trap[1].val_len = strlen(reason_string);
366
367     /*And now send off the trap*/
368     send_v2trap(var_trap);
369 }
370
371
372 /*****************************************************************************
373  * Function:  send_obd_unhealthy_trap
374  *
375  * Description: Send the SNMP V2 trap
376  *
377  * Input:  'obd_name' the name of the obd
378  *         'reason_string' the reason for the catastrope.
379  * Output: none
380  *****************************************************************************/
381  
382 void send_obd_unhealthy_trap(char *obd_name,char *reason_string)
383 {
384     /*
385      * Setup the trap variables.  
386      * It's a linked list of netsnmp_variable_list items.
387      */
388     netsnmp_variable_list var_trap[3];
389
390     DEBUGMSGTL(("lsnmpd","Sending OBD unhealthy trap obd=%s reason=%s\n",obd_name,reason_string));
391
392     /* 
393      * Setup the first variable in the trap data. 
394      * Have it chain to another variable.
395      */
396     var_trap[0].next_variable = &var_trap[1];
397
398     /*The "name" must be the standard snmp "trap" OID.*/
399     var_trap[0].name = objid_snmptrap;
400     var_trap[0].name_length = sizeof(objid_snmptrap) / sizeof(oid);
401
402     /*But the data contained in this variable, is an OID that is the trap OID.*/
403     var_trap[0].type = ASN_OBJECT_ID;
404     var_trap[0].val.objid = lustre_unhealthy_trap;
405     var_trap[0].val_len = sizeof(lustre_unhealthy_trap);
406
407     /* 
408      * Setup the second variable in the trap data. 
409      * Have it chain to another variable.
410      */
411     var_trap[1].next_variable = &var_trap[2];;
412
413     /*The "name" is the OID of the portals trap reason strong*/
414     var_trap[1].name = lustre_unhealthy_trap_device_name_string;
415     var_trap[1].name_length = sizeof(lustre_unhealthy_trap_device_name_string) / sizeof(oid);
416
417     /*And the data is a octet string, that contains the actually reason strong*/
418     var_trap[1].type = ASN_OCTET_STR;
419     var_trap[1].val.string = (unsigned char *)obd_name;
420     var_trap[1].val_len = strlen(obd_name);
421
422     /* 
423      * Setup the third variable in the trap data. 
424      * It is the last in the chain so set next to NULL
425      */
426     var_trap[2].next_variable = NULL;
427
428     /*The "name" is the OID of the portals trap reason strong*/
429     var_trap[2].name = lustre_unhealthy_trap_reason_string;
430     var_trap[2].name_length = sizeof(lustre_unhealthy_trap_reason_string) / sizeof(oid);
431
432     /*And the data is a octet string, that contains the actually reason strong*/
433     var_trap[2].type = ASN_OCTET_STR;
434     var_trap[2].val.string = (unsigned char *)reason_string;
435     var_trap[2].val_len = strlen(reason_string);
436
437     /*And now send off the trap*/
438     send_v2trap(var_trap);
439 }
440
441
442 /*****************************************************************************
443  * Function:  is_obd_newly_unhealthy
444  *
445  * Description: Deterime if the obd is going from health->unhealth
446  *              Also mark all unhealhy (new and old) as seen.
447  *
448  * Input:  'obd_name' the name of the obd
449  *
450  * Output: 1 if newly unhealthy 0 if previolsy unhealthy
451  *****************************************************************************/
452
453 int is_obd_newly_unhealthy(const char* obd_name)
454 {
455     /*for all elements in g_obd_unhealthy_list*/
456     obd_unhealthy_entry* walker;
457     obd_unhealthy_entry* entry;
458     int name_len;
459
460     for(walker = g_obd_unhealthy_list; walker != 0; walker = walker->next)
461     {
462         /*If the names match*/
463         if(0 == strcmp (walker->name,obd_name))
464         {
465             /* Commented out because it was just to noisy!
466              * DEBUGMSGTL(("lsnmpd","obd %s was already unhealthy\n",obd_name));
467              */
468             
469             /*Mark the entry as seen, and return that it was previously unhealthy*/
470             walker->seen =1;
471             return 0;
472         }
473     }
474
475     DEBUGMSGTL(("lsnmpd","obd %s is now unhealthy\n",obd_name));
476
477     /*We didn't find an entry so we need to create a new one. */
478     /*Calculate the obd_name length*/
479     name_len = strlen(obd_name)+1;
480
481     /*Allocate a new entry*/
482     entry = malloc(sizeof(*entry) + name_len);
483
484     /*Put this element at the front of the list*/
485     entry->next = g_obd_unhealthy_list;
486     g_obd_unhealthy_list = entry;
487
488     /*Mark it initially as seen*/
489     entry->seen = 1;
490
491     /*And copy the entry name*/
492     memcpy(entry->name,obd_name,name_len);
493
494     /*return this obd as newly unhealthy.*/
495     return 1;
496 }
497
498
499 /*****************************************************************************
500  * Function:  obd_unhealthy_scan
501  *
502  * Description: Deterime if any obd is going from unhealthy->healthy
503  *              Any of the obds that weren't "seen" by the 
504  *              is_obd_newly_unhealthy() pass are now health so 
505  *              remove them from the lists
506  *              Also clear all "seen" flags.
507  *
508  * Input:  None
509  * Output: None
510  *****************************************************************************/
511  
512 void obd_unhealthy_scan(void)
513 {
514     /*fore all elements in g_obd_unhealthy_list*/
515     obd_unhealthy_entry* walker = g_obd_unhealthy_list;
516     obd_unhealthy_entry* prev = 0;
517     while(walker != 0)
518     {
519         /*remove any that was not seen as unhealthy the last time*/
520         if(walker->seen == 0)
521         {
522             /*Remove element from the list, but first fix up the walker pointer*/
523             obd_unhealthy_entry* temp = walker;
524
525             DEBUGMSGTL(("lsnmpd","obd %s is now healthy\n",walker->name));
526
527             walker = walker->next;
528
529             /*Now adjust the pointers to effectively remove this entry*/
530             if(prev == 0)
531                 g_obd_unhealthy_list = walker;
532             else
533                 prev->next = walker;
534
535             /*And free the pointer. */
536             free(temp);
537             /*walker and prev are correctly setup so we can go around the loop again.*/
538         }
539
540         /*Mark all other entries as NOT seen for next pass through*/
541         else 
542         {
543             walker->seen = 0;
544             /*Go onto the next entry*/
545             prev = walker;
546             walker = walker->next;
547         }
548     }
549 }