#include "Trace.h"
#include "Exceptions.h"
#include "sun_fc.h"
#include <string.h>
#include "Handle.h"
#include "HBA.h"
#include "HBAPort.h"
inline HBA_WWN
getAdapterPortWWN(HBA_HANDLE handle,HBA_UINT32 index) {
HBA_WWN hba_wwn;
memset(hba_wwn.wwn, 0, sizeof (hba_wwn));
try {
Handle *myHandle = Handle::findHandle(handle);
HBA *hba = myHandle->getHBA();
HBAPort *port = hba->getPortByIndex(index);
uint64_t tmp = htonll(port->getPortWWN());
memcpy(hba_wwn.wwn, &tmp, sizeof (hba_wwn));
} catch (...) { }
return (hba_wwn);
}
#ifdef __cplusplus
extern "C" {
#endif
HBA_STATUS
Sun_fcGetFcpTargetMapping(HBA_HANDLE handle, PHBA_FCPTARGETMAPPING mapping) {
HBA_STATUS status;
int count;
PHBA_FCPTARGETMAPPINGV2 mappingV2;
HBA_ADAPTERATTRIBUTES attributes;
HBA_UINT32 entries = 0;
HBA_UINT32 current = 0;
HBA_UINT32 port;
HBA_UINT32 limit;
Trace log("Sun_fcGetFcpTargetMapping");
if (mapping == NULL) {
log.userError("NULL mapping argument.");
return (HBA_STATUS_ERROR_ARG);
}
entries = mapping->NumberOfEntries;
status = Sun_fcGetAdapterAttributes(handle,&attributes);
if (status != HBA_STATUS_OK) {
log.userError("Unable to get adapter attributes");
return HBA_STATUS_ERROR;
}
mappingV2 = (PHBA_FCPTARGETMAPPINGV2) new uchar_t[
(sizeof (HBA_FCPSCSIENTRYV2)*(mapping->NumberOfEntries-1)) +
sizeof (HBA_FCPTARGETMAPPINGV2)];
mapping->NumberOfEntries = 0;
for(port = 0; port < attributes.NumberOfPorts; port++) {
mappingV2->NumberOfEntries = mapping->NumberOfEntries < entries ?
entries - mapping->NumberOfEntries : 0 ;
status = Sun_fcGetFcpTargetMappingV2(handle,
getAdapterPortWWN(handle,port), mappingV2);
mapping->NumberOfEntries += mappingV2->NumberOfEntries;
if (status != HBA_STATUS_OK && status != HBA_STATUS_ERROR_MORE_DATA) {
log.userError("Unable to get mappings for port");
return status;
}
limit = (mapping->NumberOfEntries < entries) ? mapping->NumberOfEntries : entries;
for (count = current; count < limit; count++) {
memcpy(&mapping->entry[count].ScsiId,
&mappingV2->entry[count-current].ScsiId,
sizeof (mapping->entry[count].ScsiId));
memcpy(&mapping->entry[count].FcpId,
&mappingV2->entry[count-current].FcpId,
sizeof (mapping->entry[count].FcpId));
}
current = mapping->NumberOfEntries;
}
delete[](mappingV2);
return (status);
}
#ifdef __cplusplus
}
#endif