Commit 2e54eb96 authored by Petr Vandrovec's avatar Petr Vandrovec Committed by Arnd Bergmann

BKL: Remove BKL from ncpfs

Dozen of changes in ncpfs to provide some locking other than BKL.

In readdir cache unlock and mark complete first page as last operation,
so it can be used for synchronization, as code intended.

When updating dentry name on case insensitive filesystems do at least
some basic locking...

Hold i_mutex when updating inode fields.

Push some ncp_conn_is_valid down to ncp_request.  Connection can become
invalid at any moment, and fewer error code paths to test the better.

Use i_size_{read,write} to modify file size.

Set inode's backing_dev_info as ncpfs has its own special bdi.

In ioctl unbreak ioctls invoked on filesystem mounted 'ro' - tests are
for inode writeable or owner match, but were turned to filesystem
writeable and inode writeable or owner match.  Also collect all permission
checks in single place.

Add some locking, and remove comments saying that it would be cool to
add some locks to the code.

Constify some pointers.
Signed-off-by: default avatarPetr Vandrovec <petr@vandrovec.name>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 60056794
This diff is collapsed.
...@@ -113,9 +113,6 @@ ncp_file_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) ...@@ -113,9 +113,6 @@ ncp_file_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
DPRINTK("ncp_file_read: enter %s/%s\n", DPRINTK("ncp_file_read: enter %s/%s\n",
dentry->d_parent->d_name.name, dentry->d_name.name); dentry->d_parent->d_name.name, dentry->d_name.name);
if (!ncp_conn_valid(NCP_SERVER(inode)))
return -EIO;
pos = *ppos; pos = *ppos;
if ((ssize_t) count < 0) { if ((ssize_t) count < 0) {
...@@ -192,13 +189,11 @@ ncp_file_write(struct file *file, const char __user *buf, size_t count, loff_t * ...@@ -192,13 +189,11 @@ ncp_file_write(struct file *file, const char __user *buf, size_t count, loff_t *
DPRINTK("ncp_file_write: enter %s/%s\n", DPRINTK("ncp_file_write: enter %s/%s\n",
dentry->d_parent->d_name.name, dentry->d_name.name); dentry->d_parent->d_name.name, dentry->d_name.name);
if (!ncp_conn_valid(NCP_SERVER(inode)))
return -EIO;
if ((ssize_t) count < 0) if ((ssize_t) count < 0)
return -EINVAL; return -EINVAL;
pos = *ppos; pos = *ppos;
if (file->f_flags & O_APPEND) { if (file->f_flags & O_APPEND) {
pos = inode->i_size; pos = i_size_read(inode);
} }
if (pos + count > MAX_NON_LFS && !(file->f_flags&O_LARGEFILE)) { if (pos + count > MAX_NON_LFS && !(file->f_flags&O_LARGEFILE)) {
...@@ -264,8 +259,11 @@ ncp_file_write(struct file *file, const char __user *buf, size_t count, loff_t * ...@@ -264,8 +259,11 @@ ncp_file_write(struct file *file, const char __user *buf, size_t count, loff_t *
*ppos = pos; *ppos = pos;
if (pos > inode->i_size) { if (pos > i_size_read(inode)) {
inode->i_size = pos; mutex_lock(&inode->i_mutex);
if (pos > i_size_read(inode))
i_size_write(inode, pos);
mutex_unlock(&inode->i_mutex);
} }
DPRINTK("ncp_file_write: exit %s/%s\n", DPRINTK("ncp_file_write: exit %s/%s\n",
dentry->d_parent->d_name.name, dentry->d_name.name); dentry->d_parent->d_name.name, dentry->d_name.name);
...@@ -281,18 +279,9 @@ static int ncp_release(struct inode *inode, struct file *file) { ...@@ -281,18 +279,9 @@ static int ncp_release(struct inode *inode, struct file *file) {
return 0; return 0;
} }
static loff_t ncp_remote_llseek(struct file *file, loff_t offset, int origin)
{
loff_t ret;
lock_kernel();
ret = generic_file_llseek_unlocked(file, offset, origin);
unlock_kernel();
return ret;
}
const struct file_operations ncp_file_operations = const struct file_operations ncp_file_operations =
{ {
.llseek = ncp_remote_llseek, .llseek = generic_file_llseek,
.read = ncp_file_read, .read = ncp_file_read,
.write = ncp_file_write, .write = ncp_file_write,
.unlocked_ioctl = ncp_ioctl, .unlocked_ioctl = ncp_ioctl,
......
...@@ -139,7 +139,7 @@ static void ncp_update_dates(struct inode *inode, struct nw_info_struct *nwi) ...@@ -139,7 +139,7 @@ static void ncp_update_dates(struct inode *inode, struct nw_info_struct *nwi)
inode->i_mode = nwi->nfs.mode; inode->i_mode = nwi->nfs.mode;
} }
inode->i_blocks = (inode->i_size + NCP_BLOCK_SIZE - 1) >> NCP_BLOCK_SHIFT; inode->i_blocks = (i_size_read(inode) + NCP_BLOCK_SIZE - 1) >> NCP_BLOCK_SHIFT;
inode->i_mtime.tv_sec = ncp_date_dos2unix(nwi->modifyTime, nwi->modifyDate); inode->i_mtime.tv_sec = ncp_date_dos2unix(nwi->modifyTime, nwi->modifyDate);
inode->i_ctime.tv_sec = ncp_date_dos2unix(nwi->creationTime, nwi->creationDate); inode->i_ctime.tv_sec = ncp_date_dos2unix(nwi->creationTime, nwi->creationDate);
...@@ -158,18 +158,21 @@ static void ncp_update_attrs(struct inode *inode, struct ncp_entry_info *nwinfo) ...@@ -158,18 +158,21 @@ static void ncp_update_attrs(struct inode *inode, struct ncp_entry_info *nwinfo)
inode->i_mode = server->m.dir_mode; inode->i_mode = server->m.dir_mode;
/* for directories dataStreamSize seems to be some /* for directories dataStreamSize seems to be some
Object ID ??? */ Object ID ??? */
inode->i_size = NCP_BLOCK_SIZE; i_size_write(inode, NCP_BLOCK_SIZE);
} else { } else {
u32 size;
inode->i_mode = server->m.file_mode; inode->i_mode = server->m.file_mode;
inode->i_size = le32_to_cpu(nwi->dataStreamSize); size = le32_to_cpu(nwi->dataStreamSize);
i_size_write(inode, size);
#ifdef CONFIG_NCPFS_EXTRAS #ifdef CONFIG_NCPFS_EXTRAS
if ((server->m.flags & (NCP_MOUNT_EXTRAS|NCP_MOUNT_SYMLINKS)) if ((server->m.flags & (NCP_MOUNT_EXTRAS|NCP_MOUNT_SYMLINKS))
&& (nwi->attributes & aSHARED)) { && (nwi->attributes & aSHARED)) {
switch (nwi->attributes & (aHIDDEN|aSYSTEM)) { switch (nwi->attributes & (aHIDDEN|aSYSTEM)) {
case aHIDDEN: case aHIDDEN:
if (server->m.flags & NCP_MOUNT_SYMLINKS) { if (server->m.flags & NCP_MOUNT_SYMLINKS) {
if (/* (inode->i_size >= NCP_MIN_SYMLINK_SIZE) if (/* (size >= NCP_MIN_SYMLINK_SIZE)
&& */ (inode->i_size <= NCP_MAX_SYMLINK_SIZE)) { && */ (size <= NCP_MAX_SYMLINK_SIZE)) {
inode->i_mode = (inode->i_mode & ~S_IFMT) | S_IFLNK; inode->i_mode = (inode->i_mode & ~S_IFMT) | S_IFLNK;
NCP_FINFO(inode)->flags |= NCPI_KLUDGE_SYMLINK; NCP_FINFO(inode)->flags |= NCPI_KLUDGE_SYMLINK;
break; break;
...@@ -208,7 +211,7 @@ void ncp_update_inode2(struct inode* inode, struct ncp_entry_info *nwinfo) ...@@ -208,7 +211,7 @@ void ncp_update_inode2(struct inode* inode, struct ncp_entry_info *nwinfo)
} }
/* /*
* Fill in the inode based on the ncp_entry_info structure. * Fill in the inode based on the ncp_entry_info structure. Used only for brand new inodes.
*/ */
static void ncp_set_attr(struct inode *inode, struct ncp_entry_info *nwinfo) static void ncp_set_attr(struct inode *inode, struct ncp_entry_info *nwinfo)
{ {
...@@ -254,6 +257,7 @@ ncp_iget(struct super_block *sb, struct ncp_entry_info *info) ...@@ -254,6 +257,7 @@ ncp_iget(struct super_block *sb, struct ncp_entry_info *info)
if (inode) { if (inode) {
atomic_set(&NCP_FINFO(inode)->opened, info->opened); atomic_set(&NCP_FINFO(inode)->opened, info->opened);
inode->i_mapping->backing_dev_info = sb->s_bdi;
inode->i_ino = info->ino; inode->i_ino = info->ino;
ncp_set_attr(inode, info); ncp_set_attr(inode, info);
if (S_ISREG(inode->i_mode)) { if (S_ISREG(inode->i_mode)) {
...@@ -565,10 +569,12 @@ static int ncp_fill_super(struct super_block *sb, void *raw_data, int silent) ...@@ -565,10 +569,12 @@ static int ncp_fill_super(struct super_block *sb, void *raw_data, int silent)
/* server->conn_status = 0; */ /* server->conn_status = 0; */
/* server->root_dentry = NULL; */ /* server->root_dentry = NULL; */
/* server->root_setuped = 0; */ /* server->root_setuped = 0; */
mutex_init(&server->root_setup_lock);
#ifdef CONFIG_NCPFS_PACKET_SIGNING #ifdef CONFIG_NCPFS_PACKET_SIGNING
/* server->sign_wanted = 0; */ /* server->sign_wanted = 0; */
/* server->sign_active = 0; */ /* server->sign_active = 0; */
#endif #endif
init_rwsem(&server->auth_rwsem);
server->auth.auth_type = NCP_AUTH_NONE; server->auth.auth_type = NCP_AUTH_NONE;
/* server->auth.object_name_len = 0; */ /* server->auth.object_name_len = 0; */
/* server->auth.object_name = NULL; */ /* server->auth.object_name = NULL; */
...@@ -593,7 +599,7 @@ static int ncp_fill_super(struct super_block *sb, void *raw_data, int silent) ...@@ -593,7 +599,7 @@ static int ncp_fill_super(struct super_block *sb, void *raw_data, int silent)
server->nls_io = load_nls_default(); server->nls_io = load_nls_default();
#endif /* CONFIG_NCPFS_NLS */ #endif /* CONFIG_NCPFS_NLS */
server->dentry_ttl = 0; /* no caching */ atomic_set(&server->dentry_ttl, 0); /* no caching */
INIT_LIST_HEAD(&server->tx.requests); INIT_LIST_HEAD(&server->tx.requests);
mutex_init(&server->rcv.creq_mutex); mutex_init(&server->rcv.creq_mutex);
...@@ -658,8 +664,10 @@ static int ncp_fill_super(struct super_block *sb, void *raw_data, int silent) ...@@ -658,8 +664,10 @@ static int ncp_fill_super(struct super_block *sb, void *raw_data, int silent)
goto out_disconnect; goto out_disconnect;
} }
} }
ncp_lock_server(server);
if (options & 2) if (options & 2)
server->sign_wanted = 1; server->sign_wanted = 1;
ncp_unlock_server(server);
} }
else else
#endif /* CONFIG_NCPFS_PACKET_SIGNING */ #endif /* CONFIG_NCPFS_PACKET_SIGNING */
...@@ -720,6 +728,9 @@ static int ncp_fill_super(struct super_block *sb, void *raw_data, int silent) ...@@ -720,6 +728,9 @@ static int ncp_fill_super(struct super_block *sb, void *raw_data, int silent)
unload_nls(server->nls_io); unload_nls(server->nls_io);
unload_nls(server->nls_vol); unload_nls(server->nls_vol);
#endif #endif
mutex_destroy(&server->rcv.creq_mutex);
mutex_destroy(&server->root_setup_lock);
mutex_destroy(&server->mutex);
out_fput2: out_fput2:
if (server->info_filp) if (server->info_filp)
fput(server->info_filp); fput(server->info_filp);
...@@ -743,8 +754,6 @@ static void ncp_put_super(struct super_block *sb) ...@@ -743,8 +754,6 @@ static void ncp_put_super(struct super_block *sb)
{ {
struct ncp_server *server = NCP_SBP(sb); struct ncp_server *server = NCP_SBP(sb);
lock_kernel();
ncp_lock_server(server); ncp_lock_server(server);
ncp_disconnect(server); ncp_disconnect(server);
ncp_unlock_server(server); ncp_unlock_server(server);
...@@ -756,6 +765,9 @@ static void ncp_put_super(struct super_block *sb) ...@@ -756,6 +765,9 @@ static void ncp_put_super(struct super_block *sb)
unload_nls(server->nls_vol); unload_nls(server->nls_vol);
unload_nls(server->nls_io); unload_nls(server->nls_io);
#endif /* CONFIG_NCPFS_NLS */ #endif /* CONFIG_NCPFS_NLS */
mutex_destroy(&server->rcv.creq_mutex);
mutex_destroy(&server->root_setup_lock);
mutex_destroy(&server->mutex);
if (server->info_filp) if (server->info_filp)
fput(server->info_filp); fput(server->info_filp);
...@@ -771,8 +783,6 @@ static void ncp_put_super(struct super_block *sb) ...@@ -771,8 +783,6 @@ static void ncp_put_super(struct super_block *sb)
vfree(server->packet); vfree(server->packet);
sb->s_fs_info = NULL; sb->s_fs_info = NULL;
kfree(server); kfree(server);
unlock_kernel();
} }
static int ncp_statfs(struct dentry *dentry, struct kstatfs *buf) static int ncp_statfs(struct dentry *dentry, struct kstatfs *buf)
...@@ -851,10 +861,8 @@ int ncp_notify_change(struct dentry *dentry, struct iattr *attr) ...@@ -851,10 +861,8 @@ int ncp_notify_change(struct dentry *dentry, struct iattr *attr)
result = -EIO; result = -EIO;
lock_kernel();
server = NCP_SERVER(inode); server = NCP_SERVER(inode);
if ((!server) || !ncp_conn_valid(server)) if (!server) /* How this could happen? */
goto out; goto out;
/* ageing the dentry to force validation */ /* ageing the dentry to force validation */
...@@ -981,8 +989,6 @@ int ncp_notify_change(struct dentry *dentry, struct iattr *attr) ...@@ -981,8 +989,6 @@ int ncp_notify_change(struct dentry *dentry, struct iattr *attr)
result = ncp_modify_file_or_subdir_dos_info(NCP_SERVER(inode), result = ncp_modify_file_or_subdir_dos_info(NCP_SERVER(inode),
inode, info_mask, &info); inode, info_mask, &info);
if (result != 0) { if (result != 0) {
result = -EACCES;
if (info_mask == (DM_CREATE_TIME | DM_CREATE_DATE)) { if (info_mask == (DM_CREATE_TIME | DM_CREATE_DATE)) {
/* NetWare seems not to allow this. I /* NetWare seems not to allow this. I
do not know why. So, just tell the do not know why. So, just tell the
...@@ -1005,7 +1011,8 @@ int ncp_notify_change(struct dentry *dentry, struct iattr *attr) ...@@ -1005,7 +1011,8 @@ int ncp_notify_change(struct dentry *dentry, struct iattr *attr)
mark_inode_dirty(inode); mark_inode_dirty(inode);
out: out:
unlock_kernel(); if (result > 0)
result = -EACCES;
return result; return result;
} }
......
This diff is collapsed.
...@@ -107,17 +107,17 @@ ncp_reply_data(struct ncp_server *server, int offset) ...@@ -107,17 +107,17 @@ ncp_reply_data(struct ncp_server *server, int offset)
return &(server->packet[sizeof(struct ncp_reply_header) + offset]); return &(server->packet[sizeof(struct ncp_reply_header) + offset]);
} }
static inline u8 BVAL(void *data) static inline u8 BVAL(const void *data)
{ {
return *(u8 *)data; return *(const u8 *)data;
} }
static u8 ncp_reply_byte(struct ncp_server *server, int offset) static u8 ncp_reply_byte(struct ncp_server *server, int offset)
{ {
return *(u8 *)ncp_reply_data(server, offset); return *(const u8 *)ncp_reply_data(server, offset);
} }
static inline u16 WVAL_LH(void *data) static inline u16 WVAL_LH(const void *data)
{ {
return get_unaligned_le16(data); return get_unaligned_le16(data);
} }
...@@ -134,7 +134,7 @@ ncp_reply_be16(struct ncp_server *server, int offset) ...@@ -134,7 +134,7 @@ ncp_reply_be16(struct ncp_server *server, int offset)
return get_unaligned_be16(ncp_reply_data(server, offset)); return get_unaligned_be16(ncp_reply_data(server, offset));
} }
static inline u32 DVAL_LH(void *data) static inline u32 DVAL_LH(const void *data)
{ {
return get_unaligned_le32(data); return get_unaligned_le32(data);
} }
...@@ -349,9 +349,9 @@ int ncp_dirhandle_free(struct ncp_server* server, __u8 dirhandle) { ...@@ -349,9 +349,9 @@ int ncp_dirhandle_free(struct ncp_server* server, __u8 dirhandle) {
return result; return result;
} }
void ncp_extract_file_info(void *structure, struct nw_info_struct *target) void ncp_extract_file_info(const void *structure, struct nw_info_struct *target)
{ {
__u8 *name_len; const __u8 *name_len;
const int info_struct_size = offsetof(struct nw_info_struct, nameLen); const int info_struct_size = offsetof(struct nw_info_struct, nameLen);
memcpy(target, structure, info_struct_size); memcpy(target, structure, info_struct_size);
...@@ -364,7 +364,7 @@ void ncp_extract_file_info(void *structure, struct nw_info_struct *target) ...@@ -364,7 +364,7 @@ void ncp_extract_file_info(void *structure, struct nw_info_struct *target)
} }
#ifdef CONFIG_NCPFS_NFS_NS #ifdef CONFIG_NCPFS_NFS_NS
static inline void ncp_extract_nfs_info(unsigned char *structure, static inline void ncp_extract_nfs_info(const unsigned char *structure,
struct nw_nfs_info *target) struct nw_nfs_info *target)
{ {
target->mode = DVAL_LH(structure); target->mode = DVAL_LH(structure);
...@@ -417,7 +417,7 @@ int ncp_obtain_nfs_info(struct ncp_server *server, ...@@ -417,7 +417,7 @@ int ncp_obtain_nfs_info(struct ncp_server *server,
* Returns information for a (one-component) name relative to * Returns information for a (one-component) name relative to
* the specified directory. * the specified directory.
*/ */
int ncp_obtain_info(struct ncp_server *server, struct inode *dir, char *path, int ncp_obtain_info(struct ncp_server *server, struct inode *dir, const char *path,
struct nw_info_struct *target) struct nw_info_struct *target)
{ {
__u8 volnum = NCP_FINFO(dir)->volNumber; __u8 volnum = NCP_FINFO(dir)->volNumber;
...@@ -452,16 +452,16 @@ int ncp_obtain_info(struct ncp_server *server, struct inode *dir, char *path, ...@@ -452,16 +452,16 @@ int ncp_obtain_info(struct ncp_server *server, struct inode *dir, char *path,
#ifdef CONFIG_NCPFS_NFS_NS #ifdef CONFIG_NCPFS_NFS_NS
static int static int
ncp_obtain_DOS_dir_base(struct ncp_server *server, ncp_obtain_DOS_dir_base(struct ncp_server *server,
__u8 volnum, __le32 dirent, __u8 ns, __u8 volnum, __le32 dirent,
char *path, /* At most 1 component */ const char *path, /* At most 1 component */
__le32 *DOS_dir_base) __le32 *DOS_dir_base)
{ {
int result; int result;
ncp_init_request(server); ncp_init_request(server);
ncp_add_byte(server, 6); /* subfunction */ ncp_add_byte(server, 6); /* subfunction */
ncp_add_byte(server, server->name_space[volnum]); ncp_add_byte(server, ns);
ncp_add_byte(server, server->name_space[volnum]); ncp_add_byte(server, ns);
ncp_add_word(server, cpu_to_le16(0x8006)); /* get all */ ncp_add_word(server, cpu_to_le16(0x8006)); /* get all */
ncp_add_dword(server, RIM_DIRECTORY); ncp_add_dword(server, RIM_DIRECTORY);
ncp_add_handle_path(server, volnum, dirent, 1, path); ncp_add_handle_path(server, volnum, dirent, 1, path);
...@@ -523,10 +523,27 @@ ncp_get_known_namespace(struct ncp_server *server, __u8 volume) ...@@ -523,10 +523,27 @@ ncp_get_known_namespace(struct ncp_server *server, __u8 volume)
#endif /* defined(CONFIG_NCPFS_OS2_NS) || defined(CONFIG_NCPFS_NFS_NS) */ #endif /* defined(CONFIG_NCPFS_OS2_NS) || defined(CONFIG_NCPFS_NFS_NS) */
} }
int
ncp_update_known_namespace(struct ncp_server *server, __u8 volume, int *ret_ns)
{
int ns = ncp_get_known_namespace(server, volume);
if (ret_ns)
*ret_ns = ns;
DPRINTK("lookup_vol: namespace[%d] = %d\n",
volume, server->name_space[volume]);
if (server->name_space[volume] == ns)
return 0;
server->name_space[volume] = ns;
return 1;
}
static int static int
ncp_ObtainSpecificDirBase(struct ncp_server *server, ncp_ObtainSpecificDirBase(struct ncp_server *server,
__u8 nsSrc, __u8 nsDst, __u8 vol_num, __le32 dir_base, __u8 nsSrc, __u8 nsDst, __u8 vol_num, __le32 dir_base,
char *path, /* At most 1 component */ const char *path, /* At most 1 component */
__le32 *dirEntNum, __le32 *DosDirNum) __le32 *dirEntNum, __le32 *DosDirNum)
{ {
int result; int result;
...@@ -560,14 +577,13 @@ ncp_mount_subdir(struct ncp_server *server, ...@@ -560,14 +577,13 @@ ncp_mount_subdir(struct ncp_server *server,
{ {
int dstNS; int dstNS;
int result; int result;
dstNS = ncp_get_known_namespace(server, volNumber); ncp_update_known_namespace(server, volNumber, &dstNS);
if ((result = ncp_ObtainSpecificDirBase(server, srcNS, dstNS, volNumber, if ((result = ncp_ObtainSpecificDirBase(server, srcNS, dstNS, volNumber,
dirEntNum, NULL, newDirEnt, newDosEnt)) != 0) dirEntNum, NULL, newDirEnt, newDosEnt)) != 0)
{ {
return result; return result;
} }
server->name_space[volNumber] = dstNS;
*volume = volNumber; *volume = volNumber;
server->m.mounted_vol[1] = 0; server->m.mounted_vol[1] = 0;
server->m.mounted_vol[0] = 'X'; server->m.mounted_vol[0] = 'X';
...@@ -575,11 +591,10 @@ ncp_mount_subdir(struct ncp_server *server, ...@@ -575,11 +591,10 @@ ncp_mount_subdir(struct ncp_server *server,
} }
int int
ncp_get_volume_root(struct ncp_server *server, const char *volname, ncp_get_volume_root(struct ncp_server *server,
__u32* volume, __le32* dirent, __le32* dosdirent) const char *volname, __u32* volume, __le32* dirent, __le32* dosdirent)
{ {
int result; int result;
__u8 volnum;
DPRINTK("ncp_get_volume_root: looking up vol %s\n", volname); DPRINTK("ncp_get_volume_root: looking up vol %s\n", volname);
...@@ -601,21 +616,14 @@ ncp_get_volume_root(struct ncp_server *server, const char *volname, ...@@ -601,21 +616,14 @@ ncp_get_volume_root(struct ncp_server *server, const char *volname,
return result; return result;
} }
*dirent = *dosdirent = ncp_reply_dword(server, 4); *dirent = *dosdirent = ncp_reply_dword(server, 4);
volnum = ncp_reply_byte(server, 8); *volume = ncp_reply_byte(server, 8);
ncp_unlock_server(server); ncp_unlock_server(server);
*volume = volnum;
server->name_space[volnum] = ncp_get_known_namespace(server, volnum);
DPRINTK("lookup_vol: namespace[%d] = %d\n",
volnum, server->name_space[volnum]);
return 0; return 0;
} }
int int
ncp_lookup_volume(struct ncp_server *server, const char *volname, ncp_lookup_volume(struct ncp_server *server,
struct nw_info_struct *target) const char *volname, struct nw_info_struct *target)
{ {
int result; int result;
...@@ -625,6 +633,7 @@ ncp_lookup_volume(struct ncp_server *server, const char *volname, ...@@ -625,6 +633,7 @@ ncp_lookup_volume(struct ncp_server *server, const char *volname,
if (result) { if (result) {
return result; return result;
} }
ncp_update_known_namespace(server, target->volNumber, NULL);
target->nameLen = strlen(volname); target->nameLen = strlen(volname);
memcpy(target->entryName, volname, target->nameLen+1); memcpy(target->entryName, volname, target->nameLen+1);
target->attributes = aDIR; target->attributes = aDIR;
...@@ -676,8 +685,8 @@ int ncp_modify_nfs_info(struct ncp_server *server, __u8 volnum, __le32 dirent, ...@@ -676,8 +685,8 @@ int ncp_modify_nfs_info(struct ncp_server *server, __u8 volnum, __le32 dirent,
{ {
int result = 0; int result = 0;
ncp_init_request(server);
if (server->name_space[volnum] == NW_NS_NFS) { if (server->name_space[volnum] == NW_NS_NFS) {
ncp_init_request(server);
ncp_add_byte(server, 25); /* subfunction */ ncp_add_byte(server, 25); /* subfunction */
ncp_add_byte(server, server->name_space[volnum]); ncp_add_byte(server, server->name_space[volnum]);
ncp_add_byte(server, NW_NS_NFS); ncp_add_byte(server, NW_NS_NFS);
...@@ -690,8 +699,8 @@ int ncp_modify_nfs_info(struct ncp_server *server, __u8 volnum, __le32 dirent, ...@@ -690,8 +699,8 @@ int ncp_modify_nfs_info(struct ncp_server *server, __u8 volnum, __le32 dirent,
ncp_add_dword_lh(server, 1); /* nlinks */ ncp_add_dword_lh(server, 1); /* nlinks */
ncp_add_dword_lh(server, rdev); ncp_add_dword_lh(server, rdev);
result = ncp_request(server, 87); result = ncp_request(server, 87);
ncp_unlock_server(server);
} }
ncp_unlock_server(server);
return result; return result;
} }
#endif #endif
...@@ -700,7 +709,7 @@ int ncp_modify_nfs_info(struct ncp_server *server, __u8 volnum, __le32 dirent, ...@@ -700,7 +709,7 @@ int ncp_modify_nfs_info(struct ncp_server *server, __u8 volnum, __le32 dirent,
static int static int
ncp_DeleteNSEntry(struct ncp_server *server, ncp_DeleteNSEntry(struct ncp_server *server,
__u8 have_dir_base, __u8 volnum, __le32 dirent, __u8 have_dir_base, __u8 volnum, __le32 dirent,
char* name, __u8 ns, __le16 attr) const char* name, __u8 ns, __le16 attr)
{ {
int result; int result;
...@@ -734,23 +743,25 @@ ncp_del_file_or_subdir2(struct ncp_server *server, ...@@ -734,23 +743,25 @@ ncp_del_file_or_subdir2(struct ncp_server *server,
int int
ncp_del_file_or_subdir(struct ncp_server *server, ncp_del_file_or_subdir(struct ncp_server *server,
struct inode *dir, char *name) struct inode *dir, const char *name)
{ {
__u8 volnum = NCP_FINFO(dir)->volNumber; __u8 volnum = NCP_FINFO(dir)->volNumber;
__le32 dirent = NCP_FINFO(dir)->dirEntNum; __le32 dirent = NCP_FINFO(dir)->dirEntNum;
int name_space;
name_space = server->name_space[volnum];
#ifdef CONFIG_NCPFS_NFS_NS #ifdef CONFIG_NCPFS_NFS_NS
if (server->name_space[volnum]==NW_NS_NFS) if (name_space == NW_NS_NFS)
{ {
int result; int result;
result=ncp_obtain_DOS_dir_base(server, volnum, dirent, name, &dirent); result=ncp_obtain_DOS_dir_base(server, name_space, volnum, dirent, name, &dirent);
if (result) return result; if (result) return result;
return ncp_DeleteNSEntry(server, 1, volnum, dirent, NULL, NW_NS_DOS, cpu_to_le16(0x8006)); name = NULL;
name_space = NW_NS_DOS;
} }
else
#endif /* CONFIG_NCPFS_NFS_NS */ #endif /* CONFIG_NCPFS_NFS_NS */
return ncp_DeleteNSEntry(server, 1, volnum, dirent, name, server->name_space[volnum], cpu_to_le16(0x8006)); return ncp_DeleteNSEntry(server, 1, volnum, dirent, name, name_space, cpu_to_le16(0x8006));
} }
static inline void ConvertToNWfromDWORD(__u16 v0, __u16 v1, __u8 ret[6]) static inline void ConvertToNWfromDWORD(__u16 v0, __u16 v1, __u8 ret[6])
...@@ -765,7 +776,7 @@ static inline void ConvertToNWfromDWORD(__u16 v0, __u16 v1, __u8 ret[6]) ...@@ -765,7 +776,7 @@ static inline void ConvertToNWfromDWORD(__u16 v0, __u16 v1, __u8 ret[6])
/* If both dir and name are NULL, then in target there's already a /* If both dir and name are NULL, then in target there's already a
looked-up entry that wants to be opened. */ looked-up entry that wants to be opened. */
int ncp_open_create_file_or_subdir(struct ncp_server *server, int ncp_open_create_file_or_subdir(struct ncp_server *server,
struct inode *dir, char *name, struct inode *dir, const char *name,
int open_create_mode, int open_create_mode,
__le32 create_attributes, __le32 create_attributes,
__le16 desired_acc_rights, __le16 desired_acc_rights,
...@@ -890,8 +901,8 @@ int ncp_search_for_fileset(struct ncp_server *server, ...@@ -890,8 +901,8 @@ int ncp_search_for_fileset(struct ncp_server *server,
static int static int
ncp_RenameNSEntry(struct ncp_server *server, ncp_RenameNSEntry(struct ncp_server *server,
struct inode *old_dir, char *old_name, __le16 old_type, struct inode *old_dir, const char *old_name, __le16 old_type,
struct inode *new_dir, char *new_name) struct inode *new_dir, const char *new_name)
{ {
int result = -EINVAL; int result = -EINVAL;
...@@ -929,8 +940,8 @@ ncp_RenameNSEntry(struct ncp_server *server, ...@@ -929,8 +940,8 @@ ncp_RenameNSEntry(struct ncp_server *server,
} }
int ncp_ren_or_mov_file_or_subdir(struct ncp_server *server, int ncp_ren_or_mov_file_or_subdir(struct ncp_server *server,
struct inode *old_dir, char *old_name, struct inode *old_dir, const char *old_name,
struct inode *new_dir, char *new_name) struct inode *new_dir, const char *new_name)
{ {
int result; int result;
__le16 old_type = cpu_to_le16(0x06); __le16 old_type = cpu_to_le16(0x06);
...@@ -958,7 +969,7 @@ int ...@@ -958,7 +969,7 @@ int
ncp_read_kernel(struct ncp_server *server, const char *file_id, ncp_read_kernel(struct ncp_server *server, const char *file_id,
__u32 offset, __u16 to_read, char *target, int *bytes_read) __u32 offset, __u16 to_read, char *target, int *bytes_read)
{ {
char *source; const char *source;
int result; int result;
ncp_init_request(server); ncp_init_request(server);
......
...@@ -65,10 +65,11 @@ static inline void ncp_inode_close(struct inode *inode) { ...@@ -65,10 +65,11 @@ static inline void ncp_inode_close(struct inode *inode) {
atomic_dec(&NCP_FINFO(inode)->opened); atomic_dec(&NCP_FINFO(inode)->opened);
} }
void ncp_extract_file_info(void* src, struct nw_info_struct* target); void ncp_extract_file_info(const void* src, struct nw_info_struct* target);
int ncp_obtain_info(struct ncp_server *server, struct inode *, char *, int ncp_obtain_info(struct ncp_server *server, struct inode *, const char *,
struct nw_info_struct *target); struct nw_info_struct *target);
int ncp_obtain_nfs_info(struct ncp_server *server, struct nw_info_struct *target); int ncp_obtain_nfs_info(struct ncp_server *server, struct nw_info_struct *target);
int ncp_update_known_namespace(struct ncp_server *server, __u8 volume, int *ret_ns);
int ncp_get_volume_root(struct ncp_server *server, const char *volname, int ncp_get_volume_root(struct ncp_server *server, const char *volname,
__u32 *volume, __le32 *dirent, __le32 *dosdirent); __u32 *volume, __le32 *dirent, __le32 *dosdirent);
int ncp_lookup_volume(struct ncp_server *, const char *, struct nw_info_struct *); int ncp_lookup_volume(struct ncp_server *, const char *, struct nw_info_struct *);
...@@ -80,8 +81,8 @@ int ncp_modify_nfs_info(struct ncp_server *, __u8 volnum, __le32 dirent, ...@@ -80,8 +81,8 @@ int ncp_modify_nfs_info(struct ncp_server *, __u8 volnum, __le32 dirent,
__u32 mode, __u32 rdev); __u32 mode, __u32 rdev);
int ncp_del_file_or_subdir2(struct ncp_server *, struct dentry*); int ncp_del_file_or_subdir2(struct ncp_server *, struct dentry*);
int ncp_del_file_or_subdir(struct ncp_server *, struct inode *, char *); int ncp_del_file_or_subdir(struct ncp_server *, struct inode *, const char *);
int ncp_open_create_file_or_subdir(struct ncp_server *, struct inode *, char *, int ncp_open_create_file_or_subdir(struct ncp_server *, struct inode *, const char *,
int, __le32, __le16, struct ncp_entry_info *); int, __le32, __le16, struct ncp_entry_info *);
int ncp_initialize_search(struct ncp_server *, struct inode *, int ncp_initialize_search(struct ncp_server *, struct inode *,
...@@ -93,7 +94,7 @@ int ncp_search_for_fileset(struct ncp_server *server, ...@@ -93,7 +94,7 @@ int ncp_search_for_fileset(struct ncp_server *server,
char** rbuf, size_t* rsize); char** rbuf, size_t* rsize);
int ncp_ren_or_mov_file_or_subdir(struct ncp_server *server, int ncp_ren_or_mov_file_or_subdir(struct ncp_server *server,
struct inode *, char *, struct inode *, char *); struct inode *, const char *, struct inode *, const char *);
int int
...@@ -170,13 +171,13 @@ static inline int ncp_strnicmp(struct nls_table *t, const unsigned char *s1, ...@@ -170,13 +171,13 @@ static inline int ncp_strnicmp(struct nls_table *t, const unsigned char *s1,
#endif /* CONFIG_NCPFS_NLS */ #endif /* CONFIG_NCPFS_NLS */
#define NCP_GET_AGE(dentry) (jiffies - (dentry)->d_time) #define NCP_GET_AGE(dentry) (jiffies - (dentry)->d_time)
#define NCP_MAX_AGE(server) ((server)->dentry_ttl) #define NCP_MAX_AGE(server) atomic_read(&(server)->dentry_ttl)
#define NCP_TEST_AGE(server,dentry) (NCP_GET_AGE(dentry) < NCP_MAX_AGE(server)) #define NCP_TEST_AGE(server,dentry) (NCP_GET_AGE(dentry) < NCP_MAX_AGE(server))
static inline void static inline void
ncp_age_dentry(struct ncp_server* server, struct dentry* dentry) ncp_age_dentry(struct ncp_server* server, struct dentry* dentry)
{ {
dentry->d_time = jiffies - server->dentry_ttl; dentry->d_time = jiffies - NCP_MAX_AGE(server);
} }
static inline void static inline void
......
...@@ -15,21 +15,21 @@ ...@@ -15,21 +15,21 @@
/* i386: 32-bit, little endian, handles mis-alignment */ /* i386: 32-bit, little endian, handles mis-alignment */
#ifdef __i386__ #ifdef __i386__
#define GET_LE32(p) (*(int *)(p)) #define GET_LE32(p) (*(const int *)(p))
#define PUT_LE32(p,v) { *(int *)(p)=v; } #define PUT_LE32(p,v) { *(int *)(p)=v; }
#else #else
/* from include/ncplib.h */ /* from include/ncplib.h */
#define BVAL(buf,pos) (((__u8 *)(buf))[pos]) #define BVAL(buf,pos) (((const __u8 *)(buf))[pos])
#define PVAL(buf,pos) ((unsigned)BVAL(buf,pos)) #define PVAL(buf,pos) ((unsigned)BVAL(buf,pos))
#define BSET(buf,pos,val) (BVAL(buf,pos) = (val)) #define BSET(buf,pos,val) (((__u8 *)(buf))[pos] = (val))
static inline __u16 static inline __u16
WVAL_LH(__u8 * buf, int pos) WVAL_LH(const __u8 * buf, int pos)
{ {
return PVAL(buf, pos) | PVAL(buf, pos + 1) << 8; return PVAL(buf, pos) | PVAL(buf, pos + 1) << 8;
} }
static inline __u32 static inline __u32
DVAL_LH(__u8 * buf, int pos) DVAL_LH(const __u8 * buf, int pos)
{ {
return WVAL_LH(buf, pos) | WVAL_LH(buf, pos + 2) << 16; return WVAL_LH(buf, pos) | WVAL_LH(buf, pos + 2) << 16;
} }
......
...@@ -746,7 +746,6 @@ static int ncp_do_request(struct ncp_server *server, int size, ...@@ -746,7 +746,6 @@ static int ncp_do_request(struct ncp_server *server, int size,
return -EIO; return -EIO;
} }
if (!ncp_conn_valid(server)) { if (!ncp_conn_valid(server)) {
printk(KERN_ERR "ncpfs: Connection invalid!\n");
return -EIO; return -EIO;
} }
{ {
......
...@@ -241,34 +241,6 @@ int ncp_mmap(struct file *, struct vm_area_struct *); ...@@ -241,34 +241,6 @@ int ncp_mmap(struct file *, struct vm_area_struct *);
/* linux/fs/ncpfs/ncplib_kernel.c */ /* linux/fs/ncpfs/ncplib_kernel.c */
int ncp_make_closed(struct inode *); int ncp_make_closed(struct inode *);
#define ncp_namespace(i) (NCP_SERVER(i)->name_space[NCP_FINFO(i)->volNumber])
static inline int ncp_preserve_entry_case(struct inode *i, __u32 nscreator)
{
#ifdef CONFIG_NCPFS_SMALLDOS
int ns = ncp_namespace(i);
if ((ns == NW_NS_DOS)
#ifdef CONFIG_NCPFS_OS2_NS
|| ((ns == NW_NS_OS2) && (nscreator == NW_NS_DOS))
#endif /* CONFIG_NCPFS_OS2_NS */
)
return 0;
#endif /* CONFIG_NCPFS_SMALLDOS */
return 1;
}
#define ncp_preserve_case(i) (ncp_namespace(i) != NW_NS_DOS)
static inline int ncp_case_sensitive(struct inode *i)
{
#ifdef CONFIG_NCPFS_NFS_NS
return ncp_namespace(i) == NW_NS_NFS;
#else
return 0;
#endif /* CONFIG_NCPFS_NFS_NS */
}
#endif /* __KERNEL__ */ #endif /* __KERNEL__ */
#endif /* _LINUX_NCP_FS_H */ #endif /* _LINUX_NCP_FS_H */
...@@ -62,6 +62,7 @@ struct ncp_server { ...@@ -62,6 +62,7 @@ struct ncp_server {
int ncp_reply_size; int ncp_reply_size;
int root_setuped; int root_setuped;
struct mutex root_setup_lock;
/* info for packet signing */ /* info for packet signing */
int sign_wanted; /* 1=Server needs signed packets */ int sign_wanted; /* 1=Server needs signed packets */
...@@ -81,13 +82,14 @@ struct ncp_server { ...@@ -81,13 +82,14 @@ struct ncp_server {
size_t len; size_t len;
void* data; void* data;
} priv; } priv;
struct rw_semaphore auth_rwsem;
/* nls info: codepage for volume and charset for I/O */ /* nls info: codepage for volume and charset for I/O */
struct nls_table *nls_vol; struct nls_table *nls_vol;
struct nls_table *nls_io; struct nls_table *nls_io;
/* maximum age in jiffies */ /* maximum age in jiffies */
int dentry_ttl; atomic_t dentry_ttl;
/* miscellaneous */ /* miscellaneous */
unsigned int flags; unsigned int flags;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment