-
Notifications
You must be signed in to change notification settings - Fork 22
/
libfakeroot.c
2423 lines (2042 loc) · 53.9 KB
/
libfakeroot.c
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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright Ⓒ 1997, 1998, 1999, 2000, 2001 joost witteveen
Copyright Ⓒ 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Clint Adams
Copyright Ⓒ 2012 Mikhail Gusarov
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
/* #define _POSIX_C_SOURCE 199309L whatever that may mean...*/
/* #define _BSD_SOURCE I use strdup, S_IFDIR, etc */
/* Roderich Schupp writes (bug #79100):
/usr/include/dlfcn.h from libc6 2.2-5 defines RTLD_NEXT only
when compiled with _GNU_SOURCE defined. Hence libfakeroot.c doesn't pick
it
up and does a dlopen("/lib/libc.so.6",...) in get_libc().
This works most of the time, but explodes if you have an arch-optimized
libc installed: the program now has two versions of libc.so
(/lib/libc.so.6 and, say, /lib/i586/libc.so.6) mapped. Again for
some programs you might get away with this, but running bash under
fakeroot
always bombs. Simple fix:
*/
#define _GNU_SOURCE
#define FAKEROOT_LIBFAKEROOT
#ifdef __APPLE__
/*
In this file, we want 'struct stat' to have a 32-bit 'ino_t'.
We use 'struct stat64' when we need a 64-bit 'ino_t'.
*/
#define _DARWIN_NO_64_BIT_INODE
/* The helper _unix2003 version of this file calls a few functions in this file
that are marked with static_nonapple so that needs to become private instead
*/
#define static_nonapple __attribute__((visibility("hidden")))
#ifndef __LP64__
/*
This file is for 32-bit symbols which do not have the "$UNIX2003" version.
*/
#define _NONSTD_SOURCE
#endif
#else /* !__APPLE__ */
/* static_nonapple needs to become static in this case */
#define static_nonapple static
#endif /* !__APPLE__ */
#include "config.h"
#include "communicate.h"
#ifdef __APPLE__
/* The *xattr functions are currently disabled on __APPLE__ since the prototypes
are all different from the Linux versions and there is, as of yet, no
STUPID_APPLE_HACK (or similar) to deal with the differences.
Note that __APPLE__ does not have the l*xattr variants or capset so those
will already be undefined.
*/
#undef HAVE_LISTXATTR
#undef HAVE_FLISTXATTR
#undef HAVE_GETXATTR
#undef HAVE_FGETXATTR
#undef HAVE_SETXATTR
#undef HAVE_FSETXATTR
#undef HAVE_REMOVEXATTR
#undef HAVE_FREMOVEXATTR
#endif /* __APPLE__ */
#ifdef STUPID_ALPHA_HACK
#define SEND_STAT(a,b,c) send_stat(a,b,c)
#define SEND_STAT64(a,b,c) send_stat64(a,b,c)
#define SEND_GET_STAT(a,b) send_get_stat(a,b)
#define SEND_GET_STAT64(a,b) send_get_stat64(a,b)
#define SEND_GET_XATTR64(a,b,c) send_get_xattr64(a,b,c)
#else
#define SEND_STAT(a,b,c) send_stat(a,b)
#define SEND_STAT64(a,b,c) send_stat64(a,b)
#define SEND_GET_STAT(a,b) send_get_stat(a)
#define SEND_GET_STAT64(a,b) send_get_stat64(a)
#define SEND_GET_XATTR64(a,b,c) send_get_xattr64(a,b)
#endif
/*
These INT_* (which stands for internal) macros should always be used when
the fakeroot library owns the storage of the stat variable.
*/
#ifdef STAT64_SUPPORT
#define INT_STRUCT_STAT struct stat64
#define INT_NEXT_STAT(a,b) NEXT_STAT64(_STAT_VER,a,b)
#define INT_NEXT_LSTAT(a,b) NEXT_LSTAT64(_STAT_VER,a,b)
#define INT_NEXT_FSTAT(a,b) NEXT_FSTAT64(_STAT_VER,a,b)
#define INT_NEXT_FSTATAT(a,b,c,d) NEXT_FSTATAT64(_STAT_VER,a,b,c,d)
#define INT_SEND_STAT(a,b) SEND_STAT64(a,b,_STAT_VER)
#define INT_SEND_GET_XATTR(a,b) SEND_GET_XATTR64(a,b,_STAT_VER)
#else
#define INT_STRUCT_STAT struct stat
#define INT_NEXT_STAT(a,b) NEXT_STAT(_STAT_VER,a,b)
#define INT_NEXT_LSTAT(a,b) NEXT_LSTAT(_STAT_VER,a,b)
#define INT_NEXT_FSTAT(a,b) NEXT_FSTAT(_STAT_VER,a,b)
#define INT_NEXT_FSTATAT(a,b,c,d) NEXT_FSTATAT(_STAT_VER,a,b,c,d)
#define INT_SEND_STAT(a,b) SEND_STAT(a,b,_STAT_VER)
#define INT_SEND_GET_XATTR(a,b) SEND_GET_XATTR(a,b,_STAT_VER)
#endif
#include <stdlib.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <fcntl.h>
#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#include <dlfcn.h>
#include <unistd.h>
#include <dirent.h>
#include <errno.h>
#include <sys/types.h>
#ifdef HAVE_SYS_ACL_H
#include <sys/acl.h>
#endif /* HAVE_SYS_ACL_H */
#ifdef HAVE_SYS_CAPABILITY_H
#include <sys/capability.h>
#endif
#if HAVE_FTS_H
#include <fts.h>
#endif /* HAVE_FTS_H */
#ifdef __sun
#include <sys/systeminfo.h>
#endif
#ifdef __APPLE__
#include <paths.h>
#include <sys/stat.h>
#include <crt_externs.h>
#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
#include <spawn.h>
#endif
#ifndef va_copy
#define va_copy(dest,src) ((dest)=(src))
#endif
#endif /* __APPLE__ */
#if !HAVE_DECL_SETENV
extern int setenv (const char *name, const char *value, int replace);
#endif
#if !HAVE_DECL_UNSETENV
extern int unsetenv (const char *name);
#endif
/*
Where are those shared libraries?
If I knew of a configure/libtool way to find that out, I'd use it. Or
any other way other than the method I'm using below. Does anybody know
how I can get that location? (BTW, symply linking a programme, and running
`ldd' on it isn't the option, as Digital Unix doesn't have ldd)
*/
/*
Note that LIBCPATH isn't actually used on Linux or Solaris, as RTLD_NEXT
is defined and we use that to get the `next_*' functions
Linux:
*/
/* OSF1 :*/
/*#define LIBCPATH "/usr/shlib/libc.so"*/
#undef __xstat
#undef __fxstat
#undef __lxstat
#undef __xstat64
#undef __fxstat64
#undef __lxstat64
#undef _FILE_OFFSET_BITS
/*
// next_wrap_st:
// this structure is used in next_wrap, which is defined in
// wrapstruct.h, included below
*/
struct next_wrap_st{
void **doit;
char *name;
};
void *get_libc(){
#ifndef RTLD_NEXT
void *lib=0;
if(!lib){
lib= dlopen(LIBCPATH,RTLD_LAZY);
}
if (NULL==lib) {
fprintf(stderr, "Couldn't find libc at: %s\n", LIBCPATH);
abort();
}
return lib;
#else
return RTLD_NEXT;
#endif
}
void load_library_symbols(void);
int fakeroot_disabled = 0;
#ifdef LIBFAKEROOT_DEBUGGING
int fakeroot_debug = 0;
#endif /* LIBFAKEROOT_DEBUGGING */
#ifdef __APPLE__
#include "patchattr.h"
#endif
#include "wrapped.h"
#include "wraptmpf.h"
#include "wrapdef.h"
#include "wrapstruct.h"
void load_library_symbols(void){
/* this function loads all original functions from the C library.
This function is only called once.
I ran into problems when each function individually
loaded it's original counterpart, as RTLD_NEXT seems to have
a different meaning in files with different names than libtricks.c
(I.E, dlsym(RTLD_NEXT, ...) called in vsearch.c returned funtions
defined in libtricks */
/* The calling of this function itself is somewhat tricky:
the awk script wrapawk generates several .h files. In wraptmpf.h
there are temporary definitions for tmp_*, that do the call
to this function. The other generated .h files do even more tricky
things :) */
int i;
const char *msg;
#ifdef LIBFAKEROOT_DEBUGGING
if (getenv("FAKEROOT_DEBUG")) {
fakeroot_debug=1;
}
if (fakeroot_debug) {
fprintf(stderr, "load_library_symbols\n");
}
#endif /* LIBFAKEROOT_DEBUGGING */
for(i=0; next_wrap[i].doit; i++){
/* clear dlerror() just in case dlsym() legitimately returns NULL */
msg = dlerror();
*(next_wrap[i].doit)=dlsym(get_libc(), next_wrap[i].name);
if ( (msg = dlerror()) != NULL){
fprintf (stderr, "dlsym(%s): %s\n", next_wrap[i].name, msg);
/* abort ();*/
}
}
}
/*
* Fake implementations for the setuid family of functions.
* The fake IDs are inherited by child processes via environment variables.
*
* Issues:
* o Privileges are not checked, which results in incorrect behaviour.
* Example: process changes its (real, effective and saved) uid to 1000
* and then tries to regain root privileges. This should normally result
* in an EPERM, but our implementation doesn't care...
* o If one of the setenv calls fails, the state may get corrupted.
* o Not thread-safe.
*/
/* Generic set/get ID functions */
static int env_get_id(const char *key) {
char *str = getenv(key);
if (str)
return atoi(str);
return 0;
}
static int env_set_id(const char *key, int id) {
if (id == 0) {
unsetenv(key);
return 0;
} else {
char str[12];
snprintf(str, sizeof (str), "%d", id);
return setenv(key, str, 1);
}
}
static void read_id(unsigned int *id, const char *key) {
if (*id == (unsigned int)-1)
*id = env_get_id(key);
}
static int write_id(const char *key, int id) {
if (env_get_id(key) != id)
return env_set_id(key, id);
return 0;
}
/* Fake ID storage */
static uid_t faked_real_uid = (uid_t)-1;
static gid_t faked_real_gid = (gid_t)-1;
static uid_t faked_effective_uid = (uid_t)-1;
static gid_t faked_effective_gid = (gid_t)-1;
static uid_t faked_saved_uid = (uid_t)-1;
static gid_t faked_saved_gid = (gid_t)-1;
static uid_t faked_fs_uid = (uid_t)-1;
static gid_t faked_fs_gid = (gid_t)-1;
/* Read user ID */
static void read_real_uid() {
read_id(&faked_real_uid, FAKEROOTUID_ENV);
}
static void read_effective_uid() {
read_id(&faked_effective_uid, FAKEROOTEUID_ENV);
}
static void read_saved_uid() {
read_id(&faked_saved_uid, FAKEROOTSUID_ENV);
}
static void read_fs_uid() {
read_id(&faked_fs_uid, FAKEROOTFUID_ENV);
}
static void read_uids() {
read_real_uid();
read_effective_uid();
read_saved_uid();
read_fs_uid();
}
/* Read group ID */
static void read_real_gid() {
read_id(&faked_real_gid, FAKEROOTGID_ENV);
}
static void read_effective_gid() {
read_id(&faked_effective_gid, FAKEROOTEGID_ENV);
}
static void read_saved_gid() {
read_id(&faked_saved_gid, FAKEROOTSGID_ENV);
}
static void read_fs_gid() {
read_id(&faked_fs_gid, FAKEROOTFGID_ENV);
}
static void read_gids() {
read_real_gid();
read_effective_gid();
read_saved_gid();
read_fs_gid();
}
/* Write user ID */
static int write_real_uid() {
return write_id(FAKEROOTUID_ENV, faked_real_uid);
}
static int write_effective_uid() {
return write_id(FAKEROOTEUID_ENV, faked_effective_uid);
}
static int write_saved_uid() {
return write_id(FAKEROOTSUID_ENV, faked_saved_uid);
}
static int write_fs_uid() {
return write_id(FAKEROOTFUID_ENV, faked_fs_uid);
}
static int write_uids() {
if (write_real_uid() < 0)
return -1;
if (write_effective_uid() < 0)
return -1;
if (write_saved_uid() < 0)
return -1;
if (write_fs_uid() < 0)
return -1;
return 0;
}
/* Write group ID */
static int write_real_gid() {
return write_id(FAKEROOTGID_ENV, faked_real_gid);
}
static int write_effective_gid() {
return write_id(FAKEROOTEGID_ENV, faked_effective_gid);
}
static int write_saved_gid() {
return write_id(FAKEROOTSGID_ENV, faked_saved_gid);
}
static int write_fs_gid() {
return write_id(FAKEROOTFGID_ENV, faked_fs_gid);
}
static int write_gids() {
if (write_real_gid() < 0)
return -1;
if (write_effective_gid() < 0)
return -1;
if (write_saved_gid() < 0)
return -1;
if (write_fs_gid() < 0)
return -1;
return 0;
}
/* Faked get functions */
static uid_t get_faked_uid() {
read_real_uid();
return faked_real_uid;
}
static gid_t get_faked_gid() {
read_real_gid();
return faked_real_gid;
}
static uid_t get_faked_euid() {
read_effective_uid();
return faked_effective_uid;
}
static gid_t get_faked_egid() {
read_effective_gid();
return faked_effective_gid;
}
static uid_t get_faked_suid() {
read_saved_uid();
return faked_saved_uid;
}
static gid_t get_faked_sgid() {
read_saved_gid();
return faked_saved_gid;
}
static uid_t get_faked_fsuid() {
read_fs_uid();
return faked_fs_uid;
}
static gid_t get_faked_fsgid() {
read_fs_gid();
return faked_fs_gid;
}
/* Faked set functions */
static int set_faked_uid(uid_t uid) {
read_uids();
if (faked_effective_uid == 0) {
faked_real_uid = uid;
faked_effective_uid = uid;
faked_saved_uid = uid;
} else {
faked_effective_uid = uid;
}
faked_fs_uid = uid;
return write_uids();
}
static int set_faked_gid(gid_t gid) {
read_gids();
if (faked_effective_gid == 0) {
faked_real_gid = gid;
faked_effective_gid = gid;
faked_saved_gid = gid;
} else {
faked_effective_gid = gid;
}
faked_fs_gid = gid;
return write_gids();
}
static int set_faked_euid(uid_t euid) {
read_effective_uid();
faked_effective_uid = euid;
read_fs_uid();
faked_fs_uid = euid;
if (write_effective_uid() < 0)
return -1;
if (write_fs_uid() < 0)
return -1;
return 0;
}
static int set_faked_egid(gid_t egid) {
read_effective_gid();
faked_effective_gid = egid;
read_fs_gid();
faked_fs_gid = egid;
if (write_effective_gid() < 0)
return -1;
if (write_fs_gid() < 0)
return -1;
return 0;
}
static_nonapple int set_faked_reuid(uid_t ruid, uid_t euid) {
read_uids();
if (ruid != (uid_t)-1 || euid != (uid_t)-1)
faked_saved_uid = faked_effective_uid;
if (ruid != (uid_t)-1)
faked_real_uid = ruid;
if (euid != (uid_t)-1)
faked_effective_uid = euid;
faked_fs_uid = faked_effective_uid;
return write_uids();
}
static_nonapple int set_faked_regid(gid_t rgid, gid_t egid) {
read_gids();
if (rgid != (gid_t)-1 || egid != (gid_t)-1)
faked_saved_gid = faked_effective_gid;
if (rgid != (gid_t)-1)
faked_real_gid = rgid;
if (egid != (gid_t)-1)
faked_effective_gid = egid;
faked_fs_gid = faked_effective_gid;
return write_gids();
}
#ifdef HAVE_SETRESUID
static int set_faked_resuid(uid_t ruid, uid_t euid, uid_t suid) {
read_uids();
if (ruid != (uid_t)-1)
faked_real_uid = ruid;
if (euid != (uid_t)-1)
faked_effective_uid = euid;
if (suid != (uid_t)-1)
faked_saved_uid = suid;
faked_fs_uid = faked_effective_uid;
return write_uids();
}
#endif
#ifdef HAVE_SETRESGID
static int set_faked_resgid(gid_t rgid, gid_t egid, gid_t sgid) {
read_gids();
if (rgid != (gid_t)-1)
faked_real_gid = rgid;
if (egid != (gid_t)-1)
faked_effective_gid = egid;
if (sgid != (gid_t)-1)
faked_saved_gid = sgid;
faked_fs_gid = faked_effective_gid;
return write_gids();
}
#endif
#ifdef HAVE_SETFSUID
static uid_t set_faked_fsuid(uid_t fsuid) {
uid_t prev_fsuid = get_faked_fsuid();
faked_fs_uid = fsuid;
return prev_fsuid;
}
#endif
#ifdef HAVE_SETFSGID
static gid_t set_faked_fsgid(gid_t fsgid) {
gid_t prev_fsgid = get_faked_fsgid();
faked_fs_gid = fsgid;
return prev_fsgid;
}
#endif
static_nonapple int dont_try_chown(){
static int inited=0;
static int donttry;
if(!inited){
donttry=(env_var_set(FAKEROOTDONTTRYCHOWN_ENV)!=NULL);
inited=1;
}
return donttry;
}
/* The wrapped functions */
int WRAP_LSTAT LSTAT_ARG(int ver,
const char *file_name,
struct stat *statbuf){
int r;
#ifdef LIBFAKEROOT_DEBUGGING
if (fakeroot_debug) {
fprintf(stderr, "lstat file_name %s\n", file_name);
}
#endif /* LIBFAKEROOT_DEBUGGING */
r=NEXT_LSTAT(ver, file_name, statbuf);
if(r)
return -1;
SEND_GET_STAT(statbuf, ver);
return 0;
}
int WRAP_STAT STAT_ARG(int ver,
const char *file_name,
struct stat *st){
int r;
#ifdef LIBFAKEROOT_DEBUGGING
if (fakeroot_debug) {
fprintf(stderr, "stat file_name %s\n", file_name);
}
#endif /* LIBFAKEROOT_DEBUGGING */
r=NEXT_STAT(ver, file_name, st);
if(r)
return -1;
SEND_GET_STAT(st,ver);
return 0;
}
int WRAP_FSTAT FSTAT_ARG(int ver,
int fd,
struct stat *st){
int r;
#ifdef LIBFAKEROOT_DEBUGGING
if (fakeroot_debug) {
fprintf(stderr, "fstat fd %d\n", fd);
}
#endif /* LIBFAKEROOT_DEBUGGING */
r=NEXT_FSTAT(ver, fd, st);
if(r)
return -1;
SEND_GET_STAT(st,ver);
return 0;
}
#ifdef HAVE_FSTATAT
int WRAP_FSTATAT FSTATAT_ARG(int ver,
int dir_fd,
const char *path,
struct stat *st,
int flags){
int r;
r=NEXT_FSTATAT(ver, dir_fd, path, st, flags);
if(r)
return -1;
SEND_GET_STAT(st,ver);
return 0;
}
#endif /* HAVE_FSTATAT */
#ifdef STAT64_SUPPORT
int WRAP_LSTAT64 LSTAT64_ARG (int ver,
const char *file_name,
struct stat64 *st){
int r;
#ifdef LIBFAKEROOT_DEBUGGING
if (fakeroot_debug) {
fprintf(stderr, "lstat64 file_name %s\n", file_name);
}
#endif /* LIBFAKEROOT_DEBUGGING */
r=NEXT_LSTAT64(ver, file_name, st);
if(r)
return -1;
SEND_GET_STAT64(st,ver);
return 0;
}
int WRAP_STAT64 STAT64_ARG(int ver,
const char *file_name,
struct stat64 *st){
int r;
#ifdef LIBFAKEROOT_DEBUGGING
if (fakeroot_debug) {
fprintf(stderr, "stat64 file_name %s\n", file_name);
}
#endif /* LIBFAKEROOT_DEBUGGING */
r=NEXT_STAT64(ver,file_name,st);
if(r)
return -1;
SEND_GET_STAT64(st,ver);
return 0;
}
int WRAP_FSTAT64 FSTAT64_ARG(int ver,
int fd,
struct stat64 *st){
int r;
#ifdef LIBFAKEROOT_DEBUGGING
if (fakeroot_debug) {
fprintf(stderr, "fstat64 fd %d\n", fd);
}
#endif /* LIBFAKEROOT_DEBUGGING */
r=NEXT_FSTAT64(ver, fd, st);
if(r)
return -1;
SEND_GET_STAT64(st,ver);
return 0;
}
#ifdef HAVE_FSTATAT
int WRAP_FSTATAT64 FSTATAT64_ARG(int ver,
int dir_fd,
const char *path,
struct stat64 *st,
int flags){
int r;
r=NEXT_FSTATAT64(ver, dir_fd, path, st, flags);
if(r)
return -1;
SEND_GET_STAT64(st,ver);
return 0;
}
#endif /* HAVE_FSTATAT */
#endif /* STAT64_SUPPORT */
/*************************************************************/
/*
Wrapped functions general info:
In general, the structure is as follows:
- Then, if the function does things that (possibly) fail by
other users than root, allow for `fake' root privileges.
Do this by obtaining the inode the function works on, and then
informing faked (the deamon that remembers all `fake' file
permissions e.d.) about the intentions of the user.
Faked maintains a list of inodes and their respective
`fake' ownerships/filemodes.
- Or, if the function requests information that we should
fake, again get the inode of the file, and ask faked about the
ownership/filemode data it maintains for that inode.
*/
/*************************************************************/
/* chown, lchown, fchown, chmod, fchmod, mknod functions
quite general. See the `Wrapped functions general info:' above
for more info.
*/
int chown(const char *path, uid_t owner, gid_t group){
INT_STRUCT_STAT st;
int r=0;
#ifdef LIBFAKEROOT_DEBUGGING
if (fakeroot_debug) {
fprintf(stderr, "chown path %s owner %d group %d\n", path, owner, group);
}
#endif /* LIBFAKEROOT_DEBUGGING */
#ifdef LCHOWN_SUPPORT
/*chown(sym-link) works on the target of the symlink if lchown is
present and enabled.*/
r=INT_NEXT_STAT(path, &st);
#else
/*chown(sym-link) works on the symlink itself, use lstat: */
r=INT_NEXT_LSTAT(path, &st);
#endif
if(r)
return r;
st.st_uid=owner;
st.st_gid=group;
INT_SEND_STAT(&st,chown_func);
if(!dont_try_chown())
r=next_lchown(path,owner,group);
else
r=0;
if(r&&(errno==EPERM))
r=0;
return r;
}
#ifdef LCHOWN_SUPPORT
int lchown(const char *path, uid_t owner, gid_t group){
INT_STRUCT_STAT st;
int r=0;
#ifdef LIBFAKEROOT_DEBUGGING
if (fakeroot_debug) {
fprintf(stderr, "lchown path %s owner %d group %d\n", path, owner, group);
}
#endif /* LIBFAKEROOT_DEBUGGING */
r=INT_NEXT_LSTAT(path, &st);
if(r)
return r;
st.st_uid=owner;
st.st_gid=group;
INT_SEND_STAT(&st,chown_func);
if(!dont_try_chown())
r=next_lchown(path,owner,group);
else
r=0;
if(r&&(errno==EPERM))
r=0;
return r;
}
#endif
int fchown(int fd, uid_t owner, gid_t group){
INT_STRUCT_STAT st;
int r;
r=INT_NEXT_FSTAT(fd, &st);
if(r)
return r;
st.st_uid=owner;
st.st_gid=group;
INT_SEND_STAT(&st, chown_func);
if(!dont_try_chown())
r=next_fchown(fd,owner,group);
else
r=0;
if(r&&(errno==EPERM))
r=0;
return r;
}
#ifdef HAVE_FSTATAT
#ifdef HAVE_FCHOWNAT
int fchownat(int dir_fd, const char *path, uid_t owner, gid_t group, int flags) {
int r;
/* If AT_SYMLINK_NOFOLLOW is set in the fchownat call it should
be when we stat it. */
INT_STRUCT_STAT st;
r=INT_NEXT_FSTATAT(dir_fd, path, &st, (flags & AT_SYMLINK_NOFOLLOW));
if(r)
return(r);
st.st_uid=owner;
st.st_gid=group;
INT_SEND_STAT(&st,chown_func);
if(!dont_try_chown())
r=next_fchownat(dir_fd,path,owner,group,flags);
else
r=0;
if(r&&(errno==EPERM))
r=0;
return r;
}
#endif /* HAVE_FCHOWNAT */
#endif /* HAVE_FSTATAT */
int chmod(const char *path, mode_t mode){
INT_STRUCT_STAT st;
int r;
#ifdef LIBFAKEROOT_DEBUGGING
if (fakeroot_debug) {
fprintf(stderr, "chmod path %s\n", path);
}
#endif /* LIBFAKEROOT_DEBUGGING */
r=INT_NEXT_STAT(path, &st);
if(r)
return r;
st.st_mode=(mode&ALLPERMS)|(st.st_mode&~ALLPERMS);
INT_SEND_STAT(&st, chmod_func);
/* if a file is unwritable, then root can still write to it
(no matter who owns the file). If we are fakeroot, the only
way to fake this is to always make the file writable, readable
etc for the real user (who started fakeroot). Also holds for
the exec bit of directories.
Yes, packages requering that are broken. But we have lintian
to get rid of broken packages, not fakeroot.
*/
mode |= 0600;
if(S_ISDIR(st.st_mode))
mode |= 0100;
r=next_chmod(path, mode);
if(r&&(errno==EPERM))
r=0;
#ifdef EFTYPE /* available under FreeBSD kernel */
if(r&&(errno==EFTYPE))
r=0;
#endif
return r;
}
#ifdef HAVE_LCHMOD
int lchmod(const char *path, mode_t mode){
INT_STRUCT_STAT st;
int r;
#ifdef LIBFAKEROOT_DEBUGGING
if (fakeroot_debug) {
fprintf(stderr, "lchmod path %s\n", path);
}
#endif /* LIBFAKEROOT_DEBUGGING */
r=INT_NEXT_LSTAT(path, &st);
if(r)
return r;
st.st_mode=(mode&ALLPERMS)|(st.st_mode&~ALLPERMS);
INT_SEND_STAT(&st, chmod_func);
/* see chmod() for comment */
mode |= 0600;
if(S_ISDIR(st.st_mode))
mode |= 0100;
r=next_lchmod(path, mode);
if(r&&(errno==EPERM))
r=0;
#ifdef EFTYPE /* available under FreeBSD kernel */
if(r&&(errno==EFTYPE))
r=0;
#endif
return r;
}
#endif
int fchmod(int fd, mode_t mode){
int r;
INT_STRUCT_STAT st;
#ifdef LIBFAKEROOT_DEBUGGING
if (fakeroot_debug) {
fprintf(stderr, "fchmod fd %d\n", fd);
}
#endif /* LIBFAKEROOT_DEBUGGING */
r=INT_NEXT_FSTAT(fd, &st);
if(r)
return(r);
st.st_mode=(mode&ALLPERMS)|(st.st_mode&~ALLPERMS);
INT_SEND_STAT(&st,chmod_func);
/* see chmod() for comment */
mode |= 0600;
if(S_ISDIR(st.st_mode))
mode |= 0100;