hysdn_proclog.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: hysdn_proclog.c,v 1.1.4.1 2001/11/20 14:19:37 kai Exp $
  2.  *
  3.  * Linux driver for HYSDN cards, /proc/net filesystem log functions.
  4.  *
  5.  * Author    Werner Cornelius (werner@titro.de) for Hypercope GmbH
  6.  * Copyright 1999 by Werner Cornelius (werner@titro.de)
  7.  *
  8.  * This software may be used and distributed according to the terms
  9.  * of the GNU General Public License, incorporated herein by reference.
  10.  *
  11.  */
  12. #define __NO_VERSION__
  13. #include <linux/module.h>
  14. #include <linux/version.h>
  15. #include <linux/poll.h>
  16. #include <linux/proc_fs.h>
  17. #include <linux/pci.h>
  18. #include <linux/smp_lock.h>
  19. #include "hysdn_defs.h"
  20. /* the proc subdir for the interface is defined in the procconf module */
  21. extern struct proc_dir_entry *hysdn_proc_entry;
  22. /*************************************************/
  23. /* structure keeping ascii log for device output */
  24. /*************************************************/
  25. struct log_data {
  26. struct log_data *next;
  27. ulong usage_cnt; /* number of files still to work */
  28. void *proc_ctrl; /* pointer to own control procdata structure */
  29. char log_start[2]; /* log string start (final len aligned by size) */
  30. };
  31. /**********************************************/
  32. /* structure holding proc entrys for one card */
  33. /**********************************************/
  34. struct procdata {
  35. struct proc_dir_entry *log; /* log entry */
  36. char log_name[15]; /* log filename */
  37. struct log_data *log_head, *log_tail; /* head and tail for queue */
  38. int if_used; /* open count for interface */
  39. int volatile del_lock; /* lock for delete operations */
  40. uchar logtmp[LOG_MAX_LINELEN];
  41. wait_queue_head_t rd_queue;
  42. };
  43. /**********************************************/
  44. /* log function for cards error log interface */
  45. /**********************************************/
  46. void
  47. hysdn_card_errlog(hysdn_card * card, tErrLogEntry * logp, int maxsize)
  48. {
  49. char buf[ERRLOG_TEXT_SIZE + 40];
  50. sprintf(buf, "LOG 0x%08lX 0x%08lX : %sn", logp->ulErrType, logp->ulErrSubtype, logp->ucText);
  51. put_log_buffer(card, buf); /* output the string */
  52. } /* hysdn_card_errlog */
  53. /***************************************************/
  54. /* Log function using format specifiers for output */
  55. /***************************************************/
  56. void
  57. hysdn_addlog(hysdn_card * card, char *fmt,...)
  58. {
  59. struct procdata *pd = card->proclog;
  60. char *cp;
  61. va_list args;
  62. if (!pd)
  63. return; /* log structure non existent */
  64. cp = pd->logtmp;
  65. cp += sprintf(cp, "HYSDN: card %d ", card->myid);
  66. va_start(args, fmt);
  67. cp += vsprintf(cp, fmt, args);
  68. va_end(args);
  69. *cp++ = 'n';
  70. *cp = 0;
  71. if (card->debug_flags & DEB_OUT_SYSLOG)
  72. printk(KERN_INFO "%s", pd->logtmp);
  73. else
  74. put_log_buffer(card, pd->logtmp);
  75. } /* hysdn_addlog */
  76. /********************************************/
  77. /* put an log buffer into the log queue.    */
  78. /* This buffer will be kept until all files */
  79. /* opened for read got the contents.        */
  80. /* Flushes buffers not longer in use.       */
  81. /********************************************/
  82. void
  83. put_log_buffer(hysdn_card * card, char *cp)
  84. {
  85. struct log_data *ib;
  86. struct procdata *pd = card->proclog;
  87. int i, flags;
  88. if (!pd)
  89. return;
  90. if (!cp)
  91. return;
  92. if (!*cp)
  93. return;
  94. if (pd->if_used <= 0)
  95. return; /* no open file for read */
  96. if (!(ib = (struct log_data *) kmalloc(sizeof(struct log_data) + strlen(cp), GFP_ATOMIC)))
  97.  return; /* no memory */
  98. strcpy(ib->log_start, cp); /* set output string */
  99. ib->next = NULL;
  100. ib->proc_ctrl = pd; /* point to own control structure */
  101. save_flags(flags);
  102. cli();
  103. ib->usage_cnt = pd->if_used;
  104. if (!pd->log_head)
  105. pd->log_head = ib; /* new head */
  106. else
  107. pd->log_tail->next = ib; /* follows existing messages */
  108. pd->log_tail = ib; /* new tail */
  109. i = pd->del_lock++; /* get lock state */
  110. restore_flags(flags);
  111. /* delete old entrys */
  112. if (!i)
  113. while (pd->log_head->next) {
  114. if ((pd->log_head->usage_cnt <= 0) &&
  115.     (pd->log_head->next->usage_cnt <= 0)) {
  116. ib = pd->log_head;
  117. pd->log_head = pd->log_head->next;
  118. kfree(ib);
  119. } else
  120. break;
  121. } /* pd->log_head->next */
  122. pd->del_lock--; /* release lock level */
  123. wake_up_interruptible(&(pd->rd_queue)); /* announce new entry */
  124. } /* put_log_buffer */
  125. /******************************/
  126. /* file operations and tables */
  127. /******************************/
  128. /****************************************/
  129. /* write log file -> set log level bits */
  130. /****************************************/
  131. static ssize_t
  132. hysdn_log_write(struct file *file, const char *buf, size_t count, loff_t * off)
  133. {
  134. ulong u = 0;
  135. int found = 0;
  136. uchar *cp, valbuf[128];
  137. long base = 10;
  138. hysdn_card *card = (hysdn_card *) file->private_data;
  139. if (&file->f_pos != off) /* fs error check */
  140. return (-ESPIPE);
  141. if (count > (sizeof(valbuf) - 1))
  142. count = sizeof(valbuf) - 1; /* limit length */
  143. if (copy_from_user(valbuf, buf, count))
  144. return (-EFAULT); /* copy failed */
  145. valbuf[count] = 0; /* terminating 0 */
  146. cp = valbuf;
  147. if ((count > 2) && (valbuf[0] == '0') && (valbuf[1] == 'x')) {
  148. cp += 2; /* pointer after hex modifier */
  149. base = 16;
  150. }
  151. /* scan the input for debug flags */
  152. while (*cp) {
  153. if ((*cp >= '0') && (*cp <= '9')) {
  154. found = 1;
  155. u *= base; /* adjust to next digit */
  156. u += *cp++ - '0';
  157. continue;
  158. }
  159. if (base != 16)
  160. break; /* end of number */
  161. if ((*cp >= 'a') && (*cp <= 'f')) {
  162. found = 1;
  163. u *= base; /* adjust to next digit */
  164. u += *cp++ - 'a' + 10;
  165. continue;
  166. }
  167. break; /* terminated */
  168. }
  169. if (found) {
  170. card->debug_flags = u; /* remember debug flags */
  171. hysdn_addlog(card, "debug set to 0x%lx", card->debug_flags);
  172. }
  173. return (count);
  174. } /* hysdn_log_write */
  175. /******************/
  176. /* read log file */
  177. /******************/
  178. static ssize_t
  179. hysdn_log_read(struct file *file, char *buf, size_t count, loff_t * off)
  180. {
  181. struct log_data *inf;
  182. int len;
  183. word ino;
  184. struct procdata *pd = NULL;
  185. hysdn_card *card;
  186. if (!*((struct log_data **) file->private_data)) {
  187. if (file->f_flags & O_NONBLOCK)
  188. return (-EAGAIN);
  189. /* sorry, but we need to search the card */
  190. ino = file->f_dentry->d_inode->i_ino & 0xFFFF; /* low-ino */
  191. card = card_root;
  192. while (card) {
  193. pd = card->proclog;
  194. if (pd->log->low_ino == ino)
  195. break;
  196. card = card->next; /* search next entry */
  197. }
  198. if (card)
  199. interruptible_sleep_on(&(pd->rd_queue));
  200. else
  201. return (-EAGAIN);
  202. }
  203. if (!(inf = *((struct log_data **) file->private_data)))
  204. return (0);
  205. inf->usage_cnt--; /* new usage count */
  206. (struct log_data **) file->private_data = &inf->next; /* next structure */
  207. if ((len = strlen(inf->log_start)) <= count) {
  208. if (copy_to_user(buf, inf->log_start, len))
  209. return -EFAULT;
  210. file->f_pos += len;
  211. return (len);
  212. }
  213. return (0);
  214. } /* hysdn_log_read */
  215. /******************/
  216. /* open log file */
  217. /******************/
  218. static int
  219. hysdn_log_open(struct inode *ino, struct file *filep)
  220. {
  221. hysdn_card *card;
  222. struct procdata *pd = NULL;
  223. ulong flags;
  224. lock_kernel();
  225. card = card_root;
  226. while (card) {
  227. pd = card->proclog;
  228. if (pd->log->low_ino == (ino->i_ino & 0xFFFF))
  229. break;
  230. card = card->next; /* search next entry */
  231. }
  232. if (!card) {
  233. unlock_kernel();
  234. return (-ENODEV); /* device is unknown/invalid */
  235. }
  236. filep->private_data = card; /* remember our own card */
  237. if ((filep->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_WRITE) {
  238. /* write only access -> write log level only */
  239. } else if ((filep->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ) {
  240. /* read access -> log/debug read */
  241. save_flags(flags);
  242. cli();
  243. pd->if_used++;
  244. if (pd->log_head)
  245. (struct log_data **) filep->private_data = &(pd->log_tail->next);
  246. else
  247. (struct log_data **) filep->private_data = &(pd->log_head);
  248. restore_flags(flags);
  249. } else { /* simultaneous read/write access forbidden ! */
  250. unlock_kernel();
  251. return (-EPERM); /* no permission this time */
  252. }
  253. unlock_kernel();
  254. return (0);
  255. } /* hysdn_log_open */
  256. /*******************************************************************************/
  257. /* close a cardlog file. If the file has been opened for exclusive write it is */
  258. /* assumed as pof data input and the pof loader is noticed about.              */
  259. /* Otherwise file is handled as log output. In this case the interface usage   */
  260. /* count is decremented and all buffers are noticed of closing. If this file   */
  261. /* was the last one to be closed, all buffers are freed.                       */
  262. /*******************************************************************************/
  263. static int
  264. hysdn_log_close(struct inode *ino, struct file *filep)
  265. {
  266. struct log_data *inf;
  267. struct procdata *pd;
  268. hysdn_card *card;
  269. int flags, retval = 0;
  270. lock_kernel();
  271. if ((filep->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_WRITE) {
  272. /* write only access -> write debug level written */
  273. retval = 0; /* success */
  274. } else {
  275. /* read access -> log/debug read, mark one further file as closed */
  276. pd = NULL;
  277. save_flags(flags);
  278. cli();
  279. inf = *((struct log_data **) filep->private_data); /* get first log entry */
  280. if (inf)
  281. pd = (struct procdata *) inf->proc_ctrl; /* still entries there */
  282. else {
  283. /* no info available -> search card */
  284. card = card_root;
  285. while (card) {
  286. pd = card->proclog;
  287. if (pd->log->low_ino == (ino->i_ino & 0xFFFF))
  288. break;
  289. card = card->next; /* search next entry */
  290. }
  291. if (card)
  292. pd = card->proclog; /* pointer to procfs log */
  293. }
  294. if (pd)
  295. pd->if_used--; /* decrement interface usage count by one */
  296. while (inf) {
  297. inf->usage_cnt--; /* decrement usage count for buffers */
  298. inf = inf->next;
  299. }
  300. restore_flags(flags);
  301. if (pd)
  302. if (pd->if_used <= 0) /* delete buffers if last file closed */
  303. while (pd->log_head) {
  304. inf = pd->log_head;
  305. pd->log_head = pd->log_head->next;
  306. kfree(inf);
  307. }
  308. } /* read access */
  309. unlock_kernel();
  310. return (retval);
  311. } /* hysdn_log_close */
  312. /*************************************************/
  313. /* select/poll routine to be able using select() */
  314. /*************************************************/
  315. static unsigned int
  316. hysdn_log_poll(struct file *file, poll_table * wait)
  317. {
  318. unsigned int mask = 0;
  319. word ino;
  320. hysdn_card *card;
  321. struct procdata *pd = NULL;
  322. if ((file->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_WRITE)
  323. return (mask); /* no polling for write supported */
  324. /* we need to search the card */
  325. ino = file->f_dentry->d_inode->i_ino & 0xFFFF; /* low-ino */
  326. card = card_root;
  327. while (card) {
  328. pd = card->proclog;
  329. if (pd->log->low_ino == ino)
  330. break;
  331. card = card->next; /* search next entry */
  332. }
  333. if (!card)
  334. return (mask); /* card not found */
  335. poll_wait(file, &(pd->rd_queue), wait);
  336. if (*((struct log_data **) file->private_data))
  337. mask |= POLLIN | POLLRDNORM;
  338. return mask;
  339. } /* hysdn_log_poll */
  340. /**************************************************/
  341. /* table for log filesystem functions defined above. */
  342. /**************************************************/
  343. static struct file_operations log_fops =
  344. {
  345. llseek:         no_llseek,
  346. read:           hysdn_log_read,
  347. write:          hysdn_log_write,
  348. poll:           hysdn_log_poll,
  349. open:           hysdn_log_open,
  350. release:        hysdn_log_close,                                        
  351. };
  352. /***********************************************************************************/
  353. /* hysdn_proclog_init is called when the module is loaded after creating the cards */
  354. /* conf files.                                                                     */
  355. /***********************************************************************************/
  356. int
  357. hysdn_proclog_init(hysdn_card * card)
  358. {
  359. struct procdata *pd;
  360. /* create a cardlog proc entry */
  361. if ((pd = (struct procdata *) kmalloc(sizeof(struct procdata), GFP_KERNEL)) != NULL) {
  362. memset(pd, 0, sizeof(struct procdata));
  363. sprintf(pd->log_name, "%s%d", PROC_LOG_BASENAME, card->myid);
  364. if ((pd->log = create_proc_entry(pd->log_name, S_IFREG | S_IRUGO | S_IWUSR, hysdn_proc_entry)) != NULL) {
  365.         pd->log->proc_fops = &log_fops; 
  366.         pd->log->owner = THIS_MODULE;
  367. }
  368. init_waitqueue_head(&(pd->rd_queue));
  369. card->proclog = (void *) pd; /* remember procfs structure */
  370. }
  371. return (0);
  372. } /* hysdn_proclog_init */
  373. /************************************************************************************/
  374. /* hysdn_proclog_release is called when the module is unloaded and before the cards */
  375. /* conf file is released                                                            */
  376. /* The module counter is assumed to be 0 !                                          */
  377. /************************************************************************************/
  378. void
  379. hysdn_proclog_release(hysdn_card * card)
  380. {
  381. struct procdata *pd;
  382. if ((pd = (struct procdata *) card->proclog) != NULL) {
  383. if (pd->log)
  384. remove_proc_entry(pd->log_name, hysdn_proc_entry);
  385. kfree(pd); /* release memory */
  386. card->proclog = NULL;
  387. }
  388. } /* hysdn_proclog_release */