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
|
/* $OpenBSD: bioctl.h,v 1.5 2005/04/06 02:36:34 marco Exp $ */
/*
* Copyright (c) 2004, 2005 Marco Peereboom
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#ifndef _BIOCTL_H_
#define _BIOCTL_H_
/* misc defines */
#define INQSIZE (36)
#define SESSIZE (255)
#define S_TERA (1099511627776llu)
#define S_GIGA (1073741824llu)
#define S_MEGA (1048576llu)
#define S_KILO (1024llu)
/* functions */
#define F_READCAP (0x01)
#define F_ENUM (0x02)
#define F_TUR (0x04)
#define F_INQUIRY (0x08)
/* flags */
#define F_SILENCE (0x00)
#define F_NOISY (0x01)
#define PARSELIST (0x8000000000000000llu)
struct read_cap {
u_int32_t maxlba;
u_int32_t bsize;
};
struct dev {
SLIST_ENTRY(dev) next;
u_int16_t id;
u_int8_t channel;
u_int8_t target;
u_int8_t type;
u_int64_t capacity;
};
void usage(void);
void cleanup(void);
u_int64_t parse_passthru(char *);
void parse_devlist(char *);
void print_sense(u_int8_t *, u_int8_t);
void print_inquiry(u_int8_t, u_int8_t*, u_int8_t);
void print_cap(u_int64_t);
int get_ses_page(u_int8_t, u_int8_t, u_int8_t*, u_int8_t);
int set_ses_page(u_int8_t, u_int8_t, u_int8_t*, u_int8_t);
int bio_get_capabilities(bioc_capabilities *);
void bio_alarm(char *);
void bio_blink_userland(u_int8_t, u_int8_t, u_int8_t);
void bio_blink(char *, u_int8_t, u_int8_t);
void bio_ping(void);
void bio_startstop(char *, u_int8_t, u_int8_t);
void bio_status(void);
u_int64_t bio_pt_readcap(u_int8_t, u_int8_t, u_int8_t);
u_int32_t bio_pt_inquire(u_int8_t, u_int8_t, u_int8_t, u_int8_t *);
u_int32_t bio_pt_tur(u_int8_t, u_int8_t);
void bio_pt_enum(void);
#endif /* _BIOCTL_H_ */
|