-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate_java_binder.cpp
1392 lines (1225 loc) · 57.1 KB
/
generate_java_binder.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) 2016, The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "aidl.h"
#include "aidl_language.h"
#include "aidl_to_java.h"
#include "aidl_typenames.h"
#include "ast_java.h"
#include "code_writer.h"
#include "generate_java.h"
#include "logging.h"
#include "options.h"
#include "parser.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <algorithm>
#include <unordered_set>
#include <utility>
#include <vector>
#include <android-base/stringprintf.h>
using android::base::Join;
using android::base::StringPrintf;
using std::string;
using std::unique_ptr;
using std::vector;
namespace android {
namespace aidl {
namespace java {
// =================================================
class VariableFactory {
public:
using Variable = ::android::aidl::java::Variable;
explicit VariableFactory(const std::string& base) : base_(base), index_(0) {}
std::shared_ptr<Variable> Get(const AidlTypeSpecifier& type) {
auto v = std::make_shared<Variable>(JavaSignatureOf(type),
StringPrintf("%s%d", base_.c_str(), index_));
vars_.push_back(v);
index_++;
return v;
}
std::shared_ptr<Variable> Get(int index) { return vars_[index]; }
private:
std::vector<std::shared_ptr<Variable>> vars_;
std::string base_;
int index_;
};
// =================================================
class StubClass : public Class {
public:
StubClass(const AidlInterface* interfaceType, const Options& options);
~StubClass() override = default;
// non-copyable, non-movable
StubClass(const StubClass&) = delete;
StubClass(StubClass&&) = delete;
StubClass& operator=(const StubClass&) = delete;
StubClass& operator=(StubClass&&) = delete;
std::shared_ptr<Variable> transact_code;
std::shared_ptr<Variable> transact_data;
std::shared_ptr<Variable> transact_reply;
std::shared_ptr<Variable> transact_flags;
std::shared_ptr<SwitchStatement> transact_switch_meta;
std::shared_ptr<SwitchStatement> transact_switch_user;
std::shared_ptr<StatementBlock> transact_statements;
std::shared_ptr<SwitchStatement> code_to_method_name_switch;
// Where onTransact cases should be generated as separate methods.
bool transact_outline;
// Specific methods that should be outlined when transact_outline is true.
std::unordered_set<const AidlMethod*> outline_methods;
// Number of all methods.
size_t all_method_count;
// Finish generation. This will add a default case to the switch.
void Finish();
std::shared_ptr<Expression> GetTransactDescriptor(const AidlMethod* method);
private:
void MakeConstructors(const AidlInterface* interfaceType);
void MakeAsInterface(const AidlInterface* interfaceType);
std::shared_ptr<Variable> transact_descriptor;
const Options& options_;
};
StubClass::StubClass(const AidlInterface* interfaceType, const Options& options)
: Class(), options_(options) {
transact_descriptor = nullptr;
transact_outline = false;
all_method_count = 0; // Will be set when outlining may be enabled.
this->comment = "/** Local-side IPC implementation stub class. */";
this->modifiers = PUBLIC | ABSTRACT | STATIC;
this->what = Class::CLASS;
this->type = interfaceType->GetCanonicalName() + ".Stub";
this->extends = "android.os.Binder";
this->interfaces.push_back(interfaceType->GetCanonicalName());
MakeConstructors(interfaceType);
MakeAsInterface(interfaceType);
// asBinder
auto asBinder = std::make_shared<Method>();
asBinder->modifiers = PUBLIC | OVERRIDE;
asBinder->returnType = "android.os.IBinder";
asBinder->name = "asBinder";
asBinder->statements = std::make_shared<StatementBlock>();
asBinder->statements->Add(std::make_shared<ReturnStatement>(THIS_VALUE));
this->elements.push_back(asBinder);
if (options_.GenTransactionNames() || options_.GenTraces()) {
// getDefaultTransactionName
auto getDefaultTransactionName = std::make_shared<Method>();
getDefaultTransactionName->comment = "/** @hide */";
getDefaultTransactionName->modifiers = PUBLIC | STATIC;
getDefaultTransactionName->returnType = "java.lang.String";
getDefaultTransactionName->name = "getDefaultTransactionName";
auto code = std::make_shared<Variable>("int", "transactionCode");
getDefaultTransactionName->parameters.push_back(code);
getDefaultTransactionName->statements = std::make_shared<StatementBlock>();
this->code_to_method_name_switch = std::make_shared<SwitchStatement>(code);
getDefaultTransactionName->statements->Add(this->code_to_method_name_switch);
this->elements.push_back(getDefaultTransactionName);
// getTransactionName
auto getTransactionName = std::make_shared<Method>();
getTransactionName->comment = "/** @hide */";
getTransactionName->modifiers = PUBLIC;
getTransactionName->returnType = "java.lang.String";
getTransactionName->name = "getTransactionName";
auto code2 = std::make_shared<Variable>("int", "transactionCode");
getTransactionName->parameters.push_back(code2);
getTransactionName->statements = std::make_shared<StatementBlock>();
getTransactionName->statements->Add(std::make_shared<ReturnStatement>(
std::make_shared<MethodCall>(THIS_VALUE, "getDefaultTransactionName",
std::vector<std::shared_ptr<Expression>>{code2})));
this->elements.push_back(getTransactionName);
}
// onTransact
this->transact_code = std::make_shared<Variable>("int", "code");
this->transact_data = std::make_shared<Variable>("android.os.Parcel", "data");
this->transact_reply = std::make_shared<Variable>("android.os.Parcel", "reply");
this->transact_flags = std::make_shared<Variable>("int", "flags");
auto onTransact = std::make_shared<Method>();
onTransact->modifiers = PUBLIC | OVERRIDE;
onTransact->returnType = "boolean";
onTransact->name = "onTransact";
onTransact->parameters.push_back(this->transact_code);
onTransact->parameters.push_back(this->transact_data);
onTransact->parameters.push_back(this->transact_reply);
onTransact->parameters.push_back(this->transact_flags);
onTransact->statements = std::make_shared<StatementBlock>();
transact_statements = onTransact->statements;
onTransact->exceptions.push_back("android.os.RemoteException");
this->elements.push_back(onTransact);
this->transact_switch_meta = std::make_shared<SwitchStatement>(this->transact_code);
this->transact_switch_user = std::make_shared<SwitchStatement>(this->transact_code);
}
void StubClass::Finish() {
auto default_case = std::make_shared<Case>();
auto superCall = std::make_shared<MethodCall>(
SUPER_VALUE, "onTransact",
std::vector<std::shared_ptr<Expression>>{this->transact_code, this->transact_data,
this->transact_reply, this->transact_flags});
default_case->statements->Add(std::make_shared<ReturnStatement>(superCall));
auto case_count = transact_switch_user->cases.size();
transact_switch_user->cases.push_back(default_case);
// Interface token validation is done for user-defined transactions.
if (case_count > 0) {
auto ifStatement = std::make_shared<IfStatement>();
ifStatement->expression = std::make_shared<LiteralExpression>(
"code >= android.os.IBinder.FIRST_CALL_TRANSACTION && "
"code <= android.os.IBinder.LAST_CALL_TRANSACTION");
ifStatement->statements = std::make_shared<StatementBlock>();
ifStatement->statements->Add(std::make_shared<MethodCall>(
this->transact_data, "enforceInterface",
std::vector<std::shared_ptr<Expression>>{this->GetTransactDescriptor(nullptr)}));
transact_statements->Add(ifStatement);
}
// Meta transactions are looked up prior to user-defined transactions.
transact_statements->Add(this->transact_switch_meta);
transact_statements->Add(this->transact_switch_user);
// getTransactionName
if (options_.GenTransactionNames() || options_.GenTraces()) {
// Some transaction codes are common, e.g. INTERFACE_TRANSACTION or DUMP_TRANSACTION.
// Common transaction codes will not be resolved to a string by getTransactionName. The method
// will return NULL in this case.
auto code_switch_default_case = std::make_shared<Case>();
code_switch_default_case->statements->Add(std::make_shared<ReturnStatement>(NULL_VALUE));
this->code_to_method_name_switch->cases.push_back(code_switch_default_case);
}
// There will be at least one statement for the default, but if we emit a
// return true after that default, it will be unreachable.
if (case_count > 0) {
transact_statements->Add(std::make_shared<ReturnStatement>(TRUE_VALUE));
}
}
// The the expression for the interface's descriptor to be used when
// generating code for the given method. Null is acceptable for method
// and stands for synthetic cases.
std::shared_ptr<Expression> StubClass::GetTransactDescriptor(const AidlMethod* method) {
if (transact_outline) {
if (method != nullptr) {
// When outlining, each outlined method needs its own literal.
if (outline_methods.count(method) != 0) {
return std::make_shared<LiteralExpression>("DESCRIPTOR");
}
} else {
// Synthetic case. A small number is assumed. Use its own descriptor
// if there are only synthetic cases.
if (outline_methods.size() == all_method_count) {
return std::make_shared<LiteralExpression>("DESCRIPTOR");
}
}
}
// When not outlining, store the descriptor literal into a local variable, in
// an effort to save const-string instructions in each switch case.
if (transact_descriptor == nullptr) {
transact_descriptor = std::make_shared<Variable>("java.lang.String", "descriptor");
transact_statements->Add(std::make_shared<VariableDeclaration>(
transact_descriptor, std::make_shared<LiteralExpression>("DESCRIPTOR")));
}
return transact_descriptor;
}
void StubClass::MakeConstructors(const AidlInterface* interfaceType) {
string ctors_code;
CodeWriterPtr writer = CodeWriter::ForString(&ctors_code);
CodeWriter& code = *writer;
if (interfaceType->UsesPermissions()) {
code << "private final android.os.PermissionEnforcer mEnforcer;\n";
code << "/** Construct the stub using the Enforcer provided. */\n";
code << "public Stub(android.os.PermissionEnforcer enforcer)\n";
} else {
code << "/** Construct the stub at attach it to the interface. */\n";
code << "public Stub()\n";
}
code << "{\n";
code.Indent();
if (interfaceType->IsVintfStability()) {
code << "this.markVintfStability();\n";
}
code << "this.attachInterface(this, DESCRIPTOR);\n";
if (interfaceType->UsesPermissions()) {
code << "if (enforcer == null) {\n";
code.Indent();
code << "throw new IllegalArgumentException(\"enforcer cannot be null\");\n";
code.Dedent();
code << "}\n";
code << "mEnforcer = enforcer;\n";
}
code.Dedent();
code << "}\n";
// Setup a default constructor for permissions interfaces.
if (interfaceType->UsesPermissions()) {
code << "@Deprecated\n";
code << "/** Default constructor. */\n";
code << "public Stub() {\n";
code.Indent();
code << "this(android.os.PermissionEnforcer.fromContext(\n";
code << " android.app.ActivityThread.currentActivityThread().getSystemContext()));\n";
code.Dedent();
code << "}\n";
}
code.Close();
this->elements.push_back(std::make_shared<LiteralClassElement>(ctors_code));
}
void StubClass::MakeAsInterface(const AidlInterface* interfaceType) {
auto obj = std::make_shared<Variable>("android.os.IBinder", "obj");
auto m = std::make_shared<Method>();
m->comment = "/**\n * Cast an IBinder object into an ";
m->comment += interfaceType->GetCanonicalName();
m->comment += " interface,\n";
m->comment += " * generating a proxy if needed.\n */";
m->modifiers = PUBLIC | STATIC;
m->returnType = interfaceType->GetCanonicalName();
m->name = "asInterface";
m->parameters.push_back(obj);
m->statements = std::make_shared<StatementBlock>();
auto ifstatement = std::make_shared<IfStatement>();
ifstatement->expression = std::make_shared<Comparison>(obj, "==", NULL_VALUE);
ifstatement->statements = std::make_shared<StatementBlock>();
ifstatement->statements->Add(std::make_shared<ReturnStatement>(NULL_VALUE));
m->statements->Add(ifstatement);
// IInterface iin = obj.queryLocalInterface(DESCRIPTOR)
auto queryLocalInterface = std::make_shared<MethodCall>(obj, "queryLocalInterface");
queryLocalInterface->arguments.push_back(std::make_shared<LiteralExpression>("DESCRIPTOR"));
auto iin = std::make_shared<Variable>("android.os.IInterface", "iin");
auto iinVd = std::make_shared<VariableDeclaration>(iin, queryLocalInterface);
m->statements->Add(iinVd);
// Ensure the instance type of the local object is as expected.
// One scenario where this is needed is if another package (with a
// different class loader) runs in the same process as the service.
// if (iin != null && iin instanceof <interfaceType>) return (<interfaceType>)
// iin;
auto iinNotNull = std::make_shared<Comparison>(iin, "!=", NULL_VALUE);
auto instOfCheck = std::make_shared<Comparison>(
iin, " instanceof ", std::make_shared<LiteralExpression>(interfaceType->GetCanonicalName()));
auto instOfStatement = std::make_shared<IfStatement>();
instOfStatement->expression = std::make_shared<Comparison>(iinNotNull, "&&", instOfCheck);
instOfStatement->statements = std::make_shared<StatementBlock>();
instOfStatement->statements->Add(std::make_shared<ReturnStatement>(
std::make_shared<Cast>(interfaceType->GetCanonicalName(), iin)));
m->statements->Add(instOfStatement);
auto ne = std::make_shared<NewExpression>(interfaceType->GetCanonicalName() + ".Stub.Proxy");
ne->arguments.push_back(obj);
m->statements->Add(std::make_shared<ReturnStatement>(ne));
this->elements.push_back(m);
}
// =================================================
class ProxyClass : public Class {
public:
ProxyClass(const AidlInterface* interfaceType, const Options& options);
~ProxyClass() override;
std::shared_ptr<Variable> mRemote;
};
ProxyClass::ProxyClass(const AidlInterface* interfaceType, const Options& options) : Class() {
this->modifiers = PRIVATE | STATIC;
this->what = Class::CLASS;
this->type = interfaceType->GetCanonicalName() + ".Stub.Proxy";
this->interfaces.push_back(interfaceType->GetCanonicalName());
// IBinder mRemote
mRemote = std::make_shared<Variable>("android.os.IBinder", "mRemote");
this->elements.push_back(std::make_shared<Field>(PRIVATE, mRemote));
// Proxy()
auto remote = std::make_shared<Variable>("android.os.IBinder", "remote");
auto ctor = std::make_shared<Method>();
ctor->name = "Proxy";
ctor->statements = std::make_shared<StatementBlock>();
ctor->parameters.push_back(remote);
ctor->statements->Add(std::make_shared<Assignment>(mRemote, remote));
this->elements.push_back(ctor);
if (options.Version() > 0) {
std::ostringstream code;
code << "private int mCachedVersion = -1;\n";
this->elements.emplace_back(std::make_shared<LiteralClassElement>(code.str()));
}
if (!options.Hash().empty()) {
std::ostringstream code;
code << "private String mCachedHash = \"-1\";\n";
this->elements.emplace_back(std::make_shared<LiteralClassElement>(code.str()));
}
// IBinder asBinder()
auto asBinder = std::make_shared<Method>();
asBinder->modifiers = PUBLIC | OVERRIDE;
asBinder->returnType = "android.os.IBinder";
asBinder->name = "asBinder";
asBinder->statements = std::make_shared<StatementBlock>();
asBinder->statements->Add(std::make_shared<ReturnStatement>(mRemote));
this->elements.push_back(asBinder);
}
ProxyClass::~ProxyClass() {}
// =================================================
static void GenerateWriteToParcel(CodeWriter& out, const AidlTypenames& typenames,
const AidlTypeSpecifier& type, const std::string& parcel,
const std::string& var, uint32_t min_sdk_version,
bool is_return_value) {
WriteToParcelFor(CodeGeneratorContext{
.writer = out,
.typenames = typenames,
.type = type,
.parcel = parcel,
.var = var,
.min_sdk_version = min_sdk_version,
.write_to_parcel_flag =
is_return_value ? "android.os.Parcelable.PARCELABLE_WRITE_RETURN_VALUE" : "0",
});
}
static void GenerateWriteToParcel(std::shared_ptr<StatementBlock> addTo,
const AidlTypenames& typenames, const AidlTypeSpecifier& type,
const std::string& parcel, const std::string& var,
uint32_t min_sdk_version, bool is_return_value) {
string code;
GenerateWriteToParcel(*CodeWriter::ForString(&code), typenames, type, parcel, var,
min_sdk_version, is_return_value);
addTo->Add(std::make_shared<LiteralStatement>(code));
}
void GenerateConstantDeclarations(CodeWriter& out, const AidlDefinedType& type) {
for (const auto& constant : type.GetConstantDeclarations()) {
const AidlTypeSpecifier& type = constant->GetType();
out << GenerateComments(*constant);
out << GenerateAnnotations(*constant);
out << "public static final " << type.Signature() << " " << constant->GetName() << " = "
<< constant->ValueString(ConstantValueDecorator) << ";\n";
}
}
static std::shared_ptr<Method> GenerateInterfaceMethod(const AidlInterface& iface,
const AidlMethod& method) {
auto decl = std::make_shared<Method>();
decl->comment = GenerateComments(method);
decl->modifiers = PUBLIC;
decl->returnType = JavaSignatureOf(method.GetType());
decl->name = method.GetName();
decl->annotations = JavaAnnotationsFor(method);
// If the interface has some permission annotation, add it to the method.
if (auto iface_annotation = JavaPermissionAnnotation(iface); iface_annotation) {
decl->annotations.push_back(*iface_annotation);
}
for (const std::unique_ptr<AidlArgument>& arg : method.GetArguments()) {
auto var = std::make_shared<Variable>(JavaSignatureOf(arg->GetType()), arg->GetName());
var->annotations = JavaAnnotationsFor(arg->GetType());
decl->parameters.push_back(var);
}
decl->exceptions.push_back("android.os.RemoteException");
return decl;
}
// Visitor for the permission declared in the @EnforcePermission annotation.
class PermissionVisitor {
public:
PermissionVisitor(CodeWriter* code, const AidlMethod& method) : code_(code), method_(method) {}
~PermissionVisitor() {
code_->Dedent();
*code_ << "}\n";
}
string Credentials() const { return "getCallingPid(), getCallingUid()"; }
void Prologue() {
*code_ << "/** Helper method to enforce permissions for " << method_.GetName() << " */\n";
*code_ << "protected void " << method_.GetName() << "_enforcePermission() "
<< "throws SecurityException {\n";
code_->Indent();
}
void AddStaticArrayPermissions(const std::vector<std::string>& permissions) {
*code_ << "static final String[] PERMISSIONS_" << method_.GetName() << " = {"
<< Join(permissions, ", ") << "};\n";
}
void operator()(const perm::AllOf& quantifier) {
std::vector<std::string> permissions;
permissions.reserve(quantifier.operands.size());
for (auto const& permission : quantifier.operands) {
permissions.push_back(android::aidl::perm::JavaFullName(permission));
}
AddStaticArrayPermissions(permissions);
Prologue();
*code_ << "mEnforcer.enforcePermissionAllOf(PERMISSIONS_" << method_.GetName() << ", "
<< Credentials() << ");\n";
}
void operator()(const perm::AnyOf& quantifier) {
std::vector<std::string> permissions;
permissions.reserve(quantifier.operands.size());
for (auto const& permission : quantifier.operands) {
permissions.push_back(android::aidl::perm::JavaFullName(permission));
}
AddStaticArrayPermissions(permissions);
Prologue();
*code_ << "mEnforcer.enforcePermissionAnyOf(PERMISSIONS_" << method_.GetName() << ", "
<< Credentials() << ");\n";
}
void operator()(const std::string& permission) {
auto permissionName = android::aidl::perm::JavaFullName(permission);
Prologue();
*code_ << "mEnforcer.enforcePermission(" << permissionName << ", " << Credentials() << ");\n";
}
private:
CodeWriter* code_;
const AidlMethod& method_;
};
static void GeneratePermissionMethod(const AidlInterface& iface, const AidlMethod& method,
const std::shared_ptr<Class>& addTo) {
string code;
CodeWriterPtr writer = CodeWriter::ForString(&code);
if (auto ifacePermExpr = iface.EnforceExpression(); ifacePermExpr) {
std::visit(PermissionVisitor(writer.get(), method), *ifacePermExpr.get());
} else if (auto methodPermExpr = method.GetType().EnforceExpression(); methodPermExpr) {
std::visit(PermissionVisitor(writer.get(), method), *methodPermExpr.get());
}
writer->Close();
addTo->elements.push_back(std::make_shared<LiteralClassElement>(code));
}
static void GenerateStubCode(const AidlMethod& method, bool oneway,
std::shared_ptr<Variable> transact_data,
std::shared_ptr<Variable> transact_reply,
const AidlTypenames& typenames,
std::shared_ptr<StatementBlock> statement_block,
const Options& options) {
// try and finally
auto& statements = statement_block;
auto realCall = std::make_shared<MethodCall>(THIS_VALUE, method.GetName());
// args
VariableFactory stubArgs("_arg");
{
// keep this across different args in order to create the classloader
// at most once.
bool is_classloader_created = false;
for (const std::unique_ptr<AidlArgument>& arg : method.GetArguments()) {
std::shared_ptr<Variable> v = stubArgs.Get(arg->GetType());
statements->Add(std::make_shared<VariableDeclaration>(v));
string code;
CodeWriterPtr writer = CodeWriter::ForString(&code);
if (arg->GetDirection() & AidlArgument::IN_DIR) {
// "in/inout" parameter should be created from parcel.
CodeGeneratorContext context{.writer = *(writer.get()),
.typenames = typenames,
.type = arg->GetType(),
.parcel = transact_data->name,
.var = v->name,
.min_sdk_version = options.GetMinSdkVersion(),
.is_classloader_created = &is_classloader_created};
CreateFromParcelFor(context);
} else {
// "out" parameter should be instantiated before calling the real impl.
string java_type = InstantiableJavaSignatureOf(arg->GetType());
if (arg->GetType().IsDynamicArray()) {
// dynamic array should be created with a passed length.
string var_length = v->name + "_length";
(*writer) << "int " << var_length << " = data.readInt();\n";
(*writer) << "if (" << var_length << " < 0) {\n";
(*writer) << " " << v->name << " = null;\n";
(*writer) << "} else {\n";
(*writer) << " " << v->name << " = new " << java_type << "[" << var_length << "];\n";
(*writer) << "}\n";
} else if (arg->GetType().IsFixedSizeArray()) {
// fixed-size array can be created with a known size
string dimensions;
for (auto dim : arg->GetType().GetFixedSizeArrayDimensions()) {
dimensions += "[" + std::to_string(dim) + "]";
}
(*writer) << v->name << " = new " << java_type << dimensions << ";\n";
} else {
// otherwise, create a new instance with a default constructor
(*writer) << v->name << " = new " << java_type << "();\n";
}
}
writer->Close();
statements->Add(std::make_shared<LiteralStatement>(code));
realCall->arguments.push_back(v);
}
}
// EOF check
if (!method.GetArguments().empty() && options.GetMinSdkVersion() > 32u) {
statements->Add(std::make_shared<MethodCall>(transact_data, "enforceNoDataAvail"));
}
// the real call
if (method.GetType().GetName() == "void") {
statements->Add(realCall);
if (!oneway) {
// report that there were no exceptions
auto ex = std::make_shared<MethodCall>(transact_reply, "writeNoException");
statements->Add(ex);
}
} else {
auto _result = std::make_shared<Variable>(JavaSignatureOf(method.GetType()), "_result");
statements->Add(std::make_shared<VariableDeclaration>(_result, realCall));
if (!oneway) {
// report that there were no exceptions
auto ex = std::make_shared<MethodCall>(transact_reply, "writeNoException");
statements->Add(ex);
}
// marshall the return value
GenerateWriteToParcel(statements, typenames, method.GetType(), transact_reply->name,
_result->name, options.GetMinSdkVersion(), /*is_return_value=*/true);
}
// out parameters
int i = 0;
for (const std::unique_ptr<AidlArgument>& arg : method.GetArguments()) {
std::shared_ptr<Variable> v = stubArgs.Get(i++);
if (arg->GetDirection() & AidlArgument::OUT_DIR) {
GenerateWriteToParcel(statements, typenames, arg->GetType(), transact_reply->name, v->name,
options.GetMinSdkVersion(), /*is_return_value=*/true);
}
}
}
static void GenerateStubCase(const AidlMethod& method, const std::string& transactCodeName,
bool oneway, const std::shared_ptr<StubClass>& stubClass,
const AidlTypenames& typenames, const Options& options) {
auto c = std::make_shared<Case>(transactCodeName);
GenerateStubCode(method, oneway, stubClass->transact_data, stubClass->transact_reply, typenames,
c->statements, options);
c->statements->Add(std::make_shared<BreakStatement>());
stubClass->transact_switch_user->cases.push_back(c);
}
static void GenerateStubCaseOutline(const AidlMethod& method, const std::string& transactCodeName,
bool oneway, const std::shared_ptr<StubClass>& stubClass,
const AidlTypenames& typenames, const Options& options) {
std::string outline_name = "onTransact$" + method.GetName() + "$";
// Generate an "outlined" method with the actual code.
{
auto transact_data = std::make_shared<Variable>("android.os.Parcel", "data");
auto transact_reply = std::make_shared<Variable>("android.os.Parcel", "reply");
auto onTransact_case = std::make_shared<Method>();
onTransact_case->modifiers = PRIVATE;
onTransact_case->returnType = "boolean";
onTransact_case->name = outline_name;
onTransact_case->parameters.push_back(transact_data);
onTransact_case->parameters.push_back(transact_reply);
onTransact_case->statements = std::make_shared<StatementBlock>();
onTransact_case->exceptions.push_back("android.os.RemoteException");
stubClass->elements.push_back(onTransact_case);
GenerateStubCode(method, oneway, transact_data, transact_reply, typenames,
onTransact_case->statements, options);
onTransact_case->statements->Add(std::make_shared<ReturnStatement>(TRUE_VALUE));
}
// Generate the case dispatch.
{
auto c = std::make_shared<Case>(transactCodeName);
auto helper_call =
std::make_shared<MethodCall>(THIS_VALUE, outline_name,
std::vector<std::shared_ptr<Expression>>{
stubClass->transact_data, stubClass->transact_reply});
c->statements->Add(std::make_shared<ReturnStatement>(helper_call));
stubClass->transact_switch_user->cases.push_back(c);
}
}
template <typename Formatter>
static std::string ArgList(const AidlMethod& method, Formatter formatter) {
vector<string> args;
for (const auto& arg : method.GetArguments()) {
args.push_back(std::invoke(formatter, *arg));
}
return Join(args, ", ");
}
static std::string FormatArgForDecl(const AidlArgument& arg) {
return JavaSignatureOf(arg.GetType()) + " " + arg.GetName();
}
static void GenerateProxyMethod(CodeWriter& out, const AidlInterface& iface,
const AidlMethod& method, const std::string& transactCodeName,
bool oneway, const AidlTypenames& typenames,
const Options& options) {
bool is_void = method.GetType().GetName() == "void";
out << GenerateComments(method);
out << "@Override public " << JavaSignatureOf(method.GetType()) << " " << method.GetName() << "("
<< ArgList(method, FormatArgForDecl) << ") throws android.os.RemoteException\n{\n";
out.Indent();
// the parcels
if (options.GenRpc()) {
out << "android.os.Parcel _data = android.os.Parcel.obtain(asBinder());\n";
} else {
out << "android.os.Parcel _data = android.os.Parcel.obtain();\n";
}
if (iface.IsSensitiveData()) {
out << "_data.markSensitive();\n";
}
if (!oneway) {
out << "android.os.Parcel _reply = android.os.Parcel.obtain();\n";
}
// the return value
if (!is_void) {
out << JavaSignatureOf(method.GetType()) << " _result;\n";
}
out << "try {\n";
out.Indent();
// the interface identifier token: the DESCRIPTOR constant, marshalled as a
// string
out << "_data.writeInterfaceToken(DESCRIPTOR);\n";
// the parameters
for (const std::unique_ptr<AidlArgument>& arg : method.GetArguments()) {
AidlArgument::Direction dir = arg->GetDirection();
if (dir == AidlArgument::OUT_DIR && arg->GetType().IsDynamicArray()) {
// In Java we pass a pre-allocated array for an 'out' argument. For transaction,
// we pass the size of the array so that the remote can allocate the array with the same size.
out << "_data.writeInt(" << arg->GetName() << ".length);\n";
} else if (dir & AidlArgument::IN_DIR) {
GenerateWriteToParcel(out, typenames, arg->GetType(), "_data", arg->GetName(),
options.GetMinSdkVersion(), /*is_return_value=*/false);
}
}
std::vector<std::string> flags;
if (oneway) flags.push_back("android.os.IBinder.FLAG_ONEWAY");
if (iface.IsSensitiveData()) flags.push_back("android.os.IBinder.FLAG_CLEAR_BUF");
// the transact call
out << "boolean _status = mRemote.transact(Stub." << transactCodeName << ", _data, "
<< (oneway ? "null" : "_reply") << ", " << (flags.empty() ? "0" : Join(flags, " | "))
<< ");\n";
// TODO(b/151102494): annotation is applied on the return type
if (method.GetType().IsPropagateAllowBlocking() && !oneway) {
if (options.GetMinSdkVersion() < JAVA_PROPAGATE_VERSION) {
out << "if (android.os.Build.VERSION.SDK_INT >= " + std::to_string(JAVA_PROPAGATE_VERSION) +
") { _reply.setPropagateAllowBlocking(); }\n";
} else {
out << "_reply.setPropagateAllowBlocking();\n";
}
}
// If the transaction returns false, which means UNKNOWN_TRANSACTION, fall back to the local
// method in the default impl, if set before. Otherwise, throw a RuntimeException if the interface
// is versioned. We can't throw the exception for unversioned interface because that would be an
// app breaking change.
if (iface.IsJavaDefault() || options.Version() > 0) {
out << "if (!_status) {\n";
out.Indent();
if (iface.IsJavaDefault()) {
out << "if (getDefaultImpl() != null) {\n";
out.Indent();
if (is_void) {
out << "getDefaultImpl()." << method.GetName() << "("
<< ArgList(method, &AidlArgument::GetName) << ");\n";
out << "return;\n";
} else {
out << "return getDefaultImpl()." << method.GetName() << "("
<< ArgList(method, &AidlArgument::GetName) << ");\n";
}
out.Dedent();
out << "}\n";
}
// TODO(b/274144762): we shouldn't have different behavior for versioned interfaces
// also this set to false for all exceptions, not just unimplemented methods.
if (options.Version() > 0) {
out << "throw new android.os.RemoteException(\"Method " << method.GetName()
<< " is unimplemented.\");\n";
}
out.Dedent();
out << "}\n";
}
if (!oneway) {
// keep this across return value and arguments in order to create the
// classloader at most once.
bool is_classloader_created = false;
// throw back exceptions.
out << "_reply.readException();\n";
if (!is_void) {
CreateFromParcelFor(CodeGeneratorContext{.writer = out,
.typenames = typenames,
.type = method.GetType(),
.parcel = "_reply",
.var = "_result",
.min_sdk_version = options.GetMinSdkVersion(),
.is_classloader_created = &is_classloader_created});
}
// the out/inout parameters
for (const std::unique_ptr<AidlArgument>& arg : method.GetArguments()) {
if (arg->GetDirection() & AidlArgument::OUT_DIR) {
ReadFromParcelFor(CodeGeneratorContext{.writer = out,
.typenames = typenames,
.type = arg->GetType(),
.parcel = "_reply",
.var = arg->GetName(),
.min_sdk_version = options.GetMinSdkVersion(),
.is_classloader_created = &is_classloader_created});
}
}
}
out.Dedent();
out << "}\nfinally {\n";
out.Indent();
// returning and cleanup
if (!oneway) {
out << "_reply.recycle();\n";
}
out << "_data.recycle();\n";
out.Dedent();
out << "}\n"; // finally
if (!is_void) {
out << "return _result;\n";
}
out.Dedent();
out << "}\n"; // method body
}
static void GenerateMethods(const AidlInterface& iface, const AidlMethod& method, Class* interface,
std::shared_ptr<StubClass> stubClass,
std::shared_ptr<ProxyClass> proxyClass, int index,
const AidlTypenames& typenames, const Options& options) {
const bool oneway = method.IsOneway();
// == the TRANSACT_ constant =============================================
string transactCodeName = "TRANSACTION_";
transactCodeName += method.GetName();
auto transactCode =
std::make_shared<Field>(STATIC | FINAL, std::make_shared<Variable>("int", transactCodeName));
transactCode->value =
StringPrintf("(android.os.IBinder.FIRST_CALL_TRANSACTION + %d)", index);
stubClass->elements.push_back(transactCode);
// getTransactionName
if (options.GenTransactionNames() || options.GenTraces()) {
auto c = std::make_shared<Case>(transactCodeName);
c->statements->Add(std::make_shared<ReturnStatement>(
std::make_shared<StringLiteralExpression>(method.GetName())));
stubClass->code_to_method_name_switch->cases.push_back(c);
}
// == the declaration in the interface ===================================
std::shared_ptr<ClassElement> decl;
if (method.IsUserDefined()) {
decl = GenerateInterfaceMethod(iface, method);
} else {
if (method.GetName() == kGetInterfaceVersion && options.Version() > 0) {
std::ostringstream code;
code << "public int " << kGetInterfaceVersion << "() "
<< "throws android.os.RemoteException;\n";
decl = std::make_shared<LiteralClassElement>(code.str());
}
if (method.GetName() == kGetInterfaceHash && !options.Hash().empty()) {
std::ostringstream code;
code << "public String " << kGetInterfaceHash << "() "
<< "throws android.os.RemoteException;\n";
decl = std::make_shared<LiteralClassElement>(code.str());
}
}
interface->elements.push_back(decl);
// == the stub method ====================================================
if (method.IsUserDefined()) {
bool outline_stub =
stubClass->transact_outline && stubClass->outline_methods.count(&method) != 0;
if (outline_stub) {
GenerateStubCaseOutline(method, transactCodeName, oneway, stubClass, typenames, options);
} else {
GenerateStubCase(method, transactCodeName, oneway, stubClass, typenames, options);
}
if (iface.EnforceExpression() || method.GetType().EnforceExpression()) {
GeneratePermissionMethod(iface, method, stubClass);
}
} else {
if (method.GetName() == kGetInterfaceVersion && options.Version() > 0) {
auto c = std::make_shared<Case>(transactCodeName);
std::ostringstream code;
code << "reply.writeNoException();\n"
<< "reply.writeInt(" << kGetInterfaceVersion << "());\n"
<< "return true;\n";
c->statements->Add(std::make_shared<LiteralStatement>(code.str()));
stubClass->transact_switch_meta->cases.push_back(c);
}
if (method.GetName() == kGetInterfaceHash && !options.Hash().empty()) {
auto c = std::make_shared<Case>(transactCodeName);
std::ostringstream code;
code << "reply.writeNoException();\n"
<< "reply.writeString(" << kGetInterfaceHash << "());\n"
<< "return true;\n";
c->statements->Add(std::make_shared<LiteralStatement>(code.str()));
stubClass->transact_switch_meta->cases.push_back(c);
}
}
// == the proxy method ===================================================
string proxy_code;
CodeWriterPtr writer = CodeWriter::ForString(&proxy_code);
CodeWriter& code = *writer;
if (method.IsUserDefined()) {
GenerateProxyMethod(code, iface, method, transactCodeName, oneway, typenames, options);
} else {
if (method.GetName() == kGetInterfaceVersion && options.Version() > 0) {
code << "@Override\n"
<< "public int " << kGetInterfaceVersion << "()"
<< " throws "
<< "android.os.RemoteException {\n"
<< " if (mCachedVersion == -1) {\n";
if (options.GenRpc()) {
code << " android.os.Parcel data = android.os.Parcel.obtain(asBinder());\n";
} else {
code << " android.os.Parcel data = android.os.Parcel.obtain();\n";
}
code << " android.os.Parcel reply = android.os.Parcel.obtain();\n"
<< " try {\n"
<< " data.writeInterfaceToken(DESCRIPTOR);\n"
<< " boolean _status = mRemote.transact(Stub." << transactCodeName << ", "
<< "data, reply, 0);\n";
if (iface.IsJavaDefault()) {
code << " if (!_status) {\n"
<< " if (getDefaultImpl() != null) {\n"
<< " return getDefaultImpl().getInterfaceVersion();\n"
<< " }\n"
<< " }\n";
}
code << " reply.readException();\n"
<< " mCachedVersion = reply.readInt();\n"
<< " } finally {\n"
<< " reply.recycle();\n"
<< " data.recycle();\n"
<< " }\n"
<< " }\n"
<< " return mCachedVersion;\n"
<< "}\n";
}
if (method.GetName() == kGetInterfaceHash && !options.Hash().empty()) {
code << "@Override\n"
<< "public synchronized String " << kGetInterfaceHash << "()"
<< " throws "
<< "android.os.RemoteException {\n"
<< " if (\"-1\".equals(mCachedHash)) {\n";
if (options.GenRpc()) {
code << " android.os.Parcel data = android.os.Parcel.obtain(asBinder());\n";
} else {
code << " android.os.Parcel data = android.os.Parcel.obtain();\n";
}
code << " android.os.Parcel reply = android.os.Parcel.obtain();\n"
<< " try {\n"
<< " data.writeInterfaceToken(DESCRIPTOR);\n"