blob: d636580702c8165e0ad0eb5666794f4665584169 [file] [log] [blame]
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001/*
2 * Copyright (C) 2014 TeamWin - bigbiff and Dees_Troy mtp database conversion to C++
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
18#include <string>
19#include <fcntl.h>
20#include <sys/wait.h>
21#include <pthread.h>
22#include <utils/Errors.h>
23#include <utils/threads.h>
24#include "MtpTypes.h"
25#include "MtpPacket.h"
26#include "MtpDataPacket.h"
27#include "MtpDatabase.h"
28#include "MtpRequestPacket.h"
29#include "MtpResponsePacket.h"
30#include "mtp_MtpDatabase.hpp"
31#include "mtp_MtpServer.hpp"
32#include "twrpMtp.hpp"
33#include "MtpDebug.h"
34
35#ifdef TWRPMTP
36static void usage(std::string prg) {
37 printf("Usage: %s <OPTIONS>\n", prg.c_str());
38 printf("Options:\n");
39 printf("\t-h, --help\t\tShow Usage\n");
40 printf("\t-s1, --storage1 /path/to/dir\t\tDestination to first storage directory\n");
41 printf("\t-s2, --storage2 /path/to/dir\t\tDestination to first storage directory\n");
42 printf("\t-sN, --storageN /path/to/dir\t\tDestination to first storage directory\n");
43}
44
45int main(int argc, char* argv[]) {
46 printf("argc: %d\n", argc);
47 if (argc < 2) {
48 usage(argv[0]);
49 return 1;
50 }
51
52 std::vector <std::string> storages;
53
54 for (int i = 1; i < argc; ++i) {
55 std::string arg = argv[i];
56 if ((arg == "-h") || (arg == "--help")) {
57 usage(argv[0]);
58 }
59 else {
60 storages.push_back(arg);
61 }
62 }
63 printf("starting\n");
64 twmtp_MtpServer* mtp = new twmtp_MtpServer();
65 mtp->set_storages(storages);
66 mtp->start();
67 return 0;
68}
69#endif //def TWRPMTP
70
Matt Mower72cf09d2015-11-12 01:29:58 -060071twrpMtp::twrpMtp(int debug_enabled) {
Ethan Yonker6d154c42014-09-03 14:19:43 -050072 if (debug_enabled)
73 MtpDebug::enableDebug();
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040074 mtpstorages = new storages;
Ethan Yonker726a0202014-12-16 20:01:38 -060075 mtp_read_pipe = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040076}
77
78int twrpMtp::start(void) {
79 MTPI("Starting MTP\n");
80 twmtp_MtpServer *mtp = new twmtp_MtpServer();
81 mtp->set_storages(mtpstorages);
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050082 mtp->set_device_info();
Ethan Yonker726a0202014-12-16 20:01:38 -060083 mtp->set_read_pipe(mtp_read_pipe);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040084 mtp->start();
85 return 0;
86}
87
Ethan Yonker8dfa7772014-09-04 21:48:41 -050088pthread_t twrpMtp::threadserver(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040089 pthread_t thread;
90 ThreadPtr mtpptr = &twrpMtp::start;
91 PThreadPtr p = *(PThreadPtr*)&mtpptr;
92 pthread_create(&thread, NULL, p, this);
93 return thread;
94}
95
Ethan Yonker726a0202014-12-16 20:01:38 -060096pid_t twrpMtp::forkserver(int mtppipe[2]) {
Ethan Yonker8dfa7772014-09-04 21:48:41 -050097 pid_t pid;
98 if ((pid = fork()) == -1) {
99 MTPE("MTP fork failed.\n");
100 return 0;
101 }
102 if (pid == 0) {
103 // Child process
Ethan Yonker726a0202014-12-16 20:01:38 -0600104 close(mtppipe[1]); // Child closes write side
105 mtp_read_pipe = mtppipe[0];
Ethan Yonker8dfa7772014-09-04 21:48:41 -0500106 start();
Ethan Yonker8613dc02014-09-11 09:28:20 -0500107 MTPD("MTP child process exited.\n");
Ethan Yonker726a0202014-12-16 20:01:38 -0600108 close(mtppipe[0]);
Ethan Yonker8613dc02014-09-11 09:28:20 -0500109 _exit(0);
Ethan Yonker8dfa7772014-09-04 21:48:41 -0500110 } else {
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -0500111 MTPD("MTP child PID: %d\n", pid);
Ethan Yonker8dfa7772014-09-04 21:48:41 -0500112 return pid;
113 }
114 return 0;
115}
116
bigbiff7cb4c332014-11-26 20:36:07 -0500117void twrpMtp::addStorage(std::string display, std::string path, int mtpid, uint64_t maxFileSize) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400118 s = new storage;
119 s->display = display;
120 s->mount = path;
121 s->mtpid = mtpid;
bigbiff7cb4c332014-11-26 20:36:07 -0500122 s->maxFileSize = maxFileSize;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400123 MTPD("twrpMtp mtpid: %d\n", s->mtpid);
124 mtpstorages->push_back(s);
125}