blob: 86dd5c4f4b3c73703a3a683a5e4bb3f380de7b3c [file] [log] [blame]
Dianne Hackborn1941a402016-08-29 12:30:43 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "ShellCallback"
18
Nick Kralevichec9ec7d2016-12-17 19:47:27 -080019#include <unistd.h>
20#include <fcntl.h>
21
Dianne Hackborn1941a402016-08-29 12:30:43 -070022#include <binder/IShellCallback.h>
23
24#include <utils/Log.h>
25#include <binder/Parcel.h>
26#include <utils/String8.h>
27
Dianne Hackborn1941a402016-08-29 12:30:43 -070028namespace android {
29
30// ----------------------------------------------------------------------
31
32class BpShellCallback : public BpInterface<IShellCallback>
33{
34public:
35 explicit BpShellCallback(const sp<IBinder>& impl)
36 : BpInterface<IShellCallback>(impl)
37 {
38 }
39
Dianne Hackborn4217f8e2017-10-30 14:31:41 -070040 virtual int openFile(const String16& path, const String16& seLinuxContext,
41 const String16& mode) {
Dianne Hackborn1941a402016-08-29 12:30:43 -070042 Parcel data, reply;
43 data.writeInterfaceToken(IShellCallback::getInterfaceDescriptor());
44 data.writeString16(path);
45 data.writeString16(seLinuxContext);
Dianne Hackborn4217f8e2017-10-30 14:31:41 -070046 data.writeString16(mode);
Dianne Hackborn1941a402016-08-29 12:30:43 -070047 remote()->transact(OP_OPEN_OUTPUT_FILE, data, &reply, 0);
48 reply.readExceptionCode();
49 int fd = reply.readParcelFileDescriptor();
Nick Kralevichec9ec7d2016-12-17 19:47:27 -080050 return fd >= 0 ? fcntl(fd, F_DUPFD_CLOEXEC, 0) : fd;
Dianne Hackborn1941a402016-08-29 12:30:43 -070051
52 }
53};
54
Jooyung Hanc91e3cb2020-11-25 06:38:17 +090055IMPLEMENT_META_INTERFACE(ShellCallback, "com.android.internal.os.IShellCallback")
Dianne Hackborn1941a402016-08-29 12:30:43 -070056
57// ----------------------------------------------------------------------
58
Jiyong Parkb86c8662018-10-29 23:01:57 +090059// NOLINTNEXTLINE(google-default-arguments)
Dianne Hackborn1941a402016-08-29 12:30:43 -070060status_t BnShellCallback::onTransact(
61 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
62{
63 switch(code) {
64 case OP_OPEN_OUTPUT_FILE: {
65 CHECK_INTERFACE(IShellCallback, data, reply);
66 String16 path(data.readString16());
67 String16 seLinuxContext(data.readString16());
Dianne Hackborn4217f8e2017-10-30 14:31:41 -070068 String16 mode(data.readString16());
69 int fd = openFile(path, seLinuxContext, mode);
Yi Kongfdd8da92018-06-07 17:52:27 -070070 if (reply != nullptr) {
Dianne Hackborn1941a402016-08-29 12:30:43 -070071 reply->writeNoException();
72 if (fd >= 0) {
73 reply->writeInt32(1);
74 reply->writeParcelFileDescriptor(fd, true);
75 } else {
76 reply->writeInt32(0);
77 }
78 } else if (fd >= 0) {
79 close(fd);
80 }
81 return NO_ERROR;
82 } break;
83 default:
84 return BBinder::onTransact(code, data, reply, flags);
85 }
86}
87
Steven Moreland61ff8492019-09-26 16:05:45 -070088} // namespace android