c2111803c1ce8cac6d068b82ca7659307aa2bef5
[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-2010 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 "conky.h"
32 #include "logging.h"
33 #include "text_object.h"
34 #include <netdb.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <unistd.h>
38 #include <netinet/in.h>
39
40 struct read_tcp_data {
41         char *host;
42         unsigned int port;
43 };
44
45 void parse_read_tcp_arg(struct text_object *obj, const char *arg, void *free_at_crash)
46 {
47         struct read_tcp_data *rtd;
48
49         rtd = malloc(sizeof(struct read_tcp_data));
50         memset(rtd, 0, sizeof(struct read_tcp_data));
51
52         rtd->host = malloc(text_buffer_size);
53         sscanf(arg, "%s", rtd->host);
54         sscanf(arg+strlen(rtd->host), "%u", &(rtd->port));
55         if(rtd->port == 0) {
56                 rtd->port = atoi(rtd->host);
57                 strcpy(rtd->host,"localhost");
58         }
59         if(rtd->port < 1 || rtd->port > 65535)
60                 CRIT_ERR(obj, free_at_crash, "read_tcp: Needs \"(host) port\" as argument(s)");
61
62         rtd->port = htons(rtd->port);
63         obj->data.opaque = rtd;
64 }
65
66 void print_read_tcp(struct text_object *obj, char *p, int p_max_size)
67 {
68         int sock, received;
69         struct sockaddr_in addr;
70         struct hostent* he;
71         fd_set readfds;
72         struct timeval tv;
73         struct read_tcp_data *rtd = obj->data.opaque;
74
75         if (!rtd)
76                 return;
77
78         if (!(he = gethostbyname(rtd->host))) {
79                 NORM_ERR("read_tcp: Problem with resolving the hostname");
80                 return;
81         }
82         if ((sock = socket(he->h_addrtype, SOCK_STREAM, 0)) == -1) {
83                 NORM_ERR("read_tcp: Couldn't create a socket");
84                 return;
85         }
86         memset(&addr, 0, sizeof(addr));
87         addr.sin_family = AF_INET;
88         addr.sin_port = rtd->port;
89         memcpy(&addr.sin_addr, he->h_addr, he->h_length);
90         if (connect(sock, (struct sockaddr*)&addr, sizeof(struct sockaddr)) != 0) {
91                 NORM_ERR("read_tcp: Couldn't create a connection");
92                 return;
93         }
94         FD_ZERO(&readfds);
95         FD_SET(sock, &readfds);
96         tv.tv_sec = 1;
97         tv.tv_usec = 0;
98         if(select(sock + 1, &readfds, NULL, NULL, &tv) > 0){
99                 received = recv(sock, p, p_max_size, 0);
100                 p[received] = 0;
101         }
102         close(sock);
103 }
104
105 void free_read_tcp(struct text_object *obj)
106 {
107         struct read_tcp_data *rtd = obj->data.opaque;
108
109         if (!rtd)
110                 return;
111
112         if (rtd->host)
113                 free(rtd->host);
114         free(obj->data.opaque);
115         obj->data.opaque = NULL;
116 }