File: expand.c

package info (click to toggle)
evms 1.0.0-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 9,168 kB
  • ctags: 5,853
  • sloc: ansic: 87,317; makefile: 691; sh: 238
file content (702 lines) | stat: -rw-r--r-- 25,912 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
/*
 *
 *   Copyright (c) International Business Machines  Corp., 2001
 *
 *   This program is free software;  you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY;  without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 *   the GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program;  if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 * Module: expand.c
 *
 */

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>

#include <fullengine.h>

#include "expand.h"
#include "engine.h"
#include "handlemgr.h"
#include "common.h"
#include "commit.h"
#include "discover.h"
#include "object.h"
#include "memman.h"
#include "internalAPI.h"
#include "message.h"


static inline int get_object_expand_points(storage_object_t * obj, u_int64_t * max_delta_size, dlist_t expand_points) {

    int rc = 0;

    LOG_PROC_ENTRY();

    rc = obj->plugin->functions.plugin->can_expand(obj, max_delta_size, expand_points);

    LOG_PROC_EXIT_INT(rc);
    return rc;
}


static inline int get_volume_expand_points(logical_volume_t * volume, dlist_t expand_points) {

    int rc = 0;
    u_int64_t max_delta_size = -1;

    LOG_PROC_ENTRY();

    /*
     * If the volume has an FSIM, gets its maximum delta expand size.  We reget
     * the current size and limits because the file system could be mounted and
     * be active.
     */
    if (volume->file_system_manager != NULL) {
        rc = volume->file_system_manager->functions.fsim->get_fs_size(volume, &volume->fs_size);
        if (rc == 0) {
            rc = volume->file_system_manager->functions.fsim->get_fs_limits(volume,
                                                                            &volume->min_fs_size,
                                                                            &volume->max_fs_size,
                                                                            &volume->max_vol_size);
            if (rc == 0) {
                max_delta_size = volume->max_vol_size - volume->vol_size;
            }
        }
    }

    if (rc == 0) {
        if (!(volume->flags & VOLFLAG_MKFS)) {
            rc = get_object_expand_points(volume->object, &max_delta_size, expand_points);

        } else {
            LOG_ERROR("Volume \"%s\" cannot be expanded because it is scheduled to have a file system installed on it.\n", volume->name);
            rc = EINVAL;
        }
    }

    if (rc == 0) {
        /*
         * If the volume has an FSIM and there are expand points, check if the
         * FSIM can handle the expand.
         */
        if (volume->file_system_manager != NULL) {
            if (!ListEmpty(expand_points)) {
                rc = volume->file_system_manager->functions.fsim->can_expand_by(volume, &max_delta_size);

                /*
                 * The FSIM cannot handle the expand.  Delete all the expand
                 * points from the list.
                 */
                if (rc != 0) {
                    DeleteAllItems(expand_points, TRUE);
                }
            }
        }
    }

    LOG_PROC_EXIT_INT(rc);
    return rc;
}


/*
 * Find out if an object can be expanded.  The "thing" must be either a volume
 * or a top level object.  What we'll do is call the internal
 * get_expand_points() and see if any expand candidates show up.  If we get
 * expand points then return 0 to say that the object can be expanded.  Else,
 * return an error.
 */
int evms_can_expand(object_handle_t thing) {

    int rc = 0;
    void * object;
    object_type_t type;

    LOG_PROC_ENTRY();

    rc = check_engine_read_access();

    if (rc == 0) {
        rc = translate_handle(thing,
                              &object,
                              &type);

        if (rc == HANDLE_MANAGER_NO_ERROR) {
            dlist_t expand_point_list = CreateList();

            if (expand_point_list != NULL) {
                switch (type) {
                    case DISK:
                    case SEGMENT:
                    case REGION:
                    case EVMS_OBJECT:
                        {
                            storage_object_t * obj = object;

                            /*
                             * Expands can only be done on top level objects.
                             */
                            if (is_top_object(obj)) {
                                dlist_t expand_points = CreateList();

                                if (expand_points != NULL) {
                                    u_int64_t max_delta_size = -1;

                                    rc = get_object_expand_points(obj, &max_delta_size, expand_points);

                                    if (rc == 0) {
                                        uint count = 0;

                                        GetListSize(expand_points, &count);

                                        if (count == 0) {
                                            rc = ENOENT;
                                        }
                                    }

                                    DestroyList(&expand_points, FALSE);

                                } else {
                                    LOG_CRITICAL("Error allocating memory for an expand point list.\n");
                                    rc = ENOMEM;
                                }

                            } else {
                                LOG_ERROR("Object %s is not a top level object.  Expands can only be done on volumes or top level objects.\n", obj->name);
                                rc = EINVAL;
                            }
                        }
                        break;

                    case VOLUME:
                        {
                            logical_volume_t * volume = (logical_volume_t *) object;
                            dlist_t expand_points = CreateList();

                            if (expand_points != NULL) {
                                rc = get_volume_expand_points(volume, expand_points);

                                if (rc == 0) {
                                    uint count = 0;

                                    GetListSize(expand_points, &count);

                                    if (count == 0) {
                                        rc = ENOENT;
                                    }
                                }

                                DestroyList(&expand_points, FALSE);

                            } else {
                                LOG_CRITICAL("Error allocating memory for an expand point list.\n");
                                rc = ENOMEM;
                            }
                        }
                        break;

                    default:
                        rc = EINVAL;
                        break;
                }

                DestroyList(&expand_point_list, FALSE );

            } else {
                rc = ENOMEM;
            }
        }
    }

    LOG_PROC_EXIT_INT(rc);
    return rc;
}


/*
 * Given an expand_info_t, add the app_handle for the object and the size to an
 * expand_handle_array_t.
 * The parameters of this function are structured so that it can be called by
 * ForEachItem().
 */
static int make_expand_handle_entry(ADDRESS object,
                                    TAG     object_tag,
                                    uint    object_size,
                                    ADDRESS object_handle,
                                    ADDRESS parameters) {
    int rc = 0;

    expand_object_info_t * object_info = (expand_object_info_t *) object;
    expand_handle_array_t * eha = (expand_handle_array_t *) parameters;

    LOG_PROC_ENTRY();

    LOG_DEBUG("Current number of entries in handle array:  %d.\n", eha->count);

    if (object_tag == EXPAND_OBJECT_TAG) {
        LOG_DEBUG("Add entry for storage object %s.\n", object_info->object->name);

        rc = ensure_app_handle(object_info->object,
                               object_info->object->object_type,
                               &(object_info->object->app_handle));
        if (rc == 0) {
            eha->expand_point[eha->count].object = object_info->object->app_handle;
            eha->expand_point[eha->count].max_expand_size = object_info->max_expand_size;
            eha->count++;
        }

    } else {
        LOG_WARNING("Cannot make an expand handle entry from an object with tag %ld.\n", object_tag);
    }

    LOG_PROC_EXIT_INT(rc);
    return rc;
}


/*
 * Make an array of expand handles (expand_handle_array_t) for the objects in
 * a dlist_t.
 */
static int make_expand_handle_array(dlist_t list, expand_handle_array_t * * eha) {
    int rc = 0;
    uint count;
    uint size;

    LOG_PROC_ENTRY();

    rc = GetListSize(list, &count);

    if (rc == 0) {
        LOG_DEBUG("Number of objects in the list:  %d\n", count);
        if (count > 1) {
            size = sizeof(expand_handle_array_t) + ((count -1) * sizeof(expand_handle_t));
        } else {
            size = sizeof(expand_handle_array_t);
        }

        *eha = alloc_app_struct(size, NULL);
        if (*eha != NULL) {
            rc = ForEachItem(list,
                             make_expand_handle_entry,
                             *eha,
                             TRUE);
        } else {
            rc = ENOMEM;
        }
    }

    LOG_PROC_EXIT_INT(rc);
    return rc;
}


/*
 * Find out which objects in the stack can expand.  evms_get_expand_points()
 * must be targeted at either a volume or a top level object.  Any plug-in
 * that can expand will add an expand_object_info_t to the expand_points
 * dlist.  The dlist is then converted into an expand_handle_array_t for return
 * to the user.
 */
int evms_get_expand_points(object_handle_t thing, expand_handle_array_t * * expand_points) {

    int rc = 0;
    void * object;
    object_type_t type;

    LOG_PROC_ENTRY();

    rc = check_engine_read_access();

    if (rc == 0) {

        rc = translate_handle(thing,
                              &object,
                              &type);

        if (rc == HANDLE_MANAGER_NO_ERROR) {

            if (expand_points != NULL) {
                dlist_t expand_point_list = CreateList();

                if (expand_point_list != NULL) {

                    switch (type) {
                        case VOLUME:
                            {
                                logical_volume_t * volume = (logical_volume_t *) object;

                                rc = get_volume_expand_points(volume, expand_point_list);
                            }
                            break;

                        case EVMS_OBJECT:
                        case REGION:
                        case SEGMENT:
                        case DISK:
                            {
                                storage_object_t * obj = (storage_object_t *) object;
                                /*
                                 * Expands can only be done on top level objects.
                                 */
                                if (is_top_object(obj)) {
                                    u_int64_t max_delta_size = -1;

                                    rc = get_object_expand_points(obj, &max_delta_size, expand_point_list);

                                } else {
                                    LOG_ERROR("Object %s is not a top level object.  Expands can only be done on volumes or top level objects.\n", obj->name);
                                    rc = EINVAL;
                                }
                            }
                            break;

                        default:
                            LOG_ERROR("An object of type %d cannot be expanded.\n", type);
                            rc = EINVAL;
                            break;
                    }

                    if (rc == 0) {
                        rc = make_expand_handle_array(expand_point_list, expand_points);
                    }

                    DestroyList(&expand_point_list, FALSE);
                }

            } else {
                LOG_ERROR("The pointer to the expand points list cannot be NULL.\n");
                rc = EINVAL;
            }

        } else {
            LOG_CRITICAL("Error when allocating memory for an expand point list.\n");
            rc = ENOMEM;
        }
    }

    LOG_PROC_EXIT_INT(rc);
    return rc;
}


/*
 * If the object is part of a volume and the volume has no FSIM, warn the
 * user that there is no FSIM to handle the expand.  The user has the
 * choice of continuing or aborting.
 * Returns 0 if the user wants to continue, EINTR if the user wants to abort.
 */
static int warn_if_no_fsim(storage_object_t * obj) {

    int rc = 0;

    LOG_PROC_ENTRY();

    if (obj->volume != NULL) {
        if (obj->volume->file_system_manager == NULL) {
            char * choices[] = {"Continue", "Abort", NULL};
            int answer = 0;     /* Initialize to "Continue" */

            engine_user_message(&answer,
                                choices,
                                "WARNING: Volume \"%s\" does not have an associated File System Interface Module which could coordinate the expansion of the file system on the volume.  "
                                "The file system will not be expanded.  "
                                "You may need to run a separate utility to expand the file system after this operation completes.  "
                                "Expanding the volume may make the file system unusable.  "
                                "Do you want to continue with the expand or abort?\n",
                                obj->volume->name);

            if (answer != 0) {
                rc = EINTR;
            }
        }
    }

    LOG_PROC_EXIT_INT(rc);
    return rc;
}


/*
 * Expand the size of an object.  The expand gets targeted at the top object of
 * the feature stack.  The plug-ins pass it on down until it hits the object
 * that is to do the real expansion.
 */
int evms_expand(object_handle_t thing, handle_array_t * input_objects, option_array_t * options) {

    int rc = 0;
    void * object;
    object_type_t type;

    LOG_PROC_ENTRY();

    rc = check_engine_write_access();

    if (rc == 0) {

        rc = translate_handle(thing,
                              &object,
                              &type);

        if (rc == HANDLE_MANAGER_NO_ERROR) {

            if ((type == EVMS_OBJECT) ||
                (type == REGION) ||
                (type == SEGMENT) ||
                (type == DISK)) {

                storage_object_t * obj = (storage_object_t *) object;

                if (obj->volume != NULL) {
                    if (obj->volume->flags & VOLFLAG_MKFS) {
                        LOG_ERROR("Volume \"%s\" cannot be expanded because it is scheduled to have a file system installed on it.\n", obj->volume->name);
                        rc = EINVAL;
                    }
                }

                if (rc == 0) {
                    dlist_t input_object_list = CreateList();

                    if (input_object_list != NULL) {
                        rc = make_dlist(input_objects, input_object_list);

                        if (rc == 0) {

                            /*
                             * Make sure all of the input objects are storage
                             * objects.  (The caller could have supplied handles
                             * for bogus items such as plug-ins or volumes.)
                             */
                            rc = ForEachItem(input_object_list,
                                             isa_valid_input_object,
                                             NULL,
                                             TRUE);

                            if (rc == DLIST_SUCCESS) {

                                /*
                                 * Find the top object in the feature stack.
                                 */
                                storage_object_t * top_object = obj;
                                uint parent_count = 0;

                                rc = GetListSize(top_object->parent_objects, &parent_count);

                                while ((rc == DLIST_SUCCESS) && (parent_count > 0)) {
                                    rc = GetObject(top_object->parent_objects,
                                                   sizeof(storage_object_t),
                                                   EVMS_OBJECT_TAG,
                                                   NULL,
                                                   FALSE,
                                                   (ADDRESS *) &top_object);

                                    if (rc == DLIST_SUCCESS) {
                                        rc = GetListSize(top_object->parent_objects, &parent_count);
                                    }
                                }

                                /* Clean up error codes that are OK. */
                                if ((rc == DLIST_EMPTY) || (rc == DLIST_END_OF_LIST)) {
                                    rc = DLIST_SUCCESS;
                                }

                                if (rc == DLIST_SUCCESS) {

                                    /*
                                     * Warn the user if there is no FSIM to
                                     * handle the expand.
                                     */
                                    rc = warn_if_no_fsim(obj);

                                    if (rc == 0) {

                                        /*
                                         * Start the expand at the top level
                                         * object.
                                         */
                                        rc = top_object->plugin->functions.plugin->expand(top_object, obj, input_object_list, options);

                                        if (rc == 0) {

                                            if (obj->object_type == EVMS_OBJECT) {
                                                /*
                                                 * Mark all the child feature
                                                 * headers dirty to ensure that
                                                 * they get the correct depth
                                                 * and get written in the right
                                                 * place.
                                                 */
                                                ForEachItem(obj->child_objects,
                                                            mark_feature_headers_dirty,
                                                            NULL,
                                                            TRUE);

                                                /*
                                                 * Make sure the child objects
                                                 * are marked as being in the
                                                 * same volume.
                                                 */
                                                ForEachItem(obj->child_objects,
                                                            set_volume_in_object,
                                                            obj->volume,
                                                            TRUE);
                                            }

                                            /*
                                             * If the object is part of a
                                             * volume...
                                             */
                                            if (obj->volume != NULL) {

                                                /* Mark it for rediscovery. */
                                                engine_rediscover_volume(obj->volume, FALSE);

                                                /*
                                                 * Mark it dirty so that the
                                                 * feature headers get written
                                                 * to their new locations.
                                                 */
                                                obj->volume->flags |= VOLFLAG_DIRTY;

                                                /*
                                                 * Update the volume size.  It
                                                 * may not be the resulting
                                                 * volume size after the FSIM
                                                 * does its expand, but that
                                                 * will be updated after the
                                                 * commit.
                                                 */
                                                obj->volume->vol_size = top_object->size;
                                                if (top_object->feature_header != NULL) {
                                                    /*
                                                     * Object has EVMS volume
                                                     * feature headers.
                                                     * Subtract them from the
                                                     * size.
                                                     */
                                                    obj->volume->vol_size -= FEATURE_HEADER_SECTORS * 2;
                                                }
                                            }
                                        }
                                    }

                                } else {
                                    LOG_WARNING("Error code %d encountered when trying to find the top level object.\n", rc);
                                }

                            } else {
                                LOG_ERROR("One or more items in the input object list is not a storage object.\n");
                                rc = EINVAL;
                            }

                        } else {
                            LOG_ERROR("Error code %d when making a dlist from the input_objects handle array.\n", rc);
                            rc = EINVAL;
                        }

                        DestroyList(&input_object_list, FALSE);

                    } else {
                        LOG_CRITICAL("Error allocating memory to create the input object list.\n");
                        rc = ENOMEM;
                    }
                }

            } else {
                LOG_ERROR("Object of type %d cannot be expanded.\n", type);
                rc = EINVAL;
            }
        }

        if (rc == 0) {
            changes_pending = TRUE;
        }
    }

    LOG_PROC_EXIT_INT(rc);
    return rc;
}


/*
 * engine_can_expand_by() is a service that the Engine provides for the
 * plug-ins.  A plug-in calls engine_can_expand_by() to find out if all of its
 * parent objects, including the volume, would approve of an expansion by the
 * specified amount.  The Engine walks up the object tree calling each
 * plug-in's can_expand_by() function to see if it would approve of the
 * expansion.  Each plug-in can update the "size" if the resulting size of its
 * object would have a different delta size than the delta size of its child
 * object.  If the top of the object stack is reached and the object is part of
 * a volume, the Engine then checks the resulting delta size against any limits
 * that an FSIM may have imposed on the volume.
 */
int engine_can_expand_by(storage_object_t * object, sector_count_t * delta_size) {

    int rc = 0;
    storage_object_t * curr_object = object;
    uint parent_count = 0;
    sector_count_t original_delta_size = *delta_size;

    LOG_PROC_ENTRY();

    rc = GetListSize(object->parent_objects, &parent_count);

    while ((rc == DLIST_SUCCESS) && (parent_count > 0)) {
        rc = GetObject(curr_object->parent_objects,
                       sizeof(storage_object_t),
                       EVMS_OBJECT_TAG,
                       NULL,
                       FALSE,
                       (ADDRESS *) &curr_object);

        if (rc == DLIST_SUCCESS) {
            rc = curr_object->plugin->functions.plugin->can_expand_by(curr_object, delta_size);

            if (rc == 0) {
                rc = GetListSize(curr_object->parent_objects, &parent_count);
            }
        }
    }

    /* Clean up error codes that are OK. */
    if ((rc == DLIST_EMPTY) || (rc == DLIST_END_OF_LIST)) {
        rc = DLIST_SUCCESS;
    }

    if (rc == 0) {
        /*
         * If this object is part of a volume and the volume has an FSIM, check
         * to make sure the final size does not go over the FSIM's maximum size
         * it can handle for its backing storage object.
         */
        if (object->volume != NULL) {
            if (object->volume->file_system_manager != NULL) {
                rc = object->volume->file_system_manager->functions.fsim->can_expand_by(object->volume, delta_size);
            }
        }
    }

    if (rc == 0) {
        if (*delta_size != original_delta_size) {
            rc = EAGAIN;
        }
    }

    LOG_PROC_EXIT_INT(rc);
    return rc;
}