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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
|
/*
* AFFLIB(tm)
*
* Copyright (c) 2005, 2006
* Simson L. Garfinkel and Basis Technology Corp.
* All rights reserved.
*
* This code is derrived from software contributed by Simson L. Garfinkel
*
* Support for split raw files and .afm files written by Joel N. Weber II
*
* 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Simson L. Garfinkel
* and Basis Technology Corp.
* 4. Neither the name of Simson L. Garfinkel, Basis Technology, or other
* contributors to this program may be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY SIMSON L. GARFINKEL, BASIS TECHNOLOGY,
* 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 SIMSON L. GARFINKEL, BASIS TECHNOLOGy,
* 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.
*
* AFF and AFFLIB is a trademark of Simson Garfinkel and Basis Technology Corp.
*/
#include "affconfig.h"
#include "afflib.h"
#include "afflib_i.h"
#include "vnode_split_raw.h"
#ifdef HAVE_CTYPE_H
#include <ctype.h>
#endif
#ifndef HAVE_ISDIGIT
static int isdigit(char ch)
{
return ch>='0' && ch<='9';
}
#endif
/* split raw file implementation with optional metadata support */
struct split_raw_private {
u_int num_raw_files; // number of raw files
int *fds; // array of file descriptors for each open raw file
uint64_t *pos; // where we are in each file
char *first_raw_fname; /* The filename of the first raw file. */
char *next_raw_fname; /* The filename of the next raw file, or 0
when one big file is used. */
int64_t cur_page; // current page number, used for split_raw_get_next_seg
};
static inline struct split_raw_private *SPLIT_RAW_PRIVATE(AFFILE *af)
{
assert(af->v == &vnode_split_raw);
return (struct split_raw_private *)(af->vnodeprivate);
}
/* Return 1 if a file is a split raw file... */
static int split_raw_identify_file(const char *filename,int exists)
{
if(exists && access(filename,R_OK)!=0) return 0; // needs to exist and it doesn't
return af_ext_is(filename,"000") ||
af_ext_is(filename,"001") ||
af_ext_is(filename,"aaa");
}
/* split_raw_close:
* Close each of the split files.
*/
static int split_raw_close(AFFILE *af)
{
struct split_raw_private *srp = SPLIT_RAW_PRIVATE(af);
for (uint64_t i = 0; i < srp->num_raw_files; i++){
close (srp->fds[i]);
}
if (srp->fds) free (srp->fds);
if (srp->pos) free (srp->pos);
if (srp->first_raw_fname) free (srp->first_raw_fname);
if (srp->next_raw_fname) free (srp->next_raw_fname);
free(srp);
af->vnodeprivate = 0;
return 0;
}
/* increment_fname():
* takes filesname.000 and turns it into filename.001
* takes filename.aaa and makes it filename.aab
* fn must be at least 3 characters long.
* Returns 0 if successful, or -1 if it runs out of namespace.
*/
static int increment_fname (char *fn)
{
/* Scan to the end of the string, minus 3 */
while (fn[3]) fn++;
if (fn[2] == '9') {
fn[2] = '0';
if (fn[1] == '9') {
fn[1] = '0';
if (fn[0] == '9')
return -1;
fn[0]++;
} else {
fn[1]++;
}
} else if (isdigit (fn[2])) {
fn[2]++;
} else if ((fn[2] == 'Z') || (fn[2] == 'z')) {
fn[2] -= 25;
fn[1]++;
} else if ((fn[2] == 'L') || (fn[2] == 'l')) {
/* We don't want to treat .afm as a valid raw file, since it is an
* AFF metadata file. So if we would end up with .afm as the name of the
* raw file, report being out of namespace instead.
*/
if ((fn[1] == 'F') || (fn[1] == 'f'))
errno = EINVAL;
return -1;
fn[2]++;
} else {
fn[2]++;
}
return 0;
}
void srp_validate(AFFILE *af)
{
struct split_raw_private *srp = SPLIT_RAW_PRIVATE(af);
for(unsigned int i=0;i<srp->num_raw_files;i++){
assert(srp->fds[i]!=0);
}
}
void srp_dump(AFFILE *af)
{
struct split_raw_private *srp = SPLIT_RAW_PRIVATE(af);
for(unsigned int i=0;i<srp->num_raw_files;i++){
fprintf(stderr," fds[%d]=%d pos[%d]=%"I64d"\n",i,srp->fds[i],i,srp->pos[i]);
}
srp_validate(af);
fprintf(stderr,"===================\n");
}
static void srp_add_fd(AFFILE *af,int fd)
{
struct split_raw_private *srp = SPLIT_RAW_PRIVATE(af);
srp->num_raw_files++;
srp->fds = (int *)realloc (srp->fds, sizeof (int) * (srp->num_raw_files));
srp->fds[srp->num_raw_files - 1] = fd;
srp->pos = (uint64_t *)realloc (srp->pos, sizeof (uint64_t) * (srp->num_raw_files));
srp->pos[srp->num_raw_files - 1] = 0;
}
static int split_raw_open_internal(AFFILE *af, uint64_t *image_size)
{
struct split_raw_private *srp = SPLIT_RAW_PRIVATE(af);
int fd;
struct stat sb;
fd = open(srp->first_raw_fname, af->openflags|O_BINARY, 0666);
if (fd < 0) {
(*af->error_reporter)("split_raw_open_internal: open(%s): ",af->fname);
return -1;
}
srp->num_raw_files = 1;
srp->fds = (int *)malloc (sizeof (int));
srp->fds[0] = fd;
srp->pos = (uint64_t *)malloc (sizeof (uint64_t));
if (fstat (fd, &sb) != 0) {
(*af->error_reporter)("split_raw_open_internal: fstat(%s): ",af->fname);
close (fd);
return -1;
}
af->maxsize = 0;
/* If there's a next_raw_fname set by the caller of this function, we
* have a split file; otherwise we have one big file.
*/
if (srp->next_raw_fname==0) {
(*image_size) = sb.st_size;
return 0;
}
/* This gets set to 1 the first time we find a file whose size doesn't
match the size of the first file. If we successfully open a file
when this flag is already 1, then our sanity checks fail. */
int current_file_must_be_last = 0;
do {
if (increment_fname (srp->next_raw_fname) != 0) {
fprintf (stderr, "split_raw_open_internal: too many files\n");
errno = EINVAL;
return -1;
}
fd = open(srp->next_raw_fname,
af->openflags & O_RDWR ? (O_RDWR|O_BINARY) : (O_RDONLY|O_BINARY));
if (fd < 0) {
if (errno != ENOENT) {
(af->error_reporter)("split_raw_open_internal errno=%d",errno);
return -1;
}
(*image_size) = sb.st_size + af->maxsize * (srp->num_raw_files - 1);
errno = 0; // reset errno
return 0; // end of files
}
srp_add_fd(af,fd);
if (current_file_must_be_last) {
fprintf(stderr,
"split_raw_open_internal: %s exists, "
"but previous file didn't match expected file size\n",af->fname);
return -1;
}
/* Set af->maxsize to the size of the first file, but only
if a second file exists. If no second file exists, then we want
to use af->maxsize, which cannot be set until after
af_open returns. */
if (!af->maxsize)
af->maxsize = sb.st_size;
if (fstat (fd, &sb) != 0) {
(*af->error_reporter)("split_raw_open_internal: fstat(%s): ",af->fname);
return -1;
}
if ((uint64_t)sb.st_size != af->maxsize){
current_file_must_be_last = 1;
}
} while (1);
return -1;
}
static int split_raw_open(AFFILE *af)
{
int ret;
af->vnodeprivate = (void *)calloc(sizeof(struct split_raw_private),1);
struct split_raw_private *srp = SPLIT_RAW_PRIVATE(af);
srp->first_raw_fname = strdup (af->fname);
srp->next_raw_fname = strdup (af->fname);
ret = split_raw_open_internal (af, &(af->image_size));
if (ret != 0) {
split_raw_close (af);
return ret;
}
/* Adaptively find the largest pagesize we can use that fits within maxsize */
af->image_pagesize = 512;
while ((af->image_pagesize < (16 * 1024 * 1024))
&& !(af->maxsize % (af->image_pagesize * 2)))
af->image_pagesize *= 2;
if ((ret == 0) && (af->maxsize % af->image_pagesize!=0)) {
fprintf (stderr,
"split_raw_open: %s: raw_file_size (%"I64d" not a multiple of pagesize %lu\n",
af->fname, af->maxsize,af->image_pagesize);
split_raw_close (af);
return -1;
}
return 0;
}
static int split_raw_vstat(AFFILE *af,struct af_vnode_info *vni)
{
memset(vni,0,sizeof(*vni)); // clear it
vni->imagesize = af->image_size;
vni->pagesize = af->image_pagesize;
vni->supports_compression = 0;
vni->supports_metadata = 0;
vni->is_raw = 1;
vni->changable_pagesize = 1; // change it at any time
vni->changable_sectorsize = 1; // change it at any time
return 0;
}
static int split_raw_read(AFFILE *af, unsigned char *buf, uint64_t pos,size_t count)
{
struct split_raw_private *srp = SPLIT_RAW_PRIVATE(af);
off_t c3;
int ret = 0; // how many bytes read
if ((af->image_size - pos) < (unsigned)count){
count = (off_t)(af->image_size - pos);
}
while (count > 0) {
int filenum = -1;
off_t file_offset = 0;
if (af->maxsize) { // if we do file segments
filenum = (int)(pos / af->maxsize);
file_offset = (off_t)(pos % af->maxsize);
} else {
filenum = 0;
file_offset = (off_t)pos;
}
if (file_offset != (off_t) srp->pos[filenum]) {
off_t c2 = lseek (srp->fds[filenum], file_offset, SEEK_SET);
if (file_offset != c2) { // seek failed; return work to date
if (ret) return ret; // some bytes were read; return that
else return -1; // no bytes read; return error
}
srp->pos[filenum] = c2; // this file starts here
}
if (af->maxsize && ((af->maxsize - file_offset) < (unsigned) count))
c3 = (off_t)(af->maxsize - file_offset);
else
c3 = count;
off_t c4 = read (srp->fds[filenum], buf, c3);
if (c4 <= 0) { // got an error
if (ret) return ret; // return how many bytes we read
else return -1; // otherwise, return -1
}
buf += c4;
count -= c4;
ret += c4;
pos += c4;
srp->pos[filenum] += c4; // position of this file pointer
if (c3 != c4) return ret; // incomplete?
}
return ret;
}
/*
* split_raw_write_internal2:
* If buf==0, assume we are writing zeros to the end of the file,
* and just seek to the last character and write a single NUL.
*/
int split_raw_write_internal2(AFFILE *af, unsigned char *buf, uint64_t pos,size_t count)
{
struct split_raw_private *srp = SPLIT_RAW_PRIVATE(af);
off_t c1, c3;
int i;
int ret = 0;
struct affcallback_info acbi;
/* Setup the callback structure */
memset(&acbi,0,sizeof(acbi));
acbi.info_version = 1;
acbi.af = af->parent ? af->parent : af;
acbi.pagenum = af->image_pagesize ? pos / af->image_pagesize : 0;
acbi.bytes_to_write = count;
while (count > 0) {
if (af->maxsize) { // do we need to possibly split into multiple file writes?
/* Figure out which file number we will need to write to... */
if (pos >= (af->maxsize * srp->num_raw_files)) {
int fd = open(srp->next_raw_fname, O_RDWR | O_CREAT | O_EXCL | O_BINARY, 0666);
if (fd < 0) {
(*af->error_reporter)("split_raw_write: open(%s): ",af->fname);
if (ret) return ret;
else return -1;
}
srp_add_fd(af,fd);
if (increment_fname (srp->next_raw_fname) != 0) {
(*af->error_reporter)("split_raw_write: too many files\n");
if (ret)
return ret;
else
return -1;
}
}
i = (int)(pos / af->maxsize);
c1 = (off_t)(pos % af->maxsize);
} else {
i = 0;
c1 = (off_t)pos;
}
if (c1 != (off_t)srp->pos[i]) { // do we need to seek this file?
off_t c2 = lseek (srp->fds[i], c1, SEEK_SET); // try to seek
if (c1 != c2) { // hm. Ended up in the wrong place. That's an error
if (ret>0) { // return how many bytes we got
return ret;
}
else {
return -1;
}
}
srp->pos[i] = c2;
}
if (af->maxsize && ((af->maxsize - c1) < (unsigned)count))
c3 = (off_t)(af->maxsize - c1);
else
c3 = count;
if(af->w_callback) {acbi.phase = 3;(*af->w_callback)(&acbi);}
/* WRITE THE DATA! */
off_t c4 = 0;
if(buf){
c4 = write (srp->fds[i], buf, c3);
}
else {
/* Extend with lseek() and write a single byte */
char z = 0;
lseek(srp->fds[i],c3-1,SEEK_CUR);
if(write(srp->fds[i],&z,1)!=1) return -1; // failure
c4 = c3;
}
/* DONE! */
acbi.bytes_written = c4;
if(af->w_callback) {acbi.phase = 4;(*af->w_callback)(&acbi);}
if (c4 <= 0) { // some error writing?
if (ret)
return ret;
else
return -1;
}
buf += c4;
count -= c4;
ret += c4;
pos += c4;
srp->pos[i] += c4;
if (af->image_size < pos) af->image_size = pos; // image was extended
if (c3 != c4){ // amount written doesn't equal request; return
return ret;
}
}
return ret;
}
int split_raw_write(AFFILE *af, unsigned char *buf, uint64_t pos,size_t count)
{
/* If we are being asked to start writing beyond the end of the file
* pad out the file (and possibly create one or more new image files.)
*/
if (af->maxsize) {
if (pos > af->image_size) { // writing beyond the end...
while(pos > af->image_size){
/* repeat until file is as big as where we should be writing */
int64_t bytes_left = pos - af->image_size;
int bytes_to_write = (int)(af->maxsize - (af->image_size % af->maxsize));
if(bytes_to_write > bytes_left) bytes_to_write = (int)bytes_left;
int bytes_written = split_raw_write_internal2(af,0,af->image_size,bytes_to_write);
if(bytes_to_write != bytes_written){
return -1; // some kind of internal error
}
}
}
}
return split_raw_write_internal2 (af, buf, pos,count);
}
/* Get a segment; if a data page is being asked for, then fake it.
* Otherwise, return an error.
*/
static int split_raw_get_seg(AFFILE *af,const char *name,unsigned long *arg,unsigned char *data,
size_t *datalen)
{
int64_t page_num = af_segname_page_number(name);
if(page_num<0){
errno = ENOTSUP; // sorry! We don't store metadata
return -1;
}
uint64_t pos = page_num * af->image_pagesize; // where we are to start reading
uint64_t bytes_left = af->image_size - pos; // how many bytes left in the file
unsigned int bytes_to_read = af->image_pagesize; // copy this many bytes, unless
if(bytes_to_read > bytes_left) bytes_to_read = (unsigned int)bytes_left; // only this much is left
if(arg) *arg = 0; // arg is always 0
if(datalen){
if(data==0){ // asked for 0 bytes, so give the actual size
*datalen = bytes_to_read;
return 0;
}
if(*datalen < (unsigned)bytes_to_read){
*datalen = bytes_to_read;
return AF_ERROR_DATASMALL;
}
}
if(data){
int bytes_read = split_raw_read(af,data,pos,bytes_to_read);
if(bytes_read>=0){
if(datalen) *datalen = bytes_read;
return 0;
}
return -1; // some kind of EOF?
}
return 0; // no problems!
}
/*
* split_raw_get_next_seg:
* Try get_next_seg on the AFF file first. If that fails,
* create the next virtual segment
*/
static int split_raw_get_next_seg(AFFILE *af,char *segname,size_t segname_len,unsigned long *arg,
unsigned char *data,size_t *datalen_)
{
struct split_raw_private *srp = SPLIT_RAW_PRIVATE(af);
int64_t total_pages = (af->image_size + af->image_pagesize - 1) / af->image_pagesize;
if(srp->cur_page >= total_pages) return -1; // that's all there are
/* Make the segment name */
char pagename[AF_MAX_NAME_LEN];
memset(pagename,0,sizeof(pagename));
snprintf(pagename,sizeof(pagename),AF_PAGE,srp->cur_page++);
/* Get the segment, if we can */
int r = split_raw_get_seg(af,pagename,arg,data,datalen_);
/* If r==0 and there is room for copying in the segment name, return it */
if(r==0){
if(strlen(pagename)+1 < segname_len){
strcpy(segname,pagename);
return 0;
}
/* segname wasn't big enough */
return -2;
}
return r; // some other error
}
/* Rewind all of the segments */
static int split_raw_rewind_seg(AFFILE *af)
{
struct split_raw_private *srp = SPLIT_RAW_PRIVATE(af);
srp->cur_page = 0;
return 0;
}
static int split_raw_update_seg(AFFILE *af, const char *name,
unsigned long arg,const u_char *value,unsigned int vallen)
{
int64_t page_num = af_segname_page_number(name);
if(page_num<0){
errno = ENOTSUP; // sorry! We don't store metadata
return -1;
}
uint64_t pos = page_num * af->image_pagesize; // where we are to start reading
int written = split_raw_write(af, (unsigned char *)value, pos,vallen);
if(written==(int)vallen) return 0; // success
return -1;
}
struct af_vnode vnode_split_raw = {
AF_IDENTIFY_SPLIT_RAW,
AF_VNODE_TYPE_COMPOUND|AF_VNODE_TYPE_RELIABLE|AF_VNODE_MAXSIZE_MULTIPLE|AF_VNODE_NO_SIGNING|AF_VNODE_NO_SEALING,
"Split Raw",
split_raw_identify_file,
split_raw_open,
split_raw_close,
split_raw_vstat,
split_raw_get_seg, // get seg
split_raw_get_next_seg, // get_next_seg
split_raw_rewind_seg, // rewind_seg
split_raw_update_seg, // update_seg
0, // del_seg
split_raw_read, // read
split_raw_write // write
};
|