vt.c 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074
  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) && !console_blanked)
  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, vc->vc_decscnm, 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. struct pid *pgrp = NULL;
  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_irq(&vc->vc_tty->ctrl_lock);
  812. if ((ws.ws_row != cws->ws_row || ws.ws_col != cws->ws_col))
  813. pgrp = get_pid(vc->vc_tty->pgrp);
  814. spin_unlock_irq(&vc->vc_tty->ctrl_lock);
  815. if (pgrp) {
  816. kill_pgrp(vc->vc_tty->pgrp, SIGWINCH, 1);
  817. put_pid(pgrp);
  818. }
  819. *cws = ws;
  820. mutex_unlock(&vc->vc_tty->termios_mutex);
  821. }
  822. if (CON_IS_VISIBLE(vc))
  823. update_screen(vc);
  824. return err;
  825. }
  826. int vc_lock_resize(struct vc_data *vc, unsigned int cols, unsigned int lines)
  827. {
  828. int rc;
  829. acquire_console_sem();
  830. rc = vc_resize(vc, cols, lines);
  831. release_console_sem();
  832. return rc;
  833. }
  834. void vc_deallocate(unsigned int currcons)
  835. {
  836. WARN_CONSOLE_UNLOCKED();
  837. if (vc_cons_allocated(currcons)) {
  838. struct vc_data *vc = vc_cons[currcons].d;
  839. struct vt_notifier_param param = { .vc = vc };
  840. atomic_notifier_call_chain(&vt_notifier_list, VT_DEALLOCATE, &param);
  841. vc->vc_sw->con_deinit(vc);
  842. put_pid(vc->vt_pid);
  843. module_put(vc->vc_sw->owner);
  844. if (vc->vc_kmalloced)
  845. kfree(vc->vc_screenbuf);
  846. if (currcons >= MIN_NR_CONSOLES)
  847. kfree(vc);
  848. vc_cons[currcons].d = NULL;
  849. }
  850. }
  851. /*
  852. * VT102 emulator
  853. */
  854. #define set_kbd(vc, x) set_vc_kbd_mode(kbd_table + (vc)->vc_num, (x))
  855. #define clr_kbd(vc, x) clr_vc_kbd_mode(kbd_table + (vc)->vc_num, (x))
  856. #define is_kbd(vc, x) vc_kbd_mode(kbd_table + (vc)->vc_num, (x))
  857. #define decarm VC_REPEAT
  858. #define decckm VC_CKMODE
  859. #define kbdapplic VC_APPLIC
  860. #define lnm VC_CRLF
  861. /*
  862. * this is what the terminal answers to a ESC-Z or csi0c query.
  863. */
  864. #define VT100ID "\033[?1;2c"
  865. #define VT102ID "\033[?6c"
  866. unsigned char color_table[] = { 0, 4, 2, 6, 1, 5, 3, 7,
  867. 8,12,10,14, 9,13,11,15 };
  868. /* the default colour table, for VGA+ colour systems */
  869. int default_red[] = {0x00,0xaa,0x00,0xaa,0x00,0xaa,0x00,0xaa,
  870. 0x55,0xff,0x55,0xff,0x55,0xff,0x55,0xff};
  871. int default_grn[] = {0x00,0x00,0xaa,0x55,0x00,0x00,0xaa,0xaa,
  872. 0x55,0x55,0xff,0xff,0x55,0x55,0xff,0xff};
  873. int default_blu[] = {0x00,0x00,0x00,0x00,0xaa,0xaa,0xaa,0xaa,
  874. 0x55,0x55,0x55,0x55,0xff,0xff,0xff,0xff};
  875. module_param_array(default_red, int, NULL, S_IRUGO | S_IWUSR);
  876. module_param_array(default_grn, int, NULL, S_IRUGO | S_IWUSR);
  877. module_param_array(default_blu, int, NULL, S_IRUGO | S_IWUSR);
  878. /*
  879. * gotoxy() must verify all boundaries, because the arguments
  880. * might also be negative. If the given position is out of
  881. * bounds, the cursor is placed at the nearest margin.
  882. */
  883. static void gotoxy(struct vc_data *vc, int new_x, int new_y)
  884. {
  885. int min_y, max_y;
  886. if (new_x < 0)
  887. vc->vc_x = 0;
  888. else {
  889. if (new_x >= vc->vc_cols)
  890. vc->vc_x = vc->vc_cols - 1;
  891. else
  892. vc->vc_x = new_x;
  893. }
  894. if (vc->vc_decom) {
  895. min_y = vc->vc_top;
  896. max_y = vc->vc_bottom;
  897. } else {
  898. min_y = 0;
  899. max_y = vc->vc_rows;
  900. }
  901. if (new_y < min_y)
  902. vc->vc_y = min_y;
  903. else if (new_y >= max_y)
  904. vc->vc_y = max_y - 1;
  905. else
  906. vc->vc_y = new_y;
  907. vc->vc_pos = vc->vc_origin + vc->vc_y * vc->vc_size_row + (vc->vc_x<<1);
  908. vc->vc_need_wrap = 0;
  909. }
  910. /* for absolute user moves, when decom is set */
  911. static void gotoxay(struct vc_data *vc, int new_x, int new_y)
  912. {
  913. gotoxy(vc, new_x, vc->vc_decom ? (vc->vc_top + new_y) : new_y);
  914. }
  915. void scrollback(struct vc_data *vc, int lines)
  916. {
  917. if (!lines)
  918. lines = vc->vc_rows / 2;
  919. scrolldelta(-lines);
  920. }
  921. void scrollfront(struct vc_data *vc, int lines)
  922. {
  923. if (!lines)
  924. lines = vc->vc_rows / 2;
  925. scrolldelta(lines);
  926. }
  927. static void lf(struct vc_data *vc)
  928. {
  929. /* don't scroll if above bottom of scrolling region, or
  930. * if below scrolling region
  931. */
  932. if (vc->vc_y + 1 == vc->vc_bottom)
  933. scrup(vc, vc->vc_top, vc->vc_bottom, 1);
  934. else if (vc->vc_y < vc->vc_rows - 1) {
  935. vc->vc_y++;
  936. vc->vc_pos += vc->vc_size_row;
  937. }
  938. vc->vc_need_wrap = 0;
  939. notify_write(vc, '\n');
  940. }
  941. static void ri(struct vc_data *vc)
  942. {
  943. /* don't scroll if below top of scrolling region, or
  944. * if above scrolling region
  945. */
  946. if (vc->vc_y == vc->vc_top)
  947. scrdown(vc, vc->vc_top, vc->vc_bottom, 1);
  948. else if (vc->vc_y > 0) {
  949. vc->vc_y--;
  950. vc->vc_pos -= vc->vc_size_row;
  951. }
  952. vc->vc_need_wrap = 0;
  953. }
  954. static inline void cr(struct vc_data *vc)
  955. {
  956. vc->vc_pos -= vc->vc_x << 1;
  957. vc->vc_need_wrap = vc->vc_x = 0;
  958. notify_write(vc, '\r');
  959. }
  960. static inline void bs(struct vc_data *vc)
  961. {
  962. if (vc->vc_x) {
  963. vc->vc_pos -= 2;
  964. vc->vc_x--;
  965. vc->vc_need_wrap = 0;
  966. notify_write(vc, '\b');
  967. }
  968. }
  969. static inline void del(struct vc_data *vc)
  970. {
  971. /* ignored */
  972. }
  973. static void csi_J(struct vc_data *vc, int vpar)
  974. {
  975. unsigned int count;
  976. unsigned short * start;
  977. switch (vpar) {
  978. case 0: /* erase from cursor to end of display */
  979. count = (vc->vc_scr_end - vc->vc_pos) >> 1;
  980. start = (unsigned short *)vc->vc_pos;
  981. if (DO_UPDATE(vc)) {
  982. /* do in two stages */
  983. vc->vc_sw->con_clear(vc, vc->vc_y, vc->vc_x, 1,
  984. vc->vc_cols - vc->vc_x);
  985. vc->vc_sw->con_clear(vc, vc->vc_y + 1, 0,
  986. vc->vc_rows - vc->vc_y - 1,
  987. vc->vc_cols);
  988. }
  989. break;
  990. case 1: /* erase from start to cursor */
  991. count = ((vc->vc_pos - vc->vc_origin) >> 1) + 1;
  992. start = (unsigned short *)vc->vc_origin;
  993. if (DO_UPDATE(vc)) {
  994. /* do in two stages */
  995. vc->vc_sw->con_clear(vc, 0, 0, vc->vc_y,
  996. vc->vc_cols);
  997. vc->vc_sw->con_clear(vc, vc->vc_y, 0, 1,
  998. vc->vc_x + 1);
  999. }
  1000. break;
  1001. case 2: /* erase whole display */
  1002. count = vc->vc_cols * vc->vc_rows;
  1003. start = (unsigned short *)vc->vc_origin;
  1004. if (DO_UPDATE(vc))
  1005. vc->vc_sw->con_clear(vc, 0, 0,
  1006. vc->vc_rows,
  1007. vc->vc_cols);
  1008. break;
  1009. default:
  1010. return;
  1011. }
  1012. scr_memsetw(start, vc->vc_video_erase_char, 2 * count);
  1013. vc->vc_need_wrap = 0;
  1014. }
  1015. static void csi_K(struct vc_data *vc, int vpar)
  1016. {
  1017. unsigned int count;
  1018. unsigned short * start;
  1019. switch (vpar) {
  1020. case 0: /* erase from cursor to end of line */
  1021. count = vc->vc_cols - vc->vc_x;
  1022. start = (unsigned short *)vc->vc_pos;
  1023. if (DO_UPDATE(vc))
  1024. vc->vc_sw->con_clear(vc, vc->vc_y, vc->vc_x, 1,
  1025. vc->vc_cols - vc->vc_x);
  1026. break;
  1027. case 1: /* erase from start of line to cursor */
  1028. start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1));
  1029. count = vc->vc_x + 1;
  1030. if (DO_UPDATE(vc))
  1031. vc->vc_sw->con_clear(vc, vc->vc_y, 0, 1,
  1032. vc->vc_x + 1);
  1033. break;
  1034. case 2: /* erase whole line */
  1035. start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1));
  1036. count = vc->vc_cols;
  1037. if (DO_UPDATE(vc))
  1038. vc->vc_sw->con_clear(vc, vc->vc_y, 0, 1,
  1039. vc->vc_cols);
  1040. break;
  1041. default:
  1042. return;
  1043. }
  1044. scr_memsetw(start, vc->vc_video_erase_char, 2 * count);
  1045. vc->vc_need_wrap = 0;
  1046. }
  1047. static void csi_X(struct vc_data *vc, int vpar) /* erase the following vpar positions */
  1048. { /* not vt100? */
  1049. int count;
  1050. if (!vpar)
  1051. vpar++;
  1052. count = (vpar > vc->vc_cols - vc->vc_x) ? (vc->vc_cols - vc->vc_x) : vpar;
  1053. scr_memsetw((unsigned short *)vc->vc_pos, vc->vc_video_erase_char, 2 * count);
  1054. if (DO_UPDATE(vc))
  1055. vc->vc_sw->con_clear(vc, vc->vc_y, vc->vc_x, 1, count);
  1056. vc->vc_need_wrap = 0;
  1057. }
  1058. static void default_attr(struct vc_data *vc)
  1059. {
  1060. vc->vc_intensity = 1;
  1061. vc->vc_italic = 0;
  1062. vc->vc_underline = 0;
  1063. vc->vc_reverse = 0;
  1064. vc->vc_blink = 0;
  1065. vc->vc_color = vc->vc_def_color;
  1066. }
  1067. /* console_sem is held */
  1068. static void csi_m(struct vc_data *vc)
  1069. {
  1070. int i;
  1071. for (i = 0; i <= vc->vc_npar; i++)
  1072. switch (vc->vc_par[i]) {
  1073. case 0: /* all attributes off */
  1074. default_attr(vc);
  1075. break;
  1076. case 1:
  1077. vc->vc_intensity = 2;
  1078. break;
  1079. case 2:
  1080. vc->vc_intensity = 0;
  1081. break;
  1082. case 3:
  1083. vc->vc_italic = 1;
  1084. break;
  1085. case 4:
  1086. vc->vc_underline = 1;
  1087. break;
  1088. case 5:
  1089. vc->vc_blink = 1;
  1090. break;
  1091. case 7:
  1092. vc->vc_reverse = 1;
  1093. break;
  1094. case 10: /* ANSI X3.64-1979 (SCO-ish?)
  1095. * Select primary font, don't display
  1096. * control chars if defined, don't set
  1097. * bit 8 on output.
  1098. */
  1099. vc->vc_translate = set_translate(vc->vc_charset == 0
  1100. ? vc->vc_G0_charset
  1101. : vc->vc_G1_charset, vc);
  1102. vc->vc_disp_ctrl = 0;
  1103. vc->vc_toggle_meta = 0;
  1104. break;
  1105. case 11: /* ANSI X3.64-1979 (SCO-ish?)
  1106. * Select first alternate font, lets
  1107. * chars < 32 be displayed as ROM chars.
  1108. */
  1109. vc->vc_translate = set_translate(IBMPC_MAP, vc);
  1110. vc->vc_disp_ctrl = 1;
  1111. vc->vc_toggle_meta = 0;
  1112. break;
  1113. case 12: /* ANSI X3.64-1979 (SCO-ish?)
  1114. * Select second alternate font, toggle
  1115. * high bit before displaying as ROM char.
  1116. */
  1117. vc->vc_translate = set_translate(IBMPC_MAP, vc);
  1118. vc->vc_disp_ctrl = 1;
  1119. vc->vc_toggle_meta = 1;
  1120. break;
  1121. case 21:
  1122. case 22:
  1123. vc->vc_intensity = 1;
  1124. break;
  1125. case 23:
  1126. vc->vc_italic = 0;
  1127. break;
  1128. case 24:
  1129. vc->vc_underline = 0;
  1130. break;
  1131. case 25:
  1132. vc->vc_blink = 0;
  1133. break;
  1134. case 27:
  1135. vc->vc_reverse = 0;
  1136. break;
  1137. case 38: /* ANSI X3.64-1979 (SCO-ish?)
  1138. * Enables underscore, white foreground
  1139. * with white underscore (Linux - use
  1140. * default foreground).
  1141. */
  1142. vc->vc_color = (vc->vc_def_color & 0x0f) | (vc->vc_color & 0xf0);
  1143. vc->vc_underline = 1;
  1144. break;
  1145. case 39: /* ANSI X3.64-1979 (SCO-ish?)
  1146. * Disable underline option.
  1147. * Reset colour to default? It did this
  1148. * before...
  1149. */
  1150. vc->vc_color = (vc->vc_def_color & 0x0f) | (vc->vc_color & 0xf0);
  1151. vc->vc_underline = 0;
  1152. break;
  1153. case 49:
  1154. vc->vc_color = (vc->vc_def_color & 0xf0) | (vc->vc_color & 0x0f);
  1155. break;
  1156. default:
  1157. if (vc->vc_par[i] >= 30 && vc->vc_par[i] <= 37)
  1158. vc->vc_color = color_table[vc->vc_par[i] - 30]
  1159. | (vc->vc_color & 0xf0);
  1160. else if (vc->vc_par[i] >= 40 && vc->vc_par[i] <= 47)
  1161. vc->vc_color = (color_table[vc->vc_par[i] - 40] << 4)
  1162. | (vc->vc_color & 0x0f);
  1163. break;
  1164. }
  1165. update_attr(vc);
  1166. }
  1167. static void respond_string(const char *p, struct tty_struct *tty)
  1168. {
  1169. while (*p) {
  1170. tty_insert_flip_char(tty, *p, 0);
  1171. p++;
  1172. }
  1173. con_schedule_flip(tty);
  1174. }
  1175. static void cursor_report(struct vc_data *vc, struct tty_struct *tty)
  1176. {
  1177. char buf[40];
  1178. sprintf(buf, "\033[%d;%dR", vc->vc_y + (vc->vc_decom ? vc->vc_top + 1 : 1), vc->vc_x + 1);
  1179. respond_string(buf, tty);
  1180. }
  1181. static inline void status_report(struct tty_struct *tty)
  1182. {
  1183. respond_string("\033[0n", tty); /* Terminal ok */
  1184. }
  1185. static inline void respond_ID(struct tty_struct * tty)
  1186. {
  1187. respond_string(VT102ID, tty);
  1188. }
  1189. void mouse_report(struct tty_struct *tty, int butt, int mrx, int mry)
  1190. {
  1191. char buf[8];
  1192. sprintf(buf, "\033[M%c%c%c", (char)(' ' + butt), (char)('!' + mrx),
  1193. (char)('!' + mry));
  1194. respond_string(buf, tty);
  1195. }
  1196. /* invoked via ioctl(TIOCLINUX) and through set_selection */
  1197. int mouse_reporting(void)
  1198. {
  1199. return vc_cons[fg_console].d->vc_report_mouse;
  1200. }
  1201. /* console_sem is held */
  1202. static void set_mode(struct vc_data *vc, int on_off)
  1203. {
  1204. int i;
  1205. for (i = 0; i <= vc->vc_npar; i++)
  1206. if (vc->vc_ques) {
  1207. switch(vc->vc_par[i]) { /* DEC private modes set/reset */
  1208. case 1: /* Cursor keys send ^[Ox/^[[x */
  1209. if (on_off)
  1210. set_kbd(vc, decckm);
  1211. else
  1212. clr_kbd(vc, decckm);
  1213. break;
  1214. case 3: /* 80/132 mode switch unimplemented */
  1215. vc->vc_deccolm = on_off;
  1216. #if 0
  1217. vc_resize(deccolm ? 132 : 80, vc->vc_rows);
  1218. /* this alone does not suffice; some user mode
  1219. utility has to change the hardware regs */
  1220. #endif
  1221. break;
  1222. case 5: /* Inverted screen on/off */
  1223. if (vc->vc_decscnm != on_off) {
  1224. vc->vc_decscnm = on_off;
  1225. invert_screen(vc, 0, vc->vc_screenbuf_size, 0);
  1226. update_attr(vc);
  1227. }
  1228. break;
  1229. case 6: /* Origin relative/absolute */
  1230. vc->vc_decom = on_off;
  1231. gotoxay(vc, 0, 0);
  1232. break;
  1233. case 7: /* Autowrap on/off */
  1234. vc->vc_decawm = on_off;
  1235. break;
  1236. case 8: /* Autorepeat on/off */
  1237. if (on_off)
  1238. set_kbd(vc, decarm);
  1239. else
  1240. clr_kbd(vc, decarm);
  1241. break;
  1242. case 9:
  1243. vc->vc_report_mouse = on_off ? 1 : 0;
  1244. break;
  1245. case 25: /* Cursor on/off */
  1246. vc->vc_deccm = on_off;
  1247. break;
  1248. case 1000:
  1249. vc->vc_report_mouse = on_off ? 2 : 0;
  1250. break;
  1251. }
  1252. } else {
  1253. switch(vc->vc_par[i]) { /* ANSI modes set/reset */
  1254. case 3: /* Monitor (display ctrls) */
  1255. vc->vc_disp_ctrl = on_off;
  1256. break;
  1257. case 4: /* Insert Mode on/off */
  1258. vc->vc_decim = on_off;
  1259. break;
  1260. case 20: /* Lf, Enter == CrLf/Lf */
  1261. if (on_off)
  1262. set_kbd(vc, lnm);
  1263. else
  1264. clr_kbd(vc, lnm);
  1265. break;
  1266. }
  1267. }
  1268. }
  1269. /* console_sem is held */
  1270. static void setterm_command(struct vc_data *vc)
  1271. {
  1272. switch(vc->vc_par[0]) {
  1273. case 1: /* set color for underline mode */
  1274. if (vc->vc_can_do_color &&
  1275. vc->vc_par[1] < 16) {
  1276. vc->vc_ulcolor = color_table[vc->vc_par[1]];
  1277. if (vc->vc_underline)
  1278. update_attr(vc);
  1279. }
  1280. break;
  1281. case 2: /* set color for half intensity mode */
  1282. if (vc->vc_can_do_color &&
  1283. vc->vc_par[1] < 16) {
  1284. vc->vc_halfcolor = color_table[vc->vc_par[1]];
  1285. if (vc->vc_intensity == 0)
  1286. update_attr(vc);
  1287. }
  1288. break;
  1289. case 8: /* store colors as defaults */
  1290. vc->vc_def_color = vc->vc_attr;
  1291. if (vc->vc_hi_font_mask == 0x100)
  1292. vc->vc_def_color >>= 1;
  1293. default_attr(vc);
  1294. update_attr(vc);
  1295. break;
  1296. case 9: /* set blanking interval */
  1297. blankinterval = ((vc->vc_par[1] < 60) ? vc->vc_par[1] : 60) * 60 * HZ;
  1298. poke_blanked_console();
  1299. break;
  1300. case 10: /* set bell frequency in Hz */
  1301. if (vc->vc_npar >= 1)
  1302. vc->vc_bell_pitch = vc->vc_par[1];
  1303. else
  1304. vc->vc_bell_pitch = DEFAULT_BELL_PITCH;
  1305. break;
  1306. case 11: /* set bell duration in msec */
  1307. if (vc->vc_npar >= 1)
  1308. vc->vc_bell_duration = (vc->vc_par[1] < 2000) ?
  1309. vc->vc_par[1] * HZ / 1000 : 0;
  1310. else
  1311. vc->vc_bell_duration = DEFAULT_BELL_DURATION;
  1312. break;
  1313. case 12: /* bring specified console to the front */
  1314. if (vc->vc_par[1] >= 1 && vc_cons_allocated(vc->vc_par[1] - 1))
  1315. set_console(vc->vc_par[1] - 1);
  1316. break;
  1317. case 13: /* unblank the screen */
  1318. poke_blanked_console();
  1319. break;
  1320. case 14: /* set vesa powerdown interval */
  1321. vesa_off_interval = ((vc->vc_par[1] < 60) ? vc->vc_par[1] : 60) * 60 * HZ;
  1322. break;
  1323. case 15: /* activate the previous console */
  1324. set_console(last_console);
  1325. break;
  1326. }
  1327. }
  1328. /* console_sem is held */
  1329. static void csi_at(struct vc_data *vc, unsigned int nr)
  1330. {
  1331. if (nr > vc->vc_cols - vc->vc_x)
  1332. nr = vc->vc_cols - vc->vc_x;
  1333. else if (!nr)
  1334. nr = 1;
  1335. insert_char(vc, nr);
  1336. }
  1337. /* console_sem is held */
  1338. static void csi_L(struct vc_data *vc, unsigned int nr)
  1339. {
  1340. if (nr > vc->vc_rows - vc->vc_y)
  1341. nr = vc->vc_rows - vc->vc_y;
  1342. else if (!nr)
  1343. nr = 1;
  1344. scrdown(vc, vc->vc_y, vc->vc_bottom, nr);
  1345. vc->vc_need_wrap = 0;
  1346. }
  1347. /* console_sem is held */
  1348. static void csi_P(struct vc_data *vc, unsigned int nr)
  1349. {
  1350. if (nr > vc->vc_cols - vc->vc_x)
  1351. nr = vc->vc_cols - vc->vc_x;
  1352. else if (!nr)
  1353. nr = 1;
  1354. delete_char(vc, nr);
  1355. }
  1356. /* console_sem is held */
  1357. static void csi_M(struct vc_data *vc, unsigned int nr)
  1358. {
  1359. if (nr > vc->vc_rows - vc->vc_y)
  1360. nr = vc->vc_rows - vc->vc_y;
  1361. else if (!nr)
  1362. nr=1;
  1363. scrup(vc, vc->vc_y, vc->vc_bottom, nr);
  1364. vc->vc_need_wrap = 0;
  1365. }
  1366. /* console_sem is held (except via vc_init->reset_terminal */
  1367. static void save_cur(struct vc_data *vc)
  1368. {
  1369. vc->vc_saved_x = vc->vc_x;
  1370. vc->vc_saved_y = vc->vc_y;
  1371. vc->vc_s_intensity = vc->vc_intensity;
  1372. vc->vc_s_italic = vc->vc_italic;
  1373. vc->vc_s_underline = vc->vc_underline;
  1374. vc->vc_s_blink = vc->vc_blink;
  1375. vc->vc_s_reverse = vc->vc_reverse;
  1376. vc->vc_s_charset = vc->vc_charset;
  1377. vc->vc_s_color = vc->vc_color;
  1378. vc->vc_saved_G0 = vc->vc_G0_charset;
  1379. vc->vc_saved_G1 = vc->vc_G1_charset;
  1380. }
  1381. /* console_sem is held */
  1382. static void restore_cur(struct vc_data *vc)
  1383. {
  1384. gotoxy(vc, vc->vc_saved_x, vc->vc_saved_y);
  1385. vc->vc_intensity = vc->vc_s_intensity;
  1386. vc->vc_italic = vc->vc_s_italic;
  1387. vc->vc_underline = vc->vc_s_underline;
  1388. vc->vc_blink = vc->vc_s_blink;
  1389. vc->vc_reverse = vc->vc_s_reverse;
  1390. vc->vc_charset = vc->vc_s_charset;
  1391. vc->vc_color = vc->vc_s_color;
  1392. vc->vc_G0_charset = vc->vc_saved_G0;
  1393. vc->vc_G1_charset = vc->vc_saved_G1;
  1394. vc->vc_translate = set_translate(vc->vc_charset ? vc->vc_G1_charset : vc->vc_G0_charset, vc);
  1395. update_attr(vc);
  1396. vc->vc_need_wrap = 0;
  1397. }
  1398. enum { ESnormal, ESesc, ESsquare, ESgetpars, ESgotpars, ESfunckey,
  1399. EShash, ESsetG0, ESsetG1, ESpercent, ESignore, ESnonstd,
  1400. ESpalette };
  1401. /* console_sem is held (except via vc_init()) */
  1402. static void reset_terminal(struct vc_data *vc, int do_clear)
  1403. {
  1404. vc->vc_top = 0;
  1405. vc->vc_bottom = vc->vc_rows;
  1406. vc->vc_state = ESnormal;
  1407. vc->vc_ques = 0;
  1408. vc->vc_translate = set_translate(LAT1_MAP, vc);
  1409. vc->vc_G0_charset = LAT1_MAP;
  1410. vc->vc_G1_charset = GRAF_MAP;
  1411. vc->vc_charset = 0;
  1412. vc->vc_need_wrap = 0;
  1413. vc->vc_report_mouse = 0;
  1414. vc->vc_utf = default_utf8;
  1415. vc->vc_utf_count = 0;
  1416. vc->vc_disp_ctrl = 0;
  1417. vc->vc_toggle_meta = 0;
  1418. vc->vc_decscnm = 0;
  1419. vc->vc_decom = 0;
  1420. vc->vc_decawm = 1;
  1421. vc->vc_deccm = 1;
  1422. vc->vc_decim = 0;
  1423. set_kbd(vc, decarm);
  1424. clr_kbd(vc, decckm);
  1425. clr_kbd(vc, kbdapplic);
  1426. clr_kbd(vc, lnm);
  1427. kbd_table[vc->vc_num].lockstate = 0;
  1428. kbd_table[vc->vc_num].slockstate = 0;
  1429. kbd_table[vc->vc_num].ledmode = LED_SHOW_FLAGS;
  1430. kbd_table[vc->vc_num].ledflagstate = kbd_table[vc->vc_num].default_ledflagstate;
  1431. /* do not do set_leds here because this causes an endless tasklet loop
  1432. when the keyboard hasn't been initialized yet */
  1433. vc->vc_cursor_type = CUR_DEFAULT;
  1434. vc->vc_complement_mask = vc->vc_s_complement_mask;
  1435. default_attr(vc);
  1436. update_attr(vc);
  1437. vc->vc_tab_stop[0] = 0x01010100;
  1438. vc->vc_tab_stop[1] =
  1439. vc->vc_tab_stop[2] =
  1440. vc->vc_tab_stop[3] =
  1441. vc->vc_tab_stop[4] = 0x01010101;
  1442. vc->vc_bell_pitch = DEFAULT_BELL_PITCH;
  1443. vc->vc_bell_duration = DEFAULT_BELL_DURATION;
  1444. gotoxy(vc, 0, 0);
  1445. save_cur(vc);
  1446. if (do_clear)
  1447. csi_J(vc, 2);
  1448. }
  1449. /* console_sem is held */
  1450. static void do_con_trol(struct tty_struct *tty, struct vc_data *vc, int c)
  1451. {
  1452. /*
  1453. * Control characters can be used in the _middle_
  1454. * of an escape sequence.
  1455. */
  1456. switch (c) {
  1457. case 0:
  1458. return;
  1459. case 7:
  1460. if (vc->vc_bell_duration)
  1461. kd_mksound(vc->vc_bell_pitch, vc->vc_bell_duration);
  1462. return;
  1463. case 8:
  1464. bs(vc);
  1465. return;
  1466. case 9:
  1467. vc->vc_pos -= (vc->vc_x << 1);
  1468. while (vc->vc_x < vc->vc_cols - 1) {
  1469. vc->vc_x++;
  1470. if (vc->vc_tab_stop[vc->vc_x >> 5] & (1 << (vc->vc_x & 31)))
  1471. break;
  1472. }
  1473. vc->vc_pos += (vc->vc_x << 1);
  1474. notify_write(vc, '\t');
  1475. return;
  1476. case 10: case 11: case 12:
  1477. lf(vc);
  1478. if (!is_kbd(vc, lnm))
  1479. return;
  1480. case 13:
  1481. cr(vc);
  1482. return;
  1483. case 14:
  1484. vc->vc_charset = 1;
  1485. vc->vc_translate = set_translate(vc->vc_G1_charset, vc);
  1486. vc->vc_disp_ctrl = 1;
  1487. return;
  1488. case 15:
  1489. vc->vc_charset = 0;
  1490. vc->vc_translate = set_translate(vc->vc_G0_charset, vc);
  1491. vc->vc_disp_ctrl = 0;
  1492. return;
  1493. case 24: case 26:
  1494. vc->vc_state = ESnormal;
  1495. return;
  1496. case 27:
  1497. vc->vc_state = ESesc;
  1498. return;
  1499. case 127:
  1500. del(vc);
  1501. return;
  1502. case 128+27:
  1503. vc->vc_state = ESsquare;
  1504. return;
  1505. }
  1506. switch(vc->vc_state) {
  1507. case ESesc:
  1508. vc->vc_state = ESnormal;
  1509. switch (c) {
  1510. case '[':
  1511. vc->vc_state = ESsquare;
  1512. return;
  1513. case ']':
  1514. vc->vc_state = ESnonstd;
  1515. return;
  1516. case '%':
  1517. vc->vc_state = ESpercent;
  1518. return;
  1519. case 'E':
  1520. cr(vc);
  1521. lf(vc);
  1522. return;
  1523. case 'M':
  1524. ri(vc);
  1525. return;
  1526. case 'D':
  1527. lf(vc);
  1528. return;
  1529. case 'H':
  1530. vc->vc_tab_stop[vc->vc_x >> 5] |= (1 << (vc->vc_x & 31));
  1531. return;
  1532. case 'Z':
  1533. respond_ID(tty);
  1534. return;
  1535. case '7':
  1536. save_cur(vc);
  1537. return;
  1538. case '8':
  1539. restore_cur(vc);
  1540. return;
  1541. case '(':
  1542. vc->vc_state = ESsetG0;
  1543. return;
  1544. case ')':
  1545. vc->vc_state = ESsetG1;
  1546. return;
  1547. case '#':
  1548. vc->vc_state = EShash;
  1549. return;
  1550. case 'c':
  1551. reset_terminal(vc, 1);
  1552. return;
  1553. case '>': /* Numeric keypad */
  1554. clr_kbd(vc, kbdapplic);
  1555. return;
  1556. case '=': /* Appl. keypad */
  1557. set_kbd(vc, kbdapplic);
  1558. return;
  1559. }
  1560. return;
  1561. case ESnonstd:
  1562. if (c=='P') { /* palette escape sequence */
  1563. for (vc->vc_npar = 0; vc->vc_npar < NPAR; vc->vc_npar++)
  1564. vc->vc_par[vc->vc_npar] = 0;
  1565. vc->vc_npar = 0;
  1566. vc->vc_state = ESpalette;
  1567. return;
  1568. } else if (c=='R') { /* reset palette */
  1569. reset_palette(vc);
  1570. vc->vc_state = ESnormal;
  1571. } else
  1572. vc->vc_state = ESnormal;
  1573. return;
  1574. case ESpalette:
  1575. if ( (c>='0'&&c<='9') || (c>='A'&&c<='F') || (c>='a'&&c<='f') ) {
  1576. vc->vc_par[vc->vc_npar++] = (c > '9' ? (c & 0xDF) - 'A' + 10 : c - '0');
  1577. if (vc->vc_npar == 7) {
  1578. int i = vc->vc_par[0] * 3, j = 1;
  1579. vc->vc_palette[i] = 16 * vc->vc_par[j++];
  1580. vc->vc_palette[i++] += vc->vc_par[j++];
  1581. vc->vc_palette[i] = 16 * vc->vc_par[j++];
  1582. vc->vc_palette[i++] += vc->vc_par[j++];
  1583. vc->vc_palette[i] = 16 * vc->vc_par[j++];
  1584. vc->vc_palette[i] += vc->vc_par[j];
  1585. set_palette(vc);
  1586. vc->vc_state = ESnormal;
  1587. }
  1588. } else
  1589. vc->vc_state = ESnormal;
  1590. return;
  1591. case ESsquare:
  1592. for (vc->vc_npar = 0; vc->vc_npar < NPAR; vc->vc_npar++)
  1593. vc->vc_par[vc->vc_npar] = 0;
  1594. vc->vc_npar = 0;
  1595. vc->vc_state = ESgetpars;
  1596. if (c == '[') { /* Function key */
  1597. vc->vc_state=ESfunckey;
  1598. return;
  1599. }
  1600. vc->vc_ques = (c == '?');
  1601. if (vc->vc_ques)
  1602. return;
  1603. case ESgetpars:
  1604. if (c == ';' && vc->vc_npar < NPAR - 1) {
  1605. vc->vc_npar++;
  1606. return;
  1607. } else if (c>='0' && c<='9') {
  1608. vc->vc_par[vc->vc_npar] *= 10;
  1609. vc->vc_par[vc->vc_npar] += c - '0';
  1610. return;
  1611. } else
  1612. vc->vc_state = ESgotpars;
  1613. case ESgotpars:
  1614. vc->vc_state = ESnormal;
  1615. switch(c) {
  1616. case 'h':
  1617. set_mode(vc, 1);
  1618. return;
  1619. case 'l':
  1620. set_mode(vc, 0);
  1621. return;
  1622. case 'c':
  1623. if (vc->vc_ques) {
  1624. if (vc->vc_par[0])
  1625. vc->vc_cursor_type = vc->vc_par[0] | (vc->vc_par[1] << 8) | (vc->vc_par[2] << 16);
  1626. else
  1627. vc->vc_cursor_type = CUR_DEFAULT;
  1628. return;
  1629. }
  1630. break;
  1631. case 'm':
  1632. if (vc->vc_ques) {
  1633. clear_selection();
  1634. if (vc->vc_par[0])
  1635. vc->vc_complement_mask = vc->vc_par[0] << 8 | vc->vc_par[1];
  1636. else
  1637. vc->vc_complement_mask = vc->vc_s_complement_mask;
  1638. return;
  1639. }
  1640. break;
  1641. case 'n':
  1642. if (!vc->vc_ques) {
  1643. if (vc->vc_par[0] == 5)
  1644. status_report(tty);
  1645. else if (vc->vc_par[0] == 6)
  1646. cursor_report(vc, tty);
  1647. }
  1648. return;
  1649. }
  1650. if (vc->vc_ques) {
  1651. vc->vc_ques = 0;
  1652. return;
  1653. }
  1654. switch(c) {
  1655. case 'G': case '`':
  1656. if (vc->vc_par[0])
  1657. vc->vc_par[0]--;
  1658. gotoxy(vc, vc->vc_par[0], vc->vc_y);
  1659. return;
  1660. case 'A':
  1661. if (!vc->vc_par[0])
  1662. vc->vc_par[0]++;
  1663. gotoxy(vc, vc->vc_x, vc->vc_y - vc->vc_par[0]);
  1664. return;
  1665. case 'B': case 'e':
  1666. if (!vc->vc_par[0])
  1667. vc->vc_par[0]++;
  1668. gotoxy(vc, vc->vc_x, vc->vc_y + vc->vc_par[0]);
  1669. return;
  1670. case 'C': case 'a':
  1671. if (!vc->vc_par[0])
  1672. vc->vc_par[0]++;
  1673. gotoxy(vc, vc->vc_x + vc->vc_par[0], vc->vc_y);
  1674. return;
  1675. case 'D':
  1676. if (!vc->vc_par[0])
  1677. vc->vc_par[0]++;
  1678. gotoxy(vc, vc->vc_x - vc->vc_par[0], vc->vc_y);
  1679. return;
  1680. case 'E':
  1681. if (!vc->vc_par[0])
  1682. vc->vc_par[0]++;
  1683. gotoxy(vc, 0, vc->vc_y + vc->vc_par[0]);
  1684. return;
  1685. case 'F':
  1686. if (!vc->vc_par[0])
  1687. vc->vc_par[0]++;
  1688. gotoxy(vc, 0, vc->vc_y - vc->vc_par[0]);
  1689. return;
  1690. case 'd':
  1691. if (vc->vc_par[0])
  1692. vc->vc_par[0]--;
  1693. gotoxay(vc, vc->vc_x ,vc->vc_par[0]);
  1694. return;
  1695. case 'H': case 'f':
  1696. if (vc->vc_par[0])
  1697. vc->vc_par[0]--;
  1698. if (vc->vc_par[1])
  1699. vc->vc_par[1]--;
  1700. gotoxay(vc, vc->vc_par[1], vc->vc_par[0]);
  1701. return;
  1702. case 'J':
  1703. csi_J(vc, vc->vc_par[0]);
  1704. return;
  1705. case 'K':
  1706. csi_K(vc, vc->vc_par[0]);
  1707. return;
  1708. case 'L':
  1709. csi_L(vc, vc->vc_par[0]);
  1710. return;
  1711. case 'M':
  1712. csi_M(vc, vc->vc_par[0]);
  1713. return;
  1714. case 'P':
  1715. csi_P(vc, vc->vc_par[0]);
  1716. return;
  1717. case 'c':
  1718. if (!vc->vc_par[0])
  1719. respond_ID(tty);
  1720. return;
  1721. case 'g':
  1722. if (!vc->vc_par[0])
  1723. vc->vc_tab_stop[vc->vc_x >> 5] &= ~(1 << (vc->vc_x & 31));
  1724. else if (vc->vc_par[0] == 3) {
  1725. vc->vc_tab_stop[0] =
  1726. vc->vc_tab_stop[1] =
  1727. vc->vc_tab_stop[2] =
  1728. vc->vc_tab_stop[3] =
  1729. vc->vc_tab_stop[4] = 0;
  1730. }
  1731. return;
  1732. case 'm':
  1733. csi_m(vc);
  1734. return;
  1735. case 'q': /* DECLL - but only 3 leds */
  1736. /* map 0,1,2,3 to 0,1,2,4 */
  1737. if (vc->vc_par[0] < 4)
  1738. setledstate(kbd_table + vc->vc_num,
  1739. (vc->vc_par[0] < 3) ? vc->vc_par[0] : 4);
  1740. return;
  1741. case 'r':
  1742. if (!vc->vc_par[0])
  1743. vc->vc_par[0]++;
  1744. if (!vc->vc_par[1])
  1745. vc->vc_par[1] = vc->vc_rows;
  1746. /* Minimum allowed region is 2 lines */
  1747. if (vc->vc_par[0] < vc->vc_par[1] &&
  1748. vc->vc_par[1] <= vc->vc_rows) {
  1749. vc->vc_top = vc->vc_par[0] - 1;
  1750. vc->vc_bottom = vc->vc_par[1];
  1751. gotoxay(vc, 0, 0);
  1752. }
  1753. return;
  1754. case 's':
  1755. save_cur(vc);
  1756. return;
  1757. case 'u':
  1758. restore_cur(vc);
  1759. return;
  1760. case 'X':
  1761. csi_X(vc, vc->vc_par[0]);
  1762. return;
  1763. case '@':
  1764. csi_at(vc, vc->vc_par[0]);
  1765. return;
  1766. case ']': /* setterm functions */
  1767. setterm_command(vc);
  1768. return;
  1769. }
  1770. return;
  1771. case ESpercent:
  1772. vc->vc_state = ESnormal;
  1773. switch (c) {
  1774. case '@': /* defined in ISO 2022 */
  1775. vc->vc_utf = 0;
  1776. return;
  1777. case 'G': /* prelim official escape code */
  1778. case '8': /* retained for compatibility */
  1779. vc->vc_utf = 1;
  1780. return;
  1781. }
  1782. return;
  1783. case ESfunckey:
  1784. vc->vc_state = ESnormal;
  1785. return;
  1786. case EShash:
  1787. vc->vc_state = ESnormal;
  1788. if (c == '8') {
  1789. /* DEC screen alignment test. kludge :-) */
  1790. vc->vc_video_erase_char =
  1791. (vc->vc_video_erase_char & 0xff00) | 'E';
  1792. csi_J(vc, 2);
  1793. vc->vc_video_erase_char =
  1794. (vc->vc_video_erase_char & 0xff00) | ' ';
  1795. do_update_region(vc, vc->vc_origin, vc->vc_screenbuf_size / 2);
  1796. }
  1797. return;
  1798. case ESsetG0:
  1799. if (c == '0')
  1800. vc->vc_G0_charset = GRAF_MAP;
  1801. else if (c == 'B')
  1802. vc->vc_G0_charset = LAT1_MAP;
  1803. else if (c == 'U')
  1804. vc->vc_G0_charset = IBMPC_MAP;
  1805. else if (c == 'K')
  1806. vc->vc_G0_charset = USER_MAP;
  1807. if (vc->vc_charset == 0)
  1808. vc->vc_translate = set_translate(vc->vc_G0_charset, vc);
  1809. vc->vc_state = ESnormal;
  1810. return;
  1811. case ESsetG1:
  1812. if (c == '0')
  1813. vc->vc_G1_charset = GRAF_MAP;
  1814. else if (c == 'B')
  1815. vc->vc_G1_charset = LAT1_MAP;
  1816. else if (c == 'U')
  1817. vc->vc_G1_charset = IBMPC_MAP;
  1818. else if (c == 'K')
  1819. vc->vc_G1_charset = USER_MAP;
  1820. if (vc->vc_charset == 1)
  1821. vc->vc_translate = set_translate(vc->vc_G1_charset, vc);
  1822. vc->vc_state = ESnormal;
  1823. return;
  1824. default:
  1825. vc->vc_state = ESnormal;
  1826. }
  1827. }
  1828. /* This is a temporary buffer used to prepare a tty console write
  1829. * so that we can easily avoid touching user space while holding the
  1830. * console spinlock. It is allocated in con_init and is shared by
  1831. * this code and the vc_screen read/write tty calls.
  1832. *
  1833. * We have to allocate this statically in the kernel data section
  1834. * since console_init (and thus con_init) are called before any
  1835. * kernel memory allocation is available.
  1836. */
  1837. char con_buf[CON_BUF_SIZE];
  1838. DEFINE_MUTEX(con_buf_mtx);
  1839. /* is_double_width() is based on the wcwidth() implementation by
  1840. * Markus Kuhn -- 2007-05-26 (Unicode 5.0)
  1841. * Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
  1842. */
  1843. struct interval {
  1844. uint32_t first;
  1845. uint32_t last;
  1846. };
  1847. static int bisearch(uint32_t ucs, const struct interval *table, int max)
  1848. {
  1849. int min = 0;
  1850. int mid;
  1851. if (ucs < table[0].first || ucs > table[max].last)
  1852. return 0;
  1853. while (max >= min) {
  1854. mid = (min + max) / 2;
  1855. if (ucs > table[mid].last)
  1856. min = mid + 1;
  1857. else if (ucs < table[mid].first)
  1858. max = mid - 1;
  1859. else
  1860. return 1;
  1861. }
  1862. return 0;
  1863. }
  1864. static int is_double_width(uint32_t ucs)
  1865. {
  1866. static const struct interval double_width[] = {
  1867. { 0x1100, 0x115F }, { 0x2329, 0x232A }, { 0x2E80, 0x303E },
  1868. { 0x3040, 0xA4CF }, { 0xAC00, 0xD7A3 }, { 0xF900, 0xFAFF },
  1869. { 0xFE10, 0xFE19 }, { 0xFE30, 0xFE6F }, { 0xFF00, 0xFF60 },
  1870. { 0xFFE0, 0xFFE6 }, { 0x20000, 0x2FFFD }, { 0x30000, 0x3FFFD }
  1871. };
  1872. return bisearch(ucs, double_width, ARRAY_SIZE(double_width) - 1);
  1873. }
  1874. /* acquires console_sem */
  1875. static int do_con_write(struct tty_struct *tty, const unsigned char *buf, int count)
  1876. {
  1877. #ifdef VT_BUF_VRAM_ONLY
  1878. #define FLUSH do { } while(0);
  1879. #else
  1880. #define FLUSH if (draw_x >= 0) { \
  1881. vc->vc_sw->con_putcs(vc, (u16 *)draw_from, (u16 *)draw_to - (u16 *)draw_from, vc->vc_y, draw_x); \
  1882. draw_x = -1; \
  1883. }
  1884. #endif
  1885. int c, tc, ok, n = 0, draw_x = -1;
  1886. unsigned int currcons;
  1887. unsigned long draw_from = 0, draw_to = 0;
  1888. struct vc_data *vc;
  1889. unsigned char vc_attr;
  1890. struct vt_notifier_param param;
  1891. uint8_t rescan;
  1892. uint8_t inverse;
  1893. uint8_t width;
  1894. u16 himask, charmask;
  1895. const unsigned char *orig_buf = NULL;
  1896. int orig_count;
  1897. if (in_interrupt())
  1898. return count;
  1899. might_sleep();
  1900. acquire_console_sem();
  1901. vc = tty->driver_data;
  1902. if (vc == NULL) {
  1903. printk(KERN_ERR "vt: argh, driver_data is NULL !\n");
  1904. release_console_sem();
  1905. return 0;
  1906. }
  1907. currcons = vc->vc_num;
  1908. if (!vc_cons_allocated(currcons)) {
  1909. /* could this happen? */
  1910. static int error = 0;
  1911. if (!error) {
  1912. error = 1;
  1913. printk("con_write: tty %d not allocated\n", currcons+1);
  1914. }
  1915. release_console_sem();
  1916. return 0;
  1917. }
  1918. release_console_sem();
  1919. orig_buf = buf;
  1920. orig_count = count;
  1921. /* At this point 'buf' is guaranteed to be a kernel buffer
  1922. * and therefore no access to userspace (and therefore sleeping)
  1923. * will be needed. The con_buf_mtx serializes all tty based
  1924. * console rendering and vcs write/read operations. We hold
  1925. * the console spinlock during the entire write.
  1926. */
  1927. acquire_console_sem();
  1928. vc = tty->driver_data;
  1929. if (vc == NULL) {
  1930. printk(KERN_ERR "vt: argh, driver_data _became_ NULL !\n");
  1931. release_console_sem();
  1932. goto out;
  1933. }
  1934. himask = vc->vc_hi_font_mask;
  1935. charmask = himask ? 0x1ff : 0xff;
  1936. /* undraw cursor first */
  1937. if (IS_FG(vc))
  1938. hide_cursor(vc);
  1939. param.vc = vc;
  1940. while (!tty->stopped && count) {
  1941. int orig = *buf;
  1942. c = orig;
  1943. buf++;
  1944. n++;
  1945. count--;
  1946. rescan = 0;
  1947. inverse = 0;
  1948. width = 1;
  1949. /* Do no translation at all in control states */
  1950. if (vc->vc_state != ESnormal) {
  1951. tc = c;
  1952. } else if (vc->vc_utf && !vc->vc_disp_ctrl) {
  1953. /* Combine UTF-8 into Unicode in vc_utf_char.
  1954. * vc_utf_count is the number of continuation bytes still
  1955. * expected to arrive.
  1956. * vc_npar is the number of continuation bytes arrived so
  1957. * far
  1958. */
  1959. rescan_last_byte:
  1960. if ((c & 0xc0) == 0x80) {
  1961. /* Continuation byte received */
  1962. static const uint32_t utf8_length_changes[] = { 0x0000007f, 0x000007ff, 0x0000ffff, 0x001fffff, 0x03ffffff, 0x7fffffff };
  1963. if (vc->vc_utf_count) {
  1964. vc->vc_utf_char = (vc->vc_utf_char << 6) | (c & 0x3f);
  1965. vc->vc_npar++;
  1966. if (--vc->vc_utf_count) {
  1967. /* Still need some bytes */
  1968. continue;
  1969. }
  1970. /* Got a whole character */
  1971. c = vc->vc_utf_char;
  1972. /* Reject overlong sequences */
  1973. if (c <= utf8_length_changes[vc->vc_npar - 1] ||
  1974. c > utf8_length_changes[vc->vc_npar])
  1975. c = 0xfffd;
  1976. } else {
  1977. /* Unexpected continuation byte */
  1978. vc->vc_utf_count = 0;
  1979. c = 0xfffd;
  1980. }
  1981. } else {
  1982. /* Single ASCII byte or first byte of a sequence received */
  1983. if (vc->vc_utf_count) {
  1984. /* Continuation byte expected */
  1985. rescan = 1;
  1986. vc->vc_utf_count = 0;
  1987. c = 0xfffd;
  1988. } else if (c > 0x7f) {
  1989. /* First byte of a multibyte sequence received */
  1990. vc->vc_npar = 0;
  1991. if ((c & 0xe0) == 0xc0) {
  1992. vc->vc_utf_count = 1;
  1993. vc->vc_utf_char = (c & 0x1f);
  1994. } else if ((c & 0xf0) == 0xe0) {
  1995. vc->vc_utf_count = 2;
  1996. vc->vc_utf_char = (c & 0x0f);
  1997. } else if ((c & 0xf8) == 0xf0) {
  1998. vc->vc_utf_count = 3;
  1999. vc->vc_utf_char = (c & 0x07);
  2000. } else if ((c & 0xfc) == 0xf8) {
  2001. vc->vc_utf_count = 4;
  2002. vc->vc_utf_char = (c & 0x03);
  2003. } else if ((c & 0xfe) == 0xfc) {
  2004. vc->vc_utf_count = 5;
  2005. vc->vc_utf_char = (c & 0x01);
  2006. } else {
  2007. /* 254 and 255 are invalid */
  2008. c = 0xfffd;
  2009. }
  2010. if (vc->vc_utf_count) {
  2011. /* Still need some bytes */
  2012. continue;
  2013. }
  2014. }
  2015. /* Nothing to do if an ASCII byte was received */
  2016. }
  2017. /* End of UTF-8 decoding. */
  2018. /* c is the received character, or U+FFFD for invalid sequences. */
  2019. /* Replace invalid Unicode code points with U+FFFD too */
  2020. if ((c >= 0xd800 && c <= 0xdfff) || c == 0xfffe || c == 0xffff)
  2021. c = 0xfffd;
  2022. tc = c;
  2023. } else { /* no utf or alternate charset mode */
  2024. tc = vc_translate(vc, c);
  2025. }
  2026. param.c = tc;
  2027. if (atomic_notifier_call_chain(&vt_notifier_list, VT_PREWRITE,
  2028. &param) == NOTIFY_STOP)
  2029. continue;
  2030. /* If the original code was a control character we
  2031. * only allow a glyph to be displayed if the code is
  2032. * not normally used (such as for cursor movement) or
  2033. * if the disp_ctrl mode has been explicitly enabled.
  2034. * Certain characters (as given by the CTRL_ALWAYS
  2035. * bitmap) are always displayed as control characters,
  2036. * as the console would be pretty useless without
  2037. * them; to display an arbitrary font position use the
  2038. * direct-to-font zone in UTF-8 mode.
  2039. */
  2040. ok = tc && (c >= 32 ||
  2041. !(vc->vc_disp_ctrl ? (CTRL_ALWAYS >> c) & 1 :
  2042. vc->vc_utf || ((CTRL_ACTION >> c) & 1)))
  2043. && (c != 127 || vc->vc_disp_ctrl)
  2044. && (c != 128+27);
  2045. if (vc->vc_state == ESnormal && ok) {
  2046. if (vc->vc_utf && !vc->vc_disp_ctrl) {
  2047. if (is_double_width(c))
  2048. width = 2;
  2049. }
  2050. /* Now try to find out how to display it */
  2051. tc = conv_uni_to_pc(vc, tc);
  2052. if (tc & ~charmask) {
  2053. if (tc == -1 || tc == -2) {
  2054. continue; /* nothing to display */
  2055. }
  2056. /* Glyph not found */
  2057. if ((!(vc->vc_utf && !vc->vc_disp_ctrl) || c < 128) && !(c & ~charmask)) {
  2058. /* In legacy mode use the glyph we get by a 1:1 mapping.
  2059. This would make absolutely no sense with Unicode in mind,
  2060. but do this for ASCII characters since a font may lack
  2061. Unicode mapping info and we don't want to end up with
  2062. having question marks only. */
  2063. tc = c;
  2064. } else {
  2065. /* Display U+FFFD. If it's not found, display an inverse question mark. */
  2066. tc = conv_uni_to_pc(vc, 0xfffd);
  2067. if (tc < 0) {
  2068. inverse = 1;
  2069. tc = conv_uni_to_pc(vc, '?');
  2070. if (tc < 0) tc = '?';
  2071. }
  2072. }
  2073. }
  2074. if (!inverse) {
  2075. vc_attr = vc->vc_attr;
  2076. } else {
  2077. /* invert vc_attr */
  2078. if (!vc->vc_can_do_color) {
  2079. vc_attr = (vc->vc_attr) ^ 0x08;
  2080. } else if (vc->vc_hi_font_mask == 0x100) {
  2081. vc_attr = ((vc->vc_attr) & 0x11) | (((vc->vc_attr) & 0xe0) >> 4) | (((vc->vc_attr) & 0x0e) << 4);
  2082. } else {
  2083. vc_attr = ((vc->vc_attr) & 0x88) | (((vc->vc_attr) & 0x70) >> 4) | (((vc->vc_attr) & 0x07) << 4);
  2084. }
  2085. FLUSH
  2086. }
  2087. while (1) {
  2088. if (vc->vc_need_wrap || vc->vc_decim)
  2089. FLUSH
  2090. if (vc->vc_need_wrap) {
  2091. cr(vc);
  2092. lf(vc);
  2093. }
  2094. if (vc->vc_decim)
  2095. insert_char(vc, 1);
  2096. scr_writew(himask ?
  2097. ((vc_attr << 8) & ~himask) + ((tc & 0x100) ? himask : 0) + (tc & 0xff) :
  2098. (vc_attr << 8) + tc,
  2099. (u16 *) vc->vc_pos);
  2100. if (DO_UPDATE(vc) && draw_x < 0) {
  2101. draw_x = vc->vc_x;
  2102. draw_from = vc->vc_pos;
  2103. }
  2104. if (vc->vc_x == vc->vc_cols - 1) {
  2105. vc->vc_need_wrap = vc->vc_decawm;
  2106. draw_to = vc->vc_pos + 2;
  2107. } else {
  2108. vc->vc_x++;
  2109. draw_to = (vc->vc_pos += 2);
  2110. }
  2111. if (!--width) break;
  2112. tc = conv_uni_to_pc(vc, ' '); /* A space is printed in the second column */
  2113. if (tc < 0) tc = ' ';
  2114. }
  2115. notify_write(vc, c);
  2116. if (inverse) {
  2117. FLUSH
  2118. }
  2119. if (rescan) {
  2120. rescan = 0;
  2121. inverse = 0;
  2122. width = 1;
  2123. c = orig;
  2124. goto rescan_last_byte;
  2125. }
  2126. continue;
  2127. }
  2128. FLUSH
  2129. do_con_trol(tty, vc, orig);
  2130. }
  2131. FLUSH
  2132. console_conditional_schedule();
  2133. release_console_sem();
  2134. out:
  2135. notify_update(vc);
  2136. return n;
  2137. #undef FLUSH
  2138. }
  2139. /*
  2140. * This is the console switching callback.
  2141. *
  2142. * Doing console switching in a process context allows
  2143. * us to do the switches asynchronously (needed when we want
  2144. * to switch due to a keyboard interrupt). Synchronization
  2145. * with other console code and prevention of re-entrancy is
  2146. * ensured with console_sem.
  2147. */
  2148. static void console_callback(struct work_struct *ignored)
  2149. {
  2150. acquire_console_sem();
  2151. if (want_console >= 0) {
  2152. if (want_console != fg_console &&
  2153. vc_cons_allocated(want_console)) {
  2154. hide_cursor(vc_cons[fg_console].d);
  2155. change_console(vc_cons[want_console].d);
  2156. /* we only changed when the console had already
  2157. been allocated - a new console is not created
  2158. in an interrupt routine */
  2159. }
  2160. want_console = -1;
  2161. }
  2162. if (do_poke_blanked_console) { /* do not unblank for a LED change */
  2163. do_poke_blanked_console = 0;
  2164. poke_blanked_console();
  2165. }
  2166. if (scrollback_delta) {
  2167. struct vc_data *vc = vc_cons[fg_console].d;
  2168. clear_selection();
  2169. if (vc->vc_mode == KD_TEXT)
  2170. vc->vc_sw->con_scrolldelta(vc, scrollback_delta);
  2171. scrollback_delta = 0;
  2172. }
  2173. if (blank_timer_expired) {
  2174. do_blank_screen(0);
  2175. blank_timer_expired = 0;
  2176. }
  2177. notify_update(vc_cons[fg_console].d);
  2178. release_console_sem();
  2179. }
  2180. int set_console(int nr)
  2181. {
  2182. struct vc_data *vc = vc_cons[fg_console].d;
  2183. if (!vc_cons_allocated(nr) || vt_dont_switch ||
  2184. (vc->vt_mode.mode == VT_AUTO && vc->vc_mode == KD_GRAPHICS)) {
  2185. /*
  2186. * Console switch will fail in console_callback() or
  2187. * change_console() so there is no point scheduling
  2188. * the callback
  2189. *
  2190. * Existing set_console() users don't check the return
  2191. * value so this shouldn't break anything
  2192. */
  2193. return -EINVAL;
  2194. }
  2195. want_console = nr;
  2196. schedule_console_callback();
  2197. return 0;
  2198. }
  2199. struct tty_driver *console_driver;
  2200. #ifdef CONFIG_VT_CONSOLE
  2201. /*
  2202. * Console on virtual terminal
  2203. *
  2204. * The console must be locked when we get here.
  2205. */
  2206. static void vt_console_print(struct console *co, const char *b, unsigned count)
  2207. {
  2208. struct vc_data *vc = vc_cons[fg_console].d;
  2209. unsigned char c;
  2210. static DEFINE_SPINLOCK(printing_lock);
  2211. const ushort *start;
  2212. ushort cnt = 0;
  2213. ushort myx;
  2214. /* console busy or not yet initialized */
  2215. if (!printable)
  2216. return;
  2217. if (!spin_trylock(&printing_lock))
  2218. return;
  2219. if (kmsg_redirect && vc_cons_allocated(kmsg_redirect - 1))
  2220. vc = vc_cons[kmsg_redirect - 1].d;
  2221. /* read `x' only after setting currcons properly (otherwise
  2222. the `x' macro will read the x of the foreground console). */
  2223. myx = vc->vc_x;
  2224. if (!vc_cons_allocated(fg_console)) {
  2225. /* impossible */
  2226. /* printk("vt_console_print: tty %d not allocated ??\n", currcons+1); */
  2227. goto quit;
  2228. }
  2229. if (vc->vc_mode != KD_TEXT)
  2230. goto quit;
  2231. /* undraw cursor first */
  2232. if (IS_FG(vc))
  2233. hide_cursor(vc);
  2234. start = (ushort *)vc->vc_pos;
  2235. /* Contrived structure to try to emulate original need_wrap behaviour
  2236. * Problems caused when we have need_wrap set on '\n' character */
  2237. while (count--) {
  2238. c = *b++;
  2239. if (c == 10 || c == 13 || c == 8 || vc->vc_need_wrap) {
  2240. if (cnt > 0) {
  2241. if (CON_IS_VISIBLE(vc))
  2242. vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x);
  2243. vc->vc_x += cnt;
  2244. if (vc->vc_need_wrap)
  2245. vc->vc_x--;
  2246. cnt = 0;
  2247. }
  2248. if (c == 8) { /* backspace */
  2249. bs(vc);
  2250. start = (ushort *)vc->vc_pos;
  2251. myx = vc->vc_x;
  2252. continue;
  2253. }
  2254. if (c != 13)
  2255. lf(vc);
  2256. cr(vc);
  2257. start = (ushort *)vc->vc_pos;
  2258. myx = vc->vc_x;
  2259. if (c == 10 || c == 13)
  2260. continue;
  2261. }
  2262. scr_writew((vc->vc_attr << 8) + c, (unsigned short *)vc->vc_pos);
  2263. notify_write(vc, c);
  2264. cnt++;
  2265. if (myx == vc->vc_cols - 1) {
  2266. vc->vc_need_wrap = 1;
  2267. continue;
  2268. }
  2269. vc->vc_pos += 2;
  2270. myx++;
  2271. }
  2272. if (cnt > 0) {
  2273. if (CON_IS_VISIBLE(vc))
  2274. vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x);
  2275. vc->vc_x += cnt;
  2276. if (vc->vc_x == vc->vc_cols) {
  2277. vc->vc_x--;
  2278. vc->vc_need_wrap = 1;
  2279. }
  2280. }
  2281. set_cursor(vc);
  2282. notify_update(vc);
  2283. quit:
  2284. spin_unlock(&printing_lock);
  2285. }
  2286. static struct tty_driver *vt_console_device(struct console *c, int *index)
  2287. {
  2288. *index = c->index ? c->index-1 : fg_console;
  2289. return console_driver;
  2290. }
  2291. static struct console vt_console_driver = {
  2292. .name = "tty",
  2293. .write = vt_console_print,
  2294. .device = vt_console_device,
  2295. .unblank = unblank_screen,
  2296. .flags = CON_PRINTBUFFER,
  2297. .index = -1,
  2298. };
  2299. #endif
  2300. /*
  2301. * Handling of Linux-specific VC ioctls
  2302. */
  2303. /*
  2304. * Generally a bit racy with respect to console_sem().
  2305. *
  2306. * There are some functions which don't need it.
  2307. *
  2308. * There are some functions which can sleep for arbitrary periods
  2309. * (paste_selection) but we don't need the lock there anyway.
  2310. *
  2311. * set_selection has locking, and definitely needs it
  2312. */
  2313. int tioclinux(struct tty_struct *tty, unsigned long arg)
  2314. {
  2315. char type, data;
  2316. char __user *p = (char __user *)arg;
  2317. int lines;
  2318. int ret;
  2319. if (tty->driver->type != TTY_DRIVER_TYPE_CONSOLE)
  2320. return -EINVAL;
  2321. if (current->signal->tty != tty && !capable(CAP_SYS_ADMIN))
  2322. return -EPERM;
  2323. if (get_user(type, p))
  2324. return -EFAULT;
  2325. ret = 0;
  2326. lock_kernel();
  2327. switch (type)
  2328. {
  2329. case TIOCL_SETSEL:
  2330. acquire_console_sem();
  2331. ret = set_selection((struct tiocl_selection __user *)(p+1), tty);
  2332. release_console_sem();
  2333. break;
  2334. case TIOCL_PASTESEL:
  2335. ret = paste_selection(tty);
  2336. break;
  2337. case TIOCL_UNBLANKSCREEN:
  2338. acquire_console_sem();
  2339. unblank_screen();
  2340. release_console_sem();
  2341. break;
  2342. case TIOCL_SELLOADLUT:
  2343. ret = sel_loadlut(p);
  2344. break;
  2345. case TIOCL_GETSHIFTSTATE:
  2346. /*
  2347. * Make it possible to react to Shift+Mousebutton.
  2348. * Note that 'shift_state' is an undocumented
  2349. * kernel-internal variable; programs not closely
  2350. * related to the kernel should not use this.
  2351. */
  2352. data = shift_state;
  2353. ret = __put_user(data, p);
  2354. break;
  2355. case TIOCL_GETMOUSEREPORTING:
  2356. data = mouse_reporting();
  2357. ret = __put_user(data, p);
  2358. break;
  2359. case TIOCL_SETVESABLANK:
  2360. ret = set_vesa_blanking(p);
  2361. break;
  2362. case TIOCL_GETKMSGREDIRECT:
  2363. data = kmsg_redirect;
  2364. ret = __put_user(data, p);
  2365. break;
  2366. case TIOCL_SETKMSGREDIRECT:
  2367. if (!capable(CAP_SYS_ADMIN)) {
  2368. ret = -EPERM;
  2369. } else {
  2370. if (get_user(data, p+1))
  2371. ret = -EFAULT;
  2372. else
  2373. kmsg_redirect = data;
  2374. }
  2375. break;
  2376. case TIOCL_GETFGCONSOLE:
  2377. ret = fg_console;
  2378. break;
  2379. case TIOCL_SCROLLCONSOLE:
  2380. if (get_user(lines, (s32 __user *)(p+4))) {
  2381. ret = -EFAULT;
  2382. } else {
  2383. scrollfront(vc_cons[fg_console].d, lines);
  2384. ret = 0;
  2385. }
  2386. break;
  2387. case TIOCL_BLANKSCREEN: /* until explicitly unblanked, not only poked */
  2388. acquire_console_sem();
  2389. ignore_poke = 1;
  2390. do_blank_screen(0);
  2391. release_console_sem();
  2392. break;
  2393. case TIOCL_BLANKEDSCREEN:
  2394. ret = console_blanked;
  2395. break;
  2396. default:
  2397. ret = -EINVAL;
  2398. break;
  2399. }
  2400. unlock_kernel();
  2401. return ret;
  2402. }
  2403. /*
  2404. * /dev/ttyN handling
  2405. */
  2406. static int con_write(struct tty_struct *tty, const unsigned char *buf, int count)
  2407. {
  2408. int retval;
  2409. retval = do_con_write(tty, buf, count);
  2410. con_flush_chars(tty);
  2411. return retval;
  2412. }
  2413. static int con_put_char(struct tty_struct *tty, unsigned char ch)
  2414. {
  2415. if (in_interrupt())
  2416. return 0; /* n_r3964 calls put_char() from interrupt context */
  2417. return do_con_write(tty, &ch, 1);
  2418. }
  2419. static int con_write_room(struct tty_struct *tty)
  2420. {
  2421. if (tty->stopped)
  2422. return 0;
  2423. return 4096; /* No limit, really; we're not buffering */
  2424. }
  2425. static int con_chars_in_buffer(struct tty_struct *tty)
  2426. {
  2427. return 0; /* we're not buffering */
  2428. }
  2429. /*
  2430. * con_throttle and con_unthrottle are only used for
  2431. * paste_selection(), which has to stuff in a large number of
  2432. * characters...
  2433. */
  2434. static void con_throttle(struct tty_struct *tty)
  2435. {
  2436. }
  2437. static void con_unthrottle(struct tty_struct *tty)
  2438. {
  2439. struct vc_data *vc = tty->driver_data;
  2440. wake_up_interruptible(&vc->paste_wait);
  2441. }
  2442. /*
  2443. * Turn the Scroll-Lock LED on when the tty is stopped
  2444. */
  2445. static void con_stop(struct tty_struct *tty)
  2446. {
  2447. int console_num;
  2448. if (!tty)
  2449. return;
  2450. console_num = tty->index;
  2451. if (!vc_cons_allocated(console_num))
  2452. return;
  2453. set_vc_kbd_led(kbd_table + console_num, VC_SCROLLOCK);
  2454. set_leds();
  2455. }
  2456. /*
  2457. * Turn the Scroll-Lock LED off when the console is started
  2458. */
  2459. static void con_start(struct tty_struct *tty)
  2460. {
  2461. int console_num;
  2462. if (!tty)
  2463. return;
  2464. console_num = tty->index;
  2465. if (!vc_cons_allocated(console_num))
  2466. return;
  2467. clr_vc_kbd_led(kbd_table + console_num, VC_SCROLLOCK);
  2468. set_leds();
  2469. }
  2470. static void con_flush_chars(struct tty_struct *tty)
  2471. {
  2472. struct vc_data *vc;
  2473. if (in_interrupt()) /* from flush_to_ldisc */
  2474. return;
  2475. /* if we race with con_close(), vt may be null */
  2476. acquire_console_sem();
  2477. vc = tty->driver_data;
  2478. if (vc)
  2479. set_cursor(vc);
  2480. release_console_sem();
  2481. }
  2482. /*
  2483. * Allocate the console screen memory.
  2484. */
  2485. static int con_open(struct tty_struct *tty, struct file *filp)
  2486. {
  2487. unsigned int currcons = tty->index;
  2488. int ret = 0;
  2489. acquire_console_sem();
  2490. if (tty->driver_data == NULL) {
  2491. ret = vc_allocate(currcons);
  2492. if (ret == 0) {
  2493. struct vc_data *vc = vc_cons[currcons].d;
  2494. tty->driver_data = vc;
  2495. vc->vc_tty = tty;
  2496. if (!tty->winsize.ws_row && !tty->winsize.ws_col) {
  2497. tty->winsize.ws_row = vc_cons[currcons].d->vc_rows;
  2498. tty->winsize.ws_col = vc_cons[currcons].d->vc_cols;
  2499. }
  2500. if (vc->vc_utf)
  2501. tty->termios->c_iflag |= IUTF8;
  2502. else
  2503. tty->termios->c_iflag &= ~IUTF8;
  2504. vcs_make_sysfs(tty);
  2505. release_console_sem();
  2506. return ret;
  2507. }
  2508. }
  2509. release_console_sem();
  2510. return ret;
  2511. }
  2512. /*
  2513. * We take tty_mutex in here to prevent another thread from coming in via init_dev
  2514. * and taking a ref against the tty while we're in the process of forgetting
  2515. * about it and cleaning things up.
  2516. *
  2517. * This is because vcs_remove_sysfs() can sleep and will drop the BKL.
  2518. */
  2519. static void con_close(struct tty_struct *tty, struct file *filp)
  2520. {
  2521. mutex_lock(&tty_mutex);
  2522. acquire_console_sem();
  2523. if (tty && tty->count == 1) {
  2524. struct vc_data *vc = tty->driver_data;
  2525. if (vc)
  2526. vc->vc_tty = NULL;
  2527. tty->driver_data = NULL;
  2528. vcs_remove_sysfs(tty);
  2529. release_console_sem();
  2530. mutex_unlock(&tty_mutex);
  2531. /*
  2532. * tty_mutex is released, but we still hold BKL, so there is
  2533. * still exclusion against init_dev()
  2534. */
  2535. return;
  2536. }
  2537. release_console_sem();
  2538. mutex_unlock(&tty_mutex);
  2539. }
  2540. static int default_italic_color = 2; // green (ASCII)
  2541. static int default_underline_color = 3; // cyan (ASCII)
  2542. module_param_named(italic, default_italic_color, int, S_IRUGO | S_IWUSR);
  2543. module_param_named(underline, default_underline_color, int, S_IRUGO | S_IWUSR);
  2544. static void vc_init(struct vc_data *vc, unsigned int rows,
  2545. unsigned int cols, int do_clear)
  2546. {
  2547. int j, k ;
  2548. vc->vc_cols = cols;
  2549. vc->vc_rows = rows;
  2550. vc->vc_size_row = cols << 1;
  2551. vc->vc_screenbuf_size = vc->vc_rows * vc->vc_size_row;
  2552. set_origin(vc);
  2553. vc->vc_pos = vc->vc_origin;
  2554. reset_vc(vc);
  2555. for (j=k=0; j<16; j++) {
  2556. vc->vc_palette[k++] = default_red[j] ;
  2557. vc->vc_palette[k++] = default_grn[j] ;
  2558. vc->vc_palette[k++] = default_blu[j] ;
  2559. }
  2560. vc->vc_def_color = 0x07; /* white */
  2561. vc->vc_ulcolor = default_underline_color;
  2562. vc->vc_itcolor = default_italic_color;
  2563. vc->vc_halfcolor = 0x08; /* grey */
  2564. init_waitqueue_head(&vc->paste_wait);
  2565. reset_terminal(vc, do_clear);
  2566. }
  2567. /*
  2568. * This routine initializes console interrupts, and does nothing
  2569. * else. If you want the screen to clear, call tty_write with
  2570. * the appropriate escape-sequence.
  2571. */
  2572. static int __init con_init(void)
  2573. {
  2574. const char *display_desc = NULL;
  2575. struct vc_data *vc;
  2576. unsigned int currcons = 0, i;
  2577. acquire_console_sem();
  2578. if (conswitchp)
  2579. display_desc = conswitchp->con_startup();
  2580. if (!display_desc) {
  2581. fg_console = 0;
  2582. release_console_sem();
  2583. return 0;
  2584. }
  2585. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  2586. struct con_driver *con_driver = &registered_con_driver[i];
  2587. if (con_driver->con == NULL) {
  2588. con_driver->con = conswitchp;
  2589. con_driver->desc = display_desc;
  2590. con_driver->flag = CON_DRIVER_FLAG_INIT;
  2591. con_driver->first = 0;
  2592. con_driver->last = MAX_NR_CONSOLES - 1;
  2593. break;
  2594. }
  2595. }
  2596. for (i = 0; i < MAX_NR_CONSOLES; i++)
  2597. con_driver_map[i] = conswitchp;
  2598. if (blankinterval) {
  2599. blank_state = blank_normal_wait;
  2600. mod_timer(&console_timer, jiffies + blankinterval);
  2601. }
  2602. /*
  2603. * kmalloc is not running yet - we use the bootmem allocator.
  2604. */
  2605. for (currcons = 0; currcons < MIN_NR_CONSOLES; currcons++) {
  2606. vc_cons[currcons].d = vc = alloc_bootmem(sizeof(struct vc_data));
  2607. INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK);
  2608. visual_init(vc, currcons, 1);
  2609. vc->vc_screenbuf = (unsigned short *)alloc_bootmem(vc->vc_screenbuf_size);
  2610. vc->vc_kmalloced = 0;
  2611. vc_init(vc, vc->vc_rows, vc->vc_cols,
  2612. currcons || !vc->vc_sw->con_save_screen);
  2613. }
  2614. currcons = fg_console = 0;
  2615. master_display_fg = vc = vc_cons[currcons].d;
  2616. set_origin(vc);
  2617. save_screen(vc);
  2618. gotoxy(vc, vc->vc_x, vc->vc_y);
  2619. csi_J(vc, 0);
  2620. update_screen(vc);
  2621. printk("Console: %s %s %dx%d",
  2622. vc->vc_can_do_color ? "colour" : "mono",
  2623. display_desc, vc->vc_cols, vc->vc_rows);
  2624. printable = 1;
  2625. printk("\n");
  2626. release_console_sem();
  2627. #ifdef CONFIG_VT_CONSOLE
  2628. register_console(&vt_console_driver);
  2629. #endif
  2630. return 0;
  2631. }
  2632. console_initcall(con_init);
  2633. static const struct tty_operations con_ops = {
  2634. .open = con_open,
  2635. .close = con_close,
  2636. .write = con_write,
  2637. .write_room = con_write_room,
  2638. .put_char = con_put_char,
  2639. .flush_chars = con_flush_chars,
  2640. .chars_in_buffer = con_chars_in_buffer,
  2641. .ioctl = vt_ioctl,
  2642. .stop = con_stop,
  2643. .start = con_start,
  2644. .throttle = con_throttle,
  2645. .unthrottle = con_unthrottle,
  2646. };
  2647. int __init vty_init(void)
  2648. {
  2649. vcs_init();
  2650. console_driver = alloc_tty_driver(MAX_NR_CONSOLES);
  2651. if (!console_driver)
  2652. panic("Couldn't allocate console driver\n");
  2653. console_driver->owner = THIS_MODULE;
  2654. console_driver->name = "tty";
  2655. console_driver->name_base = 1;
  2656. console_driver->major = TTY_MAJOR;
  2657. console_driver->minor_start = 1;
  2658. console_driver->type = TTY_DRIVER_TYPE_CONSOLE;
  2659. console_driver->init_termios = tty_std_termios;
  2660. if (default_utf8)
  2661. console_driver->init_termios.c_iflag |= IUTF8;
  2662. console_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_RESET_TERMIOS;
  2663. tty_set_operations(console_driver, &con_ops);
  2664. if (tty_register_driver(console_driver))
  2665. panic("Couldn't register console driver\n");
  2666. kbd_init();
  2667. console_map_init();
  2668. #ifdef CONFIG_PROM_CONSOLE
  2669. prom_con_init();
  2670. #endif
  2671. #ifdef CONFIG_MDA_CONSOLE
  2672. mda_console_init();
  2673. #endif
  2674. return 0;
  2675. }
  2676. #ifndef VT_SINGLE_DRIVER
  2677. #include <linux/device.h>
  2678. static struct class *vtconsole_class;
  2679. static int bind_con_driver(const struct consw *csw, int first, int last,
  2680. int deflt)
  2681. {
  2682. struct module *owner = csw->owner;
  2683. const char *desc = NULL;
  2684. struct con_driver *con_driver;
  2685. int i, j = -1, k = -1, retval = -ENODEV;
  2686. if (!try_module_get(owner))
  2687. return -ENODEV;
  2688. acquire_console_sem();
  2689. /* check if driver is registered */
  2690. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  2691. con_driver = &registered_con_driver[i];
  2692. if (con_driver->con == csw) {
  2693. desc = con_driver->desc;
  2694. retval = 0;
  2695. break;
  2696. }
  2697. }
  2698. if (retval)
  2699. goto err;
  2700. if (!(con_driver->flag & CON_DRIVER_FLAG_INIT)) {
  2701. csw->con_startup();
  2702. con_driver->flag |= CON_DRIVER_FLAG_INIT;
  2703. }
  2704. if (deflt) {
  2705. if (conswitchp)
  2706. module_put(conswitchp->owner);
  2707. __module_get(owner);
  2708. conswitchp = csw;
  2709. }
  2710. first = max(first, con_driver->first);
  2711. last = min(last, con_driver->last);
  2712. for (i = first; i <= last; i++) {
  2713. int old_was_color;
  2714. struct vc_data *vc = vc_cons[i].d;
  2715. if (con_driver_map[i])
  2716. module_put(con_driver_map[i]->owner);
  2717. __module_get(owner);
  2718. con_driver_map[i] = csw;
  2719. if (!vc || !vc->vc_sw)
  2720. continue;
  2721. j = i;
  2722. if (CON_IS_VISIBLE(vc)) {
  2723. k = i;
  2724. save_screen(vc);
  2725. }
  2726. old_was_color = vc->vc_can_do_color;
  2727. vc->vc_sw->con_deinit(vc);
  2728. vc->vc_origin = (unsigned long)vc->vc_screenbuf;
  2729. visual_init(vc, i, 0);
  2730. set_origin(vc);
  2731. update_attr(vc);
  2732. /* If the console changed between mono <-> color, then
  2733. * the attributes in the screenbuf will be wrong. The
  2734. * following resets all attributes to something sane.
  2735. */
  2736. if (old_was_color != vc->vc_can_do_color)
  2737. clear_buffer_attributes(vc);
  2738. }
  2739. printk("Console: switching ");
  2740. if (!deflt)
  2741. printk("consoles %d-%d ", first+1, last+1);
  2742. if (j >= 0) {
  2743. struct vc_data *vc = vc_cons[j].d;
  2744. printk("to %s %s %dx%d\n",
  2745. vc->vc_can_do_color ? "colour" : "mono",
  2746. desc, vc->vc_cols, vc->vc_rows);
  2747. if (k >= 0) {
  2748. vc = vc_cons[k].d;
  2749. update_screen(vc);
  2750. }
  2751. } else
  2752. printk("to %s\n", desc);
  2753. retval = 0;
  2754. err:
  2755. release_console_sem();
  2756. module_put(owner);
  2757. return retval;
  2758. };
  2759. #ifdef CONFIG_VT_HW_CONSOLE_BINDING
  2760. static int con_is_graphics(const struct consw *csw, int first, int last)
  2761. {
  2762. int i, retval = 0;
  2763. for (i = first; i <= last; i++) {
  2764. struct vc_data *vc = vc_cons[i].d;
  2765. if (vc && vc->vc_mode == KD_GRAPHICS) {
  2766. retval = 1;
  2767. break;
  2768. }
  2769. }
  2770. return retval;
  2771. }
  2772. /**
  2773. * unbind_con_driver - unbind a console driver
  2774. * @csw: pointer to console driver to unregister
  2775. * @first: first in range of consoles that @csw should be unbound from
  2776. * @last: last in range of consoles that @csw should be unbound from
  2777. * @deflt: should next bound console driver be default after @csw is unbound?
  2778. *
  2779. * To unbind a driver from all possible consoles, pass 0 as @first and
  2780. * %MAX_NR_CONSOLES as @last.
  2781. *
  2782. * @deflt controls whether the console that ends up replacing @csw should be
  2783. * the default console.
  2784. *
  2785. * RETURNS:
  2786. * -ENODEV if @csw isn't a registered console driver or can't be unregistered
  2787. * or 0 on success.
  2788. */
  2789. int unbind_con_driver(const struct consw *csw, int first, int last, int deflt)
  2790. {
  2791. struct module *owner = csw->owner;
  2792. const struct consw *defcsw = NULL;
  2793. struct con_driver *con_driver = NULL, *con_back = NULL;
  2794. int i, retval = -ENODEV;
  2795. if (!try_module_get(owner))
  2796. return -ENODEV;
  2797. acquire_console_sem();
  2798. /* check if driver is registered and if it is unbindable */
  2799. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  2800. con_driver = &registered_con_driver[i];
  2801. if (con_driver->con == csw &&
  2802. con_driver->flag & CON_DRIVER_FLAG_MODULE) {
  2803. retval = 0;
  2804. break;
  2805. }
  2806. }
  2807. if (retval) {
  2808. release_console_sem();
  2809. goto err;
  2810. }
  2811. retval = -ENODEV;
  2812. /* check if backup driver exists */
  2813. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  2814. con_back = &registered_con_driver[i];
  2815. if (con_back->con &&
  2816. !(con_back->flag & CON_DRIVER_FLAG_MODULE)) {
  2817. defcsw = con_back->con;
  2818. retval = 0;
  2819. break;
  2820. }
  2821. }
  2822. if (retval) {
  2823. release_console_sem();
  2824. goto err;
  2825. }
  2826. if (!con_is_bound(csw)) {
  2827. release_console_sem();
  2828. goto err;
  2829. }
  2830. first = max(first, con_driver->first);
  2831. last = min(last, con_driver->last);
  2832. for (i = first; i <= last; i++) {
  2833. if (con_driver_map[i] == csw) {
  2834. module_put(csw->owner);
  2835. con_driver_map[i] = NULL;
  2836. }
  2837. }
  2838. if (!con_is_bound(defcsw)) {
  2839. const struct consw *defconsw = conswitchp;
  2840. defcsw->con_startup();
  2841. con_back->flag |= CON_DRIVER_FLAG_INIT;
  2842. /*
  2843. * vgacon may change the default driver to point
  2844. * to dummycon, we restore it here...
  2845. */
  2846. conswitchp = defconsw;
  2847. }
  2848. if (!con_is_bound(csw))
  2849. con_driver->flag &= ~CON_DRIVER_FLAG_INIT;
  2850. release_console_sem();
  2851. /* ignore return value, binding should not fail */
  2852. bind_con_driver(defcsw, first, last, deflt);
  2853. err:
  2854. module_put(owner);
  2855. return retval;
  2856. }
  2857. EXPORT_SYMBOL(unbind_con_driver);
  2858. static int vt_bind(struct con_driver *con)
  2859. {
  2860. const struct consw *defcsw = NULL, *csw = NULL;
  2861. int i, more = 1, first = -1, last = -1, deflt = 0;
  2862. if (!con->con || !(con->flag & CON_DRIVER_FLAG_MODULE) ||
  2863. con_is_graphics(con->con, con->first, con->last))
  2864. goto err;
  2865. csw = con->con;
  2866. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  2867. struct con_driver *con = &registered_con_driver[i];
  2868. if (con->con && !(con->flag & CON_DRIVER_FLAG_MODULE)) {
  2869. defcsw = con->con;
  2870. break;
  2871. }
  2872. }
  2873. if (!defcsw)
  2874. goto err;
  2875. while (more) {
  2876. more = 0;
  2877. for (i = con->first; i <= con->last; i++) {
  2878. if (con_driver_map[i] == defcsw) {
  2879. if (first == -1)
  2880. first = i;
  2881. last = i;
  2882. more = 1;
  2883. } else if (first != -1)
  2884. break;
  2885. }
  2886. if (first == 0 && last == MAX_NR_CONSOLES -1)
  2887. deflt = 1;
  2888. if (first != -1)
  2889. bind_con_driver(csw, first, last, deflt);
  2890. first = -1;
  2891. last = -1;
  2892. deflt = 0;
  2893. }
  2894. err:
  2895. return 0;
  2896. }
  2897. static int vt_unbind(struct con_driver *con)
  2898. {
  2899. const struct consw *csw = NULL;
  2900. int i, more = 1, first = -1, last = -1, deflt = 0;
  2901. if (!con->con || !(con->flag & CON_DRIVER_FLAG_MODULE) ||
  2902. con_is_graphics(con->con, con->first, con->last))
  2903. goto err;
  2904. csw = con->con;
  2905. while (more) {
  2906. more = 0;
  2907. for (i = con->first; i <= con->last; i++) {
  2908. if (con_driver_map[i] == csw) {
  2909. if (first == -1)
  2910. first = i;
  2911. last = i;
  2912. more = 1;
  2913. } else if (first != -1)
  2914. break;
  2915. }
  2916. if (first == 0 && last == MAX_NR_CONSOLES -1)
  2917. deflt = 1;
  2918. if (first != -1)
  2919. unbind_con_driver(csw, first, last, deflt);
  2920. first = -1;
  2921. last = -1;
  2922. deflt = 0;
  2923. }
  2924. err:
  2925. return 0;
  2926. }
  2927. #else
  2928. static inline int vt_bind(struct con_driver *con)
  2929. {
  2930. return 0;
  2931. }
  2932. static inline int vt_unbind(struct con_driver *con)
  2933. {
  2934. return 0;
  2935. }
  2936. #endif /* CONFIG_VT_HW_CONSOLE_BINDING */
  2937. static ssize_t store_bind(struct device *dev, struct device_attribute *attr,
  2938. const char *buf, size_t count)
  2939. {
  2940. struct con_driver *con = dev_get_drvdata(dev);
  2941. int bind = simple_strtoul(buf, NULL, 0);
  2942. if (bind)
  2943. vt_bind(con);
  2944. else
  2945. vt_unbind(con);
  2946. return count;
  2947. }
  2948. static ssize_t show_bind(struct device *dev, struct device_attribute *attr,
  2949. char *buf)
  2950. {
  2951. struct con_driver *con = dev_get_drvdata(dev);
  2952. int bind = con_is_bound(con->con);
  2953. return snprintf(buf, PAGE_SIZE, "%i\n", bind);
  2954. }
  2955. static ssize_t show_name(struct device *dev, struct device_attribute *attr,
  2956. char *buf)
  2957. {
  2958. struct con_driver *con = dev_get_drvdata(dev);
  2959. return snprintf(buf, PAGE_SIZE, "%s %s\n",
  2960. (con->flag & CON_DRIVER_FLAG_MODULE) ? "(M)" : "(S)",
  2961. con->desc);
  2962. }
  2963. static struct device_attribute device_attrs[] = {
  2964. __ATTR(bind, S_IRUGO|S_IWUSR, show_bind, store_bind),
  2965. __ATTR(name, S_IRUGO, show_name, NULL),
  2966. };
  2967. static int vtconsole_init_device(struct con_driver *con)
  2968. {
  2969. int i;
  2970. int error = 0;
  2971. con->flag |= CON_DRIVER_FLAG_ATTR;
  2972. dev_set_drvdata(con->dev, con);
  2973. for (i = 0; i < ARRAY_SIZE(device_attrs); i++) {
  2974. error = device_create_file(con->dev, &device_attrs[i]);
  2975. if (error)
  2976. break;
  2977. }
  2978. if (error) {
  2979. while (--i >= 0)
  2980. device_remove_file(con->dev, &device_attrs[i]);
  2981. con->flag &= ~CON_DRIVER_FLAG_ATTR;
  2982. }
  2983. return error;
  2984. }
  2985. static void vtconsole_deinit_device(struct con_driver *con)
  2986. {
  2987. int i;
  2988. if (con->flag & CON_DRIVER_FLAG_ATTR) {
  2989. for (i = 0; i < ARRAY_SIZE(device_attrs); i++)
  2990. device_remove_file(con->dev, &device_attrs[i]);
  2991. con->flag &= ~CON_DRIVER_FLAG_ATTR;
  2992. }
  2993. }
  2994. /**
  2995. * con_is_bound - checks if driver is bound to the console
  2996. * @csw: console driver
  2997. *
  2998. * RETURNS: zero if unbound, nonzero if bound
  2999. *
  3000. * Drivers can call this and if zero, they should release
  3001. * all resources allocated on con_startup()
  3002. */
  3003. int con_is_bound(const struct consw *csw)
  3004. {
  3005. int i, bound = 0;
  3006. for (i = 0; i < MAX_NR_CONSOLES; i++) {
  3007. if (con_driver_map[i] == csw) {
  3008. bound = 1;
  3009. break;
  3010. }
  3011. }
  3012. return bound;
  3013. }
  3014. EXPORT_SYMBOL(con_is_bound);
  3015. /**
  3016. * register_con_driver - register console driver to console layer
  3017. * @csw: console driver
  3018. * @first: the first console to take over, minimum value is 0
  3019. * @last: the last console to take over, maximum value is MAX_NR_CONSOLES -1
  3020. *
  3021. * DESCRIPTION: This function registers a console driver which can later
  3022. * bind to a range of consoles specified by @first and @last. It will
  3023. * also initialize the console driver by calling con_startup().
  3024. */
  3025. int register_con_driver(const struct consw *csw, int first, int last)
  3026. {
  3027. struct module *owner = csw->owner;
  3028. struct con_driver *con_driver;
  3029. const char *desc;
  3030. int i, retval = 0;
  3031. if (!try_module_get(owner))
  3032. return -ENODEV;
  3033. acquire_console_sem();
  3034. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  3035. con_driver = &registered_con_driver[i];
  3036. /* already registered */
  3037. if (con_driver->con == csw)
  3038. retval = -EINVAL;
  3039. }
  3040. if (retval)
  3041. goto err;
  3042. desc = csw->con_startup();
  3043. if (!desc)
  3044. goto err;
  3045. retval = -EINVAL;
  3046. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  3047. con_driver = &registered_con_driver[i];
  3048. if (con_driver->con == NULL) {
  3049. con_driver->con = csw;
  3050. con_driver->desc = desc;
  3051. con_driver->node = i;
  3052. con_driver->flag = CON_DRIVER_FLAG_MODULE |
  3053. CON_DRIVER_FLAG_INIT;
  3054. con_driver->first = first;
  3055. con_driver->last = last;
  3056. retval = 0;
  3057. break;
  3058. }
  3059. }
  3060. if (retval)
  3061. goto err;
  3062. con_driver->dev = device_create_drvdata(vtconsole_class, NULL,
  3063. MKDEV(0, con_driver->node),
  3064. NULL, "vtcon%i",
  3065. con_driver->node);
  3066. if (IS_ERR(con_driver->dev)) {
  3067. printk(KERN_WARNING "Unable to create device for %s; "
  3068. "errno = %ld\n", con_driver->desc,
  3069. PTR_ERR(con_driver->dev));
  3070. con_driver->dev = NULL;
  3071. } else {
  3072. vtconsole_init_device(con_driver);
  3073. }
  3074. err:
  3075. release_console_sem();
  3076. module_put(owner);
  3077. return retval;
  3078. }
  3079. EXPORT_SYMBOL(register_con_driver);
  3080. /**
  3081. * unregister_con_driver - unregister console driver from console layer
  3082. * @csw: console driver
  3083. *
  3084. * DESCRIPTION: All drivers that registers to the console layer must
  3085. * call this function upon exit, or if the console driver is in a state
  3086. * where it won't be able to handle console services, such as the
  3087. * framebuffer console without loaded framebuffer drivers.
  3088. *
  3089. * The driver must unbind first prior to unregistration.
  3090. */
  3091. int unregister_con_driver(const struct consw *csw)
  3092. {
  3093. int i, retval = -ENODEV;
  3094. acquire_console_sem();
  3095. /* cannot unregister a bound driver */
  3096. if (con_is_bound(csw))
  3097. goto err;
  3098. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  3099. struct con_driver *con_driver = &registered_con_driver[i];
  3100. if (con_driver->con == csw &&
  3101. con_driver->flag & CON_DRIVER_FLAG_MODULE) {
  3102. vtconsole_deinit_device(con_driver);
  3103. device_destroy(vtconsole_class,
  3104. MKDEV(0, con_driver->node));
  3105. con_driver->con = NULL;
  3106. con_driver->desc = NULL;
  3107. con_driver->dev = NULL;
  3108. con_driver->node = 0;
  3109. con_driver->flag = 0;
  3110. con_driver->first = 0;
  3111. con_driver->last = 0;
  3112. retval = 0;
  3113. break;
  3114. }
  3115. }
  3116. err:
  3117. release_console_sem();
  3118. return retval;
  3119. }
  3120. EXPORT_SYMBOL(unregister_con_driver);
  3121. /*
  3122. * If we support more console drivers, this function is used
  3123. * when a driver wants to take over some existing consoles
  3124. * and become default driver for newly opened ones.
  3125. *
  3126. * take_over_console is basically a register followed by unbind
  3127. */
  3128. int take_over_console(const struct consw *csw, int first, int last, int deflt)
  3129. {
  3130. int err;
  3131. err = register_con_driver(csw, first, last);
  3132. if (!err)
  3133. bind_con_driver(csw, first, last, deflt);
  3134. return err;
  3135. }
  3136. /*
  3137. * give_up_console is a wrapper to unregister_con_driver. It will only
  3138. * work if driver is fully unbound.
  3139. */
  3140. void give_up_console(const struct consw *csw)
  3141. {
  3142. unregister_con_driver(csw);
  3143. }
  3144. static int __init vtconsole_class_init(void)
  3145. {
  3146. int i;
  3147. vtconsole_class = class_create(THIS_MODULE, "vtconsole");
  3148. if (IS_ERR(vtconsole_class)) {
  3149. printk(KERN_WARNING "Unable to create vt console class; "
  3150. "errno = %ld\n", PTR_ERR(vtconsole_class));
  3151. vtconsole_class = NULL;
  3152. }
  3153. /* Add system drivers to sysfs */
  3154. for (i = 0; i < MAX_NR_CON_DRIVER; i++) {
  3155. struct con_driver *con = &registered_con_driver[i];
  3156. if (con->con && !con->dev) {
  3157. con->dev = device_create_drvdata(vtconsole_class, NULL,
  3158. MKDEV(0, con->node),
  3159. NULL, "vtcon%i",
  3160. con->node);
  3161. if (IS_ERR(con->dev)) {
  3162. printk(KERN_WARNING "Unable to create "
  3163. "device for %s; errno = %ld\n",
  3164. con->desc, PTR_ERR(con->dev));
  3165. con->dev = NULL;
  3166. } else {
  3167. vtconsole_init_device(con);
  3168. }
  3169. }
  3170. }
  3171. return 0;
  3172. }
  3173. postcore_initcall(vtconsole_class_init);
  3174. #endif
  3175. /*
  3176. * Screen blanking
  3177. */
  3178. static int set_vesa_blanking(char __user *p)
  3179. {
  3180. unsigned int mode;
  3181. if (get_user(mode, p + 1))
  3182. return -EFAULT;
  3183. vesa_blank_mode = (mode < 4) ? mode : 0;
  3184. return 0;
  3185. }
  3186. void do_blank_screen(int entering_gfx)
  3187. {
  3188. struct vc_data *vc = vc_cons[fg_console].d;
  3189. int i;
  3190. WARN_CONSOLE_UNLOCKED();
  3191. if (console_blanked) {
  3192. if (blank_state == blank_vesa_wait) {
  3193. blank_state = blank_off;
  3194. vc->vc_sw->con_blank(vc, vesa_blank_mode + 1, 0);
  3195. }
  3196. return;
  3197. }
  3198. /* entering graphics mode? */
  3199. if (entering_gfx) {
  3200. hide_cursor(vc);
  3201. save_screen(vc);
  3202. vc->vc_sw->con_blank(vc, -1, 1);
  3203. console_blanked = fg_console + 1;
  3204. blank_state = blank_off;
  3205. set_origin(vc);
  3206. return;
  3207. }
  3208. if (blank_state != blank_normal_wait)
  3209. return;
  3210. blank_state = blank_off;
  3211. /* don't blank graphics */
  3212. if (vc->vc_mode != KD_TEXT) {
  3213. console_blanked = fg_console + 1;
  3214. return;
  3215. }
  3216. hide_cursor(vc);
  3217. del_timer_sync(&console_timer);
  3218. blank_timer_expired = 0;
  3219. save_screen(vc);
  3220. /* In case we need to reset origin, blanking hook returns 1 */
  3221. i = vc->vc_sw->con_blank(vc, vesa_off_interval ? 1 : (vesa_blank_mode + 1), 0);
  3222. console_blanked = fg_console + 1;
  3223. if (i)
  3224. set_origin(vc);
  3225. if (console_blank_hook && console_blank_hook(1))
  3226. return;
  3227. if (vesa_off_interval && vesa_blank_mode) {
  3228. blank_state = blank_vesa_wait;
  3229. mod_timer(&console_timer, jiffies + vesa_off_interval);
  3230. }
  3231. }
  3232. EXPORT_SYMBOL(do_blank_screen);
  3233. /*
  3234. * Called by timer as well as from vt_console_driver
  3235. */
  3236. void do_unblank_screen(int leaving_gfx)
  3237. {
  3238. struct vc_data *vc;
  3239. /* This should now always be called from a "sane" (read: can schedule)
  3240. * context for the sake of the low level drivers, except in the special
  3241. * case of oops_in_progress
  3242. */
  3243. if (!oops_in_progress)
  3244. might_sleep();
  3245. WARN_CONSOLE_UNLOCKED();
  3246. ignore_poke = 0;
  3247. if (!console_blanked)
  3248. return;
  3249. if (!vc_cons_allocated(fg_console)) {
  3250. /* impossible */
  3251. printk("unblank_screen: tty %d not allocated ??\n", fg_console+1);
  3252. return;
  3253. }
  3254. vc = vc_cons[fg_console].d;
  3255. if (vc->vc_mode != KD_TEXT)
  3256. return; /* but leave console_blanked != 0 */
  3257. if (blankinterval) {
  3258. mod_timer(&console_timer, jiffies + blankinterval);
  3259. blank_state = blank_normal_wait;
  3260. }
  3261. console_blanked = 0;
  3262. if (vc->vc_sw->con_blank(vc, 0, leaving_gfx))
  3263. /* Low-level driver cannot restore -> do it ourselves */
  3264. update_screen(vc);
  3265. if (console_blank_hook)
  3266. console_blank_hook(0);
  3267. set_palette(vc);
  3268. set_cursor(vc);
  3269. }
  3270. EXPORT_SYMBOL(do_unblank_screen);
  3271. /*
  3272. * This is called by the outside world to cause a forced unblank, mostly for
  3273. * oopses. Currently, I just call do_unblank_screen(0), but we could eventually
  3274. * call it with 1 as an argument and so force a mode restore... that may kill
  3275. * X or at least garbage the screen but would also make the Oops visible...
  3276. */
  3277. void unblank_screen(void)
  3278. {
  3279. do_unblank_screen(0);
  3280. }
  3281. /*
  3282. * We defer the timer blanking to work queue so it can take the console mutex
  3283. * (console operations can still happen at irq time, but only from printk which
  3284. * has the console mutex. Not perfect yet, but better than no locking
  3285. */
  3286. static void blank_screen_t(unsigned long dummy)
  3287. {
  3288. if (unlikely(!keventd_up())) {
  3289. mod_timer(&console_timer, jiffies + blankinterval);
  3290. return;
  3291. }
  3292. blank_timer_expired = 1;
  3293. schedule_work(&console_work);
  3294. }
  3295. void poke_blanked_console(void)
  3296. {
  3297. WARN_CONSOLE_UNLOCKED();
  3298. /* Add this so we quickly catch whoever might call us in a non
  3299. * safe context. Nowadays, unblank_screen() isn't to be called in
  3300. * atomic contexts and is allowed to schedule (with the special case
  3301. * of oops_in_progress, but that isn't of any concern for this
  3302. * function. --BenH.
  3303. */
  3304. might_sleep();
  3305. /* This isn't perfectly race free, but a race here would be mostly harmless,
  3306. * at worse, we'll do a spurrious blank and it's unlikely
  3307. */
  3308. del_timer(&console_timer);
  3309. blank_timer_expired = 0;
  3310. if (ignore_poke || !vc_cons[fg_console].d || vc_cons[fg_console].d->vc_mode == KD_GRAPHICS)
  3311. return;
  3312. if (console_blanked)
  3313. unblank_screen();
  3314. else if (blankinterval) {
  3315. mod_timer(&console_timer, jiffies + blankinterval);
  3316. blank_state = blank_normal_wait;
  3317. }
  3318. }
  3319. /*
  3320. * Palettes
  3321. */
  3322. static void set_palette(struct vc_data *vc)
  3323. {
  3324. WARN_CONSOLE_UNLOCKED();
  3325. if (vc->vc_mode != KD_GRAPHICS)
  3326. vc->vc_sw->con_set_palette(vc, color_table);
  3327. }
  3328. static int set_get_cmap(unsigned char __user *arg, int set)
  3329. {
  3330. int i, j, k;
  3331. WARN_CONSOLE_UNLOCKED();
  3332. for (i = 0; i < 16; i++)
  3333. if (set) {
  3334. get_user(default_red[i], arg++);
  3335. get_user(default_grn[i], arg++);
  3336. get_user(default_blu[i], arg++);
  3337. } else {
  3338. put_user(default_red[i], arg++);
  3339. put_user(default_grn[i], arg++);
  3340. put_user(default_blu[i], arg++);
  3341. }
  3342. if (set) {
  3343. for (i = 0; i < MAX_NR_CONSOLES; i++)
  3344. if (vc_cons_allocated(i)) {
  3345. for (j = k = 0; j < 16; j++) {
  3346. vc_cons[i].d->vc_palette[k++] = default_red[j];
  3347. vc_cons[i].d->vc_palette[k++] = default_grn[j];
  3348. vc_cons[i].d->vc_palette[k++] = default_blu[j];
  3349. }
  3350. set_palette(vc_cons[i].d);
  3351. }
  3352. }
  3353. return 0;
  3354. }
  3355. /*
  3356. * Load palette into the DAC registers. arg points to a colour
  3357. * map, 3 bytes per colour, 16 colours, range from 0 to 255.
  3358. */
  3359. int con_set_cmap(unsigned char __user *arg)
  3360. {
  3361. int rc;
  3362. acquire_console_sem();
  3363. rc = set_get_cmap (arg,1);
  3364. release_console_sem();
  3365. return rc;
  3366. }
  3367. int con_get_cmap(unsigned char __user *arg)
  3368. {
  3369. int rc;
  3370. acquire_console_sem();
  3371. rc = set_get_cmap (arg,0);
  3372. release_console_sem();
  3373. return rc;
  3374. }
  3375. void reset_palette(struct vc_data *vc)
  3376. {
  3377. int j, k;
  3378. for (j=k=0; j<16; j++) {
  3379. vc->vc_palette[k++] = default_red[j];
  3380. vc->vc_palette[k++] = default_grn[j];
  3381. vc->vc_palette[k++] = default_blu[j];
  3382. }
  3383. set_palette(vc);
  3384. }
  3385. /*
  3386. * Font switching
  3387. *
  3388. * Currently we only support fonts up to 32 pixels wide, at a maximum height
  3389. * of 32 pixels. Userspace fontdata is stored with 32 bytes (shorts/ints,
  3390. * depending on width) reserved for each character which is kinda wasty, but
  3391. * this is done in order to maintain compatibility with the EGA/VGA fonts. It
  3392. * is upto the actual low-level console-driver convert data into its favorite
  3393. * format (maybe we should add a `fontoffset' field to the `display'
  3394. * structure so we won't have to convert the fontdata all the time.
  3395. * /Jes
  3396. */
  3397. #define max_font_size 65536
  3398. static int con_font_get(struct vc_data *vc, struct console_font_op *op)
  3399. {
  3400. struct console_font font;
  3401. int rc = -EINVAL;
  3402. int c;
  3403. if (vc->vc_mode != KD_TEXT)
  3404. return -EINVAL;
  3405. if (op->data) {
  3406. font.data = kmalloc(max_font_size, GFP_KERNEL);
  3407. if (!font.data)
  3408. return -ENOMEM;
  3409. } else
  3410. font.data = NULL;
  3411. acquire_console_sem();
  3412. if (vc->vc_sw->con_font_get)
  3413. rc = vc->vc_sw->con_font_get(vc, &font);
  3414. else
  3415. rc = -ENOSYS;
  3416. release_console_sem();
  3417. if (rc)
  3418. goto out;
  3419. c = (font.width+7)/8 * 32 * font.charcount;
  3420. if (op->data && font.charcount > op->charcount)
  3421. rc = -ENOSPC;
  3422. if (!(op->flags & KD_FONT_FLAG_OLD)) {
  3423. if (font.width > op->width || font.height > op->height)
  3424. rc = -ENOSPC;
  3425. } else {
  3426. if (font.width != 8)
  3427. rc = -EIO;
  3428. else if ((op->height && font.height > op->height) ||
  3429. font.height > 32)
  3430. rc = -ENOSPC;
  3431. }
  3432. if (rc)
  3433. goto out;
  3434. op->height = font.height;
  3435. op->width = font.width;
  3436. op->charcount = font.charcount;
  3437. if (op->data && copy_to_user(op->data, font.data, c))
  3438. rc = -EFAULT;
  3439. out:
  3440. kfree(font.data);
  3441. return rc;
  3442. }
  3443. static int con_font_set(struct vc_data *vc, struct console_font_op *op)
  3444. {
  3445. struct console_font font;
  3446. int rc = -EINVAL;
  3447. int size;
  3448. if (vc->vc_mode != KD_TEXT)
  3449. return -EINVAL;
  3450. if (!op->data)
  3451. return -EINVAL;
  3452. if (op->charcount > 512)
  3453. return -EINVAL;
  3454. if (!op->height) { /* Need to guess font height [compat] */
  3455. int h, i;
  3456. u8 __user *charmap = op->data;
  3457. u8 tmp;
  3458. /* If from KDFONTOP ioctl, don't allow things which can be done in userland,
  3459. so that we can get rid of this soon */
  3460. if (!(op->flags & KD_FONT_FLAG_OLD))
  3461. return -EINVAL;
  3462. for (h = 32; h > 0; h--)
  3463. for (i = 0; i < op->charcount; i++) {
  3464. if (get_user(tmp, &charmap[32*i+h-1]))
  3465. return -EFAULT;
  3466. if (tmp)
  3467. goto nonzero;
  3468. }
  3469. return -EINVAL;
  3470. nonzero:
  3471. op->height = h;
  3472. }
  3473. if (op->width <= 0 || op->width > 32 || op->height > 32)
  3474. return -EINVAL;
  3475. size = (op->width+7)/8 * 32 * op->charcount;
  3476. if (size > max_font_size)
  3477. return -ENOSPC;
  3478. font.charcount = op->charcount;
  3479. font.height = op->height;
  3480. font.width = op->width;
  3481. font.data = kmalloc(size, GFP_KERNEL);
  3482. if (!font.data)
  3483. return -ENOMEM;
  3484. if (copy_from_user(font.data, op->data, size)) {
  3485. kfree(font.data);
  3486. return -EFAULT;
  3487. }
  3488. acquire_console_sem();
  3489. if (vc->vc_sw->con_font_set)
  3490. rc = vc->vc_sw->con_font_set(vc, &font, op->flags);
  3491. else
  3492. rc = -ENOSYS;
  3493. release_console_sem();
  3494. kfree(font.data);
  3495. return rc;
  3496. }
  3497. static int con_font_default(struct vc_data *vc, struct console_font_op *op)
  3498. {
  3499. struct console_font font = {.width = op->width, .height = op->height};
  3500. char name[MAX_FONT_NAME];
  3501. char *s = name;
  3502. int rc;
  3503. if (vc->vc_mode != KD_TEXT)
  3504. return -EINVAL;
  3505. if (!op->data)
  3506. s = NULL;
  3507. else if (strncpy_from_user(name, op->data, MAX_FONT_NAME - 1) < 0)
  3508. return -EFAULT;
  3509. else
  3510. name[MAX_FONT_NAME - 1] = 0;
  3511. acquire_console_sem();
  3512. if (vc->vc_sw->con_font_default)
  3513. rc = vc->vc_sw->con_font_default(vc, &font, s);
  3514. else
  3515. rc = -ENOSYS;
  3516. release_console_sem();
  3517. if (!rc) {
  3518. op->width = font.width;
  3519. op->height = font.height;
  3520. }
  3521. return rc;
  3522. }
  3523. static int con_font_copy(struct vc_data *vc, struct console_font_op *op)
  3524. {
  3525. int con = op->height;
  3526. int rc;
  3527. if (vc->vc_mode != KD_TEXT)
  3528. return -EINVAL;
  3529. acquire_console_sem();
  3530. if (!vc->vc_sw->con_font_copy)
  3531. rc = -ENOSYS;
  3532. else if (con < 0 || !vc_cons_allocated(con))
  3533. rc = -ENOTTY;
  3534. else if (con == vc->vc_num) /* nothing to do */
  3535. rc = 0;
  3536. else
  3537. rc = vc->vc_sw->con_font_copy(vc, con);
  3538. release_console_sem();
  3539. return rc;
  3540. }
  3541. int con_font_op(struct vc_data *vc, struct console_font_op *op)
  3542. {
  3543. switch (op->op) {
  3544. case KD_FONT_OP_SET:
  3545. return con_font_set(vc, op);
  3546. case KD_FONT_OP_GET:
  3547. return con_font_get(vc, op);
  3548. case KD_FONT_OP_SET_DEFAULT:
  3549. return con_font_default(vc, op);
  3550. case KD_FONT_OP_COPY:
  3551. return con_font_copy(vc, op);
  3552. }
  3553. return -ENOSYS;
  3554. }
  3555. /*
  3556. * Interface exported to selection and vcs.
  3557. */
  3558. /* used by selection */
  3559. u16 screen_glyph(struct vc_data *vc, int offset)
  3560. {
  3561. u16 w = scr_readw(screenpos(vc, offset, 1));
  3562. u16 c = w & 0xff;
  3563. if (w & vc->vc_hi_font_mask)
  3564. c |= 0x100;
  3565. return c;
  3566. }
  3567. EXPORT_SYMBOL_GPL(screen_glyph);
  3568. /* used by vcs - note the word offset */
  3569. unsigned short *screen_pos(struct vc_data *vc, int w_offset, int viewed)
  3570. {
  3571. return screenpos(vc, 2 * w_offset, viewed);
  3572. }
  3573. void getconsxy(struct vc_data *vc, unsigned char *p)
  3574. {
  3575. p[0] = vc->vc_x;
  3576. p[1] = vc->vc_y;
  3577. }
  3578. void putconsxy(struct vc_data *vc, unsigned char *p)
  3579. {
  3580. hide_cursor(vc);
  3581. gotoxy(vc, p[0], p[1]);
  3582. set_cursor(vc);
  3583. }
  3584. u16 vcs_scr_readw(struct vc_data *vc, const u16 *org)
  3585. {
  3586. if ((unsigned long)org == vc->vc_pos && softcursor_original != -1)
  3587. return softcursor_original;
  3588. return scr_readw(org);
  3589. }
  3590. void vcs_scr_writew(struct vc_data *vc, u16 val, u16 *org)
  3591. {
  3592. scr_writew(val, org);
  3593. if ((unsigned long)org == vc->vc_pos) {
  3594. softcursor_original = -1;
  3595. add_softcursor(vc);
  3596. }
  3597. }
  3598. /*
  3599. * Visible symbols for modules
  3600. */
  3601. EXPORT_SYMBOL(color_table);
  3602. EXPORT_SYMBOL(default_red);
  3603. EXPORT_SYMBOL(default_grn);
  3604. EXPORT_SYMBOL(default_blu);
  3605. EXPORT_SYMBOL(update_region);
  3606. EXPORT_SYMBOL(redraw_screen);
  3607. EXPORT_SYMBOL(vc_resize);
  3608. EXPORT_SYMBOL(vc_lock_resize);
  3609. EXPORT_SYMBOL(fg_console);
  3610. EXPORT_SYMBOL(console_blank_hook);
  3611. EXPORT_SYMBOL(console_blanked);
  3612. EXPORT_SYMBOL(vc_cons);
  3613. #ifndef VT_SINGLE_DRIVER
  3614. EXPORT_SYMBOL(take_over_console);
  3615. EXPORT_SYMBOL(give_up_console);
  3616. #endif