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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
|
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2022 Jason King
#
PROG = find_elf
MAN1ONBLDFILES = find_elf.1onbld
#
# Since libcustr is private, we just build and link in the code directly
# into the binary. If more build utilities require it in the future, we
# can transition to building a tools version of the library and link
# against it.
CUSTRDIR = $(SRC)/lib/libcustr/common
OBJS = find_elf.o custr.o
include $(SRC)/tools/Makefile.tools
include $(SRC)/cmd/Makefile.ctf
$(ROOTONBLDMAN1ONBLDFILES) : FILEMODE= 644
LDLIBS = -lelf -lavl
NATIVE_LIBS += libelf.so libc.so libavl.so
CPPFLAGS += -I$(CUSTRDIR)
LDFLAGS = \
-L$(ROOTONBLDLIBMACH) \
'-R$$ORIGIN/../../lib/$(MACH)' \
$(BDIRECT) $(ZLAZYLOAD)
CSTD = $(CSTD_GNU99)
.KEEP_STATE:
.PARALLEL: $(OBJS)
all: $(PROG)
install: all .WAIT $(ROOTONBLDMACHPROG) $(ROOTONBLDDATAFILES) \
$(ROOTONBLDMAN1ONBLDFILES)
clean:
$(RM) -f $(OBJS)
$(PROG): $(OBJS)
$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
$(POST_PROCESS)
%.o: %.c
$(COMPILE.c) -o $@ $<
$(POST_PROCESS_O)
%.o: $(CUSTRDIR)/%.c
$(COMPILE.c) -o $@ $<
$(POST_PROCESS_O)
include $(SRC)/tools/Makefile.targ
.\" Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
.\"
.\" CDDL HEADER START
.\"
.\" The contents of this file are subject to the terms of the
.\" Common Development and Distribution License (the "License").
.\" You may not use this file except in compliance with the License.
.\"
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
.\" or http://www.opensolaris.org/os/licensing.
.\" See the License for the specific language governing permissions
.\" and limitations under the License.
.\"
.\" When distributing Covered Code, include this CDDL HEADER in each
.\" file and include the License file at usr/src/OPENSOLARIS.LICENSE.
.\" If applicable, add the following below this CDDL HEADER, with the
.\" fields enclosed by brackets "[]" replaced with your own identifying
.\" information: Portions Copyright [yyyy] [name of copyright owner]
.\"
.\" CDDL HEADER END
.\"
.\" Copyright 2022 Jason King
.\"
.Dd September 6, 2022
.Dt FIND_ELF 1ONBLD
.Os
.Sh NAME
.Nm find_elf
.Nd Locate ELF objects
.Sh SYNOPSIS
.Nm
.Op Fl afhnrs
.Ar path
.Sh DESCRIPTION
The
.Nm
command descends a directory hierarchy and produces one line
of output on stdout for each ELF object found.
.Sh OPTIONS
The following options are supported:
.Bl -tag -width Fl
.It Fl a
Disable alias processing.
Symbolic links are treated as independent
files, each such link results in a separate
.Sy OBJECT
output line, and
.Sy ALIAS
lines are not issued.
.It Fl f
Fast Mode.
When reading directories, the file name and modes are
used to eliminate files from consideration and speed up the search:
Directories with names that start with a
.Ql \&.
character are skipped.
Executables must have the execute bit set, and
shared objects must end with a
.Ql .so
extension.
Files that do not meet these requirements are silently eliminated from
consideration without further analysis.
.It Fl h
Show usage message.
.It Fl n
Do not treat well known hard-linked binaries as special.
Certain well known binaries
.Po
currently
.Pa alias
and
.Pa isaexec
.Pc
are hard linked to many other names in a proto directory tree.
.Pp
By default,
.Nm
will use these well known names as the initial name and all other hard links
to those binaries are treated as aliases.
Disabling this behavior with the
.Fl n
option will choose the first name encountered during directory traversal as
the name, and all other hard links to the binary as aliases.
.It Fl r
Report file names as relative paths, relative to the given file or directory,
instead of fully qualified.
.It Fl s
Only report shared objects.
.El
.Sh OUTPUT
.Nm
produces a series of
.Sy PREFIX ,
.Sy OBJECT ,
and
.Sy ALIAS
lines, which collectively describe the ELF objects located.
Whitespace is used within each
line to delimit the various fields of information provided.
.Pp
If the
.Fl r
option is used to specify that file names be reported
as relative paths, a
.Sy PREFIX
line is output to provide the base path from
which the relative names should be interpreted.
There can only be one
.Sy PREFIX
line, and it is output first, before any
.Sy OBJECT
or
.Sy ALIAS
lines.
.Bd -literal -offset indent
PREFIX path
.Ed
.Pp
For each object found, an
.Sy OBJECT
line is produced to describe it:
.Bd -literal -offset indent
OBJECT [32 | 64] [DYN | EXEC | REL] [VERDEF | NOVERDEF] object-path
.Ed
.Pp
The first field provides the ELF class of the object, and will be
either 32 or 64.
The second field provides the type of object, either
a shared object
.Ql DYN ,
an executable
.Ql EXEC ,
or a relocatable object
.Ql REL .
The third field will be
.Ql VERDEF
if the object contains ELF version definitions, and
.Ql NOVERDEF
if the object is not versioned.
The final field gives the path to the object.
.Pp
Under Unix, a file can have multiple names.
In the context of ELF objects, this often happens for one of two reasons:
.Bl -bullet -offset indent
.It
Compilation symlinks, used to provide a non-versioned name for a shared object.
.It
Symlinks such as
.Ql 32
and
.Ql 64
used to provide alternative non-machine specific paths to objects.
.El
.Pp
When
.Nm
identifies an object via such an aliased name, it issues an
.Sy ALIAS
line mapping it to the main name for the object:
.Bd -literal -offset indent
ALIAS object-path alias-path
.Ed
.Pp
The
.Fl a
option alters the handling of aliased names.
When
.Fl a
is specified, each file results in a separate
.Sy OBJECT
line, as if they were
independent files rather than the same file with different names.
.Sh EXAMPLES
Assume the following hierarchy of files exist under
.Pa /usr/lib/foo :
.Bd -literal -offset indent
% /bin/ls -alRF /usr/lib/foo
/usr/lib/foo:
total 111
drwxr-xr-x 3 root root 7 Jul 16 17:35 ./
drwxr-xr-x 34 root root 42 Jul 16 17:34 ../
lrwxrwxrwx 1 root bin 1 Jul 16 17:34 32 -> ./
lrwxrwxrwx 1 root bin 5 Jul 16 17:34 64 -> amd64/
drwxr-xr-x 2 root bin 4 Jul 16 17:35 amd64/
lrwxrwxrwx 1 root bin 11 Jul 16 17:35 libfoo.so -> libfoo.so.1*
-rwxr-xr-x 1 root bin 49132 Jul 16 17:35 libfoo.so.1*
/usr/lib/foo/amd64:
total 150
drwxr-xr-x 2 root root 4 Jul 16 17:35 ./
drwxr-xr-x 3 root root 7 Jul 16 17:35 ../
lrwxrwxrwx 1 root bin 11 Jul 16 17:35 libfoo.so -> libfoo.so.1*
-rwxr-xr-x 1 root bin 72536 Jul 16 17:35 libfoo.so.1*
.Ed
.Pp
This hierarchy contains compilation symlinks
.Po
.Pa libfoo.so
.Pc
and path alias symlinks
.Po
32, 64
.Pc ,
as discussed in
.Sx OUTPUT .
.Pp
.Nm
produces the following output for the above hierarchy:
.Bd -literal -offset indent
% find_elf -r /usr/lib/foo
PREFIX /usr/lib/foo
OBJECT 64 DYN VERDEF amd64/libfoo.so.1
ALIAS amd64/libfoo.so.1 64/libfoo.so
ALIAS amd64/libfoo.so.1 64/libfoo.so.1
ALIAS amd64/libfoo.so.1 amd64/libfoo.so
OBJECT 32 DYN VERDEF libfoo.so.1
ALIAS libfoo.so.1 32/libfoo.so
ALIAS libfoo.so.1 32/libfoo.so.1
ALIAS libfoo.so.1 libfoo.so
.Ed
.Pp
Contrast this with the output when
.Fl a
is used to treat each name as an independent file:
.Bd -literal -offset indent
% find_elf -ar /usr/lib/foo
PREFIX /usr/lib/foo
OBJECT 32 DYN VERDEF 32/libfoo.so
OBJECT 32 DYN VERDEF 32/libfoo.so.1
OBJECT 64 DYN VERDEF 64/libfoo.so
OBJECT 64 DYN VERDEF 64/libfoo.so.1
OBJECT 64 DYN VERDEF amd64/libfoo.so.1
OBJECT 64 DYN VERDEF amd64/libfoo.so
OBJECT 32 DYN VERDEF libfoo.so.1
OBJECT 32 DYN VERDEF libfoo.so
.Ed
.Pp
When
.Nm
is used to process an alias for which no target object is given,
there will be no output.
For example, using
.Pa /lib/libc.so ,
which is a compilation symlink for
.Pa /lib/libc.so.1 :
.Bd -literal -offset indent
% find_elf /lib/libc.so
.Ed
.Pp
In such situations, the
.Fl a
option can be used to produce the desired output:
.Bd -literal -offset indent
% find_elf -a /lib/libc.so
OBJECT 32 DYN VERDEF /lib/libc.so
.Ed
.Sh SEE ALSO
.Xr elfdump 1 ,
.Xr ld 1 ,
.Xr ldd 1 ,
.Xr pvs 1 ,
.Xr check_rtime 1ONBLD ,
.Xr interface_check 1ONBLD ,
.Xr interface_cmp 1ONBLD
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2020 Joyent, Inc.
* Copyright 2022 Jason King
*/
#include <sys/debug.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/avl.h>
#include <sys/fcntl.h>
#include <sys/sysmacros.h>
#include <dirent.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <gelf.h>
#include <libcustr.h>
#include <libelf.h>
#include <libgen.h>
#include <limits.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
static inline bool
is_same(const struct stat *s1, const struct stat *s2)
{
if ((s1->st_ino == s2->st_ino) && (s1->st_dev == s2->st_dev))
return (true);
return (false);
}
typedef enum dir_flags {
DF_NONE = 0,
DF_IS_SELF = 1 << 0,
DF_IS_SYMLINK = 1 << 2,
} dir_flags_t;
typedef struct path {
custr_t *p_name;
size_t p_pfxidx;
} path_t;
typedef struct name {
char *n_name;
bool n_is_symlink;
} name_t;
typedef struct names {
name_t *ns_names;
uint_t ns_num;
uint_t ns_alloc;
} names_t;
typedef struct elfinfo {
int ei_class;
uint16_t ei_type;
bool ei_hasverdef;
} elfinfo_t;
typedef struct obj {
avl_node_t obj_avlid;
avl_node_t obj_avlname;
dev_t obj_dev;
ino_t obj_inode;
names_t obj_names;
elfinfo_t obj_elfinfo;
} obj_t;
static void path_init(path_t *, const char *, bool);
static size_t path_append(path_t *, const char *);
static const char *path_name(const path_t *);
static const char *path_fullpath(const path_t *);
static void path_pop(path_t *, size_t);
static bool maybe_obj(const char *, mode_t);
static bool get_elfinfo(const path_t *, int, elfinfo_t *);
static void add_name(obj_t *, const path_t *, bool);
static int cmp_id(const void *, const void *);
static int cmp_objname(const void *, const void *);
static int cmp_names(const void *, const void *);
static void process_dir(path_t *, int, const struct stat *, dir_flags_t);
static void process_file(path_t *, int, const struct stat *, bool);
static void process_arg(char *);
static void sort_names(void *, void *);
static void print_entry(void *, void *);
static void foreach_avl(avl_tree_t *, void (*)(void *, void *), void *);
static void nomem(void);
static char *xstrdup(const char *);
static void *xcalloc(size_t, size_t);
static avl_tree_t avl_byid;
static avl_tree_t avl_byname;
static const char *special_paths[] = {
"usr/bin/alias",
"usr/lib/isaexec",
};
static int rootfd = -1;
/* By default, we process aliases */
static bool do_alias = true;
/* By default, we treat certain well known names (e.g. isaexec) as special */
static bool do_special = true;
/* fast_mode, relpath, and so_only are all false by default */
static bool fast_mode;
static bool relpath;
static bool so_only;
static void __NORETURN
usage(const char *name)
{
(void) fprintf(stderr,
"Usage: %s [-afnrs] file | dir\n"
"\t[-a]\texpand symlink aliases\n"
"\t[-f]\tuse file name at mode to speed search\n"
"\t[-h]\tshow this help\n"
"\t[-n]\tdon\'t treat well known paths as special in sorting\n"
"\t[-r]\treport relative paths\n"
"\t[-s]\tonly remote shareable (ET_DYN) objects\n", name);
exit(EXIT_FAILURE);
}
int
main(int argc, char **argv)
{
int c;
if (elf_version(EV_CURRENT) == EV_NONE)
errx(EXIT_FAILURE, "elf library is out of date");
while ((c = getopt(argc, argv, "ahfnrs")) != -1) {
switch (c) {
case 'a':
do_alias = false;
break;
case 'f':
fast_mode = true;
break;
case 'n':
do_special = false;
break;
case 'r':
relpath = true;
break;
case 's':
so_only = true;
break;
case 'h':
usage(argv[0]);
case '?':
(void) fprintf(stderr, "Unknown option -%c\n", optopt);
usage(argv[0]);
}
}
if (optind == argc) {
(void) fprintf(stderr, "Missing file or dir parameter\n");
usage(argv[0]);
}
if (argv[optind][0] == '\0')
errx(EXIT_FAILURE, "Invalid file or dir value");
avl_create(&avl_byid, cmp_id, sizeof (obj_t),
offsetof(obj_t, obj_avlid));
avl_create(&avl_byname, cmp_objname, sizeof (obj_t),
offsetof(obj_t, obj_avlname));
process_arg(argv[optind]);
foreach_avl(&avl_byid, sort_names, &avl_byname);
foreach_avl(&avl_byname, print_entry, NULL);
return (EXIT_SUCCESS);
}
static void
process_arg(char *arg)
{
path_t path;
struct stat sb;
int fd;
if ((fd = open(arg, O_RDONLY)) == -1) {
err(EXIT_FAILURE, "could not open %s", arg);
}
if (fstat(fd, &sb) < 0) {
err(EXIT_FAILURE, "failed to stat %s", arg);
}
if (S_ISDIR(sb.st_mode)) {
path_init(&path, arg, relpath);
if (relpath) {
(void) printf("PREFIX %s\n", arg);
}
rootfd = fd;
/* process_dir() will close fd */
process_dir(&path, fd, &sb, DF_NONE);
return;
}
char *argcopy = xstrdup(arg);
char *dir = dirname(argcopy);
if (!S_ISREG(sb.st_mode)) {
err(EXIT_FAILURE, "not a file or directory: %s", arg);
}
#ifndef O_DIRECTORY
struct stat tsb;
if (stat(dir, &tsb) == -1) {
err(EXIT_FAILURE, "failed to stat %s", dir);
}
if (!S_ISDIR(tsb.st_mode)) {
errx(EXIT_FAILURE, "not a directory: %s", dir);
}
rootfd = open(dir, O_RDONLY);
#else
rootfd = open(dir, O_RDONLY|O_DIRECTORY);
#endif
if (rootfd < 0) {
err(EXIT_FAILURE, "%s", dir);
}
path_init(&path, dir, relpath);
if (relpath) {
(void) printf("PREFIX %s\n", dir);
}
free(argcopy);
process_file(&path, fd, &sb, DF_NONE);
}
/*
* Processing a directory has some subtleties. When we encounter a
* subdirectory that's a symlink, we want any files we encounter when
* we traverse it to be treated as aliases. We may also have a symlink that's
* a link back to ourself (e.g. 32 -> .). In this special case, we still want
* to reprocess the directory to generate alias names, but we use the
* DFLAG_SELF flag to avoid recursing forever.
*
* A limitation of this approach is that we cannot handle a loop over multiple
* levels (e.g. foo -> ../..). Nothing currently in illumos-gate creates any
* such symlinks in the proto area, so we've opted to avoid complicating
* processing further to handle scenarios that aren't realistically expected
* to occur.
*
* Note that dirfd is always closed upon return from process_dir().
*/
static void
process_dir(path_t *p, int dirfd, const struct stat *dirsb, dir_flags_t dflags)
{
DIR *d;
struct dirent *de;
d = fdopendir(dirfd);
if (d == NULL) {
warn("opendir(%s)", path_fullpath(p));
VERIFY0(close(dirfd));
return;
}
while ((de = readdir(d)) != NULL) {
struct stat sb;
int fd;
bool is_link = false;
size_t plen;
if (strcmp(de->d_name, ".") == 0 ||
strcmp(de->d_name, "..") == 0) {
continue;
}
plen = path_append(p, de->d_name);
if (fstatat(rootfd, path_name(p), &sb,
AT_SYMLINK_NOFOLLOW) < 0) {
warn("%s", path_fullpath(p));
path_pop(p, plen);
continue;
}
fd = openat(dirfd, de->d_name, O_RDONLY);
if (fd < 0) {
/*
* Symlinks in the proto area may point to a path
* that's not present (e.g. /dev/stdin -> fd/0).
* Silently skip such entries.
*/
if (errno != ENOENT || !S_ISLNK(sb.st_mode)) {
warn("%s", path_fullpath(p));
}
path_pop(p, plen);
continue;
}
if (S_ISLNK(sb.st_mode)) {
is_link = true;
if (fstat(fd, &sb) < 0) {
warn("stat %s", path_fullpath(p));
path_pop(p, plen);
continue;
}
}
if (S_ISDIR(sb.st_mode)) {
if ((dflags & DF_IS_SELF) != 0) {
VERIFY0(close(fd));
path_pop(p, plen);
continue;
}
dir_flags_t newflags = dflags;
/* The recursive process_dir() call closes fd */
if (is_link)
newflags |= DF_IS_SYMLINK;
if (is_same(&sb, dirsb))
newflags |= DF_IS_SELF;
process_dir(p, fd, &sb, newflags);
} else if (S_ISREG(sb.st_mode)) {
if (!maybe_obj(de->d_name, sb.st_mode)) {
VERIFY0(close(fd));
path_pop(p, plen);
continue;
}
if ((dflags & (DF_IS_SELF | DF_IS_SYMLINK)) != 0)
is_link = true;
/* process_file() closes fd */
process_file(p, fd, &sb, is_link);
}
path_pop(p, plen);
}
/* Closes dirfd */
VERIFY0(closedir(d));
}
/* Note that fd is always closed upon return */
static void
process_file(path_t *p, int fd, const struct stat *sb, bool is_link)
{
avl_index_t where = { 0 };
obj_t templ = {
.obj_dev = sb->st_dev,
.obj_inode = sb->st_ino,
};
obj_t *obj = avl_find(&avl_byid, &templ, &where);
elfinfo_t elfinfo = { 0 };
if (obj != NULL)
goto done;
if (!get_elfinfo(p, fd, &elfinfo)) {
VERIFY0(close(fd));
return;
}
obj = xcalloc(1, sizeof (*obj));
obj->obj_dev = sb->st_dev;
obj->obj_inode = sb->st_ino;
obj->obj_elfinfo = elfinfo;
avl_add(&avl_byid, obj);
done:
add_name(obj, p, is_link);
VERIFY0(close(fd));
}
static void
print_entry(void *a, void *arg __unused)
{
obj_t *obj = a;
const char *objname = obj->obj_names.ns_names[0].n_name;
const char *bits = "";
const char *type = "";
const char *verdef = obj->obj_elfinfo.ei_hasverdef ?
"VERDEF" : "NOVERDEF";
switch (obj->obj_elfinfo.ei_class) {
case ELFCLASS32:
bits = "32";
break;
case ELFCLASS64:
bits = "64";
break;
default:
errx(EXIT_FAILURE, "unknown elfclass value %x for %s",
obj->obj_elfinfo.ei_class, objname);
}
switch (obj->obj_elfinfo.ei_type) {
case ET_REL:
type = "REL";
break;
case ET_DYN:
type = "DYN";
break;
case ET_EXEC:
type = "EXEC";
break;
default:
errx(EXIT_FAILURE, "unexpected elf type %x for %s",
obj->obj_elfinfo.ei_type, objname);
}
names_t *names = &obj->obj_names;
VERIFY3U(names->ns_num, >, 0);
VERIFY(!names->ns_names[0].n_is_symlink);
(void) printf("OBJECT %2s %-4s %-8s %s\n", bits, type, verdef,
objname);
for (uint_t i = 1; i < names->ns_num; i++) {
if (do_alias) {
(void) printf("%-23s %s\t%s\n",
"ALIAS", objname, names->ns_names[i].n_name);
} else {
(void) printf("OBJECT %2s %-4s %-8s %s\n", bits, type,
verdef, names->ns_names[i].n_name);
}
}
}
/*
* Returns true and eip populated if name was an elf object, otherwise
* returns false.
*/
static bool
get_elfinfo(const path_t *p, int fd, elfinfo_t *eip)
{
Elf *elf = NULL;
Elf_Scn *scn = NULL;
GElf_Ehdr ehdr = { 0 };
int eval;
if ((elf = elf_begin(fd, ELF_C_READ, NULL)) == NULL)
goto fail_noend;
if ((eip->ei_class = gelf_getclass(elf)) == ELFCLASSNONE) {
VERIFY0(elf_end(elf));
return (false);
}
if (gelf_getehdr(elf, &ehdr) == NULL)
goto fail;
eip->ei_type = ehdr.e_type;
eip->ei_hasverdef = false;
while ((scn = elf_nextscn(elf, scn)) != NULL) {
Elf_Data *data = NULL;
GElf_Shdr shdr = { 0 };
if (gelf_getshdr(scn, &shdr) == NULL)
goto fail;
if (shdr.sh_type != SHT_DYNAMIC)
continue;
if ((data = elf_getdata(scn, NULL)) == NULL)
continue;
size_t nent = shdr.sh_size / shdr.sh_entsize;
for (size_t i = 0; i < nent; i++) {
GElf_Dyn dyn = { 0 };
if (gelf_getdyn(data, i, &dyn) == NULL) {
goto fail;
}
if (dyn.d_tag == DT_VERDEF) {
eip->ei_hasverdef = true;
break;
}
}
}
VERIFY0(elf_end(elf));
return (true);
fail:
VERIFY0(elf_end(elf));
fail_noend:
eval = elf_errno();
warnx("%s: %s", path_fullpath(p), elf_errmsg(eval));
return (false);
}
static bool
is_special(const char *name)
{
for (uint_t i = 0; i < ARRAY_SIZE(special_paths); i++) {
if (strcmp(special_paths[i], name) == 0)
return (true);
}
return (false);
}
static void
sort_names(void *a, void *b)
{
obj_t *obj = a;
avl_tree_t *name_avl = b;
names_t *names = &obj->obj_names;
/* We should always have at least one name */
VERIFY3U(names->ns_num, >, 0);
/* If there is only one, they get the prize and we're done */
if (names->ns_num == 1)
return;
name_t *first = NULL;
/*
* Find the first (in sorted order) pathname for this object
* that isn't a symlink.
*/
for (uint_t i = 0; i < names->ns_num; i++) {
name_t *n = &names->ns_names[i];
if (n->n_is_symlink)
continue;
if (first == NULL) {
first = n;
continue;
}
/*
* If we're treating isaexec as special, we always
* want it to be the first entry. Otherwise, pick
* the 'lowest' sorted pathname.
*/
if (do_special) {
if (is_special(n->n_name)) {
first = n;
break;
}
if (strcmp(n->n_name, first->n_name) < 0)
first = n;
}
}
/*
* If the first pathname (in sorted order) isn't the first
* name entry, we swap it into first place (while also updating
* the names AVL tree).
*/
if (first != NULL && first != &names->ns_names[0]) {
name_t tmp = names->ns_names[0];
avl_remove(name_avl, obj);
(void) memcpy(&names->ns_names[0], first, sizeof (name_t));
(void) memcpy(first, &tmp, sizeof (name_t));
avl_add(name_avl, obj);
}
/*
* The remaining names (symlinks or not) are sorted by
* their pathname.
*/
qsort(&names->ns_names[1], names->ns_num - 1, sizeof (name_t),
cmp_names);
}
/*
* We grow the names array by NAME_CHUNK entries every time we need to
* extend it.
*/
#define NAME_CHUNK 4
static name_t *
name_new(names_t *names)
{
if (names->ns_num < names->ns_alloc)
return (&names->ns_names[names->ns_num++]);
name_t *newn = NULL;
uint_t newamt = names->ns_alloc + NAME_CHUNK;
/*
* Since we may be building on a machine that doesn't
* have reallocarray or the like, we avoid their use here.
* If we ever officially designate an illumos-gate build
* as the minimum required to build master that contains
* reallocarray and such, we can replace most of this logic
* with it.
*
* Also use xcalloc so we get the unused entries zeroed already.
* Not strictly necessary, but useful for debugging.
*/
newn = xcalloc(newamt, sizeof (name_t));
/* Move over existing entries */
(void) memcpy(newn, names->ns_names, names->ns_num * sizeof (name_t));
free(names->ns_names);
names->ns_names = newn;
names->ns_alloc = newamt;
return (&names->ns_names[names->ns_num++]);
}
static void
add_name(obj_t *obj, const path_t *p, bool is_symlink)
{
names_t *ns = &obj->obj_names;
const char *srcname = path_name(p);
/* We should never have duplicates */
for (size_t i = 0; i < ns->ns_num; i++)
VERIFY3S(strcmp(ns->ns_names[i].n_name, srcname), !=, 0);
name_t *n = name_new(ns);
n->n_name = xstrdup(srcname);
n->n_is_symlink = is_symlink;
if (is_symlink)
return;
/*
* If the name was not a symlink, first determine if there are
* existing (hard) links to this name already, and if so, which entry
* is the first one. Typically this will be the name we just added
* unless the file does have multiple hard links (e.g. isaexec).
*/
uint_t nhlink = 0;
uint_t firsthlink = UINT_MAX;
for (uint_t i = 0; i < ns->ns_num; i++) {
if (ns->ns_names[i].n_is_symlink)
continue;
if (nhlink == 0)
firsthlink = i;
nhlink++;
}
if (nhlink > 1)
return;
/*
* Put the first non-symlink name as the very first
* entry.
*/
VERIFY3U(firsthlink, !=, UINT_MAX);
if (firsthlink != 0) {
name_t tmp = {
.n_name = ns->ns_names[0].n_name,
.n_is_symlink = ns->ns_names[0].n_is_symlink,
};
(void) memcpy(&ns->ns_names[0], &ns->ns_names[firsthlink],
sizeof (name_t));
(void) memcpy(&ns->ns_names[firsthlink], &tmp, sizeof (name_t));
}
avl_add(&avl_byname, obj);
}
/*
* This is an arbitrary initial value -- basically we can nest 16 directories
* deep before having to grow p->p_idx (which seems like a nice power of 2).
*/
#define PATH_INIT 16
static void
path_init(path_t *p, const char *name, bool relpath)
{
(void) memset(p, '\0', sizeof (*p));
if (custr_alloc(&p->p_name) < 0) {
nomem();
}
if (name != NULL && custr_append(p->p_name, name) < 0)
nomem();
size_t len = custr_len(p->p_name);
/* Trim off any trailing /'s, but don't trim '/' to an empty path */
while (len > 1 && custr_cstr(p->p_name)[len - 1] == '/') {
VERIFY0(custr_rtrunc(p->p_name, 0));
len--;
}
p->p_pfxidx = relpath ? len + 1 : 0;
}
static size_t
path_append(path_t *p, const char *name)
{
size_t clen = custr_len(p->p_name);
if (clen > 0)
VERIFY0(custr_appendc(p->p_name, '/'));
VERIFY0(custr_append(p->p_name, name));
return (clen);
}
static const char *
path_name(const path_t *p)
{
return (custr_cstr(p->p_name) + p->p_pfxidx);
}
static const char *
path_fullpath(const path_t *p)
{
return (custr_cstr(p->p_name));
}
static void
path_pop(path_t *p, size_t idx)
{
VERIFY0(custr_trunc(p->p_name, idx));
}
static int
cmp_id(const void *a, const void *b)
{
const obj_t *l = a;
const obj_t *r = b;
if (l->obj_dev < r->obj_dev)
return (-1);
if (l->obj_dev > r->obj_dev)
return (1);
if (l->obj_inode < r->obj_inode)
return (-1);
if (l->obj_inode > r->obj_inode)
return (1);
return (0);
}
static int
cmp_objname(const void *a, const void *b)
{
const obj_t *l = a;
const obj_t *r = b;
const name_t *ln = &l->obj_names.ns_names[0];
const name_t *rn = &r->obj_names.ns_names[0];
return (cmp_names(ln, rn));
}
static int
cmp_names(const void *a, const void *b)
{
const name_t *l = a;
const name_t *r = b;
int cmp = strcmp(l->n_name, r->n_name);
if (cmp < 0)
return (-1);
if (cmp > 0)
return (1);
return (0);
}
/*
* Use the filename and permission bits to determine if this file could
* possibly be an executable.
*/
static bool
maybe_obj(const char *name, mode_t mode)
{
/* If not in fast mode, check everything, so always return true */
if (!fast_mode)
return (true);
size_t len = strlen(name);
/* If the file name ends in .so, we check */
if (len >= 3 && strcmp(&name[len - 3], ".so") == 0) {
return (true);
}
/* If the file name contains '.so', we check */
if (len >= 4 && strstr(name, ".so.") != NULL) {
return (true);
}
/* If the above checks fail, we assume it's not a shared library */
if (so_only)
return (false);
/*
* The original perl script used a -x test which only looked at
* file permissions. This may return slightly different results
* than using access(2) or faccessat(2).
*/
if ((mode & (S_IXUSR|S_IXGRP|S_IXOTH)) == 0)
return (false);
return (true);
}
static void
foreach_avl(avl_tree_t *avl, void (*cb)(void *, void *), void *arg)
{
void *obj;
for (obj = avl_first(avl); obj != NULL; obj = AVL_NEXT(avl, obj))
cb(obj, arg);
}
static char *
xstrdup(const char *s)
{
char *news = strdup(s);
if (news == NULL) {
nomem();
}
return (news);
}
static void *
xcalloc(size_t nelem, size_t elsize)
{
void *p = calloc(nelem, elsize);
if (p == NULL) {
nomem();
}
return (p);
}
#define NOMEM_MSG "out of memory\n"
static void __NORETURN
nomem(void)
{
/* Try to get the error out before aborting */
(void) write(STDERR_FILENO, NOMEM_MSG, sizeof (NOMEM_MSG));
abort();
}
|