root/trunk/src/renetcolAgg.c @ 32

Revision 31, 9.6 KB (checked in by andreu, 16 years ago)

now, only subnets rrd files from routers who are seeing will be created - new scripts in tool

  • Property svn:eol-style set to native
Line 
1/*
2 * File: renetcolAgg.c
3 *
4 * Authors: ANDREU Francois-Xavier
5 *
6 * Copyright (C) 2007 GIP RENATER
7 */
8
9/*  This file is part of renetcol.
10 *
11 *  renetcol is free software; you can redistribute it and/or modify
12 *  it under the terms of the GNU General Public License as published by
13 *  the Free Software Foundation; either version 2 of the License, or
14 *  (at your option) any later version.
15 *
16 *  renetcol is distributed in the hope that it will be useful,
17 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 *  GNU General Public License for more details.
20 *
21 *  You should have received a copy of the GNU General Public License
22 *  along with renetcol; if not, write to the Free Software
23 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
24 */
25
26/*
27 * In this file, I use directly the C rrd librairy to create and update
28 * the rrd files which contain the statistique for each subnet.
29 * When your system (CPU+MEM+HD) is too fast and the number of your subnet too big
30 * (> 1024), the create and update process can be too fast and before the
31 * creation end the maximum number of files which can be opened for one process
32 * in the same time is reached. So we must temporize.
33 */
34
35#include "renetcolAgg.h"
36
37struct SHMForAgg *shmForAgg;
38
39int
40main(int argc, char *argv[])
41{
42  int shmid;
43  int i, j, index;
44  int rrd_update_er_ct = 0;
45  int rrd_update_ok_ct = 0;
46  int rrd_already_created_ct = 0;
47  int rrd_create_er_ct = 0;
48  int rrd_create_ok_ct = 0;
49  int rrd_ct = 0;
50  int isFirstUpdate = 1;
51  key_t key;
52  static char buf[2048];
53  static char name[2048];
54  static char ipStr[24];
55  static char createstr[2048];
56  char *opt[27];
57  char *optUpdate[3];
58  int res_rrd = 0;
59  FILE *fp;
60  static time_t now, now2;
61  struct shmid_ds shminfo;
62 
63  key = 8765;
64  if ((shmid = shmget(key, SHMSIZE, 0666)) < 0) {
65    perror("shmget");
66    exit(1);
67  }
68  if ((shmForAgg = (struct SHMForAgg *)shmat(shmid, (void *)0, 0)) == (void *) -1) {
69    perror("shmat");
70    exit(1);
71  }
72 
73  fprintf(stderr, "renetcolAgg: I become a deamon, next messages via syslogd. By.\n");
74  if (fork () != 0)
75    exit (0);
76  if (setsid() == -1){
77    exit(4);
78  }
79 
80  do {
81    if (shmForAgg->readed == 1) {
82      shmForAgg->readed = 0;
83      if (shmForAgg->currentTable == 0) {
84        index = 1;
85      }else{
86        index = 0;
87      }
88      now = time((time_t *)NULL);
89      if (isFirstUpdate == 0) {
90        for (i=0; i<shmForAgg->v4PrefixNb; i++){
91          /* HERE create or update RRD FILE */
92          if (shmForAgg->prefixV4Tab[index][i].sampling != 0) {
93            for (j=0; j<strlen(name); j++) {name[j] = '\0';}
94            for (j=0; j<strlen(createstr); j++) {createstr[j] = '\0';}
95            for (j=0; j<strlen(ipStr); j++) {ipStr[j] = '\0';}
96            for (j=0; j<strlen(buf); j++) {buf[j] = '\0';}
97            strcat(name, RRD_LOCATION);
98            sprintf(ipStr, "%lu_%lu_%lu_%lu_%hu_%lu",
99                    shmForAgg->prefixV4Tab[index][i].beginning>>24,
100                    shmForAgg->prefixV4Tab[index][i].beginning<<8>>24,
101                    shmForAgg->prefixV4Tab[index][i].beginning<<16>>24,
102                    shmForAgg->prefixV4Tab[index][i].beginning<<24>>24,
103                    shmForAgg->prefixV4Tab[index][i].mask,
104                    shmForAgg->prefixV4Tab[index][i].sampling
105                    );
106            strcat(name, ipStr);
107            strcat(name, RRD_EXTENSION);
108            if ( (fp=fopen(name,"r")) == NULL ){
109              opt[0]= (char *) malloc((strlen(RRD_PARAM_0) + 1) * sizeof(char));
110              strcpy(opt[0], RRD_PARAM_0);
111              opt[1]= (char *) malloc((strlen(name) + 1) * sizeof(char));
112              strcpy(opt[1], name);
113              opt[2]= (char *) malloc((strlen(RRD_PARAM_1) + 1) * sizeof(char));
114              strcpy(opt[2], RRD_PARAM_1);
115              opt[3]= (char *) malloc((strlen(RRD_PARAM_2) + 1) * sizeof(char));
116              strcpy(opt[3], RRD_PARAM_2);
117              opt[4]= (char *) malloc((strlen(RRD_PARAM_3) + 1) * sizeof(char));
118              strcpy(opt[4], RRD_PARAM_3);
119              opt[5]= (char *) malloc((strlen(RRD_PARAM_4) + 1) * sizeof(char));
120              strcpy(opt[5], RRD_PARAM_4);
121              opt[6]= (char *) malloc((strlen(RRD_PARAM_5) + 1) * sizeof(char));
122              strcpy(opt[6], RRD_PARAM_5);
123              opt[7]= (char *) malloc((strlen(RRD_PARAM_6) + 1) * sizeof(char));
124              strcpy(opt[7], RRD_PARAM_6);
125              opt[8]= (char *) malloc((strlen(RRD_PARAM_7) + 1) * sizeof(char));
126              strcpy(opt[8], RRD_PARAM_7);
127              opt[9]= (char *) malloc((strlen(RRD_PARAM_8) + 1) * sizeof(char));
128              strcpy(opt[9], RRD_PARAM_8);
129              opt[10]= (char *) malloc((strlen(RRD_PARAM_9) + 1) * sizeof(char));
130              strcpy(opt[10], RRD_PARAM_9);
131              opt[11]= (char *) malloc((strlen(RRD_PARAM_10) + 1) * sizeof(char));
132              strcpy(opt[11], RRD_PARAM_10);
133              opt[12]= (char *) malloc((strlen(RRD_PARAM_11) + 1) * sizeof(char));
134              strcpy(opt[12], RRD_PARAM_11);
135              opt[13]= (char *) malloc((strlen(RRD_PARAM_12) + 1) * sizeof(char));
136              strcpy(opt[13], RRD_PARAM_12);
137              opt[14]= (char *) malloc((strlen(RRD_PARAM_13) + 1) * sizeof(char));
138              strcpy(opt[14], RRD_PARAM_13);
139              opt[15]= (char *) malloc((strlen(RRD_PARAM_14) + 1) * sizeof(char));
140              strcpy(opt[15], RRD_PARAM_14);
141              opt[16]= (char *) malloc((strlen(RRD_PARAM_15) + 1) * sizeof(char));
142              strcpy(opt[16], RRD_PARAM_15);
143              opt[17]= (char *) malloc((strlen(RRD_PARAM_16) + 1) * sizeof(char));
144              strcpy(opt[17], RRD_PARAM_16);
145              opt[18]= (char *) malloc((strlen(RRD_PARAM_17) + 1) * sizeof(char));
146              strcpy(opt[18], RRD_PARAM_17);
147              opt[19]= (char *) malloc((strlen(RRD_PARAM_18) + 1) * sizeof(char));
148              strcpy(opt[19], RRD_PARAM_18);
149              opt[20]= (char *) malloc((strlen(RRD_PARAM_19) + 1) * sizeof(char));
150              strcpy(opt[20], RRD_PARAM_19);
151              opt[21]= (char *) malloc((strlen(RRD_PARAM_20) + 1) * sizeof(char));
152              strcpy(opt[21], RRD_PARAM_20);
153              opt[22]= (char *) malloc((strlen(RRD_PARAM_21) + 1) * sizeof(char));
154              strcpy(opt[22], RRD_PARAM_21);
155              opt[23]= (char *) malloc((strlen(RRD_PARAM_22) + 1) * sizeof(char));
156              strcpy(opt[23], RRD_PARAM_22);
157              opt[24]= (char *) malloc((strlen(RRD_PARAM_23) + 1) * sizeof(char));
158              strcpy(opt[24], RRD_PARAM_23);
159              opt[25]= (char *) malloc((strlen(RRD_PARAM_24) + 1) * sizeof(char));
160              strcpy(opt[25], RRD_PARAM_24);
161              opt[26]= (char *) malloc((strlen(RRD_PARAM_25) + 1) * sizeof(char));
162              strcpy(opt[26], RRD_PARAM_25);
163              optind = opterr = 0;
164              rrd_clear_error();
165              if ( rrd_create(27,opt) < 0) {
166                syslog(LOG_ERR, "RRD create file %s, error: %s\n", name, rrd_get_error());
167                rrd_create_er_ct++;
168              } else {
169                rrd_create_ok_ct++;
170              }
171              for ( j=0; j<27; j++) {
172                free(opt[j]);
173                opt[j] = NULL;
174              }
175            }else{
176              fclose(fp);
177              rrd_already_created_ct++;
178              snprintf(buf,
179                       2048,
180                       "%lu:%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu:%llu"
181                       now-300,  /* or ctime(&now) with %s */
182                       shmForAgg->prefixV4Tab[index][i].flowNbIN,  /* 1 */
183                       shmForAgg->prefixV4Tab[index][i].flowNbOUT,
184                       shmForAgg->prefixV4Tab[index][i].bytesNbIN,
185                       shmForAgg->prefixV4Tab[index][i].bytesNbOUT,
186                       shmForAgg->prefixV4Tab[index][i].pktsNbIN,  /* 5 */
187                       shmForAgg->prefixV4Tab[index][i].pktsNbOUT,
188                       shmForAgg->prefixV4Tab[index][i].firstCoSIN,
189                       shmForAgg->prefixV4Tab[index][i].firstCoSOUT,
190                       shmForAgg->prefixV4Tab[index][i].secondCoSIN,
191                       shmForAgg->prefixV4Tab[index][i].secondCoSOUT,
192                       shmForAgg->prefixV4Tab[index][i].thirdCoSIN,
193                       shmForAgg->prefixV4Tab[index][i].thirdCoSOUT,
194                       shmForAgg->prefixV4Tab[index][i].fourthCoSIN,
195                       shmForAgg->prefixV4Tab[index][i].fourthCoSOUT
196                       );
197              optUpdate[0]= (char *) malloc((strlen(RRD_UPDATE_0) + 1) * sizeof(char));
198              strcpy(optUpdate[0], RRD_UPDATE_0);
199              optUpdate[1]= (char *) malloc((strlen(name) + 1) * sizeof(char));
200              strcpy(optUpdate[1], name);
201              optUpdate[2]= (char *) malloc((strlen(buf) + 1) * sizeof(char));
202              strcpy(optUpdate[2], buf);
203              optind = opterr = 0;
204              rrd_clear_error();
205              if ( rrd_update(3, optUpdate) < 0 ) {
206                syslog(LOG_ERR, "RRD update file %s, error: %s\n", name, rrd_get_error());
207                rrd_update_er_ct++;
208              } else {
209                rrd_update_ok_ct++;
210              }
211              for ( j=0; j<3; j++) {
212                free(optUpdate[j]);
213                optUpdate[j] = NULL;
214              }
215            }
216            /* Reinit the shared table */
217            shmForAgg->prefixV4Tab[index][i].flowNbIN = 0;
218            shmForAgg->prefixV4Tab[index][i].bytesNbIN = 0;
219            shmForAgg->prefixV4Tab[index][i].pktsNbIN = 0;
220            shmForAgg->prefixV4Tab[index][i].flowNbOUT = 0;
221            shmForAgg->prefixV4Tab[index][i].bytesNbOUT = 0;
222            shmForAgg->prefixV4Tab[index][i].pktsNbOUT = 0;
223            shmForAgg->prefixV4Tab[index][i].firstCoSIN = 0;
224            shmForAgg->prefixV4Tab[index][i].secondCoSIN = 0;
225            shmForAgg->prefixV4Tab[index][i].thirdCoSIN = 0;
226            shmForAgg->prefixV4Tab[index][i].fourthCoSIN = 0;
227            shmForAgg->prefixV4Tab[index][i].firstCoSOUT = 0;
228            shmForAgg->prefixV4Tab[index][i].secondCoSOUT = 0;
229            shmForAgg->prefixV4Tab[index][i].thirdCoSOUT = 0;
230            shmForAgg->prefixV4Tab[index][i].fourthCoSOUT = 0;
231          }
232        }     
233        now2 = time((time_t *)NULL);
234        /* #ifdef DEBUGAGG */
235        fprintf(stderr, "IPv4 subnet managment (rrd update) : \n %d sec, %d files updated, %d errors, total %d\n %d rrd file already created, %d errors in creation, %d new rrd file creations",
236                now2-now,
237                rrd_update_ok_ct,
238                rrd_update_er_ct,
239                rrd_update_ok_ct+rrd_update_er_ct,
240                rrd_already_created_ct,
241                rrd_create_er_ct,
242                rrd_create_ok_ct);
243        /* #endif */
244        rrd_update_ok_ct = 0;
245        rrd_update_er_ct = 0;
246        rrd_already_created_ct = 0;
247        rrd_create_er_ct = 0;
248        rrd_create_ok_ct = 0;
249        rrd_clear_error();
250      } else {
251        isFirstUpdate = 0;
252      } 
253    }
254    sleep(10);
255  } while (1);
256  exit(0);
257}
Note: See TracBrowser for help on using the browser.