/* This file is part of cputemp2maxfreq. Copyright (C) 2023-2024 pa4wdh cputemp2maxfreq is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License , or (at your option) any later version. cputemp2maxfreq is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with cputemp2maxfreq; see the file COPYING. If not, see . */ #include #include #include #include #include #include #include "debug.h" #include "cputemp2maxfreq.h" extern struct s_config config; int sysfs_read_str(char *sysfs_file,char *buf,size_t bufsize) { int sysfs_handle; ssize_t datalen; DEBUG1_SYSFS("Reading sysfs file %s\n",sysfs_file); // Open the file sysfs_handle=open(sysfs_file,O_RDONLY); DEBUG2_SYSFS("Open returned %d\n",sysfs_handle); if (sysfs_handle<0) return -1; // Read the content of the file datalen=read(sysfs_handle,buf,bufsize); HEXDUMP2_SYSFS(buf,datalen); close(sysfs_handle); buf[datalen]=0; // Strip newline if (buf[datalen-1]=='\n') { DEBUG2_SYSFS("Newline stripped\n"); datalen--; buf[datalen]=0; } return (int) datalen; } long int sysfs_read_long_int(char *sysfs_file) { char buf[255]; int datalen; // Read data datalen=sysfs_read_str(sysfs_file,buf,sizeof(buf)); if (datalen<0) return 0; // Convert to long int return strtoll((char*)&buf,NULL,10); } int sysfs_write_str(char *sysfs_file,char *value,long int checkdelay) { int sysfs_handle; ssize_t len; char buf[255]; DEBUG1_SYSFS("Writing %s to sysfs file %s\n",value,sysfs_file); // Open the file sysfs_handle=open(sysfs_file,O_WRONLY); DEBUG2_SYSFS("Open returned %d\n",sysfs_handle); if (sysfs_handle<0) return -1; // Write the data len=write(sysfs_handle,value,strlen(value)); if (len<0) { config.logger("Error %d occoured while writing to sysfs",errno); } close(sysfs_handle); DEBUG2_SYSFS("Written %zd bytes\n",len); // Wait if instructed to if (checkdelay>0) usleep((unsigned int) checkdelay); // Validate we actually set what we want to set sysfs_read_str(sysfs_file,buf,sizeof(buf)); DEBUG2_SYSFS("Content is now %s\n",buf); if (strncmp(value,buf,255)!=0) { DEBUG2_SYSFS("Set failed\n"); return -1; } DEBUG2_SYSFS("Set successfull\n"); return 0; }