cfg.cpp 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. /* SLiM - Simple Login Manager
  2. Copyright (C) 2004-06 Simone Rota <sip@varlock.com>
  3. Copyright (C) 2004-06 Johannes Winkelmann <jw@tks6.net>
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. */
  9. #include <fstream>
  10. #include <string>
  11. #include <iostream>
  12. #include <unistd.h>
  13. #include <stdlib.h>
  14. #include <sys/types.h>
  15. #include <sys/stat.h>
  16. #include <dirent.h>
  17. #include "cfg.h"
  18. using namespace std;
  19. typedef pair<string,string> option;
  20. Cfg::Cfg()
  21. : currentSession(-1)
  22. {
  23. /* Configuration options */
  24. options.insert(option("default_path","/bin:/usr/bin:/usr/local/bin"));
  25. options.insert(option("default_xserver","/usr/bin/X"));
  26. options.insert(option("xserver_arguments",""));
  27. options.insert(option("numlock",""));
  28. options.insert(option("daemon",""));
  29. options.insert(option("xauth_path","/usr/bin/xauth"));
  30. options.insert(option("login_cmd","exec /bin/bash -login ~/.xinitrc %session"));
  31. options.insert(option("halt_cmd","/sbin/shutdown -h now"));
  32. options.insert(option("reboot_cmd","/sbin/shutdown -r now"));
  33. options.insert(option("suspend_cmd",""));
  34. options.insert(option("sessionstart_cmd",""));
  35. options.insert(option("sessionstop_cmd",""));
  36. options.insert(option("console_cmd","/usr/bin/xterm -C -fg white -bg black +sb -g %dx%d+%d+%d -fn %dx%d -T ""Console login"" -e /bin/sh -c ""/bin/cat /etc/issue; exec /bin/login"""));
  37. options.insert(option("screenshot_cmd","import -window root /slim.png"));
  38. options.insert(option("welcome_msg","Welcome to %host"));
  39. options.insert(option("session_msg","Session:"));
  40. options.insert(option("default_user",""));
  41. options.insert(option("focus_password","no"));
  42. options.insert(option("auto_login","no"));
  43. options.insert(option("current_theme","default"));
  44. options.insert(option("lockfile","/var/run/slim.lock"));
  45. options.insert(option("logfile","/var/log/slim.log"));
  46. options.insert(option("authfile","/var/run/slim.auth"));
  47. options.insert(option("shutdown_msg","The system is halting..."));
  48. options.insert(option("reboot_msg","The system is rebooting..."));
  49. options.insert(option("sessions","wmaker,blackbox,icewm"));
  50. options.insert(option("sessiondir",""));
  51. options.insert(option("hidecursor","false"));
  52. /* Theme stuff */
  53. options.insert(option("input_panel_x","50%"));
  54. options.insert(option("input_panel_y","40%"));
  55. options.insert(option("input_name_x","200"));
  56. options.insert(option("input_name_y","154"));
  57. options.insert(option("input_pass_x","-1")); /* default is single inputbox */
  58. options.insert(option("input_pass_y","-1"));
  59. options.insert(option("input_font","Verdana:size=11"));
  60. options.insert(option("input_color", "#000000"));
  61. options.insert(option("input_cursor_height","20"));
  62. options.insert(option("input_maxlength_name","20"));
  63. options.insert(option("input_maxlength_passwd","20"));
  64. options.insert(option("input_shadow_xoffset", "0"));
  65. options.insert(option("input_shadow_yoffset", "0"));
  66. options.insert(option("input_shadow_color","#FFFFFF"));
  67. options.insert(option("welcome_font","Verdana:size=14"));
  68. options.insert(option("welcome_color","#FFFFFF"));
  69. options.insert(option("welcome_x","-1"));
  70. options.insert(option("welcome_y","-1"));
  71. options.insert(option("welcome_shadow_xoffset", "0"));
  72. options.insert(option("welcome_shadow_yoffset", "0"));
  73. options.insert(option("welcome_shadow_color","#FFFFFF"));
  74. options.insert(option("intro_msg",""));
  75. options.insert(option("intro_font","Verdana:size=14"));
  76. options.insert(option("intro_color","#FFFFFF"));
  77. options.insert(option("intro_x","-1"));
  78. options.insert(option("intro_y","-1"));
  79. options.insert(option("background_style","stretch"));
  80. options.insert(option("background_color","#CCCCCC"));
  81. options.insert(option("username_font","Verdana:size=12"));
  82. options.insert(option("username_color","#FFFFFF"));
  83. options.insert(option("username_x","-1"));
  84. options.insert(option("username_y","-1"));
  85. options.insert(option("username_msg","Please enter your username"));
  86. options.insert(option("username_shadow_xoffset", "0"));
  87. options.insert(option("username_shadow_yoffset", "0"));
  88. options.insert(option("username_shadow_color","#FFFFFF"));
  89. options.insert(option("password_x","-1"));
  90. options.insert(option("password_y","-1"));
  91. options.insert(option("password_msg","Please enter your password"));
  92. options.insert(option("msg_color","#FFFFFF"));
  93. options.insert(option("msg_font","Verdana:size=16:bold"));
  94. options.insert(option("msg_x","40"));
  95. options.insert(option("msg_y","40"));
  96. options.insert(option("msg_shadow_xoffset", "0"));
  97. options.insert(option("msg_shadow_yoffset", "0"));
  98. options.insert(option("msg_shadow_color","#FFFFFF"));
  99. options.insert(option("session_color","#FFFFFF"));
  100. options.insert(option("session_font","Verdana:size=16:bold"));
  101. options.insert(option("session_x","50%"));
  102. options.insert(option("session_y","90%"));
  103. options.insert(option("session_shadow_xoffset", "0"));
  104. options.insert(option("session_shadow_yoffset", "0"));
  105. options.insert(option("session_shadow_color","#FFFFFF"));
  106. error = "";
  107. }
  108. Cfg::~Cfg() {
  109. options.clear();
  110. }
  111. /*
  112. * Creates the Cfg object and parses
  113. * known options from the given configfile / themefile
  114. */
  115. bool Cfg::readConf(string configfile) {
  116. int n = -1;
  117. string line, fn(configfile);
  118. map<string,string>::iterator it;
  119. string op;
  120. ifstream cfgfile( fn.c_str() );
  121. if (cfgfile) {
  122. while (getline( cfgfile, line )) {
  123. it = options.begin();
  124. while (it != options.end()) {
  125. op = it->first;
  126. n = line.find(op);
  127. if (n == 0)
  128. options[op] = parseOption(line, op);
  129. it++;
  130. }
  131. }
  132. cfgfile.close();
  133. fillSessionList();
  134. return true;
  135. } else {
  136. error = "Cannot read configuration file: " + configfile;
  137. return false;
  138. }
  139. }
  140. /* Returns the option value, trimmed */
  141. string Cfg::parseOption(string line, string option ) {
  142. return Trim( line.substr(option.size(), line.size() - option.size()));
  143. }
  144. const string& Cfg::getError() const {
  145. return error;
  146. }
  147. string& Cfg::getOption(string option) {
  148. return options[option];
  149. }
  150. /* return a trimmed string */
  151. string Cfg::Trim( const string& s ) {
  152. if ( s.empty() ) {
  153. return s;
  154. }
  155. int pos = 0;
  156. string line = s;
  157. int len = line.length();
  158. while ( pos < len && isspace( line[pos] ) ) {
  159. ++pos;
  160. }
  161. line.erase( 0, pos );
  162. pos = line.length()-1;
  163. while ( pos > -1 && isspace( line[pos] ) ) {
  164. --pos;
  165. }
  166. if ( pos != -1 ) {
  167. line.erase( pos+1 );
  168. }
  169. return line;
  170. }
  171. /* Return the welcome message with replaced vars */
  172. string Cfg::getWelcomeMessage(){
  173. string s = getOption("welcome_msg");
  174. int n = -1;
  175. n = s.find("%host");
  176. if (n >= 0) {
  177. string tmp = s.substr(0, n);
  178. char host[40];
  179. gethostname(host,40);
  180. tmp = tmp + host;
  181. tmp = tmp + s.substr(n+5, s.size() - n);
  182. s = tmp;
  183. }
  184. n = s.find("%domain");
  185. if (n >= 0) {
  186. string tmp = s.substr(0, n);;
  187. char domain[40];
  188. getdomainname(domain,40);
  189. tmp = tmp + domain;
  190. tmp = tmp + s.substr(n+7, s.size() - n);
  191. s = tmp;
  192. }
  193. return s;
  194. }
  195. int Cfg::string2int(const char* string, bool* ok) {
  196. char* err = 0;
  197. int l = (int)strtol(string, &err, 10);
  198. if (ok) {
  199. *ok = (*err == 0);
  200. }
  201. return (*err == 0) ? l : 0;
  202. }
  203. int Cfg::getIntOption(std::string option) {
  204. return string2int(options[option].c_str());
  205. }
  206. /* Get absolute position */
  207. int Cfg::absolutepos(const string& position, int max, int width) {
  208. int n = -1;
  209. n = position.find("%");
  210. if (n>0) { /* X Position expressed in percentage */
  211. int result = (max*string2int(position.substr(0, n).c_str())/100) - (width / 2);
  212. return result < 0 ? 0 : result ;
  213. } else { /* Absolute X position */
  214. return string2int(position.c_str());
  215. }
  216. }
  217. /* split a comma separated string into a vector of strings */
  218. void Cfg::split(vector<string>& v, const string& str, char c, bool useEmpty) {
  219. v.clear();
  220. string::const_iterator s = str.begin();
  221. string tmp;
  222. while (true) {
  223. string::const_iterator begin = s;
  224. while (*s != c && s != str.end()) { ++s; }
  225. tmp = string(begin, s);
  226. if (useEmpty || tmp.size() > 0)
  227. v.push_back(tmp);
  228. if (s == str.end()) {
  229. break;
  230. }
  231. if (++s == str.end()) {
  232. if (useEmpty)
  233. v.push_back("");
  234. break;
  235. }
  236. }
  237. }
  238. void Cfg::fillSessionList(){
  239. string strSessionList = getOption("sessions");
  240. string strSessionDir = getOption("sessiondir");
  241. sessions.clear();
  242. if( !strSessionDir.empty() ) {
  243. DIR *pDir = opendir(strSessionDir.c_str());
  244. if (pDir != NULL) {
  245. struct dirent *pDirent = NULL;
  246. while ((pDirent = readdir(pDir)) != NULL) {
  247. string strFile(strSessionDir);
  248. strFile += "/";
  249. strFile += pDirent->d_name;
  250. struct stat oFileStat;
  251. if (stat(strFile.c_str(), &oFileStat) == 0) {
  252. if (S_ISREG(oFileStat.st_mode) &&
  253. access(strFile.c_str(), R_OK | X_OK) == 0) {
  254. sessions.push_back(string(pDirent->d_name));
  255. }
  256. }
  257. }
  258. closedir(pDir);
  259. }
  260. }
  261. if (sessions.empty()){
  262. split(sessions, strSessionList, ',', false);
  263. }
  264. }
  265. string Cfg::nextSession(string current) {
  266. if (sessions.size() < 1)
  267. return current;
  268. currentSession = (currentSession + 1) % sessions.size();
  269. return sessions[currentSession];
  270. }