comment style
[psensor.git] / src / lib / hdd_atasmart.c
1 /*
2  * Copyright (C) 2010-2012 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19 #include <locale.h>
20 #include <libintl.h>
21 #define _(str) gettext(str)
22
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <sys/ioctl.h>
28 #include <sys/stat.h>
29 #include <sys/types.h>
30 #include <unistd.h>
31
32 #include <atasmart.h>
33 #include <linux/fs.h>
34
35 #include "pio.h"
36 #include "hdd.h"
37 #include "log.h"
38
39 static int filter_sd(const char *p)
40 {
41         return strlen(p) == 8 && !strncmp(p, "/dev/sd", 7);
42 }
43
44 static struct psensor *
45 create_sensor(char *id, char *name, SkDisk *disk, int values_max_length)
46 {
47         struct psensor *s;
48         s = psensor_create(id,
49                            strdup(name),
50                            SENSOR_TYPE_HDD_TEMP_ATASMART,
51                            values_max_length);
52
53         s->disk = disk;
54
55         return s;
56 }
57
58 /*
59  * Performs the same tests than sk_disk_open and outputs the result.
60  */
61 static void analyze_disk(const char *dname)
62 {
63         int f;
64         struct stat st;
65         uint64_t size;
66
67         log_debug("analyze_disk(hdd_atasmart): %s", dname);
68
69         f = open(dname, O_RDONLY|O_NOCTTY|O_NONBLOCK|O_CLOEXEC);
70
71         if (f < 0) {
72                 log_debug("Could not open file %s: %s", dname, strerror(errno));
73                 goto fail;
74         }
75
76         if (fstat(f, &st) < 0) {
77                 log_debug("fstat fails %s: %s", dname, strerror(errno));
78                 goto fail;
79         }
80
81         if (!S_ISBLK(st.st_mode)) {
82                 log_debug("!S_ISBLK fails %s", dname);
83                 goto fail;
84         }
85
86         size = (uint64_t)-1;
87         /* So, it's a block device. Let's make sure the ioctls work */
88         if (ioctl(f, BLKGETSIZE64, &size) < 0) {
89                 log_debug("ioctl fails %s: %s", dname, strerror(errno));
90                 goto fail;
91         }
92
93         if (size <= 0 || size == (uint64_t) -1) {
94                 log_debug("ioctl wrong size %s: %ld", dname, size);
95                 goto fail;
96         }
97
98  fail:
99         close(f);
100 }
101
102 struct psensor **hdd_psensor_list_add(struct psensor **sensors,
103                                       int values_max_length)
104 {
105         char **paths, **tmp, *id;
106         SkDisk *disk;
107         struct psensor *sensor, **tmp_sensors, **result;
108
109         log_debug("hdd_psensor_list_add(hdd_atasmart)");
110
111         paths = dir_list("/dev", filter_sd);
112
113         result = sensors;
114         tmp = paths;
115         while (*tmp) {
116                 log_debug("hdd_psensor_list_add(hdd_atasmart) open %s", *tmp);
117
118                 if (!sk_disk_open(*tmp, &disk)) {
119                         id = malloc(strlen("hdd at") + strlen(*tmp) + 1);
120                         strcpy(id, "hdd at");
121                         strcat(id, *tmp);
122
123                         sensor = create_sensor(id,
124                                                *tmp,
125                                                disk,
126                                                values_max_length);
127
128                         tmp_sensors = psensor_list_add(result, sensor);
129
130                         if (result != sensors)
131                                 free(result);
132
133                         result = tmp_sensors;
134                 } else {
135                         log_err("sk_disk_open %s failure", *tmp);
136                         analyze_disk(*tmp);
137                 }
138
139                 tmp++;
140         }
141
142         paths_free(paths);
143
144         return result;
145 }
146
147 void hdd_psensor_list_update(struct psensor **sensors)
148 {
149         struct psensor **cur, *s;
150         uint64_t kelvin;
151         int ret;
152         double c;
153
154         cur = sensors;
155         while (*cur) {
156                 s = *cur;
157                 if (s->type == SENSOR_TYPE_HDD_TEMP_ATASMART) {
158                         ret = sk_disk_smart_read_data(s->disk);
159
160                         if (!ret) {
161                                 ret = sk_disk_smart_get_temperature(s->disk,
162                                                                     &kelvin);
163
164                                 if (!ret) {
165                                         c = (kelvin - 273150) / 1000;
166                                         psensor_set_current_value(s, c);
167                                         log_debug("hdd_psensor_list_update(hdd_atasmart): %s %.2f",
168                                                   s->id,
169                                                   c);
170                                 }
171                         }
172                 }
173
174                 cur++;
175         }
176 }