procfs.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:12k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* Sysctl interface for parport devices.
  2.  * 
  3.  * Authors: David Campbell <campbell@torque.net>
  4.  *          Tim Waugh <tim@cyberelk.demon.co.uk>
  5.  *          Philip Blundell <philb@gnu.org>
  6.  *          Andrea Arcangeli
  7.  *          Riccardo Facchetti <fizban@tin.it>
  8.  *
  9.  * based on work by Grant Guenther <grant@torque.net>
  10.  *              and Philip Blundell
  11.  *
  12.  * Cleaned up include files - Russell King <linux@arm.uk.linux.org>
  13.  */
  14. #include <linux/string.h>
  15. #include <linux/config.h>
  16. #include <linux/errno.h>
  17. #include <linux/kernel.h>
  18. #include <linux/slab.h>
  19. #include <linux/parport.h>
  20. #include <linux/ctype.h>
  21. #include <linux/sysctl.h>
  22. #include <asm/uaccess.h>
  23. #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
  24. #define PARPORT_MIN_TIMESLICE_VALUE 1ul 
  25. #define PARPORT_MAX_TIMESLICE_VALUE ((unsigned long) HZ)
  26. #define PARPORT_MIN_SPINTIME_VALUE 1
  27. #define PARPORT_MAX_SPINTIME_VALUE 1000
  28. static int do_active_device(ctl_table *table, int write, struct file *filp,
  29.       void *result, size_t *lenp)
  30. {
  31. struct parport *port = (struct parport *)table->extra1;
  32. char buffer[256];
  33. struct pardevice *dev;
  34. int len = 0;
  35. if (write) /* can't happen anyway */
  36. return -EACCES;
  37. if (filp->f_pos) {
  38. *lenp = 0;
  39. return 0;
  40. }
  41. for (dev = port->devices; dev ; dev = dev->next) {
  42. if(dev == port->cad) {
  43. len += sprintf(buffer, "%sn", dev->name);
  44. }
  45. }
  46. if(!len) {
  47. len += sprintf(buffer, "%sn", "none");
  48. }
  49. if (len > *lenp)
  50. len = *lenp;
  51. else
  52. *lenp = len;
  53. filp->f_pos += len;
  54. return copy_to_user(result, buffer, len) ? -EFAULT : 0;
  55. }
  56. #ifdef CONFIG_PARPORT_1284
  57. static int do_autoprobe(ctl_table *table, int write, struct file *filp,
  58. void *result, size_t *lenp)
  59. {
  60. struct parport_device_info *info = table->extra2;
  61. const char *str;
  62. char buffer[256];
  63. int len = 0;
  64. if (write) /* permissions stop this */
  65. return -EACCES;
  66. if (filp->f_pos) {
  67. *lenp = 0;
  68. return 0;
  69. }
  70. if ((str = info->class_name) != NULL)
  71. len += sprintf (buffer + len, "CLASS:%s;n", str);
  72. if ((str = info->model) != NULL)
  73. len += sprintf (buffer + len, "MODEL:%s;n", str);
  74. if ((str = info->mfr) != NULL)
  75. len += sprintf (buffer + len, "MANUFACTURER:%s;n", str);
  76. if ((str = info->description) != NULL)
  77. len += sprintf (buffer + len, "DESCRIPTION:%s;n", str);
  78. if ((str = info->cmdset) != NULL)
  79. len += sprintf (buffer + len, "COMMAND SET:%s;n", str);
  80. if (len > *lenp)
  81. len = *lenp;
  82. else
  83. *lenp = len;
  84. filp->f_pos += len;
  85. return copy_to_user (result, buffer, len) ? -EFAULT : 0;
  86. }
  87. #endif /* IEEE1284.3 support. */
  88. static int do_hardware_base_addr (ctl_table *table, int write,
  89.   struct file *filp, void *result,
  90.   size_t *lenp)
  91. {
  92. struct parport *port = (struct parport *)table->extra1;
  93. char buffer[20];
  94. int len = 0;
  95. if (filp->f_pos) {
  96. *lenp = 0;
  97. return 0;
  98. }
  99. if (write) /* permissions prevent this anyway */
  100. return -EACCES;
  101. len += sprintf (buffer, "%lut%lun", port->base, port->base_hi);
  102. if (len > *lenp)
  103. len = *lenp;
  104. else
  105. *lenp = len;
  106. filp->f_pos += len;
  107. return copy_to_user(result, buffer, len) ? -EFAULT : 0;
  108. }
  109. static int do_hardware_irq (ctl_table *table, int write,
  110.     struct file *filp, void *result,
  111.     size_t *lenp)
  112. {
  113. struct parport *port = (struct parport *)table->extra1;
  114. char buffer[20];
  115. int len = 0;
  116. if (filp->f_pos) {
  117. *lenp = 0;
  118. return 0;
  119. }
  120. if (write) /* permissions prevent this anyway */
  121. return -EACCES;
  122. len += sprintf (buffer, "%dn", port->irq);
  123. if (len > *lenp)
  124. len = *lenp;
  125. else
  126. *lenp = len;
  127. filp->f_pos += len;
  128. return copy_to_user(result, buffer, len) ? -EFAULT : 0;
  129. }
  130. static int do_hardware_dma (ctl_table *table, int write,
  131.     struct file *filp, void *result,
  132.     size_t *lenp)
  133. {
  134. struct parport *port = (struct parport *)table->extra1;
  135. char buffer[20];
  136. int len = 0;
  137. if (filp->f_pos) {
  138. *lenp = 0;
  139. return 0;
  140. }
  141. if (write) /* permissions prevent this anyway */
  142. return -EACCES;
  143. len += sprintf (buffer, "%dn", port->dma);
  144. if (len > *lenp)
  145. len = *lenp;
  146. else
  147. *lenp = len;
  148. filp->f_pos += len;
  149. return copy_to_user(result, buffer, len) ? -EFAULT : 0;
  150. }
  151. static int do_hardware_modes (ctl_table *table, int write,
  152.       struct file *filp, void *result,
  153.       size_t *lenp)
  154. {
  155. struct parport *port = (struct parport *)table->extra1;
  156. char buffer[40];
  157. int len = 0;
  158. if (filp->f_pos) {
  159. *lenp = 0;
  160. return 0;
  161. }
  162. if (write) /* permissions prevent this anyway */
  163. return -EACCES;
  164. {
  165. #define printmode(x) {if(port->modes&PARPORT_MODE_##x){len+=sprintf(buffer+len,"%s%s",f?",":"",#x);f++;}}
  166. int f = 0;
  167. printmode(PCSPP);
  168. printmode(TRISTATE);
  169. printmode(COMPAT);
  170. printmode(EPP);
  171. printmode(ECP);
  172. printmode(DMA);
  173. #undef printmode
  174. }
  175. buffer[len++] = 'n';
  176. if (len > *lenp)
  177. len = *lenp;
  178. else
  179. *lenp = len;
  180. filp->f_pos += len;
  181. return copy_to_user(result, buffer, len) ? -EFAULT : 0;
  182. }
  183. #define PARPORT_PORT_DIR(child) { 0, NULL, NULL, 0, 0555, child }
  184. #define PARPORT_PARPORT_DIR(child) { DEV_PARPORT, "parport", 
  185.                                      NULL, 0, 0555, child }
  186. #define PARPORT_DEV_DIR(child) { CTL_DEV, "dev", NULL, 0, 0555, child }
  187. #define PARPORT_DEVICES_ROOT_DIR  { DEV_PARPORT_DEVICES, "devices", 
  188.                                     NULL, 0, 0555, NULL }
  189. static const unsigned long parport_min_timeslice_value =
  190. PARPORT_MIN_TIMESLICE_VALUE;
  191. static const unsigned long parport_max_timeslice_value =
  192. PARPORT_MAX_TIMESLICE_VALUE;
  193. static const  int parport_min_spintime_value =
  194. PARPORT_MIN_SPINTIME_VALUE;
  195. static const int parport_max_spintime_value =
  196. PARPORT_MAX_SPINTIME_VALUE;
  197. struct parport_sysctl_table {
  198. struct ctl_table_header *sysctl_header;
  199. ctl_table vars[12];
  200. ctl_table device_dir[2];
  201. ctl_table port_dir[2];
  202. ctl_table parport_dir[2];
  203. ctl_table dev_dir[2];
  204. };
  205. static const struct parport_sysctl_table parport_sysctl_template = {
  206. NULL,
  207.         {
  208. { DEV_PARPORT_SPINTIME, "spintime",
  209.   NULL, sizeof(int), 0644, NULL,
  210.   &proc_dointvec_minmax, NULL, NULL,
  211.   (void*) &parport_min_spintime_value,
  212.   (void*) &parport_max_spintime_value },
  213. { DEV_PARPORT_BASE_ADDR, "base-addr",
  214.   NULL, 0, 0444, NULL,
  215.   &do_hardware_base_addr },
  216. { DEV_PARPORT_IRQ, "irq",
  217.   NULL, 0, 0444, NULL,
  218.   &do_hardware_irq },
  219. { DEV_PARPORT_DMA, "dma",
  220.   NULL, 0, 0444, NULL,
  221.   &do_hardware_dma },
  222. { DEV_PARPORT_MODES, "modes",
  223.   NULL, 0, 0444, NULL,
  224.   &do_hardware_modes },
  225. PARPORT_DEVICES_ROOT_DIR,
  226. #ifdef CONFIG_PARPORT_1284
  227. { DEV_PARPORT_AUTOPROBE, "autoprobe",
  228.   NULL, 0, 0444, NULL,
  229.   &do_autoprobe },
  230. { DEV_PARPORT_AUTOPROBE + 1, "autoprobe0",
  231.  NULL, 0, 0444, NULL,
  232.  &do_autoprobe },
  233. { DEV_PARPORT_AUTOPROBE + 2, "autoprobe1",
  234.   NULL, 0, 0444, NULL,
  235.   &do_autoprobe },
  236. { DEV_PARPORT_AUTOPROBE + 3, "autoprobe2",
  237.   NULL, 0, 0444, NULL,
  238.   &do_autoprobe },
  239. { DEV_PARPORT_AUTOPROBE + 4, "autoprobe3",
  240.   NULL, 0, 0444, NULL,
  241.   &do_autoprobe },
  242. #endif /* IEEE 1284 support */
  243. {0}
  244. },
  245. { {DEV_PARPORT_DEVICES_ACTIVE, "active", NULL, 0, 0444, NULL,
  246.   &do_active_device }, {0}},
  247. { PARPORT_PORT_DIR(NULL), {0}},
  248. { PARPORT_PARPORT_DIR(NULL), {0}},
  249. { PARPORT_DEV_DIR(NULL), {0}}
  250. };
  251. struct parport_device_sysctl_table
  252. {
  253. struct ctl_table_header *sysctl_header;
  254. ctl_table vars[2];
  255. ctl_table device_dir[2];
  256. ctl_table devices_root_dir[2];
  257. ctl_table port_dir[2];
  258. ctl_table parport_dir[2];
  259. ctl_table dev_dir[2];
  260. };
  261. static const struct parport_device_sysctl_table
  262. parport_device_sysctl_template = {
  263. NULL,
  264. {
  265. { DEV_PARPORT_DEVICE_TIMESLICE, "timeslice",
  266.   NULL, sizeof(int), 0644, NULL,
  267.   &proc_doulongvec_ms_jiffies_minmax, NULL, NULL,
  268.   (void*) &parport_min_timeslice_value,
  269.   (void*) &parport_max_timeslice_value },
  270. },
  271. { {0, NULL, NULL, 0, 0555, NULL}, {0}},
  272. { PARPORT_DEVICES_ROOT_DIR, {0}},
  273. { PARPORT_PORT_DIR(NULL), {0}},
  274. { PARPORT_PARPORT_DIR(NULL), {0}},
  275. { PARPORT_DEV_DIR(NULL), {0}}
  276. };
  277. struct parport_default_sysctl_table
  278. {
  279. struct ctl_table_header *sysctl_header;
  280. ctl_table vars[3];
  281.         ctl_table default_dir[2];
  282. ctl_table parport_dir[2];
  283. ctl_table dev_dir[2];
  284. };
  285. extern unsigned long parport_default_timeslice;
  286. extern int parport_default_spintime;
  287. static struct parport_default_sysctl_table
  288. parport_default_sysctl_table = {
  289. NULL,
  290. {
  291. { DEV_PARPORT_DEFAULT_TIMESLICE, "timeslice",
  292.   &parport_default_timeslice,
  293.   sizeof(parport_default_timeslice), 0644, NULL,
  294.   &proc_doulongvec_ms_jiffies_minmax, NULL, NULL,
  295.   (void*) &parport_min_timeslice_value,
  296.   (void*) &parport_max_timeslice_value },
  297. { DEV_PARPORT_DEFAULT_SPINTIME, "spintime",
  298.   &parport_default_spintime,
  299.   sizeof(parport_default_spintime), 0644, NULL,
  300.   &proc_dointvec_minmax, NULL, NULL,
  301.   (void*) &parport_min_spintime_value,
  302.   (void*) &parport_max_spintime_value },
  303. {0}
  304. },
  305. { { DEV_PARPORT_DEFAULT, "default", NULL, 0, 0555,
  306.     parport_default_sysctl_table.vars },{0}},
  307. {
  308. PARPORT_PARPORT_DIR(parport_default_sysctl_table.default_dir), 
  309. {0}},
  310. { PARPORT_DEV_DIR(parport_default_sysctl_table.parport_dir), {0}}
  311. };
  312. int parport_proc_register(struct parport *port)
  313. {
  314. struct parport_sysctl_table *t;
  315. int i;
  316. t = kmalloc(sizeof(*t), GFP_KERNEL);
  317. if (t == NULL)
  318. return -ENOMEM;
  319. memcpy(t, &parport_sysctl_template, sizeof(*t));
  320. t->device_dir[0].extra1 = port;
  321. for (i = 0; i < 8; i++)
  322. t->vars[i].extra1 = port;
  323. t->vars[0].data = &port->spintime;
  324. t->vars[5].child = t->device_dir;
  325. for (i = 0; i < 5; i++)
  326. t->vars[6 + i].extra2 = &port->probe_info[i];
  327. t->port_dir[0].procname = port->name;
  328. t->port_dir[0].ctl_name = port->number + 1; /* nb 0 isn't legal here */
  329. t->port_dir[0].child = t->vars;
  330. t->parport_dir[0].child = t->port_dir;
  331. t->dev_dir[0].child = t->parport_dir;
  332. t->sysctl_header = register_sysctl_table(t->dev_dir, 0);
  333. if (t->sysctl_header == NULL) {
  334. kfree(t);
  335. t = NULL;
  336. }
  337. port->sysctl_table = t;
  338. return 0;
  339. }
  340. int parport_proc_unregister(struct parport *port)
  341. {
  342. if (port->sysctl_table) {
  343. struct parport_sysctl_table *t = port->sysctl_table;
  344. port->sysctl_table = NULL;
  345. unregister_sysctl_table(t->sysctl_header);
  346. kfree(t);
  347. }
  348. return 0;
  349. }
  350. int parport_device_proc_register(struct pardevice *device)
  351. {
  352. struct parport_device_sysctl_table *t;
  353. struct parport * port = device->port;
  354. t = kmalloc(sizeof(*t), GFP_KERNEL);
  355. if (t == NULL)
  356. return -ENOMEM;
  357. memcpy(t, &parport_device_sysctl_template, sizeof(*t));
  358. t->dev_dir[0].child = t->parport_dir;
  359. t->parport_dir[0].child = t->port_dir;
  360. t->port_dir[0].procname = port->name;
  361. t->port_dir[0].ctl_name = port->number + 1; /* nb 0 isn't legal here */
  362. t->port_dir[0].child = t->devices_root_dir;
  363. t->devices_root_dir[0].child = t->device_dir;
  364. #ifdef CONFIG_PARPORT_1284
  365. t->device_dir[0].ctl_name =
  366. parport_device_num(port->number, port->muxport,
  367.    device->daisy)
  368. + 1;  /* nb 0 isn't legal here */ 
  369. #else /* No IEEE 1284 support */
  370. /* parport_device_num isn't available. */
  371. t->device_dir[0].ctl_name = 1;
  372. #endif /* IEEE 1284 support or not */
  373. t->device_dir[0].procname = device->name;
  374. t->device_dir[0].extra1 = device;
  375. t->device_dir[0].child = t->vars;
  376. t->vars[0].data = &device->timeslice;
  377. t->sysctl_header = register_sysctl_table(t->dev_dir, 0);
  378. if (t->sysctl_header == NULL) {
  379. kfree(t);
  380. t = NULL;
  381. }
  382. device->sysctl_table = t;
  383. return 0;
  384. }
  385. int parport_device_proc_unregister(struct pardevice *device)
  386. {
  387. if (device->sysctl_table) {
  388. struct parport_device_sysctl_table *t = device->sysctl_table;
  389. device->sysctl_table = NULL;
  390. unregister_sysctl_table(t->sysctl_header);
  391. kfree(t);
  392. }
  393. return 0;
  394. }
  395. int parport_default_proc_register(void)
  396. {
  397. parport_default_sysctl_table.sysctl_header =
  398. register_sysctl_table(parport_default_sysctl_table.dev_dir, 0);
  399. return 0;
  400. }
  401. int parport_default_proc_unregister(void)
  402. {
  403. if (parport_default_sysctl_table.sysctl_header) {
  404. unregister_sysctl_table(parport_default_sysctl_table.
  405. sysctl_header);
  406. parport_default_sysctl_table.sysctl_header = NULL;
  407. }
  408. return 0;
  409. }
  410. #else /* no sysctl or no procfs*/
  411. int parport_proc_register(struct parport *pp)
  412. {
  413. return 0;
  414. }
  415. int parport_proc_unregister(struct parport *pp)
  416. {
  417. return 0;
  418. }
  419. int parport_device_proc_register(struct pardevice *device)
  420. {
  421. return 0;
  422. }
  423. int parport_device_proc_unregister(struct pardevice *device)
  424. {
  425. return 0;
  426. }
  427. int parport_default_proc_register (void)
  428. {
  429. return 0;
  430. }
  431. int parport_default_proc_unregister (void)
  432. {
  433. return 0;
  434. }
  435. #endif