aboutsummaryrefslogtreecommitdiff
path: root/src/modem.c
blob: b2e7dbd4e3ae2ac2311be4093b77b8107de19bea (plain)
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
/*
 * modem.c
 * (c) 2019, Jonas Gunz, jonasgunz.de
 * <Description>
 * <License>
*/

#include "modem.h"

int modem_accept_wait(int fd)
{
	if(!fd)
		return 1;

	char buff[128];
	int ret;		//for retturn values
	struct pollfd fds;	//poll struct
	int cnt = 0;		//read byte counter

	fds.fd = fd;
	fds.events = POLLIN;

	write(fd, _AT_ECHO_OFF, strlen(_AT_ECHO_OFF) );

	int ok = 0;
	while(1) {
		ret = poll(&fds, 1, 1000);
		if (ret)
			cnt = read(fd, buff, 128); //Dummy read from _AT_ECHO_OFF, should say OK
		else 
			break;


		if( strstr(buff, "OK") )
			ok = 1;
	}

	if(! ok )
		return 3;

	printf("Modem OK\n");

	while ( 1 ) { //wait for RING
		ret = poll(&fds, 1, 2000); //poll in 2s interval
		if(ret) {
			cnt = read ( fd, buff, 128 );
			if(strstr(buff, "RING"))
					break;
		}
	}

	printf("Modem RINGING\n");

	write (fd, _AT_ANSWER, strlen(_AT_ANSWER)); //Accept incoming call
	ret = poll(&fds, 1, 30000);
	if(ret) {
		cnt = read (fd, buff, 128);
		if(strstr(buff, "CONNECT"))
			return 0;
		else
			return 4;
	}

	return 5;
}

int modem_hang(int fd)
{
}

int modem_run(int fd, int argc, char* argv[])
{
	int in[2];
	int out[2];

	//1: write, 0: read
	if(pipe(in) == -1)
		return 1;
	
	if(pipe(out) == -1)
		return 1;
	
	pid_t pid = fork();
	
	if(pid == 0) {//child
		close (in[1]);
		close (out[0]);

		dup2 (in[0],  STDIN_FILENO);
		dup2 (out[1], STDOUT_FILENO);
		
		printf("EXEC ERROR\n\n");
		exit(0);
	}
	else if (pid < 0) {//error
		return 2;
	}
	else {//parent
		int buffsize = 128;
		char buff[ buffsize ];

		close (in[0]);
		close (out[1]);

		//setup poll to listen for input
		struct pollfd fds[2];
		fds[0].fd = out[0];
		fds[0].events = POLLIN;
		fds[1].fd = fd;
		fds[1].events = POLLIN;

		while(1)
		{
			int ret = poll (fds, 2, 100);

			if ( fds[0].revents & POLLIN ) {
				int cnt = read (out[0], buff, buffsize);
				if(cnt) {
					while(1) { //replace +++ to not trigger modem command mode
						char *str = strstr(buff, "+++");
						if(str)
							str[1] = '*';
					}

					write(fd, buff, cnt);
				}
			}
			if ( fds[1].revents & POLLIN ) {
				int cnt = read (fd, buff, buffsize);
				if(cnt) {
					while(1) { //search for modem error message
						char *str = strstr(buff, "NO CARRIER");
						if(str) { //Exit if message found
							return 0;
						}
					}

					write(in[1], buff, cnt);
				}
			}

			if(kill(pid,0)) //Check if child is still alive, if not return.
				return 0;
		}
	}

}