mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
92 lines
2.1 KiB
C
92 lines
2.1 KiB
C
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
|
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
|
|
#include "libemile.h"
|
|
|
|
int emile_first_set_param_scsi(int fd, char *second_name)
|
|
{
|
|
int ret;
|
|
int fd_second;
|
|
char first[1024];
|
|
int i;
|
|
int current;
|
|
struct emile_container *container;
|
|
unsigned short max_blocks;
|
|
unsigned short *first_max_blocks = (unsigned short*)&first[1022];
|
|
unsigned long *second_size = (unsigned long*)&first[1018];
|
|
unsigned short *unit_id = (unsigned short*)&first[1016];
|
|
unsigned short *block_size = (unsigned short*)&first[1014];
|
|
unsigned short *count;
|
|
unsigned long *offset;
|
|
|
|
ret = read(fd, first, 1024);
|
|
if (ret == -1)
|
|
return EEMILE_CANNOT_READ_FIRST;
|
|
|
|
max_blocks = *first_max_blocks / 6;
|
|
|
|
container = (struct emile_container*)
|
|
malloc(sizeof(struct emile_container)
|
|
+ max_blocks * sizeof(struct emile_block));
|
|
if (container == NULL)
|
|
return EEMILE_MALLOC_ERROR;
|
|
|
|
container->max_blocks = max_blocks;
|
|
fd_second = open(second_name, O_RDONLY);
|
|
if (fd_second == -1)
|
|
return EEMILE_CANNOT_OPEN_FILE;
|
|
|
|
ret = emile_scsi_create_container(fd_second, container);
|
|
if (ret != 0)
|
|
return ret;
|
|
close(fd_second);
|
|
|
|
*unit_id = container->unit_id;
|
|
*block_size = container->block_size;
|
|
|
|
*second_size = 0;
|
|
current = 1014;
|
|
for(i = 0; i < max_blocks - 1; i++)
|
|
{
|
|
current -= 2;
|
|
count = (short*)(&first[current]);
|
|
*count = container->blocks[i].count;
|
|
if (container->blocks[i].count == 0)
|
|
break;
|
|
printf("(%d, %d) ", container->blocks[i].offset,
|
|
container->blocks[i].count);
|
|
current -= 4;
|
|
offset = (long*)(&first[current]);
|
|
*offset = container->blocks[i].offset;
|
|
(*second_size) += container->blocks[i].count;
|
|
}
|
|
putchar('\n');
|
|
/* mark end of blocks list */
|
|
current -= 2;
|
|
count = (short*)(&first[current]);
|
|
*count = 0;
|
|
/* set second level size */
|
|
(*second_size) *= container->block_size;
|
|
|
|
ret = lseek(fd, 0, SEEK_SET);
|
|
if (ret != 0)
|
|
return EEMILE_CANNOT_WRITE_FIRST;
|
|
|
|
ret = write(fd, first, 1024);
|
|
if (ret == -1)
|
|
return EEMILE_CANNOT_WRITE_FIRST;
|
|
|
|
return 0;
|
|
}
|