1 /*****************************************************************************
2 * RRDtool 1.4.2 Copyright by Tobi Oetiker, 1997-2009
3 *****************************************************************************
4 * rrd_create.c creates new rrds
5 *****************************************************************************/
12 #include "rrd_rpncalc.h"
15 #include "rrd_is_thread_safe.h"
21 unsigned long FnvHash(
23 int create_hw_contingent_rras(
25 unsigned short period,
26 unsigned long hashed_name);
32 static void rrd_free2(
33 rrd_t *rrd); /* our onwn copy, immmune to mmap */
39 struct option long_options[] = {
40 {"start", required_argument, 0, 'b'},
41 {"step", required_argument, 0, 's'},
46 time_t last_up = time(NULL) - 10;
47 unsigned long pdp_step = 300;
48 rrd_time_value_t last_up_tv;
49 char *parsetime_error = NULL;
54 opterr = 0; /* initialize getopt */
57 opt = getopt_long(argc, argv, "b:s:", long_options, &option_index);
64 if ((parsetime_error = rrd_parsetime(optarg, &last_up_tv))) {
65 rrd_set_error("start time: %s", parsetime_error);
68 if (last_up_tv.type == RELATIVE_TO_END_TIME ||
69 last_up_tv.type == RELATIVE_TO_START_TIME) {
70 rrd_set_error("specifying time relative to the 'start' "
71 "or 'end' makes no sense here");
75 last_up = mktime(&last_up_tv.tm) +last_up_tv.offset;
77 if (last_up < 3600 * 24 * 365 * 10) {
79 ("the first entry to the RRD should be after 1980");
85 long_tmp = atol(optarg);
87 rrd_set_error("step size should be no less than one second");
95 rrd_set_error("unknown option '%c'", optopt);
97 rrd_set_error("unknown option '%s'", argv[optind - 1]);
101 if (optind == argc) {
102 rrd_set_error("need name of an rrd file to create");
105 rc = rrd_create_r(argv[optind],
107 argc - optind - 1, (const char **) (argv + optind + 1));
114 const char *filename,
115 unsigned long pdp_step,
124 char dummychar1[2], dummychar2[2];
125 unsigned short token_idx, error_flag, period = 0;
126 unsigned long hashed_name;
131 if ((rrd.stat_head = (stat_head_t*)calloc(1, sizeof(stat_head_t))) == NULL) {
132 rrd_set_error("allocating rrd.stat_head");
138 if ((rrd.live_head = (live_head_t*)calloc(1, sizeof(live_head_t))) == NULL) {
139 rrd_set_error("allocating rrd.live_head");
144 /* set some defaults */
145 strcpy(rrd.stat_head->cookie, RRD_COOKIE);
146 strcpy(rrd.stat_head->version, RRD_VERSION3); /* by default we are still version 3 */
147 rrd.stat_head->float_cookie = FLOAT_COOKIE;
148 rrd.stat_head->ds_cnt = 0; /* this will be adjusted later */
149 rrd.stat_head->rra_cnt = 0; /* ditto */
150 rrd.stat_head->pdp_step = pdp_step; /* 5 minute default */
152 /* a default value */
156 rrd.live_head->last_up = last_up;
158 /* optind points to the first non-option command line arg,
159 * in this case, the file name. */
160 /* Compute the FNV hash value (used by SEASONAL and DEVSEASONAL
162 hashed_name = FnvHash(filename);
163 for (i = 0; i < argc; i++) {
166 if (strncmp(argv[i], "DS:", 3) == 0) {
167 size_t old_size = sizeof(ds_def_t) * (rrd.stat_head->ds_cnt);
169 if ((rrd.ds_def = (ds_def_t*)rrd_realloc(rrd.ds_def,
170 old_size + sizeof(ds_def_t))) ==
172 rrd_set_error("allocating rrd.ds_def");
176 memset(&rrd.ds_def[rrd.stat_head->ds_cnt], 0, sizeof(ds_def_t));
177 /* extract the name and type */
178 switch (sscanf(&argv[i][3],
179 DS_NAM_FMT "%1[:]" DST_FMT "%1[:]%n",
180 rrd.ds_def[rrd.stat_head->ds_cnt].ds_nam,
182 rrd.ds_def[rrd.stat_head->ds_cnt].dst,
183 dummychar2, &offset)) {
186 rrd_set_error("Invalid DS name");
190 rrd_set_error("Invalid DS type");
192 case 4: /* (%n may or may not be counted) */
193 case 5: /* check for duplicate datasource names */
194 for (ii = 0; ii < rrd.stat_head->ds_cnt; ii++)
195 if (strcmp(rrd.ds_def[rrd.stat_head->ds_cnt].ds_nam,
196 rrd.ds_def[ii].ds_nam) == 0)
197 rrd_set_error("Duplicate DS name: %s",
198 rrd.ds_def[ii].ds_nam);
199 /* DS_type may be valid or not. Checked later */
202 rrd_set_error("invalid DS format");
204 if (rrd_test_error()) {
209 /* parse the remainder of the arguments */
210 switch (dst_conv(rrd.ds_def[rrd.stat_head->ds_cnt].dst)) {
215 parseGENERIC_DS(&argv[i][offset + 3], &rrd,
216 rrd.stat_head->ds_cnt);
219 parseCDEF_DS(&argv[i][offset + 3], &rrd,
220 rrd.stat_head->ds_cnt);
223 rrd_set_error("invalid DS type specified");
227 if (rrd_test_error()) {
231 rrd.stat_head->ds_cnt++;
232 } else if (strncmp(argv[i], "RRA:", 4) == 0) {
235 size_t old_size = sizeof(rra_def_t) * (rrd.stat_head->rra_cnt);
238 if ((rrd.rra_def = (rra_def_t*)rrd_realloc(rrd.rra_def,
239 old_size + sizeof(rra_def_t))) ==
241 rrd_set_error("allocating rrd.rra_def");
245 memset(&rrd.rra_def[rrd.stat_head->rra_cnt], 0,
248 argvcopy = strdup(argv[i]);
249 token = strtok_r(&argvcopy[4], ":", &tokptr);
250 token_idx = error_flag = 0;
251 while (token != NULL) {
254 if (sscanf(token, CF_NAM_FMT,
255 rrd.rra_def[rrd.stat_head->rra_cnt].cf_nam) !=
257 rrd_set_error("Failed to parse CF name");
259 (rrd.rra_def[rrd.stat_head->rra_cnt].cf_nam)) {
261 strcpy(rrd.stat_head->version, RRD_VERSION); /* MHWPREDICT causes Version 4 */
263 /* initialize some parameters */
264 rrd.rra_def[rrd.stat_head->rra_cnt].par[RRA_hw_alpha].
266 rrd.rra_def[rrd.stat_head->rra_cnt].par[RRA_hw_beta].
268 rrd.rra_def[rrd.stat_head->rra_cnt].
269 par[RRA_dependent_rra_idx].u_cnt =
270 rrd.stat_head->rra_cnt;
274 /* initialize some parameters */
275 rrd.rra_def[rrd.stat_head->rra_cnt].
276 par[RRA_seasonal_gamma].u_val = 0.1;
277 rrd.rra_def[rrd.stat_head->rra_cnt].
278 par[RRA_seasonal_smoothing_window].u_val = 0.05;
281 rrd.rra_def[rrd.stat_head->rra_cnt].
282 par[RRA_dependent_rra_idx].u_cnt = -1;
285 rrd.rra_def[rrd.stat_head->rra_cnt].
286 par[RRA_delta_pos].u_val = 2.0;
287 rrd.rra_def[rrd.stat_head->rra_cnt].
288 par[RRA_delta_neg].u_val = 2.0;
289 rrd.rra_def[rrd.stat_head->rra_cnt].
290 par[RRA_window_len].u_cnt = 3;
291 rrd.rra_def[rrd.stat_head->rra_cnt].
292 par[RRA_failure_threshold].u_cnt = 2;
293 rrd.rra_def[rrd.stat_head->rra_cnt].
294 par[RRA_dependent_rra_idx].u_cnt = -1;
296 /* invalid consolidation function */
299 ("Unrecognized consolidation function %s",
300 rrd.rra_def[rrd.stat_head->rra_cnt].cf_nam);
304 /* default: 1 pdp per cdp */
305 rrd.rra_def[rrd.stat_head->rra_cnt].pdp_cnt = 1;
309 (rrd.rra_def[rrd.stat_head->rra_cnt].cf_nam)) {
316 row_cnt = atoi(token);
318 rrd_set_error("Invalid row count: %i", row_cnt);
319 rrd.rra_def[rrd.stat_head->rra_cnt].row_cnt = row_cnt;
322 rrd.rra_def[rrd.stat_head->rra_cnt].
323 par[RRA_cdp_xff_val].u_val = atof(token);
324 if (rrd.rra_def[rrd.stat_head->rra_cnt].
325 par[RRA_cdp_xff_val].u_val < 0.0
326 || rrd.rra_def[rrd.stat_head->rra_cnt].
327 par[RRA_cdp_xff_val].u_val >= 1.0)
329 ("Invalid xff: must be between 0 and 1");
335 (rrd.rra_def[rrd.stat_head->rra_cnt].cf_nam)) {
338 rrd.rra_def[rrd.stat_head->rra_cnt].par[RRA_hw_alpha].
340 if (atof(token) <= 0.0 || atof(token) >= 1.0)
342 ("Invalid alpha: must be between 0 and 1");
346 rrd.rra_def[rrd.stat_head->rra_cnt].
347 par[RRA_seasonal_gamma].u_val = atof(token);
348 if (atof(token) <= 0.0 || atof(token) >= 1.0)
350 ("Invalid gamma: must be between 0 and 1");
351 rrd.rra_def[rrd.stat_head->rra_cnt].
352 par[RRA_seasonal_smooth_idx].u_cnt =
354 rrd.rra_def[rrd.stat_head->rra_cnt].row_cnt;
357 /* specifies the # of violations that constitutes the failure threshold */
358 rrd.rra_def[rrd.stat_head->rra_cnt].
359 par[RRA_failure_threshold].u_cnt = atoi(token);
361 || atoi(token) > MAX_FAILURES_WINDOW_LEN)
363 ("Failure threshold is out of range %d, %d",
364 1, MAX_FAILURES_WINDOW_LEN);
367 /* specifies the index (1-based) of CF_DEVSEASONAL array
368 * associated with this CF_DEVPREDICT array. */
369 rrd.rra_def[rrd.stat_head->rra_cnt].
370 par[RRA_dependent_rra_idx].u_cnt =
374 rrd.rra_def[rrd.stat_head->rra_cnt].pdp_cnt =
377 rrd_set_error("Invalid step: must be >= 1");
383 (rrd.rra_def[rrd.stat_head->rra_cnt].cf_nam)) {
386 rrd.rra_def[rrd.stat_head->rra_cnt].par[RRA_hw_beta].
388 if (atof(token) < 0.0 || atof(token) > 1.0)
390 ("Invalid beta: must be between 0 and 1");
394 /* specifies the index (1-based) of CF_HWPREDICT array
395 * associated with this CF_DEVSEASONAL or CF_SEASONAL array.
397 rrd.rra_def[rrd.stat_head->rra_cnt].
398 par[RRA_dependent_rra_idx].u_cnt =
402 /* specifies the window length */
403 rrd.rra_def[rrd.stat_head->rra_cnt].
404 par[RRA_window_len].u_cnt = atoi(token);
406 || atoi(token) > MAX_FAILURES_WINDOW_LEN)
408 ("Window length is out of range %d, %d", 1,
409 MAX_FAILURES_WINDOW_LEN);
410 /* verify that window length exceeds the failure threshold */
411 if (rrd.rra_def[rrd.stat_head->rra_cnt].
412 par[RRA_window_len].u_cnt <
413 rrd.rra_def[rrd.stat_head->rra_cnt].
414 par[RRA_failure_threshold].u_cnt)
416 ("Window length is shorter than the failure threshold");
419 /* shouldn't be any more arguments */
421 ("Unexpected extra argument for consolidation function DEVPREDICT");
424 row_cnt = atoi(token);
426 rrd_set_error("Invalid row count: %i", row_cnt);
427 rrd.rra_def[rrd.stat_head->rra_cnt].row_cnt = row_cnt;
433 (rrd.rra_def[rrd.stat_head->rra_cnt].cf_nam)) {
435 /* specifies the index (1-based) of CF_DEVSEASONAL array
436 * associated with this CF_DEVFAILURES array. */
437 rrd.rra_def[rrd.stat_head->rra_cnt].
438 par[RRA_dependent_rra_idx].u_cnt =
443 /* optional smoothing window */
444 if (sscanf(token, "smoothing-window=%lf",
445 &(rrd.rra_def[rrd.stat_head->rra_cnt].
446 par[RRA_seasonal_smoothing_window].
448 strcpy(rrd.stat_head->version, RRD_VERSION); /* smoothing-window causes Version 4 */
449 if (rrd.rra_def[rrd.stat_head->rra_cnt].
450 par[RRA_seasonal_smoothing_window].u_val < 0.0
451 || rrd.rra_def[rrd.stat_head->rra_cnt].
452 par[RRA_seasonal_smoothing_window].u_val >
455 ("Invalid smoothing-window %f: must be between 0 and 1",
456 rrd.rra_def[rrd.stat_head->rra_cnt].
457 par[RRA_seasonal_smoothing_window].
461 rrd_set_error("Invalid option %s", token);
466 /* length of the associated CF_SEASONAL and CF_DEVSEASONAL arrays. */
467 period = atoi(token);
469 rrd.rra_def[rrd.stat_head->rra_cnt].row_cnt)
471 ("Length of seasonal cycle exceeds length of HW prediction array");
474 /* shouldn't be any more arguments */
476 ("Unexpected extra argument for consolidation function %s",
477 rrd.rra_def[rrd.stat_head->rra_cnt].cf_nam);
482 /* If we are here, this must be a CF_HWPREDICT RRA.
483 * Specifies the index (1-based) of CF_SEASONAL array
484 * associated with this CF_HWPREDICT array. If this argument
485 * is missing, then the CF_SEASONAL, CF_DEVSEASONAL, CF_DEVPREDICT,
487 * arrays are created automatically. */
488 rrd.rra_def[rrd.stat_head->rra_cnt].
489 par[RRA_dependent_rra_idx].u_cnt = atoi(token) - 1;
492 /* should never get here */
493 rrd_set_error("Unknown error");
496 if (rrd_test_error()) {
497 /* all errors are unrecoverable */
502 token = strtok_r(NULL, ":", &tokptr);
508 "Creating RRA CF: %s, dep idx %lu, current idx %lu\n",
509 rrd.rra_def[rrd.stat_head->rra_cnt].cf_nam,
510 rrd.rra_def[rrd.stat_head->rra_cnt].
511 par[RRA_dependent_rra_idx].u_cnt, rrd.stat_head->rra_cnt);
513 /* should we create CF_SEASONAL, CF_DEVSEASONAL, and CF_DEVPREDICT? */
514 if ((cf_conv(rrd.rra_def[rrd.stat_head->rra_cnt].cf_nam) ==
516 || cf_conv(rrd.rra_def[rrd.stat_head->rra_cnt].cf_nam) ==
518 && rrd.rra_def[rrd.stat_head->rra_cnt].
519 par[RRA_dependent_rra_idx].u_cnt == rrd.stat_head->rra_cnt) {
521 fprintf(stderr, "Creating HW contingent RRAs\n");
523 if (create_hw_contingent_rras(&rrd, period, hashed_name) ==
525 rrd_set_error("creating contingent RRA");
530 rrd.stat_head->rra_cnt++;
532 rrd_set_error("can't parse argument '%s'", argv[i]);
539 if (rrd.stat_head->rra_cnt < 1) {
540 rrd_set_error("you must define at least one Round Robin Archive");
545 if (rrd.stat_head->ds_cnt < 1) {
546 rrd_set_error("you must define at least one Data Source");
550 return rrd_create_fn(filename, &rrd);
553 void parseGENERIC_DS(
558 char minstr[DS_NAM_SIZE], maxstr[DS_NAM_SIZE];
564 temp = sscanf(def,"%lu:%18[^:]:%18[^:]",
565 &(rrd -> ds_def[ds_idx].par[DS_mrhb_cnt].u_cnt),
568 old_locale = setlocale(LC_NUMERIC, "C");
569 if (sscanf(def, "%lu:%18[^:]:%18[^:]",
570 &(rrd->ds_def[ds_idx].par[DS_mrhb_cnt].u_cnt),
571 minstr, maxstr) == 3) {
572 if (minstr[0] == 'U' && minstr[1] == 0)
573 rrd->ds_def[ds_idx].par[DS_min_val].u_val = DNAN;
575 rrd->ds_def[ds_idx].par[DS_min_val].u_val = atof(minstr);
577 if (maxstr[0] == 'U' && maxstr[1] == 0)
578 rrd->ds_def[ds_idx].par[DS_max_val].u_val = DNAN;
580 rrd->ds_def[ds_idx].par[DS_max_val].u_val = atof(maxstr);
582 if (!isnan(rrd->ds_def[ds_idx].par[DS_min_val].u_val) &&
583 !isnan(rrd->ds_def[ds_idx].par[DS_max_val].u_val) &&
584 rrd->ds_def[ds_idx].par[DS_min_val].u_val
585 >= rrd->ds_def[ds_idx].par[DS_max_val].u_val) {
586 rrd_set_error("min must be less than max in DS definition");
587 setlocale(LC_NUMERIC, old_locale);
591 rrd_set_error("failed to parse data source %s", def);
593 setlocale(LC_NUMERIC, old_locale);
596 /* Create the CF_DEVPREDICT, CF_DEVSEASONAL, CF_SEASONAL, and CF_FAILURES RRAs
597 * associated with a CF_HWPREDICT RRA. */
598 int create_hw_contingent_rras(
600 unsigned short period,
601 unsigned long hashed_name)
604 rra_def_t *current_rra;
606 /* save index to CF_HWPREDICT */
607 unsigned long hw_index = rrd->stat_head->rra_cnt;
609 /* advance the pointer */
610 (rrd->stat_head->rra_cnt)++;
611 /* allocate the memory for the 4 contingent RRAs */
612 old_size = sizeof(rra_def_t) * (rrd->stat_head->rra_cnt);
613 if ((rrd->rra_def = (rra_def_t*)rrd_realloc(rrd->rra_def,
614 old_size + 4 * sizeof(rra_def_t))) ==
617 rrd_set_error("allocating rrd.rra_def");
621 memset(&(rrd->rra_def[rrd->stat_head->rra_cnt]), 0,
622 4 * sizeof(rra_def_t));
624 /* create the CF_SEASONAL RRA */
625 current_rra = &(rrd->rra_def[rrd->stat_head->rra_cnt]);
626 strcpy(current_rra->cf_nam, "SEASONAL");
627 current_rra->row_cnt = period;
628 current_rra->par[RRA_seasonal_smooth_idx].u_cnt = hashed_name % period;
629 current_rra->pdp_cnt = 1;
630 current_rra->par[RRA_seasonal_gamma].u_val =
631 rrd->rra_def[hw_index].par[RRA_hw_alpha].u_val;
632 current_rra->par[RRA_dependent_rra_idx].u_cnt = hw_index;
633 rrd->rra_def[hw_index].par[RRA_dependent_rra_idx].u_cnt =
634 rrd->stat_head->rra_cnt;
636 /* create the CF_DEVSEASONAL RRA */
637 (rrd->stat_head->rra_cnt)++;
638 current_rra = &(rrd->rra_def[rrd->stat_head->rra_cnt]);
639 strcpy(current_rra->cf_nam, "DEVSEASONAL");
640 current_rra->row_cnt = period;
641 current_rra->par[RRA_seasonal_smooth_idx].u_cnt = hashed_name % period;
642 current_rra->pdp_cnt = 1;
643 current_rra->par[RRA_seasonal_gamma].u_val =
644 rrd->rra_def[hw_index].par[RRA_hw_alpha].u_val;
645 current_rra->par[RRA_dependent_rra_idx].u_cnt = hw_index;
647 /* create the CF_DEVPREDICT RRA */
648 (rrd->stat_head->rra_cnt)++;
649 current_rra = &(rrd->rra_def[rrd->stat_head->rra_cnt]);
650 strcpy(current_rra->cf_nam, "DEVPREDICT");
651 current_rra->row_cnt = (rrd->rra_def[hw_index]).row_cnt;
652 current_rra->pdp_cnt = 1;
653 current_rra->par[RRA_dependent_rra_idx].u_cnt = hw_index + 2; /* DEVSEASONAL */
655 /* create the CF_FAILURES RRA */
656 (rrd->stat_head->rra_cnt)++;
657 current_rra = &(rrd->rra_def[rrd->stat_head->rra_cnt]);
658 strcpy(current_rra->cf_nam, "FAILURES");
659 current_rra->row_cnt = period;
660 current_rra->pdp_cnt = 1;
661 current_rra->par[RRA_delta_pos].u_val = 2.0;
662 current_rra->par[RRA_delta_neg].u_val = 2.0;
663 current_rra->par[RRA_failure_threshold].u_cnt = 7;
664 current_rra->par[RRA_window_len].u_cnt = 9;
665 current_rra->par[RRA_dependent_rra_idx].u_cnt = hw_index + 2; /* DEVSEASONAL */
669 /* create and empty rrd file according to the specs given */
672 const char *file_name,
676 rrd_value_t *unknown;
678 rrd_file_t *rrd_file_dn;
680 unsigned rrd_flags = RRD_READWRITE | RRD_CREAT;
683 for (i = 0; i < rrd->stat_head->rra_cnt; i++)
684 unkn_cnt += rrd->stat_head->ds_cnt * rrd->rra_def[i].row_cnt;
686 if ((rrd_file_dn = rrd_open(file_name, rrd, rrd_flags)) == NULL) {
687 rrd_set_error("creating '%s': %s", file_name, rrd_strerror(errno));
692 rrd_write(rrd_file_dn, rrd->stat_head, sizeof(stat_head_t));
694 rrd_write(rrd_file_dn, rrd->ds_def, sizeof(ds_def_t) * rrd->stat_head->ds_cnt);
696 rrd_write(rrd_file_dn, rrd->rra_def,
697 sizeof(rra_def_t) * rrd->stat_head->rra_cnt);
699 rrd_write(rrd_file_dn, rrd->live_head, sizeof(live_head_t));
701 if ((rrd->pdp_prep = (pdp_prep_t*)calloc(1, sizeof(pdp_prep_t))) == NULL) {
702 rrd_set_error("allocating pdp_prep");
704 rrd_close(rrd_file_dn);
708 strcpy(rrd->pdp_prep->last_ds, "U");
710 rrd->pdp_prep->scratch[PDP_val].u_val = 0.0;
711 rrd->pdp_prep->scratch[PDP_unkn_sec_cnt].u_cnt =
712 rrd->live_head->last_up % rrd->stat_head->pdp_step;
714 for (i = 0; i < rrd->stat_head->ds_cnt; i++)
715 rrd_write(rrd_file_dn, rrd->pdp_prep, sizeof(pdp_prep_t));
717 if ((rrd->cdp_prep = (cdp_prep_t*)calloc(1, sizeof(cdp_prep_t))) == NULL) {
718 rrd_set_error("allocating cdp_prep");
720 rrd_close(rrd_file_dn);
725 for (i = 0; i < rrd->stat_head->rra_cnt; i++) {
726 switch (cf_conv(rrd->rra_def[i].cf_nam)) {
729 init_hwpredict_cdp(rrd->cdp_prep);
733 init_seasonal_cdp(rrd->cdp_prep);
736 /* initialize violation history to 0 */
737 for (ii = 0; ii < MAX_CDP_PAR_EN; ii++) {
738 /* We can zero everything out, by setting u_val to the
739 * NULL address. Each array entry in scratch is 8 bytes
740 * (a double), but u_cnt only accessed 4 bytes (long) */
741 rrd->cdp_prep->scratch[ii].u_val = 0.0;
745 /* can not be zero because we don't know anything ... */
746 rrd->cdp_prep->scratch[CDP_val].u_val = DNAN;
747 /* startup missing pdp count */
748 rrd->cdp_prep->scratch[CDP_unkn_pdp_cnt].u_cnt =
749 ((rrd->live_head->last_up -
750 rrd->pdp_prep->scratch[PDP_unkn_sec_cnt].u_cnt)
751 % (rrd->stat_head->pdp_step
752 * rrd->rra_def[i].pdp_cnt)) / rrd->stat_head->pdp_step;
756 for (ii = 0; ii < rrd->stat_head->ds_cnt; ii++) {
757 rrd_write(rrd_file_dn, rrd->cdp_prep, sizeof(cdp_prep_t));
761 /* now, we must make sure that the rest of the rrd
762 struct is properly initialized */
764 if ((rrd->rra_ptr = (rra_ptr_t*)calloc(1, sizeof(rra_ptr_t))) == NULL) {
765 rrd_set_error("allocating rra_ptr");
767 rrd_close(rrd_file_dn);
771 /* changed this initialization to be consistent with
772 * rrd_restore. With the old value (0), the first update
773 * would occur for cur_row = 1 because rrd_update increments
774 * the pointer a priori. */
775 for (i = 0; i < rrd->stat_head->rra_cnt; i++) {
776 rrd->rra_ptr->cur_row = rrd_select_initial_row(rrd_file_dn, i, &rrd->rra_def[i]);
777 rrd_write(rrd_file_dn, rrd->rra_ptr, sizeof(rra_ptr_t));
780 /* write the empty data area */
781 if ((unknown = (rrd_value_t *) malloc(512 * sizeof(rrd_value_t))) == NULL) {
782 rrd_set_error("allocating unknown");
784 rrd_close(rrd_file_dn);
787 for (i = 0; i < 512; ++i)
790 while (unkn_cnt > 0) {
791 if(rrd_write(rrd_file_dn, unknown, sizeof(rrd_value_t) * min(unkn_cnt, 512)) < 0)
793 rrd_set_error("creating rrd: %s", rrd_strerror(errno));
801 if (rrd_close(rrd_file_dn) == -1) {
802 rrd_set_error("creating rrd: %s", rrd_strerror(errno));
805 /* flush all we don't need out of the cache */
807 if((rrd_file_dn = rrd_open(file_name, &rrd_dn, RRD_READONLY)) != NULL)
809 rrd_dontneed(rrd_file_dn, &rrd_dn);
810 /* rrd_free(&rrd_dn); */
811 rrd_close(rrd_file_dn);
817 static void rrd_free2(
820 free(rrd->live_head);
821 free(rrd->stat_head);
827 free(rrd->rrd_value);