vt.c 99 KB

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