OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [fs/] [ext2/] [symlink.c] - Diff between revs 1765 and 1782

Only display areas with differences | Details | Blame | View Log

Rev 1765 Rev 1782
/*
/*
 *  linux/fs/ext2/symlink.c
 *  linux/fs/ext2/symlink.c
 *
 *
 * Copyright (C) 1992, 1993, 1994, 1995
 * Copyright (C) 1992, 1993, 1994, 1995
 * Remy Card (card@masi.ibp.fr)
 * Remy Card (card@masi.ibp.fr)
 * Laboratoire MASI - Institut Blaise Pascal
 * Laboratoire MASI - Institut Blaise Pascal
 * Universite Pierre et Marie Curie (Paris VI)
 * Universite Pierre et Marie Curie (Paris VI)
 *
 *
 *  from
 *  from
 *
 *
 *  linux/fs/minix/symlink.c
 *  linux/fs/minix/symlink.c
 *
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *
 *
 *  ext2 symlink handling code
 *  ext2 symlink handling code
 */
 */
 
 
#include <asm/segment.h>
#include <asm/segment.h>
 
 
#include <linux/errno.h>
#include <linux/errno.h>
#include <linux/fs.h>
#include <linux/fs.h>
#include <linux/ext2_fs.h>
#include <linux/ext2_fs.h>
#include <linux/sched.h>
#include <linux/sched.h>
#include <linux/stat.h>
#include <linux/stat.h>
 
 
static int ext2_readlink (struct inode *, char *, int);
static int ext2_readlink (struct inode *, char *, int);
static int ext2_follow_link (struct inode *, struct inode *, int, int,
static int ext2_follow_link (struct inode *, struct inode *, int, int,
                               struct inode **);
                               struct inode **);
 
 
/*
/*
 * symlinks can't do much...
 * symlinks can't do much...
 */
 */
struct inode_operations ext2_symlink_inode_operations = {
struct inode_operations ext2_symlink_inode_operations = {
        NULL,                   /* no file-operations */
        NULL,                   /* no file-operations */
        NULL,                   /* create */
        NULL,                   /* create */
        NULL,                   /* lookup */
        NULL,                   /* lookup */
        NULL,                   /* link */
        NULL,                   /* link */
        NULL,                   /* unlink */
        NULL,                   /* unlink */
        NULL,                   /* symlink */
        NULL,                   /* symlink */
        NULL,                   /* mkdir */
        NULL,                   /* mkdir */
        NULL,                   /* rmdir */
        NULL,                   /* rmdir */
        NULL,                   /* mknod */
        NULL,                   /* mknod */
        NULL,                   /* rename */
        NULL,                   /* rename */
        ext2_readlink,          /* readlink */
        ext2_readlink,          /* readlink */
        ext2_follow_link,       /* follow_link */
        ext2_follow_link,       /* follow_link */
        NULL,                   /* readpage */
        NULL,                   /* readpage */
        NULL,                   /* writepage */
        NULL,                   /* writepage */
        NULL,                   /* bmap */
        NULL,                   /* bmap */
        NULL,                   /* truncate */
        NULL,                   /* truncate */
        NULL,                   /* permission */
        NULL,                   /* permission */
        NULL                    /* smap */
        NULL                    /* smap */
};
};
 
 
static int ext2_follow_link(struct inode * dir, struct inode * inode,
static int ext2_follow_link(struct inode * dir, struct inode * inode,
                            int flag, int mode, struct inode ** res_inode)
                            int flag, int mode, struct inode ** res_inode)
{
{
        int error;
        int error;
        struct buffer_head * bh = NULL;
        struct buffer_head * bh = NULL;
        char * link;
        char * link;
 
 
        *res_inode = NULL;
        *res_inode = NULL;
        if (!dir) {
        if (!dir) {
                dir = current->fs->root;
                dir = current->fs->root;
                dir->i_count++;
                dir->i_count++;
        }
        }
        if (!inode) {
        if (!inode) {
                iput (dir);
                iput (dir);
                return -ENOENT;
                return -ENOENT;
        }
        }
        if (!S_ISLNK(inode->i_mode)) {
        if (!S_ISLNK(inode->i_mode)) {
                iput (dir);
                iput (dir);
                *res_inode = inode;
                *res_inode = inode;
                return 0;
                return 0;
        }
        }
        if (current->link_count > 5) {
        if (current->link_count > 5) {
                iput (dir);
                iput (dir);
                iput (inode);
                iput (inode);
                return -ELOOP;
                return -ELOOP;
        }
        }
        if (inode->i_blocks) {
        if (inode->i_blocks) {
                if (!(bh = ext2_bread (inode, 0, 0, &error))) {
                if (!(bh = ext2_bread (inode, 0, 0, &error))) {
                        iput (dir);
                        iput (dir);
                        iput (inode);
                        iput (inode);
                        return -EIO;
                        return -EIO;
                }
                }
                link = bh->b_data;
                link = bh->b_data;
        } else
        } else
                link = (char *) inode->u.ext2_i.i_data;
                link = (char *) inode->u.ext2_i.i_data;
        UPDATE_ATIME(inode);
        UPDATE_ATIME(inode);
        current->link_count++;
        current->link_count++;
        error = open_namei (link, flag, mode, res_inode, dir);
        error = open_namei (link, flag, mode, res_inode, dir);
        current->link_count--;
        current->link_count--;
        iput (inode);
        iput (inode);
        if (bh)
        if (bh)
                brelse (bh);
                brelse (bh);
        return error;
        return error;
}
}
 
 
static int ext2_readlink (struct inode * inode, char * buffer, int buflen)
static int ext2_readlink (struct inode * inode, char * buffer, int buflen)
{
{
        struct buffer_head * bh = NULL;
        struct buffer_head * bh = NULL;
        char * link;
        char * link;
        int i, err;
        int i, err;
        char c;
        char c;
 
 
        if (!S_ISLNK(inode->i_mode)) {
        if (!S_ISLNK(inode->i_mode)) {
                iput (inode);
                iput (inode);
                return -EINVAL;
                return -EINVAL;
        }
        }
        if (buflen > inode->i_sb->s_blocksize - 1)
        if (buflen > inode->i_sb->s_blocksize - 1)
                buflen = inode->i_sb->s_blocksize - 1;
                buflen = inode->i_sb->s_blocksize - 1;
        if (inode->i_blocks) {
        if (inode->i_blocks) {
                bh = ext2_bread (inode, 0, 0, &err);
                bh = ext2_bread (inode, 0, 0, &err);
                if (!bh) {
                if (!bh) {
                        iput (inode);
                        iput (inode);
                        return 0;
                        return 0;
                }
                }
                link = bh->b_data;
                link = bh->b_data;
        }
        }
        else
        else
                link = (char *) inode->u.ext2_i.i_data;
                link = (char *) inode->u.ext2_i.i_data;
        i = 0;
        i = 0;
        while (i < buflen && (c = link[i])) {
        while (i < buflen && (c = link[i])) {
                i++;
                i++;
                put_user (c, buffer++);
                put_user (c, buffer++);
        }
        }
        UPDATE_ATIME(inode);
        UPDATE_ATIME(inode);
        iput (inode);
        iput (inode);
        if (bh)
        if (bh)
                brelse (bh);
                brelse (bh);
        return i;
        return i;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.