Reverted r27685, r27676, r27665, and r27664, the changes related to
letting the boot loader provide full paths for the pre-loaded images. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27753 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -45,13 +45,7 @@ typedef NodeList::Iterator NodeIterator;
|
||||
|
||||
class Directory : public Node {
|
||||
public:
|
||||
Directory(Directory* parent);
|
||||
~Directory();
|
||||
|
||||
Directory* Parent() const;
|
||||
void SetParent(Directory* parent);
|
||||
|
||||
status_t GetPath(const char* entry, char* buffer, size_t bufferSize);
|
||||
Directory();
|
||||
|
||||
virtual ssize_t ReadAt(void *cookie, off_t pos, void *buffer, size_t bufferSize);
|
||||
virtual ssize_t WriteAt(void *cookie, off_t pos, const void *buffer, size_t bufferSize);
|
||||
@@ -64,9 +58,6 @@ class Directory : public Node {
|
||||
virtual status_t GetNextNode(void *cookie, Node **_node) = 0;
|
||||
virtual status_t Rewind(void *cookie) = 0;
|
||||
virtual bool IsEmpty() = 0;
|
||||
|
||||
private:
|
||||
Directory* fParent;
|
||||
};
|
||||
|
||||
/** The console based nodes don't need cookies for I/O, they
|
||||
|
||||
@@ -14,8 +14,6 @@
|
||||
|
||||
|
||||
RootFileSystem::RootFileSystem()
|
||||
:
|
||||
Directory(NULL)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -31,15 +29,6 @@ RootFileSystem::~RootFileSystem()
|
||||
}
|
||||
|
||||
|
||||
status_t
|
||||
RootFileSystem::GetName(char *nameBuffer, size_t bufferSize) const
|
||||
{
|
||||
if (strlcpy(nameBuffer, "/", bufferSize) >= bufferSize)
|
||||
return B_BUFFER_OVERFLOW;
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
||||
status_t
|
||||
RootFileSystem::Open(void **_cookie, int mode)
|
||||
{
|
||||
@@ -149,7 +138,6 @@ RootFileSystem::AddVolume(Directory *volume, Partition *partition)
|
||||
return B_NO_MEMORY;
|
||||
|
||||
volume->Acquire();
|
||||
volume->SetParent(this);
|
||||
entry->name = NULL;
|
||||
entry->root = volume;
|
||||
entry->partition = partition;
|
||||
|
||||
@@ -17,8 +17,6 @@ class RootFileSystem : public Directory {
|
||||
RootFileSystem();
|
||||
virtual ~RootFileSystem();
|
||||
|
||||
virtual status_t GetName(char *nameBuffer, size_t bufferSize) const;
|
||||
|
||||
virtual status_t Open(void **_cookie, int mode);
|
||||
virtual status_t Close(void *cookie);
|
||||
|
||||
|
||||
@@ -6,18 +6,15 @@
|
||||
|
||||
#include "elf.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <boot/arch.h>
|
||||
#include <boot/platform.h>
|
||||
#include <boot/stage2.h>
|
||||
#include <elf32.h>
|
||||
#include <kernel.h>
|
||||
|
||||
#include "loader.h"
|
||||
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
//#define TRACE_ELF
|
||||
#ifdef TRACE_ELF
|
||||
@@ -426,14 +423,7 @@ elf_load_image(Directory *directory, const char *path)
|
||||
|
||||
status_t status = elf_load_image(fd, image);
|
||||
if (status == B_OK) {
|
||||
char tempPath[B_PATH_NAME_LENGTH];
|
||||
if (directory->GetPath(path, tempPath, sizeof(tempPath)) == B_OK) {
|
||||
// Replace the first path component with "boot", as the kernel
|
||||
// will always mount the boot volume there.
|
||||
to_boot_path(tempPath, sizeof(tempPath));
|
||||
image->name = kernel_args_strdup(tempPath);
|
||||
} else
|
||||
image->name = kernel_args_strdup(path);
|
||||
image->name = kernel_args_strdup(path);
|
||||
image->inode = stat.st_ino;
|
||||
|
||||
// insert to kernel args
|
||||
|
||||
@@ -18,9 +18,8 @@
|
||||
|
||||
namespace FFS {
|
||||
|
||||
Directory::Directory(Volume &volume, ::Directory* parent, int32 block)
|
||||
Directory::Directory(Volume &volume, int32 block)
|
||||
:
|
||||
::Directory(parent),
|
||||
fVolume(volume)
|
||||
{
|
||||
void *data = malloc(volume.BlockSize());
|
||||
@@ -32,9 +31,8 @@ Directory::Directory(Volume &volume, ::Directory* parent, int32 block)
|
||||
}
|
||||
|
||||
|
||||
Directory::Directory(Volume &volume, ::Directory* parent, RootBlock &root)
|
||||
Directory::Directory(Volume &volume, RootBlock &root)
|
||||
:
|
||||
::Directory(parent),
|
||||
fVolume(volume)
|
||||
{
|
||||
fNode.SetTo(root.BlockData(), root.BlockSize());
|
||||
@@ -106,7 +104,7 @@ Directory::Lookup(const char *name, bool traverseLinks)
|
||||
if (node->IsFile())
|
||||
return new(nothrow) File(fVolume, block);
|
||||
if (node->IsDirectory())
|
||||
return new(nothrow) Directory(fVolume, this, block);
|
||||
return new(nothrow) Directory(fVolume, block);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -17,8 +17,9 @@ class Volume;
|
||||
|
||||
class Directory : public ::Directory {
|
||||
public:
|
||||
Directory(Volume &volume, ::Directory* parent, RootBlock &root);
|
||||
Directory(Volume &volume, ::Directory* parent, int32 block);
|
||||
Directory();
|
||||
Directory(Volume &volume, RootBlock &root);
|
||||
Directory(Volume &volume, int32 block);
|
||||
virtual ~Directory();
|
||||
|
||||
status_t InitCheck();
|
||||
|
||||
@@ -75,7 +75,7 @@ Volume::Volume(boot::Partition *partition)
|
||||
buffer = newBuffer;
|
||||
|
||||
fRootNode.SetTo(buffer, blockSize);
|
||||
fRoot = new(nothrow) Directory(*this, NULL, fRootNode);
|
||||
fRoot = new(nothrow) Directory(*this, fRootNode);
|
||||
// fRoot will free the buffer for us upon destruction
|
||||
}
|
||||
|
||||
|
||||
@@ -22,27 +22,24 @@ extern Node *get_node_from(int fd);
|
||||
|
||||
namespace BFS {
|
||||
|
||||
Directory::Directory(Volume &volume, ::Directory* parent, block_run run)
|
||||
Directory::Directory(Volume &volume, block_run run)
|
||||
:
|
||||
::Directory(parent),
|
||||
fStream(volume, run),
|
||||
fTree(&fStream)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Directory::Directory(Volume &volume, ::Directory* parent, off_t id)
|
||||
Directory::Directory(Volume &volume, off_t id)
|
||||
:
|
||||
::Directory(parent),
|
||||
fStream(volume, id),
|
||||
fTree(&fStream)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Directory::Directory(::Directory* parent, const Stream &stream)
|
||||
Directory::Directory(const Stream &stream)
|
||||
:
|
||||
::Directory(parent),
|
||||
fStream(stream),
|
||||
fTree(&fStream)
|
||||
{
|
||||
@@ -91,7 +88,7 @@ Directory::Lookup(const char *name, bool traverseLinks)
|
||||
if (fTree.Find((uint8 *)name, strlen(name), &id) < B_OK)
|
||||
return NULL;
|
||||
|
||||
Node *node = Stream::NodeFactory(fStream.GetVolume(), this, id);
|
||||
Node *node = Stream::NodeFactory(fStream.GetVolume(), id);
|
||||
if (!node)
|
||||
return NULL;
|
||||
|
||||
@@ -143,7 +140,7 @@ Directory::GetNextNode(void *cookie, Node **_node)
|
||||
if (status != B_OK)
|
||||
return status;
|
||||
|
||||
*_node = Stream::NodeFactory(fStream.GetVolume(), this, id);
|
||||
*_node = Stream::NodeFactory(fStream.GetVolume(), id);
|
||||
if (*_node == NULL)
|
||||
return B_ERROR;
|
||||
|
||||
@@ -187,7 +184,7 @@ Directory::IsEmpty()
|
||||
status_t
|
||||
Directory::GetName(char *name, size_t size) const
|
||||
{
|
||||
if (fStream.InodeNum() == fStream.GetVolume().Root()) {
|
||||
if (fStream.inode_num == fStream.GetVolume().Root()) {
|
||||
strlcpy(name, fStream.GetVolume().SuperBlock().name, size);
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
@@ -17,9 +17,9 @@ namespace BFS {
|
||||
|
||||
class Directory : public ::Directory {
|
||||
public:
|
||||
Directory(Volume &volume, ::Directory* parent, block_run run);
|
||||
Directory(Volume &volume, ::Directory* parent, off_t id);
|
||||
Directory(::Directory* parent, const Stream &stream);
|
||||
Directory(Volume &volume, block_run run);
|
||||
Directory(Volume &volume, off_t id);
|
||||
Directory(const Stream &stream);
|
||||
virtual ~Directory();
|
||||
|
||||
status_t InitCheck();
|
||||
|
||||
@@ -106,47 +106,31 @@ CachedBlock::SetTo(block_run run)
|
||||
|
||||
Stream::Stream(Volume &volume, block_run run)
|
||||
:
|
||||
fVolume(volume),
|
||||
fInode(NULL)
|
||||
fVolume(volume)
|
||||
{
|
||||
_LoadInode(volume.ToOffset(run));
|
||||
if (read_pos(volume.Device(), volume.ToOffset(run), this, sizeof(bfs_inode)) != sizeof(bfs_inode))
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Stream::Stream(Volume &volume, off_t id)
|
||||
:
|
||||
fVolume(volume),
|
||||
fInode(NULL)
|
||||
fVolume(volume)
|
||||
{
|
||||
_LoadInode(volume.ToOffset(id));
|
||||
}
|
||||
|
||||
|
||||
Stream::Stream(const Stream& other)
|
||||
:
|
||||
fVolume(other.fVolume),
|
||||
fInode(NULL)
|
||||
{
|
||||
_UseInode(other.fInode);
|
||||
if (read_pos(volume.Device(), volume.ToOffset(id), this, sizeof(bfs_inode)) != sizeof(bfs_inode))
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Stream::~Stream()
|
||||
{
|
||||
if (fInode != NULL) {
|
||||
if (--(((int32*)fInode)[-1]) == 0)
|
||||
free((int32*)fInode - 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
status_t
|
||||
Stream::InitCheck()
|
||||
{
|
||||
if (fInode == NULL)
|
||||
return B_NO_MEMORY;
|
||||
|
||||
return fInode->InitCheck(&fVolume);
|
||||
return bfs_inode::InitCheck(&fVolume);
|
||||
}
|
||||
|
||||
|
||||
@@ -157,12 +141,12 @@ Stream::GetNextSmallData(const small_data **_smallData) const
|
||||
|
||||
// begin from the start?
|
||||
if (smallData == NULL)
|
||||
smallData = fInode->small_data_start;
|
||||
smallData = small_data_start;
|
||||
else
|
||||
smallData = smallData->Next();
|
||||
|
||||
// is already last item?
|
||||
if (smallData->IsLast(fInode))
|
||||
if (smallData->IsLast(this))
|
||||
return B_ENTRY_NOT_FOUND;
|
||||
|
||||
*_smallData = smallData;
|
||||
@@ -191,12 +175,12 @@ Stream::ReadLink(char *buffer, size_t bufferSize)
|
||||
{
|
||||
// link in the stream
|
||||
|
||||
if (fInode->Flags() & INODE_LONG_SYMLINK)
|
||||
if (Flags() & INODE_LONG_SYMLINK)
|
||||
return ReadAt(0, (uint8 *)buffer, &bufferSize);
|
||||
|
||||
// link in the inode
|
||||
|
||||
strlcpy(buffer, fInode->short_symlink, bufferSize);
|
||||
strlcpy(buffer, short_symlink, bufferSize);
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
@@ -206,25 +190,21 @@ Stream::FindBlockRun(off_t pos, block_run &run, off_t &offset)
|
||||
{
|
||||
// find matching block run
|
||||
|
||||
if (fInode->data.MaxDirectRange() > 0
|
||||
&& pos >= fInode->data.MaxDirectRange()) {
|
||||
if (fInode->data.MaxDoubleIndirectRange() > 0
|
||||
&& pos >= fInode->data.MaxIndirectRange()) {
|
||||
if (data.MaxDirectRange() > 0 && pos >= data.MaxDirectRange()) {
|
||||
if (data.MaxDoubleIndirectRange() > 0 && pos >= data.MaxIndirectRange()) {
|
||||
// access to double indirect blocks
|
||||
|
||||
CachedBlock cached(fVolume);
|
||||
|
||||
off_t start = pos - fInode->data.MaxIndirectRange();
|
||||
int32 indirectSize
|
||||
= (1L << (INDIRECT_BLOCKS_SHIFT + cached.BlockShift()))
|
||||
* (fVolume.BlockSize() / sizeof(block_run));
|
||||
off_t start = pos - data.MaxIndirectRange();
|
||||
int32 indirectSize = (1L << (INDIRECT_BLOCKS_SHIFT + cached.BlockShift()))
|
||||
* (fVolume.BlockSize() / sizeof(block_run));
|
||||
int32 directSize = NUM_ARRAY_BLOCKS << cached.BlockShift();
|
||||
int32 index = start / indirectSize;
|
||||
int32 runsPerBlock = cached.BlockSize() / sizeof(block_run);
|
||||
|
||||
block_run *indirect = (block_run*)cached.SetTo(
|
||||
fVolume.ToBlock(fInode->data.double_indirect)
|
||||
+ index / runsPerBlock);
|
||||
block_run *indirect = (block_run *)cached.SetTo(
|
||||
fVolume.ToBlock(data.double_indirect) + index / runsPerBlock);
|
||||
if (indirect == NULL)
|
||||
return B_ERROR;
|
||||
|
||||
@@ -233,25 +213,24 @@ Stream::FindBlockRun(off_t pos, block_run &run, off_t &offset)
|
||||
|
||||
int32 current = (start % indirectSize) / directSize;
|
||||
|
||||
indirect = (block_run*)cached.SetTo(
|
||||
indirect = (block_run *)cached.SetTo(
|
||||
fVolume.ToBlock(indirect[index % runsPerBlock]) + current / runsPerBlock);
|
||||
if (indirect == NULL)
|
||||
return B_ERROR;
|
||||
|
||||
run = indirect[current % runsPerBlock];
|
||||
offset = fInode->data.MaxIndirectRange() + (index * indirectSize)
|
||||
+ (current * directSize);
|
||||
offset = data.MaxIndirectRange() + (index * indirectSize) + (current * directSize);
|
||||
//printf("\tfCurrent = %ld, fRunFileOffset = %Ld, fRunBlockEnd = %Ld, fRun = %ld,%d\n",fCurrent,fRunFileOffset,fRunBlockEnd,fRun.allocation_group,fRun.start);
|
||||
} else {
|
||||
// access to indirect blocks
|
||||
|
||||
int32 runsPerBlock = fVolume.BlockSize() / sizeof(block_run);
|
||||
off_t runBlockEnd = fInode->data.MaxDirectRange();
|
||||
off_t runBlockEnd = data.MaxDirectRange();
|
||||
|
||||
CachedBlock cached(fVolume);
|
||||
off_t block = fVolume.ToBlock(fInode->data.indirect);
|
||||
off_t block = fVolume.ToBlock(data.indirect);
|
||||
|
||||
for (int32 i = 0;i < fInode->data.indirect.Length();i++) {
|
||||
for (int32 i = 0;i < data.indirect.Length();i++) {
|
||||
block_run *indirect = (block_run *)cached.SetTo(block + i);
|
||||
if (indirect == NULL)
|
||||
return B_IO_ERROR;
|
||||
@@ -280,13 +259,12 @@ Stream::FindBlockRun(off_t pos, block_run &run, off_t &offset)
|
||||
int32 current = -1;
|
||||
|
||||
while (++current < NUM_DIRECT_BLOCKS) {
|
||||
if (fInode->data.direct[current].IsZero())
|
||||
if (data.direct[current].IsZero())
|
||||
break;
|
||||
|
||||
runBlockEnd += fInode->data.direct[current].Length()
|
||||
<< fVolume.BlockShift();
|
||||
runBlockEnd += data.direct[current].Length() << fVolume.BlockShift();
|
||||
if (runBlockEnd > pos) {
|
||||
run = fInode->data.direct[current];
|
||||
run = data.direct[current];
|
||||
offset = runBlockEnd - (run.Length() << fVolume.BlockShift());
|
||||
//printf("### run[%ld] = (%ld,%d,%d), offset = %Ld\n",fCurrent,fRun.allocation_group,fRun.start,fRun.length,fRunFileOffset);
|
||||
return fVolume.ValidateBlockRun(run);
|
||||
@@ -306,15 +284,15 @@ Stream::ReadAt(off_t pos, uint8 *buffer, size_t *_length)
|
||||
|
||||
if (pos < 0)
|
||||
return B_BAD_VALUE;
|
||||
if (pos >= fInode->data.Size()) {
|
||||
if (pos >= data.Size()) {
|
||||
*_length = 0;
|
||||
return B_NO_ERROR;
|
||||
}
|
||||
|
||||
size_t length = *_length;
|
||||
|
||||
if (pos + length > fInode->data.Size())
|
||||
length = fInode->data.Size() - pos;
|
||||
if (pos + length > data.Size())
|
||||
length = data.Size() - pos;
|
||||
|
||||
block_run run;
|
||||
off_t offset;
|
||||
@@ -418,14 +396,14 @@ Stream::ReadAt(off_t pos, uint8 *buffer, size_t *_length)
|
||||
|
||||
|
||||
Node *
|
||||
Stream::NodeFactory(Volume &volume, ::Directory* parent, off_t id)
|
||||
Stream::NodeFactory(Volume &volume, off_t id)
|
||||
{
|
||||
Stream stream(volume, id);
|
||||
if (stream.InitCheck() != B_OK)
|
||||
return NULL;
|
||||
|
||||
if (stream.IsContainer())
|
||||
return new(nothrow) Directory(parent, stream);
|
||||
return new(nothrow) Directory(stream);
|
||||
|
||||
if (stream.IsSymlink())
|
||||
return new(nothrow) Link(stream);
|
||||
@@ -434,39 +412,6 @@ Stream::NodeFactory(Volume &volume, ::Directory* parent, off_t id)
|
||||
}
|
||||
|
||||
|
||||
status_t
|
||||
Stream::_LoadInode(off_t offset)
|
||||
{
|
||||
int32* inodeRef = (int32*)malloc(fVolume.BlockSize() + 4);
|
||||
if (inodeRef == NULL) {
|
||||
dprintf("Stream::_LoadInode(): Out of memory!\n");
|
||||
return B_NO_MEMORY;
|
||||
}
|
||||
|
||||
fInode = (bfs_inode*)(inodeRef + 1);
|
||||
*inodeRef = 1;
|
||||
|
||||
ssize_t bytesRead = read_pos(fVolume.Device(), offset, fInode,
|
||||
fVolume.BlockSize());
|
||||
if (bytesRead >= 0 && (size_t)bytesRead == fVolume.BlockSize())
|
||||
return B_OK;
|
||||
|
||||
free(inodeRef);
|
||||
fInode = NULL;
|
||||
|
||||
return bytesRead < 0 ? bytesRead : B_ERROR;
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
Stream::_UseInode(bfs_inode* inode)
|
||||
{
|
||||
fInode = inode;
|
||||
if (fInode != NULL)
|
||||
((int32*)fInode)[-1]++;
|
||||
}
|
||||
|
||||
|
||||
// #pragma mark -
|
||||
|
||||
|
||||
|
||||
@@ -6,23 +6,20 @@
|
||||
#ifndef STREAM_H
|
||||
#define STREAM_H
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include <boot/vfs.h>
|
||||
|
||||
#include "Volume.h"
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
class Node;
|
||||
|
||||
|
||||
namespace BFS {
|
||||
|
||||
class Stream {
|
||||
class Stream : public bfs_inode {
|
||||
public:
|
||||
Stream(Volume &volume, block_run run);
|
||||
Stream(Volume &volume, off_t id);
|
||||
Stream(const Stream& other);
|
||||
~Stream();
|
||||
|
||||
status_t InitCheck();
|
||||
@@ -32,27 +29,19 @@ class Stream {
|
||||
status_t ReadAt(off_t pos, uint8 *buffer, size_t *length);
|
||||
|
||||
status_t GetName(char *name, size_t size) const;
|
||||
off_t Size() const { return fInode->data.Size(); }
|
||||
off_t ID() const { return fVolume.ToVnode(fInode->inode_num); }
|
||||
inode_addr InodeNum() const { return fInode->inode_num; }
|
||||
int32 Mode() const { return fInode->Mode(); }
|
||||
off_t Size() const { return data.Size(); }
|
||||
off_t ID() const { return fVolume.ToVnode(inode_num); }
|
||||
status_t ReadLink(char *buffer, size_t bufferSize);
|
||||
|
||||
bool IsContainer() const { return Mode() & (S_IFDIR | S_INDEX_DIR | S_ATTR_DIR); }
|
||||
bool IsSymlink() const { return S_ISLNK(Mode()); }
|
||||
|
||||
static Node *NodeFactory(Volume &volume, ::Directory* parent, off_t id);
|
||||
static Node *NodeFactory(Volume &volume, off_t id);
|
||||
|
||||
private:
|
||||
Stream& operator=(const Stream& other);
|
||||
|
||||
status_t GetNextSmallData(const small_data **_smallData) const;
|
||||
|
||||
status_t _LoadInode(off_t offset);
|
||||
void _UseInode(bfs_inode* inode);
|
||||
|
||||
Volume& fVolume;
|
||||
bfs_inode* fInode;
|
||||
Volume &fVolume;
|
||||
};
|
||||
|
||||
} // namespace BFS
|
||||
|
||||
@@ -55,7 +55,7 @@ Volume::Volume(boot::Partition *partition)
|
||||
|
||||
TRACE(("bfs: we do have a valid super block (name = %s)!\n", fSuperBlock.name));
|
||||
|
||||
fRootNode = new(nothrow) BFS::Directory(*this, NULL, Root());
|
||||
fRootNode = new(nothrow) BFS::Directory(*this, Root());
|
||||
if (fRootNode == NULL)
|
||||
return;
|
||||
|
||||
|
||||
@@ -96,7 +96,7 @@ class File : public ::Node, public Entry {
|
||||
|
||||
class Directory : public ::Directory, public Entry {
|
||||
public:
|
||||
Directory(::Directory* parent, const char* name);
|
||||
Directory(const char *name);
|
||||
virtual ~Directory();
|
||||
|
||||
virtual status_t Open(void **_cookie, int mode);
|
||||
@@ -306,10 +306,8 @@ TarFS::File::Inode() const
|
||||
|
||||
// #pragma mark -
|
||||
|
||||
TarFS::Directory::Directory(::Directory* parent, const char* name)
|
||||
:
|
||||
::Directory(parent),
|
||||
TarFS::Entry(name)
|
||||
TarFS::Directory::Directory(const char *name)
|
||||
: TarFS::Entry(name)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -460,7 +458,7 @@ TarFS::Directory::AddDirectory(char *dirName, TarFS::Directory **_dir)
|
||||
return B_ERROR;
|
||||
} else {
|
||||
// doesn't exist yet -- create it
|
||||
dir = new(nothrow) TarFS::Directory(this, dirName);
|
||||
dir = new(nothrow) TarFS::Directory(dirName);
|
||||
if (!dir)
|
||||
return B_NO_MEMORY;
|
||||
|
||||
@@ -599,7 +597,7 @@ TarFS::Symlink::Inode() const
|
||||
|
||||
|
||||
TarFS::Volume::Volume()
|
||||
: TarFS::Directory(NULL, "Boot from CD-ROM")
|
||||
: TarFS::Directory("Boot from CD-ROM")
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2003-2008, Axel Dörfler, axeld@pinc-software.de.
|
||||
* Copyright 2003-2005, Axel Dörfler, axeld@pinc-software.de.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
|
||||
@@ -51,31 +51,6 @@ is_bootable(Directory *volume)
|
||||
}
|
||||
|
||||
|
||||
/*! Replace the first path component with "boot", as the kernel will always
|
||||
mount the boot volume there.
|
||||
*/
|
||||
void
|
||||
to_boot_path(char *path, size_t pathSize)
|
||||
{
|
||||
const size_t bootLength = strlen("boot");
|
||||
|
||||
if (path[0] != '/' || pathSize < bootLength + 1)
|
||||
return;
|
||||
|
||||
char *second = strchr(path + 1, '/');
|
||||
if (second == NULL)
|
||||
return;
|
||||
|
||||
size_t volumeLength = second - path - 1;
|
||||
if (volumeLength != bootLength) {
|
||||
memmove(path + 1 + bootLength, path + 1 + volumeLength,
|
||||
pathSize - 1 - max_c(volumeLength, bootLength));
|
||||
}
|
||||
|
||||
memcpy(path + 1, "boot", bootLength);
|
||||
}
|
||||
|
||||
|
||||
status_t
|
||||
load_kernel(stage2_args *args, Directory *volume)
|
||||
{
|
||||
@@ -100,13 +75,6 @@ load_kernel(stage2_args *args, Directory *volume)
|
||||
return status;
|
||||
}
|
||||
|
||||
char tempPath[B_PATH_NAME_LENGTH];
|
||||
if (volume->GetPath(KERNEL_PATH, tempPath, sizeof(tempPath)) == B_OK) {
|
||||
to_boot_path(tempPath, sizeof(tempPath));
|
||||
gKernelArgs.kernel_image.name = kernel_args_strdup(tempPath);
|
||||
} else
|
||||
gKernelArgs.kernel_image.name = kernel_args_strdup("kernel");
|
||||
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
@@ -143,11 +111,12 @@ load_modules_from(Directory *volume, const char *path)
|
||||
}
|
||||
|
||||
|
||||
/*! Loads a module by module name. This basically works in the same
|
||||
way as the kernel module loader; it will cut off the last part
|
||||
of the module name until it could find a module and loads it.
|
||||
It tests both, kernel and user module directories.
|
||||
*/
|
||||
/** Loads a module by module name. This basically works in the same
|
||||
* way as the kernel module loader; it will cut off the last part
|
||||
* of the module name until it could find a module and loads it.
|
||||
* It tests both, kernel and user module directories.
|
||||
*/
|
||||
|
||||
static status_t
|
||||
load_module(Directory *volume, const char *name)
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Copyright 2003-2008, Axel Dörfler, axeld@pinc-software.de.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
||||
** Distributed under the terms of the OpenBeOS License.
|
||||
*/
|
||||
#ifndef LOADER_H
|
||||
#define LOADER_H
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
|
||||
|
||||
extern bool is_bootable(Directory *volume);
|
||||
extern void to_boot_path(char *path, size_t pathSize);
|
||||
extern status_t load_kernel(stage2_args *args, Directory *volume);
|
||||
extern status_t load_modules(stage2_args *args, Directory *volume);
|
||||
|
||||
|
||||
@@ -168,80 +168,9 @@ ConsoleNode::Write(const void *buffer, size_t bufferSize)
|
||||
// #pragma mark -
|
||||
|
||||
|
||||
Directory::Directory(Directory* parent)
|
||||
:
|
||||
Node(),
|
||||
fParent(NULL)
|
||||
Directory::Directory()
|
||||
: Node()
|
||||
{
|
||||
SetParent(parent);
|
||||
}
|
||||
|
||||
|
||||
Directory::~Directory()
|
||||
{
|
||||
SetParent(NULL);
|
||||
}
|
||||
|
||||
|
||||
Directory*
|
||||
Directory::Parent() const
|
||||
{
|
||||
return fParent;
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
Directory::SetParent(Directory* parent)
|
||||
{
|
||||
if (fParent != NULL)
|
||||
fParent->Release();
|
||||
|
||||
fParent = parent;
|
||||
|
||||
if (fParent != NULL)
|
||||
fParent->Acquire();
|
||||
}
|
||||
|
||||
|
||||
status_t
|
||||
Directory::GetPath(const char* entry, char* buffer, size_t bufferSize)
|
||||
{
|
||||
// get parent path, if any
|
||||
if (fParent != NULL) {
|
||||
status_t error = fParent->GetPath(NULL, buffer, bufferSize);
|
||||
if (error != B_OK)
|
||||
return error;
|
||||
|
||||
size_t len = strlen(buffer);
|
||||
if (len == 0)
|
||||
return B_BAD_VALUE;
|
||||
|
||||
if (buffer[len - 1] != '/') {
|
||||
if (len == bufferSize)
|
||||
return B_BUFFER_OVERFLOW;
|
||||
|
||||
buffer[len++] = '/';
|
||||
}
|
||||
|
||||
buffer += len;
|
||||
bufferSize -= len;
|
||||
}
|
||||
|
||||
// append directory name
|
||||
status_t error = GetName(buffer, bufferSize);
|
||||
if (error != B_OK)
|
||||
return error;
|
||||
|
||||
if (entry == NULL)
|
||||
return B_OK;
|
||||
|
||||
// append entry name
|
||||
if (strlcat(buffer, "/", bufferSize) >= bufferSize
|
||||
|| strlcat(buffer, entry, bufferSize) >= bufferSize) {
|
||||
return B_BUFFER_OVERFLOW;
|
||||
}
|
||||
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -4052,6 +4052,8 @@ vm_init(kernel_args *args)
|
||||
|
||||
allocate_kernel_args(args);
|
||||
|
||||
args->kernel_image.name = "kernel";
|
||||
// the lazy boot loader currently doesn't set the kernel's name...
|
||||
create_preloaded_image_areas(&args->kernel_image);
|
||||
|
||||
// allocate areas for preloaded images
|
||||
|
||||
Reference in New Issue
Block a user