File: scsi_hpux.c

package info (click to toggle)
mtx 1.2.16rel-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 660 kB
  • ctags: 696
  • sloc: ansic: 4,380; sh: 2,489; python: 203; makefile: 124; perl: 117
file content (123 lines) | stat: -rw-r--r-- 3,564 bytes parent folder | download | duplicates (3)
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
/* Copyright 1997, 1998 Leonard Zubkoff <lnz@dandelion.com>
   Changes copyright 2000 Eric Green <eric@estinc.com>

  This program is free software; you may redistribute and/or modify it under
  the terms of the GNU General Public License Version 2 as published by the
  Free Software Foundation.

  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 complete details.

struct sctl_io {
        unsigned flags;                 // IN: SCTL_READ
        unsigned cdb_length;            // IN
        unsigned char cdb[16];          // IN 
        void *data;                     // IN 
        unsigned data_length;           // IN 
        unsigned max_msecs;             // IN: milli-seconds before abort 
        unsigned data_xfer;             // OUT 
        unsigned cdb_status;            // OUT: SCSI status 
        unsigned char sense[256];       // OUT 
        unsigned sense_status;          // OUT: SCSI status 
        unsigned sense_xfer;            // OUT: bytes of sense data received 
        unsigned reserved[16];          // IN: Must be zero; OUT: undefined 
};

*/


/* Hockey Pux may define these. If so, *UN*define them. */
#ifdef ILI
#undef ILI
#endif

#ifdef EOM
#undef EOM
#endif

/* This is the SCSI commands for HPUX. */

#define LONG_PRINT_REQUEST_SENSE  /* Sigh! */

DEVICE_TYPE SCSI_OpenDevice(char *DeviceName)
{
  int DeviceFD = open(DeviceName, O_RDWR | O_NDELAY);
  if (DeviceFD < 0)
    FatalError("cannot open SCSI device '%s' - %m\n", DeviceName);
  return (DEVICE_TYPE) DeviceFD;
}


void SCSI_CloseDevice(char *DeviceName,
			     DEVICE_TYPE DeviceFD)
{
  if (close(DeviceFD) < 0)
    FatalError("cannot close SCSI device '%s' - %m\n", DeviceName);
}

#define MTX_HZ 1000
#define DEFAULT_HZ (5*60*MTX_HZ)

static int sctl_io_timeout=DEFAULT_HZ;  /* default timeout is 5 minutes. */


void SCSI_Set_Timeout(int to) {
  sctl_io_timeout=to*60*MTX_HZ;
}

void SCSI_Default_Timeout(void) {
  sctl_io_timeout=DEFAULT_HZ;
}


int SCSI_ExecuteCommand(DEVICE_TYPE DeviceFD,
			       Direction_T Direction,
			       CDB_T *CDB,
			       int CDB_Length,
			       void *DataBuffer,
			       int DataBufferLength,
			       RequestSense_T *RequestSense)
{
    int ioctl_result;
    struct sctl_io Command;

    int i;

    memset(&Command, 0, sizeof(struct sctl_io));
    memset(RequestSense, 0, sizeof(RequestSense_T));

    switch (Direction) {
         case Input:
              if (DataBufferLength > 0)
	           memset(DataBuffer, 0, DataBufferLength);
              Command.flags =  SCTL_READ | SCTL_INIT_SDTR;
              break;
         case Output:
              Command.flags = SCTL_INIT_WDTR | SCTL_INIT_SDTR;
              break;
         }

    Command.max_msecs = sctl_io_timeout;    /* Set timeout to <n> minutes. */
    memcpy(Command.cdb, CDB, CDB_Length);
    Command.cdb_length = CDB_Length;
    Command.data = DataBuffer;
    Command.data_length = DataBufferLength;
    ioctl_result=ioctl(DeviceFD, SIOC_IO, &Command);
    SCSI_Default_Timeout();  /* change the default back to 5 minutes */
    if (ioctl_result < 0) {
         perror("mtx");
         return ioctl_result;
         }

    if (Command.sense_xfer > sizeof(RequestSense_T)) {
      Command.sense_xfer=sizeof(RequestSense_T);
    }

    if (Command.sense_xfer) {
      memcpy(RequestSense, Command.sense, Command.sense_xfer);
    }

    return Command.sense_status;
}