vt.c 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062
  1. /*
  2. * linux/drivers/char/vt.c
  3. *
  4. * Copyright (C) 1991, 1992 Linus Torvalds
  5. */
  6. /*
  7. * Hopefully this will be a rather complete VT102 implementation.
  8. *
  9. * Beeping thanks to John T Kohl.
  10. *
  11. * Virtual Consoles, Screen Blanking, Screen Dumping, Color, Graphics
  12. * Chars, and VT100 enhancements by Peter MacDonald.
  13. *
  14. * Copy and paste function by Andrew Haylett,
  15. * some enhancements by Alessandro Rubini.
  16. *
  17. * Code to check for different video-cards mostly by Galen Hunt,
  18. * <g-hunt@ee.utah.edu>
  19. *
  20. * Rudimentary ISO 10646/Unicode/UTF-8 character set support by
  21. * Markus Kuhn, <mskuhn@immd4.informatik.uni-erlangen.de>.
  22. *
  23. * Dynamic allocation of consoles, aeb@cwi.nl, May 1994
  24. * Resizing of consoles, aeb, 940926
  25. *
  26. * Code for xterm like mouse click reporting by Peter Orbaek 20-Jul-94
  27. * <poe@daimi.aau.dk>
  28. *
  29. * User-defined bell sound, new setterm control sequences and printk
  30. * redirection by Martin Mares <mj@k332.feld.cvut.cz> 19-Nov-95
  31. *
  32. * APM screenblank bug fixed Takashi Manabe <manabe@roy.dsl.tutics.tut.jp>
  33. *
  34. * Merge with the abstract console driver by Geert Uytterhoeven
  35. * <geert@linux-m68k.org>, Jan 1997.
  36. *
  37. * Original m68k console driver modifications by
  38. *
  39. * - Arno Griffioen <arno@usn.nl>
  40. * - David Carter <carter@cs.bris.ac.uk>
  41. *
  42. * The abstract console driver provides a generic interface for a text
  43. * console. It supports VGA text mode, frame buffer based graphical consoles
  44. * and special graphics processors that are only accessible through some
  45. * registers (e.g. a TMS340x0 GSP).
  46. *
  47. * The interface to the hardware is specified using a special structure
  48. * (struct consw) which contains function pointers to console operations
  49. * (see <linux/console.h> for more information).
  50. *
  51. * Support for changeable cursor shape
  52. * by Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>, August 1997
  53. *
  54. * Ported to i386 and con_scrolldelta fixed
  55. * by Emmanuel Marty <core@ggi-project.org>, April 1998
  56. *
  57. * Resurrected character buffers in videoram plus lots of other trickery
  58. * by Martin Mares <mj@atrey.karlin.mff.cuni.cz>, July 1998
  59. *
  60. * Removed old-style timers, introduced console_timer, made timer
  61. * deletion SMP-safe. 17Jun00, Andrew Morton <andrewm@uow.edu.au>
  62. *
  63. * Removed console_lock, enabled interrupts across all console operations
  64. * 13 March 2001, Andrew Morton
  65. *
  66. * Fixed UTF-8 mode so alternate charset modes always work according
  67. * to control sequences interpreted in do_con_trol function
  68. * preserving backward VT100 semigraphics compatibility,
  69. * malformed UTF sequences represented as sequences of replacement glyphs,
  70. * original codes or '?' as a last resort if replacement glyph is undefined
  71. * by Adam Tla/lka <atlka@pg.gda.pl>, Aug 2006
  72. */
  73. #include <linux/module.h>
  74. #include <linux/types.h>
  75. #include <linux/sched.h>
  76. #include <linux/tty.h>
  77. #include <linux/tty_flip.h>
  78. #include <linux/kernel.h>
  79. #include <linux/string.h>
  80. #include <linux/errno.h>
  81. #include <linux/kd.h>
  82. #include <linux/slab.h>
  83. #include <linux/major.h>
  84. #include <linux/mm.h>
  85. #include <linux/console.h>
  86. #include <linux/init.h>
  87. #include <linux/mutex.h>
  88. #include <linux/vt_kern.h>
  89. #include <linux/selection.h>
  90. #include <linux/tiocl.h>
  91. #include <linux/kbd_kern.h>
  92. #include <linux/consolemap.h>
  93. #include <linux/timer.h>
  94. #include <linux/interrupt.h>
  95. #include <linux/workqueue.h>
  96. #include <linux/bootmem.h>
  97. #include <linux/pm.h>
  98. #include <linux/font.h>
  99. #include <linux/bitops.h>
  100. #include <linux/notifier.h>
  101. #include <asm/io.h>
  102. #include <asm/system.h>
  103. #include <asm/uaccess.h>
  104. #define MAX_NR_CON_DRIVER 16
  105. #define CON_DRIVER_FLAG_MODULE 1
  106. #define CON_DRIVER_FLAG_INIT 2
  107. #define CON_DRIVER_FLAG_ATTR 4
  108. struct con_driver {
  109. const struct consw *con;
  110. const char *desc;
  111. struct device *dev;
  112. int node;
  113. int first;
  114. int last;
  115. int flag;
  116. };
  117. static struct con_driver registered_con_driver[MAX_NR_CON_DRIVER];
  118. const struct consw *conswitchp;
  119. /* A bitmap for codes <32. A bit of 1 indicates that the code
  120. * corresponding to that bit number invokes some special action
  121. * (such as cursor movement) and should not be displayed as a
  122. * glyph unless the disp_ctrl mode is explicitly enabled.
  123. */
  124. #define CTRL_ACTION 0x0d00ff81
  125. #define CTRL_ALWAYS 0x0800f501 /* Cannot be overridden by disp_ctrl */
  126. /*
  127. * Here is the default bell parameters: 750HZ, 1/8th of a second
  128. */
  129. #define DEFAULT_BELL_PITCH 750
  130. #define DEFAULT_BELL_DURATION (HZ/8)
  131. struct vc vc_cons [MAX_NR_CONSOLES];
  132. #ifndef VT_SINGLE_DRIVER
  133. static const struct consw *con_driver_map[MAX_NR_CONSOLES];
  134. #endif
  135. static int con_open(struct tty_struct *, struct file *);
  136. static void vc_init(struct vc_data *vc, unsigned int rows,
  137. unsigned int cols, int do_clear);
  138. static void gotoxy(struct vc_data *vc, int new_x, int new_y);
  139. static void save_cur(struct vc_data *vc);
  140. static void reset_terminal(struct vc_data *vc, int do_clear);
  141. static void con_flush_chars(struct tty_struct *tty);
  142. static int set_vesa_blanking(char __user *p);
  143. static void set_cursor(struct vc_data *vc);
  144. static void hide_cursor(struct vc_data *vc);
  145. static void console_callback(struct work_struct *ignored);
  146. static void blank_screen_t(unsigned long dummy);
  147. static void set_palette(struct vc_data *vc);
  148. static int printable; /* Is console ready for printing? */
  149. int default_utf8 = true;
  150. module_param(default_utf8, int, S_IRUGO | S_IWUSR);
  151. /*
  152. * ignore_poke: don't unblank the screen when things are typed. This is
  153. * mainly for the privacy of braille terminal users.
  154. */
  155. static int ignore_poke;
  156. int do_poke_blanked_console;
  157. int console_blanked;
  158. static int vesa_blank_mode; /* 0:none 1:suspendV 2:suspendH 3:powerdown */
  159. static int blankinterval = 10*60*HZ;
  160. static int vesa_off_interval;
  161. static DECLARE_WORK(console_work, console_callback);
  162. /*
  163. * fg_console is the current virtual console,
  164. * last_console is the last used one,
  165. * want_console is the console we want to switch to,
  166. * kmsg_redirect is the console for kernel messages,
  167. */
  168. int fg_console;
  169. int last_console;
  170. int want_console = -1;
  171. int kmsg_redirect;
  172. /*
  173. * For each existing display, we have a pointer to console currently visible
  174. * on that display, allowing consoles other than fg_console to be refreshed
  175. * appropriately. Unless the low-level driver supplies its own display_fg
  176. * variable, we use this one for the "master display".
  177. */
  178. static struct vc_data *master_display_fg;
  179. /*
  180. * Unfortunately, we need to delay tty echo when we're currently writing to the
  181. * console since the code is (and always was) not re-entrant, so we schedule
  182. * all flip requests to process context with schedule-task() and run it from
  183. * console_callback().
  184. */
  185. /*
  186. * For the same reason, we defer scrollback to the console callback.
  187. */
  188. static int scrollback_delta;
  189. /*
  190. * Hook so that the power management routines can (un)blank
  191. * the console on our behalf.
  192. */
  193. int (*console_blank_hook)(int);
  194. static DEFINE_TIMER(console_timer, blank_screen_t, 0, 0);
  195. static int blank_state;
  196. static int blank_timer_expired;
  197. enum {
  198. blank_off = 0,
  199. blank_normal_wait,
  200. blank_vesa_wait,
  201. };
  202. /*
  203. * Notifier list for console events.
  204. */
  205. static ATOMIC_NOTIFIER_HEAD(vt_notifier_list);
  206. int register_vt_notifier(struct notifier_block *nb)
  207. {
  208. return atomic_notifier_chain_register(&vt_notifier_list, nb);
  209. }
  210. EXPORT_SYMBOL_GPL(register_vt_notifier);
  211. int unregister_vt_notifier(struct notifier_block *nb)
  212. {
  213. return atomic_notifier_chain_unregister(&vt_notifier_list, nb);
  214. }
  215. EXPORT_SYMBOL_GPL(unregister_vt_notifier);
  216. static void notify_write(struct vc_data *vc, unsigned int unicode)
  217. {
  218. struct vt_notifier_param param = { .vc = vc, unicode = unicode };
  219. atomic_notifier_call_chain(&vt_notifier_list, VT_WRITE, &param);
  220. }
  221. static void notify_update(struct vc_data *vc)
  222. {
  223. struct vt_notifier_param param = { .vc = vc };
  224. atomic_notifier_call_chain(&vt_notifier_list, VT_UPDATE, &param);
  225. }
  226. /*
  227. * Low-Level Functions
  228. */
  229. #define IS_FG(vc) ((vc)->vc_num == fg_console)
  230. #ifdef VT_BUF_VRAM_ONLY
  231. #define DO_UPDATE(vc) 0
  232. #else
  233. #define DO_UPDATE(vc) CON_IS_VISIBLE(vc)
  234. #endif
  235. static inline unsigned short *screenpos(struct vc_data *vc, int offset, int viewed)
  236. {
  237. unsigned short *p;
  238. if (!viewed)
  239. p = (unsigned short *)(vc->vc_origin + offset);
  240. else if (!vc->vc_sw->con_screen_pos)
  241. p = (unsigned short *)(vc->vc_visible_origin + offset);
  242. else
  243. p = vc->vc_sw->con_screen_pos(vc, offset);
  244. return p;
  245. }
  246. static inline void scrolldelta(int lines)
  247. {
  248. scrollback_delta += lines;
  249. schedule_console_callback();
  250. }
  251. void schedule_console_callback(void)
  252. {
  253. schedule_work(&console_work);
  254. }
  255. static void scrup(struct vc_data *vc, unsigned int t, unsigned int b, int nr)
  256. {
  257. unsigned short *d, *s;
  258. if (t+nr >= b)
  259. nr = b - t - 1;
  260. if (b > vc->vc_rows || t >= b || nr < 1)
  261. return;
  262. if (CON_IS_VISIBLE(vc) && vc->vc_sw->con_scroll(vc, t, b, SM_UP, nr))
  263. return;
  264. d = (unsigned short *)(vc->vc_origin + vc->vc_size_row * t);
  265. s = (unsigned short *)(vc->vc_origin + vc->vc_size_row * (t + nr));
  266. scr_memmovew(d, s, (b - t - nr) * vc->vc_size_row);
  267. scr_memsetw(d + (b - t - nr) * vc->vc_cols, vc->vc_scrl_erase_char,
  268. vc->vc_size_row * nr);
  269. }
  270. static void scrdown(struct vc_data *vc, unsigned int t, unsigned int b, int nr)
  271. {
  272. unsigned short *s;
  273. unsigned int step;
  274. if (t+nr >= b)
  275. nr = b - t - 1;
  276. if (b > vc->vc_rows || t >= b || nr < 1)
  277. return;
  278. if (CON_IS_VISIBLE(vc) && vc->vc_sw->con_scroll(vc, t, b, SM_DOWN, nr))
  279. return;
  280. s = (unsigned short *)(vc->vc_origin + vc->vc_size_row * t);
  281. step = vc->vc_cols * nr;
  282. scr_memmovew(s + step, s, (b - t - nr) * vc->vc_size_row);
  283. scr_memsetw(s, vc->vc_scrl_erase_char, 2 * step);
  284. }
  285. static void do_update_region(struct vc_data *vc, unsigned long start, int count)
  286. {
  287. #ifndef VT_BUF_VRAM_ONLY
  288. unsigned int xx, yy, offset;
  289. u16 *p;
  290. p = (u16 *) start;
  291. if (!vc->vc_sw->con_getxy) {
  292. offset = (start - vc->vc_origin) / 2;
  293. xx = offset % vc->vc_cols;
  294. yy = offset / vc->vc_cols;
  295. } else {
  296. int nxx, nyy;
  297. start = vc->vc_sw->con_getxy(vc, start, &nxx, &nyy);
  298. xx = nxx; yy = nyy;
  299. }
  300. for(;;) {
  301. u16 attrib = scr_readw(p) & 0xff00;
  302. int startx = xx;
  303. u16 *q = p;
  304. while (xx < vc->vc_cols && count) {
  305. if (attrib != (scr_readw(p) & 0xff00)) {
  306. if (p > q)
  307. vc->vc_sw->con_putcs(vc, q, p-q, yy, startx);
  308. startx = xx;
  309. q = p;
  310. attrib = scr_readw(p) & 0xff00;
  311. }
  312. p++;
  313. xx++;
  314. count--;
  315. }
  316. if (p > q)
  317. vc->vc_sw->con_putcs(vc, q, p-q, yy, startx);
  318. if (!count)
  319. break;
  320. xx = 0;
  321. yy++;
  322. if (vc->vc_sw->con_getxy) {
  323. p = (u16 *)start;
  324. start = vc->vc_sw->con_getxy(vc, start, NULL, NULL);
  325. }
  326. }
  327. #endif
  328. }
  329. void update_region(struct vc_data *vc, unsigned long start, int count)
  330. {
  331. WARN_CONSOLE_UNLOCKED();
  332. if (DO_UPDATE(vc)) {
  333. hide_cursor(vc);
  334. do_update_region(vc, start, count);
  335. set_cursor(vc);
  336. }
  337. }
  338. /* Structure of attributes is hardware-dependent */
  339. static u8 build_attr(struct vc_data *vc, u8 _color, u8 _intensity, u8 _blink,
  340. u8 _underline, u8 _reverse, u8 _italic)
  341. {
  342. if (vc->vc_sw->con_build_attr)
  343. return vc->vc_sw->con_build_attr(vc, _color, _intensity,
  344. _blink, _underline, _reverse, _italic);
  345. #ifndef VT_BUF_VRAM_ONLY
  346. /*
  347. * ++roman: I completely changed the attribute format for monochrome
  348. * mode (!can_do_color). The formerly used MDA (monochrome display
  349. * adapter) format didn't allow the combination of certain effects.
  350. * Now the attribute is just a bit vector:
  351. * Bit 0..1: intensity (0..2)
  352. * Bit 2 : underline
  353. * Bit 3 : reverse
  354. * Bit 7 : blink
  355. */
  356. {
  357. u8 a = _color;
  358. if (!vc->vc_can_do_color)
  359. return _intensity |
  360. (_italic ? 2 : 0) |
  361. (_underline ? 4 : 0) |
  362. (_reverse ? 8 : 0) |
  363. (_blink ? 0x80 : 0);
  364. if (_italic)
  365. a = (a & 0xF0) | vc->vc_itcolor;
  366. else if (_underline)
  367. a = (a & 0xf0) | vc->vc_ulcolor;
  368. else if (_intensity == 0)
  369. a = (a & 0xf0) | vc->vc_ulcolor;
  370. if (_reverse)
  371. a = ((a) & 0x88) | ((((a) >> 4) | ((a) << 4)) & 0x77);
  372. if (_blink)
  373. a ^= 0x80;
  374. if (_intensity == 2)
  375. a ^= 0x08;
  376. if (vc->vc_hi_font_mask == 0x100)
  377. a <<= 1;
  378. return a;
  379. }
  380. #else
  381. return 0;
  382. #endif
  383. }
  384. static void update_attr(struct vc_data *vc)
  385. {
  386. vc->vc_attr = build_attr(vc, vc->vc_color, vc->vc_intensity,
  387. vc->vc_blink, vc->vc_underline,
  388. vc->vc_reverse ^ vc->vc_decscnm, vc->vc_italic);
  389. vc->vc_video_erase_char = (build_attr(vc, vc->vc_color, 1, vc->vc_blink, 0, vc->vc_decscnm, 0) << 8) | ' ';
  390. vc->vc_scrl_erase_char = (build_attr(vc, vc->vc_def_color, 1, false, false, false, false) << 8) | ' ';
  391. }
  392. /* Note: inverting the screen twice should revert to the original state */
  393. void invert_screen(struct vc_data *vc, int offset, int count, int viewed)
  394. {
  395. unsigned short *p;
  396. WARN_CONSOLE_UNLOCKED();
  397. count /= 2;
  398. p = screenpos(vc, offset, viewed);
  399. if (vc->vc_sw->con_invert_region)
  400. vc->vc_sw->con_invert_region(vc, p, count);
  401. #ifndef VT_BUF_VRAM_ONLY
  402. else {
  403. u16 *q = p;
  404. int cnt = count;
  405. u16 a;
  406. if (!vc->vc_can_do_color) {
  407. while (cnt--) {
  408. a = scr_readw(q);
  409. a ^= 0x0800;
  410. scr_writew(a, q);
  411. q++;
  412. }
  413. } else if (vc->vc_hi_font_mask == 0x100) {
  414. while (cnt--) {
  415. a = scr_readw(q);
  416. a = ((a) & 0x11ff) | (((a) & 0xe000) >> 4) | (((a) & 0x0e00) << 4);
  417. scr_writew(a, q);
  418. q++;
  419. }
  420. } else {
  421. while (cnt--) {
  422. a = scr_readw(q);
  423. a = ((a) & 0x88ff) | (((a) & 0x7000) >> 4) | (((a) & 0x0700) << 4);
  424. scr_writew(a, q);
  425. q++;
  426. }
  427. }
  428. }
  429. #endif
  430. if (DO_UPDATE(vc))
  431. do_update_region(vc, (unsigned long) p, count);
  432. }
  433. /* used by selection: complement pointer position */
  434. void complement_pos(struct vc_data *vc, int offset)
  435. {
  436. static int old_offset = -1;
  437. static unsigned short old;
  438. static unsigned short oldx, oldy;
  439. WARN_CONSOLE_UNLOCKED();
  440. if (old_offset != -1 && old_offset >= 0 &&
  441. old_offset < vc->vc_screenbuf_size) {
  442. scr_writew(old, screenpos(vc, old_offset, 1));
  443. if (DO_UPDATE(vc))
  444. vc->vc_sw->con_putc(vc, old, oldy, oldx);
  445. }
  446. old_offset = offset;
  447. if (offset != -1 && offset >= 0 &&
  448. offset < vc->vc_screenbuf_size) {
  449. unsigned short new;
  450. unsigned short *p;
  451. p = screenpos(vc, offset, 1);
  452. old = scr_readw(p);
  453. new = old ^ vc->vc_complement_mask;
  454. scr_writew(new, p);
  455. if (DO_UPDATE(vc)) {
  456. oldx = (offset >> 1) % vc->vc_cols;
  457. oldy = (offset >> 1) / vc->vc_cols;
  458. vc->vc_sw->con_putc(vc, new, oldy, oldx);
  459. }
  460. }
  461. }
  462. static void insert_char(struct vc_data *vc, unsigned int nr)
  463. {
  464. unsigned short *p, *q = (unsigned short *)vc->vc_pos;
  465. p = q + vc->vc_cols - nr - vc->vc_x;
  466. while (--p >= q)
  467. scr_writew(scr_readw(p), p + nr);
  468. scr_memsetw(q, vc->vc_video_erase_char, nr * 2);
  469. vc->vc_need_wrap = 0;
  470. if (DO_UPDATE(vc)) {
  471. unsigned short oldattr = vc->vc_attr;
  472. vc->vc_sw->con_bmove(vc, vc->vc_y, vc->vc_x, vc->vc_y, vc->vc_x + nr, 1,
  473. vc->vc_cols - vc->vc_x - nr);
  474. vc->vc_attr = vc->vc_video_erase_char >> 8;
  475. while (nr--)
  476. vc->vc_sw->con_putc(vc, vc->vc_video_erase_char, vc->vc_y, vc->vc_x + nr);
  477. vc->vc_attr = oldattr;
  478. }
  479. }
  480. static void delete_char(struct vc_data *vc, unsigned int nr)
  481. {
  482. unsigned int i = vc->vc_x;
  483. unsigned short *p = (unsigned short *)vc->vc_pos;
  484. while (++i <= vc->vc_cols - nr) {
  485. scr_writew(scr_readw(p+nr), p);
  486. p++;
  487. }
  488. scr_memsetw(p, vc->vc_video_erase_char, nr * 2);
  489. vc->vc_need_wrap = 0;
  490. if (DO_UPDATE(vc)) {
  491. unsigned short oldattr = vc->vc_attr;
  492. vc->vc_sw->con_bmove(vc, vc->vc_y, vc->vc_x + nr, vc->vc_y, vc->vc_x, 1,
  493. vc->vc_cols - vc->vc_x - nr);
  494. vc->vc_attr = vc->vc_video_erase_char >> 8;
  495. while (nr--)
  496. vc->vc_sw->con_putc(vc, vc->vc_video_erase_char, vc->vc_y,
  497. vc->vc_cols - 1 - nr);
  498. vc->vc_attr = oldattr;
  499. }
  500. }
  501. static int softcursor_original;
  502. static void add_softcursor(struct vc_data *vc)
  503. {
  504. int i = scr_readw((u16 *) vc->vc_pos);
  505. u32 type = vc->vc_cursor_type;
  506. if (! (type & 0x10)) return;
  507. if (softcursor_original != -1) return;
  508. softcursor_original = i;
  509. i |= ((type >> 8) & 0xff00 );
  510. i ^= ((type) & 0xff00 );
  511. if ((type & 0x20) && ((softcursor_original & 0x7000) == (i & 0x7000))) i ^= 0x7000;
  512. if ((type & 0x40) && ((i & 0x700) == ((i & 0x7000) >> 4))) i ^= 0x0700;
  513. scr_writew(i, (u16 *) vc->vc_pos);
  514. if (DO_UPDATE(vc))
  515. vc->vc_sw->con_putc(vc, i, vc->vc_y, vc->vc_x);
  516. }
  517. static void hide_softcursor(struct vc_data *vc)
  518. {
  519. if (softcursor_original != -1) {
  520. scr_writew(softcursor_original, (u16 *)vc->vc_pos);
  521. if (DO_UPDATE(vc))
  522. vc->vc_sw->con_putc(vc, softcursor_original,
  523. vc->vc_y, vc->vc_x);
  524. softcursor_original = -1;
  525. }
  526. }
  527. static void hide_cursor(struct vc_data *vc)
  528. {
  529. if (vc == sel_cons)
  530. clear_selection();
  531. vc->vc_sw->con_cursor(vc, CM_ERASE);
  532. hide_softcursor(vc);
  533. }
  534. static void set_cursor(struct vc_data *vc)
  535. {
  536. if (!IS_FG(vc) || console_blanked ||
  537. vc->vc_mode == KD_GRAPHICS)
  538. return;
  539. if (vc->vc_deccm) {
  540. if (vc == sel_cons)
  541. clear_selection();
  542. add_softcursor(vc);
  543. if ((vc->vc_cursor_type & 0x0f) != 1)
  544. vc->vc_sw->con_cursor(vc, CM_DRAW);
  545. } else
  546. hide_cursor(vc);
  547. }
  548. static void set_origin(struct vc_data *vc)
  549. {
  550. WARN_CONSOLE_UNLOCKED();
  551. if (!CON_IS_VISIBLE(vc) ||
  552. !vc->vc_sw->con_set_origin ||
  553. !vc->vc_sw->con_set_origin(vc))
  554. vc->vc_origin = (unsigned long)vc->vc_screenbuf;
  555. vc->vc_visible_origin = vc->vc_origin;
  556. vc->vc_scr_end = vc->vc_origin + vc->vc_screenbuf_size;
  557. vc->vc_pos = vc->vc_origin + vc->vc_size_row * vc->vc_y + 2 * vc->vc_x;
  558. }
  559. static inline void save_screen(struct vc_data *vc)
  560. {
  561. WARN_CONSOLE_UNLOCKED();
  562. if (vc->vc_sw->con_save_screen)
  563. vc->vc_sw->con_save_screen(vc);
  564. }
  565. /*
  566. * Redrawing of screen
  567. */
  568. static void clear_buffer_attributes(struct vc_data *vc)
  569. {
  570. unsigned short *p = (unsigned short *)vc->vc_origin;
  571. int count = vc->vc_screenbuf_size / 2;
  572. int mask = vc->vc_hi_font_mask | 0xff;
  573. for (; count > 0; count--, p++) {
  574. scr_writew((scr_readw(p)&mask) | (vc->vc_video_erase_char & ~mask), p);
  575. }
  576. }
  577. void redraw_screen(struct vc_data *vc, int is_switch)
  578. {
  579. int redraw = 0;
  580. WARN_CONSOLE_UNLOCKED();
  581. if (!vc) {
  582. /* strange ... */
  583. /* printk("redraw_screen: tty %d not allocated ??\n", new_console+1); */
  584. return;
  585. }
  586. if (is_switch) {
  587. struct vc_data *old_vc = vc_cons[fg_console].d;
  588. if (old_vc == vc)
  589. return;
  590. if (!CON_IS_VISIBLE(vc))
  591. redraw = 1;
  592. *vc->vc_display_fg = vc;
  593. fg_console = vc->vc_num;
  594. hide_cursor(old_vc);
  595. if (!CON_IS_VISIBLE(old_vc)) {
  596. save_screen(old_vc);
  597. set_origin(old_vc);
  598. }
  599. } else {
  600. hide_cursor(vc);
  601. redraw = 1;
  602. }
  603. if (redraw) {
  604. int update;
  605. int old_was_color = vc->vc_can_do_color;
  606. set_origin(vc);
  607. update = vc->vc_sw->con_switch(vc);
  608. set_palette(vc);
  609. /*
  610. * If console changed from mono<->color, the best we can do
  611. * is to clear the buffer attributes. As it currently stands,
  612. * rebuilding new attributes from the old buffer is not doable
  613. * without overly complex code.
  614. */
  615. if (old_was_color != vc->vc_can_do_color) {
  616. update_attr(vc);
  617. clear_buffer_attributes(vc);
  618. }
  619. if (update && vc->vc_mode != KD_GRAPHICS)
  620. do_update_region(vc, vc->vc_origin, vc->vc_screenbuf_size / 2);
  621. }
  622. set_cursor(vc);
  623. if (is_switch) {
  624. set_leds();
  625. compute_shiftstate();
  626. notify_update(vc);
  627. }
  628. }
  629. /*
  630. * Allocation, freeing and resizing of VTs.
  631. */
  632. int vc_cons_allocated(unsigned int i)
  633. {
  634. return (i < MAX_NR_CONSOLES && vc_cons[i].d);
  635. }
  636. static void visual_init(struct vc_data *vc, int num, int init)
  637. {
  638. /* ++Geert: vc->vc_sw->con_init determines console size */
  639. if (vc->vc_sw)
  640. module_put(vc->vc_sw->owner);
  641. vc->vc_sw = conswitchp;
  642. #ifndef VT_SINGLE_DRIVER
  643. if (con_driver_map[num])
  644. vc->vc_sw = con_driver_map[num];
  645. #endif
  646. __module_get(vc->vc_sw->owner);
  647. vc->vc_num = num;
  648. vc->vc_display_fg = &master_display_fg;
  649. vc->vc_uni_pagedir_loc = &vc->vc_uni_pagedir;
  650. vc->vc_uni_pagedir = 0;
  651. vc->vc_hi_font_mask = 0;
  652. vc->vc_complement_mask = 0;
  653. vc->vc_can_do_color = 0;
  654. vc->vc_sw->con_init(vc, init);
  655. if (!vc->vc_complement_mask)
  656. vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800;
  657. vc->vc_s_complement_mask = vc->vc_complement_mask;
  658. vc->vc_size_row = vc->vc_cols << 1;
  659. vc->vc_screenbuf_size = vc->vc_rows * vc->vc_size_row;
  660. }
  661. int vc_allocate(unsigned int currcons) /* return 0 on success */
  662. {
  663. WARN_CONSOLE_UNLOCKED();
  664. if (currcons >= MAX_NR_CONSOLES)
  665. return -ENXIO;
  666. if (!vc_cons[currcons].d) {
  667. struct vc_data *vc;
  668. struct vt_notifier_param param;
  669. /* prevent users from taking too much memory */
  670. if (currcons >= MAX_NR_USER_CONSOLES && !capable(CAP_SYS_RESOURCE))
  671. return -EPERM;
  672. /* due to the granularity of kmalloc, we waste some memory here */
  673. /* the alloc is done in two steps, to optimize the common situation
  674. of a 25x80 console (structsize=216, screenbuf_size=4000) */
  675. /* although the numbers above are not valid since long ago, the
  676. point is still up-to-date and the comment still has its value
  677. even if only as a historical artifact. --mj, July 1998 */
  678. param.vc = vc = kzalloc(sizeof(struct vc_data), GFP_KERNEL);
  679. if (!vc)
  680. return -ENOMEM;
  681. vc_cons[currcons].d = vc;
  682. INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK);
  683. visual_init(vc, currcons, 1);
  684. if (!*vc->vc_uni_pagedir_loc)
  685. con_set_default_unimap(vc);
  686. if (!vc->vc_kmalloced)
  687. vc->vc_screenbuf = kmalloc(vc->vc_screenbuf_size, GFP_KERNEL);
  688. if (!vc->vc_screenbuf) {
  689. kfree(vc);
  690. vc_cons[currcons].d = NULL;
  691. return -ENOMEM;
  692. }
  693. vc->vc_kmalloced = 1;
  694. vc_init(vc, vc->vc_rows, vc->vc_cols, 1);
  695. atomic_notifier_call_chain(&vt_notifier_list, VT_ALLOCATE, &param);
  696. }
  697. return 0;
  698. }
  699. static inline int resize_screen(struct vc_data *vc, int width, int height,
  700. int user)
  701. {
  702. /* Resizes the resolution of the display adapater */
  703. int err = 0;
  704. if (vc->vc_mode != KD_GRAPHICS && vc->vc_sw->con_resize)
  705. err = vc->vc_sw->con_resize(vc, width, height, user);
  706. return err;
  707. }
  708. /*
  709. * Change # of rows and columns (0 means unchanged/the size of fg_console)
  710. * [this is to be used together with some user program
  711. * like resize that changes the hardware videomode]
  712. */
  713. #define VC_RESIZE_MAXCOL (32767)
  714. #define VC_RESIZE_MAXROW (32767)
  715. int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int lines)
  716. {
  717. unsigned long old_origin, new_origin, new_scr_end, rlth, rrem, err = 0;
  718. unsigned int old_cols, old_rows, old_row_size, old_screen_size;
  719. unsigned int new_cols, new_rows, new_row_size, new_screen_size;
  720. unsigned int end, user;
  721. unsigned short *newscreen;
  722. WARN_CONSOLE_UNLOCKED();
  723. if (!vc)
  724. return -ENXIO;
  725. user = vc->vc_resize_user;
  726. vc->vc_resize_user = 0;
  727. if (cols > VC_RESIZE_MAXCOL || lines > VC_RESIZE_MAXROW)
  728. return -EINVAL;
  729. new_cols = (cols ? cols : vc->vc_cols);
  730. new_rows = (lines ? lines : vc->vc_rows);
  731. new_row_size = new_cols << 1;
  732. new_screen_size = new_row_size * new_rows;
  733. if (new_cols == vc->vc_cols && new_rows == vc->vc_rows)
  734. return 0;
  735. newscreen = kmalloc(new_screen_size, GFP_USER);
  736. if (!newscreen)
  737. return -ENOMEM;
  738. old_rows = vc->vc_rows;
  739. old_cols = vc->vc_cols;
  740. old_row_size = vc->vc_size_row;
  741. old_screen_size = vc->vc_screenbuf_size;
  742. err = resize_screen(vc, new_cols, new_rows, user);
  743. if (err) {
  744. kfree(newscreen);
  745. return err;
  746. }
  747. vc->vc_rows = new_rows;
  748. vc->vc_cols = new_cols;
  749. vc->vc_size_row = new_row_size;
  750. vc->vc_screenbuf_size = new_screen_size;
  751. rlth = min(old_row_size, new_row_size);
  752. rrem = new_row_size - rlth;
  753. old_origin = vc->vc_origin;
  754. new_origin = (long) newscreen;
  755. new_scr_end = new_origin + new_screen_size;
  756. if (vc->vc_y > new_rows) {
  757. if (old_rows - vc->vc_y < new_rows) {
  758. /*
  759. * Cursor near the bottom, copy contents from the
  760. * bottom of buffer
  761. */
  762. old_origin += (old_rows - new_rows) * old_row_size;
  763. end = vc->vc_scr_end;
  764. } else {
  765. /*
  766. * Cursor is in no man's land, copy 1/2 screenful
  767. * from the top and bottom of cursor position
  768. */
  769. old_origin += (vc->vc_y - new_rows/2) * old_row_size;
  770. end = old_origin + (old_row_size * new_rows);
  771. }
  772. } else
  773. /*
  774. * Cursor near the top, copy contents from the top of buffer
  775. */
  776. end = (old_rows > new_rows) ? old_origin +
  777. (old_row_size * new_rows) :
  778. vc->vc_scr_end;
  779. update_attr(vc);
  780. while (old_origin < end) {
  781. scr_memcpyw((unsigned short *) new_origin,
  782. (unsigned short *) old_origin, rlth);
  783. if (rrem)
  784. scr_memsetw((void *)(new_origin + rlth),
  785. vc->vc_video_erase_char, rrem);
  786. old_origin += old_row_size;
  787. new_origin += new_row_size;
  788. }
  789. if (new_scr_end > new_origin)
  790. scr_memsetw((void *)new_origin, vc->vc_video_erase_char,
  791. new_scr_end - new_origin);
  792. if (vc->vc_kmalloced)
  793. kfree(vc->vc_screenbuf);
  794. vc->vc_screenbuf = newscreen;
  795. vc->vc_kmalloced = 1;
  796. vc->vc_screenbuf_size = new_screen_size;
  797. set_origin(vc);
  798. /* do part of a reset_terminal() */
  799. vc->vc_top = 0;
  800. vc->vc_bottom = vc->vc_rows;
  801. gotoxy(vc, vc->vc_x, vc->vc_y);
  802. save_cur(vc);
  803. if (vc->vc_tty) {
  804. struct winsize ws, *cws = &vc->vc_tty->winsize;
  805. unsigned long flags;
  806. memset(&ws, 0, sizeof(ws));
  807. ws.ws_row = vc->vc_rows;
  808. ws.ws_col = vc->vc_cols;
  809. ws.ws_ypixel = vc->vc_scan_lines;
  810. mutex_lock(&vc->vc_tty->termios_mutex);
  811. spin_lock_irqsave(&vc->vc_tty->ctrl_lock, flags);
  812. if ((ws.ws_row != cws->ws_row || ws.ws_col != cws->ws_col) &&
  813. vc->vc_tty->pgrp)
  814. kill_pgrp(vc->vc_tty->pgrp, SIGWINCH, 1);
  815. spin_unlock_irqrestore(&vc->vc_tty->ctrl_lock, flags);
  816. *cws = ws;
  817. mutex_unlock(&vc->vc_tty->termios_mutex);
  818. }
  819. if (CON_IS_VISIBLE(vc))
  820. update_screen(vc);
  821. return err;
  822. }
  823. int vc_lock_resize(struct vc_data *vc, unsigned int cols, unsigned int lines)
  824. {
  825. int rc;
  826. acquire_console_sem();
  827. rc = vc_resize(vc, cols, lines);
  828. release_console_sem();
  829. return rc;
  830. }
  831. void vc_deallocate(unsigned int currcons)
  832. {
  833. WARN_CONSOLE_UNLOCKED();
  834. if (vc_cons_allocated(currcons)) {
  835. struct vc_data *vc = vc_cons[currcons].d;
  836. struct vt_notifier_param param = { .vc = vc };
  837. atomic_notifier_call_chain(&vt_notifier_list, VT_DEALLOCATE, &param);
  838. vc->vc_sw->con_deinit(vc);
  839. put_pid(vc->vt_pid);
  840. module_put(vc->vc_sw->owner);
  841. if (vc->vc_kmalloced)
  842. kfree(vc->vc_screenbuf);
  843. if (currcons >= MIN_NR_CONSOLES)
  844. kfree(vc);
  845. vc_cons[currcons].d = NULL;
  846. }
  847. }
  848. /*
  849. * VT102 emulator
  850. */
  851. #define set_kbd(vc, x) set_vc_kbd_mode(kbd_table + (vc)->vc_num, (x))
  852. #define clr_kbd(vc, x) clr_vc_kbd_mode(kbd_table + (vc)->vc_num, (x))
  853. #define is_kbd(vc, x) vc_kbd_mode(kbd_table + (vc)->vc_num, (x))
  854. #define decarm VC_REPEAT
  855. #define decckm VC_CKMODE
  856. #define kbdapplic VC_APPLIC
  857. #define lnm VC_CRLF
  858. /*
  859. * this is what the terminal answers to a ESC-Z or csi0c query.
  860. */
  861. #define VT100ID "\033[?1;2c"
  862. #define VT102ID "\033[?6c"
  863. unsigned char color_table[] = { 0, 4, 2, 6, 1, 5, 3, 7,
  864. 8,12,10,14, 9,13,11,15 };
  865. /* the default colour table, for VGA+ colour systems */
  866. int default_red[] = {0x00,0xaa,0x00,0xaa,0x00,0xaa,0x00,0xaa,
  867. 0x55,0xff,0x55,0xff,0x55,0xff,0x55,0xff};
  868. int default_grn[] = {0x00,0x00,0xaa,0x55,0x00,0x00,0xaa,0xaa,
  869. 0x55,0x55,0xff,0xff,0x55,0x55,0xff,0xff};
  870. int default_blu[] = {0x00,0x00,0x00,0x00,0xaa,0xaa,0xaa,0xaa,
  871. 0x55,0x55,0x55,0x55,0xff,0xff,0xff,0xff};
  872. module_param_array(default_red, int, NULL, S_IRUGO | S_IWUSR);
  873. module_param_array(default_grn, int, NULL, S_IRUGO | S_IWUSR);
  874. module_param_array(default_blu, int, NULL, S_IRUGO | S_IWUSR);
  875. /*
  876. * gotoxy() must verify all boundaries, because the arguments
  877. * might also be negative. If the given position is out of
  878. * bounds, the cursor is placed at the nearest margin.
  879. */
  880. static void gotoxy(struct vc_data *vc, int new_x, int new_y)
  881. {
  882. int min_y, max_y;
  883. if (new_x < 0)
  884. vc->vc_x = 0;
  885. else {
  886. if (new_x >= vc->vc_cols)
  887. vc->vc_x = vc->vc_cols - 1;
  888. else
  889. vc->vc_x = new_x;
  890. }
  891. if (vc->vc_decom) {
  892. min_y = vc->vc_top;
  893. max_y = vc->vc_bottom;
  894. } else {
  895. min_y = 0;
  896. max_y = vc->vc_rows;
  897. }
  898. if (new_y < min_y)
  899. vc->vc_y = min_y;
  900. else if (new_y >= max_y)
  901. vc->vc_y = max_y - 1;
  902. else
  903. vc->vc_y = new_y;
  904. vc->vc_pos = vc->vc_origin + vc->vc_y * vc->vc_size_row + (vc->vc_x<<1);
  905. vc->vc_need_wrap = 0;
  906. }
  907. /* for absolute user moves, when decom is set */
  908. static void gotoxay(struct vc_data *vc, int new_x, int new_y)
  909. {
  910. gotoxy(vc, new_x, vc->vc_decom ? (vc->vc_top + new_y) : new_y);
  911. }
  912. void scrollback(struct vc_data *vc, int lines)
  913. {
  914. if (!lines)
  915. lines = vc->vc_rows / 2;
  916. scrolldelta(-lines);
  917. }
  918. void scrollfront(struct vc_data *vc, int lines)
  919. {
  920. if (!lines)
  921. lines = vc->vc_rows / 2;
  922. scrolldelta(lines);
  923. }
  924. static void lf(struct vc_data *vc)
  925. {
  926. /* don't scroll if above bottom of scrolling region, or
  927. * if below scrolling region
  928. */
  929. if (vc->vc_y + 1 == vc->vc_bottom)
  930. scrup(vc, vc->vc_top, vc->vc_bottom, 1);
  931. else if (vc->vc_y < vc->vc_rows - 1) {
  932. vc->vc_y++;
  933. vc->vc_pos += vc->vc_size_row;
  934. }
  935. vc->vc_need_wrap = 0;
  936. notify_write(vc, '\n');
  937. }
  938. static void ri(struct vc_data *vc)
  939. {
  940. /* don't scroll if below top of scrolling region, or
  941. * if above scrolling region
  942. */
  943. if (vc->vc_y == vc->vc_top)
  944. scrdown(vc, vc->vc_top, vc->vc_bottom, 1);
  945. else if (vc->vc_y > 0) {
  946. vc->vc_y--;
  947. vc->vc_pos -= vc->vc_size_row;
  948. }
  949. vc->vc_need_wrap = 0;
  950. }
  951. static inline void cr(struct vc_data *vc)
  952. {
  953. vc->vc_pos -= vc->vc_x << 1;
  954. vc->vc_need_wrap = vc->vc_x = 0;
  955. notify_write(vc, '\r');
  956. }
  957. static inline void bs(struct vc_data *vc)
  958. {
  959. if (vc->vc_x) {
  960. vc->vc_pos -= 2;
  961. vc->vc_x--;
  962. vc->vc_need_wrap = 0;
  963. notify_write(vc, '\b');
  964. }
  965. }
  966. static inline void del(struct vc_data *vc)
  967. {
  968. /* ignored */
  969. }
  970. static void csi_J(struct vc_data *vc, int vpar)
  971. {
  972. unsigned int count;
  973. unsigned short * start;
  974. switch (vpar) {
  975. case 0: /* erase from cursor to end of display */
  976. count = (vc->vc_scr_end - vc->vc_pos) >> 1;
  977. start = (unsigned short *)vc->vc_pos;
  978. if (DO_UPDATE(vc)) {
  979. /* do in two stages */
  980. vc->vc_sw->con_clear(vc, vc->vc_y, vc->vc_x, 1,
  981. vc->vc_cols - vc->vc_x);
  982. vc->vc_sw->con_clear(vc, vc->vc_y + 1, 0,
  983. vc->vc_rows - vc->vc_y - 1,
  984. vc->vc_cols);
  985. }
  986. break;
  987. case 1: /* erase from start to cursor */
  988. count = ((vc->vc_pos - vc->vc_origin) >> 1) + 1;
  989. start = (unsigned short *)vc->vc_origin;
  990. if (DO_UPDATE(vc)) {
  991. /* do in two stages */
  992. vc->vc_sw->con_clear(vc, 0, 0, vc->vc_y,
  993. vc->vc_cols);
  994. vc->vc_sw->con_clear(vc, vc->vc_y, 0, 1,
  995. vc->vc_x + 1);
  996. }
  997. break;
  998. case 2: /* erase whole display */
  999. count = vc->vc_cols * vc->vc_rows;
  1000. start = (unsigned short *)vc->vc_origin;
  1001. if (DO_UPDATE(vc))
  1002. vc->vc_sw->con_clear(vc, 0, 0,
  1003. vc->vc_rows,
  1004. vc->vc_cols);
  1005. break;
  1006. default:
  1007. return;
  1008. }
  1009. scr_memsetw(start, vc->vc_video_erase_char, 2 * count);
  1010. vc->vc_need_wrap = 0;
  1011. }
  1012. static void csi_K(struct vc_data *vc, int vpar)
  1013. {
  1014. unsigned int count;
  1015. unsigned short * start;
  1016. switch (vpar) {
  1017. case 0: /* erase from cursor to end of line */
  1018. count = vc->vc_cols - vc->vc_x;
  1019. start = (unsigned short *)vc->vc_pos;
  1020. if (DO_UPDATE(vc))
  1021. vc->vc_sw->con_clear(vc, vc->vc_y, vc->vc_x, 1,
  1022. vc->vc_cols - vc->vc_x);
  1023. break;
  1024. case 1: /* erase from start of line to cursor */
  1025. start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1));
  1026. count = vc->vc_x + 1;
  1027. if (DO_UPDATE(vc))
  1028. vc->vc_sw->con_clear(vc, vc->vc_y, 0, 1,
  1029. vc->vc_x + 1);
  1030. break;
  1031. case 2: /* erase whole line */
  1032. start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1));
  1033. count = vc->vc_cols;
  1034. if (DO_UPDATE(vc))
  1035. vc->vc_sw->con_clear(vc, vc->vc_y, 0, 1,
  1036. vc->vc_cols);
  1037. break;
  1038. default:
  1039. return;
  1040. }
  1041. scr_memsetw(start, vc->vc_video_erase_char, 2 * count);
  1042. vc->vc_need_wrap = 0;
  1043. }
  1044. static void csi_X(struct vc_data *vc, int vpar) /* erase the following vpar positions */
  1045. { /* not vt100? */
  1046. int count;
  1047. if (!vpar)
  1048. vpar++;
  1049. count = (vpar > vc->vc_cols - vc->vc_x) ? (vc->vc_cols - vc->vc_x) : vpar;
  1050. scr_memsetw((unsigned short *)vc->vc_pos, vc->vc_video_erase_char, 2 * count);
  1051. if (DO_UPDATE(vc))
  1052. vc->vc_sw->con_clear(vc, vc->vc_y, vc->vc_x, 1, count);
  1053. vc->vc_need_wrap = 0;
  1054. }
  1055. static void default_attr(struct vc_data *vc)
  1056. {
  1057. vc->vc_intensity = 1;
  1058. vc->vc_italic = 0;
  1059. vc->vc_underline = 0;
  1060. vc->vc_reverse = 0;
  1061. vc->vc_blink = 0;
  1062. vc->vc_color = vc->vc_def_color;
  1063. }
  1064. /* console_sem is held */
  1065. static void csi_m(struct vc_data *vc)
  1066. {
  1067. int i;
  1068. for (i = 0; i <= vc->vc_npar; i++)
  1069. switch (vc->vc_par[i]) {
  1070. case 0: /* all attributes off */
  1071. default_attr(vc);
  1072. break;
  1073. case 1:
  1074. vc->vc_intensity = 2;
  1075. break;
  1076. case 2:
  1077. vc->vc_intensity = 0;
  1078. break;
  1079. case 3:
  1080. vc->vc_italic = 1;
  1081. break;
  1082. case 4:
  1083. vc->vc_underline = 1;
  1084. break;
  1085. case 5:
  1086. vc->vc_blink = 1;
  1087. break;
  1088. case 7:
  1089. vc->vc_reverse = 1;
  1090. break;
  1091. case 10: /* ANSI X3.64-1979 (SCO-ish?)
  1092. * Select primary font, don't display
  1093. * control chars if defined, don't set
  1094. * bit 8 on output.
  1095. */
  1096. vc->vc_translate = set_translate(vc->vc_charset == 0
  1097. ? vc->vc_G0_charset
  1098. : vc->vc_G1_charset, vc);
  1099. vc->vc_disp_ctrl = 0;
  1100. vc->vc_toggle_meta = 0;
  1101. break;
  1102. case 11: /* ANSI X3.64-1979 (SCO-ish?)
  1103. * Select first alternate font, lets
  1104. * chars < 32 be displayed as ROM chars.
  1105. */
  1106. vc->vc_translate = set_translate(IBMPC_MAP, vc);
  1107. vc->vc_disp_ctrl = 1;
  1108. vc->vc_toggle_meta = 0;
  1109. break;
  1110. case 12: /* ANSI X3.64-1979 (SCO-ish?)
  1111. * Select second alternate font, toggle
  1112. * high bit before displaying as ROM char.
  1113. */
  1114. vc->vc_translate = set_translate(IBMPC_MAP, vc);
  1115. vc->vc_disp_ctrl = 1;
  1116. vc->vc_toggle_meta = 1;
  1117. break;
  1118. case 21:
  1119. case 22:
  1120. vc->vc_intensity = 1;
  1121. break;
  1122. case 23:
  1123. vc->vc_italic = 0;
  1124. break;
  1125. case 24:
  1126. vc->vc_underline = 0;
  1127. break;
  1128. case 25:
  1129. vc->vc_blink = 0;
  1130. break;
  1131. case 27:
  1132. vc->vc_reverse = 0;
  1133. break;
  1134. case 38: /* ANSI X3.64-1979 (SCO-ish?)
  1135. * Enables underscore, white foreground
  1136. * with white underscore (Linux - use
  1137. * default foreground).
  1138. */
  1139. vc->vc_color = (vc->vc_def_color & 0x0f) | (vc->vc_color & 0xf0);
  1140. vc->vc_underline = 1;
  1141. break;
  1142. case 39: /* ANSI X3.64-1979 (SCO-ish?)
  1143. * Disable underline option.
  1144. * Reset colour to default? It did this
  1145. * before...
  1146. */
  1147. vc->vc_color = (vc->vc_def_color & 0x0f) | (vc->vc_color & 0xf0);
  1148. vc->vc_underline = 0;
  1149. break;
  1150. case 49:
  1151. vc->vc_color = (vc->vc_def_color & 0xf0) | (vc->vc_color & 0x0f);
  1152. break;
  1153. default:
  1154. if (vc->vc_par[i] >= 30 && vc->vc_par[i] <= 37)
  1155. vc->vc_color = color_table[vc->vc_par[i] - 30]
  1156. | (vc->vc_color & 0xf0);
  1157. else if (vc->vc_par[i] >= 40 && vc->vc_par[i] <= 47)
  1158. vc->vc_color = (color_table[vc->vc_par[i] - 40] << 4)
  1159. | (vc->vc_color & 0x0f);
  1160. break;
  1161. }
  1162. update_attr(vc);
  1163. }
  1164. static void respond_string(const char *p, struct tty_struct *tty)
  1165. {
  1166. while (*p) {
  1167. tty_insert_flip_char(tty, *p, 0);
  1168. p++;
  1169. }
  1170. con_schedule_flip(tty);
  1171. }
  1172. static void cursor_report(struct vc_data *vc, struct tty_struct *tty)
  1173. {
  1174. char buf[40];
  1175. sprintf(buf, "\033[%d;%dR", vc->vc_y + (vc->vc_decom ? vc->vc_top + 1 : 1), vc->vc_x + 1);
  1176. respond_string(buf, tty);
  1177. }
  1178. static inline void status_report(struct tty_struct *tty)
  1179. {
  1180. respond_string("\033[0n", tty); /* Terminal ok */
  1181. }
  1182. static inline void respond_ID(struct tty_struct * tty)
  1183. {
  1184. respond_string(VT102ID, tty);
  1185. }
  1186. void mouse_report(struct tty_struct *tty, int butt, int mrx, int mry)
  1187. {
  1188. char buf[8];
  1189. sprintf(buf, "\033[M%c%c%c", (char)(' ' + butt), (char)('!' + mrx),
  1190. (char)('!' + mry));
  1191. respond_string(buf, tty);
  1192. }
  1193. /* invoked via ioctl(TIOCLINUX) and through set_selection */
  1194. int mouse_reporting(void)
  1195. {
  1196. return vc_cons[fg_console].d->vc_report_mouse;
  1197. }
  1198. /* console_sem is held */
  1199. static void set_mode(struct vc_data *vc, int on_off)
  1200. {
  1201. int i;
  1202. for (i = 0; i <= vc->vc_npar; i++)
  1203. if (vc->vc_ques) {
  1204. switch(vc->vc_par[i]) { /* DEC private modes set/reset */
  1205. case 1: /* Cursor keys send ^[Ox/^[[x */
  1206. if (on_off)
  1207. set_kbd(vc, decckm);
  1208. else
  1209. clr_kbd(vc, decckm);
  1210. break;
  1211. case 3: /* 80/132 mode switch unimplemented */
  1212. vc->vc_deccolm = on_off;
  1213. #if 0
  1214. vc_resize(deccolm ? 132 : 80, vc->vc_rows);
  1215. /* this alone does not suffice; some user mode
  1216. utility has to change the hardware regs */
  1217. #endif
  1218. break;
  1219. case 5: /* Inverted screen on/off */
  1220. if (vc->vc_decscnm != on_off) {
  1221. vc->vc_decscnm = on_off;
  1222. invert_screen(vc, 0, vc->vc_screenbuf_size, 0);
  1223. update_attr(vc);
  1224. }
  1225. break;
  1226. case 6: /* Origin relative/absolute */
  1227. vc->vc_decom = on_off;
  1228. gotoxay(vc, 0, 0);
  1229. break;
  1230. case 7: /* Autowrap on/off */
  1231. vc->vc_decawm = on_off;
  1232. break;
  1233. case 8: /* Autorepeat on/off */
  1234. if (on_off)
  1235. set_kbd(vc, decarm);
  1236. else
  1237. clr_kbd(vc, decarm);
  1238. break;
  1239. case 9:
  1240. vc->vc_report_mouse = on_off ? 1 : 0;
  1241. break;
  1242. case 25: /* Cursor on/off */
  1243. vc->vc_deccm = on_off;
  1244. break;
  1245. case 1000:
  1246. vc->vc_report_mouse = on_off ? 2 : 0;
  1247. break;
  1248. }
  1249. } else {
  1250. switch(vc->vc_par[i]) { /* ANSI modes set/reset */
  1251. case 3: /* Monitor (display ctrls) */
  1252. vc->vc_disp_ctrl = on_off;
  1253. break;
  1254. case 4: /* Insert Mode on/off */
  1255. vc->vc_decim = on_off;
  1256. break;
  1257. case 20: /* Lf, Enter == CrLf/Lf */
  1258. if (on_off)
  1259. set_kbd(vc, lnm);
  1260. else
  1261. clr_kbd(vc, lnm);
  1262. break;
  1263. }
  1264. }
  1265. }
  1266. /* console_sem is held */
  1267. static void setterm_command(struct vc_data *vc)
  1268. {
  1269. switch(vc->vc_par[0]) {
  1270. case 1: /* set color for underline mode */
  1271. if (vc->vc_can_do_color &&
  1272. vc->vc_par[1] < 16) {
  1273. vc->vc_ulcolor = color_table[vc->vc_par[1]];
  1274. if (vc->vc_underline)
  1275. update_attr(vc);
  1276. }
  1277. break;
  1278. case 2: /* set color for half intensity mode */
  1279. if (vc->vc_can_do_color &&
  1280. vc->vc_par[1] < 16) {
  1281. vc->vc_halfcolor = color_table[vc->vc_par[1]];
  1282. if (vc->vc_intensity == 0)
  1283. update_attr(vc);
  1284. }
  1285. break;
  1286. case 8: /* store colors as defaults */
  1287. vc->vc_def_color = vc->vc_attr;
  1288. if (vc->vc_hi_font_mask == 0x100)
  1289. vc->vc_def_color >>= 1;
  1290. default_attr(vc);
  1291. update_attr(vc);
  1292. break;
  1293. case 9: /* set blanking interval */
  1294. blankinterval = ((vc->vc_par[1] < 60) ? vc->vc_par[1] : 60) * 60 * HZ;
  1295. poke_blanked_console();
  1296. break;
  1297. case 10: /* set bell frequency in Hz */
  1298. if (vc->vc_npar >= 1)
  1299. vc->vc_bell_pitch = vc->vc_par[1];
  1300. else
  1301. vc->vc_bell_pitch = DEFAULT_BELL_PITCH;
  1302. break;
  1303. case 11: /* set bell duration in msec */
  1304. if (vc->vc_npar >= 1)
  1305. vc->vc_bell_duration = (vc->vc_par[1] < 2000) ?
  1306. vc->vc_par[1] * HZ / 1000 : 0;
  1307. else
  1308. vc->vc_bell_duration = DEFAULT_BELL_DURATION;
  1309. break;
  1310. case 12: /* bring specified console to the front */
  1311. if (vc->vc_par[1] >= 1 && vc_cons_allocated(vc->vc_par[1] - 1))
  1312. set_console(vc->vc_par[1] - 1);
  1313. break;
  1314. case 13: /* unblank the screen */
  1315. poke_blanked_console();
  1316. break;
  1317. case 14: /* set vesa powerdown interval */
  1318. vesa_off_interval = ((vc->vc_par[1] < 60) ? vc->vc_par[1] : 60) * 60 * HZ;
  1319. break;
  1320. case 15: /* activate the previous console */
  1321. set_console(last_console);
  1322. break;
  1323. }
  1324. }
  1325. /* console_sem is held */
  1326. static void csi_at(struct vc_data *vc, unsigned int nr)
  1327. {
  1328. if (nr > vc->vc_cols - vc->vc_x)
  1329. nr = vc->vc_cols - vc->vc_x;
  1330. else if (!nr)
  1331. nr = 1;
  1332. insert_char(vc, nr);
  1333. }
  1334. /* console_sem is held */
  1335. static void csi_L(struct vc_data *vc, unsigned int nr)
  1336. {
  1337. if (nr > vc->vc_rows - vc->vc_y)
  1338. nr = vc->vc_rows - vc->vc_y;
  1339. else if (!nr)
  1340. nr = 1;
  1341. scrdown(vc, vc->vc_y, vc->vc_bottom, nr);
  1342. vc->vc_need_wrap = 0;
  1343. }
  1344. /* console_sem is held */
  1345. static void csi_P(struct vc_data *vc, unsigned int nr)
  1346. {
  1347. if (nr > vc->vc_cols - vc->vc_x)
  1348. nr = vc->vc_cols - vc->vc_x;
  1349. else if (!nr)
  1350. nr = 1;
  1351. delete_char(vc, nr);
  1352. }
  1353. /* console_sem is held */
  1354. static void csi_M(struct vc_data *vc, unsigned int nr)
  1355. {
  1356. if (nr > vc->vc_rows - vc->vc_y)
  1357. nr = vc->vc_rows - vc->vc_y;
  1358. else if (!nr)
  1359. nr=1;
  1360. scrup(vc, vc->vc_y, vc->vc_bottom, nr);
  1361. vc->vc_need_wrap = 0;
  1362. }
  1363. /* console_sem is held (except via vc_init->reset_terminal */
  1364. static void save_cur(struct vc_data *vc)
  1365. {
  1366. vc->vc_saved_x = vc->vc_x;
  1367. vc->vc_saved_y = vc->vc_y;
  1368. vc->vc_s_intensity = vc->vc_intensity;
  1369. vc->vc_s_italic = vc->vc_italic;
  1370. vc->vc_s_underline = vc->vc_underline;
  1371. vc->vc_s_blink = vc->vc_blink;
  1372. vc->vc_s_reverse = vc->vc_reverse;
  1373. vc->vc_s_charset = vc->vc_charset;
  1374. vc->vc_s_color = vc->vc_color;
  1375. vc->vc_saved_G0 = vc->vc_G0_charset;
  1376. vc->vc_saved_G1 = vc->vc_G1_charset;
  1377. }
  1378. /* console_sem is held */
  1379. static void restore_cur(struct vc_data *vc)
  1380. {
  1381. gotoxy(vc, vc->vc_saved_x, vc->vc_saved_y);
  1382. vc->vc_intensity = vc->vc_s_intensity;
  1383. vc->vc_italic = vc->vc_s_italic;
  1384. vc->vc_underline = vc->vc_s_underline;
  1385. vc->vc_blink = vc->vc_s_blink;
  1386. vc->vc_reverse = vc->vc_s_reverse;
  1387. vc->vc_charset = vc->vc_s_charset;
  1388. vc->vc_color = vc->vc_s_color;
  1389. vc->vc_G0_charset = vc->vc_saved_G0;
  1390. vc->vc_G1_charset = vc->vc_saved_G1;
  1391. vc->vc_translate = set_translate(vc->vc_charset ? vc->vc_G1_charset : vc->vc_G0_charset, vc);
  1392. update_attr(vc);
  1393. vc->vc_need_wrap = 0;
  1394. }
  1395. enum { ESnormal, ESesc, ESsquare, ESgetpars, ESgotpars, ESfunckey,
  1396. EShash, ESsetG0, ESsetG1, ESpercent, ESignore, ESnonstd,
  1397. ESpalette };
  1398. /* console_sem is held (except via vc_init()) */
  1399. static void reset_terminal(struct vc_data *vc, int do_clear)
  1400. {
  1401. vc->vc_top = 0;
  1402. vc->vc_bottom = vc->vc_rows;
  1403. vc->vc_state = ESnormal;
  1404. vc->vc_ques = 0;
  1405. vc->vc_translate = set_translate(LAT1_MAP, vc);
  1406. vc->vc_G0_charset = LAT1_MAP;
  1407. vc->vc_G1_charset = GRAF_MAP;
  1408. vc->vc_charset = 0;
  1409. vc->vc_need_wrap = 0;
  1410. vc->vc_report_mouse = 0;
  1411. vc->vc_utf = default_utf8;
  1412. vc->vc_utf_count = 0;
  1413. vc->vc_disp_ctrl = 0;
  1414. vc->vc_toggle_meta = 0;
  1415. vc->vc_decscnm = 0;
  1416. vc->vc_decom = 0;
  1417. vc->vc_decawm = 1;
  1418. vc->vc_deccm = 1;
  1419. vc->vc_decim = 0;
  1420. set_kbd(vc, decarm);
  1421. clr_kbd(vc, decckm);
  1422. clr_kbd(vc, kbdapplic);
  1423. clr_kbd(vc, lnm);
  1424. kbd_table[vc->vc_num].lockstate = 0;
  1425. kbd_table[vc->vc_num].slockstate = 0;
  1426. kbd_table[vc->vc_num].ledmode = LED_SHOW_FLAGS;
  1427. kbd_table[vc->vc_num].ledflagstate = kbd_table[vc->vc_num].default_ledflagstate;
  1428. /* do not do set_leds here because this causes an endless tasklet loop
  1429. when the keyboard hasn't been initialized yet */
  1430. vc->vc_cursor_type = CUR_DEFAULT;
  1431. vc->vc_complement_mask = vc->vc_s_complement_mask;
  1432. default_attr(vc);
  1433. update_attr(vc);
  1434. vc->vc_tab_stop[0] = 0x01010100;
  1435. vc->vc_tab_stop[1] =
  1436. vc->vc_tab_stop[2] =
  1437. vc->vc_tab_stop[3] =
  1438. vc->vc_tab_stop[4] = 0x01010101;
  1439. vc->vc_bell_pitch = DEFAULT_BELL_PITCH;
  1440. vc->vc_bell_duration = DEFAULT_BELL_DURATION;
  1441. gotoxy(vc, 0, 0);
  1442. save_cur(vc);
  1443. if (do_clear)
  1444. csi_J(vc, 2);
  1445. }
  1446. /* console_sem is held */
  1447. static void do_con_trol(struct tty_struct *tty, struct vc_data *vc, int c)
  1448. {
  1449. /*
  1450. * Control characters can be used in the _middle_
  1451. * of an escape sequence.
  1452. */
  1453. switch (c) {
  1454. case 0:
  1455. return;
  1456. case 7:
  1457. if (vc->vc_bell_duration)
  1458. kd_mksound(vc->vc_bell_pitch, vc->vc_bell_duration);
  1459. return;
  1460. case 8:
  1461. bs(vc);
  1462. return;
  1463. case 9:
  1464. vc->vc_pos -= (vc->vc_x << 1);
  1465. while (vc->vc_x < vc->vc_cols - 1) {
  1466. vc->vc_x++;
  1467. if (vc->vc_tab_stop[vc->vc_x >> 5] & (1 << (vc->vc_x & 31)))
  1468. break;
  1469. }
  1470. vc->vc_pos += (vc->vc_x << 1);
  1471. notify_write(vc, '\t');
  1472. return;
  1473. case 10: case 11: case 12:
  1474. lf(vc);
  1475. if (!is_kbd(vc, lnm))
  1476. return;
  1477. case 13:
  1478. cr(vc);
  1479. return;
  1480. case 14:
  1481. vc->vc_charset = 1;
  1482. vc->vc_translate = set_translate(vc->vc_G1_charset, vc);
  1483. vc->vc_disp_ctrl = 1;
  1484. return;
  1485. case 15:
  1486. vc->vc_charset = 0;
  1487. vc->vc_translate = set_translate(vc->vc_G0_charset, vc);
  1488. vc->vc_disp_ctrl = 0;
  1489. return;
  1490. case 24: case 26:
  1491. vc->vc_state = ESnormal;
  1492. return;
  1493. case 27:
  1494. vc->vc_state = ESesc;
  1495. return;
  1496. case 127:
  1497. del(vc);
  1498. return;
  1499. case 128+27:
  1500. vc->vc_state = ESsquare;
  1501. return;
  1502. }
  1503. switch(vc->vc_state) {
  1504. case ESesc:
  1505. vc->vc_state = ESnormal;
  1506. switch (c) {
  1507. case '[':
  1508. vc->vc_state = ESsquare;
  1509. return;
  1510. case ']':
  1511. vc->vc_state = ESnonstd;
  1512. return;
  1513. case '%':
  1514. vc->vc_state = ESpercent;
  1515. return;
  1516. case 'E':
  1517. cr(vc);
  1518. lf(vc);
  1519. return;
  1520. case 'M':
  1521. ri(vc);
  1522. return;
  1523. case 'D':
  1524. lf(vc);
  1525. return;
  1526. case 'H':
  1527. vc->vc_tab_stop[vc->vc_x >> 5] |= (1 << (vc->vc_x & 31));
  1528. return;
  1529. case 'Z':
  1530. respond_ID(tty);
  1531. return;
  1532. case '7':
  1533. save_cur(vc);
  1534. return;
  1535. case '8':
  1536. restore_cur(vc);
  1537. return;
  1538. case '(':
  1539. vc->vc_state = ESsetG0;
  1540. return;
  1541. case ')':
  1542. vc->vc_state = ESsetG1;
  1543. return;
  1544. case '#':
  1545. vc->vc_state = EShash;
  1546. return;
  1547. case 'c':
  1548. reset_terminal(vc, 1);
  1549. return;
  1550. case '>': /* Numeric keypad */
  1551. clr_kbd(vc, kbdapplic);
  1552. return;
  1553. case '=': /* Appl. keypad */
  1554. set_kbd(vc, kbdapplic);
  1555. return;
  1556. }
  1557. return;
  1558. case ESnonstd:
  1559. if (c=='P') { /* palette escape sequence */
  1560. for (vc->vc_npar = 0; vc->vc_npar < NPAR; vc->vc_npar++)
  1561. vc->vc_par[vc->vc_npar] = 0;
  1562. vc->vc_npar = 0;
  1563. vc->vc_state = ESpalette;
  1564. return;
  1565. } else if (c=='R') { /* reset palette */
  1566. reset_palette(vc);
  1567. vc->vc_state = ESnormal;
  1568. } else
  1569. vc->vc_state = ESnormal;
  1570. return;
  1571. case ESpalette:
  1572. if ( (c>='0'&&c<='9') || (c>='A'&&c<='F') || (c>='a'&&c<='f') ) {
  1573. vc->vc_par[vc->vc_npar++] = (c > '9' ? (c & 0xDF) - 'A' + 10 : c - '0');
  1574. if (vc->vc_npar == 7) {
  1575. int i = vc->vc_par[0] * 3, j = 1;
  1576. vc->vc_palette[i] = 16 * vc->vc_par[j++];
  1577. vc->vc_palette[i++] += vc->vc_par[j++];
  1578. vc->vc_palette[i] = 16 * vc->vc_par[j++];
  1579. vc->vc_palette[i++] += vc->vc_par[j++];
  1580. vc->vc_palette[i] = 16 * vc->vc_par[j++];
  1581. vc->vc_palette[i] += vc->vc_par[j];
  1582. set_palette(vc);
  1583. vc->vc_state = ESnormal;
  1584. }
  1585. } else
  1586. vc->vc_state = ESnormal;
  1587. return;
  1588. case ESsquare:
  1589. for (vc->vc_npar = 0; vc->vc_npar < NPAR; vc->vc_npar++)
  1590. vc->vc_par[vc->vc_npar] = 0;
  1591. vc->vc_npar = 0;
  1592. vc->vc_state = ESgetpars;
  1593. if (c == '[') { /* Function key */
  1594. vc->vc_state=ESfunckey;
  1595. return;
  1596. }
  1597. vc->vc_ques = (c == '?');
  1598. if (vc->vc_ques)
  1599. return;
  1600. case ESgetpars:
  1601. if (c == ';' && vc->vc_npar < NPAR - 1) {
  1602. vc->vc_npar++;
  1603. return;
  1604. } else if (c>='0' && c<='9') {
  1605. vc->vc_par[vc->vc_npar] *= 10;
  1606. vc->vc_par[vc->vc_npar] += c - '0';
  1607. return;
  1608. } else
  1609. vc->vc_state = ESgotpars;
  1610. case ESgotpars:
  1611. vc->vc_state = ESnormal;
  1612. switch(c) {
  1613. case 'h':
  1614. set_mode(vc, 1);
  1615. return;
  1616. case 'l':
  1617. set_mode(vc, 0);
  1618. return;
  1619. case 'c':
  1620. if (vc->vc_ques) {
  1621. if (vc->vc_par[0])
  1622. vc->vc_cursor_type = vc->vc_par[0] | (vc->vc_par[1] << 8) | (vc->vc_par[2] << 16);
  1623. else
  1624. vc->vc_cursor_type = CUR_DEFAULT;
  1625. return;
  1626. }
  1627. break;
  1628. case 'm':
  1629. if (vc->vc_ques) {
  1630. clear_selection();
  1631. if (vc->vc_par[0])
  1632. vc->vc_complement_mask = vc->vc_par[0] << 8 | vc->vc_par[1];
  1633. else
  1634. vc->vc_complement_mask = vc->vc_s_complement_mask;
  1635. return;
  1636. }
  1637. break;
  1638. case 'n':
  1639. if (!vc->vc_ques) {
  1640. if (vc->vc_par[0] == 5)
  1641. status_report(tty);
  1642. else if (vc->vc_par[0] == 6)
  1643. cursor_report(vc, tty);
  1644. }
  1645. return;
  1646. }
  1647. if (vc->vc_ques) {
  1648. vc->vc_ques = 0;
  1649. return;
  1650. }
  1651. switch(c) {
  1652. case 'G': case '`':
  1653. if (vc->vc_par[0])
  1654. vc->vc_par[0]--;
  1655. gotoxy(vc, vc->vc_par[0], vc->vc_y);
  1656. return;
  1657. case 'A':
  1658. if (!vc->vc_par[0])
  1659. vc->vc_par[0]++;
  1660. gotoxy(vc, vc->vc_x, vc->vc_y - vc->vc_par[0]);
  1661. return;
  1662. case 'B': case 'e':
  1663. if (!vc->vc_par[0])
  1664. vc->vc_par[0]++;
  1665. gotoxy(vc, vc->vc_x, vc->vc_y + vc->vc_par[0]);
  1666. return;
  1667. case 'C': case 'a':
  1668. if (!vc->vc_par[0])
  1669. vc->vc_par[0]++;
  1670. gotoxy(vc, vc->vc_x + vc->vc_par[0], vc->vc_y);
  1671. return;
  1672. case 'D':
  1673. if (!vc->vc_par[0])
  1674. vc->vc_par[0]++;
  1675. gotoxy(vc, vc->vc_x - vc->vc_par[0], vc->vc_y);
  1676. return;
  1677. case 'E':
  1678. if (!vc->vc_par[0])
  1679. vc->vc_par[0]++;
  1680. gotoxy(vc, 0, vc->vc_y + vc->vc_par[0]);
  1681. return;
  1682. case 'F':
  1683. if (!vc->vc_par[0])
  1684. vc->vc_par[0]++;
  1685. gotoxy(vc, 0, vc->vc_y - vc->vc_par[0]);
  1686. return;
  1687. case 'd':
  1688. if (vc->vc_par[0])
  1689. vc->vc_par[0]--;
  1690. gotoxay(vc, vc->vc_x ,vc->vc_par[0]);
  1691. return;
  1692. case 'H': case 'f':
  1693. if (vc->vc_par[0])
  1694. vc->vc_par[0]--;
  1695. if (vc->vc_par[1])
  1696. vc->vc_par[1]--;
  1697. gotoxay(vc, vc->vc_par[1], vc->vc_par[0]);
  1698. return;
  1699. case 'J':
  1700. csi_J(vc, vc->vc_par[0]);
  1701. return;
  1702. case 'K':
  1703. csi_K(vc, vc->vc_par[0]);
  1704. return;
  1705. case 'L':
  1706. csi_L(vc, vc->vc_par[0]);
  1707. return;
  1708. case 'M':
  1709. csi_M(vc, vc->vc_par[0]);
  1710. return;
  1711. case 'P':
  1712. csi_P(vc, vc->vc_par[0]);
  1713. return;
  1714. case 'c':
  1715. if (!vc->vc_par[0])
  1716. respond_ID(tty);
  1717. return;
  1718. case 'g':
  1719. if (!vc->vc_par[0])
  1720. vc->vc_tab_stop[vc->vc_x >> 5] &= ~(1 << (vc->vc_x & 31));
  1721. else if (vc->vc_par[0] == 3) {
  1722. vc->vc_tab_stop[0] =
  1723. vc->vc_tab_stop[1] =
  1724. vc->vc_tab_stop[2] =
  1725. vc->vc_tab_stop[3] =
  1726. vc->vc_tab_stop[4] = 0;
  1727. }
  1728. return;
  1729. case 'm':
  1730. csi_m(vc);
  1731. return;
  1732. case 'q': /* DECLL - but only 3 leds */
  1733. /* map 0,1,2,3 to 0,1,2,4 */
  1734. if (vc->vc_par[0] < 4)
  1735. setledstate(kbd_table + vc->vc_num,
  1736. (vc->vc_par[0] < 3) ? vc->vc_par[0] : 4);
  1737. return;
  1738. case 'r':
  1739. if (!vc->vc_par[0])
  1740. vc->vc_par[0]++;
  1741. if (!vc->vc_par[1])
  1742. vc->vc_par[1] = vc->vc_rows;
  1743. /* Minimum allowed region is 2 lines */
  1744. if (vc->vc_par[0] < vc->vc_par[1] &&
  1745. vc->vc_par[1] <= vc->vc_rows) {
  1746. vc->vc_top = vc->vc_par[0] - 1;
  1747. vc->vc_bottom = vc->vc_par[1];
  1748. gotoxay(vc, 0, 0);
  1749. }
  1750. return;
  1751. case 's':
  1752. save_cur(vc);
  1753. return;
  1754. case 'u':
  1755. restore_cur(vc);
  1756. return;
  1757. case 'X':
  1758. csi_X(vc, vc->vc_par[0]);
  1759. return;
  1760. case '@':
  1761. csi_at(vc, vc->vc_par[0]);
  1762. return;
  1763. case ']': /* setterm functions */
  1764. setterm_command(vc);
  1765. return;
  1766. }
  1767. return;
  1768. case ESpercent:
  1769. vc->vc_state = ESnormal;
  1770. switch (c) {
  1771. case '@': /* defined in ISO 2022 */
  1772. vc->vc_utf = 0;
  1773. return;
  1774. case 'G': /* prelim official escape code */
  1775. case '8': /* retained for compatibility */
  1776. vc->vc_utf = 1;
  1777. return;
  1778. }
  1779. return;
  1780. case ESfunckey:
  1781. vc->vc_state = ESnormal;
  1782. return;
  1783. case EShash:
  1784. vc->vc_state = ESnormal;
  1785. if (c == '8') {
  1786. /* DEC screen alignment test. kludge :-) */
  1787. vc->vc_video_erase_char =
  1788. (vc->vc_video_erase_char & 0xff00) | 'E';
  1789. csi_J(vc, 2);
  1790. vc->vc_video_erase_char =
  1791. (vc->vc_video_erase_char & 0xff00) | ' ';
  1792. do_update_region(vc, vc->vc_origin, vc->vc_screenbuf_size / 2);
  1793. }
  1794. return;
  1795. case ESsetG0:
  1796. if (c == '0')
  1797. vc->vc_G0_charset = GRAF_MAP;
  1798. else if (c == 'B')
  1799. vc->vc_G0_charset = LAT1_MAP;
  1800. else if (c == 'U')
  1801. vc->vc_G0_charset = IBMPC_MAP;
  1802. else if (c == 'K')
  1803. vc->vc_G0_charset = USER_MAP;
  1804. if (vc->vc_charset == 0)
  1805. vc->vc_translate = set_translate(vc->vc_G0_charset, vc);
  1806. vc->vc_state = ESnormal;
  1807. return;
  1808. case ESsetG1:
  1809. if (c == '0')
  1810. vc->vc_G1_charset = GRAF_MAP;
  1811. else if (c == 'B')
  1812. vc->vc_G1_charset = LAT1_MAP;
  1813. else if (c == 'U')
  1814. vc->vc_G1_charset = IBMPC_MAP;
  1815. else if (c == 'K')
  1816. vc->vc_G1_charset = USER_MAP;
  1817. if (vc->vc_charset == 1)
  1818. vc->vc_translate = set_translate(vc->vc_G1_charset, vc);
  1819. vc->vc_state = ESnormal;
  1820. return;
  1821. default:
  1822. vc->vc_state = ESnormal;
  1823. }
  1824. }
  1825. /* This is a temporary buffer used to prepare a tty console write
  1826. * so that we can easily avoid touching user space while holding the
  1827. * console spinlock. It is allocated in con_init and is shared by
  1828. * this code and the vc_screen read/write tty calls.
  1829. *
  1830. * We have to allocate this statically in the kernel data section
  1831. * since console_init (and thus con_init) are called before any
  1832. * kernel memory allocation is available.
  1833. */
  1834. char con_buf[CON_BUF_SIZE];
  1835. DEFINE_MUTEX(con_buf_mtx);
  1836. /* is_double_width() is based on the wcwidth() implementation by
  1837. * Markus Kuhn -- 2007-05-26 (Unicode 5.0)
  1838. * Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
  1839. */
  1840. struct interval {
  1841. uint32_t first;
  1842. uint32_t last;
  1843. };
  1844. static int bisearch(uint32_t ucs, const struct interval *table, int max)
  1845. {
  1846. int min = 0;
  1847. int mid;
  1848. if (ucs < table[0].first || ucs > table[max].last)
  1849. return 0;
  1850. while (max >= min) {
  1851. mid = (min + max) / 2;
  1852. if (ucs > table[mid].last)
  1853. min = mid + 1;
  1854. else if (ucs < table[mid].first)
  1855. max = mid - 1;
  1856. else
  1857. return 1;
  1858. }
  1859. return 0;
  1860. }
  1861. static int is_double_width(uint32_t ucs)
  1862. {
  1863. static const struct interval double_width[] = {
  1864. { 0x1100, 0x115F }, { 0x2329, 0x232A }, { 0x2E80, 0x303E },
  1865. { 0x3040, 0xA4CF }, { 0xAC00, 0xD7A3 }, { 0xF900, 0xFAFF },
  1866. { 0xFE10, 0xFE19 }, { 0xFE30, 0xFE6F }, { 0xFF00, 0xFF60 },
  1867. { 0xFFE0, 0xFFE6 }, { 0x20000, 0x2FFFD }, { 0x30000, 0x3FFFD }
  1868. };
  1869. return bisearch(ucs, double_width, ARRAY_SIZE(double_width) - 1);
  1870. }
  1871. /* acquires console_sem */
  1872. static int do_con_write(struct tty_struct *tty, const unsigned char *buf, int count)
  1873. {
  1874. #ifdef VT_BUF_VRAM_ONLY
  1875. #define FLUSH do { } while(0);
  1876. #else
  1877. #define FLUSH if (draw_x >= 0) { \
  1878. vc->vc_sw->con_putcs(vc, (u16 *)draw_from, (u16 *)draw_to - (u16 *)draw_from, vc->vc_y, draw_x); \
  1879. draw_x = -1; \
  1880. }
  1881. #endif
  1882. int c, tc, ok, n = 0, draw_x = -1;
  1883. unsigned int currcons;
  1884. unsigned long draw_from = 0, draw_to = 0;
  1885. struct vc_data *vc;
  1886. unsigned char vc_attr;
  1887. struct vt_notifier_param param;
  1888. uint8_t rescan;
  1889. uint8_t inverse;
  1890. uint8_t width;
  1891. u16 himask, charmask;
  1892. const unsigned char *orig_buf = NULL;
  1893. int orig_count;
  1894. if (in_interrupt())
  1895. return count;
  1896. might_sleep();
  1897. acquire_console_sem();
  1898. vc = tty->driver_data;
  1899. if (vc == NULL) {
  1900. printk(KERN_ERR "vt: argh, driver_data is NULL !\n");
  1901. release_console_sem();
  1902. return 0;
  1903. }
  1904. currcons = vc->vc_num;
  1905. if (!vc_cons_allocated(currcons)) {
  1906. /* could this happen? */
  1907. static int error = 0;
  1908. if (!error) {
  1909. error = 1;
  1910. printk("con_write: tty %d not allocated\n", currcons+1);
  1911. }
  1912. release_console_sem();
  1913. return 0;
  1914. }
  1915. release_console_sem();
  1916. orig_buf = buf;
  1917. orig_count = count;
  1918. /* At this point 'buf' is guaranteed to be a kernel buffer
  1919. * and therefore no access to userspace (and therefore sleeping)
  1920. * will be needed. The con_buf_mtx serializes all tty based
  1921. * console rendering and vcs write/read operations. We hold
  1922. * the console spinlock during the entire write.
  1923. */
  1924. acquire_console_sem();
  1925. vc = tty->driver_data;
  1926. if (vc == NULL) {
  1927. printk(KERN_ERR "vt: argh, driver_data _became_ NULL !\n");
  1928. release_console_sem();
  1929. goto out;
  1930. }
  1931. himask = vc->vc_hi_font_mask;
  1932. charmask = himask ? 0x1ff : 0xff;
  1933. /* undraw cursor first */
  1934. if (IS_FG(vc))
  1935. hide_cursor(vc);
  1936. param.vc = vc;
  1937. while (!tty->stopped && count) {
  1938. int orig = *buf;
  1939. c = orig;
  1940. buf++;
  1941. n++;
  1942. count--;
  1943. rescan = 0;
  1944. inverse = 0;
  1945. width = 1;
  1946. /* Do no translation at all in control states */
  1947. if (vc->vc_state != ESnormal) {
  1948. tc = c;
  1949. } else if (vc->vc_utf && !vc->vc_disp_ctrl) {
  1950. /* Combine UTF-8 into Unicode in vc_utf_char.
  1951. * vc_utf_count is the number of continuation bytes still
  1952. * expected to arrive.
  1953. * vc_npar is the number of continuation bytes arrived so
  1954. * far
  1955. */
  1956. rescan_last_byte:
  1957. if ((c & 0xc0) == 0x80) {
  1958. /* Continuation byte received */
  1959. static const uint32_t utf8_length_changes[] = { 0x0000007f, 0x000007ff, 0x0000ffff, 0x001fffff, 0x03ffffff, 0x7fffffff };
  1960. if (vc->vc_utf_count) {
  1961. vc->vc_utf_char = (vc->vc_utf_char << 6) | (c & 0x3f);
  1962. vc->vc_npar++;
  1963. if (--vc->vc_utf_count) {
  1964. /* Still need some bytes */
  1965. continue;
  1966. }
  1967. /* Got a whole character */
  1968. c = vc->vc_utf_char;
  1969. /* Reject overlong sequences */
  1970. if (c <= utf8_length_changes[vc->vc_npar - 1] ||
  1971. c > utf8_length_changes[vc->vc_npar])
  1972. c = 0xfffd;
  1973. } else {
  1974. /* Unexpected continuation byte */
  1975. vc->vc_utf_count = 0;
  1976. c = 0xfffd;
  1977. }
  1978. } else {
  1979. /* Single ASCII byte or first byte of a sequence received */
  1980. if (vc->vc_utf_count) {
  1981. /* Continuation byte expected */
  1982. rescan = 1;
  1983. vc->vc_utf_count = 0;
  1984. c = 0xfffd;
  1985. } else if (c > 0x7f) {
  1986. /* First byte of a multibyte sequence received */
  1987. vc->vc_npar = 0;
  1988. if ((c & 0xe0) == 0xc0) {
  1989. vc->vc_utf_count = 1;
  1990. vc->vc_utf_char = (c & 0x1f);
  1991. } else if ((c & 0xf0) == 0xe0) {
  1992. vc->vc_utf_count = 2;
  1993. vc->vc_utf_char = (c & 0x0f);
  1994. } else if ((c & 0xf8) == 0xf0) {
  1995. vc->vc_utf_count = 3;
  1996. vc->vc_utf_char = (c & 0x07);
  1997. } else if ((c & 0xfc) == 0xf8) {
  1998. vc->vc_utf_count = 4;
  1999. vc->vc_utf_char = (c & 0x03);
  2000. } else if ((c & 0xfe) == 0xfc) {
  2001. vc->vc_utf_count = 5;
  2002. vc->vc_utf_char = (c & 0x01);
  2003. } else {
  2004. /* 254 and 255 are invalid */
  2005. c = 0xfffd;
  2006. }
  2007. if (vc->vc_utf_count) {
  2008. /* Still need some bytes */
  2009. continue;
  2010. }
  2011. }
  2012. /* Nothing to do if an ASCII byte was received */
  2013. }
  2014. /* End of UTF-8 decoding. */
  2015. /* c is the received character, or U+FFFD for invalid sequences. */
  2016. /* Replace invalid Unicode code points with U+FFFD too */
  2017. if ((c >= 0xd800 && c <= 0xdfff) || c == 0xfffe || c == 0xffff)
  2018. c = 0xfffd;
  2019. tc = c;
  2020. } else { /* no utf or alternate charset mode */
  2021. tc = vc->vc_translate[vc->vc_toggle_meta ? (c | 0x80) : c];
  2022. }
  2023. param.c = tc;
  2024. if (atomic_notifier_call_chain(&vt_notifier_list, VT_PREWRITE,
  2025. &param) == NOTIFY_STOP)
  2026. continue;
  2027. /* If the original code was a control character we
  2028. * only allow a glyph to be displayed if the code is
  2029. * not normally used (such as for cursor movement) or
  2030. * if the disp_ctrl mode has been explicitly enabled.
  2031. * Certain characters (as given by the CTRL_ALWAYS
  2032. * bitmap) are always displayed as control characters,
  2033. * as the console would be pretty useless without
  2034. * them; to display an arbitrary font position use the
  2035. * direct-to-font zone in UTF-8 mode.
  2036. */
  2037. ok = tc && (c >= 32 ||
  2038. !(vc->vc_disp_ctrl ? (CTRL_ALWAYS >> c) & 1 :
  2039. vc->vc_utf || ((CTRL_ACTION >> c) & 1)))
  2040. && (c != 127 || vc->vc_disp_ctrl)
  2041. && (c != 128+27);
  2042. if (vc->vc_state == ESnormal && ok) {
  2043. if (vc->vc_utf && !vc->vc_disp_ctrl) {
  2044. if (is_double_width(c))
  2045. width = 2;
  2046. }
  2047. /* Now try to find out how to display it */
  2048. tc = conv_uni_to_pc(vc, tc);
  2049. if (tc & ~charmask) {
  2050. if (tc == -1 || tc == -2) {
  2051. continue; /* nothing to display */
  2052. }
  2053. /* Glyph not found */
  2054. if ((!(vc->vc_utf && !vc->vc_disp_ctrl) || c < 128) && !(c & ~charmask)) {
  2055. /* In legacy mode use the glyph we get by a 1:1 mapping.
  2056. This would make absolutely no sense with Unicode in mind,
  2057. but do this for ASCII characters since a font may lack
  2058. Unicode mapping info and we don't want to end up with
  2059. having question marks only. */
  2060. tc = c;
  2061. } else {
  2062. /* Display U+FFFD. If it's not found, display an inverse question mark. */
  2063. tc = conv_uni_to_pc(vc, 0xfffd);
  2064. if (tc < 0) {
  2065. inverse = 1;
  2066. tc = conv_uni_to_pc(vc, '?');
  2067. if (tc < 0) tc = '?';
  2068. }
  2069. }
  2070. }
  2071. if (!inverse) {
  2072. vc_attr = vc->vc_attr;
  2073. } else {
  2074. /* invert vc_attr */
  2075. if (!vc->vc_can_do_color) {
  2076. vc_attr = (vc->vc_attr) ^ 0x08;
  2077. } else if (vc->vc_hi_font_mask == 0x100) {
  2078. vc_attr = ((vc->vc_attr) & 0x11) | (((vc->vc_attr) & 0xe0) >> 4) | (((vc->vc_attr) & 0x0e) << 4);
  2079. } else {
  2080. vc_attr = ((vc->vc_attr) & 0x88) | (((vc->vc_attr) & 0x70) >> 4) | (((vc->vc_attr) & 0x07) << 4);
  2081. }
  2082. FLUSH
  2083. }
  2084. while (1) {
  2085. if (vc->vc_need_wrap || vc->vc_decim)
  2086. FLUSH
  2087. if (vc->vc_need_wrap) {
  2088. cr(vc);
  2089. lf(vc);
  2090. }
  2091. if (vc->vc_decim)
  2092. insert_char(vc, 1);
  2093. scr_writew(himask ?
  2094. ((vc_attr << 8) & ~himask) + ((tc & 0x100) ? himask : 0) + (tc & 0xff) :
  2095. (vc_attr << 8) + tc,
  2096. (u16 *) vc->vc_pos);
  2097. if (DO_UPDATE(vc) && draw_x < 0) {
  2098. draw_x = vc->vc_x;
  2099. draw_from = vc->vc_pos;
  2100. }
  2101. if (vc->vc_x == vc->vc_cols - 1) {
  2102. vc->vc_need_wrap = vc->vc_decawm;
  2103. draw_to = vc->vc_pos + 2;
  2104. } else {
  2105. vc->vc_x++;
  2106. draw_to = (vc->vc_pos += 2);
  2107. }
  2108. if (!--width) break;
  2109. tc = conv_uni_to_pc(vc, ' '); /* A space is printed in the second column */
  2110. if (tc < 0) tc = ' ';
  2111. }
  2112. notify_write(vc, c);
  2113. if (inverse) {
  2114. FLUSH
  2115. }
  2116. if (rescan) {
  2117. rescan = 0;
  2118. inverse = 0;
  2119. width = 1;
  2120. c = orig;
  2121. goto rescan_last_byte;
  2122. }
  2123. continue;
  2124. }
  2125. FLUSH
  2126. do_con_trol(tty, vc, orig);
  2127. }
  2128. FLUSH
  2129. console_conditional_schedule();
  2130. release_console_sem();
  2131. out:
  2132. notify_update(vc);
  2133. return n;
  2134. #undef FLUSH
  2135. }
  2136. /*
  2137. * This is the console switching callback.
  2138. *
  2139. * Doing console switching in a process context allows
  2140. * us to do the switches asynchronously (needed when we want
  2141. * to switch due to a keyboard interrupt). Synchronization
  2142. * with other console code and prevention of re-entrancy is
  2143. * ensured with console_sem.
  2144. */
  2145. static void console_callback(struct work_struct *ignored)
  2146. {
  2147. acquire_console_sem();
  2148. if (want_console >= 0) {
  2149. if (want_console != fg_console &&
  2150. vc_cons_allocated(want_console)) {
  2151. hide_cursor(vc_cons[fg_console].d);
  2152. change_console(vc_cons[want_console].d);
  2153. /* we only changed when the console had already
  2154. been allocated - a new console is not created
  2155. in an interrupt routine */
  2156. }
  2157. want_console = -1;
  2158. }
  2159. if (do_poke_blanked_console) { /* do not unblank for a LED change */
  2160. do_poke_blanked_console = 0;
  2161. poke_blanked_console();
  2162. }
  2163. if (scrollback_delta) {
  2164. struct vc_data *vc = vc_cons[fg_console].d;
  2165. clear_selection();
  2166. if (vc->vc_mode == KD_TEXT)
  2167. vc->vc_sw->con_scrolldelta(vc, scrollback_delta);
  2168. scrollback_delta = 0;
  2169. }
  2170. if (blank_timer_expired) {
  2171. do_blank_screen(0);
  2172. blank_timer_expired = 0;
  2173. }
  2174. notify_update(vc_cons[fg_console].d);
  2175. release_console_sem();
  2176. }
  2177. int set_console(int nr)
  2178. {
  2179. struct vc_data *vc = vc_cons[fg_console].d;
  2180. if (!vc_cons_allocated(nr) || vt_dont_switch ||
  2181. (vc->vt_mode.mode == VT_AUTO && vc->vc_mode == KD_GRAPHICS)) {
  2182. /*
  2183. * Console switch will fail in console_callback() or
  2184. * change_console() so there is no point scheduling
  2185. * the callback
  2186. *
  2187. * Existing set_console() users don't check the return
  2188. * value so this shouldn't break anything
  2189. */
  2190. return -EINVAL;
  2191. }
  2192. want_console = nr;
  2193. schedule_console_callback();
  2194. return 0;
  2195. }
  2196. struct tty_driver *console_driver;
  2197. #ifdef CONFIG_VT_CONSOLE
  2198. /*
  2199. * Console on virtual terminal
  2200. *
  2201. * The console must be locked when we get here.
  2202. */
  2203. static void vt_console_print(struct console *co, const char *b, unsigned count)
  2204. {
  2205. struct vc_data *vc = vc_cons[fg_console].d;
  2206. unsigned char c;
  2207. static DEFINE_SPINLOCK(printing_lock);
  2208. const ushort *start;
  2209. ushort cnt = 0;
  2210. ushort myx;
  2211. /* console busy or not yet initialized */
  2212. if (!printable)
  2213. return;
  2214. if (!spin_trylock(&printing_lock))
  2215. return;
  2216. if (kmsg_redirect && vc_cons_allocated(kmsg_redirect - 1))
  2217. vc = vc_cons[kmsg_redirect - 1].d;
  2218. /* read `x' only after setting currcons properly (otherwise
  2219. the `x' macro will read the x of the foreground console). */
  2220. myx = vc->vc_x;
  2221. if (!vc_cons_allocated(fg_console)) {
  2222. /* impossible */
  2223. /* printk("vt_console_print: tty %d not allocated ??\n", currcons+1); */
  2224. goto quit;
  2225. }
  2226. if (vc->vc_mode != KD_TEXT)
  2227. goto quit;
  2228. /* undraw cursor first */
  2229. if (IS_FG(vc))
  2230. hide_cursor(vc);
  2231. start = (ushort *)vc->vc_pos;
  2232. /* Contrived structure to try to emulate original need_wrap behaviour
  2233. * Problems caused when we have need_wrap set on '\n' character */
  2234. while (count--) {
  2235. c = *b++;
  2236. if (c == 10 || c == 13 || c == 8 || vc->vc_need_wrap) {
  2237. if (cnt > 0) {
  2238. if (CON_IS_VISIBLE(vc))
  2239. vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x);
  2240. vc->vc_x += cnt;
  2241. if (vc->vc_need_wrap)
  2242. vc->vc_x--;
  2243. cnt = 0;
  2244. }
  2245. if (c == 8) { /* backspace */
  2246. bs(vc);
  2247. start = (ushort *)vc->vc_pos;
  2248. myx = vc->vc_x;
  2249. continue;
  2250. }
  2251. if (c != 13)
  2252. lf(vc);
  2253. cr(vc);
  2254. start = (ushort *)vc->vc_pos;
  2255. myx = vc->vc_x;
  2256. if (c == 10 || c == 13)
  2257. continue;
  2258. }
  2259. scr_writew((vc->vc_attr << 8) + c, (unsigned short *)vc->vc_pos);
  2260. notify_write(vc, c);
  2261. cnt++;
  2262. if (myx == vc->vc_cols - 1) {
  2263. vc->vc_need_wrap = 1;
  2264. continue;
  2265. }
  2266. vc->vc_pos += 2;
  2267. myx++;
  2268. }
  2269. if (cnt > 0) {
  2270. if (CON_IS_VISIBLE(vc))
  2271. vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x);
  2272. vc->vc_x += cnt;
  2273. if (vc->vc_x == vc->vc_cols) {
  2274. vc->vc_x--;
  2275. vc->vc_need_wrap = 1;
  2276. }
  2277. }
  2278. set_cursor(vc);
  2279. notify_update(vc);
  2280. quit:
  2281. spin_unlock(&printing_lock);
  2282. }
  2283. static struct tty_driver *vt_console_device(struct console *c, int *index)
  2284. {
  2285. *index = c->index ? c->index-1 : fg_console;
  2286. return console_driver;
  2287. }
  2288. static struct console vt_console_driver = {
  2289. .name = "tty",
  2290. .write = vt_console_print,
  2291. .device = vt_console_device,
  2292. .unblank = unblank_screen,
  2293. .flags = CON_PRINTBUFFER,
  2294. .index = -1,
  2295. };
  2296. #endif
  2297. /*
  2298. * Handling of Linux-specific VC ioctls
  2299. */
  2300. /*
  2301. * Generally a bit racy with respect to console_sem().
  2302. *
  2303. * There are some functions which don't need it.
  2304. *
  2305. * There are some functions which can sleep for arbitrary periods
  2306. * (paste_selection) but we don't need the lock there anyway.
  2307. *
  2308. * set_selection has locking, and definitely needs it
  2309. */
  2310. int tioclinux(struct tty_struct *tty, unsigned long arg)
  2311. {
  2312. char type, data;
  2313. char __user *p = (char __user *)arg;
  2314. int lines;
  2315. int ret;
  2316. if (tty->driver->type != TTY_DRIVER_TYPE_CONSOLE)
  2317. return -EINVAL;
  2318. if (current->signal->tty != tty && !capable(CAP_SYS_ADMIN))
  2319. return -EPERM;
  2320. if (get_user(type, p))
  2321. return -EFAULT;
  2322. ret = 0;
  2323. lock_kernel();
  2324. switch (type)
  2325. {
  2326. case TIOCL_SETSEL:
  2327. acquire_console_sem();
  2328. ret = set_selection((struct tiocl_selection __user *)(p+1), tty);
  2329. release_console_sem();
  2330. break;
  2331. case TIOCL_PASTESEL:
  2332. ret = paste_selection(tty);
  2333. break;
  2334. case TIOCL_UNBLANKSCREEN:
  2335. acquire_console_sem();
  2336. unblank_screen();
  2337. release_console_sem();
  2338. break;
  2339. case TIOCL_SELLOADLUT:
  2340. ret = sel_loadlut(p);
  2341. break;
  2342. case TIOCL_GETSHIFTSTATE:
  2343. /*
  2344. * Make it possible to react to Shift+Mousebutton.
  2345. * Note that 'shift_state' is an undocumented
  2346. * kernel-internal variable; programs not closely
  2347. * related to the kernel should not use this.
  2348. */
  2349. data = shift_state;
  2350. ret = __put_user(data, p);
  2351. break;
  2352. case TIOCL_GETMOUSEREPORTING:
  2353. data = mouse_reporting();
  2354. ret = __put_user(data, p);
  2355. break;
  2356. case TIOCL_SETVESABLANK:
  2357. ret = set_vesa_blanking(p);
  2358. break;
  2359. case TIOCL_GETKMSGREDIRECT:
  2360. data = kmsg_redirect;
  2361. ret = __put_user(data, p);
  2362. break;
  2363. case TIOCL_SETKMSGREDIRECT:
  2364. if (!capable(CAP_SYS_ADMIN)) {
  2365. ret = -EPERM;
  2366. } else {
  2367. if (get_user(data, p+1))
  2368. ret = -EFAULT;
  2369. else
  2370. kmsg_redirect = data;
  2371. }
  2372. break;
  2373. case TIOCL_GETFGCONSOLE:
  2374. ret = fg_console;
  2375. break;
  2376. case TIOCL_SCROLLCONSOLE:
  2377. if (get_user(lines, (s32 __user *)(p+4))) {
  2378. ret = -EFAULT;
  2379. } else {
  2380. scrollfront(vc_cons[fg_console].d, lines);
  2381. ret = 0;
  2382. }
  2383. break;
  2384. case TIOCL_BLANKSCREEN: /* until explicitly unblanked, not only poked */
  2385. acquire_console_sem();
  2386. ignore_poke = 1;
  2387. do_blank_screen(0);
  2388. release_console_sem();
  2389. break;
  2390. case TIOCL_BLANKEDSCREEN:
  2391. ret = console_blanked;
  2392. break;
  2393. default:
  2394. ret = -EINVAL;
  2395. break;
  2396. }
  2397. unlock_kernel();
  2398. return ret;
  2399. }
  2400. /*
  2401. * /dev/ttyN handling
  2402. */
  2403. static int con_write(struct tty_struct *tty, const unsigned char *buf, int count)
  2404. {
  2405. int retval;
  2406. retval = do_con_write(tty, buf, count);
  2407. con_flush_chars(tty);
  2408. return retval;
  2409. }
  2410. static int con_put_char(struct tty_struct *tty, unsigned char ch)
  2411. {
  2412. if (in_interrupt())
  2413. return 0; /* n_r3964 calls put_char() from interrupt context */
  2414. return do_con_write(tty, &ch, 1);
  2415. }
  2416. static int con_write_room(struct tty_struct *tty)
  2417. {
  2418. if (tty->stopped)
  2419. return 0;
  2420. return 4096; /* No limit, really; we're not buffering */
  2421. }
  2422. static int con_chars_in_buffer(struct tty_struct *tty)
  2423. {
  2424. return 0; /* we're not buffering */
  2425. }
  2426. /*
  2427. * con_throttle and con_unthrottle are only used for
  2428. * paste_selection(), which has to stuff in a large number of
  2429. * characters...
  2430. */
  2431. static void con_throttle(struct tty_struct *tty)
  2432. {
  2433. }
  2434. static void con_unthrottle(struct tty_struct *tty)
  2435. {
  2436. struct vc_data *vc = tty->driver_data;
  2437. wake_up_interruptible(&vc->paste_wait);
  2438. }
  2439. /*
  2440. * Turn the Scroll-Lock LED on when the tty is stopped
  2441. */
  2442. static void con_stop(struct tty_struct *tty)
  2443. {
  2444. int console_num;
  2445. if (!tty)
  2446. return;
  2447. console_num = tty->index;
  2448. if (!vc_cons_allocated(console_num))
  2449. return;
  2450. set_vc_kbd_led(kbd_table + console_num, VC_SCROLLOCK);
  2451. set_leds();
  2452. }
  2453. /*
  2454. * Turn the Scroll-Lock LED off when the console is started
  2455. */
  2456. static void con_start(struct tty_struct *tty)
  2457. {
  2458. int console_num;
  2459. if (!tty)
  2460. return;
  2461. console_num = tty->index;
  2462. if (!vc_cons_allocated(console_num))
  2463. return;
  2464. clr_vc_kbd_led(kbd_table + console_num, VC_SCROLLOCK);
  2465. set_leds();
  2466. }
  2467. static void con_flush_chars(struct tty_struct *tty)
  2468. {
  2469. struct vc_data *vc;
  2470. if (in_interrupt()) /* from flush_to_ldisc */
  2471. return;
  2472. /* if we race with con_close(), vt may be null */
  2473. acquire_console_sem();
  2474. vc = tty->driver_data;
  2475. if (vc)
  2476. set_cursor(vc);
  2477. release_console_sem();
  2478. }
  2479. /*
  2480. * Allocate the console screen memory.
  2481. */
  2482. static int con_open(struct tty_struct *tty, struct file *filp)
  2483. {
  2484. unsigned int currcons = tty->index;
  2485. int ret = 0;
  2486. acquire_console_sem();
  2487. if (tty->driver_data == NULL) {
  2488. ret = vc_allocate(currcons);
  2489. if (ret == 0) {
  2490. struct vc_data *vc = vc_cons[currcons].d;
  2491. tty->driver_data = vc;
  2492. vc->vc_tty = tty;
  2493. if (!tty->winsize.ws_row && !tty->winsize.ws_col) {
  2494. tty->winsize.ws_row = vc_cons[currcons].d->vc_rows;
  2495. tty->winsize.ws_col = vc_cons[currcons].d->vc_cols;
  2496. }
  2497. release_console_sem();
  2498. vcs_make_sysfs(tty);
  2499. return ret;
  2500. }
  2501. }
  2502. release_console_sem();
  2503. return ret;
  2504. }
  2505. /*
  2506. * We take tty_mutex in here to prevent another thread from coming in via init_dev
  2507. * and taking a ref against the tty while we're in the process of forgetting
  2508. * about it and cleaning things up.
  2509. *
  2510. * This is because vcs_remove_sysfs() can sleep and will drop the BKL.
  2511. */
  2512. static void con_close(struct tty_struct *tty, struct file *filp)
  2513. {
  2514. mutex_lock(&tty_mutex);
  2515. acquire_console_sem();
  2516. if (tty && tty->count == 1) {
  2517. struct vc_data *vc = tty->driver_data;
  2518. if (vc)
  2519. vc->vc_tty = NULL;
  2520. tty->driver_data = NULL;
  2521. release_console_sem();
  2522. vcs_remove_sysfs(tty);
  2523. mutex_unlock(&tty_mutex);
  2524. /*
  2525. * tty_mutex is released, but we still hold BKL, so there is
  2526. * still exclusion against init_dev()
  2527. */
  2528. return;
  2529. }
  2530. release_console_sem();
  2531. mutex_unlock(&tty_mutex);
  2532. }
  2533. static int default_italic_color = 2; // green (ASCII)
  2534. static int default_underline_color = 3; // cyan (ASCII)
  2535. module_param_named(italic, default_italic_color, int, S_IRUGO | S_IWUSR);
  2536. module_param_named(underline, default_underline_color, int, S_IRUGO | S_IWUSR);
  2537. static void vc_init(struct vc_data *vc, unsigned int rows,
  2538. unsigned int cols, int do_clear)
  2539. {
  2540. int j, k ;
  2541. vc->vc_cols = cols;
  2542. vc->vc_rows = rows;
  2543. vc->vc_size_row = cols << 1;
  2544. vc->vc_screenbuf_size = vc->vc_rows * vc->vc_size_row;
  2545. set_origin(vc);
  2546. vc->vc_pos = vc->vc_origin;
  2547. reset_vc(vc);
  2548. for (j=k=0; j<16; j++) {
  2549. vc->vc_palette[k++] = default_red[j] ;
  2550. vc->vc_palette[k++] = default_grn[j] ;
  2551. vc->vc_palette[k++] = default_blu[j] ;
  2552. }
  2553. vc->vc_def_color = 0x07; /* white */
  2554. vc->vc_ulcolor = default_underline_color;
  2555. vc->vc_itcolor = default_italic_color;
  2556. vc->vc_halfcolor = 0x08; /* grey */
  2557. init_waitqueue_head(&vc->paste_wait);
  2558. reset_terminal(vc, do_clear);
  2559. }
  2560. /*
  2561. * This routine initializes console interrupts, and does nothing
  2562. * else. If you want the screen to clear, call tty_write with
  2563. * the appropriate escape-sequence.
  2564. */
  2565. static int __init con_init(void)
  2566. {
  2567. const char *display_desc = NULL;
  2568. struct vc_data *vc;
  2569. unsigned int currcons = 0, i;
  2570. acquire_console_sem();
  2571. if (conswitchp)
  2572. display_desc = conswitchp->con_startup();
  2573. if (!display_desc) {
  2574. fg_console = 0;
  2575. release_console_sem();
  2576. return 0;
  2577. }
  2578. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  2579. struct con_driver *con_driver = &registered_con_driver[i];
  2580. if (con_driver->con == NULL) {
  2581. con_driver->con = conswitchp;
  2582. con_driver->desc = display_desc;
  2583. con_driver->flag = CON_DRIVER_FLAG_INIT;
  2584. con_driver->first = 0;
  2585. con_driver->last = MAX_NR_CONSOLES - 1;
  2586. break;
  2587. }
  2588. }
  2589. for (i = 0; i < MAX_NR_CONSOLES; i++)
  2590. con_driver_map[i] = conswitchp;
  2591. if (blankinterval) {
  2592. blank_state = blank_normal_wait;
  2593. mod_timer(&console_timer, jiffies + blankinterval);
  2594. }
  2595. /*
  2596. * kmalloc is not running yet - we use the bootmem allocator.
  2597. */
  2598. for (currcons = 0; currcons < MIN_NR_CONSOLES; currcons++) {
  2599. vc_cons[currcons].d = vc = alloc_bootmem(sizeof(struct vc_data));
  2600. INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK);
  2601. visual_init(vc, currcons, 1);
  2602. vc->vc_screenbuf = (unsigned short *)alloc_bootmem(vc->vc_screenbuf_size);
  2603. vc->vc_kmalloced = 0;
  2604. vc_init(vc, vc->vc_rows, vc->vc_cols,
  2605. currcons || !vc->vc_sw->con_save_screen);
  2606. }
  2607. currcons = fg_console = 0;
  2608. master_display_fg = vc = vc_cons[currcons].d;
  2609. set_origin(vc);
  2610. save_screen(vc);
  2611. gotoxy(vc, vc->vc_x, vc->vc_y);
  2612. csi_J(vc, 0);
  2613. update_screen(vc);
  2614. printk("Console: %s %s %dx%d",
  2615. vc->vc_can_do_color ? "colour" : "mono",
  2616. display_desc, vc->vc_cols, vc->vc_rows);
  2617. printable = 1;
  2618. printk("\n");
  2619. release_console_sem();
  2620. #ifdef CONFIG_VT_CONSOLE
  2621. register_console(&vt_console_driver);
  2622. #endif
  2623. return 0;
  2624. }
  2625. console_initcall(con_init);
  2626. static const struct tty_operations con_ops = {
  2627. .open = con_open,
  2628. .close = con_close,
  2629. .write = con_write,
  2630. .write_room = con_write_room,
  2631. .put_char = con_put_char,
  2632. .flush_chars = con_flush_chars,
  2633. .chars_in_buffer = con_chars_in_buffer,
  2634. .ioctl = vt_ioctl,
  2635. .stop = con_stop,
  2636. .start = con_start,
  2637. .throttle = con_throttle,
  2638. .unthrottle = con_unthrottle,
  2639. };
  2640. int __init vty_init(void)
  2641. {
  2642. vcs_init();
  2643. console_driver = alloc_tty_driver(MAX_NR_CONSOLES);
  2644. if (!console_driver)
  2645. panic("Couldn't allocate console driver\n");
  2646. console_driver->owner = THIS_MODULE;
  2647. console_driver->name = "tty";
  2648. console_driver->name_base = 1;
  2649. console_driver->major = TTY_MAJOR;
  2650. console_driver->minor_start = 1;
  2651. console_driver->type = TTY_DRIVER_TYPE_CONSOLE;
  2652. console_driver->init_termios = tty_std_termios;
  2653. console_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_RESET_TERMIOS;
  2654. tty_set_operations(console_driver, &con_ops);
  2655. if (tty_register_driver(console_driver))
  2656. panic("Couldn't register console driver\n");
  2657. kbd_init();
  2658. console_map_init();
  2659. #ifdef CONFIG_PROM_CONSOLE
  2660. prom_con_init();
  2661. #endif
  2662. #ifdef CONFIG_MDA_CONSOLE
  2663. mda_console_init();
  2664. #endif
  2665. return 0;
  2666. }
  2667. #ifndef VT_SINGLE_DRIVER
  2668. #include <linux/device.h>
  2669. static struct class *vtconsole_class;
  2670. static int bind_con_driver(const struct consw *csw, int first, int last,
  2671. int deflt)
  2672. {
  2673. struct module *owner = csw->owner;
  2674. const char *desc = NULL;
  2675. struct con_driver *con_driver;
  2676. int i, j = -1, k = -1, retval = -ENODEV;
  2677. if (!try_module_get(owner))
  2678. return -ENODEV;
  2679. acquire_console_sem();
  2680. /* check if driver is registered */
  2681. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  2682. con_driver = &registered_con_driver[i];
  2683. if (con_driver->con == csw) {
  2684. desc = con_driver->desc;
  2685. retval = 0;
  2686. break;
  2687. }
  2688. }
  2689. if (retval)
  2690. goto err;
  2691. if (!(con_driver->flag & CON_DRIVER_FLAG_INIT)) {
  2692. csw->con_startup();
  2693. con_driver->flag |= CON_DRIVER_FLAG_INIT;
  2694. }
  2695. if (deflt) {
  2696. if (conswitchp)
  2697. module_put(conswitchp->owner);
  2698. __module_get(owner);
  2699. conswitchp = csw;
  2700. }
  2701. first = max(first, con_driver->first);
  2702. last = min(last, con_driver->last);
  2703. for (i = first; i <= last; i++) {
  2704. int old_was_color;
  2705. struct vc_data *vc = vc_cons[i].d;
  2706. if (con_driver_map[i])
  2707. module_put(con_driver_map[i]->owner);
  2708. __module_get(owner);
  2709. con_driver_map[i] = csw;
  2710. if (!vc || !vc->vc_sw)
  2711. continue;
  2712. j = i;
  2713. if (CON_IS_VISIBLE(vc)) {
  2714. k = i;
  2715. save_screen(vc);
  2716. }
  2717. old_was_color = vc->vc_can_do_color;
  2718. vc->vc_sw->con_deinit(vc);
  2719. vc->vc_origin = (unsigned long)vc->vc_screenbuf;
  2720. visual_init(vc, i, 0);
  2721. set_origin(vc);
  2722. update_attr(vc);
  2723. /* If the console changed between mono <-> color, then
  2724. * the attributes in the screenbuf will be wrong. The
  2725. * following resets all attributes to something sane.
  2726. */
  2727. if (old_was_color != vc->vc_can_do_color)
  2728. clear_buffer_attributes(vc);
  2729. }
  2730. printk("Console: switching ");
  2731. if (!deflt)
  2732. printk("consoles %d-%d ", first+1, last+1);
  2733. if (j >= 0) {
  2734. struct vc_data *vc = vc_cons[j].d;
  2735. printk("to %s %s %dx%d\n",
  2736. vc->vc_can_do_color ? "colour" : "mono",
  2737. desc, vc->vc_cols, vc->vc_rows);
  2738. if (k >= 0) {
  2739. vc = vc_cons[k].d;
  2740. update_screen(vc);
  2741. }
  2742. } else
  2743. printk("to %s\n", desc);
  2744. retval = 0;
  2745. err:
  2746. release_console_sem();
  2747. module_put(owner);
  2748. return retval;
  2749. };
  2750. #ifdef CONFIG_VT_HW_CONSOLE_BINDING
  2751. static int con_is_graphics(const struct consw *csw, int first, int last)
  2752. {
  2753. int i, retval = 0;
  2754. for (i = first; i <= last; i++) {
  2755. struct vc_data *vc = vc_cons[i].d;
  2756. if (vc && vc->vc_mode == KD_GRAPHICS) {
  2757. retval = 1;
  2758. break;
  2759. }
  2760. }
  2761. return retval;
  2762. }
  2763. /**
  2764. * unbind_con_driver - unbind a console driver
  2765. * @csw: pointer to console driver to unregister
  2766. * @first: first in range of consoles that @csw should be unbound from
  2767. * @last: last in range of consoles that @csw should be unbound from
  2768. * @deflt: should next bound console driver be default after @csw is unbound?
  2769. *
  2770. * To unbind a driver from all possible consoles, pass 0 as @first and
  2771. * %MAX_NR_CONSOLES as @last.
  2772. *
  2773. * @deflt controls whether the console that ends up replacing @csw should be
  2774. * the default console.
  2775. *
  2776. * RETURNS:
  2777. * -ENODEV if @csw isn't a registered console driver or can't be unregistered
  2778. * or 0 on success.
  2779. */
  2780. int unbind_con_driver(const struct consw *csw, int first, int last, int deflt)
  2781. {
  2782. struct module *owner = csw->owner;
  2783. const struct consw *defcsw = NULL;
  2784. struct con_driver *con_driver = NULL, *con_back = NULL;
  2785. int i, retval = -ENODEV;
  2786. if (!try_module_get(owner))
  2787. return -ENODEV;
  2788. acquire_console_sem();
  2789. /* check if driver is registered and if it is unbindable */
  2790. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  2791. con_driver = &registered_con_driver[i];
  2792. if (con_driver->con == csw &&
  2793. con_driver->flag & CON_DRIVER_FLAG_MODULE) {
  2794. retval = 0;
  2795. break;
  2796. }
  2797. }
  2798. if (retval) {
  2799. release_console_sem();
  2800. goto err;
  2801. }
  2802. retval = -ENODEV;
  2803. /* check if backup driver exists */
  2804. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  2805. con_back = &registered_con_driver[i];
  2806. if (con_back->con &&
  2807. !(con_back->flag & CON_DRIVER_FLAG_MODULE)) {
  2808. defcsw = con_back->con;
  2809. retval = 0;
  2810. break;
  2811. }
  2812. }
  2813. if (retval) {
  2814. release_console_sem();
  2815. goto err;
  2816. }
  2817. if (!con_is_bound(csw)) {
  2818. release_console_sem();
  2819. goto err;
  2820. }
  2821. first = max(first, con_driver->first);
  2822. last = min(last, con_driver->last);
  2823. for (i = first; i <= last; i++) {
  2824. if (con_driver_map[i] == csw) {
  2825. module_put(csw->owner);
  2826. con_driver_map[i] = NULL;
  2827. }
  2828. }
  2829. if (!con_is_bound(defcsw)) {
  2830. const struct consw *defconsw = conswitchp;
  2831. defcsw->con_startup();
  2832. con_back->flag |= CON_DRIVER_FLAG_INIT;
  2833. /*
  2834. * vgacon may change the default driver to point
  2835. * to dummycon, we restore it here...
  2836. */
  2837. conswitchp = defconsw;
  2838. }
  2839. if (!con_is_bound(csw))
  2840. con_driver->flag &= ~CON_DRIVER_FLAG_INIT;
  2841. release_console_sem();
  2842. /* ignore return value, binding should not fail */
  2843. bind_con_driver(defcsw, first, last, deflt);
  2844. err:
  2845. module_put(owner);
  2846. return retval;
  2847. }
  2848. EXPORT_SYMBOL(unbind_con_driver);
  2849. static int vt_bind(struct con_driver *con)
  2850. {
  2851. const struct consw *defcsw = NULL, *csw = NULL;
  2852. int i, more = 1, first = -1, last = -1, deflt = 0;
  2853. if (!con->con || !(con->flag & CON_DRIVER_FLAG_MODULE) ||
  2854. con_is_graphics(con->con, con->first, con->last))
  2855. goto err;
  2856. csw = con->con;
  2857. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  2858. struct con_driver *con = &registered_con_driver[i];
  2859. if (con->con && !(con->flag & CON_DRIVER_FLAG_MODULE)) {
  2860. defcsw = con->con;
  2861. break;
  2862. }
  2863. }
  2864. if (!defcsw)
  2865. goto err;
  2866. while (more) {
  2867. more = 0;
  2868. for (i = con->first; i <= con->last; i++) {
  2869. if (con_driver_map[i] == defcsw) {
  2870. if (first == -1)
  2871. first = i;
  2872. last = i;
  2873. more = 1;
  2874. } else if (first != -1)
  2875. break;
  2876. }
  2877. if (first == 0 && last == MAX_NR_CONSOLES -1)
  2878. deflt = 1;
  2879. if (first != -1)
  2880. bind_con_driver(csw, first, last, deflt);
  2881. first = -1;
  2882. last = -1;
  2883. deflt = 0;
  2884. }
  2885. err:
  2886. return 0;
  2887. }
  2888. static int vt_unbind(struct con_driver *con)
  2889. {
  2890. const struct consw *csw = NULL;
  2891. int i, more = 1, first = -1, last = -1, deflt = 0;
  2892. if (!con->con || !(con->flag & CON_DRIVER_FLAG_MODULE) ||
  2893. con_is_graphics(con->con, con->first, con->last))
  2894. goto err;
  2895. csw = con->con;
  2896. while (more) {
  2897. more = 0;
  2898. for (i = con->first; i <= con->last; i++) {
  2899. if (con_driver_map[i] == csw) {
  2900. if (first == -1)
  2901. first = i;
  2902. last = i;
  2903. more = 1;
  2904. } else if (first != -1)
  2905. break;
  2906. }
  2907. if (first == 0 && last == MAX_NR_CONSOLES -1)
  2908. deflt = 1;
  2909. if (first != -1)
  2910. unbind_con_driver(csw, first, last, deflt);
  2911. first = -1;
  2912. last = -1;
  2913. deflt = 0;
  2914. }
  2915. err:
  2916. return 0;
  2917. }
  2918. #else
  2919. static inline int vt_bind(struct con_driver *con)
  2920. {
  2921. return 0;
  2922. }
  2923. static inline int vt_unbind(struct con_driver *con)
  2924. {
  2925. return 0;
  2926. }
  2927. #endif /* CONFIG_VT_HW_CONSOLE_BINDING */
  2928. static ssize_t store_bind(struct device *dev, struct device_attribute *attr,
  2929. const char *buf, size_t count)
  2930. {
  2931. struct con_driver *con = dev_get_drvdata(dev);
  2932. int bind = simple_strtoul(buf, NULL, 0);
  2933. if (bind)
  2934. vt_bind(con);
  2935. else
  2936. vt_unbind(con);
  2937. return count;
  2938. }
  2939. static ssize_t show_bind(struct device *dev, struct device_attribute *attr,
  2940. char *buf)
  2941. {
  2942. struct con_driver *con = dev_get_drvdata(dev);
  2943. int bind = con_is_bound(con->con);
  2944. return snprintf(buf, PAGE_SIZE, "%i\n", bind);
  2945. }
  2946. static ssize_t show_name(struct device *dev, struct device_attribute *attr,
  2947. char *buf)
  2948. {
  2949. struct con_driver *con = dev_get_drvdata(dev);
  2950. return snprintf(buf, PAGE_SIZE, "%s %s\n",
  2951. (con->flag & CON_DRIVER_FLAG_MODULE) ? "(M)" : "(S)",
  2952. con->desc);
  2953. }
  2954. static struct device_attribute device_attrs[] = {
  2955. __ATTR(bind, S_IRUGO|S_IWUSR, show_bind, store_bind),
  2956. __ATTR(name, S_IRUGO, show_name, NULL),
  2957. };
  2958. static int vtconsole_init_device(struct con_driver *con)
  2959. {
  2960. int i;
  2961. int error = 0;
  2962. con->flag |= CON_DRIVER_FLAG_ATTR;
  2963. dev_set_drvdata(con->dev, con);
  2964. for (i = 0; i < ARRAY_SIZE(device_attrs); i++) {
  2965. error = device_create_file(con->dev, &device_attrs[i]);
  2966. if (error)
  2967. break;
  2968. }
  2969. if (error) {
  2970. while (--i >= 0)
  2971. device_remove_file(con->dev, &device_attrs[i]);
  2972. con->flag &= ~CON_DRIVER_FLAG_ATTR;
  2973. }
  2974. return error;
  2975. }
  2976. static void vtconsole_deinit_device(struct con_driver *con)
  2977. {
  2978. int i;
  2979. if (con->flag & CON_DRIVER_FLAG_ATTR) {
  2980. for (i = 0; i < ARRAY_SIZE(device_attrs); i++)
  2981. device_remove_file(con->dev, &device_attrs[i]);
  2982. con->flag &= ~CON_DRIVER_FLAG_ATTR;
  2983. }
  2984. }
  2985. /**
  2986. * con_is_bound - checks if driver is bound to the console
  2987. * @csw: console driver
  2988. *
  2989. * RETURNS: zero if unbound, nonzero if bound
  2990. *
  2991. * Drivers can call this and if zero, they should release
  2992. * all resources allocated on con_startup()
  2993. */
  2994. int con_is_bound(const struct consw *csw)
  2995. {
  2996. int i, bound = 0;
  2997. for (i = 0; i < MAX_NR_CONSOLES; i++) {
  2998. if (con_driver_map[i] == csw) {
  2999. bound = 1;
  3000. break;
  3001. }
  3002. }
  3003. return bound;
  3004. }
  3005. EXPORT_SYMBOL(con_is_bound);
  3006. /**
  3007. * register_con_driver - register console driver to console layer
  3008. * @csw: console driver
  3009. * @first: the first console to take over, minimum value is 0
  3010. * @last: the last console to take over, maximum value is MAX_NR_CONSOLES -1
  3011. *
  3012. * DESCRIPTION: This function registers a console driver which can later
  3013. * bind to a range of consoles specified by @first and @last. It will
  3014. * also initialize the console driver by calling con_startup().
  3015. */
  3016. int register_con_driver(const struct consw *csw, int first, int last)
  3017. {
  3018. struct module *owner = csw->owner;
  3019. struct con_driver *con_driver;
  3020. const char *desc;
  3021. int i, retval = 0;
  3022. if (!try_module_get(owner))
  3023. return -ENODEV;
  3024. acquire_console_sem();
  3025. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  3026. con_driver = &registered_con_driver[i];
  3027. /* already registered */
  3028. if (con_driver->con == csw)
  3029. retval = -EINVAL;
  3030. }
  3031. if (retval)
  3032. goto err;
  3033. desc = csw->con_startup();
  3034. if (!desc)
  3035. goto err;
  3036. retval = -EINVAL;
  3037. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  3038. con_driver = &registered_con_driver[i];
  3039. if (con_driver->con == NULL) {
  3040. con_driver->con = csw;
  3041. con_driver->desc = desc;
  3042. con_driver->node = i;
  3043. con_driver->flag = CON_DRIVER_FLAG_MODULE |
  3044. CON_DRIVER_FLAG_INIT;
  3045. con_driver->first = first;
  3046. con_driver->last = last;
  3047. retval = 0;
  3048. break;
  3049. }
  3050. }
  3051. if (retval)
  3052. goto err;
  3053. con_driver->dev = device_create(vtconsole_class, NULL,
  3054. MKDEV(0, con_driver->node),
  3055. "vtcon%i", con_driver->node);
  3056. if (IS_ERR(con_driver->dev)) {
  3057. printk(KERN_WARNING "Unable to create device for %s; "
  3058. "errno = %ld\n", con_driver->desc,
  3059. PTR_ERR(con_driver->dev));
  3060. con_driver->dev = NULL;
  3061. } else {
  3062. vtconsole_init_device(con_driver);
  3063. }
  3064. err:
  3065. release_console_sem();
  3066. module_put(owner);
  3067. return retval;
  3068. }
  3069. EXPORT_SYMBOL(register_con_driver);
  3070. /**
  3071. * unregister_con_driver - unregister console driver from console layer
  3072. * @csw: console driver
  3073. *
  3074. * DESCRIPTION: All drivers that registers to the console layer must
  3075. * call this function upon exit, or if the console driver is in a state
  3076. * where it won't be able to handle console services, such as the
  3077. * framebuffer console without loaded framebuffer drivers.
  3078. *
  3079. * The driver must unbind first prior to unregistration.
  3080. */
  3081. int unregister_con_driver(const struct consw *csw)
  3082. {
  3083. int i, retval = -ENODEV;
  3084. acquire_console_sem();
  3085. /* cannot unregister a bound driver */
  3086. if (con_is_bound(csw))
  3087. goto err;
  3088. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  3089. struct con_driver *con_driver = &registered_con_driver[i];
  3090. if (con_driver->con == csw &&
  3091. con_driver->flag & CON_DRIVER_FLAG_MODULE) {
  3092. vtconsole_deinit_device(con_driver);
  3093. device_destroy(vtconsole_class,
  3094. MKDEV(0, con_driver->node));
  3095. con_driver->con = NULL;
  3096. con_driver->desc = NULL;
  3097. con_driver->dev = NULL;
  3098. con_driver->node = 0;
  3099. con_driver->flag = 0;
  3100. con_driver->first = 0;
  3101. con_driver->last = 0;
  3102. retval = 0;
  3103. break;
  3104. }
  3105. }
  3106. err:
  3107. release_console_sem();
  3108. return retval;
  3109. }
  3110. EXPORT_SYMBOL(unregister_con_driver);
  3111. /*
  3112. * If we support more console drivers, this function is used
  3113. * when a driver wants to take over some existing consoles
  3114. * and become default driver for newly opened ones.
  3115. *
  3116. * take_over_console is basically a register followed by unbind
  3117. */
  3118. int take_over_console(const struct consw *csw, int first, int last, int deflt)
  3119. {
  3120. int err;
  3121. err = register_con_driver(csw, first, last);
  3122. if (!err)
  3123. bind_con_driver(csw, first, last, deflt);
  3124. return err;
  3125. }
  3126. /*
  3127. * give_up_console is a wrapper to unregister_con_driver. It will only
  3128. * work if driver is fully unbound.
  3129. */
  3130. void give_up_console(const struct consw *csw)
  3131. {
  3132. unregister_con_driver(csw);
  3133. }
  3134. static int __init vtconsole_class_init(void)
  3135. {
  3136. int i;
  3137. vtconsole_class = class_create(THIS_MODULE, "vtconsole");
  3138. if (IS_ERR(vtconsole_class)) {
  3139. printk(KERN_WARNING "Unable to create vt console class; "
  3140. "errno = %ld\n", PTR_ERR(vtconsole_class));
  3141. vtconsole_class = NULL;
  3142. }
  3143. /* Add system drivers to sysfs */
  3144. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  3145. struct con_driver *con = &registered_con_driver[i];
  3146. if (con->con && !con->dev) {
  3147. con->dev = device_create(vtconsole_class, NULL,
  3148. MKDEV(0, con->node),
  3149. "vtcon%i", con->node);
  3150. if (IS_ERR(con->dev)) {
  3151. printk(KERN_WARNING "Unable to create "
  3152. "device for %s; errno = %ld\n",
  3153. con->desc, PTR_ERR(con->dev));
  3154. con->dev = NULL;
  3155. } else {
  3156. vtconsole_init_device(con);
  3157. }
  3158. }
  3159. }
  3160. return 0;
  3161. }
  3162. postcore_initcall(vtconsole_class_init);
  3163. #endif
  3164. /*
  3165. * Screen blanking
  3166. */
  3167. static int set_vesa_blanking(char __user *p)
  3168. {
  3169. unsigned int mode;
  3170. if (get_user(mode, p + 1))
  3171. return -EFAULT;
  3172. vesa_blank_mode = (mode < 4) ? mode : 0;
  3173. return 0;
  3174. }
  3175. void do_blank_screen(int entering_gfx)
  3176. {
  3177. struct vc_data *vc = vc_cons[fg_console].d;
  3178. int i;
  3179. WARN_CONSOLE_UNLOCKED();
  3180. if (console_blanked) {
  3181. if (blank_state == blank_vesa_wait) {
  3182. blank_state = blank_off;
  3183. vc->vc_sw->con_blank(vc, vesa_blank_mode + 1, 0);
  3184. }
  3185. return;
  3186. }
  3187. /* entering graphics mode? */
  3188. if (entering_gfx) {
  3189. hide_cursor(vc);
  3190. save_screen(vc);
  3191. vc->vc_sw->con_blank(vc, -1, 1);
  3192. console_blanked = fg_console + 1;
  3193. blank_state = blank_off;
  3194. set_origin(vc);
  3195. return;
  3196. }
  3197. if (blank_state != blank_normal_wait)
  3198. return;
  3199. blank_state = blank_off;
  3200. /* don't blank graphics */
  3201. if (vc->vc_mode != KD_TEXT) {
  3202. console_blanked = fg_console + 1;
  3203. return;
  3204. }
  3205. hide_cursor(vc);
  3206. del_timer_sync(&console_timer);
  3207. blank_timer_expired = 0;
  3208. save_screen(vc);
  3209. /* In case we need to reset origin, blanking hook returns 1 */
  3210. i = vc->vc_sw->con_blank(vc, vesa_off_interval ? 1 : (vesa_blank_mode + 1), 0);
  3211. console_blanked = fg_console + 1;
  3212. if (i)
  3213. set_origin(vc);
  3214. if (console_blank_hook && console_blank_hook(1))
  3215. return;
  3216. if (vesa_off_interval && vesa_blank_mode) {
  3217. blank_state = blank_vesa_wait;
  3218. mod_timer(&console_timer, jiffies + vesa_off_interval);
  3219. }
  3220. }
  3221. EXPORT_SYMBOL(do_blank_screen);
  3222. /*
  3223. * Called by timer as well as from vt_console_driver
  3224. */
  3225. void do_unblank_screen(int leaving_gfx)
  3226. {
  3227. struct vc_data *vc;
  3228. /* This should now always be called from a "sane" (read: can schedule)
  3229. * context for the sake of the low level drivers, except in the special
  3230. * case of oops_in_progress
  3231. */
  3232. if (!oops_in_progress)
  3233. might_sleep();
  3234. WARN_CONSOLE_UNLOCKED();
  3235. ignore_poke = 0;
  3236. if (!console_blanked)
  3237. return;
  3238. if (!vc_cons_allocated(fg_console)) {
  3239. /* impossible */
  3240. printk("unblank_screen: tty %d not allocated ??\n", fg_console+1);
  3241. return;
  3242. }
  3243. vc = vc_cons[fg_console].d;
  3244. if (vc->vc_mode != KD_TEXT)
  3245. return; /* but leave console_blanked != 0 */
  3246. if (blankinterval) {
  3247. mod_timer(&console_timer, jiffies + blankinterval);
  3248. blank_state = blank_normal_wait;
  3249. }
  3250. console_blanked = 0;
  3251. if (vc->vc_sw->con_blank(vc, 0, leaving_gfx))
  3252. /* Low-level driver cannot restore -> do it ourselves */
  3253. update_screen(vc);
  3254. if (console_blank_hook)
  3255. console_blank_hook(0);
  3256. set_palette(vc);
  3257. set_cursor(vc);
  3258. }
  3259. EXPORT_SYMBOL(do_unblank_screen);
  3260. /*
  3261. * This is called by the outside world to cause a forced unblank, mostly for
  3262. * oopses. Currently, I just call do_unblank_screen(0), but we could eventually
  3263. * call it with 1 as an argument and so force a mode restore... that may kill
  3264. * X or at least garbage the screen but would also make the Oops visible...
  3265. */
  3266. void unblank_screen(void)
  3267. {
  3268. do_unblank_screen(0);
  3269. }
  3270. /*
  3271. * We defer the timer blanking to work queue so it can take the console mutex
  3272. * (console operations can still happen at irq time, but only from printk which
  3273. * has the console mutex. Not perfect yet, but better than no locking
  3274. */
  3275. static void blank_screen_t(unsigned long dummy)
  3276. {
  3277. if (unlikely(!keventd_up())) {
  3278. mod_timer(&console_timer, jiffies + blankinterval);
  3279. return;
  3280. }
  3281. blank_timer_expired = 1;
  3282. schedule_work(&console_work);
  3283. }
  3284. void poke_blanked_console(void)
  3285. {
  3286. WARN_CONSOLE_UNLOCKED();
  3287. /* Add this so we quickly catch whoever might call us in a non
  3288. * safe context. Nowadays, unblank_screen() isn't to be called in
  3289. * atomic contexts and is allowed to schedule (with the special case
  3290. * of oops_in_progress, but that isn't of any concern for this
  3291. * function. --BenH.
  3292. */
  3293. might_sleep();
  3294. /* This isn't perfectly race free, but a race here would be mostly harmless,
  3295. * at worse, we'll do a spurrious blank and it's unlikely
  3296. */
  3297. del_timer(&console_timer);
  3298. blank_timer_expired = 0;
  3299. if (ignore_poke || !vc_cons[fg_console].d || vc_cons[fg_console].d->vc_mode == KD_GRAPHICS)
  3300. return;
  3301. if (console_blanked)
  3302. unblank_screen();
  3303. else if (blankinterval) {
  3304. mod_timer(&console_timer, jiffies + blankinterval);
  3305. blank_state = blank_normal_wait;
  3306. }
  3307. }
  3308. /*
  3309. * Palettes
  3310. */
  3311. static void set_palette(struct vc_data *vc)
  3312. {
  3313. WARN_CONSOLE_UNLOCKED();
  3314. if (vc->vc_mode != KD_GRAPHICS)
  3315. vc->vc_sw->con_set_palette(vc, color_table);
  3316. }
  3317. static int set_get_cmap(unsigned char __user *arg, int set)
  3318. {
  3319. int i, j, k;
  3320. WARN_CONSOLE_UNLOCKED();
  3321. for (i = 0; i < 16; i++)
  3322. if (set) {
  3323. get_user(default_red[i], arg++);
  3324. get_user(default_grn[i], arg++);
  3325. get_user(default_blu[i], arg++);
  3326. } else {
  3327. put_user(default_red[i], arg++);
  3328. put_user(default_grn[i], arg++);
  3329. put_user(default_blu[i], arg++);
  3330. }
  3331. if (set) {
  3332. for (i = 0; i < MAX_NR_CONSOLES; i++)
  3333. if (vc_cons_allocated(i)) {
  3334. for (j = k = 0; j < 16; j++) {
  3335. vc_cons[i].d->vc_palette[k++] = default_red[j];
  3336. vc_cons[i].d->vc_palette[k++] = default_grn[j];
  3337. vc_cons[i].d->vc_palette[k++] = default_blu[j];
  3338. }
  3339. set_palette(vc_cons[i].d);
  3340. }
  3341. }
  3342. return 0;
  3343. }
  3344. /*
  3345. * Load palette into the DAC registers. arg points to a colour
  3346. * map, 3 bytes per colour, 16 colours, range from 0 to 255.
  3347. */
  3348. int con_set_cmap(unsigned char __user *arg)
  3349. {
  3350. int rc;
  3351. acquire_console_sem();
  3352. rc = set_get_cmap (arg,1);
  3353. release_console_sem();
  3354. return rc;
  3355. }
  3356. int con_get_cmap(unsigned char __user *arg)
  3357. {
  3358. int rc;
  3359. acquire_console_sem();
  3360. rc = set_get_cmap (arg,0);
  3361. release_console_sem();
  3362. return rc;
  3363. }
  3364. void reset_palette(struct vc_data *vc)
  3365. {
  3366. int j, k;
  3367. for (j=k=0; j<16; j++) {
  3368. vc->vc_palette[k++] = default_red[j];
  3369. vc->vc_palette[k++] = default_grn[j];
  3370. vc->vc_palette[k++] = default_blu[j];
  3371. }
  3372. set_palette(vc);
  3373. }
  3374. /*
  3375. * Font switching
  3376. *
  3377. * Currently we only support fonts up to 32 pixels wide, at a maximum height
  3378. * of 32 pixels. Userspace fontdata is stored with 32 bytes (shorts/ints,
  3379. * depending on width) reserved for each character which is kinda wasty, but
  3380. * this is done in order to maintain compatibility with the EGA/VGA fonts. It
  3381. * is upto the actual low-level console-driver convert data into its favorite
  3382. * format (maybe we should add a `fontoffset' field to the `display'
  3383. * structure so we won't have to convert the fontdata all the time.
  3384. * /Jes
  3385. */
  3386. #define max_font_size 65536
  3387. static int con_font_get(struct vc_data *vc, struct console_font_op *op)
  3388. {
  3389. struct console_font font;
  3390. int rc = -EINVAL;
  3391. int c;
  3392. if (vc->vc_mode != KD_TEXT)
  3393. return -EINVAL;
  3394. if (op->data) {
  3395. font.data = kmalloc(max_font_size, GFP_KERNEL);
  3396. if (!font.data)
  3397. return -ENOMEM;
  3398. } else
  3399. font.data = NULL;
  3400. acquire_console_sem();
  3401. if (vc->vc_sw->con_font_get)
  3402. rc = vc->vc_sw->con_font_get(vc, &font);
  3403. else
  3404. rc = -ENOSYS;
  3405. release_console_sem();
  3406. if (rc)
  3407. goto out;
  3408. c = (font.width+7)/8 * 32 * font.charcount;
  3409. if (op->data && font.charcount > op->charcount)
  3410. rc = -ENOSPC;
  3411. if (!(op->flags & KD_FONT_FLAG_OLD)) {
  3412. if (font.width > op->width || font.height > op->height)
  3413. rc = -ENOSPC;
  3414. } else {
  3415. if (font.width != 8)
  3416. rc = -EIO;
  3417. else if ((op->height && font.height > op->height) ||
  3418. font.height > 32)
  3419. rc = -ENOSPC;
  3420. }
  3421. if (rc)
  3422. goto out;
  3423. op->height = font.height;
  3424. op->width = font.width;
  3425. op->charcount = font.charcount;
  3426. if (op->data && copy_to_user(op->data, font.data, c))
  3427. rc = -EFAULT;
  3428. out:
  3429. kfree(font.data);
  3430. return rc;
  3431. }
  3432. static int con_font_set(struct vc_data *vc, struct console_font_op *op)
  3433. {
  3434. struct console_font font;
  3435. int rc = -EINVAL;
  3436. int size;
  3437. if (vc->vc_mode != KD_TEXT)
  3438. return -EINVAL;
  3439. if (!op->data)
  3440. return -EINVAL;
  3441. if (op->charcount > 512)
  3442. return -EINVAL;
  3443. if (!op->height) { /* Need to guess font height [compat] */
  3444. int h, i;
  3445. u8 __user *charmap = op->data;
  3446. u8 tmp;
  3447. /* If from KDFONTOP ioctl, don't allow things which can be done in userland,
  3448. so that we can get rid of this soon */
  3449. if (!(op->flags & KD_FONT_FLAG_OLD))
  3450. return -EINVAL;
  3451. for (h = 32; h > 0; h--)
  3452. for (i = 0; i < op->charcount; i++) {
  3453. if (get_user(tmp, &charmap[32*i+h-1]))
  3454. return -EFAULT;
  3455. if (tmp)
  3456. goto nonzero;
  3457. }
  3458. return -EINVAL;
  3459. nonzero:
  3460. op->height = h;
  3461. }
  3462. if (op->width <= 0 || op->width > 32 || op->height > 32)
  3463. return -EINVAL;
  3464. size = (op->width+7)/8 * 32 * op->charcount;
  3465. if (size > max_font_size)
  3466. return -ENOSPC;
  3467. font.charcount = op->charcount;
  3468. font.height = op->height;
  3469. font.width = op->width;
  3470. font.data = kmalloc(size, GFP_KERNEL);
  3471. if (!font.data)
  3472. return -ENOMEM;
  3473. if (copy_from_user(font.data, op->data, size)) {
  3474. kfree(font.data);
  3475. return -EFAULT;
  3476. }
  3477. acquire_console_sem();
  3478. if (vc->vc_sw->con_font_set)
  3479. rc = vc->vc_sw->con_font_set(vc, &font, op->flags);
  3480. else
  3481. rc = -ENOSYS;
  3482. release_console_sem();
  3483. kfree(font.data);
  3484. return rc;
  3485. }
  3486. static int con_font_default(struct vc_data *vc, struct console_font_op *op)
  3487. {
  3488. struct console_font font = {.width = op->width, .height = op->height};
  3489. char name[MAX_FONT_NAME];
  3490. char *s = name;
  3491. int rc;
  3492. if (vc->vc_mode != KD_TEXT)
  3493. return -EINVAL;
  3494. if (!op->data)
  3495. s = NULL;
  3496. else if (strncpy_from_user(name, op->data, MAX_FONT_NAME - 1) < 0)
  3497. return -EFAULT;
  3498. else
  3499. name[MAX_FONT_NAME - 1] = 0;
  3500. acquire_console_sem();
  3501. if (vc->vc_sw->con_font_default)
  3502. rc = vc->vc_sw->con_font_default(vc, &font, s);
  3503. else
  3504. rc = -ENOSYS;
  3505. release_console_sem();
  3506. if (!rc) {
  3507. op->width = font.width;
  3508. op->height = font.height;
  3509. }
  3510. return rc;
  3511. }
  3512. static int con_font_copy(struct vc_data *vc, struct console_font_op *op)
  3513. {
  3514. int con = op->height;
  3515. int rc;
  3516. if (vc->vc_mode != KD_TEXT)
  3517. return -EINVAL;
  3518. acquire_console_sem();
  3519. if (!vc->vc_sw->con_font_copy)
  3520. rc = -ENOSYS;
  3521. else if (con < 0 || !vc_cons_allocated(con))
  3522. rc = -ENOTTY;
  3523. else if (con == vc->vc_num) /* nothing to do */
  3524. rc = 0;
  3525. else
  3526. rc = vc->vc_sw->con_font_copy(vc, con);
  3527. release_console_sem();
  3528. return rc;
  3529. }
  3530. int con_font_op(struct vc_data *vc, struct console_font_op *op)
  3531. {
  3532. switch (op->op) {
  3533. case KD_FONT_OP_SET:
  3534. return con_font_set(vc, op);
  3535. case KD_FONT_OP_GET:
  3536. return con_font_get(vc, op);
  3537. case KD_FONT_OP_SET_DEFAULT:
  3538. return con_font_default(vc, op);
  3539. case KD_FONT_OP_COPY:
  3540. return con_font_copy(vc, op);
  3541. }
  3542. return -ENOSYS;
  3543. }
  3544. /*
  3545. * Interface exported to selection and vcs.
  3546. */
  3547. /* used by selection */
  3548. u16 screen_glyph(struct vc_data *vc, int offset)
  3549. {
  3550. u16 w = scr_readw(screenpos(vc, offset, 1));
  3551. u16 c = w & 0xff;
  3552. if (w & vc->vc_hi_font_mask)
  3553. c |= 0x100;
  3554. return c;
  3555. }
  3556. /* used by vcs - note the word offset */
  3557. unsigned short *screen_pos(struct vc_data *vc, int w_offset, int viewed)
  3558. {
  3559. return screenpos(vc, 2 * w_offset, viewed);
  3560. }
  3561. void getconsxy(struct vc_data *vc, unsigned char *p)
  3562. {
  3563. p[0] = vc->vc_x;
  3564. p[1] = vc->vc_y;
  3565. }
  3566. void putconsxy(struct vc_data *vc, unsigned char *p)
  3567. {
  3568. hide_cursor(vc);
  3569. gotoxy(vc, p[0], p[1]);
  3570. set_cursor(vc);
  3571. }
  3572. u16 vcs_scr_readw(struct vc_data *vc, const u16 *org)
  3573. {
  3574. if ((unsigned long)org == vc->vc_pos && softcursor_original != -1)
  3575. return softcursor_original;
  3576. return scr_readw(org);
  3577. }
  3578. void vcs_scr_writew(struct vc_data *vc, u16 val, u16 *org)
  3579. {
  3580. scr_writew(val, org);
  3581. if ((unsigned long)org == vc->vc_pos) {
  3582. softcursor_original = -1;
  3583. add_softcursor(vc);
  3584. }
  3585. }
  3586. /*
  3587. * Visible symbols for modules
  3588. */
  3589. EXPORT_SYMBOL(color_table);
  3590. EXPORT_SYMBOL(default_red);
  3591. EXPORT_SYMBOL(default_grn);
  3592. EXPORT_SYMBOL(default_blu);
  3593. EXPORT_SYMBOL(update_region);
  3594. EXPORT_SYMBOL(redraw_screen);
  3595. EXPORT_SYMBOL(vc_resize);
  3596. EXPORT_SYMBOL(vc_lock_resize);
  3597. EXPORT_SYMBOL(fg_console);
  3598. EXPORT_SYMBOL(console_blank_hook);
  3599. EXPORT_SYMBOL(console_blanked);
  3600. EXPORT_SYMBOL(vc_cons);
  3601. #ifndef VT_SINGLE_DRIVER
  3602. EXPORT_SYMBOL(take_over_console);
  3603. EXPORT_SYMBOL(give_up_console);
  3604. #endif