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
|
/*
* Copyright (C) 2015 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.
*/
#define LOG_TAG "IpPrefix"
#include <binder/IpPrefix.h>
#include <vector>
#include <binder/IBinder.h>
#include <binder/Parcel.h>
#include <log/log.h>
#include <utils/Errors.h>
using android::BAD_TYPE;
using android::BAD_VALUE;
using android::NO_ERROR;
using android::Parcel;
using android::status_t;
using android::UNEXPECTED_NULL;
namespace android {
namespace net {
#define RETURN_IF_FAILED(calledOnce) \
{ \
status_t returnStatus = calledOnce; \
if (returnStatus) { \
ALOGE("Failed at %s:%d (%s)", __FILE__, __LINE__, __func__); \
return returnStatus; \
} \
}
status_t IpPrefix::writeToParcel(Parcel* parcel) const {
/*
* Keep implementation in sync with writeToParcel() in
* frameworks/base/core/java/android/net/IpPrefix.java.
*/
std::vector<uint8_t> byte_vector;
if (mIsIpv6) {
const uint8_t* bytes = reinterpret_cast<const uint8_t*>(&mUnion.mIn6Addr);
byte_vector.insert(byte_vector.end(), bytes, bytes+sizeof(mUnion.mIn6Addr));
} else {
const uint8_t* bytes = reinterpret_cast<const uint8_t*>(&mUnion.mInAddr);
byte_vector.insert(byte_vector.end(), bytes, bytes+sizeof(mUnion.mIn6Addr));
}
RETURN_IF_FAILED(parcel->writeByteVector(byte_vector));
RETURN_IF_FAILED(parcel->writeInt32(static_cast<int32_t>(mPrefixLength)));
return NO_ERROR;
}
status_t IpPrefix::readFromParcel(const Parcel* parcel) {
/*
* Keep implementation in sync with readFromParcel() in
* frameworks/base/core/java/android/net/IpPrefix.java.
*/
std::vector<uint8_t> byte_vector;
RETURN_IF_FAILED(parcel->readByteVector(&byte_vector));
RETURN_IF_FAILED(parcel->readInt32(&mPrefixLength));
if (byte_vector.size() == 16) {
mIsIpv6 = true;
memcpy((void*)&mUnion.mIn6Addr, &byte_vector[0], sizeof(mUnion.mIn6Addr));
} else if (byte_vector.size() == 4) {
mIsIpv6 = false;
memcpy((void*)&mUnion.mInAddr, &byte_vector[0], sizeof(mUnion.mInAddr));
} else {
ALOGE("Failed at %s:%d (%s)", __FILE__, __LINE__, __func__); \
return BAD_VALUE;
}
return NO_ERROR;
}
const struct in6_addr& IpPrefix::getAddressAsIn6Addr() const
{
return mUnion.mIn6Addr;
}
const struct in_addr& IpPrefix::getAddressAsInAddr() const
{
return mUnion.mInAddr;
}
bool IpPrefix::getAddressAsIn6Addr(struct in6_addr* addr) const
{
if (isIpv6()) {
*addr = mUnion.mIn6Addr;
return true;
}
return false;
}
bool IpPrefix::getAddressAsInAddr(struct in_addr* addr) const
{
if (isIpv4()) {
*addr = mUnion.mInAddr;
return true;
}
return false;
}
bool IpPrefix::isIpv6() const
{
return mIsIpv6;
}
bool IpPrefix::isIpv4() const
{
return !mIsIpv6;
}
int32_t IpPrefix::getPrefixLength() const
{
return mPrefixLength;
}
void IpPrefix::setAddress(const struct in6_addr& addr)
{
mUnion.mIn6Addr = addr;
mIsIpv6 = true;
}
void IpPrefix::setAddress(const struct in_addr& addr)
{
mUnion.mInAddr = addr;
mIsIpv6 = false;
}
void IpPrefix::setPrefixLength(int32_t prefix)
{
mPrefixLength = prefix;
}
bool operator==(const IpPrefix& lhs, const IpPrefix& rhs)
{
if (lhs.mIsIpv6 != rhs.mIsIpv6) {
return false;
}
if (lhs.mPrefixLength != rhs.mPrefixLength) {
return false;
}
if (lhs.mIsIpv6) {
return 0 == memcmp(lhs.mUnion.mIn6Addr.s6_addr, rhs.mUnion.mIn6Addr.s6_addr, sizeof(struct in6_addr));
}
return 0 == memcmp(&lhs.mUnion.mInAddr, &rhs.mUnion.mInAddr, sizeof(struct in_addr));
}
} // namespace net
} // namespace android
|