2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
11 * Linux support routines.
14 #include <afsconfig.h>
15 #include "afs/param.h"
20 #include "afs/sysincludes.h"
21 #include "afsincludes.h"
22 #include "afs/afs_stats.h"
23 #if defined(AFS_LINUX24_ENV)
24 #include "h/smp_lock.h"
26 #if defined(AFS_LINUX26_ENV)
30 #if defined(AFS_LINUX24_ENV)
31 /* Lookup name and return vnode for same. */
33 osi_lookupname(char *aname, uio_seg_t seg, int followlink,
34 vnode_t ** dirvpp, struct dentry **dpp)
37 extern struct nameidata afs_cacheNd;
38 struct nameidata *nd = &afs_cacheNd;
41 if (seg == AFS_UIOUSER) {
43 followlink ? user_path_walk(aname,
44 nd) : user_path_walk_link(aname, nd);
46 #if defined(AFS_LINUX26_ENV)
47 code = path_lookup(aname, followlink ? LOOKUP_FOLLOW : 0, nd);
49 if (path_init(aname, followlink ? LOOKUP_FOLLOW : 0, nd))
50 code = path_walk(aname, nd);
55 if (nd->dentry->d_inode) {
56 *dpp = dget(nd->dentry);
67 osi_lookupname(char *aname, uio_seg_t seg, int followlink, vnode_t ** dirvpp,
70 struct dentry *dp = NULL;
74 if (seg == AFS_UIOUSER) {
75 dp = followlink ? namei(aname) : lnamei(aname);
77 dp = lookup_dentry(aname, NULL, followlink ? 1 : 0);
80 if (dp && !IS_ERR(dp)) {
92 /* Intialize cache device info and fragment size for disk cache partition. */
94 osi_InitCacheInfo(char *aname)
98 extern ino_t cacheInode;
99 extern struct osi_dev cacheDev;
100 extern afs_int32 afs_fsfragsize;
101 extern struct super_block *afs_cacheSBp;
102 code = osi_lookupname(aname, AFS_UIOSYS, 1, NULL, &dp);
106 cacheInode = dp->d_inode->i_ino;
107 cacheDev.dev = dp->d_inode->i_sb->s_dev;
108 afs_fsfragsize = dp->d_inode->i_sb->s_blocksize - 1;
109 afs_cacheSBp = dp->d_inode->i_sb;
117 #define FOP_READ(F, B, C) (F)->f_op->read(F, B, (size_t)(C), &(F)->f_pos)
118 #define FOP_WRITE(F, B, C) (F)->f_op->write(F, B, (size_t)(C), &(F)->f_pos)
121 * Seek, then read or write to an open inode. addrp points to data in
125 osi_rdwr(int rw, struct osi_file *file, caddr_t addrp, size_t asize,
130 struct file *filp = &file->file;
131 off_t offset = file->offset;
132 unsigned long savelim;
134 /* Seek to the desired position. Return -1 on error. */
135 if (filp->f_op->llseek) {
136 if (filp->f_op->llseek(filp, (loff_t) offset, 0) != offset)
139 filp->f_pos = offset;
141 savelim = current->rlim[RLIMIT_FSIZE].rlim_cur;
142 current->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
144 /* Read/Write the data. */
147 code = FOP_READ(filp, addrp, asize);
148 else if (rw == UIO_WRITE)
149 code = FOP_WRITE(filp, addrp, asize);
150 else /* all is well? */
154 current->rlim[RLIMIT_FSIZE].rlim_cur = savelim;
157 *resid = asize - code;
163 /* This variant is called from AFS read/write routines and takes a uio
164 * struct and, if successful, returns 0.
167 osi_file_uio_rdwr(struct osi_file *osifile, uio_t * uiop, int rw)
169 struct file *filp = &osifile->file;
170 struct inode *ip = FILE_INODE(&osifile->file);
175 unsigned long savelim;
177 savelim = current->rlim[RLIMIT_FSIZE].rlim_cur;
178 current->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
180 if (uiop->uio_seg == AFS_UIOSYS)
183 filp->f_pos = uiop->uio_offset;
184 while (code == 0 && uiop->uio_resid > 0 && uiop->uio_iovcnt > 0) {
186 count = iov->iov_len;
194 code = FOP_READ(filp, iov->iov_base, count);
196 code = FOP_WRITE(filp, iov->iov_base, count);
201 } else if (code == 0) {
203 * This is bad -- we can't read any more data from the
204 * file, but we have no good way of signaling a partial
210 iov->iov_base += code;
211 iov->iov_len -= code;
212 uiop->uio_resid -= code;
213 uiop->uio_offset += code;
217 if (uiop->uio_seg == AFS_UIOSYS)
220 current->rlim[RLIMIT_FSIZE].rlim_cur = savelim;
226 * Setup a uio struct.
229 setup_uio(uio_t * uiop, struct iovec *iovecp, char *buf, afs_offs_t pos,
230 int count, uio_flag_t flag, uio_seg_t seg)
232 iovecp->iov_base = buf;
233 iovecp->iov_len = count;
234 uiop->uio_iov = iovecp;
235 uiop->uio_iovcnt = 1;
236 uiop->uio_offset = pos;
238 uiop->uio_resid = count;
239 uiop->uio_flag = flag;
244 * UIO_READ : dp -> uio
245 * UIO_WRITE : uio -> dp
248 uiomove(char *dp, int length, uio_flag_t rw, uio_t * uiop)
254 while (length > 0 && uiop->uio_resid > 0 && uiop->uio_iovcnt > 0) {
256 count = iov->iov_len;
267 switch (uiop->uio_seg) {
271 memcpy(iov->iov_base, dp, count);
274 memcpy(dp, iov->iov_base, count);
277 printf("uiomove: Bad rw = %d\n", rw);
284 AFS_COPYOUT(dp, iov->iov_base, count, code);
287 AFS_COPYIN(iov->iov_base, dp, count, code);
290 printf("uiomove: Bad rw = %d\n", rw);
295 printf("uiomove: Bad seg = %d\n", uiop->uio_seg);
301 iov->iov_base += count;
302 iov->iov_len -= count;
303 uiop->uio_offset += count;
304 uiop->uio_resid -= count;
310 afs_osi_SetTime(osi_timeval_t * tvp)
312 extern int (*sys_settimeofdayp) (struct timeval * tv,
313 struct timezone * tz);
314 #ifdef AFS_LINUX_64BIT_KERNEL
316 AFS_STATCNT(osi_SetTime);
317 tv.tv_sec = tvp->tv_sec;
318 tv.tv_usec = tvp->tv_usec;
319 (void)(*sys_settimeofdayp) (&tv, NULL);
323 AFS_STATCNT(osi_SetTime);
326 (void)(*sys_settimeofdayp) (tvp, NULL);
331 /* Free all the pages on any of the vnodes in the vlru. Must be done before
332 * freeing all memory.
335 osi_linux_free_inode_pages(void)
340 extern struct vcache *afs_vhashT[VCSIZE];
342 for (i = 0; i < VCSIZE; i++) {
343 for (tvc = afs_vhashT[i]; tvc; tvc = tvc->hnext) {
345 #if defined(AFS_LINUX24_ENV)
346 if (ip->i_data.nrpages) {
350 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
351 truncate_inode_pages(&ip->i_data, 0);
352 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,15)
353 truncate_inode_pages(ip, 0);
355 invalidate_inode_pages(ip);
357 #if defined(AFS_LINUX24_ENV)
358 if (ip->i_data.nrpages) {
362 printf("Failed to invalidate all pages on inode 0x%x\n",
371 osi_clear_inode(struct inode *ip)
373 cred_t *credp = crref();
374 struct vcache *vcp = ITOAFS(ip);
376 #if defined(AFS_LINUX24_ENV)
377 if (atomic_read(&ip->i_count) > 1)
381 printf("afs_put_inode: ino %d (0x%x) has count %d\n", ip->i_ino, ip,
384 afs_InactiveVCache(vcp, credp);
385 ObtainWriteLock(&vcp->lock, 504);
386 ip->i_nlink = 0; /* iput checks this after calling this routine. */
387 ip->i_state = I_CLEAR;
388 ReleaseWriteLock(&vcp->lock);
392 #if !defined(AFS_LINUX26_ENV)
393 /* iput an inode. Since we still have a separate inode pool, we don't want
394 * to call iput on AFS inodes, since they would then end up on Linux's
398 osi_iput(struct inode *ip)
400 extern struct vfs *afs_globalVFS;
404 if (afs_globalVFS && ip->i_sb != afs_globalVFS)
405 osi_Panic("IPUT Not an afs inode\n");
407 #if defined(AFS_LINUX24_ENV)
408 if (atomic_read(&ip->i_count) == 0)
410 if (ip->i_count == 0)
412 osi_Panic("IPUT Bad refCount %d on inode 0x%x\n",
413 #if defined(AFS_LINUX24_ENV)
414 atomic_read(&ip->i_count),
420 #if defined(AFS_LINUX24_ENV)
421 if (atomic_dec_and_test(&ip->i_count))
433 /* check_bad_parent() : Checks if this dentry's vcache is a root vcache
434 * that has its mvid (parent dir's fid) pointer set to the wrong directory
435 * due to being mounted in multiple points at once. If so, check_bad_parent()
436 * calls afs_lookup() to correct the vcache's mvid, as well as the volume's
437 * dotdotfid and mtpoint fid members.
439 * dp - dentry to be checked.
443 * This dentry's vcache's mvid will be set to the correct parent directory's
445 * This root vnode's volume will have its dotdotfid and mtpoint fids set
446 * to the correct parent and mountpoint fids.
450 check_bad_parent(struct dentry *dp)
453 struct vcache *vcp = ITOAFS(dp->d_inode), *avc = NULL;
454 struct vcache *pvc = ITOAFS(dp->d_parent->d_inode);
456 if (vcp->mvid->Fid.Volume != pvc->fid.Fid.Volume) { /* bad parent */
460 /* force a lookup, so vcp->mvid is fixed up */
461 afs_lookup(pvc, dp->d_name.name, &avc, credp);
462 if (!avc || vcp != avc) { /* bad, very bad.. */
463 afs_Trace4(afs_iclSetp, CM_TRACE_TMP_1S3L, ICL_TYPE_STRING,
464 "check_bad_parent: bad pointer returned from afs_lookup origvc newvc dentry",
465 ICL_TYPE_POINTER, vcp, ICL_TYPE_POINTER, avc,
466 ICL_TYPE_POINTER, dp);
476 struct task_struct *rxk_ListenerTask;
482 sigfillset(¤t->blocked);
483 RECALC_SIGPENDING(current);
488 osi_linux_rxkreg(void)
490 rxk_ListenerTask = current;