12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU General Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- #include "interface/Iface.h"
- #include "interface/tuntap/AndroidWrapper.h"
- #include "util/platform/Sockaddr.h"
- #include "memory/Allocator.h"
- #include "util/Assert.h"
- #include "util/Identity.h"
- #include "wire/Ethernet.h"
- #include "wire/Headers.h"
- #include "wire/Message.h"
- #include "wire/Error.h"
- /**
- * Android VpnService is expect you to read/write packet from the tun device
- * file description opened by system process rather than in the cjd process,
- * this InterfaceWrapper handle this case.
- */
- struct AndroidWrapper_pvt
- {
- struct AndroidWrapper pub;
- struct Log* logger;
- Identity
- };
- Iface_DEFUN AndroidWrapper_incomingFromWire(struct Message* msg, struct Iface* externalIf)
- {
- struct AndroidWrapper_pvt* ctx =
- Identity_containerOf(externalIf, struct AndroidWrapper_pvt, pub.externalIf);
- if (!ctx->pub.internalIf.connectedIf) {
- Log_debug(ctx->logger, "DROP message for android tun not inited");
- return Error(msg, "UNHANDLED");
- }
- int version = Headers_getIpVersion(msg->msgbytes);
- uint16_t ethertype = 0;
- if (version == 4) {
- ethertype = Ethernet_TYPE_IP4;
- } else if (version == 6) {
- ethertype = Ethernet_TYPE_IP6;
- } else {
- Log_debug(ctx->logger, "Message is not IP/IPv6, dropped.");
- return Error(msg, "INVALID not IP");
- }
- Er_assert(Message_eshift(msg, 4));
- ((uint16_t*) msg->msgbytes)[0] = 0;
- ((uint16_t*) msg->msgbytes)[1] = ethertype;
- return Iface_next(&ctx->pub.internalIf, msg);
- }
- Iface_DEFUN AndroidWrapper_incomingFromUs(struct Message* msg, struct Iface* internalIf)
- {
- struct AndroidWrapper_pvt* ctx =
- Identity_containerOf(internalIf, struct AndroidWrapper_pvt, pub.internalIf);
- if (!ctx->pub.externalIf.connectedIf) {
- Log_debug(ctx->logger, "DROP message for android tun not inited");
- return Error(msg, "UNHANDLED");
- }
- Er_assert(Message_eshift(msg, -4));
- return Iface_next(&ctx->pub.externalIf, msg);
- }
- struct AndroidWrapper* AndroidWrapper_new(struct Allocator* alloc, struct Log* log)
- {
- return NULL;
- }
|