mail: convert to generic object payload
[monky] / src / read_tcp.c
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
2  * vim: ts=4 sw=4 noet ai cindent syntax=c
3  *
4  * Conky, a system monitor, based on torsmo
5  *
6  * Any original torsmo code is licensed under the BSD license
7  *
8  * All code written since the fork of torsmo is licensed under the GPL
9  *
10  * Please see COPYING for details
11  *
12  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
13  * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
14  *      (see AUTHORS)
15  * All rights reserved.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  * You should have received a copy of the GNU General Public License
27  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
28  *
29  */
30
31 #include "logging.h"
32 #include "text_object.h"
33 #include <netdb.h>
34
35 struct read_tcp_data {
36         char *host;
37         unsigned int port;
38 };
39
40 void parse_read_tcp_arg(struct text_object *obj, const char *arg, void *free_at_crash)
41 {
42         struct read_tcp_data *rtd;
43
44         rtd = malloc(sizeof(struct read_tcp_data));
45         memset(rtd, 0, sizeof(struct read_tcp_data));
46
47         rtd->host = malloc(text_buffer_size);
48         sscanf(arg, "%s", rtd->host);
49         sscanf(arg+strlen(rtd->host), "%u", &(rtd->port));
50         if(rtd->port == 0) {
51                 rtd->port = atoi(rtd->host);
52                 strcpy(rtd->host,"localhost");
53         }
54         if(rtd->port < 1 || rtd->port > 65535)
55                 CRIT_ERR(obj, free_at_crash, "read_tcp: Needs \"(host) port\" as argument(s)");
56
57         rtd->port = htons(rtd->port);
58         obj->data.opaque = rtd;
59 }
60
61 void print_read_tcp(struct text_object *obj, char *p, int p_max_size)
62 {
63         int sock, received;
64         struct sockaddr_in addr;
65         struct hostent* he;
66         fd_set readfds;
67         struct timeval tv;
68         struct read_tcp_data *rtd = obj->data.opaque;
69
70         if (!rtd)
71                 return;
72
73         if (!(he = gethostbyname(rtd->host))) {
74                 NORM_ERR("read_tcp: Problem with resolving the hostname");
75                 return;
76         }
77         if ((sock = socket(he->h_addrtype, SOCK_STREAM, 0)) == -1) {
78                 NORM_ERR("read_tcp: Couldn't create a socket");
79                 return;
80         }
81         memset(&addr, 0, sizeof(addr));
82         addr.sin_family = AF_INET;
83         addr.sin_port = rtd->port;
84         memcpy(&addr.sin_addr, he->h_addr, he->h_length);
85         if (!connect(sock, (struct sockaddr*)&addr, sizeof(struct sockaddr))) {
86                 NORM_ERR("read_tcp: Couldn't create a connection");
87                 return;
88         }
89         FD_ZERO(&readfds);
90         FD_SET(sock, &readfds);
91         tv.tv_sec = 1;
92         tv.tv_usec = 0;
93         if(select(sock + 1, &readfds, NULL, NULL, &tv) > 0){
94                 received = recv(sock, p, p_max_size, 0);
95                 p[received] = 0;
96         }
97         close(sock);
98 }
99
100 void free_read_tcp(struct text_object *obj)
101 {
102         struct read_tcp_data *rtd = obj->data.opaque;
103
104         if (!rtd)
105                 return;
106
107         if (rtd->host)
108                 free(rtd->host);
109         free(obj->data.opaque);
110         obj->data.opaque = NULL;
111 }