forked from SerenityOS/serenity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
find.cpp
1052 lines (907 loc) Β· 30.9 KB
/
find.cpp
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 (c) 2020-2021, Sergey Bugaev <[email protected]>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Assertions.h>
#include <AK/CheckedFormatString.h>
#include <AK/LexicalPath.h>
#include <AK/NonnullOwnPtr.h>
#include <AK/OwnPtr.h>
#include <AK/Time.h>
#include <AK/Vector.h>
#include <LibCore/DirIterator.h>
#include <LibCore/System.h>
#include <LibFileSystem/FileSystem.h>
#include <LibMain/Main.h>
#include <LibRegex/Regex.h>
#include <LibURL/URL.h>
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <grp.h>
#include <pwd.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
bool g_follow_symlinks = false;
bool g_there_was_an_error = false;
bool g_have_seen_action_command = false;
bool g_print_hyperlinks = false;
Optional<u32> g_max_depth = {};
Optional<u32> g_min_depth = {};
template<typename... Parameters>
[[noreturn]] static void fatal_error(CheckedFormatString<Parameters...>&& fmtstr, Parameters const&... parameters)
{
warn("\033[31m");
warn(move(fmtstr), parameters...);
warn("\033[0m");
warnln();
exit(1);
}
struct FileData {
// The current path specified on the command line
StringView root_path;
// Path to the file relative to the current root path
LexicalPath relative_path;
// The parent directory of the file.
int dirfd { -1 };
// The file's basename, relative to the directory.
char const* basename { nullptr };
// Optionally, cached information as returned by stat/lstat/fstatat.
struct stat stat {
};
bool stat_is_valid : 1 { false };
// File type as returned from readdir(), or DT_UNKNOWN.
unsigned char d_type { DT_UNKNOWN };
ByteString full_path() const
{
if (root_path.is_empty())
return relative_path.string();
if (relative_path.string() == ".")
return root_path;
// POSIX says that a single slash should be added between the root path and the relative portion if the root path doesn't end in one
// any additional trailing slashes should be left unaltered.
if (root_path.ends_with('/'))
return ByteString::formatted("{}{}", root_path, relative_path.string());
return ByteString::formatted("{}/{}", root_path, relative_path.string());
}
const struct stat* ensure_stat()
{
if (stat_is_valid)
return &stat;
int flags = g_follow_symlinks ? 0 : AT_SYMLINK_NOFOLLOW;
int rc = fstatat(dirfd, basename, &stat, flags);
if (rc < 0) {
perror(full_path().characters());
g_there_was_an_error = true;
return nullptr;
}
stat_is_valid = true;
if (S_ISREG(stat.st_mode))
d_type = DT_REG;
else if (S_ISDIR(stat.st_mode))
d_type = DT_DIR;
else if (S_ISCHR(stat.st_mode))
d_type = DT_CHR;
else if (S_ISBLK(stat.st_mode))
d_type = DT_BLK;
else if (S_ISFIFO(stat.st_mode))
d_type = DT_FIFO;
else if (S_ISLNK(stat.st_mode))
d_type = DT_LNK;
else if (S_ISSOCK(stat.st_mode))
d_type = DT_SOCK;
else
VERIFY_NOT_REACHED();
return &stat;
}
};
template<Unsigned T>
class NumericRange {
public:
NumericRange() = default;
static ErrorOr<NumericRange<T>> parse(StringView arg)
{
if (arg.is_empty())
return Error::from_errno(EINVAL);
auto comparison_type = ComparisonType::Equal;
if (arg[0] == '-') {
comparison_type = ComparisonType::LessThan;
arg = arg.substring_view(1);
} else if (arg[0] == '+') {
comparison_type = ComparisonType::GreaterThan;
arg = arg.substring_view(1);
}
auto maybe_value = arg.to_number<T>();
if (!maybe_value.has_value())
return Error::from_errno(EINVAL);
return NumericRange<T>(maybe_value.release_value(), comparison_type);
}
bool contains(T other) const
{
if (m_comparison_type == ComparisonType::LessThan)
return other < m_value;
if (m_comparison_type == ComparisonType::GreaterThan)
return other > m_value;
return other == m_value;
}
private:
enum class ComparisonType {
Equal,
LessThan,
GreaterThan
};
NumericRange(T value, ComparisonType comparison_type)
: m_value(value)
, m_comparison_type(comparison_type)
{
}
T m_value {};
ComparisonType m_comparison_type { ComparisonType::Equal };
};
class Command {
public:
virtual ~Command() = default;
virtual bool evaluate(FileData& file_data) const = 0;
};
class StatCommand : public Command {
public:
virtual bool evaluate(const struct stat&) const = 0;
private:
virtual bool evaluate(FileData& file_data) const override
{
const struct stat* stat = file_data.ensure_stat();
if (!stat)
return false;
return evaluate(*stat);
}
};
class MaxDepthCommand : public Command {
public:
MaxDepthCommand(char const* arg)
{
auto max_depth_string = StringView { arg, strlen(arg) };
auto maybe_max_depth = max_depth_string.to_number<u32>();
if (!maybe_max_depth.has_value())
fatal_error("-maxdepth: '{}' is not a valid non-negative integer", arg);
g_max_depth = maybe_max_depth.value();
}
virtual bool evaluate(FileData&) const override
{
return true;
}
};
class MinDepthCommand : public Command {
public:
MinDepthCommand(char const* arg)
{
auto min_depth_string = StringView { arg, strlen(arg) };
auto maybe_min_depth = min_depth_string.to_number<u32>();
if (!maybe_min_depth.has_value())
fatal_error("-mindepth: '{}' is not a valid non-negative integer", arg);
g_min_depth = maybe_min_depth.value();
}
virtual bool evaluate(FileData&) const override
{
return true;
}
};
class TypeCommand final : public Command {
public:
TypeCommand(char const* arg)
{
StringView type { arg, strlen(arg) };
if (type.length() != 1 || !"bcdlpfs"sv.contains(type[0]))
fatal_error("Invalid mode: \033[1m{}", arg);
m_type = type[0];
}
private:
virtual bool evaluate(FileData& file_data) const override
{
// First, make sure we have a type, but avoid calling
// sys$stat() unless we need to.
if (file_data.d_type == DT_UNKNOWN) {
if (file_data.ensure_stat() == nullptr)
return false;
}
auto type = file_data.d_type;
switch (m_type) {
case 'b':
return type == DT_BLK;
case 'c':
return type == DT_CHR;
case 'd':
return type == DT_DIR;
case 'l':
return type == DT_LNK;
case 'p':
return type == DT_FIFO;
case 'f':
return type == DT_REG;
case 's':
return type == DT_SOCK;
default:
// We've verified this is a correct character before.
VERIFY_NOT_REACHED();
}
}
char m_type { 0 };
};
class LinksCommand final : public StatCommand {
public:
LinksCommand(char const* arg)
{
StringView arg_string { arg, strlen(arg) };
auto links_or_error = NumericRange<nlink_t>::parse(arg_string);
if (links_or_error.is_error())
fatal_error("Invalid number: \033[1m{}", arg);
m_links = links_or_error.release_value();
}
private:
virtual bool evaluate(const struct stat& stat) const override
{
return m_links.contains(stat.st_nlink);
}
NumericRange<nlink_t> m_links {};
};
class UserCommand final : public StatCommand {
public:
UserCommand(char const* arg)
{
if (struct passwd* passwd = getpwnam(arg)) {
m_uid = passwd->pw_uid;
} else {
// Attempt to parse it as decimal UID.
auto number = StringView { arg, strlen(arg) }.to_number<uid_t>();
if (!number.has_value())
fatal_error("Invalid user: \033[1m{}", arg);
m_uid = number.value();
}
}
private:
virtual bool evaluate(const struct stat& stat) const override
{
return stat.st_uid == m_uid;
}
uid_t m_uid { 0 };
};
class GroupCommand final : public StatCommand {
public:
GroupCommand(char const* arg)
{
if (struct group* gr = getgrnam(arg)) {
m_gid = gr->gr_gid;
} else {
// Attempt to parse it as decimal GID.
auto number = StringView { arg, strlen(arg) }.to_number<gid_t>();
if (!number.has_value())
fatal_error("Invalid group: \033[1m{}", arg);
m_gid = number.value();
}
}
private:
virtual bool evaluate(const struct stat& stat) const override
{
return stat.st_gid == m_gid;
}
gid_t m_gid { 0 };
};
class SizeCommand final : public StatCommand {
public:
SizeCommand(char const* arg)
{
StringView view { arg, strlen(arg) };
auto suffix = view[view.length() - 1];
if (!is_ascii_digit(suffix)) {
switch (suffix) {
case 'c':
m_unit_size = 1;
break;
case 'w':
m_unit_size = 2;
break;
case 'k':
m_unit_size = KiB;
break;
case 'M':
m_unit_size = MiB;
break;
case 'G':
m_unit_size = GiB;
break;
case 'b':
// The behavior of this suffix is the same as no suffix.
break;
default:
fatal_error("Invalid -size type '{}'", suffix);
}
view = view.substring_view(0, view.length() - 1);
}
auto number_or_error = NumericRange<u64>::parse(view);
if (number_or_error.is_error())
fatal_error("Invalid size: \033[1m{}", arg);
m_number_of_units = number_or_error.release_value();
}
private:
virtual bool evaluate(const struct stat& stat) const override
{
if (m_unit_size == 1)
return m_number_of_units.contains(stat.st_size);
auto size_divided_by_unit_rounded_up = (stat.st_size + m_unit_size - 1) / m_unit_size;
return m_number_of_units.contains(size_divided_by_unit_rounded_up);
}
NumericRange<u64> m_number_of_units {};
u64 m_unit_size { 512 };
};
class EmptyCommand final : public Command {
public:
EmptyCommand()
{
}
private:
virtual bool evaluate(FileData& file_data) const override
{
struct stat const* stat = file_data.ensure_stat();
if (!stat)
return false;
if (S_ISREG(stat->st_mode))
return stat->st_size == 0;
if (S_ISDIR(stat->st_mode)) {
auto dir_iterator = Core::DirIterator(file_data.full_path(), Core::DirIterator::SkipDots);
return !dir_iterator.has_next();
}
return false;
}
};
class PathCommand : public Command {
public:
enum class PathPart {
FullPath,
Basename
};
PathCommand(char const* pattern, CaseSensitivity case_sensitivity, PathPart path_part)
: m_pattern(pattern, strlen(pattern))
, m_case_sensitivity(case_sensitivity)
, m_path_part(path_part)
{
if (path_part == PathPart::FullPath && m_pattern.ends_with('/'))
warnln("find: warning: path command will not match anything because it ends with '/'.");
}
private:
virtual bool evaluate(FileData& file_data) const override
{
if (m_path_part == PathPart::Basename)
return file_data.relative_path.basename().matches(m_pattern, m_case_sensitivity);
return file_data.full_path().matches(m_pattern, m_case_sensitivity);
}
StringView m_pattern;
CaseSensitivity m_case_sensitivity { CaseSensitivity::CaseSensitive };
PathPart m_path_part { PathPart::FullPath };
};
class RegexCommand : public Command {
public:
RegexCommand(Regex<PosixExtended>&& regex)
: m_regex(move(regex))
{
}
private:
virtual bool evaluate(FileData& file_data) const override
{
auto haystack = file_data.full_path();
auto match_result = m_regex.match(haystack);
return match_result.success;
}
Regex<PosixExtended> m_regex;
};
class AccessCommand final : public Command {
public:
AccessCommand(mode_t mode)
: m_mode(mode)
{
}
private:
virtual bool evaluate(FileData& file_data) const override
{
auto maybe_error = Core::System::access(file_data.full_path(), m_mode);
return !maybe_error.is_error();
}
mode_t m_mode { 0 };
};
class NewerCommand final : public StatCommand {
public:
enum class TimestampType {
LastAccess,
Creation,
LastModification
};
NewerCommand(char const* arg, TimestampType timestamp_type)
{
auto stat_function = g_follow_symlinks ? Core::System::stat : Core::System::lstat;
auto stat_or_error = stat_function({ arg, strlen(arg) });
if (stat_or_error.is_error())
fatal_error("find: '{}': {}", arg, strerror(stat_or_error.error().code()));
m_reference_file_stat = stat_or_error.release_value();
m_timestamp_type = timestamp_type;
}
private:
virtual bool evaluate(struct stat const& stat) const override
{
struct timespec current_file_timestamp;
struct timespec reference_file_timestamp;
switch (m_timestamp_type) {
case TimestampType::LastAccess:
current_file_timestamp = stat.st_atim;
reference_file_timestamp = m_reference_file_stat.st_atim;
break;
case TimestampType::Creation:
current_file_timestamp = stat.st_ctim;
reference_file_timestamp = m_reference_file_stat.st_ctim;
break;
case TimestampType::LastModification:
current_file_timestamp = stat.st_mtim;
reference_file_timestamp = m_reference_file_stat.st_mtim;
break;
}
return Duration::from_timespec(current_file_timestamp) > Duration::from_timespec(reference_file_timestamp);
}
struct stat m_reference_file_stat;
TimestampType m_timestamp_type { TimestampType::LastModification };
};
class GidCommand final : public StatCommand {
public:
GidCommand(char const* arg)
{
auto gid_or_error = NumericRange<gid_t>::parse({ arg, strlen(arg) });
if (gid_or_error.is_error())
fatal_error("find: Invalid argument '{}' to '-gid'", arg);
m_gid_range = gid_or_error.release_value();
}
private:
virtual bool evaluate(struct stat const& stat) const override
{
return m_gid_range.contains(stat.st_gid);
}
NumericRange<gid_t> m_gid_range {};
};
class UidCommand final : public StatCommand {
public:
UidCommand(char const* arg)
{
auto uid_or_error = NumericRange<uid_t>::parse({ arg, strlen(arg) });
if (uid_or_error.is_error())
fatal_error("find: Invalid argument '{}' to '-uid'", arg);
m_uid_range = uid_or_error.release_value();
}
private:
virtual bool evaluate(struct stat const& stat) const override
{
return m_uid_range.contains(stat.st_uid);
}
NumericRange<uid_t> m_uid_range {};
};
class PrintCommand final : public Command {
public:
PrintCommand(char terminator = '\n')
: m_terminator(terminator)
{
}
private:
virtual bool evaluate(FileData& file_data) const override
{
auto printed = false;
if (g_print_hyperlinks) {
auto full_path_or_error = FileSystem::real_path(file_data.full_path());
if (!full_path_or_error.is_error()) {
auto fullpath = full_path_or_error.release_value();
auto url = URL::create_with_file_scheme(fullpath);
out("\033]8;;{}\033\\{}{}\033]8;;\033\\", url.serialize(), file_data.full_path(), m_terminator);
printed = true;
}
}
if (!printed)
out("{}{}", file_data.full_path(), m_terminator);
return true;
}
char m_terminator { '\n' };
};
class ExecCommand final : public Command {
public:
enum class AwaitConfirmation {
Yes,
No
};
ExecCommand(Vector<char*>&& argv, AwaitConfirmation await_confirmation = AwaitConfirmation::No)
: m_argv(move(argv))
, m_await_confirmation(await_confirmation)
{
}
private:
virtual bool evaluate(FileData& file_data) const override
{
// Replace any occurrences of "{}" with the path.
Vector<ByteString> full_paths;
Vector<char*> argv = m_argv;
for (auto& arg : argv) {
if (StringView { arg, strlen(arg) } == "{}") {
auto full_path = file_data.full_path();
full_paths.append(full_path);
arg = const_cast<char*>(full_path.characters());
}
}
if (m_await_confirmation == AwaitConfirmation::Yes) {
out(stderr, "\"");
bool first = true;
for (auto const& arg : argv) {
if (!first)
out(stderr, " ");
out(stderr, "{}", arg);
first = false;
}
out(stderr, "\"? ");
fflush(stderr);
Array<u8, BUFSIZ> buffer;
auto nread_or_error = Core::System::read(STDIN_FILENO, buffer);
if (nread_or_error.is_error()) {
warn("Failed to read from stdin: {}", strerror(nread_or_error.error().code()));
return false;
}
auto nread = nread_or_error.release_value();
if (nread <= 0 || (buffer[0] != 'y' && buffer[0] != 'Y'))
return false;
}
pid_t pid = fork();
if (pid < 0) {
perror("fork");
g_there_was_an_error = true;
return false;
} else if (pid == 0) {
argv.append(nullptr);
execvp(m_argv[0], argv.data());
perror("execvp");
exit(1);
} else {
int status;
int rc = waitpid(pid, &status, 0);
if (rc < 0) {
perror("waitpid");
g_there_was_an_error = true;
return false;
}
return WIFEXITED(status) && WEXITSTATUS(status) == 0;
}
}
Vector<char*> m_argv;
AwaitConfirmation m_await_confirmation { AwaitConfirmation::No };
};
class AndCommand final : public Command {
public:
AndCommand(NonnullOwnPtr<Command>&& lhs, NonnullOwnPtr<Command>&& rhs)
: m_lhs(move(lhs))
, m_rhs(move(rhs))
{
}
private:
virtual bool evaluate(FileData& file_data) const override
{
return m_lhs->evaluate(file_data) && m_rhs->evaluate(file_data);
}
NonnullOwnPtr<Command> m_lhs;
NonnullOwnPtr<Command> m_rhs;
};
class OrCommand final : public Command {
public:
OrCommand(NonnullOwnPtr<Command>&& lhs, NonnullOwnPtr<Command>&& rhs)
: m_lhs(move(lhs))
, m_rhs(move(rhs))
{
}
private:
virtual bool evaluate(FileData& file_data) const override
{
return m_lhs->evaluate(file_data) || m_rhs->evaluate(file_data);
}
NonnullOwnPtr<Command> m_lhs;
NonnullOwnPtr<Command> m_rhs;
};
class NotCommand final : public Command {
public:
NotCommand(NonnullOwnPtr<Command>&& operand)
: m_operand(move(operand))
{
}
private:
virtual bool evaluate(FileData& file_data) const override
{
return !m_operand->evaluate(file_data);
}
NonnullOwnPtr<Command> m_operand;
};
static OwnPtr<Command> parse_complex_command(Vector<char*>& args);
// Parse a simple command starting at optind; leave optind at its the last
// argument. Return nullptr if we reach the end of arguments.
static OwnPtr<Command> parse_simple_command(Vector<char*>& args)
{
if (args.is_empty())
return {};
char* raw_arg = args.take_first();
StringView arg { raw_arg, strlen(raw_arg) };
if (arg == "(") {
auto command = parse_complex_command(args);
if (command && !args.is_empty() && StringView { args.first(), strlen(args.first()) } == ")")
return command;
fatal_error("Unmatched \033[1m(");
} else if (arg == "!") {
if (args.is_empty())
fatal_error("Expected an expression after '!'");
auto command = parse_simple_command(args).release_nonnull();
return make<NotCommand>(move(command));
} else if (arg == "-maxdepth"sv) {
if (args.is_empty())
fatal_error("-maxdepth: requires additional arguments");
return make<MaxDepthCommand>(args.take_first());
} else if (arg == "-mindepth"sv) {
if (args.is_empty())
fatal_error("-mindepth: requires additional arguments");
return make<MinDepthCommand>(args.take_first());
} else if (arg == "-type") {
if (args.is_empty())
fatal_error("-type: requires additional arguments");
return make<TypeCommand>(args.take_first());
} else if (arg == "-links") {
if (args.is_empty())
fatal_error("-links: requires additional arguments");
return make<LinksCommand>(args.take_first());
} else if (arg == "-user") {
if (args.is_empty())
fatal_error("-user: requires additional arguments");
return make<UserCommand>(args.take_first());
} else if (arg == "-group") {
if (args.is_empty())
fatal_error("-group: requires additional arguments");
return make<GroupCommand>(args.take_first());
} else if (arg == "-size") {
if (args.is_empty())
fatal_error("-size: requires additional arguments");
return make<SizeCommand>(args.take_first());
} else if (arg == "-empty") {
return make<EmptyCommand>();
} else if (arg == "-path") {
if (args.is_empty())
fatal_error("-path: requires additional arguments");
return make<PathCommand>(args.take_first(), CaseSensitivity::CaseSensitive, PathCommand::PathPart::FullPath);
} else if (arg == "-ipath") {
if (args.is_empty())
fatal_error("-ipath: requires additional arguments");
return make<PathCommand>(args.take_first(), CaseSensitivity::CaseInsensitive, PathCommand::PathPart::FullPath);
} else if (arg == "-name") {
if (args.is_empty())
fatal_error("-name: requires additional arguments");
return make<PathCommand>(args.take_first(), CaseSensitivity::CaseSensitive, PathCommand::PathPart::Basename);
} else if (arg == "-iname") {
if (args.is_empty())
fatal_error("-iname: requires additional arguments");
return make<PathCommand>(args.take_first(), CaseSensitivity::CaseInsensitive, PathCommand::PathPart::Basename);
} else if (arg == "-regex") {
if (args.is_empty())
fatal_error("-regex: requires additional arguments");
Regex<PosixExtended> regex { args.take_first(), PosixFlags::Default };
if (regex.parser_result.error != regex::Error::NoError)
fatal_error("{}", regex.error_string());
return make<RegexCommand>(move(regex));
} else if (arg == "-iregex") {
if (args.is_empty())
fatal_error("-iregex: requires additional arguments");
Regex<PosixExtended> regex { args.take_first(), PosixFlags::Insensitive };
if (regex.parser_result.error != regex::Error::NoError)
fatal_error("{}", regex.error_string());
return make<RegexCommand>(move(regex));
} else if (arg == "-readable") {
return make<AccessCommand>(R_OK);
} else if (arg == "-writable") {
return make<AccessCommand>(W_OK);
} else if (arg == "-executable") {
return make<AccessCommand>(X_OK);
} else if (arg == "-newer") {
if (args.is_empty())
fatal_error("-newer: requires additional arguments");
return make<NewerCommand>(args.take_first(), NewerCommand::TimestampType::LastModification);
} else if (arg == "-anewer") {
if (args.is_empty())
fatal_error("-anewer: requires additional arguments");
return make<NewerCommand>(args.take_first(), NewerCommand::TimestampType::LastAccess);
} else if (arg == "-cnewer") {
if (args.is_empty())
fatal_error("-cnewer: requires additional arguments");
return make<NewerCommand>(args.take_first(), NewerCommand::TimestampType::Creation);
} else if (arg == "-gid") {
if (args.is_empty())
fatal_error("-gid: requires additional arguments");
return make<GidCommand>(args.take_first());
} else if (arg == "-uid") {
if (args.is_empty())
fatal_error("-uid: requires additional arguments");
return make<UidCommand>(args.take_first());
} else if (arg == "-print") {
g_have_seen_action_command = true;
return make<PrintCommand>();
} else if (arg == "-print0") {
g_have_seen_action_command = true;
return make<PrintCommand>(0);
} else if (arg == "-exec" || arg == "-ok") {
if (args.is_empty())
fatal_error("{}: requires additional arguments", arg);
g_have_seen_action_command = true;
Vector<char*> command_argv;
bool terminator_found = false;
while (!args.is_empty()) {
char* next = args.take_first();
if (next[0] == ';' && next[1] == '\0') {
terminator_found = true;
break;
}
command_argv.append(next);
}
if (!terminator_found)
fatal_error("{}: Terminating ';' not found", arg);
auto await_confirmation = (arg == "-ok") ? ExecCommand::AwaitConfirmation::Yes : ExecCommand::AwaitConfirmation::No;
return make<ExecCommand>(move(command_argv), await_confirmation);
} else {
fatal_error("Unsupported command \033[1m{}", arg);
}
}
static OwnPtr<Command> parse_complex_command(Vector<char*>& args)
{
auto command = parse_simple_command(args);
while (command && !args.is_empty()) {
char* raw_arg = args.take_first();
StringView arg { raw_arg, strlen(raw_arg) };
enum {
And,
Or,
} binary_operation { And };
if (arg == "-a") {
binary_operation = And;
} else if (arg == "-o") {
binary_operation = Or;
} else if (arg == ")") {
// Ooops, looked too far.
args.prepend(raw_arg);
return command;
} else {
// Juxtaposition is an And too, and there's nothing to skip.
args.prepend(raw_arg);
binary_operation = And;
}
auto rhs = parse_complex_command(args);
if (!rhs)
fatal_error("Missing right-hand side");
if (binary_operation == And)
command = make<AndCommand>(command.release_nonnull(), rhs.release_nonnull());
else
command = make<OrCommand>(command.release_nonnull(), rhs.release_nonnull());
}
return command;
}
static NonnullOwnPtr<Command> parse_all_commands(Vector<char*>& args)
{
auto command = parse_complex_command(args);
if (g_have_seen_action_command) {
VERIFY(command);
return command.release_nonnull();
}
if (!command) {
return make<PrintCommand>();
}
return make<AndCommand>(command.release_nonnull(), make<PrintCommand>());
}
static void walk_tree(FileData& root_data, Command& command, u32 depth = 0)
{
if (!g_min_depth.has_value() || g_min_depth.value() <= depth)
command.evaluate(root_data);
// We should try to read directory entries if either:
// * This is a directory.
// * This is a symlink (that could point to a directory),
// and we're following symlinks.
// * The type is unknown, so it could be a directory.
switch (root_data.d_type) {
case DT_DIR:
case DT_UNKNOWN:
break;
case DT_LNK:
if (g_follow_symlinks)
break;
return;
default:
return;
}
int dirfd = openat(root_data.dirfd, root_data.basename, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
if (dirfd < 0) {
if (errno == ENOTDIR) {
// Above we decided to try to open this file because it could
// be a directory, but turns out it's not. This is fine though.
return;
}
perror(root_data.full_path().characters());
g_there_was_an_error = true;
return;
}
DIR* dir = fdopendir(dirfd);
while (true) {
errno = 0;
auto* dirent = readdir(dir);
if (!dirent)
break;
if (strcmp(dirent->d_name, ".") == 0 || strcmp(dirent->d_name, "..") == 0)
continue;
FileData file_data {
root_data.root_path,
root_data.relative_path.append({ dirent->d_name, strlen(dirent->d_name) }),
dirfd,
dirent->d_name,
(struct stat) {},
false,
dirent->d_type,
};
bool should_increase_depth = false;
if (g_max_depth.has_value() || g_min_depth.has_value()) {
if (g_max_depth.has_value() && depth >= g_max_depth.value())
return;
if (file_data.d_type == DT_UNKNOWN)
file_data.ensure_stat();
if (file_data.d_type == DT_DIR)
should_increase_depth = true;
}
walk_tree(file_data, command, should_increase_depth ? depth + 1 : depth);
}
if (errno != 0) {
perror(root_data.full_path().characters());
g_there_was_an_error = true;
}
closedir(dir);
}