4 * Copyright (C) 1995, 1996 by Volker Lendecke
5 * Modified for big endian by J.F. Chadima and David S. Miller
6 * Modified 1997 Peter Waltenberg, Bill Hawes, David Woodhouse for 2.1 dcache
7 * Modified 1998 Wolfram Pienkoss for NLS
8 * Modified 2000 Ben Harris, University of Cambridge for NFS NS meta-info
12 #include <linux/module.h>
14 #include <asm/system.h>
15 #include <asm/uaccess.h>
16 #include <asm/byteorder.h>
18 #include <linux/time.h>
19 #include <linux/kernel.h>
21 #include <linux/string.h>
22 #include <linux/stat.h>
23 #include <linux/errno.h>
24 #include <linux/file.h>
25 #include <linux/fcntl.h>
26 #include <linux/slab.h>
27 #include <linux/vmalloc.h>
28 #include <linux/init.h>
29 #include <linux/smp_lock.h>
30 #include <linux/vfs.h>
31 #include <linux/mount.h>
32 #include <linux/seq_file.h>
34 #include <linux/ncp_fs.h>
38 #include "ncplib_kernel.h"
41 #define NCP_DEFAULT_FILE_MODE 0600
42 #define NCP_DEFAULT_DIR_MODE 0700
43 #define NCP_DEFAULT_TIME_OUT 10
44 #define NCP_DEFAULT_RETRY_COUNT 20
46 static void ncp_delete_inode(struct inode
*);
47 static void ncp_put_super(struct super_block
*);
48 static int ncp_statfs(struct dentry
*, struct kstatfs
*);
49 static int ncp_show_options(struct seq_file
*, struct vfsmount
*);
51 static struct kmem_cache
* ncp_inode_cachep
;
53 static struct inode
*ncp_alloc_inode(struct super_block
*sb
)
55 struct ncp_inode_info
*ei
;
56 ei
= (struct ncp_inode_info
*)kmem_cache_alloc(ncp_inode_cachep
, GFP_KERNEL
);
59 return &ei
->vfs_inode
;
62 static void ncp_destroy_inode(struct inode
*inode
)
64 kmem_cache_free(ncp_inode_cachep
, NCP_FINFO(inode
));
67 static void init_once(void *foo
)
69 struct ncp_inode_info
*ei
= (struct ncp_inode_info
*) foo
;
71 mutex_init(&ei
->open_mutex
);
72 inode_init_once(&ei
->vfs_inode
);
75 static int init_inodecache(void)
77 ncp_inode_cachep
= kmem_cache_create("ncp_inode_cache",
78 sizeof(struct ncp_inode_info
),
79 0, (SLAB_RECLAIM_ACCOUNT
|
82 if (ncp_inode_cachep
== NULL
)
87 static void destroy_inodecache(void)
89 kmem_cache_destroy(ncp_inode_cachep
);
92 static int ncp_remount(struct super_block
*sb
, int *flags
, char* data
)
94 *flags
|= MS_NODIRATIME
;
98 static const struct super_operations ncp_sops
=
100 .alloc_inode
= ncp_alloc_inode
,
101 .destroy_inode
= ncp_destroy_inode
,
102 .drop_inode
= generic_delete_inode
,
103 .delete_inode
= ncp_delete_inode
,
104 .put_super
= ncp_put_super
,
105 .statfs
= ncp_statfs
,
106 .remount_fs
= ncp_remount
,
107 .show_options
= ncp_show_options
,
111 * Fill in the ncpfs-specific information in the inode.
113 static void ncp_update_dirent(struct inode
*inode
, struct ncp_entry_info
*nwinfo
)
115 NCP_FINFO(inode
)->DosDirNum
= nwinfo
->i
.DosDirNum
;
116 NCP_FINFO(inode
)->dirEntNum
= nwinfo
->i
.dirEntNum
;
117 NCP_FINFO(inode
)->volNumber
= nwinfo
->volume
;
120 void ncp_update_inode(struct inode
*inode
, struct ncp_entry_info
*nwinfo
)
122 ncp_update_dirent(inode
, nwinfo
);
123 NCP_FINFO(inode
)->nwattr
= nwinfo
->i
.attributes
;
124 NCP_FINFO(inode
)->access
= nwinfo
->access
;
125 memcpy(NCP_FINFO(inode
)->file_handle
, nwinfo
->file_handle
,
126 sizeof(nwinfo
->file_handle
));
127 DPRINTK("ncp_update_inode: updated %s, volnum=%d, dirent=%u\n",
128 nwinfo
->i
.entryName
, NCP_FINFO(inode
)->volNumber
,
129 NCP_FINFO(inode
)->dirEntNum
);
132 static void ncp_update_dates(struct inode
*inode
, struct nw_info_struct
*nwi
)
134 /* NFS namespace mode overrides others if it's set. */
135 DPRINTK(KERN_DEBUG
"ncp_update_dates_and_mode: (%s) nfs.mode=0%o\n",
136 nwi
->entryName
, nwi
->nfs
.mode
);
139 inode
->i_mode
= nwi
->nfs
.mode
;
142 inode
->i_blocks
= (inode
->i_size
+ NCP_BLOCK_SIZE
- 1) >> NCP_BLOCK_SHIFT
;
144 inode
->i_mtime
.tv_sec
= ncp_date_dos2unix(nwi
->modifyTime
, nwi
->modifyDate
);
145 inode
->i_ctime
.tv_sec
= ncp_date_dos2unix(nwi
->creationTime
, nwi
->creationDate
);
146 inode
->i_atime
.tv_sec
= ncp_date_dos2unix(0, nwi
->lastAccessDate
);
147 inode
->i_atime
.tv_nsec
= 0;
148 inode
->i_mtime
.tv_nsec
= 0;
149 inode
->i_ctime
.tv_nsec
= 0;
152 static void ncp_update_attrs(struct inode
*inode
, struct ncp_entry_info
*nwinfo
)
154 struct nw_info_struct
*nwi
= &nwinfo
->i
;
155 struct ncp_server
*server
= NCP_SERVER(inode
);
157 if (nwi
->attributes
& aDIR
) {
158 inode
->i_mode
= server
->m
.dir_mode
;
159 /* for directories dataStreamSize seems to be some
161 inode
->i_size
= NCP_BLOCK_SIZE
;
163 inode
->i_mode
= server
->m
.file_mode
;
164 inode
->i_size
= le32_to_cpu(nwi
->dataStreamSize
);
165 #ifdef CONFIG_NCPFS_EXTRAS
166 if ((server
->m
.flags
& (NCP_MOUNT_EXTRAS
|NCP_MOUNT_SYMLINKS
))
167 && (nwi
->attributes
& aSHARED
)) {
168 switch (nwi
->attributes
& (aHIDDEN
|aSYSTEM
)) {
170 if (server
->m
.flags
& NCP_MOUNT_SYMLINKS
) {
171 if (/* (inode->i_size >= NCP_MIN_SYMLINK_SIZE)
172 && */ (inode
->i_size
<= NCP_MAX_SYMLINK_SIZE
)) {
173 inode
->i_mode
= (inode
->i_mode
& ~S_IFMT
) | S_IFLNK
;
174 NCP_FINFO(inode
)->flags
|= NCPI_KLUDGE_SYMLINK
;
180 if (server
->m
.flags
& NCP_MOUNT_EXTRAS
)
181 inode
->i_mode
|= S_IRUGO
;
184 if (server
->m
.flags
& NCP_MOUNT_EXTRAS
)
185 inode
->i_mode
|= (inode
->i_mode
>> 2) & S_IXUGO
;
187 /* case aSYSTEM|aHIDDEN: */
189 /* reserved combination */
195 if (nwi
->attributes
& aRONLY
) inode
->i_mode
&= ~S_IWUGO
;
198 void ncp_update_inode2(struct inode
* inode
, struct ncp_entry_info
*nwinfo
)
200 NCP_FINFO(inode
)->flags
= 0;
201 if (!atomic_read(&NCP_FINFO(inode
)->opened
)) {
202 NCP_FINFO(inode
)->nwattr
= nwinfo
->i
.attributes
;
203 ncp_update_attrs(inode
, nwinfo
);
206 ncp_update_dates(inode
, &nwinfo
->i
);
207 ncp_update_dirent(inode
, nwinfo
);
211 * Fill in the inode based on the ncp_entry_info structure.
213 static void ncp_set_attr(struct inode
*inode
, struct ncp_entry_info
*nwinfo
)
215 struct ncp_server
*server
= NCP_SERVER(inode
);
217 NCP_FINFO(inode
)->flags
= 0;
219 ncp_update_attrs(inode
, nwinfo
);
221 DDPRINTK("ncp_read_inode: inode->i_mode = %u\n", inode
->i_mode
);
224 inode
->i_uid
= server
->m
.uid
;
225 inode
->i_gid
= server
->m
.gid
;
227 ncp_update_dates(inode
, &nwinfo
->i
);
228 ncp_update_inode(inode
, nwinfo
);
231 #if defined(CONFIG_NCPFS_EXTRAS) || defined(CONFIG_NCPFS_NFS_NS)
232 static const struct inode_operations ncp_symlink_inode_operations
= {
233 .readlink
= generic_readlink
,
234 .follow_link
= page_follow_link_light
,
235 .put_link
= page_put_link
,
236 .setattr
= ncp_notify_change
,
244 ncp_iget(struct super_block
*sb
, struct ncp_entry_info
*info
)
249 printk(KERN_ERR
"ncp_iget: info is NULL\n");
253 inode
= new_inode(sb
);
255 atomic_set(&NCP_FINFO(inode
)->opened
, info
->opened
);
257 inode
->i_ino
= info
->ino
;
258 ncp_set_attr(inode
, info
);
259 if (S_ISREG(inode
->i_mode
)) {
260 inode
->i_op
= &ncp_file_inode_operations
;
261 inode
->i_fop
= &ncp_file_operations
;
262 } else if (S_ISDIR(inode
->i_mode
)) {
263 inode
->i_op
= &ncp_dir_inode_operations
;
264 inode
->i_fop
= &ncp_dir_operations
;
265 #ifdef CONFIG_NCPFS_NFS_NS
266 } else if (S_ISCHR(inode
->i_mode
) || S_ISBLK(inode
->i_mode
) || S_ISFIFO(inode
->i_mode
) || S_ISSOCK(inode
->i_mode
)) {
267 init_special_inode(inode
, inode
->i_mode
,
268 new_decode_dev(info
->i
.nfs
.rdev
));
270 #if defined(CONFIG_NCPFS_EXTRAS) || defined(CONFIG_NCPFS_NFS_NS)
271 } else if (S_ISLNK(inode
->i_mode
)) {
272 inode
->i_op
= &ncp_symlink_inode_operations
;
273 inode
->i_data
.a_ops
= &ncp_symlink_aops
;
276 make_bad_inode(inode
);
278 insert_inode_hash(inode
);
280 printk(KERN_ERR
"ncp_iget: iget failed!\n");
285 ncp_delete_inode(struct inode
*inode
)
287 truncate_inode_pages(&inode
->i_data
, 0);
289 if (S_ISDIR(inode
->i_mode
)) {
290 DDPRINTK("ncp_delete_inode: put directory %ld\n", inode
->i_ino
);
293 if (ncp_make_closed(inode
) != 0) {
294 /* We can't do anything but complain. */
295 printk(KERN_ERR
"ncp_delete_inode: could not close\n");
300 static void ncp_stop_tasks(struct ncp_server
*server
) {
301 struct sock
* sk
= server
->ncp_sock
->sk
;
303 sk
->sk_error_report
= server
->error_report
;
304 sk
->sk_data_ready
= server
->data_ready
;
305 sk
->sk_write_space
= server
->write_space
;
306 del_timer_sync(&server
->timeout_tm
);
307 flush_scheduled_work();
310 static int ncp_show_options(struct seq_file
*seq
, struct vfsmount
*mnt
)
312 struct ncp_server
*server
= NCP_SBP(mnt
->mnt_sb
);
315 if (server
->m
.uid
!= 0)
316 seq_printf(seq
, ",uid=%u", server
->m
.uid
);
317 if (server
->m
.gid
!= 0)
318 seq_printf(seq
, ",gid=%u", server
->m
.gid
);
319 if (server
->m
.mounted_uid
!= 0)
320 seq_printf(seq
, ",owner=%u", server
->m
.mounted_uid
);
321 tmp
= server
->m
.file_mode
& S_IALLUGO
;
322 if (tmp
!= NCP_DEFAULT_FILE_MODE
)
323 seq_printf(seq
, ",mode=0%o", tmp
);
324 tmp
= server
->m
.dir_mode
& S_IALLUGO
;
325 if (tmp
!= NCP_DEFAULT_DIR_MODE
)
326 seq_printf(seq
, ",dirmode=0%o", tmp
);
327 if (server
->m
.time_out
!= NCP_DEFAULT_TIME_OUT
* HZ
/ 100) {
328 tmp
= server
->m
.time_out
* 100 / HZ
;
329 seq_printf(seq
, ",timeout=%u", tmp
);
331 if (server
->m
.retry_count
!= NCP_DEFAULT_RETRY_COUNT
)
332 seq_printf(seq
, ",retry=%u", server
->m
.retry_count
);
333 if (server
->m
.flags
!= 0)
334 seq_printf(seq
, ",flags=%lu", server
->m
.flags
);
335 if (server
->m
.wdog_pid
!= NULL
)
336 seq_printf(seq
, ",wdogpid=%u", pid_vnr(server
->m
.wdog_pid
));
341 static const struct ncp_option ncp_opts
[] = {
342 { "uid", OPT_INT
, 'u' },
343 { "gid", OPT_INT
, 'g' },
344 { "owner", OPT_INT
, 'o' },
345 { "mode", OPT_INT
, 'm' },
346 { "dirmode", OPT_INT
, 'd' },
347 { "timeout", OPT_INT
, 't' },
348 { "retry", OPT_INT
, 'r' },
349 { "flags", OPT_INT
, 'f' },
350 { "wdogpid", OPT_INT
, 'w' },
351 { "ncpfd", OPT_INT
, 'n' },
352 { "infofd", OPT_INT
, 'i' }, /* v5 */
353 { "version", OPT_INT
, 'v' },
356 static int ncp_parse_options(struct ncp_mount_data_kernel
*data
, char *options
) {
359 unsigned long optint
;
365 data
->mounted_uid
= 0;
366 data
->wdog_pid
= NULL
;
368 data
->time_out
= NCP_DEFAULT_TIME_OUT
;
369 data
->retry_count
= NCP_DEFAULT_RETRY_COUNT
;
372 data
->file_mode
= NCP_DEFAULT_FILE_MODE
;
373 data
->dir_mode
= NCP_DEFAULT_DIR_MODE
;
375 data
->mounted_vol
[0] = 0;
377 while ((optval
= ncp_getopt("ncpfs", &options
, ncp_opts
, NULL
, &optarg
, &optint
)) != 0) {
389 data
->mounted_uid
= optint
;
392 data
->file_mode
= optint
;
395 data
->dir_mode
= optint
;
398 data
->time_out
= optint
;
401 data
->retry_count
= optint
;
404 data
->flags
= optint
;
407 data
->wdog_pid
= find_get_pid(optint
);
410 data
->ncp_fd
= optint
;
413 data
->info_fd
= optint
;
417 if (optint
< NCP_MOUNT_VERSION_V4
)
419 if (optint
> NCP_MOUNT_VERSION_V5
)
428 put_pid(data
->wdog_pid
);
429 data
->wdog_pid
= NULL
;
433 static int ncp_fill_super(struct super_block
*sb
, void *raw_data
, int silent
)
435 struct ncp_mount_data_kernel data
;
436 struct ncp_server
*server
;
437 struct file
*ncp_filp
;
438 struct inode
*root_inode
;
439 struct inode
*sock_inode
;
443 #ifdef CONFIG_NCPFS_PACKET_SIGNING
446 struct ncp_entry_info finfo
;
448 data
.wdog_pid
= NULL
;
449 server
= kzalloc(sizeof(struct ncp_server
), GFP_KERNEL
);
452 sb
->s_fs_info
= server
;
455 if (raw_data
== NULL
)
457 switch (*(int*)raw_data
) {
458 case NCP_MOUNT_VERSION
:
460 struct ncp_mount_data
* md
= (struct ncp_mount_data
*)raw_data
;
462 data
.flags
= md
->flags
;
463 data
.int_flags
= NCP_IMOUNT_LOGGEDIN_POSSIBLE
;
464 data
.mounted_uid
= md
->mounted_uid
;
465 data
.wdog_pid
= find_get_pid(md
->wdog_pid
);
466 data
.ncp_fd
= md
->ncp_fd
;
467 data
.time_out
= md
->time_out
;
468 data
.retry_count
= md
->retry_count
;
471 data
.file_mode
= md
->file_mode
;
472 data
.dir_mode
= md
->dir_mode
;
474 memcpy(data
.mounted_vol
, md
->mounted_vol
,
478 case NCP_MOUNT_VERSION_V4
:
480 struct ncp_mount_data_v4
* md
= (struct ncp_mount_data_v4
*)raw_data
;
482 data
.flags
= md
->flags
;
484 data
.mounted_uid
= md
->mounted_uid
;
485 data
.wdog_pid
= find_get_pid(md
->wdog_pid
);
486 data
.ncp_fd
= md
->ncp_fd
;
487 data
.time_out
= md
->time_out
;
488 data
.retry_count
= md
->retry_count
;
491 data
.file_mode
= md
->file_mode
;
492 data
.dir_mode
= md
->dir_mode
;
494 data
.mounted_vol
[0] = 0;
499 if (memcmp(raw_data
, "vers", 4) == 0) {
500 error
= ncp_parse_options(&data
, raw_data
);
507 ncp_filp
= fget(data
.ncp_fd
);
511 sock_inode
= ncp_filp
->f_path
.dentry
->d_inode
;
512 if (!S_ISSOCK(sock_inode
->i_mode
))
514 sock
= SOCKET_I(sock_inode
);
518 if (sock
->type
== SOCK_STREAM
)
519 default_bufsize
= 0xF000;
521 default_bufsize
= 1024;
523 sb
->s_flags
|= MS_NODIRATIME
; /* probably even noatime */
524 sb
->s_maxbytes
= 0xFFFFFFFFU
;
525 sb
->s_blocksize
= 1024; /* Eh... Is this correct? */
526 sb
->s_blocksize_bits
= 10;
527 sb
->s_magic
= NCP_SUPER_MAGIC
;
528 sb
->s_op
= &ncp_sops
;
530 server
= NCP_SBP(sb
);
531 memset(server
, 0, sizeof(*server
));
533 server
->ncp_filp
= ncp_filp
;
534 server
->ncp_sock
= sock
;
536 if (data
.info_fd
!= -1) {
537 struct socket
*info_sock
;
540 server
->info_filp
= fget(data
.info_fd
);
541 if (!server
->info_filp
)
544 sock_inode
= server
->info_filp
->f_path
.dentry
->d_inode
;
545 if (!S_ISSOCK(sock_inode
->i_mode
))
547 info_sock
= SOCKET_I(sock_inode
);
551 if (info_sock
->type
!= SOCK_STREAM
)
553 server
->info_sock
= info_sock
;
556 /* server->lock = 0; */
557 mutex_init(&server
->mutex
);
558 server
->packet
= NULL
;
559 /* server->buffer_size = 0; */
560 /* server->conn_status = 0; */
561 /* server->root_dentry = NULL; */
562 /* server->root_setuped = 0; */
563 #ifdef CONFIG_NCPFS_PACKET_SIGNING
564 /* server->sign_wanted = 0; */
565 /* server->sign_active = 0; */
567 server
->auth
.auth_type
= NCP_AUTH_NONE
;
568 /* server->auth.object_name_len = 0; */
569 /* server->auth.object_name = NULL; */
570 /* server->auth.object_type = 0; */
571 /* server->priv.len = 0; */
572 /* server->priv.data = NULL; */
575 /* Althought anything producing this is buggy, it happens
576 now because of PATH_MAX changes.. */
577 if (server
->m
.time_out
< 1) {
578 server
->m
.time_out
= 10;
579 printk(KERN_INFO
"You need to recompile your ncpfs utils..\n");
581 server
->m
.time_out
= server
->m
.time_out
* HZ
/ 100;
582 server
->m
.file_mode
= (server
->m
.file_mode
& S_IRWXUGO
) | S_IFREG
;
583 server
->m
.dir_mode
= (server
->m
.dir_mode
& S_IRWXUGO
) | S_IFDIR
;
585 #ifdef CONFIG_NCPFS_NLS
586 /* load the default NLS charsets */
587 server
->nls_vol
= load_nls_default();
588 server
->nls_io
= load_nls_default();
589 #endif /* CONFIG_NCPFS_NLS */
591 server
->dentry_ttl
= 0; /* no caching */
593 INIT_LIST_HEAD(&server
->tx
.requests
);
594 mutex_init(&server
->rcv
.creq_mutex
);
595 server
->tx
.creq
= NULL
;
596 server
->rcv
.creq
= NULL
;
597 server
->data_ready
= sock
->sk
->sk_data_ready
;
598 server
->write_space
= sock
->sk
->sk_write_space
;
599 server
->error_report
= sock
->sk
->sk_error_report
;
600 sock
->sk
->sk_user_data
= server
;
602 init_timer(&server
->timeout_tm
);
603 #undef NCP_PACKET_SIZE
604 #define NCP_PACKET_SIZE 131072
606 server
->packet_size
= NCP_PACKET_SIZE
;
607 server
->packet
= vmalloc(NCP_PACKET_SIZE
);
608 if (server
->packet
== NULL
)
610 server
->txbuf
= vmalloc(NCP_PACKET_SIZE
);
611 if (server
->txbuf
== NULL
)
613 server
->rxbuf
= vmalloc(NCP_PACKET_SIZE
);
614 if (server
->rxbuf
== NULL
)
617 sock
->sk
->sk_data_ready
= ncp_tcp_data_ready
;
618 sock
->sk
->sk_error_report
= ncp_tcp_error_report
;
619 if (sock
->type
== SOCK_STREAM
) {
620 server
->rcv
.ptr
= (unsigned char*)&server
->rcv
.buf
;
621 server
->rcv
.len
= 10;
622 server
->rcv
.state
= 0;
623 INIT_WORK(&server
->rcv
.tq
, ncp_tcp_rcv_proc
);
624 INIT_WORK(&server
->tx
.tq
, ncp_tcp_tx_proc
);
625 sock
->sk
->sk_write_space
= ncp_tcp_write_space
;
627 INIT_WORK(&server
->rcv
.tq
, ncpdgram_rcv_proc
);
628 INIT_WORK(&server
->timeout_tq
, ncpdgram_timeout_proc
);
629 server
->timeout_tm
.data
= (unsigned long)server
;
630 server
->timeout_tm
.function
= ncpdgram_timeout_call
;
633 ncp_lock_server(server
);
634 error
= ncp_connect(server
);
635 ncp_unlock_server(server
);
638 DPRINTK("ncp_fill_super: NCP_SBP(sb) = %x\n", (int) NCP_SBP(sb
));
640 error
= -EMSGSIZE
; /* -EREMOTESIDEINCOMPATIBLE */
641 #ifdef CONFIG_NCPFS_PACKET_SIGNING
642 if (ncp_negotiate_size_and_options(server
, default_bufsize
,
643 NCP_DEFAULT_OPTIONS
, &(server
->buffer_size
), &options
) == 0)
645 if (options
!= NCP_DEFAULT_OPTIONS
)
647 if (ncp_negotiate_size_and_options(server
,
650 &(server
->buffer_size
), &options
) != 0)
657 server
->sign_wanted
= 1;
660 #endif /* CONFIG_NCPFS_PACKET_SIGNING */
661 if (ncp_negotiate_buffersize(server
, default_bufsize
,
662 &(server
->buffer_size
)) != 0)
664 DPRINTK("ncpfs: bufsize = %d\n", server
->buffer_size
);
666 memset(&finfo
, 0, sizeof(finfo
));
667 finfo
.i
.attributes
= aDIR
;
668 finfo
.i
.dataStreamSize
= 0; /* ignored */
669 finfo
.i
.dirEntNum
= 0;
670 finfo
.i
.DosDirNum
= 0;
671 #ifdef CONFIG_NCPFS_SMALLDOS
672 finfo
.i
.NSCreator
= NW_NS_DOS
;
674 finfo
.volume
= NCP_NUMBER_OF_VOLUMES
;
675 /* set dates of mountpoint to Jan 1, 1986; 00:00 */
676 finfo
.i
.creationTime
= finfo
.i
.modifyTime
677 = cpu_to_le16(0x0000);
678 finfo
.i
.creationDate
= finfo
.i
.modifyDate
679 = finfo
.i
.lastAccessDate
680 = cpu_to_le16(0x0C21);
682 finfo
.i
.entryName
[0] = '\0';
685 finfo
.ino
= 2; /* tradition */
687 server
->name_space
[finfo
.volume
] = NW_NS_DOS
;
690 root_inode
= ncp_iget(sb
, &finfo
);
693 DPRINTK("ncp_fill_super: root vol=%d\n", NCP_FINFO(root_inode
)->volNumber
);
694 sb
->s_root
= d_alloc_root(root_inode
);
697 sb
->s_root
->d_op
= &ncp_root_dentry_operations
;
703 ncp_lock_server(server
);
704 ncp_disconnect(server
);
705 ncp_unlock_server(server
);
707 ncp_stop_tasks(server
);
708 vfree(server
->rxbuf
);
710 vfree(server
->txbuf
);
712 vfree(server
->packet
);
714 #ifdef CONFIG_NCPFS_NLS
715 unload_nls(server
->nls_io
);
716 unload_nls(server
->nls_vol
);
719 if (server
->info_filp
)
720 fput(server
->info_filp
);
722 /* 23/12/1998 Marcin Dalecki <dalecki@cs.net.pl>:
724 * The previously used put_filp(ncp_filp); was bogous, since
725 * it doesn't proper unlocking.
729 put_pid(data
.wdog_pid
);
730 sb
->s_fs_info
= NULL
;
735 static void ncp_put_super(struct super_block
*sb
)
737 struct ncp_server
*server
= NCP_SBP(sb
);
739 ncp_lock_server(server
);
740 ncp_disconnect(server
);
741 ncp_unlock_server(server
);
743 ncp_stop_tasks(server
);
745 #ifdef CONFIG_NCPFS_NLS
746 /* unload the NLS charsets */
749 unload_nls(server
->nls_vol
);
750 server
->nls_vol
= NULL
;
754 unload_nls(server
->nls_io
);
755 server
->nls_io
= NULL
;
757 #endif /* CONFIG_NCPFS_NLS */
759 if (server
->info_filp
)
760 fput(server
->info_filp
);
761 fput(server
->ncp_filp
);
762 kill_pid(server
->m
.wdog_pid
, SIGTERM
, 1);
763 put_pid(server
->m
.wdog_pid
);
765 kfree(server
->priv
.data
);
766 kfree(server
->auth
.object_name
);
767 vfree(server
->rxbuf
);
768 vfree(server
->txbuf
);
769 vfree(server
->packet
);
770 sb
->s_fs_info
= NULL
;
774 static int ncp_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
778 struct ncp_inode_info
* ni
;
779 struct ncp_server
* s
;
780 struct ncp_volume_info vi
;
781 struct super_block
*sb
= dentry
->d_sb
;
801 if (!s
->m
.mounted_vol
[0]) {
805 err
= ncp_dirhandle_alloc(s
, ni
->volNumber
, ni
->DosDirNum
, &dh
);
809 err
= ncp_get_directory_info(s
, dh
, &vi
);
810 ncp_dirhandle_free(s
, dh
);
814 buf
->f_type
= NCP_SUPER_MAGIC
;
815 buf
->f_bsize
= vi
.sectors_per_block
* 512;
816 buf
->f_blocks
= vi
.total_blocks
;
817 buf
->f_bfree
= vi
.free_blocks
;
818 buf
->f_bavail
= vi
.free_blocks
;
819 buf
->f_files
= vi
.total_dir_entries
;
820 buf
->f_ffree
= vi
.available_dir_entries
;
824 /* We cannot say how much disk space is left on a mounted
825 NetWare Server, because free space is distributed over
826 volumes, and the current user might have disk quotas. So
827 free space is not that simple to determine. Our decision
828 here is to err conservatively. */
831 buf
->f_type
= NCP_SUPER_MAGIC
;
832 buf
->f_bsize
= NCP_BLOCK_SIZE
;
840 int ncp_notify_change(struct dentry
*dentry
, struct iattr
*attr
)
842 struct inode
*inode
= dentry
->d_inode
;
845 struct nw_modify_dos_info info
;
846 struct ncp_server
*server
;
852 server
= NCP_SERVER(inode
);
853 if ((!server
) || !ncp_conn_valid(server
))
856 /* ageing the dentry to force validation */
857 ncp_age_dentry(server
, dentry
);
859 result
= inode_change_ok(inode
, attr
);
864 if (((attr
->ia_valid
& ATTR_UID
) &&
865 (attr
->ia_uid
!= server
->m
.uid
)))
868 if (((attr
->ia_valid
& ATTR_GID
) &&
869 (attr
->ia_gid
!= server
->m
.gid
)))
872 if (((attr
->ia_valid
& ATTR_MODE
) &&
874 ~(S_IFREG
| S_IFDIR
| S_IRWXUGO
))))
878 memset(&info
, 0, sizeof(info
));
881 if ((attr
->ia_valid
& ATTR_MODE
) != 0)
883 umode_t newmode
= attr
->ia_mode
;
885 info_mask
|= DM_ATTRIBUTES
;
887 if (S_ISDIR(inode
->i_mode
)) {
888 newmode
&= server
->m
.dir_mode
;
890 #ifdef CONFIG_NCPFS_EXTRAS
891 if (server
->m
.flags
& NCP_MOUNT_EXTRAS
) {
892 /* any non-default execute bit set */
893 if (newmode
& ~server
->m
.file_mode
& S_IXUGO
)
894 info
.attributes
|= aSHARED
| aSYSTEM
;
895 /* read for group/world and not in default file_mode */
896 else if (newmode
& ~server
->m
.file_mode
& S_IRUGO
)
897 info
.attributes
|= aSHARED
;
900 newmode
&= server
->m
.file_mode
;
902 if (newmode
& S_IWUGO
)
903 info
.attributes
&= ~(aRONLY
|aRENAMEINHIBIT
|aDELETEINHIBIT
);
905 info
.attributes
|= (aRONLY
|aRENAMEINHIBIT
|aDELETEINHIBIT
);
907 #ifdef CONFIG_NCPFS_NFS_NS
908 if (ncp_is_nfs_extras(server
, NCP_FINFO(inode
)->volNumber
)) {
909 result
= ncp_modify_nfs_info(server
,
910 NCP_FINFO(inode
)->volNumber
,
911 NCP_FINFO(inode
)->dirEntNum
,
915 info
.attributes
&= ~(aSHARED
| aSYSTEM
);
917 /* mark partial success */
918 struct iattr tmpattr
;
920 tmpattr
.ia_valid
= ATTR_MODE
;
921 tmpattr
.ia_mode
= attr
->ia_mode
;
923 result
= inode_setattr(inode
, &tmpattr
);
932 /* Do SIZE before attributes, otherwise mtime together with size does not work...
934 if ((attr
->ia_valid
& ATTR_SIZE
) != 0) {
937 DPRINTK("ncpfs: trying to change size to %ld\n",
940 if ((result
= ncp_make_open(inode
, O_WRONLY
)) < 0) {
944 ncp_write_kernel(NCP_SERVER(inode
), NCP_FINFO(inode
)->file_handle
,
945 attr
->ia_size
, 0, "", &written
);
947 /* According to ndir, the changes only take effect after
949 ncp_inode_close(inode
);
950 result
= ncp_make_closed(inode
);
954 struct iattr tmpattr
;
956 tmpattr
.ia_valid
= ATTR_SIZE
;
957 tmpattr
.ia_size
= attr
->ia_size
;
959 result
= inode_setattr(inode
, &tmpattr
);
964 if ((attr
->ia_valid
& ATTR_CTIME
) != 0) {
965 info_mask
|= (DM_CREATE_TIME
| DM_CREATE_DATE
);
966 ncp_date_unix2dos(attr
->ia_ctime
.tv_sec
,
967 &info
.creationTime
, &info
.creationDate
);
969 if ((attr
->ia_valid
& ATTR_MTIME
) != 0) {
970 info_mask
|= (DM_MODIFY_TIME
| DM_MODIFY_DATE
);
971 ncp_date_unix2dos(attr
->ia_mtime
.tv_sec
,
972 &info
.modifyTime
, &info
.modifyDate
);
974 if ((attr
->ia_valid
& ATTR_ATIME
) != 0) {
976 info_mask
|= (DM_LAST_ACCESS_DATE
);
977 ncp_date_unix2dos(attr
->ia_atime
.tv_sec
,
978 &dummy
, &info
.lastAccessDate
);
980 if (info_mask
!= 0) {
981 result
= ncp_modify_file_or_subdir_dos_info(NCP_SERVER(inode
),
982 inode
, info_mask
, &info
);
986 if (info_mask
== (DM_CREATE_TIME
| DM_CREATE_DATE
)) {
987 /* NetWare seems not to allow this. I
988 do not know why. So, just tell the
989 user everything went fine. This is
990 a terrible hack, but I do not know
991 how to do this correctly. */
996 #ifdef CONFIG_NCPFS_STRONG
997 if ((!result
) && (info_mask
& DM_ATTRIBUTES
))
998 NCP_FINFO(inode
)->nwattr
= info
.attributes
;
1002 result
= inode_setattr(inode
, attr
);
1008 static int ncp_get_sb(struct file_system_type
*fs_type
,
1009 int flags
, const char *dev_name
, void *data
, struct vfsmount
*mnt
)
1011 return get_sb_nodev(fs_type
, flags
, data
, ncp_fill_super
, mnt
);
1014 static struct file_system_type ncp_fs_type
= {
1015 .owner
= THIS_MODULE
,
1017 .get_sb
= ncp_get_sb
,
1018 .kill_sb
= kill_anon_super
,
1019 .fs_flags
= FS_BINARY_MOUNTDATA
,
1022 static int __init
init_ncp_fs(void)
1025 DPRINTK("ncpfs: init_ncp_fs called\n");
1027 err
= init_inodecache();
1030 err
= register_filesystem(&ncp_fs_type
);
1035 destroy_inodecache();
1040 static void __exit
exit_ncp_fs(void)
1042 DPRINTK("ncpfs: exit_ncp_fs called\n");
1043 unregister_filesystem(&ncp_fs_type
);
1044 destroy_inodecache();
1047 module_init(init_ncp_fs
)
1048 module_exit(exit_ncp_fs
)
1049 MODULE_LICENSE("GPL");