/***************************************************************************************** Copyright (c) 2002 The UbixOS Project All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions, the following disclaimer and the list of authors. Redistributions in binary form must reproduce the above copyright notice, this list of conditions, the following disclaimer and the list of authors in the documentation and/or other materials provided with the distribution. Neither the name of the UbixOS Project nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT OWNER 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. $Id$ *****************************************************************************************/ #include <ubixfs/ubixfs.h> #include <vfs/file.h> #include <vfs/mount.h> #include <sys/video.h> #include <sys/device.h> #include <ubixos/types.h> #include <ubixos/sched.h> #include <ubixos/kpanic.h> #include <lib/kmalloc.h> #include <lib/string.h> #include <lib/kprintf.h> #include <vmm/paging.h> int sprintf(char *buf,const char *fmt, ...); /* TEMP */ int enableUbixFS() { /* Add UbixFS */ if (vfsRegisterFS(0,initUbixFS,readUbixFS,writeUbixFS,openFileUbixFS,ubixFSUnlink,ubixFSmkDir,0x0,0x0) != 0x0) { kpanic("Unable To Enable UbixFS"); return(0x1); } /* Return */ return(0x0); } void initUbixFS(struct mountPoints *mp) { struct ubixFSInfo *fsInfo = 0x0; mp->fsInfo = (struct ubixFSInfo *)kmalloc(sizeof(struct ubixFSInfo)); fsInfo = mp->fsInfo; fsInfo->rootDir = 0x0; //mp->diskLabel->partitions[mp->partition].pOffset -= 63; if ((mp->diskLabel->magicNum == UBIXDISKMAGIC) && (mp->diskLabel->magicNum2 == UBIXDISKMAGIC)) { fsInfo->blockAllocationTable = (struct blockAllocationTableEntry *)kmalloc(mp->diskLabel->partitions[mp->partition].pBatSize*512); /* fsInfo->blockAllocationTable[0].nextBlock = 100; */ fsInfo->batEntries = ((mp->diskLabel->partitions[mp->partition].pBatSize*512)/sizeof(struct blockAllocationTableEntry)); kprintf("C"); mp->device->devInfo->read(mp->device->devInfo->info,fsInfo->blockAllocationTable,mp->diskLabel->partitions[mp->partition].pOffset,mp->diskLabel->partitions[mp->partition].pBatSize); kprintf("Offset: [%i], Partition: [%i]\n",mp->diskLabel->partitions[mp->partition].pOffset,mp->partition); kprintf("UbixFS Initialized\n"); } else { kprintf("Insert System Disk!\n"); while (1); initUbixFS(mp); } /* Return */ return; } int openFileUbixFS(char *file,fileDescriptor *fd) { int x=0; struct directoryEntry *dirEntry = (struct directoryEntry *)kmalloc(0x4000); struct ubixFSInfo *fsInfo = fd->mp->fsInfo; fd->mp->device->devInfo->read(fd->mp->device->devInfo->info,dirEntry,(fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[fsInfo->rootDir].realSector),(0x4000/512)); if ((fd->mode & fileRead) == fileRead) { for (x=0;x<(0x4000/sizeof(struct directoryEntry));x++) { if ((int)!kstrcmp(dirEntry[x].fileName,file)) { fd->start = dirEntry[x].startCluster; fd->size = dirEntry[x].size; fd->perms = dirEntry[x].permissions; fd->dirBlock = 0x0; /* Directory Start Sector */ kfree(dirEntry); return((int)1); } } } else if ((fd->mode & fileWrite) == fileWrite) { for (x=0;x<(0x4000/sizeof(struct directoryEntry));x++) { if (!kstrcmp(dirEntry[x].fileName,file)) { fd->start = dirEntry[x].startCluster; fd->size = dirEntry[x].size; fd->perms = dirEntry[x].permissions; fd->dirBlock = 0x0; /* Directory Start Sector */ kfree(dirEntry); return(0x1); } if (dirEntry[x].attributes == 0x0) { sprintf(dirEntry[x].fileName,file); dirEntry[x].size = 0x0; dirEntry[x].startCluster = getFreeBlocks(1,fd); dirEntry[x].attributes = typeFile; dirEntry[x].permissions = 3754; fd->size = 0x0; fd->start = dirEntry[x].startCluster; fd->dirBlock = 0x0; fd->mp->device->devInfo->write(fd->mp->device->devInfo->info,dirEntry,(fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[fsInfo->rootDir].realSector),8); kfree(dirEntry); return(0x1); } } } kfree(dirEntry); return((int)0); } int writeFileByte(int ch,fileDescriptor *fd,long offset) { int blockCount = 0x0,batIndex = 0x0,batIndexPrev = fd->start,i = 0x0; struct directoryEntry *dirEntry = 0x0; struct ubixFSInfo *fsInfo = fd->mp->fsInfo; /* Find Out How Many Blocks Long This File Is */ blockCount = (offset/4096); /* Find The Block If It Doesn't Exist We Will Have To Allocate One */ for (i=0x0;i<=fd->mp->diskLabel->partitions[fd->mp->partition].pBatSize;i++) { batIndex = fsInfo->blockAllocationTable[batIndexPrev].nextBlock; if (batIndex == 0x0) { break; } batIndexPrev = batIndex; } if ((offset%4096 == 0) && (fd->status == fdRead)) { fd->status = fdOpen; } /* If batIndex == 0x0 Then We Must Allocate A New Block */ if (batIndex == 0x0) { for (i=1;i < fsInfo->batEntries;i++) { if (fsInfo->blockAllocationTable[i].attributes == 0x0) { fsInfo->blockAllocationTable[batIndexPrev].nextBlock = i; fsInfo->blockAllocationTable[batIndex].nextBlock = -1; batIndex = i; fd->start = i; break; } } /* fd->mp->drive->read(fd->mp->drive->driveInfoStruct,diskLabel->partitions[0].pOffset+blockAllocationTable[batIndex].realSector,8,fd->buffer); */ fd->buffer[offset-(blockCount*4096)] = ch; fd->mp->device->devInfo->write(fd->mp->device->devInfo->info,fd->buffer,fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[batIndex].realSector,8); } else { if (fd->status != fdRead) { fd->mp->device->devInfo->read(fd->mp->device->devInfo->info,fd->buffer,fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[batIndex].realSector,8); fd->status = fdRead; } fd->buffer[offset-(blockCount*4096)] = ch; fd->mp->device->devInfo->write(fd->mp->device->devInfo->info,fd->buffer,fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[batIndex].realSector,8); } if (offset > fd->size) { fd->size = offset; dirEntry = (struct directoryEntry *)kmalloc(4096); fd->mp->device->devInfo->read(fd->mp->device->devInfo->info,dirEntry,(fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[fd->dirBlock].realSector),8); for (i=0x0;i<(4096/sizeof(struct directoryEntry));i++) { if ((int)!kstrcmp(dirEntry[i].fileName,fd->fileName)) break; } dirEntry[i].size = fd->size; fd->mp->device->devInfo->write(fd->mp->device->devInfo->info,dirEntry,(fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[fd->dirBlock].realSector),8); kfree(dirEntry); } return(ch); } /* Verified Functions */ /************************************************************************ Function: int readUbixFS(fileDescriptor *fd,char *data,long offset,long size) Description: Read File Into Data Notes: ************************************************************************/ int readUbixFS(fileDescriptor *fd,char *data,long offset,long size) { int blockCount = 0x0,batIndex = fd->start; long i = 0x0; struct ubixFSInfo *fsInfo = fd->mp->fsInfo; blockCount = ((offset)/4096); /* Find The Starting Block */ for (i=1;i<=blockCount;i++) { batIndex = fsInfo->blockAllocationTable[batIndex].nextBlock; if (batIndex == 0x0) { /* sysErr(log, "Invalid File Offset"); */ return(0); } } /* If The File Size Is Greater Then The Offset Lets Goto Work */ fd->mp->device->devInfo->read(fd->mp->device->devInfo->info,fd->buffer,fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[batIndex].realSector,blockSize); for (i=0x0;i<size;i++) { if (offset > fd->size) { /* Set File EOF If There Is Nothing To Do */ data[i] = '\0'; fd->status = fdEof; return(size); } /* Copy Data From Buffer To Data */ data[i] = fd->buffer[offset-(blockCount*4096)]; offset++; if (offset%4096 == 0 && offset != size) { batIndex = fsInfo->blockAllocationTable[batIndex].nextBlock; fd->mp->device->devInfo->read(fd->mp->device->devInfo->info,fd->buffer,fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[batIndex].realSector,blockSize); blockCount++; } } /* Return */ return(size); } /************************************************************************ Function: int writeUbixFS(fileDescriptor *fd,char *data,long offset,long size) Description: Write Data Into File Notes: ************************************************************************/ int writeUbixFS(fileDescriptor *fd,char *data,long offset,long size) { uInt32 blockOffset = 0x0; uInt32 blockIndex = fd->start; uInt32 blockIndexPrev = fd->start; uInt32 i = 0x0; struct ubixFSInfo *fsInfo = fd->mp->fsInfo; struct directoryEntry *dirEntry = 0x0; blockOffset = (offset/0x1000); if (fd->size != 0x0) { for (i = 0x0;i < blockOffset;i++) { blockIndex = fsInfo->blockAllocationTable[blockIndexPrev].nextBlock; if (blockIndex == EOBC) { blockIndex = getFreeBlocks(1,fd); fsInfo->blockAllocationTable[blockIndexPrev].nextBlock = blockIndex; fsInfo->blockAllocationTable[blockIndex].nextBlock = EOBC; break; } blockIndexPrev = blockIndex; } } fd->mp->device->devInfo->read(fd->mp->device->devInfo->info,fd->buffer,fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[blockIndex].realSector,blockSize); for (i = 0x0;i < size;i++) { fd->buffer[(offset- (blockOffset *0x1000))] = data[i]; offset++; if (offset%4096 == 0x0) { blockOffset++; fd->mp->device->devInfo->write(fd->mp->device->devInfo->info,fd->buffer,fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[blockIndex].realSector,blockSize); if (fsInfo->blockAllocationTable[blockIndex].nextBlock == EOBC) { blockIndexPrev = blockIndex; blockIndex = getFreeBlocks(1,fd); fsInfo->blockAllocationTable[blockIndexPrev].nextBlock = blockIndex; fsInfo->blockAllocationTable[blockIndex].nextBlock = EOBC; } else { blockIndex = fsInfo->blockAllocationTable[blockIndex].nextBlock; fd->mp->device->devInfo->read(fd->mp->device->devInfo->info,fd->buffer,fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[blockIndex].realSector,blockSize); } } } fd->mp->device->devInfo->write(fd->mp->device->devInfo->info,fd->buffer,fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[blockIndex].realSector,blockSize); if (offset > fd->size) { fd->size = offset; dirEntry = (struct directoryEntry *)kmalloc(4096); fd->mp->device->devInfo->read(fd->mp->device->devInfo->info,dirEntry,(fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[fd->dirBlock].realSector),blockSize); for (i=0x0;i<(4096/sizeof(struct directoryEntry));i++) { if ((int)!kstrcmp(dirEntry[i].fileName,fd->fileName)) break; } dirEntry[i].size = fd->size; dirEntry[i].startCluster = fd->start; fd->mp->device->devInfo->write(fd->mp->device->devInfo->info,dirEntry,(fd->mp->diskLabel->partitions[fd->mp->partition].pOffset+fsInfo->blockAllocationTable[fd->dirBlock].realSector),blockSize); kfree(dirEntry); } /* Return */ return(size); } void ubixFSUnlink(char *path,struct mountPoints *mp) { int x=0; struct directoryEntry *dirEntry = (struct directoryEntry *)kmalloc(0x1000); struct ubixFSInfo *fsInfo = mp->fsInfo; mp->device->devInfo->read(mp->device->devInfo->info,dirEntry,(mp->diskLabel->partitions[mp->partition].pOffset+fsInfo->blockAllocationTable[fsInfo->rootDir].realSector),8); for (x=0;x<(4096/sizeof(struct directoryEntry));x++) { if ((int)!kstrcmp(dirEntry[x].fileName,path)) { dirEntry[x].attributes |= typeDeleted; dirEntry[x].fileName[0] = '?'; mp->device->devInfo->write(mp->device->devInfo->info,dirEntry,(mp->diskLabel->partitions[mp->partition].pOffset+fsInfo->blockAllocationTable[fsInfo->rootDir].realSector),8); return; } } kprintf("File Not Found\n"); return; } /*** $Log$ Revision 1.10 2004/06/04 13:20:22 reddawg ubixFSmkDir(): played with it a bit to see if it still worked Revision 1.9 2004/06/04 10:19:42 reddawg notes: we compile again, thank g-d anyways i was about to cry Revision 1.8 2004/06/01 00:04:53 reddawg Try now mark Revision 1.7 2004/05/19 15:20:06 reddawg Fixed reference problems due to changes in drive subsystem Revision 1.6 2004/05/19 04:07:43 reddawg kmalloc(size,pid) no more it is no kmalloc(size); the way it should of been Revision 1.5 2004/04/29 15:45:19 reddawg Fixed some bugs so now the automade images will work correctly Revision 1.4 2004/04/28 21:10:40 reddawg Lots Of changes to make it work with existing os Revision 1.3 2004/04/28 13:33:09 reddawg Overhaul to ubixfs and boot loader and MBR to work well with our schema now BAT and dir and file entries are all offset 64Sectors from the start of the partition Revision 1.2 2004/04/28 02:22:55 reddawg This is a fiarly large commit but we are starting to use new driver model all around Revision 1.1.1.1 2004/04/15 12:07:08 reddawg UbixOS v1.0 Revision 1.31 2004/04/13 16:36:34 reddawg Changed our copyright, it is all now under a BSD-Style license END ***/