1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
|
/* ----------------------------------------------------------------------- *
*
* Copyright 2001 Bernhard M. Wiedemann - All Rights Reserved
*
* This file is part of the translucency kernel module.
* translucency is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License
* see file COPYING for more details
*
* ----------------------------------------------------------------------- */
#include "base.h"
#include "linked_list.h"
#define LAYERS 8
#define HASH_BITS 8
#define HASH_TABLE_SIZE (1<<HASH_BITS)
/* There are up to REDIRS redirections possible */
struct translucent redirs[REDIRS];
char translucent_delimiter[16]=" -> "; // set to "" for binfmt_misc syntax
int translucent_uid = ANYUID;
int translucent_gid = ANYUID;
int translucent_fs = 0;
int translucent_flags = 0;
int translucent_cnt = 0;
static inline int match_uids(void)
{
struct task_struct *p = current;
return (( translucent_uid == ANYUID || (unsigned)translucent_uid == p->euid) &&
( translucent_gid == ANYUID || (unsigned)translucent_gid == p->egid));
}
static inline int match_fs(const struct nameidata *n, const struct translucent *t)
{
int magic;
//TODO: remove debug entries if never seen in syslog for months
if(!n) {printk("DEBUG0a");return 0;}
if(!n->dentry) {printk("DEBUG1a");return 0;}
if(!n->dentry->d_inode) {printk("DEBUG2a");return 0;}
if(!n->dentry->d_inode->i_sb) {printk("DEBUG3a");return 0;}
if(!t) {printk("DEBUG0b");return 0;}
if(!t->n[0].dentry) {printk("DEBUG1b");return 0;}
if(!t->n[0].dentry->d_inode) {printk("DEBUG2b");return 0;}
if(!t->n[0].dentry->d_inode->i_sb) {printk("DEBUG3b");return 0;}
magic=n->dentry->d_inode->i_sb->s_magic;
if((unsigned)magic==t->n[0].dentry->d_inode->i_sb->s_magic ||
(translucent_fs>0 && magic==translucent_fs) ||
(translucent_fs<0 && magic!=-translucent_fs)) return 1;
return 0;
}
void redirect_namei(struct nameidata *dest, const struct nameidata *src) {
mntget(src->mnt); dget(src->dentry);
mntput(dest->mnt); dput(dest->dentry);
*dest = *src;
}
static inline void copy_namei(struct nameidata *dest, const struct nameidata *src) {
mntget(src->mnt); dget(src->dentry);
*dest = *src;
}
static inline int match_namei(const struct nameidata *n1, const struct nameidata *n2) {
return (n1->dentry == n2->dentry);
}
inline int have_inode(struct nameidata *n) {
return /*n!=NULL && */ n->dentry!=NULL && n->dentry->d_inode!=NULL;
}
inline int is_special(struct nameidata *n) {
return have_inode(n) && (!S_ISREG(n->dentry->d_inode->i_mode)
|| n->dentry->d_inode->i_sb->s_magic==PROC_SUPER_MAGIC);
}
static inline int translucent_is_whiteout(struct nameidata *n) {
return n && have_inode(n) && n->dentry->d_inode->i_size==0 &&
((n->dentry->d_inode->i_mode&(S_IALLUGO|S_IFMT))==(S_IFREG|01001));
}
static inline int translucent_is_whiteout2(char *path) {
int i_Ret;
struct nameidata n;
path_init(path, 0, &n);
i_Ret=path_walk(path, &n);
if(i_Ret) return 0;
i_Ret=translucent_is_whiteout(&n);
path_release(&n);
return i_Ret;
}
int translucent_create_whiteout(char *file) {
int (*orig_sys_close)(int)=sys_call_table[__NR_close];
int (*orig_sys_fchmod)(int,mode_t)=sys_call_table[__NR_fchmod];
int result;
BEGIN_KMEM
result=orig_sys_open(file, O_CREAT|O_EXCL|O_WRONLY|O_TRUNC, 0);
// printk("translucent whiteout %s result %i\n", file, result);
END_KMEM;
if(result<0) return result;
orig_sys_fchmod(result, 01001);
orig_sys_close(result);
return 0;
}
int translucent_copy(struct nameidata *nd, struct nameidata *nnew, int lookup_flags) {
char *p, *buf;
ssize_t (*sys_write)(int fd, const void *buf, size_t count)=sys_call_table[__NR_write];
ssize_t (*sys_read)(int fd, void *buf, size_t count)=sys_call_table[__NR_read];
int (*sys_close)(int fd)=sys_call_table[__NR_close];
int result,inphandle,outphandle,mode=nd->dentry->d_inode->i_mode;
// exclude device/pipe/socket/dir and proc entries from COW
if(is_special(nd)) return -ENODEV;
mode &= S_IRWXUGO;
buf=malloc(REDIR_BUFSIZE+1);
p = d_path(nd->dentry, nd->mnt, buf, REDIR_BUFSIZE);
// printk(KERN_DEBUG SYSLOGID ": copy-on-write %s %o\n",p,mode);
BEGIN_KMEM
result=orig_sys_open(p,O_RDONLY,0666);
END_KMEM
if(result<0) goto out_free;
inphandle=result;
p=d_path(nnew->dentry, nnew->mnt, buf, REDIR_BUFSIZE);
BEGIN_KMEM
result=orig_sys_open(p,O_WRONLY|O_CREAT,mode);
END_KMEM
if(result<0) goto out_close;
outphandle=result;
if(!(lookup_flags&LOOKUP_TRUNCATE)) {
BEGIN_KMEM
while((result=sys_read(inphandle,buf,REDIR_BUFSIZE))>0&&sys_write(outphandle,buf,result)>0);
END_KMEM
} else result=0;
sys_close(outphandle);
out_close:
sys_close(inphandle);
out_free:
free(buf);
return result;
}
int translucent_mkdir(struct nameidata *nd, struct nameidata *n, int mode, struct translucent *t) {
char *p, *buf;
int result, umask=current->fs->umask;
if ((translucent_flags&no_copyonwrite)) return -1;
mode &= 07777;
buf=malloc(REDIR_BUFSIZE+1);
p = namei_to_path(nd, buf);
memmove(buf,p,strlen(p)+1);
// printk(KERN_DEBUG SYSLOGID ": mkdir %s %.4o\n",buf,mode);
if(redirect_path(buf,t,dflags|LOOKUP_CREATES)) {
current->fs->umask = 0;
BEGIN_KMEM
result=orig_sys_mkdir(buf,mode);
END_KMEM
current->fs->umask = umask;
if(result==0) { //re-init n
path_init(buf,nd->flags,n);
result=path_walk(buf,n);
}
} else result=-1;
free(buf);
return result;
}
static inline int mymkdir2(struct nameidata *nd, struct nameidata *n, struct translucent *t) {
return translucent_mkdir(nd,n,nd->dentry->d_inode->i_mode,t);
}
unsigned int i_Random;
/** calculate hash from key data
@param unsigned char *key zero terminated input data
@return int hash value in range [0,HASH_TABLE_SIZE-1]
*/
static inline int hash_func(unsigned char *key)
{
unsigned int hash=0;
if(!key) return 0;
while(*key){
hash<<=2;
hash+=*key;
++key;
}
i_Random^=hash;
hash=(hash^(hash>>HASH_BITS)^(hash>>(HASH_BITS*2)))%HASH_TABLE_SIZE;
// printf("%i\n", hash);
return hash;
}
static inline int translucent_getdents(unsigned int fd, struct dirent64 *dirp, unsigned int count)
{
int i_Ret;
BEGIN_KMEM
i_Ret=orig_sys_getdents64(fd, dirp, count);
END_KMEM
return i_Ret;
}
int translucent_merge_init(int i_Layers, struct nameidata *n)
{
int (*sys_close)(int)=sys_call_table[__NR_close];
off_t (*sys_lseek)(int fildes, off_t offset, int whence)=sys_call_table[__NR_lseek];
ssize_t (*sys_write)(int fd, const void *buf, size_t count)=sys_call_table[__NR_write];
int (*sys_fchmod)(int fildes, mode_t mode)=sys_call_table[__NR_fchmod];
int out, i, i_Len, i_Hash, i_Bytes, b_Found, b_Whiteout;
int i_HashSize=HASH_TABLE_SIZE*sizeof(linked_list_t *);
linked_list_t **hashtable, **p_CurList, *p_Cur;
void *p_Data;
struct dirent64 *cur, *cur2, *dirents;
int outfd, curdirfd, /*i_Valid=0, i_LastValid=0,*/ i_Layer;
// char buf[REDIR_BUFSIZE], s_File[REDIR_BUFSIZE];
char *p=NULL, *ps, *p_VarSpace, *buf, *s_File;
struct task_struct *task;
p_VarSpace=(char *)malloc(2*REDIR_BUFSIZE+2*sizeof(struct dirent64)+i_HashSize);
buf=p_VarSpace; i=REDIR_BUFSIZE;
s_File=p_VarSpace+i; i+=REDIR_BUFSIZE;
dirents=(struct dirent64*)(p_VarSpace+i); i+=2*sizeof(struct dirent64);
hashtable=(linked_list_t **)(p_VarSpace+i);
memset(hashtable, 0, i_HashSize);
dirents[1].d_off=1;
// printk(SYSLOGID ": mi0\n");
/* for(i_Layer=0; i_Layer<i_Layers; ++i_Layer) {
if(n[i_Layer].dentry==NULL) continue;
i_Valid++;
i_LastValid=i_Layer;
}
if(i_Valid<=1 && n[0].dentry) { // take a shortcut when there is only one layer
printk(SYSLOGID ": debugmi1\n");
outfd=i_LastValid;
goto freeret;
}*/
for(i_Layer=0; i_Layer<i_Layers; i_Layer++) {
if(n[i_Layer].dentry==NULL) {
continue;
}
p=namei_to_path(&n[i_Layer],buf);
path_release(&n[i_Layer]);
DPRINTK("opening directory %s", p);
BEGIN_KMEM
curdirfd=orig_sys_open(p, O_RDONLY|O_DIRECTORY, 0666);
END_KMEM
DPRINTK("fd %i", curdirfd);
if(curdirfd<0) {
printk(SYSLOGID ": opening input failed\n");
continue;
}
if(dirents[1].d_off==1) {
memset(&dirents[1], 0, sizeof(dirents[1]));
memcpy(dirents[1].d_name, p, sizeof(dirents[1].d_name)-1);
dirents[1].d_ino=valid_translucency; // use as magic number
}
while((out=translucent_getdents(curdirfd, dirents, sizeof(struct dirent64)))) {
if(out<0) {
printk(SYSLOGID ": exception 1 %i\n", out);
}
cur=dirents;
while((char *)cur-(char *)dirents < out) {
i_Len=cur->d_reclen;
// printf("%8X %.8X %3i %11s \n",
// cur->d_ino, cur->d_off, cur->d_reclen, cur->d_name);
// snprintf(s_File, REDIR_BUFSIZE, "%s/%s", path[i_Layer], cur->d_name);
strcpy(s_File, p);
strcat(s_File, "/");
strcat(s_File, cur->d_name);
// printf("%s\n", s_File);
b_Whiteout=translucent_is_whiteout2(s_File);
i_Hash=hash_func(cur->d_name);
b_Found=0;
p_CurList=&(hashtable[i_Hash]);
while((p_Cur=*p_CurList)) {
cur2=linked_list_get_data(p_Cur);
if(strcmp(cur2->d_name,cur->d_name)==0) {
if(b_Whiteout) {
linked_list_remove(p_CurList);
}
b_Found=1;
break;
}
p_CurList=(linked_list_t**)&(p_Cur->next);
}
if(!b_Found && !b_Whiteout){
p_Data=malloc(i_Len);
memcpy(p_Data, cur, i_Len);
linked_list_insert(&(hashtable[i_Hash]), p_Data);
}
cur=(struct dirent64 *)((char *)cur+i_Len);
}
}
sys_close(curdirfd);
}
i_Bytes=0;
task=current;
i_Random=(int)p_VarSpace^(int)task->pidhash_next^(int)task->pidhash_pprev^(int)&i^(int)sys_close^(i_Random<<1);
snprintf(s_File, REDIR_BUFSIZE, "/tmp/getdents-%.5i-%.8X", task->pid, i_Random);
ps=p;
for(i=strlen(s_File); ps && *ps && (unsigned)i<REDIR_BUFSIZE-1; ++i,++ps) {
s_File[i]=(*ps=='/')?'-':*ps; // append pathname with / substituted
}
s_File[i]=0;
BEGIN_KMEM
outfd=orig_sys_open(s_File, O_RDWR|O_CREAT|O_TRUNC, 0666);
if(outfd>=0) orig_sys_unlink(s_File);
END_KMEM
if(outfd<0) goto freeret;
i_Len=sizeof(struct dirent64);
i_Bytes+=i_Len;
BEGIN_KMEM
sys_write(outfd, &dirents[1], i_Len);
END_KMEM
for(i=0; i<HASH_TABLE_SIZE; ++i) {
linked_list_foreach(p_Cur,hashtable[i]) {
cur=(struct dirent64*)linked_list_get_data(p_Cur);
//i_Len=cur->d_reclen; // space saving and a more human-readable file (strings /tmp/getdents...)
i_Bytes+=i_Len;
cur->d_off=i_Bytes; // offset of next entry - needed to lseek in our `directory'
BEGIN_KMEM
sys_write(outfd, cur, i_Len);
END_KMEM
free(cur);
}
linked_list_finish(&hashtable[i]);
}
sys_lseek(outfd, 0, 0/*SEEK_SET*/);
sys_fchmod(outfd, 01444);
outfd+=MAX_LAYERS;
freeret:
free(p_VarSpace);
return outfd;
}
void absolutize(char *name, struct dentry *d, struct vfsmount *m) {
char *p, *buf;
int l,l2 = strlen(name);
if(*name == '/') return;
buf=malloc(REDIR_BUFSIZE+1);
p = d_path(d, m, buf, REDIR_BUFSIZE);
l = strlen(p);
if (l+l2 < REDIR_BUFSIZE-3) {
memmove(&name[l+1], name, l2+1);
memcpy(name, p, l);
name[l] = '/';
} else {
printk(SYSLOGID ": buffer too small\n");
}
free(buf);
}
int redirect_path_init(char *name, unsigned int flags,
struct nameidata *n, struct translucent *t)
{
char *np=name;
int haddotdot=0,i;
if (path_init(name,flags,n)==0) return 0;
if (*name!='/'){ // && is_subdir(nd->dentry,n1->dentry)) {
absolutize(name,n->dentry,n->mnt);
path_release(n);
path_init(name,flags,n);
//printk(KERN_INFO "now having %s\n",name);
}
for(i=1; i<t->layers; ++i) copy_namei(&n[i],n);
//this is neccessary to let .. work in pathnames
while(1) {
char *p=strstr(np,"/..");
if (p==NULL) break;
if (*(p+3)!=0 && *(p+3)!='/') np=p+3;
else {
char *dotdot=p;
while (--p>=name && *p!='/');
if (p<name) break;
memmove(p,dotdot+3,strlen(dotdot)-2);
// imagine /sub1/sub2/../../test
// ^dotdot+3
// ^dotdot
// ^p
// ^name
np=name;
haddotdot=1;
}
}
return 1;
}
// returns highest index of valid layer and -1 if nil
static inline int any_valid(int layers, char *valid)
{
int i;
for(i=layers-1; i>=0; --i) if(valid[i]) break;
return i;
}
#define redirect_all_namei \
for(i=1; i<t->layers; ++i) if(valid[i] && match_namei(&n[i],&t->n[0])) \
{ redirect_namei(&n[i],&t->n[i]); something_redirected=1; }
//same as path walk: replaces any occurrence of n1 by n2
int redirect_path_walk(char *name, char **endp,
struct nameidata *n, struct translucent *t)
{
char savedchar=0,*slash=name,*np=name,*lastnp=NULL,something_redirected=0,valid[MAX_LAYERS];
int lflags=n->flags,error=0,i,j;
n->flags &= LOOKUP_TRANSLUCENCY_MASK;
memset(valid, 0, sizeof(valid));
for(i=0; i<t->layers; ++i) valid[i]=1;
while (np && any_valid(t->layers,valid)>=0) {
redirect_all_namei;
slash = strchr(np,'/');
if (slash) { savedchar = *(++slash); *slash=0; }
for(i=0; i<t->layers; ++i)
if(valid[i]) {
error = path_walk(np,&n[i]);
if(i == t->layers-1) {
if(error && slash && (lflags & LOOKUP_MKDIR)) {
int j=any_valid(t->layers-1,valid);
if (j>=0 && mymkdir2(&n[j],&n[i],t)==0) error = 0;
}
}
else if (!error && !have_inode(&n[i])) { path_release(&n[i]); error = -1; }
if (error) valid[i] = 0;
if(something_redirected && i==0 && valid[i] && !match_fs(&n[i],t))
for(i=0; i<t->layers; ++i) if(valid[i]) {
path_release(&n[i]);
valid[i]=0;
}
}
if (slash) { *slash = savedchar; }
/* if(*np=='.' && *(np+1)=='.' && (*(np+2)==0 || *(np+2)=='/')) {
//NOT working yet with symbolic links
// char buf[REDIR_BUFSIZE+1],*p;
if(!nd1 && match_namei(nd2,n2)) {nd1=nori;copy_namei(nd1,n1);}
if(!nd2 && match_namei(nd1,n1)) {nd2=nd;copy_namei(nd2,n2);}
p=namei_to_path(nd,buf);
if(redirect_path(p,t,n2,n1,dflags)) {
strncat(p,"/",REDIR_BUFSIZE);
if(slash) strncat(p,slash,REDIR_BUFSIZE);
path_release(nd);
printk(KERN_INFO "redir %s - %s - %s\n",np,name,p);
redirect_path_init(p,lflags,nd,nori,n1,n2,t);
return redirect_path_walk(p,endp,nd,nori,n1,n2,t);
}
}
*/
redirect_all_namei;
lastnp=np;
np=slash;
} // end of main redirect/walking loop
if(!slash && valid[t->layers-1] && !have_inode(&n[t->layers-1])) {
int mode, umask=current->fs->umask;
for(j=t->layers-2; j>=0; --j) if(valid[j] && have_inode(&n[j])) break;
error=0;
if (j>=0) {
current->fs->umask=0;
// prevent COW and overlaying of files in topmost dir
if(is_subdir(n[j].dentry, t->n[t->layers-1].dentry)) error = -1;
else {
mode=n[j].dentry->d_inode->i_mode;
// this does COW
if(is_special(&n[j])) {
if(S_ISDIR(mode) && (lflags&LOOKUP_CREATE)) mymkdir2(&n[j], &n[t->layers-1], t);
else if((lflags&LOOKUP_NOSPECIAL)) error = -1; // no mknod on echo > /dev/null , cow on fifo and socket does not make sense, copying symlinks is unnecessary
else if((lflags&LOOKUP_CREATE) && (S_ISBLK(mode) || S_ISCHR(mode)) && !(translucent_flags&no_copyonwrite)) {
// this is inlined quasi "mymknod"
char *buf=malloc(REDIR_BUFSIZE+1),*p=namei_to_path(&n[t->layers-1],buf);
memmove(buf,p,strlen(p)+1);p=buf;
//printk(KERN_DEBUG SYSLOGID ": mknod %s %.6o %X\n",p,mode,n[j].dentry->d_inode->i_rdev);
BEGIN_KMEM
error = orig_sys_mknod(p,mode,n[j].dentry->d_inode->i_rdev);
END_KMEM
free(buf);
}
} else if((lflags&LOOKUP_CREATE) && !(translucent_flags&no_copyonwrite)) {
//char buf[REDIR_BUFSIZE];printk(KERN_DEBUG SYSLOGID ": mycopy %s %.6o\n",namei_to_path(nd,buf),mode);
error = translucent_copy(&n[j],&n[t->layers-1],lflags);
}
}
current->fs->umask = umask;
if(error) { path_release(&n[t->layers-1]); valid[t->layers-1]=0; }
}
}
// now free unredirected paths
i=any_valid(t->layers,valid);
while (i>0 && n[i].dentry==n[0].dentry) {
path_release(&n[i]);
valid[i]=0;
i=any_valid(i,valid);
}
// free non-existing entries when !CREATES
i=any_valid(t->layers,valid);
while ((!(lflags&LOOKUP_CREATES)) && i>0 && !have_inode(&n[i])) {
path_release(&n[i]);
valid[i]=0;
i=any_valid(i,valid);
}
// if topmost entry is a directory merge dirs
if(i>0 && (lflags&LOOKUP_OPEN)) {
if((translucent_flags&no_getdents)) {
for(j=0; j<=i; ++j) if(valid[j] && have_inode(&n[j]) && S_ISDIR(n[j].dentry->d_inode->i_mode)) break;
for(; i>j; --i) if(valid[i]) {
path_release(&n[i]);
valid[i]=0;
}
} else {
for(j=i; j>=0; --j) if(valid[j] && have_inode(&n[j])) {
if(S_ISDIR(n[j].dentry->d_inode->i_mode)) {
for(i=0; i<MAX_LAYERS; ++i)
if(!valid[i]) n[i].dentry=NULL; // mark invalid
return MAX_LAYERS;
} else break;
}
}
}
// return index of uppermost layer with valid entry
for(j=i-1; j>=0; --j) if(valid[j]) { path_release(&n[j]); valid[j]=0; }
if (endp) *endp=(slash?lastnp:NULL);
if(!something_redirected && i>=0) {path_release(&n[i]); return (-1);}
return (i);
}
/* if 0 is returned no redirection could be done...
either there was nothing to redirect or other errors occurred (maybe reflect this in return status later)
if 1 is returned fname will be some pathname
if 2 is returned fname has been redirected (from n1 to n2)
*/
int redirect_path(char *fname, struct translucent *t, int rflags)
{
char *p,*p2;
int i,error=1,result=0,top=-1;
struct nameidata n[MAX_LAYERS];
if ((translucent_flags & no_translucency) || !match_uids()) return 0;
if ((translucent_flags & do_downcase)) for (i=strlen(fname)-1; i>=0; --i)
if (fname[i]>='A' && fname[i]<='Z') fname[i]|=32;
if (t == NULL) {
for (i=0; i<REDIRS; ++i) {
if (is_valid(&redirs[i])) {
t = &redirs[i];
redirect_path_init(fname,rflags,n,t);
top = redirect_path_walk(fname,&p2,n,t);
if (top>0) break;
}
}
} else {
redirect_path_init(fname,rflags,n,t);
top = redirect_path_walk(fname,&p2,n,t);
}
error=top<0;
if (error) goto out_release;
if(top==MAX_LAYERS) { // special merge-dir handling
top=translucent_merge_init(MAX_LAYERS, n);
if(top<0) return top;
if(top>=MAX_LAYERS) return (top+1-MAX_LAYERS)<<4;
// else continue as usual with the given layer
}
p = d_path(n[top].dentry, n[top].mnt, fname, REDIR_BUFSIZE);
memmove(fname,p,strlen(p)+1);
result=1;
for(i=1; i<t->layers; ++i) if(is_subdir(n[top].dentry, t->n[i].dentry)) result=2;
// if(result==2) printk(KERN_DEBUG "o: %i %i %s - %s\n",error,l,p,p2);
if(translucent_is_whiteout(&n[top]) && top>0) {
if(rflags&LOOKUP_CREATES) result|=4;
else result=-ENOENT;
//printk(KERN_INFO "translucency: deletion of %s detected\n",fname);
}
out_release:
if (!error) path_release(&n[top]);
return result;
}
static void cleanup_translucent(struct translucent *t)
{
if (is_valid(t)) {
path_release(&t->n[0]);
path_release(&t->n[1]);
t->valid = 0;
memset(t->b, 0, sizeof(t->b));
MOD_DEC_USE_COUNT; --translucent_cnt;
}
}
static int init_translucent(struct translucent *t)
{
char buf[REDIR_BUFSIZE], *p=buf,*endp=buf, del=0, delsize=1,
delimiter[sizeof(translucent_delimiter)];
int error, i,n=0,l=strlen(p)-1;
if(p[l]=='\n') p[l]=0; // strip LF
if (t->b[0] == 0) {
printk(KERN_INFO SYSLOGID ": mapping %d removed\n", (int)t->index);
return 0;
}
strncpy(buf, t->b, sizeof(buf));
strcpy(delimiter, translucent_delimiter);
if(!delimiter[0]) del=*(p++); // for binfmt_misc syntax
else delsize=strlen(delimiter);
while(endp && *p) {
if(delimiter[0]) endp=strstr(p,delimiter);
else endp=strchr(p,del);
if(endp) {
*endp=0;
}
if(*p) {
// initialization of layer n
if(n>=MAX_LAYERS) {
printk(KERN_ERR SYSLOGID ": error MAX_LAYERS=%i\n",MAX_LAYERS);
for(i=0; i<n; ++i) path_release(&t->n[i]);
return -EINVAL;
}
path_init(p, dflags, &t->n[n]);
error = path_walk(p, &t->n[n]);
if(!have_inode(&t->n[n])) { error=-1; path_release(&t->n[n]); }
if (error) {
for(i=0; i<n; ++i) path_release(&t->n[i]);
printk(KERN_ERR SYSLOGID ": %s not found\n", p);
return -ENOENT;
}
++n;
}
p=endp+delsize;
}
t->layers=n;
printk(KERN_INFO SYSLOGID ": mapping %d established ", t->index);
for(i=0; i<t->layers; ++i) {
p=namei_to_path(&t->n[i],t->b);
printk("%s%s",p,i==t->layers-1?"\n":" -> ");
}
t->valid = valid_translucency;
MOD_INC_USE_COUNT; ++translucent_cnt;
return 0;
}
static int redir_handler(ctl_table *table, int write, struct file *filp, void *buffer, size_t *lenp)
{
int error=0;
char backup[REDIR_BUFSIZE+1];
int num = table->ctl_name - CTL_ENTRY_BASE;
strncpy(backup, table->data, REDIR_BUFSIZE);
error = proc_dostring(table,write,filp,buffer,lenp);
if (write && !error) {
cleanup_translucent(&redirs[num]);
error = init_translucent(&redirs[num]);
if (error) {
printk(KERN_ERR SYSLOGID ": could not setup %s\n",(char *)table->data);
strncpy(table->data, backup, REDIR_BUFSIZE);
error = init_translucent(&redirs[num]);
}
}
return error;
}
static int proc_doint_ro(ctl_table *table, int write, struct file *filp,
void *buffer, size_t *lenp)
{
int *i;
char buf[1024];
size_t left, len;
if (!table->data || !table->maxlen || !*lenp || (filp->f_pos && !write)) {
*lenp = 0;
return 0;
}
if (write) return 0;
i = (int *) table->data;
left = *lenp;
sprintf(buf, "%d\n", (*i));
len = strlen(buf);
if (copy_to_user(buffer, buf, len))
return -EFAULT;
left -= len;
buffer += len;
*lenp -= left;
filp->f_pos += *lenp;
return 0;
}
struct ctl_table redirection_dir_table[REDIRS+CTL_TABLE_STATIC] = {
{CTL_TABLE_BASE+1, "uid", &translucent_uid, sizeof(translucent_uid), 0644, NULL, &proc_dointvec, NULL, NULL, NULL, NULL},
{CTL_TABLE_BASE+2, "gid", &translucent_gid, sizeof(translucent_gid), 0644, NULL, &proc_dointvec, NULL, NULL, NULL, NULL},
{CTL_TABLE_BASE+3, "flags", &translucent_flags, sizeof(translucent_flags), 0644, NULL, &proc_dointvec, NULL, NULL, NULL, NULL},
{CTL_TABLE_BASE+6, "fs", &translucent_fs, sizeof(translucent_fs), 0644, NULL, &proc_dointvec, NULL, NULL, NULL, NULL},
{CTL_TABLE_BASE+4, "used", &translucent_cnt, sizeof(translucent_cnt), 0444, NULL, &proc_doint_ro, NULL, NULL, NULL, NULL},
{CTL_TABLE_BASE+5, "delimiter", &translucent_delimiter, sizeof(translucent_flags), 0644, NULL, &proc_dostring, NULL, NULL, NULL, NULL},
};
struct ctl_table_header *redirection_table_header;
struct ctl_table redirection_table[] = {
{CTL_TABLE_BASE, "translucency", NULL, 0, 0555, redirection_dir_table, NULL, NULL, NULL, NULL, NULL},
{0}
};
// this *5 means four digits per entry, allowing at least REDIRS==9999
char redirection_dir_table_name_buffer[REDIRS*5];
int __init translucent_init_module(void)
{
int i;
char *buffer_allocated=redirection_dir_table_name_buffer;
memset(&redirs, 0, sizeof(redirs));
for (i=0; i<REDIRS; ++i) {
struct ctl_table new={CTL_ENTRY_BASE+i,buffer_allocated,&redirs[i].b,REDIR_BUFSIZE-1,0644,NULL,&redir_handler,NULL,NULL,NULL,NULL};
sprintf(buffer_allocated,"%d",i);
buffer_allocated+=5;
redirection_dir_table[CTL_TABLE_STATIC+i-1]=new;
redirs[i].index=i;
}
//assert(redirection_dir_table[REDIRS+CTL_TABLE_STATIC-1]=={0})
init_redir_calltable();
redirection_table_header = register_sysctl_table(redirection_table, 0);
return 0;
}
void __exit translucent_cleanup_module(void)
{
restore_redir_calltable();
unregister_sysctl_table(redirection_table_header);
}
MODULE_AUTHOR("See http://sourceforge.net/projects/translucency/");
MODULE_DESCRIPTION("translucency/redirection");
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif
module_init(translucent_init_module);
module_exit(translucent_cleanup_module);
|