xref: /illumos-gate/usr/src/cmd/rmformat/rmformat.h (revision 3f423849)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /*
237c478bd9Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #ifndef	_RMFORMAT_H
287c478bd9Sstevel@tonic-gate #define	_RMFORMAT_H
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate /*
317c478bd9Sstevel@tonic-gate  * This file contents the definitions for rmformat utility
327c478bd9Sstevel@tonic-gate  */
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #ifdef __cplusplus
357c478bd9Sstevel@tonic-gate extern "C" {
367c478bd9Sstevel@tonic-gate #endif
377c478bd9Sstevel@tonic-gate 
387c478bd9Sstevel@tonic-gate #include <stdio.h>
397c478bd9Sstevel@tonic-gate #include <strings.h>
407c478bd9Sstevel@tonic-gate #include <sys/stat.h>
417c478bd9Sstevel@tonic-gate #include <stdlib.h>
427c478bd9Sstevel@tonic-gate #include <errno.h>
437c478bd9Sstevel@tonic-gate #include <sys/param.h>
447c478bd9Sstevel@tonic-gate #include <unistd.h>
457c478bd9Sstevel@tonic-gate #include <limits.h>
467c478bd9Sstevel@tonic-gate #include <volmgt.h>
477c478bd9Sstevel@tonic-gate #include <sys/vtoc.h>
487c478bd9Sstevel@tonic-gate #include <locale.h>
497c478bd9Sstevel@tonic-gate #include <libintl.h>
507c478bd9Sstevel@tonic-gate #include <dirent.h>
517c478bd9Sstevel@tonic-gate #include <sys/dkio.h>
527c478bd9Sstevel@tonic-gate #include <sys/dktp/fdisk.h>
537c478bd9Sstevel@tonic-gate #include <sys/smedia.h>
547c478bd9Sstevel@tonic-gate #include <sys/efi_partition.h>
557c478bd9Sstevel@tonic-gate 
567c478bd9Sstevel@tonic-gate #ifdef	DEBUG
577c478bd9Sstevel@tonic-gate #define	DPRINTF(str)			(void) printf(str)
587c478bd9Sstevel@tonic-gate #define	DPRINTF1(str, a)		(void) printf(str, a)
597c478bd9Sstevel@tonic-gate #define	DPRINTF2(str, a, b)		(void) printf(str, a, b)
607c478bd9Sstevel@tonic-gate #define	DPRINTF3(str, a, b, c)		(void) printf(str, a, b, c)
617c478bd9Sstevel@tonic-gate #define	DPRINTF4(str, a, b, c, d)	(void) printf(str, a, b, c, d)
627c478bd9Sstevel@tonic-gate #else
637c478bd9Sstevel@tonic-gate #define	DPRINTF(str)
647c478bd9Sstevel@tonic-gate #define	DPRINTF1(str, a)
657c478bd9Sstevel@tonic-gate #define	DPRINTF2(str, a, b)
667c478bd9Sstevel@tonic-gate #define	DPRINTF3(str, a, b, c)
677c478bd9Sstevel@tonic-gate #define	DPRINTF4(str, a, b, c, d)
687c478bd9Sstevel@tonic-gate #endif
697c478bd9Sstevel@tonic-gate 
707c478bd9Sstevel@tonic-gate #define	PERROR(string)	my_perror(gettext(string))
717c478bd9Sstevel@tonic-gate 
727c478bd9Sstevel@tonic-gate /* Little endian and big endian */
737c478bd9Sstevel@tonic-gate #ifdef sparc
747c478bd9Sstevel@tonic-gate #define	les(val)	((((val)&0xFF)<<8)|(((val)>>8)&0xFF))
757c478bd9Sstevel@tonic-gate #define	lel(val)	(((unsigned)(les((val)&0x0000FFFF))<<16) | \
767c478bd9Sstevel@tonic-gate 			(les((unsigned)((val)&0xffff0000)>>16)))
777c478bd9Sstevel@tonic-gate #else	/* !sparc */
787c478bd9Sstevel@tonic-gate #define	les(val)	(val)
797c478bd9Sstevel@tonic-gate #define	lel(val)	(val)
807c478bd9Sstevel@tonic-gate #endif /* sparc */
817c478bd9Sstevel@tonic-gate 
827c478bd9Sstevel@tonic-gate /* To avoid misalign access in sparc */
837c478bd9Sstevel@tonic-gate #ifdef sparc
847c478bd9Sstevel@tonic-gate #define	GET_32(addr)       \
857c478bd9Sstevel@tonic-gate 	((*((uint8_t *)((char *)addr)) << 24) | \
867c478bd9Sstevel@tonic-gate 	(*((uint8_t *)(((char *)addr)+1)) << 16) |\
877c478bd9Sstevel@tonic-gate 	(*((uint8_t *)(((char *)addr)+2)) << 8) | \
887c478bd9Sstevel@tonic-gate 	(*((uint8_t *)(((char *)addr)+3))))
897c478bd9Sstevel@tonic-gate 
907c478bd9Sstevel@tonic-gate #else
917c478bd9Sstevel@tonic-gate #define	GET_32(addr) (*(uint32_t *)addr)
927c478bd9Sstevel@tonic-gate #endif
937c478bd9Sstevel@tonic-gate 
947c478bd9Sstevel@tonic-gate #define	VERIFY_READ 1
957c478bd9Sstevel@tonic-gate #define	VERIFY_WRITE 2
967c478bd9Sstevel@tonic-gate 
977c478bd9Sstevel@tonic-gate /* w_flag and others */
987c478bd9Sstevel@tonic-gate #define	WP_MSG_0 "Medium is already write protected\n"
997c478bd9Sstevel@tonic-gate #define	WP_MSG_1 "Medium is password protected : use -W option.\n"
1007c478bd9Sstevel@tonic-gate #define	WP_MSG_2 "Medium is Read Write protected : use -R option.\n"
1017c478bd9Sstevel@tonic-gate #define	WP_MSG_3 "Medium is not Write protected\n"
1027c478bd9Sstevel@tonic-gate 
1037c478bd9Sstevel@tonic-gate /* W_flag */
1047c478bd9Sstevel@tonic-gate #define	WP_MSG_4 "Medium is Read Write protected.\n"
1057c478bd9Sstevel@tonic-gate #define	WP_MSG_5 "Changing to write protect with password.\n"
1067c478bd9Sstevel@tonic-gate #define	WP_MSG_6 "Medium is already password protected\n"
1077c478bd9Sstevel@tonic-gate #define	WP_MSG_7 "Medium is not password protected\n"
1087c478bd9Sstevel@tonic-gate 
1097c478bd9Sstevel@tonic-gate /* R_flag */
1107c478bd9Sstevel@tonic-gate 
1117c478bd9Sstevel@tonic-gate /* Misc */
1127c478bd9Sstevel@tonic-gate #define	WP_MSG_8 "Medium is password write protected\n"
1137c478bd9Sstevel@tonic-gate #define	WP_MSG_9 "Changing to Read Write protected\n"
1147c478bd9Sstevel@tonic-gate #define	WP_MSG_10 "Wrong password or access denied\n"
1157c478bd9Sstevel@tonic-gate #define	WP_UNKNOWN "Error, can not determine the state of the medium\n"
1167c478bd9Sstevel@tonic-gate #define	WP_ERROR   "Error, write protect operation failed\n"
1177c478bd9Sstevel@tonic-gate 
1187c478bd9Sstevel@tonic-gate /*
1197c478bd9Sstevel@tonic-gate  * Condition to be checked for a device
1207c478bd9Sstevel@tonic-gate  */
1217c478bd9Sstevel@tonic-gate #define	CHECK_TYPE_NOT_CDROM		1
1227c478bd9Sstevel@tonic-gate #define	CHECK_DEVICE_NOT_READY		2
1237c478bd9Sstevel@tonic-gate #define	CHECK_DEVICE_NOT_WRITABLE	4
1247c478bd9Sstevel@tonic-gate #define	CHECK_NO_MEDIA			8
1257c478bd9Sstevel@tonic-gate #define	CHECK_MEDIA_IS_NOT_WRITABLE	0x10
1267c478bd9Sstevel@tonic-gate #define	CHECK_MEDIA_IS_NOT_BLANK	0x20
1277c478bd9Sstevel@tonic-gate #define	CHECK_MEDIA_IS_NOT_ERASABLE	0x40
1287c478bd9Sstevel@tonic-gate #define	CHECK_DEVICE_IS_CD_WRITABLE	0x100
1297c478bd9Sstevel@tonic-gate #define	CHECK_DEVICE_IS_DVD_WRITABLE	0x200
1307c478bd9Sstevel@tonic-gate #define	CHECK_DEVICE_IS_DVD_READABLE	0x400
1317c478bd9Sstevel@tonic-gate 
1327c478bd9Sstevel@tonic-gate #define	INQUIRY_DATA_LENGTH		96
1337c478bd9Sstevel@tonic-gate #define	DVD_CONFIG_SIZE			0x20
1347c478bd9Sstevel@tonic-gate 
135*3f423849SToomas Soome extern int uscsi_error;	/* used for debugging failed uscsi */
1367c478bd9Sstevel@tonic-gate 
1377c478bd9Sstevel@tonic-gate /* fdisk related structures */
1387c478bd9Sstevel@tonic-gate 
1397c478bd9Sstevel@tonic-gate struct fdisk_part {
1407c478bd9Sstevel@tonic-gate 	uint8_t    bootid;   /* Bootable? (Active/Inactive) */
1417c478bd9Sstevel@tonic-gate 	uint8_t    systid; /* OS type */
1427c478bd9Sstevel@tonic-gate 	uint32_t   relsect; /* Beginning of partition */
1437c478bd9Sstevel@tonic-gate 	uint32_t   numsect;
1447c478bd9Sstevel@tonic-gate };
1457c478bd9Sstevel@tonic-gate 
1467c478bd9Sstevel@tonic-gate struct fdisk_info {
1477c478bd9Sstevel@tonic-gate 	struct fdisk_part part[FD_NUMPART];
1487c478bd9Sstevel@tonic-gate };
1497c478bd9Sstevel@tonic-gate 
1507c478bd9Sstevel@tonic-gate typedef struct device {
1517c478bd9Sstevel@tonic-gate 	char		*d_node;
1527c478bd9Sstevel@tonic-gate 	char		*d_name;
1537c478bd9Sstevel@tonic-gate 	int		d_fd;
1547c478bd9Sstevel@tonic-gate 	uchar_t		*d_inq;
1557c478bd9Sstevel@tonic-gate } device_t;
1567c478bd9Sstevel@tonic-gate 
1577c478bd9Sstevel@tonic-gate #ifdef __cplusplus
1587c478bd9Sstevel@tonic-gate }
1597c478bd9Sstevel@tonic-gate #endif
1607c478bd9Sstevel@tonic-gate 
1617c478bd9Sstevel@tonic-gate #endif /* _RMFORMAT_H */
162