desktop: show the modem pppd command in the modem script
[barry.git] / tools / pppob.cc
blob6bb8fe52b4e12bcb532d5a4a511449d027d7137a
1 ///
2 /// \file pppob.cc
3 /// In the same vein as pppoe, used with pppd to create a
4 /// pty tunnel and GPRS modem link.
5 ///
7 /*
8 Copyright (C) 2007-2012, Net Direct Inc. (http://www.netdirect.ca/)
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 See the GNU General Public License in the COPYING file at the
20 root directory of this project for more details.
23 #include <barry/barry.h>
24 #include <iomanip>
25 #include <iostream>
26 #include <fstream>
27 #include <vector>
28 #include <string>
29 #include <memory>
30 #include <stdlib.h>
31 #include <sys/select.h>
32 #include <sys/time.h>
33 #include <sys/types.h>
34 #include <unistd.h>
35 #include <signal.h>
36 #include "i18n.h"
38 #include "barrygetopt.h"
40 using namespace std;
41 using namespace Barry;
43 bool data_dump = false;
44 volatile bool signal_end = false;
46 void Usage()
48 int logical, major, minor;
49 const char *Version = Barry::Version(logical, major, minor);
51 cerr
52 << "pppob - PPP over Barry\n"
53 << " Copyright 2007-2012, Net Direct Inc. (http://www.netdirect.ca/)\n"
54 << " Using: " << Version << "\n"
55 << "\n"
56 << " -l file Direct pppob log output to file (useful with -v)\n"
57 << " -p pin PIN of device to talk with\n"
58 << " If only one device plugged in, this flag is optional\n"
59 << " -P pass Simplistic method to specify device password\n"
60 << " -s Use Serial mode instead of IpModem\n"
61 << " -v Dump protocol data during operation (debugging only!)\n"
62 << endl;
65 void signal_handler(int signum)
67 signal_end = true;
70 void SerialDataCallback(void *context, const unsigned char *data, int len)
72 if( len && data_dump )
73 barryverbose("ReadThread:\n" << Data(data, len));
75 while( len ) {
76 int written = write(1, data, len);
77 if( written > 0 ) {
78 len -= written;
79 data += written;
81 else {
82 barryverbose("Error in write()");
87 void ProcessStdin(Modem &modem)
89 // Read from stdin and write to USB, until
90 // stdin is closed
91 Data data;
92 int bytes_read;
93 fd_set rfds;
94 struct timeval tv;
95 int ret;
97 // Handle interrupt signals from pppd
98 signal_end = false;
99 signal(SIGINT, &signal_handler);
100 signal(SIGHUP, &signal_handler);
101 signal(SIGTERM, &signal_handler);
103 FD_ZERO(&rfds);
104 while( signal_end == false ) {
105 // Need to use select() here, so that pppd doesn't
106 // hang when it tries to set the line discipline
107 // on our stdin.
109 FD_SET(0, &rfds);
110 tv.tv_sec = 30;
111 tv.tv_usec = 0;
113 ret = select(1, &rfds, NULL, NULL, &tv);
114 if( ret == -1 ) {
115 perror("select()");
117 else if( ret && FD_ISSET(0, &rfds) ) {
118 bytes_read = read(0, data.GetBuffer(), data.GetBufSize());
119 if( bytes_read == 0 )
120 break;
122 if( bytes_read > 0 ) {
123 data.ReleaseBuffer(bytes_read);
124 modem.Write(data);
130 int main(int argc, char *argv[])
132 INIT_I18N(PACKAGE);
134 cout.sync_with_stdio(true); // leave this on, since libusb uses
135 // stdio for debug messages
137 try {
139 uint32_t pin = 0;
140 bool force_serial = false;
141 std::string logfile;
142 std::string password;
144 // process command line options
145 for(;;) {
146 int cmd = getopt(argc, argv, "l:p:P:sv");
147 if( cmd == -1 )
148 break;
150 switch( cmd )
152 case 'l': // Verbose log file
153 logfile = optarg;
154 break;
156 case 'p': // Blackberry PIN
157 pin = strtoul(optarg, NULL, 16);
158 break;
160 case 'P': // Device password
161 password = optarg;
162 break;
164 case 's': // Use Serial mode
165 force_serial = true;
166 break;
168 case 'v': // data dump on
169 data_dump = true;
170 break;
172 case 'h': // help
173 default:
174 Usage();
175 return 0;
179 // Initialize the barry library. Must be called before
180 // anything else.
181 // Log to stderr, since stdout is for data in this program.
182 std::auto_ptr<std::ofstream> log;
183 if( logfile.size() ) {
184 log.reset( new std::ofstream(logfile.c_str(), ios::app) );
185 Barry::Init(data_dump, log.get());
187 else {
188 Barry::Init(data_dump, &std::cerr);
191 // Display version if in data_dump mode
192 if( data_dump ) {
193 int logical, major, minor;
194 const char *Version = Barry::Version(logical, major, minor);
195 barryverbose(Version);
198 // Probe the USB bus for Blackberry devices and display.
199 // If user has specified a PIN, search for it in the
200 // available device list here as well
201 Barry::Probe probe;
202 int activeDevice = probe.FindActive(pin);
203 if( activeDevice == -1 ) {
204 if( pin )
205 cerr << "PIN " << setbase(16) << pin
206 << " not found" << endl;
207 cerr << "No device selected" << endl;
208 return 1;
211 const ProbeResult &device = probe.Get(activeDevice);
213 if( !force_serial && device.HasIpModem() ) {
214 barryverbose("Using IpModem mode...");
216 // Create our controller object using our threaded router.
217 Controller con(probe.Get(activeDevice));
219 // Open serial mode... the callback handles reading from
220 // USB and writing to stdout
221 Mode::IpModem modem(con, SerialDataCallback, 0);
222 modem.Open(password.c_str());
224 ProcessStdin(modem);
225 modem.Close(); // graceful close so we can restart without unplugging
227 else {
228 if( force_serial ) {
229 barryverbose("Using Serial mode per command line...");
231 else {
232 barryverbose("No IpModem mode available, using Serial mode...");
235 // Create our socket router and start thread to handle
236 // the USB reading, instead of creating our own thread.
237 SocketRoutingQueue router;
238 router.SpinoffSimpleReadThread();
240 // Create our controller object using our threaded router.
241 Controller con(probe.Get(activeDevice), router);
243 // Open desktop mode... this handles the password side
244 // of things
245 Mode::Desktop desktop(con);
246 desktop.Open(password.c_str());
248 // Open serial connection
249 Mode::Serial modem(con, SerialDataCallback, 0);
250 modem.Open(password.c_str());
252 ProcessStdin(modem);
255 barryverbose("Exiting");
258 catch( std::exception &e ) {
259 cerr << "exception caught in main(): " << e.what() << endl;
260 return 1;
263 return 0;