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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * printer.c  Version 0.11
  3.  *
  4.  * Copyright (c) 1999 Michael Gee <michael@linuxspecific.com>
  5.  * Copyright (c) 1999 Pavel Machek <pavel@suse.cz>
  6.  * Copyright (c) 2000 Randy Dunlap <randy.dunlap@intel.com>
  7.  * Copyright (c) 2000 Vojtech Pavlik <vojtech@suse.cz>
  8.  # Copyright (c) 2001 Pete Zaitcev <zaitcev@redhat.com>
  9.  # Copyright (c) 2001 David Paschal <paschal@rcsis.com>
  10.  *
  11.  * USB Printer Device Class driver for USB printers and printer cables
  12.  *
  13.  * Sponsored by SuSE
  14.  *
  15.  * ChangeLog:
  16.  * v0.1 - thorough cleaning, URBification, almost a rewrite
  17.  * v0.2 - some more cleanups
  18.  * v0.3 - cleaner again, waitqueue fixes
  19.  * v0.4 - fixes in unidirectional mode
  20.  * v0.5 - add DEVICE_ID string support
  21.  * v0.6 - never time out
  22.  * v0.7 - fixed bulk-IN read and poll (David Paschal)
  23.  * v0.8 - add devfs support
  24.  * v0.9 - fix unplug-while-open paths
  25.  * v0.10 - add proto_bias option (Pete Zaitcev)
  26.  * v0.11 - add hpoj.sourceforge.net ioctls (David Paschal)
  27.  */
  28. /*
  29.  * This program is free software; you can redistribute it and/or modify
  30.  * it under the terms of the GNU General Public License as published by
  31.  * the Free Software Foundation; either version 2 of the License, or
  32.  * (at your option) any later version.
  33.  *
  34.  * This program is distributed in the hope that it will be useful,
  35.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  36.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  37.  * GNU General Public License for more details.
  38.  *
  39.  * You should have received a copy of the GNU General Public License
  40.  * along with this program; if not, write to the Free Software
  41.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  42.  */
  43. #include <linux/module.h>
  44. #include <linux/kernel.h>
  45. #include <linux/sched.h>
  46. #include <linux/smp_lock.h>
  47. #include <linux/signal.h>
  48. #include <linux/poll.h>
  49. #include <linux/init.h>
  50. #include <linux/slab.h>
  51. #include <linux/lp.h>
  52. #include <linux/devfs_fs_kernel.h>
  53. #undef DEBUG
  54. #include <linux/usb.h>
  55. /*
  56.  * Version Information
  57.  */
  58. #define DRIVER_VERSION "v0.11"
  59. #define DRIVER_AUTHOR "Michael Gee, Pavel Machek, Vojtech Pavlik, Randy Dunlap, Pete Zaitcev, David Paschal"
  60. #define DRIVER_DESC "USB Printer Device Class driver"
  61. #define USBLP_BUF_SIZE 8192
  62. #define DEVICE_ID_SIZE 1024
  63. /* ioctls: */
  64. #define LPGETSTATUS 0x060b /* same as in drivers/char/lp.c */
  65. #define IOCNR_GET_DEVICE_ID 1
  66. #define IOCNR_GET_PROTOCOLS 2
  67. #define IOCNR_SET_PROTOCOL 3
  68. #define IOCNR_HP_SET_CHANNEL 4
  69. #define IOCNR_GET_BUS_ADDRESS 5
  70. #define IOCNR_GET_VID_PID 6
  71. /* Get device_id string: */
  72. #define LPIOC_GET_DEVICE_ID(len) _IOC(_IOC_READ, 'P', IOCNR_GET_DEVICE_ID, len)
  73. /* The following ioctls were added for http://hpoj.sourceforge.net: */
  74. /* Get two-int array:
  75.  * [0]=current protocol (1=7/1/1, 2=7/1/2, 3=7/1/3),
  76.  * [1]=supported protocol mask (mask&(1<<n)!=0 means 7/1/n supported): */
  77. #define LPIOC_GET_PROTOCOLS(len) _IOC(_IOC_READ, 'P', IOCNR_GET_PROTOCOLS, len)
  78. /* Set protocol (arg: 1=7/1/1, 2=7/1/2, 3=7/1/3): */
  79. #define LPIOC_SET_PROTOCOL _IOC(_IOC_WRITE, 'P', IOCNR_SET_PROTOCOL, 0)
  80. /* Set channel number (HP Vendor-specific command): */
  81. #define LPIOC_HP_SET_CHANNEL _IOC(_IOC_WRITE, 'P', IOCNR_HP_SET_CHANNEL, 0)
  82. /* Get two-int array: [0]=bus number, [1]=device address: */
  83. #define LPIOC_GET_BUS_ADDRESS(len) _IOC(_IOC_READ, 'P', IOCNR_GET_BUS_ADDRESS, len)
  84. /* Get two-int array: [0]=vendor ID, [1]=product ID: */
  85. #define LPIOC_GET_VID_PID(len) _IOC(_IOC_READ, 'P', IOCNR_GET_VID_PID, len)
  86. /*
  87.  * A DEVICE_ID string may include the printer's serial number.
  88.  * It should end with a semi-colon (';').
  89.  * An example from an HP 970C DeskJet printer is (this is one long string,
  90.  * with the serial number changed):
  91. MFG:HEWLETT-PACKARD;MDL:DESKJET 970C;CMD:MLC,PCL,PML;CLASS:PRINTER;DESCRIPTION:Hewlett-Packard DeskJet 970C;SERN:US970CSEPROF;VSTATUS:$HB0$NC0,ff,DN,IDLE,CUT,K1,C0,DP,NR,KP000,CP027;VP:0800,FL,B0;VJ:                    ;
  92.  */
  93. /*
  94.  * USB Printer Requests
  95.  */
  96. #define USBLP_REQ_GET_ID 0x00
  97. #define USBLP_REQ_GET_STATUS 0x01
  98. #define USBLP_REQ_RESET 0x02
  99. #define USBLP_REQ_HP_CHANNEL_CHANGE_REQUEST 0x00 /* HP Vendor-specific */
  100. #define USBLP_MINORS 16
  101. #define USBLP_MINOR_BASE 0
  102. #define USBLP_WRITE_TIMEOUT (5*HZ) /* 5 seconds */
  103. #define USBLP_FIRST_PROTOCOL 1
  104. #define USBLP_LAST_PROTOCOL 3
  105. #define USBLP_MAX_PROTOCOLS (USBLP_LAST_PROTOCOL+1)
  106. struct usblp {
  107. struct usb_device  *dev; /* USB device */
  108. devfs_handle_t devfs; /* devfs device */
  109. struct semaphore sem; /* locks this struct, especially "dev" */
  110. char *buf; /* writeurb.transfer_buffer */
  111. struct urb readurb, writeurb; /* The urbs */
  112. wait_queue_head_t wait; /* Zzzzz ... */
  113. int readcount; /* Counter for reads */
  114. int ifnum; /* Interface number */
  115. /* Alternate-setting numbers and endpoints for each protocol
  116.  * (7/1/{index=1,2,3}) that the device supports: */
  117. struct {
  118. int alt_setting;
  119. struct usb_endpoint_descriptor *epwrite;
  120. struct usb_endpoint_descriptor *epread;
  121. } protocol[USBLP_MAX_PROTOCOLS];
  122. int current_protocol;
  123. int minor; /* minor number of device */
  124. unsigned int quirks; /* quirks flags */
  125. unsigned char used; /* True if open */
  126. unsigned char bidir; /* interface is bidirectional */
  127. unsigned char *device_id_string; /* IEEE 1284 DEVICE ID string (ptr) */
  128. /* first 2 bytes are (big-endian) length */
  129. };
  130. #ifdef DEBUG
  131. static void usblp_dump(struct usblp *usblp) {
  132. int p;
  133. dbg("usblp=0x%p", usblp);
  134. dbg("dev=0x%p", usblp->dev);
  135. dbg("devfs=0x%p", usblp->devfs);
  136. dbg("buf=0x%p", usblp->buf);
  137. dbg("readcount=%d", usblp->readcount);
  138. dbg("ifnum=%d", usblp->ifnum);
  139.     for (p = USBLP_FIRST_PROTOCOL; p <= USBLP_LAST_PROTOCOL; p++) {
  140. dbg("protocol[%d].alt_setting=%d", p, usblp->protocol[p].alt_setting);
  141. dbg("protocol[%d].epwrite=%p", p, usblp->protocol[p].epwrite);
  142. dbg("protocol[%d].epread=%p", p, usblp->protocol[p].epread);
  143.     }
  144. dbg("current_protocol=%d", usblp->current_protocol);
  145. dbg("minor=%d", usblp->minor);
  146. dbg("quirks=%d", usblp->quirks);
  147. dbg("used=%d", usblp->used);
  148. dbg("bidir=%d", usblp->bidir);
  149. dbg("device_id_string="%s"",
  150. usblp->device_id_string ?
  151. usblp->device_id_string + 2 :
  152. (unsigned char *)"(null)");
  153. }
  154. #endif
  155. extern devfs_handle_t usb_devfs_handle; /* /dev/usb dir. */
  156. static struct usblp *usblp_table[USBLP_MINORS];
  157. /* Quirks: various printer quirks are handled by this table & its flags. */
  158. struct quirk_printer_struct {
  159. __u16 vendorId;
  160. __u16 productId;
  161. unsigned int quirks;
  162. };
  163. #define USBLP_QUIRK_BIDIR 0x1 /* reports bidir but requires unidirectional mode (no INs/reads) */
  164. #define USBLP_QUIRK_USB_INIT 0x2 /* needs vendor USB init string */
  165. static struct quirk_printer_struct quirk_printers[] = {
  166. { 0x03f0, 0x0004, USBLP_QUIRK_BIDIR }, /* HP DeskJet 895C */
  167. { 0x03f0, 0x0104, USBLP_QUIRK_BIDIR }, /* HP DeskJet 880C */
  168. { 0x03f0, 0x0204, USBLP_QUIRK_BIDIR }, /* HP DeskJet 815C */
  169. { 0x03f0, 0x0304, USBLP_QUIRK_BIDIR }, /* HP DeskJet 810C/812C */
  170. { 0x03f0, 0x0404, USBLP_QUIRK_BIDIR }, /* HP DeskJet 830C */
  171. { 0x03f0, 0x0504, USBLP_QUIRK_BIDIR }, /* HP DeskJet 885C */
  172. { 0x03f0, 0x0604, USBLP_QUIRK_BIDIR }, /* HP DeskJet 840C */   
  173. { 0x03f0, 0x0804, USBLP_QUIRK_BIDIR }, /* HP DeskJet 816C */   
  174. { 0x03f0, 0x1104, USBLP_QUIRK_BIDIR }, /* HP Deskjet 959C */
  175. { 0x0409, 0xefbe, USBLP_QUIRK_BIDIR }, /* NEC Picty900 (HP OEM) */
  176. { 0x0409, 0xbef4, USBLP_QUIRK_BIDIR }, /* NEC Picty760 (HP OEM) */
  177. { 0x0409, 0xf0be, USBLP_QUIRK_BIDIR }, /* NEC Picty920 (HP OEM) */
  178. { 0x0409, 0xf1be, USBLP_QUIRK_BIDIR }, /* NEC Picty800 (HP OEM) */
  179. { 0, 0 }
  180. };
  181. static int usblp_select_alts(struct usblp *usblp);
  182. static int usblp_set_protocol(struct usblp *usblp, int protocol);
  183. static int usblp_cache_device_id_string(struct usblp *usblp);
  184. /*
  185.  * Functions for usblp control messages.
  186.  */
  187. static int usblp_ctrl_msg(struct usblp *usblp, int request, int type, int dir, int recip, int value, void *buf, int len)
  188. {
  189. int retval = usb_control_msg(usblp->dev,
  190. dir ? usb_rcvctrlpipe(usblp->dev, 0) : usb_sndctrlpipe(usblp->dev, 0),
  191. request, type | dir | recip, value, usblp->ifnum, buf, len, USBLP_WRITE_TIMEOUT);
  192. dbg("usblp_control_msg: rq: 0x%02x dir: %d recip: %d value: %d len: %#x result: %d",
  193. request, !!dir, recip, value, len, retval);
  194. return retval < 0 ? retval : 0;
  195. }
  196. #define usblp_read_status(usblp, status)
  197. usblp_ctrl_msg(usblp, USBLP_REQ_GET_STATUS, USB_TYPE_CLASS, USB_DIR_IN, USB_RECIP_INTERFACE, 0, status, 1)
  198. #define usblp_get_id(usblp, config, id, maxlen)
  199. usblp_ctrl_msg(usblp, USBLP_REQ_GET_ID, USB_TYPE_CLASS, USB_DIR_IN, USB_RECIP_INTERFACE, config, id, maxlen)
  200. #define usblp_reset(usblp)
  201. usblp_ctrl_msg(usblp, USBLP_REQ_RESET, USB_TYPE_CLASS, USB_DIR_OUT, USB_RECIP_OTHER, 0, NULL, 0)
  202. #define usblp_hp_channel_change_request(usblp, channel, buffer) 
  203. usblp_ctrl_msg(usblp, USBLP_REQ_HP_CHANNEL_CHANGE_REQUEST, USB_TYPE_VENDOR, USB_DIR_IN, USB_RECIP_INTERFACE, channel, buffer, 1)
  204. /*
  205.  * See the description for usblp_select_alts() below for the usage
  206.  * explanation.  Look into your /proc/bus/usb/devices and dmesg in
  207.  * case of any trouble.
  208.  */
  209. static int proto_bias = -1;
  210. /*
  211.  * URB callback.
  212.  */
  213. static void usblp_bulk(struct urb *urb)
  214. {
  215. struct usblp *usblp = urb->context;
  216. if (!usblp || !usblp->dev || !usblp->used)
  217. return;
  218. if (urb->status)
  219. warn("usblp%d: nonzero read/write bulk status received: %d",
  220. usblp->minor, urb->status);
  221. wake_up_interruptible(&usblp->wait);
  222. }
  223. /*
  224.  * Get and print printer errors.
  225.  */
  226. static char *usblp_messages[] = { "ok", "out of paper", "off-line", "unknown error" };
  227. static int usblp_check_status(struct usblp *usblp, int err)
  228. {
  229. unsigned char status, newerr = 0;
  230. int error;
  231. error = usblp_read_status (usblp, &status);
  232. if (error < 0) {
  233. err("usblp%d: error %d reading printer status",
  234. usblp->minor, error);
  235. return 0;
  236. }
  237. if (~status & LP_PERRORP) {
  238. newerr = 3;
  239. if (status & LP_POUTPA) newerr = 1;
  240. if (~status & LP_PSELECD) newerr = 2;
  241. }
  242. if (newerr != err)
  243. info("usblp%d: %s", usblp->minor, usblp_messages[newerr]);
  244. return newerr;
  245. }
  246. /*
  247.  * File op functions.
  248.  */
  249. static int usblp_open(struct inode *inode, struct file *file)
  250. {
  251. int minor = MINOR(inode->i_rdev) - USBLP_MINOR_BASE;
  252. struct usblp *usblp;
  253. int retval;
  254. if (minor < 0 || minor >= USBLP_MINORS)
  255. return -ENODEV;
  256. lock_kernel();
  257. usblp  = usblp_table[minor];
  258. retval = -ENODEV;
  259. if (!usblp || !usblp->dev)
  260. goto out;
  261. retval = -EBUSY;
  262. if (usblp->used)
  263. goto out;
  264. /*
  265.  * TODO: need to implement LP_ABORTOPEN + O_NONBLOCK as in drivers/char/lp.c ???
  266.  * This is #if 0-ed because we *don't* want to fail an open
  267.  * just because the printer is off-line.
  268.  */
  269. #if 0
  270. if ((retval = usblp_check_status(usblp, 0))) {
  271. retval = retval > 1 ? -EIO : -ENOSPC;
  272. goto out;
  273. }
  274. #else
  275. retval = 0;
  276. #endif
  277. usblp->used = 1;
  278. file->private_data = usblp;
  279. usblp->writeurb.transfer_buffer_length = 0;
  280. usblp->writeurb.status = 0;
  281. if (usblp->bidir) {
  282. usblp->readcount = 0;
  283. usblp->readurb.dev = usblp->dev;
  284. if (usb_submit_urb(&usblp->readurb) < 0) {
  285. retval = -EIO;
  286. usblp->used = 0;
  287. file->private_data = NULL;
  288. }
  289. }
  290. out:
  291. unlock_kernel();
  292. return retval;
  293. }
  294. static void usblp_cleanup (struct usblp *usblp)
  295. {
  296. devfs_unregister (usblp->devfs);
  297. usblp_table [usblp->minor] = NULL;
  298. info("usblp%d: removed", usblp->minor);
  299. kfree (usblp->writeurb.transfer_buffer);
  300. kfree (usblp->device_id_string);
  301. kfree (usblp);
  302. }
  303. static void usblp_unlink_urbs(struct usblp *usblp)
  304. {
  305. usb_unlink_urb(&usblp->writeurb);
  306. if (usblp->bidir)
  307. usb_unlink_urb(&usblp->readurb);
  308. }
  309. static int usblp_release(struct inode *inode, struct file *file)
  310. {
  311. struct usblp *usblp = file->private_data;
  312. down (&usblp->sem);
  313. lock_kernel();
  314. usblp->used = 0;
  315. if (usblp->dev) {
  316. usblp_unlink_urbs(usblp);
  317. up(&usblp->sem);
  318. } else  /* finish cleanup from disconnect */
  319. usblp_cleanup (usblp);
  320. unlock_kernel();
  321. return 0;
  322. }
  323. /* No kernel lock - fine */
  324. static unsigned int usblp_poll(struct file *file, struct poll_table_struct *wait)
  325. {
  326. struct usblp *usblp = file->private_data;
  327. poll_wait(file, &usblp->wait, wait);
  328.   return ((!usblp->bidir || usblp->readurb.status  == -EINPROGRESS) ? 0 : POLLIN  | POLLRDNORM)
  329.          | (usblp->writeurb.status == -EINPROGRESS  ? 0 : POLLOUT | POLLWRNORM);
  330. }
  331. static int usblp_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  332. {
  333. struct usblp *usblp = file->private_data;
  334. int length, err, i;
  335. unsigned char lpstatus, newChannel;
  336. int status;
  337. int twoints[2];
  338. int retval = 0;
  339. down (&usblp->sem);
  340. if (!usblp->dev) {
  341. retval = -ENODEV;
  342. goto done;
  343. }
  344. if (_IOC_TYPE(cmd) == 'P') /* new-style ioctl number */
  345. switch (_IOC_NR(cmd)) {
  346. case IOCNR_GET_DEVICE_ID: /* get the DEVICE_ID string */
  347. if (_IOC_DIR(cmd) != _IOC_READ) {
  348. retval = -EINVAL;
  349. goto done;
  350. }
  351. length = usblp_cache_device_id_string(usblp);
  352. if (length < 0) {
  353. retval = length;
  354. goto done;
  355. }
  356. if (length > _IOC_SIZE(cmd))
  357. length = _IOC_SIZE(cmd); /* truncate */
  358. if (copy_to_user((unsigned char *) arg,
  359. usblp->device_id_string,
  360. (unsigned long) length)) {
  361. retval = -EFAULT;
  362. goto done;
  363. }
  364. break;
  365. case IOCNR_GET_PROTOCOLS:
  366. if (_IOC_DIR(cmd) != _IOC_READ ||
  367.     _IOC_SIZE(cmd) < sizeof(twoints)) {
  368. retval = -EINVAL;
  369. goto done;
  370. }
  371. twoints[0] = usblp->current_protocol;
  372. twoints[1] = 0;
  373. for (i = USBLP_FIRST_PROTOCOL;
  374.      i <= USBLP_LAST_PROTOCOL; i++) {
  375. if (usblp->protocol[i].alt_setting >= 0)
  376. twoints[1] |= (1<<i);
  377. }
  378. if (copy_to_user((unsigned char *)arg,
  379. (unsigned char *)twoints,
  380. sizeof(twoints))) {
  381. retval = -EFAULT;
  382. goto done;
  383. }
  384. break;
  385. case IOCNR_SET_PROTOCOL:
  386. if (_IOC_DIR(cmd) != _IOC_WRITE) {
  387. retval = -EINVAL;
  388. goto done;
  389. }
  390. #ifdef DEBUG
  391. if (arg == -10) {
  392. usblp_dump(usblp);
  393. break;
  394. }
  395. #endif
  396. usblp_unlink_urbs(usblp);
  397. retval = usblp_set_protocol(usblp, arg);
  398. if (retval < 0) {
  399. usblp_set_protocol(usblp,
  400. usblp->current_protocol);
  401. }
  402. break;
  403. case IOCNR_HP_SET_CHANNEL:
  404. if (_IOC_DIR(cmd) != _IOC_WRITE ||
  405.     usblp->dev->descriptor.idVendor != 0x03F0 ||
  406.     usblp->quirks & USBLP_QUIRK_BIDIR) {
  407. retval = -EINVAL;
  408. goto done;
  409. }
  410. err = usblp_hp_channel_change_request(usblp,
  411. arg, &newChannel);
  412. if (err < 0) {
  413. err("usblp%d: error = %d setting "
  414. "HP channel",
  415. usblp->minor, err);
  416. retval = -EIO;
  417. goto done;
  418. }
  419. dbg("usblp%d requested/got HP channel %ld/%d",
  420. usblp->minor, arg, newChannel);
  421. break;
  422. case IOCNR_GET_BUS_ADDRESS:
  423. if (_IOC_DIR(cmd) != _IOC_READ ||
  424.     _IOC_SIZE(cmd) < sizeof(twoints)) {
  425. retval = -EINVAL;
  426. goto done;
  427. }
  428. twoints[0] = usblp->dev->bus->busnum;
  429. twoints[1] = usblp->dev->devnum;
  430. if (copy_to_user((unsigned char *)arg,
  431. (unsigned char *)twoints,
  432. sizeof(twoints))) {
  433. retval = -EFAULT;
  434. goto done;
  435. }
  436. dbg("usblp%d is bus=%d, device=%d",
  437. usblp->minor, twoints[0], twoints[1]);
  438. break;
  439. case IOCNR_GET_VID_PID:
  440. if (_IOC_DIR(cmd) != _IOC_READ ||
  441.     _IOC_SIZE(cmd) < sizeof(twoints)) {
  442. retval = -EINVAL;
  443. goto done;
  444. }
  445. twoints[0] = usblp->dev->descriptor.idVendor;
  446. twoints[1] = usblp->dev->descriptor.idProduct;
  447. if (copy_to_user((unsigned char *)arg,
  448. (unsigned char *)twoints,
  449. sizeof(twoints))) {
  450. retval = -EFAULT;
  451. goto done;
  452. }
  453. dbg("usblp%d is VID=0x%4.4X, PID=0x%4.4X",
  454. usblp->minor, twoints[0], twoints[1]);
  455. break;
  456. default:
  457. retval = -EINVAL;
  458. }
  459. else /* old-style ioctl value */
  460. switch (cmd) {
  461. case LPGETSTATUS:
  462. if (usblp_read_status(usblp, &lpstatus)) {
  463. err("usblp%d: failed reading printer status", usblp->minor);
  464. retval = -EIO;
  465. goto done;
  466. }
  467. status = lpstatus;
  468. if (copy_to_user ((int *)arg, &status, sizeof(int)))
  469. retval = -EFAULT;
  470. break;
  471. default:
  472. retval = -EINVAL;
  473. }
  474. done:
  475. up (&usblp->sem);
  476. return retval;
  477. }
  478. static ssize_t usblp_write(struct file *file, const char *buffer, size_t count, loff_t *ppos)
  479. {
  480. struct usblp *usblp = file->private_data;
  481. int timeout, err = 0;
  482. size_t writecount = 0;
  483. while (writecount < count) {
  484. // FIXME:  only use urb->status inside completion
  485. // callbacks; this way is racey...
  486. if (usblp->writeurb.status == -EINPROGRESS) {
  487. if (file->f_flags & O_NONBLOCK)
  488. return -EAGAIN;
  489. timeout = USBLP_WRITE_TIMEOUT;
  490. while (timeout && usblp->writeurb.status == -EINPROGRESS) {
  491. if (signal_pending(current))
  492. return writecount ? writecount : -EINTR;
  493. timeout = interruptible_sleep_on_timeout(&usblp->wait, timeout);
  494. }
  495. }
  496. down (&usblp->sem);
  497. if (!usblp->dev) {
  498. up (&usblp->sem);
  499. return -ENODEV;
  500. }
  501. if (usblp->writeurb.status != 0) {
  502. if (usblp->quirks & USBLP_QUIRK_BIDIR) {
  503. if (usblp->writeurb.status != -EINPROGRESS)
  504. err("usblp%d: error %d writing to printer",
  505. usblp->minor, usblp->writeurb.status);
  506. err = usblp->writeurb.status;
  507. } else
  508. err = usblp_check_status(usblp, err);
  509. up (&usblp->sem);
  510. /* if the fault was due to disconnect, let khubd's
  511.  * call to usblp_disconnect() grab usblp->sem ...
  512.  */
  513. schedule ();
  514. continue;
  515. }
  516. writecount += usblp->writeurb.transfer_buffer_length;
  517. usblp->writeurb.transfer_buffer_length = 0;
  518. if (writecount == count) {
  519. up (&usblp->sem);
  520. break;
  521. }
  522. usblp->writeurb.transfer_buffer_length = (count - writecount) < USBLP_BUF_SIZE ?
  523.  (count - writecount) : USBLP_BUF_SIZE;
  524. if (copy_from_user(usblp->writeurb.transfer_buffer, buffer + writecount,
  525. usblp->writeurb.transfer_buffer_length)) {
  526. up(&usblp->sem);
  527. return writecount ? writecount : -EFAULT;
  528. }
  529. usblp->writeurb.dev = usblp->dev;
  530. usb_submit_urb(&usblp->writeurb);
  531. up (&usblp->sem);
  532. }
  533. return count;
  534. }
  535. static ssize_t usblp_read(struct file *file, char *buffer, size_t count, loff_t *ppos)
  536. {
  537. struct usblp *usblp = file->private_data;
  538. if (!usblp->bidir)
  539. return -EINVAL;
  540. down (&usblp->sem);
  541. if (!usblp->dev) {
  542. count = -ENODEV;
  543. goto done;
  544. }
  545. if (usblp->readurb.status == -EINPROGRESS) {
  546. if (file->f_flags & O_NONBLOCK) {
  547. count = -EAGAIN;
  548. goto done;
  549. }
  550. // FIXME:  only use urb->status inside completion
  551. // callbacks; this way is racey...
  552. while (usblp->readurb.status == -EINPROGRESS) {
  553. if (signal_pending(current)) {
  554. count = -EINTR;
  555. goto done;
  556. }
  557. up (&usblp->sem);
  558. interruptible_sleep_on(&usblp->wait);
  559. down (&usblp->sem);
  560. }
  561. }
  562. if (!usblp->dev) {
  563. count = -ENODEV;
  564. goto done;
  565. }
  566. if (usblp->readurb.status) {
  567. err("usblp%d: error %d reading from printer",
  568. usblp->minor, usblp->readurb.status);
  569. usblp->readurb.dev = usblp->dev;
  570.   usblp->readcount = 0;
  571. usb_submit_urb(&usblp->readurb);
  572. count = -EIO;
  573. goto done;
  574. }
  575. count = count < usblp->readurb.actual_length - usblp->readcount ?
  576. count : usblp->readurb.actual_length - usblp->readcount;
  577. if (copy_to_user(buffer, usblp->readurb.transfer_buffer + usblp->readcount, count)) {
  578. count = -EFAULT;
  579. goto done;
  580. }
  581. if ((usblp->readcount += count) == usblp->readurb.actual_length) {
  582. usblp->readcount = 0;
  583. usblp->readurb.dev = usblp->dev;
  584. usb_submit_urb(&usblp->readurb);
  585. }
  586. done:
  587. up (&usblp->sem);
  588. return count;
  589. }
  590. /*
  591.  * Checks for printers that have quirks, such as requiring unidirectional
  592.  * communication but reporting bidirectional; currently some HP printers
  593.  * have this flaw (HP 810, 880, 895, etc.), or needing an init string
  594.  * sent at each open (like some Epsons).
  595.  * Returns 1 if found, 0 if not found.
  596.  *
  597.  * HP recommended that we use the bidirectional interface but
  598.  * don't attempt any bulk IN transfers from the IN endpoint.
  599.  * Here's some more detail on the problem:
  600.  * The problem is not that it isn't bidirectional though. The problem
  601.  * is that if you request a device ID, or status information, while
  602.  * the buffers are full, the return data will end up in the print data
  603.  * buffer. For example if you make sure you never request the device ID
  604.  * while you are sending print data, and you don't try to query the
  605.  * printer status every couple of milliseconds, you will probably be OK.
  606.  */
  607. static unsigned int usblp_quirks (__u16 vendor, __u16 product)
  608. {
  609. int i;
  610. for (i = 0; quirk_printers[i].vendorId; i++) {
  611. if (vendor == quirk_printers[i].vendorId &&
  612.     product == quirk_printers[i].productId)
  613. return quirk_printers[i].quirks;
  614.   }
  615. return 0;
  616. }
  617. static struct file_operations usblp_fops = {
  618. owner: THIS_MODULE,
  619. read: usblp_read,
  620. write: usblp_write,
  621. poll: usblp_poll,
  622. ioctl: usblp_ioctl,
  623. open: usblp_open,
  624. release: usblp_release,
  625. };
  626. static void *usblp_probe(struct usb_device *dev, unsigned int ifnum,
  627.  const struct usb_device_id *id)
  628. {
  629. struct usblp *usblp = 0;
  630. int protocol;
  631. char name[6];
  632. /* Malloc and start initializing usblp structure so we can use it
  633.  * directly. */
  634. if (!(usblp = kmalloc(sizeof(struct usblp), GFP_KERNEL))) {
  635. err("out of memory for usblp");
  636. goto abort;
  637. }
  638. memset(usblp, 0, sizeof(struct usblp));
  639. usblp->dev = dev;
  640. init_MUTEX (&usblp->sem);
  641. init_waitqueue_head(&usblp->wait);
  642. usblp->ifnum = ifnum;
  643. /* Look for a free usblp_table entry. */
  644. while (usblp_table[usblp->minor]) {
  645. usblp->minor++;
  646. if (usblp->minor >= USBLP_MINORS) {
  647. err("no more free usblp devices");
  648. goto abort;
  649. }
  650. }
  651. /* Malloc device ID string buffer to the largest expected length,
  652.  * since we can re-query it on an ioctl and a dynamic string
  653.  * could change in length. */
  654. if (!(usblp->device_id_string = kmalloc(DEVICE_ID_SIZE, GFP_KERNEL))) {
  655. err("out of memory for device_id_string");
  656. goto abort;
  657. }
  658. /* Malloc write/read buffers in one chunk.  We somewhat wastefully
  659.  * malloc both regardless of bidirectionality, because the
  660.  * alternate setting can be changed later via an ioctl. */
  661. if (!(usblp->buf = kmalloc(2 * USBLP_BUF_SIZE, GFP_KERNEL))) {
  662. err("out of memory for buf");
  663. goto abort;
  664. }
  665. /* Lookup quirks for this printer. */
  666. usblp->quirks = usblp_quirks(
  667. dev->descriptor.idVendor,
  668. dev->descriptor.idProduct);
  669. /* Analyze and pick initial alternate settings and endpoints. */
  670. protocol = usblp_select_alts(usblp);
  671. if (protocol < 0) {
  672. dbg("incompatible printer-class device 0x%4.4X/0x%4.4X",
  673. dev->descriptor.idVendor,
  674. dev->descriptor.idProduct);
  675. goto abort;
  676. }
  677. /* Setup the selected alternate setting and endpoints. */
  678. if (usblp_set_protocol(usblp, protocol) < 0)
  679. goto abort;
  680. /* Retrieve and store the device ID string. */
  681. usblp_cache_device_id_string(usblp);
  682. #ifdef DEBUG
  683. usblp_check_status(usblp, 0);
  684. #endif
  685. usblp_table[usblp->minor] = usblp;
  686. /* If we have devfs, create with perms=660. */
  687. sprintf(name, "lp%d", usblp->minor);
  688. usblp->devfs = devfs_register(usb_devfs_handle, name,
  689.       DEVFS_FL_DEFAULT, USB_MAJOR,
  690.       USBLP_MINOR_BASE + usblp->minor,
  691.       S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP |
  692.       S_IWGRP, &usblp_fops, NULL);
  693. info("usblp%d: USB %sdirectional printer dev %d "
  694. "if %d alt %d proto %d vid 0x%4.4X pid 0x%4.4X",
  695. usblp->minor, usblp->bidir ? "Bi" : "Uni", dev->devnum, ifnum,
  696. usblp->protocol[usblp->current_protocol].alt_setting,
  697. usblp->current_protocol, usblp->dev->descriptor.idVendor,
  698. usblp->dev->descriptor.idProduct);
  699. return usblp;
  700. abort:
  701. if (usblp) {
  702. if (usblp->buf) kfree(usblp->buf);
  703. if (usblp->device_id_string) kfree(usblp->device_id_string);
  704. kfree(usblp);
  705. }
  706. return NULL;
  707. }
  708. /*
  709.  * We are a "new" style driver with usb_device_id table,
  710.  * but our requirements are too intricate for simple match to handle.
  711.  *
  712.  * The "proto_bias" option may be used to specify the preferred protocol
  713.  * for all USB printers (1=7/1/1, 2=7/1/2, 3=7/1/3).  If the device
  714.  * supports the preferred protocol, then we bind to it.
  715.  *
  716.  * The best interface for us is 7/1/2, because it is compatible
  717.  * with a stream of characters. If we find it, we bind to it.
  718.  *
  719.  * Note that the people from hpoj.sourceforge.net need to be able to
  720.  * bind to 7/1/3 (MLC/1284.4), so we provide them ioctls for this purpose.
  721.  *
  722.  * Failing 7/1/2, we look for 7/1/3, even though it's probably not
  723.  * stream-compatible, because this matches the behaviour of the old code.
  724.  *
  725.  * If nothing else, we bind to 7/1/1 - the unidirectional interface.
  726.  */
  727. static int usblp_select_alts(struct usblp *usblp)
  728. {
  729. struct usb_interface *if_alt;
  730. struct usb_interface_descriptor *ifd;
  731. struct usb_endpoint_descriptor *epd, *epwrite, *epread;
  732. int p, i, e;
  733. if_alt = &usblp->dev->actconfig->interface[usblp->ifnum];
  734. for (p = 0; p < USBLP_MAX_PROTOCOLS; p++)
  735. usblp->protocol[p].alt_setting = -1;
  736. /* Find out what we have. */
  737. for (i = 0; i < if_alt->num_altsetting; i++) {
  738. ifd = &if_alt->altsetting[i];
  739. if (ifd->bInterfaceClass != 7 || ifd->bInterfaceSubClass != 1)
  740. continue;
  741. if (ifd->bInterfaceProtocol < USBLP_FIRST_PROTOCOL ||
  742.     ifd->bInterfaceProtocol > USBLP_LAST_PROTOCOL)
  743. continue;
  744. /* Look for bulk OUT and IN endpoints. */
  745. epwrite = epread = 0;
  746. for (e = 0; e < ifd->bNumEndpoints; e++) {
  747. epd = &ifd->endpoint[e];
  748. if ((epd->bmAttributes&USB_ENDPOINT_XFERTYPE_MASK)!=
  749.     USB_ENDPOINT_XFER_BULK)
  750. continue;
  751. if (!(epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK)) {
  752. if (!epwrite) epwrite=epd;
  753. } else {
  754. if (!epread) epread=epd;
  755. }
  756. }
  757. /* Ignore buggy hardware without the right endpoints. */
  758. if (!epwrite || (ifd->bInterfaceProtocol > 1 && !epread))
  759. continue;
  760. /* Turn off reads for 7/1/1 (unidirectional) interfaces
  761.  * and buggy bidirectional printers. */
  762. if (ifd->bInterfaceProtocol == 1) {
  763. epread = NULL;
  764. } else if (usblp->quirks & USBLP_QUIRK_BIDIR) {
  765. info("Disabling reads from problem bidirectional "
  766. "printer on usblp%d", usblp->minor);
  767. epread = NULL;
  768. }
  769. usblp->protocol[ifd->bInterfaceProtocol].alt_setting = i;
  770. usblp->protocol[ifd->bInterfaceProtocol].epwrite = epwrite;
  771. usblp->protocol[ifd->bInterfaceProtocol].epread = epread;
  772. }
  773. /* If our requested protocol is supported, then use it. */
  774. if (proto_bias >= USBLP_FIRST_PROTOCOL &&
  775.     proto_bias <= USBLP_LAST_PROTOCOL &&
  776.     usblp->protocol[proto_bias].alt_setting != -1)
  777. return proto_bias;
  778. /* Ordering is important here. */
  779. if (usblp->protocol[2].alt_setting != -1) return 2;
  780. if (usblp->protocol[1].alt_setting != -1) return 1;
  781. if (usblp->protocol[3].alt_setting != -1) return 3;
  782. /* If nothing is available, then don't bind to this device. */
  783. return -1;
  784. }
  785. static int usblp_set_protocol(struct usblp *usblp, int protocol)
  786. {
  787. int r, alts;
  788. if (protocol < USBLP_FIRST_PROTOCOL || protocol > USBLP_LAST_PROTOCOL)
  789. return -EINVAL;
  790. alts = usblp->protocol[protocol].alt_setting;
  791. if (alts < 0) return -EINVAL;
  792. r = usb_set_interface(usblp->dev, usblp->ifnum, alts);
  793. if (r < 0) {
  794. err("can't set desired altsetting %d on interface %d",
  795. alts, usblp->ifnum);
  796. return r;
  797. }
  798. FILL_BULK_URB(&usblp->writeurb, usblp->dev,
  799. usb_sndbulkpipe(usblp->dev,
  800.  usblp->protocol[protocol].epwrite->bEndpointAddress),
  801. usblp->buf, 0,
  802. usblp_bulk, usblp);
  803. usblp->bidir = (usblp->protocol[protocol].epread != 0);
  804. if (usblp->bidir)
  805. FILL_BULK_URB(&usblp->readurb, usblp->dev,
  806. usb_rcvbulkpipe(usblp->dev,
  807.  usblp->protocol[protocol].epread->bEndpointAddress),
  808. usblp->buf + USBLP_BUF_SIZE, USBLP_BUF_SIZE,
  809. usblp_bulk, usblp);
  810. usblp->current_protocol = protocol;
  811. dbg("usblp%d set protocol %d", usblp->minor, protocol);
  812. return 0;
  813. }
  814. /* Retrieves and caches device ID string.
  815.  * Returns length, including length bytes but not null terminator.
  816.  * On error, returns a negative errno value. */
  817. static int usblp_cache_device_id_string(struct usblp *usblp)
  818. {
  819. int err, length;
  820. err = usblp_get_id(usblp, 0, usblp->device_id_string, DEVICE_ID_SIZE - 1);
  821. if (err < 0) {
  822. dbg("usblp%d: error = %d reading IEEE-1284 Device ID string",
  823. usblp->minor, err);
  824. usblp->device_id_string[0] = usblp->device_id_string[1] = '';
  825. return -EIO;
  826. }
  827. /* First two bytes are length in big-endian.
  828.  * They count themselves, and we copy them into
  829.  * the user's buffer. */
  830. length = (usblp->device_id_string[0] << 8) + usblp->device_id_string[1];
  831. if (length < 2)
  832. length = 2;
  833. else if (length >= DEVICE_ID_SIZE)
  834. length = DEVICE_ID_SIZE - 1;
  835. usblp->device_id_string[length] = '';
  836. dbg("usblp%d Device ID string [len=%d]="%s"",
  837. usblp->minor, length, &usblp->device_id_string[2]);
  838. return length;
  839. }
  840. static void usblp_disconnect(struct usb_device *dev, void *ptr)
  841. {
  842. struct usblp *usblp = ptr;
  843. if (!usblp || !usblp->dev) {
  844. err("bogus disconnect");
  845. BUG ();
  846. }
  847. down (&usblp->sem);
  848. lock_kernel();
  849. usblp->dev = NULL;
  850. usblp_unlink_urbs(usblp);
  851. if (!usblp->used)
  852. usblp_cleanup (usblp);
  853. else  /* cleanup later, on close */
  854. up (&usblp->sem);
  855. unlock_kernel();
  856. }
  857. static struct usb_device_id usblp_ids [] = {
  858. { USB_DEVICE_INFO(7, 1, 1) },
  859. { USB_DEVICE_INFO(7, 1, 2) },
  860. { USB_DEVICE_INFO(7, 1, 3) },
  861. { USB_INTERFACE_INFO(7, 1, 1) },
  862. { USB_INTERFACE_INFO(7, 1, 2) },
  863. { USB_INTERFACE_INFO(7, 1, 3) },
  864. { } /* Terminating entry */
  865. };
  866. MODULE_DEVICE_TABLE (usb, usblp_ids);
  867. static struct usb_driver usblp_driver = {
  868. name: "usblp",
  869. probe: usblp_probe,
  870. disconnect: usblp_disconnect,
  871. fops: &usblp_fops,
  872. minor: USBLP_MINOR_BASE,
  873. id_table: usblp_ids,
  874. };
  875. static int __init usblp_init(void)
  876. {
  877. if (usb_register(&usblp_driver))
  878. return -1;
  879. info(DRIVER_VERSION ": " DRIVER_DESC);
  880. return 0;
  881. }
  882. static void __exit usblp_exit(void)
  883. {
  884. usb_deregister(&usblp_driver);
  885. }
  886. module_init(usblp_init);
  887. module_exit(usblp_exit);
  888. MODULE_AUTHOR( DRIVER_AUTHOR );
  889. MODULE_DESCRIPTION( DRIVER_DESC );
  890. MODULE_PARM(proto_bias, "i");
  891. MODULE_PARM_DESC(proto_bias, "Favourite protocol number");
  892. MODULE_LICENSE("GPL");