/* Changes: Sat Mar 20 09:51:38 EST 1999 Arnaldo Carvalho de Melo Internationalization */ #include /* stderr */ #include /* strstr */ #include /* write */ #include #include "common.h" #include "fdisk.h" #include "fdiskaixlabel.h" #include "nls.h" static int other_endian = 0; static short volumes=1; /* * in-memory fdisk AIX stuff */ struct fdisk_aix_label { struct fdisk_label head; /* generic part */ }; /* * only dealing with free blocks here */ static void aix_info( void ) { puts( _("\n\tThere is a valid AIX label on this disk.\n" "\tUnfortunately Linux cannot handle these\n" "\tdisks at the moment. Nevertheless some\n" "\tadvice:\n" "\t1. fdisk will destroy its contents on write.\n" "\t2. Be sure that this disk is NOT a still vital\n" "\t part of a volume group. (Otherwise you may\n" "\t erase the other disks as well, if unmirrored.)\n" "\t3. Before deleting this physical volume be sure\n" "\t to remove the disk logically from your AIX\n" "\t machine. (Otherwise you become an AIXpert).") ); } static void aix_nolabel(struct fdisk_context *cxt) { struct aix_partition *aixlabel = (struct aix_partition *) cxt->firstsector; aixlabel->magic = 0; fdisk_zeroize_firstsector(cxt); return; } static int aix_probe_label(struct fdisk_context *cxt) { struct aix_partition *aixlabel; assert(cxt); assert(cxt->label); assert(fdisk_is_disklabel(cxt, GPT)); aixlabel = (struct aix_partition *) cxt->firstsector; if (aixlabel->magic != AIX_LABEL_MAGIC && aixlabel->magic != AIX_LABEL_MAGIC_SWAPPED) { other_endian = 0; return 0; } other_endian = (aixlabel->magic == AIX_LABEL_MAGIC_SWAPPED); volumes = 15; aix_info(); aix_nolabel(cxt); /* %% */ return 1; } /* TODO: remove this, libfdisk has to return ENOSYS */ static int aix_add_partition( struct fdisk_context *cxt __attribute__((__unused__)), size_t partnum __attribute__((__unused__)), struct fdisk_parttype *t __attribute__((__unused__))) { printf(_("\tSorry - this fdisk cannot handle AIX disk labels." "\n\tIf you want to add DOS-type partitions, create" "\n\ta new empty DOS partition table first. (Use o.)" "\n\tWARNING: " "This will destroy the present disk contents.\n")); return -ENOSYS; } static const struct fdisk_label_operations aix_operations = { .probe = aix_probe_label, .part_add = aix_add_partition }; /* * allocates AIX label driver */ struct fdisk_label *fdisk_new_aix_label(struct fdisk_context *cxt) { struct fdisk_label *lb; struct fdisk_aix_label *aix; assert(cxt); aix = calloc(1, sizeof(*aix)); if (!aix) return NULL; /* initialize generic part of the driver */ lb = (struct fdisk_label *) aix; lb->name = "aix"; lb->id = FDISK_DISKLABEL_AIX; lb->op = &aix_operations; return lb; }