common.c 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793
  1. /*
  2. * security/tomoyo/common.c
  3. *
  4. * Copyright (C) 2005-2011 NTT DATA CORPORATION
  5. */
  6. #include <linux/uaccess.h>
  7. #include <linux/slab.h>
  8. #include <linux/security.h>
  9. #include "common.h"
  10. /* String table for operation mode. */
  11. const char * const tomoyo_mode[TOMOYO_CONFIG_MAX_MODE] = {
  12. [TOMOYO_CONFIG_DISABLED] = "disabled",
  13. [TOMOYO_CONFIG_LEARNING] = "learning",
  14. [TOMOYO_CONFIG_PERMISSIVE] = "permissive",
  15. [TOMOYO_CONFIG_ENFORCING] = "enforcing"
  16. };
  17. /* String table for /sys/kernel/security/tomoyo/profile */
  18. const char * const tomoyo_mac_keywords[TOMOYO_MAX_MAC_INDEX
  19. + TOMOYO_MAX_MAC_CATEGORY_INDEX] = {
  20. /* CONFIG::file group */
  21. [TOMOYO_MAC_FILE_EXECUTE] = "execute",
  22. [TOMOYO_MAC_FILE_OPEN] = "open",
  23. [TOMOYO_MAC_FILE_CREATE] = "create",
  24. [TOMOYO_MAC_FILE_UNLINK] = "unlink",
  25. [TOMOYO_MAC_FILE_GETATTR] = "getattr",
  26. [TOMOYO_MAC_FILE_MKDIR] = "mkdir",
  27. [TOMOYO_MAC_FILE_RMDIR] = "rmdir",
  28. [TOMOYO_MAC_FILE_MKFIFO] = "mkfifo",
  29. [TOMOYO_MAC_FILE_MKSOCK] = "mksock",
  30. [TOMOYO_MAC_FILE_TRUNCATE] = "truncate",
  31. [TOMOYO_MAC_FILE_SYMLINK] = "symlink",
  32. [TOMOYO_MAC_FILE_MKBLOCK] = "mkblock",
  33. [TOMOYO_MAC_FILE_MKCHAR] = "mkchar",
  34. [TOMOYO_MAC_FILE_LINK] = "link",
  35. [TOMOYO_MAC_FILE_RENAME] = "rename",
  36. [TOMOYO_MAC_FILE_CHMOD] = "chmod",
  37. [TOMOYO_MAC_FILE_CHOWN] = "chown",
  38. [TOMOYO_MAC_FILE_CHGRP] = "chgrp",
  39. [TOMOYO_MAC_FILE_IOCTL] = "ioctl",
  40. [TOMOYO_MAC_FILE_CHROOT] = "chroot",
  41. [TOMOYO_MAC_FILE_MOUNT] = "mount",
  42. [TOMOYO_MAC_FILE_UMOUNT] = "unmount",
  43. [TOMOYO_MAC_FILE_PIVOT_ROOT] = "pivot_root",
  44. /* CONFIG::network group */
  45. [TOMOYO_MAC_NETWORK_INET_STREAM_BIND] = "inet_stream_bind",
  46. [TOMOYO_MAC_NETWORK_INET_STREAM_LISTEN] = "inet_stream_listen",
  47. [TOMOYO_MAC_NETWORK_INET_STREAM_CONNECT] = "inet_stream_connect",
  48. [TOMOYO_MAC_NETWORK_INET_DGRAM_BIND] = "inet_dgram_bind",
  49. [TOMOYO_MAC_NETWORK_INET_DGRAM_SEND] = "inet_dgram_send",
  50. [TOMOYO_MAC_NETWORK_INET_RAW_BIND] = "inet_raw_bind",
  51. [TOMOYO_MAC_NETWORK_INET_RAW_SEND] = "inet_raw_send",
  52. [TOMOYO_MAC_NETWORK_UNIX_STREAM_BIND] = "unix_stream_bind",
  53. [TOMOYO_MAC_NETWORK_UNIX_STREAM_LISTEN] = "unix_stream_listen",
  54. [TOMOYO_MAC_NETWORK_UNIX_STREAM_CONNECT] = "unix_stream_connect",
  55. [TOMOYO_MAC_NETWORK_UNIX_DGRAM_BIND] = "unix_dgram_bind",
  56. [TOMOYO_MAC_NETWORK_UNIX_DGRAM_SEND] = "unix_dgram_send",
  57. [TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_BIND] = "unix_seqpacket_bind",
  58. [TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_LISTEN] = "unix_seqpacket_listen",
  59. [TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_CONNECT] = "unix_seqpacket_connect",
  60. /* CONFIG::misc group */
  61. [TOMOYO_MAC_ENVIRON] = "env",
  62. /* CONFIG group */
  63. [TOMOYO_MAX_MAC_INDEX + TOMOYO_MAC_CATEGORY_FILE] = "file",
  64. [TOMOYO_MAX_MAC_INDEX + TOMOYO_MAC_CATEGORY_NETWORK] = "network",
  65. [TOMOYO_MAX_MAC_INDEX + TOMOYO_MAC_CATEGORY_MISC] = "misc",
  66. };
  67. /* String table for conditions. */
  68. const char * const tomoyo_condition_keyword[TOMOYO_MAX_CONDITION_KEYWORD] = {
  69. [TOMOYO_TASK_UID] = "task.uid",
  70. [TOMOYO_TASK_EUID] = "task.euid",
  71. [TOMOYO_TASK_SUID] = "task.suid",
  72. [TOMOYO_TASK_FSUID] = "task.fsuid",
  73. [TOMOYO_TASK_GID] = "task.gid",
  74. [TOMOYO_TASK_EGID] = "task.egid",
  75. [TOMOYO_TASK_SGID] = "task.sgid",
  76. [TOMOYO_TASK_FSGID] = "task.fsgid",
  77. [TOMOYO_TASK_PID] = "task.pid",
  78. [TOMOYO_TASK_PPID] = "task.ppid",
  79. [TOMOYO_EXEC_ARGC] = "exec.argc",
  80. [TOMOYO_EXEC_ENVC] = "exec.envc",
  81. [TOMOYO_TYPE_IS_SOCKET] = "socket",
  82. [TOMOYO_TYPE_IS_SYMLINK] = "symlink",
  83. [TOMOYO_TYPE_IS_FILE] = "file",
  84. [TOMOYO_TYPE_IS_BLOCK_DEV] = "block",
  85. [TOMOYO_TYPE_IS_DIRECTORY] = "directory",
  86. [TOMOYO_TYPE_IS_CHAR_DEV] = "char",
  87. [TOMOYO_TYPE_IS_FIFO] = "fifo",
  88. [TOMOYO_MODE_SETUID] = "setuid",
  89. [TOMOYO_MODE_SETGID] = "setgid",
  90. [TOMOYO_MODE_STICKY] = "sticky",
  91. [TOMOYO_MODE_OWNER_READ] = "owner_read",
  92. [TOMOYO_MODE_OWNER_WRITE] = "owner_write",
  93. [TOMOYO_MODE_OWNER_EXECUTE] = "owner_execute",
  94. [TOMOYO_MODE_GROUP_READ] = "group_read",
  95. [TOMOYO_MODE_GROUP_WRITE] = "group_write",
  96. [TOMOYO_MODE_GROUP_EXECUTE] = "group_execute",
  97. [TOMOYO_MODE_OTHERS_READ] = "others_read",
  98. [TOMOYO_MODE_OTHERS_WRITE] = "others_write",
  99. [TOMOYO_MODE_OTHERS_EXECUTE] = "others_execute",
  100. [TOMOYO_EXEC_REALPATH] = "exec.realpath",
  101. [TOMOYO_SYMLINK_TARGET] = "symlink.target",
  102. [TOMOYO_PATH1_UID] = "path1.uid",
  103. [TOMOYO_PATH1_GID] = "path1.gid",
  104. [TOMOYO_PATH1_INO] = "path1.ino",
  105. [TOMOYO_PATH1_MAJOR] = "path1.major",
  106. [TOMOYO_PATH1_MINOR] = "path1.minor",
  107. [TOMOYO_PATH1_PERM] = "path1.perm",
  108. [TOMOYO_PATH1_TYPE] = "path1.type",
  109. [TOMOYO_PATH1_DEV_MAJOR] = "path1.dev_major",
  110. [TOMOYO_PATH1_DEV_MINOR] = "path1.dev_minor",
  111. [TOMOYO_PATH2_UID] = "path2.uid",
  112. [TOMOYO_PATH2_GID] = "path2.gid",
  113. [TOMOYO_PATH2_INO] = "path2.ino",
  114. [TOMOYO_PATH2_MAJOR] = "path2.major",
  115. [TOMOYO_PATH2_MINOR] = "path2.minor",
  116. [TOMOYO_PATH2_PERM] = "path2.perm",
  117. [TOMOYO_PATH2_TYPE] = "path2.type",
  118. [TOMOYO_PATH2_DEV_MAJOR] = "path2.dev_major",
  119. [TOMOYO_PATH2_DEV_MINOR] = "path2.dev_minor",
  120. [TOMOYO_PATH1_PARENT_UID] = "path1.parent.uid",
  121. [TOMOYO_PATH1_PARENT_GID] = "path1.parent.gid",
  122. [TOMOYO_PATH1_PARENT_INO] = "path1.parent.ino",
  123. [TOMOYO_PATH1_PARENT_PERM] = "path1.parent.perm",
  124. [TOMOYO_PATH2_PARENT_UID] = "path2.parent.uid",
  125. [TOMOYO_PATH2_PARENT_GID] = "path2.parent.gid",
  126. [TOMOYO_PATH2_PARENT_INO] = "path2.parent.ino",
  127. [TOMOYO_PATH2_PARENT_PERM] = "path2.parent.perm",
  128. };
  129. /* String table for PREFERENCE keyword. */
  130. static const char * const tomoyo_pref_keywords[TOMOYO_MAX_PREF] = {
  131. [TOMOYO_PREF_MAX_AUDIT_LOG] = "max_audit_log",
  132. [TOMOYO_PREF_MAX_LEARNING_ENTRY] = "max_learning_entry",
  133. };
  134. /* String table for path operation. */
  135. const char * const tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION] = {
  136. [TOMOYO_TYPE_EXECUTE] = "execute",
  137. [TOMOYO_TYPE_READ] = "read",
  138. [TOMOYO_TYPE_WRITE] = "write",
  139. [TOMOYO_TYPE_APPEND] = "append",
  140. [TOMOYO_TYPE_UNLINK] = "unlink",
  141. [TOMOYO_TYPE_GETATTR] = "getattr",
  142. [TOMOYO_TYPE_RMDIR] = "rmdir",
  143. [TOMOYO_TYPE_TRUNCATE] = "truncate",
  144. [TOMOYO_TYPE_SYMLINK] = "symlink",
  145. [TOMOYO_TYPE_CHROOT] = "chroot",
  146. [TOMOYO_TYPE_UMOUNT] = "unmount",
  147. };
  148. /* String table for socket's operation. */
  149. const char * const tomoyo_socket_keyword[TOMOYO_MAX_NETWORK_OPERATION] = {
  150. [TOMOYO_NETWORK_BIND] = "bind",
  151. [TOMOYO_NETWORK_LISTEN] = "listen",
  152. [TOMOYO_NETWORK_CONNECT] = "connect",
  153. [TOMOYO_NETWORK_SEND] = "send",
  154. };
  155. /* String table for categories. */
  156. static const char * const tomoyo_category_keywords
  157. [TOMOYO_MAX_MAC_CATEGORY_INDEX] = {
  158. [TOMOYO_MAC_CATEGORY_FILE] = "file",
  159. [TOMOYO_MAC_CATEGORY_NETWORK] = "network",
  160. [TOMOYO_MAC_CATEGORY_MISC] = "misc",
  161. };
  162. /* Permit policy management by non-root user? */
  163. static bool tomoyo_manage_by_non_root;
  164. /* Utility functions. */
  165. /**
  166. * tomoyo_yesno - Return "yes" or "no".
  167. *
  168. * @value: Bool value.
  169. */
  170. const char *tomoyo_yesno(const unsigned int value)
  171. {
  172. return value ? "yes" : "no";
  173. }
  174. /**
  175. * tomoyo_addprintf - strncat()-like-snprintf().
  176. *
  177. * @buffer: Buffer to write to. Must be '\0'-terminated.
  178. * @len: Size of @buffer.
  179. * @fmt: The printf()'s format string, followed by parameters.
  180. *
  181. * Returns nothing.
  182. */
  183. static void tomoyo_addprintf(char *buffer, int len, const char *fmt, ...)
  184. {
  185. va_list args;
  186. const int pos = strlen(buffer);
  187. va_start(args, fmt);
  188. vsnprintf(buffer + pos, len - pos - 1, fmt, args);
  189. va_end(args);
  190. }
  191. /**
  192. * tomoyo_flush - Flush queued string to userspace's buffer.
  193. *
  194. * @head: Pointer to "struct tomoyo_io_buffer".
  195. *
  196. * Returns true if all data was flushed, false otherwise.
  197. */
  198. static bool tomoyo_flush(struct tomoyo_io_buffer *head)
  199. {
  200. while (head->r.w_pos) {
  201. const char *w = head->r.w[0];
  202. size_t len = strlen(w);
  203. if (len) {
  204. if (len > head->read_user_buf_avail)
  205. len = head->read_user_buf_avail;
  206. if (!len)
  207. return false;
  208. if (copy_to_user(head->read_user_buf, w, len))
  209. return false;
  210. head->read_user_buf_avail -= len;
  211. head->read_user_buf += len;
  212. w += len;
  213. }
  214. head->r.w[0] = w;
  215. if (*w)
  216. return false;
  217. /* Add '\0' for audit logs and query. */
  218. if (head->poll) {
  219. if (!head->read_user_buf_avail ||
  220. copy_to_user(head->read_user_buf, "", 1))
  221. return false;
  222. head->read_user_buf_avail--;
  223. head->read_user_buf++;
  224. }
  225. head->r.w_pos--;
  226. for (len = 0; len < head->r.w_pos; len++)
  227. head->r.w[len] = head->r.w[len + 1];
  228. }
  229. head->r.avail = 0;
  230. return true;
  231. }
  232. /**
  233. * tomoyo_set_string - Queue string to "struct tomoyo_io_buffer" structure.
  234. *
  235. * @head: Pointer to "struct tomoyo_io_buffer".
  236. * @string: String to print.
  237. *
  238. * Note that @string has to be kept valid until @head is kfree()d.
  239. * This means that char[] allocated on stack memory cannot be passed to
  240. * this function. Use tomoyo_io_printf() for char[] allocated on stack memory.
  241. */
  242. static void tomoyo_set_string(struct tomoyo_io_buffer *head, const char *string)
  243. {
  244. if (head->r.w_pos < TOMOYO_MAX_IO_READ_QUEUE) {
  245. head->r.w[head->r.w_pos++] = string;
  246. tomoyo_flush(head);
  247. } else
  248. WARN_ON(1);
  249. }
  250. static void tomoyo_io_printf(struct tomoyo_io_buffer *head, const char *fmt,
  251. ...) __printf(2, 3);
  252. /**
  253. * tomoyo_io_printf - printf() to "struct tomoyo_io_buffer" structure.
  254. *
  255. * @head: Pointer to "struct tomoyo_io_buffer".
  256. * @fmt: The printf()'s format string, followed by parameters.
  257. */
  258. static void tomoyo_io_printf(struct tomoyo_io_buffer *head, const char *fmt,
  259. ...)
  260. {
  261. va_list args;
  262. size_t len;
  263. size_t pos = head->r.avail;
  264. int size = head->readbuf_size - pos;
  265. if (size <= 0)
  266. return;
  267. va_start(args, fmt);
  268. len = vsnprintf(head->read_buf + pos, size, fmt, args) + 1;
  269. va_end(args);
  270. if (pos + len >= head->readbuf_size) {
  271. WARN_ON(1);
  272. return;
  273. }
  274. head->r.avail += len;
  275. tomoyo_set_string(head, head->read_buf + pos);
  276. }
  277. /**
  278. * tomoyo_set_space - Put a space to "struct tomoyo_io_buffer" structure.
  279. *
  280. * @head: Pointer to "struct tomoyo_io_buffer".
  281. *
  282. * Returns nothing.
  283. */
  284. static void tomoyo_set_space(struct tomoyo_io_buffer *head)
  285. {
  286. tomoyo_set_string(head, " ");
  287. }
  288. /**
  289. * tomoyo_set_lf - Put a line feed to "struct tomoyo_io_buffer" structure.
  290. *
  291. * @head: Pointer to "struct tomoyo_io_buffer".
  292. *
  293. * Returns nothing.
  294. */
  295. static bool tomoyo_set_lf(struct tomoyo_io_buffer *head)
  296. {
  297. tomoyo_set_string(head, "\n");
  298. return !head->r.w_pos;
  299. }
  300. /**
  301. * tomoyo_set_slash - Put a shash to "struct tomoyo_io_buffer" structure.
  302. *
  303. * @head: Pointer to "struct tomoyo_io_buffer".
  304. *
  305. * Returns nothing.
  306. */
  307. static void tomoyo_set_slash(struct tomoyo_io_buffer *head)
  308. {
  309. tomoyo_set_string(head, "/");
  310. }
  311. /* List of namespaces. */
  312. LIST_HEAD(tomoyo_namespace_list);
  313. /* True if namespace other than tomoyo_kernel_namespace is defined. */
  314. static bool tomoyo_namespace_enabled;
  315. /**
  316. * tomoyo_init_policy_namespace - Initialize namespace.
  317. *
  318. * @ns: Pointer to "struct tomoyo_policy_namespace".
  319. *
  320. * Returns nothing.
  321. */
  322. void tomoyo_init_policy_namespace(struct tomoyo_policy_namespace *ns)
  323. {
  324. unsigned int idx;
  325. for (idx = 0; idx < TOMOYO_MAX_ACL_GROUPS; idx++)
  326. INIT_LIST_HEAD(&ns->acl_group[idx]);
  327. for (idx = 0; idx < TOMOYO_MAX_GROUP; idx++)
  328. INIT_LIST_HEAD(&ns->group_list[idx]);
  329. for (idx = 0; idx < TOMOYO_MAX_POLICY; idx++)
  330. INIT_LIST_HEAD(&ns->policy_list[idx]);
  331. ns->profile_version = 20110903;
  332. tomoyo_namespace_enabled = !list_empty(&tomoyo_namespace_list);
  333. list_add_tail_rcu(&ns->namespace_list, &tomoyo_namespace_list);
  334. }
  335. /**
  336. * tomoyo_print_namespace - Print namespace header.
  337. *
  338. * @head: Pointer to "struct tomoyo_io_buffer".
  339. *
  340. * Returns nothing.
  341. */
  342. static void tomoyo_print_namespace(struct tomoyo_io_buffer *head)
  343. {
  344. if (!tomoyo_namespace_enabled)
  345. return;
  346. tomoyo_set_string(head,
  347. container_of(head->r.ns,
  348. struct tomoyo_policy_namespace,
  349. namespace_list)->name);
  350. tomoyo_set_space(head);
  351. }
  352. /**
  353. * tomoyo_print_name_union - Print a tomoyo_name_union.
  354. *
  355. * @head: Pointer to "struct tomoyo_io_buffer".
  356. * @ptr: Pointer to "struct tomoyo_name_union".
  357. */
  358. static void tomoyo_print_name_union(struct tomoyo_io_buffer *head,
  359. const struct tomoyo_name_union *ptr)
  360. {
  361. tomoyo_set_space(head);
  362. if (ptr->group) {
  363. tomoyo_set_string(head, "@");
  364. tomoyo_set_string(head, ptr->group->group_name->name);
  365. } else {
  366. tomoyo_set_string(head, ptr->filename->name);
  367. }
  368. }
  369. /**
  370. * tomoyo_print_name_union_quoted - Print a tomoyo_name_union with a quote.
  371. *
  372. * @head: Pointer to "struct tomoyo_io_buffer".
  373. * @ptr: Pointer to "struct tomoyo_name_union".
  374. *
  375. * Returns nothing.
  376. */
  377. static void tomoyo_print_name_union_quoted(struct tomoyo_io_buffer *head,
  378. const struct tomoyo_name_union *ptr)
  379. {
  380. if (ptr->group) {
  381. tomoyo_set_string(head, "@");
  382. tomoyo_set_string(head, ptr->group->group_name->name);
  383. } else {
  384. tomoyo_set_string(head, "\"");
  385. tomoyo_set_string(head, ptr->filename->name);
  386. tomoyo_set_string(head, "\"");
  387. }
  388. }
  389. /**
  390. * tomoyo_print_number_union_nospace - Print a tomoyo_number_union without a space.
  391. *
  392. * @head: Pointer to "struct tomoyo_io_buffer".
  393. * @ptr: Pointer to "struct tomoyo_number_union".
  394. *
  395. * Returns nothing.
  396. */
  397. static void tomoyo_print_number_union_nospace
  398. (struct tomoyo_io_buffer *head, const struct tomoyo_number_union *ptr)
  399. {
  400. if (ptr->group) {
  401. tomoyo_set_string(head, "@");
  402. tomoyo_set_string(head, ptr->group->group_name->name);
  403. } else {
  404. int i;
  405. unsigned long min = ptr->values[0];
  406. const unsigned long max = ptr->values[1];
  407. u8 min_type = ptr->value_type[0];
  408. const u8 max_type = ptr->value_type[1];
  409. char buffer[128];
  410. buffer[0] = '\0';
  411. for (i = 0; i < 2; i++) {
  412. switch (min_type) {
  413. case TOMOYO_VALUE_TYPE_HEXADECIMAL:
  414. tomoyo_addprintf(buffer, sizeof(buffer),
  415. "0x%lX", min);
  416. break;
  417. case TOMOYO_VALUE_TYPE_OCTAL:
  418. tomoyo_addprintf(buffer, sizeof(buffer),
  419. "0%lo", min);
  420. break;
  421. default:
  422. tomoyo_addprintf(buffer, sizeof(buffer), "%lu",
  423. min);
  424. break;
  425. }
  426. if (min == max && min_type == max_type)
  427. break;
  428. tomoyo_addprintf(buffer, sizeof(buffer), "-");
  429. min_type = max_type;
  430. min = max;
  431. }
  432. tomoyo_io_printf(head, "%s", buffer);
  433. }
  434. }
  435. /**
  436. * tomoyo_print_number_union - Print a tomoyo_number_union.
  437. *
  438. * @head: Pointer to "struct tomoyo_io_buffer".
  439. * @ptr: Pointer to "struct tomoyo_number_union".
  440. *
  441. * Returns nothing.
  442. */
  443. static void tomoyo_print_number_union(struct tomoyo_io_buffer *head,
  444. const struct tomoyo_number_union *ptr)
  445. {
  446. tomoyo_set_space(head);
  447. tomoyo_print_number_union_nospace(head, ptr);
  448. }
  449. /**
  450. * tomoyo_assign_profile - Create a new profile.
  451. *
  452. * @ns: Pointer to "struct tomoyo_policy_namespace".
  453. * @profile: Profile number to create.
  454. *
  455. * Returns pointer to "struct tomoyo_profile" on success, NULL otherwise.
  456. */
  457. static struct tomoyo_profile *tomoyo_assign_profile
  458. (struct tomoyo_policy_namespace *ns, const unsigned int profile)
  459. {
  460. struct tomoyo_profile *ptr;
  461. struct tomoyo_profile *entry;
  462. if (profile >= TOMOYO_MAX_PROFILES)
  463. return NULL;
  464. ptr = ns->profile_ptr[profile];
  465. if (ptr)
  466. return ptr;
  467. entry = kzalloc(sizeof(*entry), GFP_NOFS);
  468. if (mutex_lock_interruptible(&tomoyo_policy_lock))
  469. goto out;
  470. ptr = ns->profile_ptr[profile];
  471. if (!ptr && tomoyo_memory_ok(entry)) {
  472. ptr = entry;
  473. ptr->default_config = TOMOYO_CONFIG_DISABLED |
  474. TOMOYO_CONFIG_WANT_GRANT_LOG |
  475. TOMOYO_CONFIG_WANT_REJECT_LOG;
  476. memset(ptr->config, TOMOYO_CONFIG_USE_DEFAULT,
  477. sizeof(ptr->config));
  478. ptr->pref[TOMOYO_PREF_MAX_AUDIT_LOG] =
  479. CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG;
  480. ptr->pref[TOMOYO_PREF_MAX_LEARNING_ENTRY] =
  481. CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY;
  482. mb(); /* Avoid out-of-order execution. */
  483. ns->profile_ptr[profile] = ptr;
  484. entry = NULL;
  485. }
  486. mutex_unlock(&tomoyo_policy_lock);
  487. out:
  488. kfree(entry);
  489. return ptr;
  490. }
  491. /**
  492. * tomoyo_profile - Find a profile.
  493. *
  494. * @ns: Pointer to "struct tomoyo_policy_namespace".
  495. * @profile: Profile number to find.
  496. *
  497. * Returns pointer to "struct tomoyo_profile".
  498. */
  499. struct tomoyo_profile *tomoyo_profile(const struct tomoyo_policy_namespace *ns,
  500. const u8 profile)
  501. {
  502. static struct tomoyo_profile tomoyo_null_profile;
  503. struct tomoyo_profile *ptr = ns->profile_ptr[profile];
  504. if (!ptr)
  505. ptr = &tomoyo_null_profile;
  506. return ptr;
  507. }
  508. /**
  509. * tomoyo_find_yesno - Find values for specified keyword.
  510. *
  511. * @string: String to check.
  512. * @find: Name of keyword.
  513. *
  514. * Returns 1 if "@find=yes" was found, 0 if "@find=no" was found, -1 otherwise.
  515. */
  516. static s8 tomoyo_find_yesno(const char *string, const char *find)
  517. {
  518. const char *cp = strstr(string, find);
  519. if (cp) {
  520. cp += strlen(find);
  521. if (!strncmp(cp, "=yes", 4))
  522. return 1;
  523. else if (!strncmp(cp, "=no", 3))
  524. return 0;
  525. }
  526. return -1;
  527. }
  528. /**
  529. * tomoyo_set_uint - Set value for specified preference.
  530. *
  531. * @i: Pointer to "unsigned int".
  532. * @string: String to check.
  533. * @find: Name of keyword.
  534. *
  535. * Returns nothing.
  536. */
  537. static void tomoyo_set_uint(unsigned int *i, const char *string,
  538. const char *find)
  539. {
  540. const char *cp = strstr(string, find);
  541. if (cp)
  542. sscanf(cp + strlen(find), "=%u", i);
  543. }
  544. /**
  545. * tomoyo_set_mode - Set mode for specified profile.
  546. *
  547. * @name: Name of functionality.
  548. * @value: Mode for @name.
  549. * @profile: Pointer to "struct tomoyo_profile".
  550. *
  551. * Returns 0 on success, negative value otherwise.
  552. */
  553. static int tomoyo_set_mode(char *name, const char *value,
  554. struct tomoyo_profile *profile)
  555. {
  556. u8 i;
  557. u8 config;
  558. if (!strcmp(name, "CONFIG")) {
  559. i = TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX;
  560. config = profile->default_config;
  561. } else if (tomoyo_str_starts(&name, "CONFIG::")) {
  562. config = 0;
  563. for (i = 0; i < TOMOYO_MAX_MAC_INDEX
  564. + TOMOYO_MAX_MAC_CATEGORY_INDEX; i++) {
  565. int len = 0;
  566. if (i < TOMOYO_MAX_MAC_INDEX) {
  567. const u8 c = tomoyo_index2category[i];
  568. const char *category =
  569. tomoyo_category_keywords[c];
  570. len = strlen(category);
  571. if (strncmp(name, category, len) ||
  572. name[len++] != ':' || name[len++] != ':')
  573. continue;
  574. }
  575. if (strcmp(name + len, tomoyo_mac_keywords[i]))
  576. continue;
  577. config = profile->config[i];
  578. break;
  579. }
  580. if (i == TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX)
  581. return -EINVAL;
  582. } else {
  583. return -EINVAL;
  584. }
  585. if (strstr(value, "use_default")) {
  586. config = TOMOYO_CONFIG_USE_DEFAULT;
  587. } else {
  588. u8 mode;
  589. for (mode = 0; mode < 4; mode++)
  590. if (strstr(value, tomoyo_mode[mode]))
  591. /*
  592. * Update lower 3 bits in order to distinguish
  593. * 'config' from 'TOMOYO_CONFIG_USE_DEAFULT'.
  594. */
  595. config = (config & ~7) | mode;
  596. if (config != TOMOYO_CONFIG_USE_DEFAULT) {
  597. switch (tomoyo_find_yesno(value, "grant_log")) {
  598. case 1:
  599. config |= TOMOYO_CONFIG_WANT_GRANT_LOG;
  600. break;
  601. case 0:
  602. config &= ~TOMOYO_CONFIG_WANT_GRANT_LOG;
  603. break;
  604. }
  605. switch (tomoyo_find_yesno(value, "reject_log")) {
  606. case 1:
  607. config |= TOMOYO_CONFIG_WANT_REJECT_LOG;
  608. break;
  609. case 0:
  610. config &= ~TOMOYO_CONFIG_WANT_REJECT_LOG;
  611. break;
  612. }
  613. }
  614. }
  615. if (i < TOMOYO_MAX_MAC_INDEX + TOMOYO_MAX_MAC_CATEGORY_INDEX)
  616. profile->config[i] = config;
  617. else if (config != TOMOYO_CONFIG_USE_DEFAULT)
  618. profile->default_config = config;
  619. return 0;
  620. }
  621. /**
  622. * tomoyo_write_profile - Write profile table.
  623. *
  624. * @head: Pointer to "struct tomoyo_io_buffer".
  625. *
  626. * Returns 0 on success, negative value otherwise.
  627. */
  628. static int tomoyo_write_profile(struct tomoyo_io_buffer *head)
  629. {
  630. char *data = head->write_buf;
  631. unsigned int i;
  632. char *cp;
  633. struct tomoyo_profile *profile;
  634. if (sscanf(data, "PROFILE_VERSION=%u", &head->w.ns->profile_version)
  635. == 1)
  636. return 0;
  637. i = simple_strtoul(data, &cp, 10);
  638. if (*cp != '-')
  639. return -EINVAL;
  640. data = cp + 1;
  641. profile = tomoyo_assign_profile(head->w.ns, i);
  642. if (!profile)
  643. return -EINVAL;
  644. cp = strchr(data, '=');
  645. if (!cp)
  646. return -EINVAL;
  647. *cp++ = '\0';
  648. if (!strcmp(data, "COMMENT")) {
  649. static DEFINE_SPINLOCK(lock);
  650. const struct tomoyo_path_info *new_comment
  651. = tomoyo_get_name(cp);
  652. const struct tomoyo_path_info *old_comment;
  653. if (!new_comment)
  654. return -ENOMEM;
  655. spin_lock(&lock);
  656. old_comment = profile->comment;
  657. profile->comment = new_comment;
  658. spin_unlock(&lock);
  659. tomoyo_put_name(old_comment);
  660. return 0;
  661. }
  662. if (!strcmp(data, "PREFERENCE")) {
  663. for (i = 0; i < TOMOYO_MAX_PREF; i++)
  664. tomoyo_set_uint(&profile->pref[i], cp,
  665. tomoyo_pref_keywords[i]);
  666. return 0;
  667. }
  668. return tomoyo_set_mode(data, cp, profile);
  669. }
  670. /**
  671. * tomoyo_print_config - Print mode for specified functionality.
  672. *
  673. * @head: Pointer to "struct tomoyo_io_buffer".
  674. * @config: Mode for that functionality.
  675. *
  676. * Returns nothing.
  677. *
  678. * Caller prints functionality's name.
  679. */
  680. static void tomoyo_print_config(struct tomoyo_io_buffer *head, const u8 config)
  681. {
  682. tomoyo_io_printf(head, "={ mode=%s grant_log=%s reject_log=%s }\n",
  683. tomoyo_mode[config & 3],
  684. tomoyo_yesno(config & TOMOYO_CONFIG_WANT_GRANT_LOG),
  685. tomoyo_yesno(config & TOMOYO_CONFIG_WANT_REJECT_LOG));
  686. }
  687. /**
  688. * tomoyo_read_profile - Read profile table.
  689. *
  690. * @head: Pointer to "struct tomoyo_io_buffer".
  691. *
  692. * Returns nothing.
  693. */
  694. static void tomoyo_read_profile(struct tomoyo_io_buffer *head)
  695. {
  696. u8 index;
  697. struct tomoyo_policy_namespace *ns =
  698. container_of(head->r.ns, typeof(*ns), namespace_list);
  699. const struct tomoyo_profile *profile;
  700. if (head->r.eof)
  701. return;
  702. next:
  703. index = head->r.index;
  704. profile = ns->profile_ptr[index];
  705. switch (head->r.step) {
  706. case 0:
  707. tomoyo_print_namespace(head);
  708. tomoyo_io_printf(head, "PROFILE_VERSION=%u\n",
  709. ns->profile_version);
  710. head->r.step++;
  711. break;
  712. case 1:
  713. for ( ; head->r.index < TOMOYO_MAX_PROFILES;
  714. head->r.index++)
  715. if (ns->profile_ptr[head->r.index])
  716. break;
  717. if (head->r.index == TOMOYO_MAX_PROFILES) {
  718. head->r.eof = true;
  719. return;
  720. }
  721. head->r.step++;
  722. break;
  723. case 2:
  724. {
  725. u8 i;
  726. const struct tomoyo_path_info *comment =
  727. profile->comment;
  728. tomoyo_print_namespace(head);
  729. tomoyo_io_printf(head, "%u-COMMENT=", index);
  730. tomoyo_set_string(head, comment ? comment->name : "");
  731. tomoyo_set_lf(head);
  732. tomoyo_print_namespace(head);
  733. tomoyo_io_printf(head, "%u-PREFERENCE={ ", index);
  734. for (i = 0; i < TOMOYO_MAX_PREF; i++)
  735. tomoyo_io_printf(head, "%s=%u ",
  736. tomoyo_pref_keywords[i],
  737. profile->pref[i]);
  738. tomoyo_set_string(head, "}\n");
  739. head->r.step++;
  740. }
  741. break;
  742. case 3:
  743. {
  744. tomoyo_print_namespace(head);
  745. tomoyo_io_printf(head, "%u-%s", index, "CONFIG");
  746. tomoyo_print_config(head, profile->default_config);
  747. head->r.bit = 0;
  748. head->r.step++;
  749. }
  750. break;
  751. case 4:
  752. for ( ; head->r.bit < TOMOYO_MAX_MAC_INDEX
  753. + TOMOYO_MAX_MAC_CATEGORY_INDEX; head->r.bit++) {
  754. const u8 i = head->r.bit;
  755. const u8 config = profile->config[i];
  756. if (config == TOMOYO_CONFIG_USE_DEFAULT)
  757. continue;
  758. tomoyo_print_namespace(head);
  759. if (i < TOMOYO_MAX_MAC_INDEX)
  760. tomoyo_io_printf(head, "%u-CONFIG::%s::%s",
  761. index,
  762. tomoyo_category_keywords
  763. [tomoyo_index2category[i]],
  764. tomoyo_mac_keywords[i]);
  765. else
  766. tomoyo_io_printf(head, "%u-CONFIG::%s", index,
  767. tomoyo_mac_keywords[i]);
  768. tomoyo_print_config(head, config);
  769. head->r.bit++;
  770. break;
  771. }
  772. if (head->r.bit == TOMOYO_MAX_MAC_INDEX
  773. + TOMOYO_MAX_MAC_CATEGORY_INDEX) {
  774. head->r.index++;
  775. head->r.step = 1;
  776. }
  777. break;
  778. }
  779. if (tomoyo_flush(head))
  780. goto next;
  781. }
  782. /**
  783. * tomoyo_same_manager - Check for duplicated "struct tomoyo_manager" entry.
  784. *
  785. * @a: Pointer to "struct tomoyo_acl_head".
  786. * @b: Pointer to "struct tomoyo_acl_head".
  787. *
  788. * Returns true if @a == @b, false otherwise.
  789. */
  790. static bool tomoyo_same_manager(const struct tomoyo_acl_head *a,
  791. const struct tomoyo_acl_head *b)
  792. {
  793. return container_of(a, struct tomoyo_manager, head)->manager ==
  794. container_of(b, struct tomoyo_manager, head)->manager;
  795. }
  796. /**
  797. * tomoyo_update_manager_entry - Add a manager entry.
  798. *
  799. * @manager: The path to manager or the domainnamme.
  800. * @is_delete: True if it is a delete request.
  801. *
  802. * Returns 0 on success, negative value otherwise.
  803. *
  804. * Caller holds tomoyo_read_lock().
  805. */
  806. static int tomoyo_update_manager_entry(const char *manager,
  807. const bool is_delete)
  808. {
  809. struct tomoyo_manager e = { };
  810. struct tomoyo_acl_param param = {
  811. /* .ns = &tomoyo_kernel_namespace, */
  812. .is_delete = is_delete,
  813. .list = &tomoyo_kernel_namespace.
  814. policy_list[TOMOYO_ID_MANAGER],
  815. };
  816. int error = is_delete ? -ENOENT : -ENOMEM;
  817. if (tomoyo_domain_def(manager)) {
  818. if (!tomoyo_correct_domain(manager))
  819. return -EINVAL;
  820. e.is_domain = true;
  821. } else {
  822. if (!tomoyo_correct_path(manager))
  823. return -EINVAL;
  824. }
  825. e.manager = tomoyo_get_name(manager);
  826. if (e.manager) {
  827. error = tomoyo_update_policy(&e.head, sizeof(e), &param,
  828. tomoyo_same_manager);
  829. tomoyo_put_name(e.manager);
  830. }
  831. return error;
  832. }
  833. /**
  834. * tomoyo_write_manager - Write manager policy.
  835. *
  836. * @head: Pointer to "struct tomoyo_io_buffer".
  837. *
  838. * Returns 0 on success, negative value otherwise.
  839. *
  840. * Caller holds tomoyo_read_lock().
  841. */
  842. static int tomoyo_write_manager(struct tomoyo_io_buffer *head)
  843. {
  844. char *data = head->write_buf;
  845. if (!strcmp(data, "manage_by_non_root")) {
  846. tomoyo_manage_by_non_root = !head->w.is_delete;
  847. return 0;
  848. }
  849. return tomoyo_update_manager_entry(data, head->w.is_delete);
  850. }
  851. /**
  852. * tomoyo_read_manager - Read manager policy.
  853. *
  854. * @head: Pointer to "struct tomoyo_io_buffer".
  855. *
  856. * Caller holds tomoyo_read_lock().
  857. */
  858. static void tomoyo_read_manager(struct tomoyo_io_buffer *head)
  859. {
  860. if (head->r.eof)
  861. return;
  862. list_for_each_cookie(head->r.acl, &tomoyo_kernel_namespace.
  863. policy_list[TOMOYO_ID_MANAGER]) {
  864. struct tomoyo_manager *ptr =
  865. list_entry(head->r.acl, typeof(*ptr), head.list);
  866. if (ptr->head.is_deleted)
  867. continue;
  868. if (!tomoyo_flush(head))
  869. return;
  870. tomoyo_set_string(head, ptr->manager->name);
  871. tomoyo_set_lf(head);
  872. }
  873. head->r.eof = true;
  874. }
  875. /**
  876. * tomoyo_manager - Check whether the current process is a policy manager.
  877. *
  878. * Returns true if the current process is permitted to modify policy
  879. * via /sys/kernel/security/tomoyo/ interface.
  880. *
  881. * Caller holds tomoyo_read_lock().
  882. */
  883. static bool tomoyo_manager(void)
  884. {
  885. struct tomoyo_manager *ptr;
  886. const char *exe;
  887. const struct task_struct *task = current;
  888. const struct tomoyo_path_info *domainname = tomoyo_domain()->domainname;
  889. bool found = false;
  890. if (!tomoyo_policy_loaded)
  891. return true;
  892. if (!tomoyo_manage_by_non_root && (task->cred->uid || task->cred->euid))
  893. return false;
  894. list_for_each_entry_rcu(ptr, &tomoyo_kernel_namespace.
  895. policy_list[TOMOYO_ID_MANAGER], head.list) {
  896. if (!ptr->head.is_deleted && ptr->is_domain
  897. && !tomoyo_pathcmp(domainname, ptr->manager)) {
  898. found = true;
  899. break;
  900. }
  901. }
  902. if (found)
  903. return true;
  904. exe = tomoyo_get_exe();
  905. if (!exe)
  906. return false;
  907. list_for_each_entry_rcu(ptr, &tomoyo_kernel_namespace.
  908. policy_list[TOMOYO_ID_MANAGER], head.list) {
  909. if (!ptr->head.is_deleted && !ptr->is_domain
  910. && !strcmp(exe, ptr->manager->name)) {
  911. found = true;
  912. break;
  913. }
  914. }
  915. if (!found) { /* Reduce error messages. */
  916. static pid_t last_pid;
  917. const pid_t pid = current->pid;
  918. if (last_pid != pid) {
  919. printk(KERN_WARNING "%s ( %s ) is not permitted to "
  920. "update policies.\n", domainname->name, exe);
  921. last_pid = pid;
  922. }
  923. }
  924. kfree(exe);
  925. return found;
  926. }
  927. /**
  928. * tomoyo_select_domain - Parse select command.
  929. *
  930. * @head: Pointer to "struct tomoyo_io_buffer".
  931. * @data: String to parse.
  932. *
  933. * Returns true on success, false otherwise.
  934. *
  935. * Caller holds tomoyo_read_lock().
  936. */
  937. static bool tomoyo_select_domain(struct tomoyo_io_buffer *head,
  938. const char *data)
  939. {
  940. unsigned int pid;
  941. struct tomoyo_domain_info *domain = NULL;
  942. bool global_pid = false;
  943. if (strncmp(data, "select ", 7))
  944. return false;
  945. data += 7;
  946. if (sscanf(data, "pid=%u", &pid) == 1 ||
  947. (global_pid = true, sscanf(data, "global-pid=%u", &pid) == 1)) {
  948. struct task_struct *p;
  949. rcu_read_lock();
  950. if (global_pid)
  951. p = find_task_by_pid_ns(pid, &init_pid_ns);
  952. else
  953. p = find_task_by_vpid(pid);
  954. if (p)
  955. domain = tomoyo_real_domain(p);
  956. rcu_read_unlock();
  957. } else if (!strncmp(data, "domain=", 7)) {
  958. if (tomoyo_domain_def(data + 7))
  959. domain = tomoyo_find_domain(data + 7);
  960. } else
  961. return false;
  962. head->w.domain = domain;
  963. /* Accessing read_buf is safe because head->io_sem is held. */
  964. if (!head->read_buf)
  965. return true; /* Do nothing if open(O_WRONLY). */
  966. memset(&head->r, 0, sizeof(head->r));
  967. head->r.print_this_domain_only = true;
  968. if (domain)
  969. head->r.domain = &domain->list;
  970. else
  971. head->r.eof = 1;
  972. tomoyo_io_printf(head, "# select %s\n", data);
  973. if (domain && domain->is_deleted)
  974. tomoyo_io_printf(head, "# This is a deleted domain.\n");
  975. return true;
  976. }
  977. /**
  978. * tomoyo_same_task_acl - Check for duplicated "struct tomoyo_task_acl" entry.
  979. *
  980. * @a: Pointer to "struct tomoyo_acl_info".
  981. * @b: Pointer to "struct tomoyo_acl_info".
  982. *
  983. * Returns true if @a == @b, false otherwise.
  984. */
  985. static bool tomoyo_same_task_acl(const struct tomoyo_acl_info *a,
  986. const struct tomoyo_acl_info *b)
  987. {
  988. const struct tomoyo_task_acl *p1 = container_of(a, typeof(*p1), head);
  989. const struct tomoyo_task_acl *p2 = container_of(b, typeof(*p2), head);
  990. return p1->domainname == p2->domainname;
  991. }
  992. /**
  993. * tomoyo_write_task - Update task related list.
  994. *
  995. * @param: Pointer to "struct tomoyo_acl_param".
  996. *
  997. * Returns 0 on success, negative value otherwise.
  998. *
  999. * Caller holds tomoyo_read_lock().
  1000. */
  1001. static int tomoyo_write_task(struct tomoyo_acl_param *param)
  1002. {
  1003. int error = -EINVAL;
  1004. if (tomoyo_str_starts(&param->data, "manual_domain_transition ")) {
  1005. struct tomoyo_task_acl e = {
  1006. .head.type = TOMOYO_TYPE_MANUAL_TASK_ACL,
  1007. .domainname = tomoyo_get_domainname(param),
  1008. };
  1009. if (e.domainname)
  1010. error = tomoyo_update_domain(&e.head, sizeof(e), param,
  1011. tomoyo_same_task_acl,
  1012. NULL);
  1013. tomoyo_put_name(e.domainname);
  1014. }
  1015. return error;
  1016. }
  1017. /**
  1018. * tomoyo_delete_domain - Delete a domain.
  1019. *
  1020. * @domainname: The name of domain.
  1021. *
  1022. * Returns 0.
  1023. *
  1024. * Caller holds tomoyo_read_lock().
  1025. */
  1026. static int tomoyo_delete_domain(char *domainname)
  1027. {
  1028. struct tomoyo_domain_info *domain;
  1029. struct tomoyo_path_info name;
  1030. name.name = domainname;
  1031. tomoyo_fill_path_info(&name);
  1032. if (mutex_lock_interruptible(&tomoyo_policy_lock))
  1033. return 0;
  1034. /* Is there an active domain? */
  1035. list_for_each_entry_rcu(domain, &tomoyo_domain_list, list) {
  1036. /* Never delete tomoyo_kernel_domain */
  1037. if (domain == &tomoyo_kernel_domain)
  1038. continue;
  1039. if (domain->is_deleted ||
  1040. tomoyo_pathcmp(domain->domainname, &name))
  1041. continue;
  1042. domain->is_deleted = true;
  1043. break;
  1044. }
  1045. mutex_unlock(&tomoyo_policy_lock);
  1046. return 0;
  1047. }
  1048. /**
  1049. * tomoyo_write_domain2 - Write domain policy.
  1050. *
  1051. * @ns: Pointer to "struct tomoyo_policy_namespace".
  1052. * @list: Pointer to "struct list_head".
  1053. * @data: Policy to be interpreted.
  1054. * @is_delete: True if it is a delete request.
  1055. *
  1056. * Returns 0 on success, negative value otherwise.
  1057. *
  1058. * Caller holds tomoyo_read_lock().
  1059. */
  1060. static int tomoyo_write_domain2(struct tomoyo_policy_namespace *ns,
  1061. struct list_head *list, char *data,
  1062. const bool is_delete)
  1063. {
  1064. struct tomoyo_acl_param param = {
  1065. .ns = ns,
  1066. .list = list,
  1067. .data = data,
  1068. .is_delete = is_delete,
  1069. };
  1070. static const struct {
  1071. const char *keyword;
  1072. int (*write) (struct tomoyo_acl_param *);
  1073. } tomoyo_callback[5] = {
  1074. { "file ", tomoyo_write_file },
  1075. { "network inet ", tomoyo_write_inet_network },
  1076. { "network unix ", tomoyo_write_unix_network },
  1077. { "misc ", tomoyo_write_misc },
  1078. { "task ", tomoyo_write_task },
  1079. };
  1080. u8 i;
  1081. for (i = 0; i < ARRAY_SIZE(tomoyo_callback); i++) {
  1082. if (!tomoyo_str_starts(&param.data,
  1083. tomoyo_callback[i].keyword))
  1084. continue;
  1085. return tomoyo_callback[i].write(&param);
  1086. }
  1087. return -EINVAL;
  1088. }
  1089. /* String table for domain flags. */
  1090. const char * const tomoyo_dif[TOMOYO_MAX_DOMAIN_INFO_FLAGS] = {
  1091. [TOMOYO_DIF_QUOTA_WARNED] = "quota_exceeded\n",
  1092. [TOMOYO_DIF_TRANSITION_FAILED] = "transition_failed\n",
  1093. };
  1094. /**
  1095. * tomoyo_write_domain - Write domain policy.
  1096. *
  1097. * @head: Pointer to "struct tomoyo_io_buffer".
  1098. *
  1099. * Returns 0 on success, negative value otherwise.
  1100. *
  1101. * Caller holds tomoyo_read_lock().
  1102. */
  1103. static int tomoyo_write_domain(struct tomoyo_io_buffer *head)
  1104. {
  1105. char *data = head->write_buf;
  1106. struct tomoyo_policy_namespace *ns;
  1107. struct tomoyo_domain_info *domain = head->w.domain;
  1108. const bool is_delete = head->w.is_delete;
  1109. bool is_select = !is_delete && tomoyo_str_starts(&data, "select ");
  1110. unsigned int profile;
  1111. if (*data == '<') {
  1112. domain = NULL;
  1113. if (is_delete)
  1114. tomoyo_delete_domain(data);
  1115. else if (is_select)
  1116. domain = tomoyo_find_domain(data);
  1117. else
  1118. domain = tomoyo_assign_domain(data, false);
  1119. head->w.domain = domain;
  1120. return 0;
  1121. }
  1122. if (!domain)
  1123. return -EINVAL;
  1124. ns = domain->ns;
  1125. if (sscanf(data, "use_profile %u", &profile) == 1
  1126. && profile < TOMOYO_MAX_PROFILES) {
  1127. if (!tomoyo_policy_loaded || ns->profile_ptr[profile])
  1128. domain->profile = (u8) profile;
  1129. return 0;
  1130. }
  1131. if (sscanf(data, "use_group %u\n", &profile) == 1
  1132. && profile < TOMOYO_MAX_ACL_GROUPS) {
  1133. if (!is_delete)
  1134. domain->group = (u8) profile;
  1135. return 0;
  1136. }
  1137. for (profile = 0; profile < TOMOYO_MAX_DOMAIN_INFO_FLAGS; profile++) {
  1138. const char *cp = tomoyo_dif[profile];
  1139. if (strncmp(data, cp, strlen(cp) - 1))
  1140. continue;
  1141. domain->flags[profile] = !is_delete;
  1142. return 0;
  1143. }
  1144. return tomoyo_write_domain2(ns, &domain->acl_info_list, data,
  1145. is_delete);
  1146. }
  1147. /**
  1148. * tomoyo_print_condition - Print condition part.
  1149. *
  1150. * @head: Pointer to "struct tomoyo_io_buffer".
  1151. * @cond: Pointer to "struct tomoyo_condition".
  1152. *
  1153. * Returns true on success, false otherwise.
  1154. */
  1155. static bool tomoyo_print_condition(struct tomoyo_io_buffer *head,
  1156. const struct tomoyo_condition *cond)
  1157. {
  1158. switch (head->r.cond_step) {
  1159. case 0:
  1160. head->r.cond_index = 0;
  1161. head->r.cond_step++;
  1162. if (cond->transit) {
  1163. tomoyo_set_space(head);
  1164. tomoyo_set_string(head, cond->transit->name);
  1165. }
  1166. /* fall through */
  1167. case 1:
  1168. {
  1169. const u16 condc = cond->condc;
  1170. const struct tomoyo_condition_element *condp =
  1171. (typeof(condp)) (cond + 1);
  1172. const struct tomoyo_number_union *numbers_p =
  1173. (typeof(numbers_p)) (condp + condc);
  1174. const struct tomoyo_name_union *names_p =
  1175. (typeof(names_p))
  1176. (numbers_p + cond->numbers_count);
  1177. const struct tomoyo_argv *argv =
  1178. (typeof(argv)) (names_p + cond->names_count);
  1179. const struct tomoyo_envp *envp =
  1180. (typeof(envp)) (argv + cond->argc);
  1181. u16 skip;
  1182. for (skip = 0; skip < head->r.cond_index; skip++) {
  1183. const u8 left = condp->left;
  1184. const u8 right = condp->right;
  1185. condp++;
  1186. switch (left) {
  1187. case TOMOYO_ARGV_ENTRY:
  1188. argv++;
  1189. continue;
  1190. case TOMOYO_ENVP_ENTRY:
  1191. envp++;
  1192. continue;
  1193. case TOMOYO_NUMBER_UNION:
  1194. numbers_p++;
  1195. break;
  1196. }
  1197. switch (right) {
  1198. case TOMOYO_NAME_UNION:
  1199. names_p++;
  1200. break;
  1201. case TOMOYO_NUMBER_UNION:
  1202. numbers_p++;
  1203. break;
  1204. }
  1205. }
  1206. while (head->r.cond_index < condc) {
  1207. const u8 match = condp->equals;
  1208. const u8 left = condp->left;
  1209. const u8 right = condp->right;
  1210. if (!tomoyo_flush(head))
  1211. return false;
  1212. condp++;
  1213. head->r.cond_index++;
  1214. tomoyo_set_space(head);
  1215. switch (left) {
  1216. case TOMOYO_ARGV_ENTRY:
  1217. tomoyo_io_printf(head,
  1218. "exec.argv[%lu]%s=\"",
  1219. argv->index, argv->
  1220. is_not ? "!" : "");
  1221. tomoyo_set_string(head,
  1222. argv->value->name);
  1223. tomoyo_set_string(head, "\"");
  1224. argv++;
  1225. continue;
  1226. case TOMOYO_ENVP_ENTRY:
  1227. tomoyo_set_string(head,
  1228. "exec.envp[\"");
  1229. tomoyo_set_string(head,
  1230. envp->name->name);
  1231. tomoyo_io_printf(head, "\"]%s=", envp->
  1232. is_not ? "!" : "");
  1233. if (envp->value) {
  1234. tomoyo_set_string(head, "\"");
  1235. tomoyo_set_string(head, envp->
  1236. value->name);
  1237. tomoyo_set_string(head, "\"");
  1238. } else {
  1239. tomoyo_set_string(head,
  1240. "NULL");
  1241. }
  1242. envp++;
  1243. continue;
  1244. case TOMOYO_NUMBER_UNION:
  1245. tomoyo_print_number_union_nospace
  1246. (head, numbers_p++);
  1247. break;
  1248. default:
  1249. tomoyo_set_string(head,
  1250. tomoyo_condition_keyword[left]);
  1251. break;
  1252. }
  1253. tomoyo_set_string(head, match ? "=" : "!=");
  1254. switch (right) {
  1255. case TOMOYO_NAME_UNION:
  1256. tomoyo_print_name_union_quoted
  1257. (head, names_p++);
  1258. break;
  1259. case TOMOYO_NUMBER_UNION:
  1260. tomoyo_print_number_union_nospace
  1261. (head, numbers_p++);
  1262. break;
  1263. default:
  1264. tomoyo_set_string(head,
  1265. tomoyo_condition_keyword[right]);
  1266. break;
  1267. }
  1268. }
  1269. }
  1270. head->r.cond_step++;
  1271. /* fall through */
  1272. case 2:
  1273. if (!tomoyo_flush(head))
  1274. break;
  1275. head->r.cond_step++;
  1276. /* fall through */
  1277. case 3:
  1278. if (cond->grant_log != TOMOYO_GRANTLOG_AUTO)
  1279. tomoyo_io_printf(head, " grant_log=%s",
  1280. tomoyo_yesno(cond->grant_log ==
  1281. TOMOYO_GRANTLOG_YES));
  1282. tomoyo_set_lf(head);
  1283. return true;
  1284. }
  1285. return false;
  1286. }
  1287. /**
  1288. * tomoyo_set_group - Print "acl_group " header keyword and category name.
  1289. *
  1290. * @head: Pointer to "struct tomoyo_io_buffer".
  1291. * @category: Category name.
  1292. *
  1293. * Returns nothing.
  1294. */
  1295. static void tomoyo_set_group(struct tomoyo_io_buffer *head,
  1296. const char *category)
  1297. {
  1298. if (head->type == TOMOYO_EXCEPTIONPOLICY) {
  1299. tomoyo_print_namespace(head);
  1300. tomoyo_io_printf(head, "acl_group %u ",
  1301. head->r.acl_group_index);
  1302. }
  1303. tomoyo_set_string(head, category);
  1304. }
  1305. /**
  1306. * tomoyo_print_entry - Print an ACL entry.
  1307. *
  1308. * @head: Pointer to "struct tomoyo_io_buffer".
  1309. * @acl: Pointer to an ACL entry.
  1310. *
  1311. * Returns true on success, false otherwise.
  1312. */
  1313. static bool tomoyo_print_entry(struct tomoyo_io_buffer *head,
  1314. struct tomoyo_acl_info *acl)
  1315. {
  1316. const u8 acl_type = acl->type;
  1317. bool first = true;
  1318. u8 bit;
  1319. if (head->r.print_cond_part)
  1320. goto print_cond_part;
  1321. if (acl->is_deleted)
  1322. return true;
  1323. if (!tomoyo_flush(head))
  1324. return false;
  1325. else if (acl_type == TOMOYO_TYPE_PATH_ACL) {
  1326. struct tomoyo_path_acl *ptr =
  1327. container_of(acl, typeof(*ptr), head);
  1328. const u16 perm = ptr->perm;
  1329. for (bit = 0; bit < TOMOYO_MAX_PATH_OPERATION; bit++) {
  1330. if (!(perm & (1 << bit)))
  1331. continue;
  1332. if (head->r.print_transition_related_only &&
  1333. bit != TOMOYO_TYPE_EXECUTE)
  1334. continue;
  1335. if (first) {
  1336. tomoyo_set_group(head, "file ");
  1337. first = false;
  1338. } else {
  1339. tomoyo_set_slash(head);
  1340. }
  1341. tomoyo_set_string(head, tomoyo_path_keyword[bit]);
  1342. }
  1343. if (first)
  1344. return true;
  1345. tomoyo_print_name_union(head, &ptr->name);
  1346. } else if (acl_type == TOMOYO_TYPE_MANUAL_TASK_ACL) {
  1347. struct tomoyo_task_acl *ptr =
  1348. container_of(acl, typeof(*ptr), head);
  1349. tomoyo_set_group(head, "task ");
  1350. tomoyo_set_string(head, "manual_domain_transition ");
  1351. tomoyo_set_string(head, ptr->domainname->name);
  1352. } else if (head->r.print_transition_related_only) {
  1353. return true;
  1354. } else if (acl_type == TOMOYO_TYPE_PATH2_ACL) {
  1355. struct tomoyo_path2_acl *ptr =
  1356. container_of(acl, typeof(*ptr), head);
  1357. const u8 perm = ptr->perm;
  1358. for (bit = 0; bit < TOMOYO_MAX_PATH2_OPERATION; bit++) {
  1359. if (!(perm & (1 << bit)))
  1360. continue;
  1361. if (first) {
  1362. tomoyo_set_group(head, "file ");
  1363. first = false;
  1364. } else {
  1365. tomoyo_set_slash(head);
  1366. }
  1367. tomoyo_set_string(head, tomoyo_mac_keywords
  1368. [tomoyo_pp2mac[bit]]);
  1369. }
  1370. if (first)
  1371. return true;
  1372. tomoyo_print_name_union(head, &ptr->name1);
  1373. tomoyo_print_name_union(head, &ptr->name2);
  1374. } else if (acl_type == TOMOYO_TYPE_PATH_NUMBER_ACL) {
  1375. struct tomoyo_path_number_acl *ptr =
  1376. container_of(acl, typeof(*ptr), head);
  1377. const u8 perm = ptr->perm;
  1378. for (bit = 0; bit < TOMOYO_MAX_PATH_NUMBER_OPERATION; bit++) {
  1379. if (!(perm & (1 << bit)))
  1380. continue;
  1381. if (first) {
  1382. tomoyo_set_group(head, "file ");
  1383. first = false;
  1384. } else {
  1385. tomoyo_set_slash(head);
  1386. }
  1387. tomoyo_set_string(head, tomoyo_mac_keywords
  1388. [tomoyo_pn2mac[bit]]);
  1389. }
  1390. if (first)
  1391. return true;
  1392. tomoyo_print_name_union(head, &ptr->name);
  1393. tomoyo_print_number_union(head, &ptr->number);
  1394. } else if (acl_type == TOMOYO_TYPE_MKDEV_ACL) {
  1395. struct tomoyo_mkdev_acl *ptr =
  1396. container_of(acl, typeof(*ptr), head);
  1397. const u8 perm = ptr->perm;
  1398. for (bit = 0; bit < TOMOYO_MAX_MKDEV_OPERATION; bit++) {
  1399. if (!(perm & (1 << bit)))
  1400. continue;
  1401. if (first) {
  1402. tomoyo_set_group(head, "file ");
  1403. first = false;
  1404. } else {
  1405. tomoyo_set_slash(head);
  1406. }
  1407. tomoyo_set_string(head, tomoyo_mac_keywords
  1408. [tomoyo_pnnn2mac[bit]]);
  1409. }
  1410. if (first)
  1411. return true;
  1412. tomoyo_print_name_union(head, &ptr->name);
  1413. tomoyo_print_number_union(head, &ptr->mode);
  1414. tomoyo_print_number_union(head, &ptr->major);
  1415. tomoyo_print_number_union(head, &ptr->minor);
  1416. } else if (acl_type == TOMOYO_TYPE_INET_ACL) {
  1417. struct tomoyo_inet_acl *ptr =
  1418. container_of(acl, typeof(*ptr), head);
  1419. const u8 perm = ptr->perm;
  1420. for (bit = 0; bit < TOMOYO_MAX_NETWORK_OPERATION; bit++) {
  1421. if (!(perm & (1 << bit)))
  1422. continue;
  1423. if (first) {
  1424. tomoyo_set_group(head, "network inet ");
  1425. tomoyo_set_string(head, tomoyo_proto_keyword
  1426. [ptr->protocol]);
  1427. tomoyo_set_space(head);
  1428. first = false;
  1429. } else {
  1430. tomoyo_set_slash(head);
  1431. }
  1432. tomoyo_set_string(head, tomoyo_socket_keyword[bit]);
  1433. }
  1434. if (first)
  1435. return true;
  1436. tomoyo_set_space(head);
  1437. if (ptr->address.group) {
  1438. tomoyo_set_string(head, "@");
  1439. tomoyo_set_string(head, ptr->address.group->group_name
  1440. ->name);
  1441. } else {
  1442. char buf[128];
  1443. tomoyo_print_ip(buf, sizeof(buf), &ptr->address);
  1444. tomoyo_io_printf(head, "%s", buf);
  1445. }
  1446. tomoyo_print_number_union(head, &ptr->port);
  1447. } else if (acl_type == TOMOYO_TYPE_UNIX_ACL) {
  1448. struct tomoyo_unix_acl *ptr =
  1449. container_of(acl, typeof(*ptr), head);
  1450. const u8 perm = ptr->perm;
  1451. for (bit = 0; bit < TOMOYO_MAX_NETWORK_OPERATION; bit++) {
  1452. if (!(perm & (1 << bit)))
  1453. continue;
  1454. if (first) {
  1455. tomoyo_set_group(head, "network unix ");
  1456. tomoyo_set_string(head, tomoyo_proto_keyword
  1457. [ptr->protocol]);
  1458. tomoyo_set_space(head);
  1459. first = false;
  1460. } else {
  1461. tomoyo_set_slash(head);
  1462. }
  1463. tomoyo_set_string(head, tomoyo_socket_keyword[bit]);
  1464. }
  1465. if (first)
  1466. return true;
  1467. tomoyo_print_name_union(head, &ptr->name);
  1468. } else if (acl_type == TOMOYO_TYPE_MOUNT_ACL) {
  1469. struct tomoyo_mount_acl *ptr =
  1470. container_of(acl, typeof(*ptr), head);
  1471. tomoyo_set_group(head, "file mount");
  1472. tomoyo_print_name_union(head, &ptr->dev_name);
  1473. tomoyo_print_name_union(head, &ptr->dir_name);
  1474. tomoyo_print_name_union(head, &ptr->fs_type);
  1475. tomoyo_print_number_union(head, &ptr->flags);
  1476. } else if (acl_type == TOMOYO_TYPE_ENV_ACL) {
  1477. struct tomoyo_env_acl *ptr =
  1478. container_of(acl, typeof(*ptr), head);
  1479. tomoyo_set_group(head, "misc env ");
  1480. tomoyo_set_string(head, ptr->env->name);
  1481. }
  1482. if (acl->cond) {
  1483. head->r.print_cond_part = true;
  1484. head->r.cond_step = 0;
  1485. if (!tomoyo_flush(head))
  1486. return false;
  1487. print_cond_part:
  1488. if (!tomoyo_print_condition(head, acl->cond))
  1489. return false;
  1490. head->r.print_cond_part = false;
  1491. } else {
  1492. tomoyo_set_lf(head);
  1493. }
  1494. return true;
  1495. }
  1496. /**
  1497. * tomoyo_read_domain2 - Read domain policy.
  1498. *
  1499. * @head: Pointer to "struct tomoyo_io_buffer".
  1500. * @list: Pointer to "struct list_head".
  1501. *
  1502. * Caller holds tomoyo_read_lock().
  1503. *
  1504. * Returns true on success, false otherwise.
  1505. */
  1506. static bool tomoyo_read_domain2(struct tomoyo_io_buffer *head,
  1507. struct list_head *list)
  1508. {
  1509. list_for_each_cookie(head->r.acl, list) {
  1510. struct tomoyo_acl_info *ptr =
  1511. list_entry(head->r.acl, typeof(*ptr), list);
  1512. if (!tomoyo_print_entry(head, ptr))
  1513. return false;
  1514. }
  1515. head->r.acl = NULL;
  1516. return true;
  1517. }
  1518. /**
  1519. * tomoyo_read_domain - Read domain policy.
  1520. *
  1521. * @head: Pointer to "struct tomoyo_io_buffer".
  1522. *
  1523. * Caller holds tomoyo_read_lock().
  1524. */
  1525. static void tomoyo_read_domain(struct tomoyo_io_buffer *head)
  1526. {
  1527. if (head->r.eof)
  1528. return;
  1529. list_for_each_cookie(head->r.domain, &tomoyo_domain_list) {
  1530. struct tomoyo_domain_info *domain =
  1531. list_entry(head->r.domain, typeof(*domain), list);
  1532. switch (head->r.step) {
  1533. u8 i;
  1534. case 0:
  1535. if (domain->is_deleted &&
  1536. !head->r.print_this_domain_only)
  1537. continue;
  1538. /* Print domainname and flags. */
  1539. tomoyo_set_string(head, domain->domainname->name);
  1540. tomoyo_set_lf(head);
  1541. tomoyo_io_printf(head, "use_profile %u\n",
  1542. domain->profile);
  1543. tomoyo_io_printf(head, "use_group %u\n",
  1544. domain->group);
  1545. for (i = 0; i < TOMOYO_MAX_DOMAIN_INFO_FLAGS; i++)
  1546. if (domain->flags[i])
  1547. tomoyo_set_string(head, tomoyo_dif[i]);
  1548. head->r.step++;
  1549. tomoyo_set_lf(head);
  1550. /* fall through */
  1551. case 1:
  1552. if (!tomoyo_read_domain2(head, &domain->acl_info_list))
  1553. return;
  1554. head->r.step++;
  1555. if (!tomoyo_set_lf(head))
  1556. return;
  1557. /* fall through */
  1558. case 2:
  1559. head->r.step = 0;
  1560. if (head->r.print_this_domain_only)
  1561. goto done;
  1562. }
  1563. }
  1564. done:
  1565. head->r.eof = true;
  1566. }
  1567. /**
  1568. * tomoyo_write_pid: Specify PID to obtain domainname.
  1569. *
  1570. * @head: Pointer to "struct tomoyo_io_buffer".
  1571. *
  1572. * Returns 0.
  1573. */
  1574. static int tomoyo_write_pid(struct tomoyo_io_buffer *head)
  1575. {
  1576. head->r.eof = false;
  1577. return 0;
  1578. }
  1579. /**
  1580. * tomoyo_read_pid - Get domainname of the specified PID.
  1581. *
  1582. * @head: Pointer to "struct tomoyo_io_buffer".
  1583. *
  1584. * Returns the domainname which the specified PID is in on success,
  1585. * empty string otherwise.
  1586. * The PID is specified by tomoyo_write_pid() so that the user can obtain
  1587. * using read()/write() interface rather than sysctl() interface.
  1588. */
  1589. static void tomoyo_read_pid(struct tomoyo_io_buffer *head)
  1590. {
  1591. char *buf = head->write_buf;
  1592. bool global_pid = false;
  1593. unsigned int pid;
  1594. struct task_struct *p;
  1595. struct tomoyo_domain_info *domain = NULL;
  1596. /* Accessing write_buf is safe because head->io_sem is held. */
  1597. if (!buf) {
  1598. head->r.eof = true;
  1599. return; /* Do nothing if open(O_RDONLY). */
  1600. }
  1601. if (head->r.w_pos || head->r.eof)
  1602. return;
  1603. head->r.eof = true;
  1604. if (tomoyo_str_starts(&buf, "global-pid "))
  1605. global_pid = true;
  1606. pid = (unsigned int) simple_strtoul(buf, NULL, 10);
  1607. rcu_read_lock();
  1608. if (global_pid)
  1609. p = find_task_by_pid_ns(pid, &init_pid_ns);
  1610. else
  1611. p = find_task_by_vpid(pid);
  1612. if (p)
  1613. domain = tomoyo_real_domain(p);
  1614. rcu_read_unlock();
  1615. if (!domain)
  1616. return;
  1617. tomoyo_io_printf(head, "%u %u ", pid, domain->profile);
  1618. tomoyo_set_string(head, domain->domainname->name);
  1619. }
  1620. /* String table for domain transition control keywords. */
  1621. static const char *tomoyo_transition_type[TOMOYO_MAX_TRANSITION_TYPE] = {
  1622. [TOMOYO_TRANSITION_CONTROL_NO_RESET] = "no_reset_domain ",
  1623. [TOMOYO_TRANSITION_CONTROL_RESET] = "reset_domain ",
  1624. [TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE] = "no_initialize_domain ",
  1625. [TOMOYO_TRANSITION_CONTROL_INITIALIZE] = "initialize_domain ",
  1626. [TOMOYO_TRANSITION_CONTROL_NO_KEEP] = "no_keep_domain ",
  1627. [TOMOYO_TRANSITION_CONTROL_KEEP] = "keep_domain ",
  1628. };
  1629. /* String table for grouping keywords. */
  1630. static const char *tomoyo_group_name[TOMOYO_MAX_GROUP] = {
  1631. [TOMOYO_PATH_GROUP] = "path_group ",
  1632. [TOMOYO_NUMBER_GROUP] = "number_group ",
  1633. [TOMOYO_ADDRESS_GROUP] = "address_group ",
  1634. };
  1635. /**
  1636. * tomoyo_write_exception - Write exception policy.
  1637. *
  1638. * @head: Pointer to "struct tomoyo_io_buffer".
  1639. *
  1640. * Returns 0 on success, negative value otherwise.
  1641. *
  1642. * Caller holds tomoyo_read_lock().
  1643. */
  1644. static int tomoyo_write_exception(struct tomoyo_io_buffer *head)
  1645. {
  1646. const bool is_delete = head->w.is_delete;
  1647. struct tomoyo_acl_param param = {
  1648. .ns = head->w.ns,
  1649. .is_delete = is_delete,
  1650. .data = head->write_buf,
  1651. };
  1652. u8 i;
  1653. if (tomoyo_str_starts(&param.data, "aggregator "))
  1654. return tomoyo_write_aggregator(&param);
  1655. for (i = 0; i < TOMOYO_MAX_TRANSITION_TYPE; i++)
  1656. if (tomoyo_str_starts(&param.data, tomoyo_transition_type[i]))
  1657. return tomoyo_write_transition_control(&param, i);
  1658. for (i = 0; i < TOMOYO_MAX_GROUP; i++)
  1659. if (tomoyo_str_starts(&param.data, tomoyo_group_name[i]))
  1660. return tomoyo_write_group(&param, i);
  1661. if (tomoyo_str_starts(&param.data, "acl_group ")) {
  1662. unsigned int group;
  1663. char *data;
  1664. group = simple_strtoul(param.data, &data, 10);
  1665. if (group < TOMOYO_MAX_ACL_GROUPS && *data++ == ' ')
  1666. return tomoyo_write_domain2
  1667. (head->w.ns, &head->w.ns->acl_group[group],
  1668. data, is_delete);
  1669. }
  1670. return -EINVAL;
  1671. }
  1672. /**
  1673. * tomoyo_read_group - Read "struct tomoyo_path_group"/"struct tomoyo_number_group"/"struct tomoyo_address_group" list.
  1674. *
  1675. * @head: Pointer to "struct tomoyo_io_buffer".
  1676. * @idx: Index number.
  1677. *
  1678. * Returns true on success, false otherwise.
  1679. *
  1680. * Caller holds tomoyo_read_lock().
  1681. */
  1682. static bool tomoyo_read_group(struct tomoyo_io_buffer *head, const int idx)
  1683. {
  1684. struct tomoyo_policy_namespace *ns =
  1685. container_of(head->r.ns, typeof(*ns), namespace_list);
  1686. struct list_head *list = &ns->group_list[idx];
  1687. list_for_each_cookie(head->r.group, list) {
  1688. struct tomoyo_group *group =
  1689. list_entry(head->r.group, typeof(*group), head.list);
  1690. list_for_each_cookie(head->r.acl, &group->member_list) {
  1691. struct tomoyo_acl_head *ptr =
  1692. list_entry(head->r.acl, typeof(*ptr), list);
  1693. if (ptr->is_deleted)
  1694. continue;
  1695. if (!tomoyo_flush(head))
  1696. return false;
  1697. tomoyo_print_namespace(head);
  1698. tomoyo_set_string(head, tomoyo_group_name[idx]);
  1699. tomoyo_set_string(head, group->group_name->name);
  1700. if (idx == TOMOYO_PATH_GROUP) {
  1701. tomoyo_set_space(head);
  1702. tomoyo_set_string(head, container_of
  1703. (ptr, struct tomoyo_path_group,
  1704. head)->member_name->name);
  1705. } else if (idx == TOMOYO_NUMBER_GROUP) {
  1706. tomoyo_print_number_union(head, &container_of
  1707. (ptr,
  1708. struct tomoyo_number_group,
  1709. head)->number);
  1710. } else if (idx == TOMOYO_ADDRESS_GROUP) {
  1711. char buffer[128];
  1712. struct tomoyo_address_group *member =
  1713. container_of(ptr, typeof(*member),
  1714. head);
  1715. tomoyo_print_ip(buffer, sizeof(buffer),
  1716. &member->address);
  1717. tomoyo_io_printf(head, " %s", buffer);
  1718. }
  1719. tomoyo_set_lf(head);
  1720. }
  1721. head->r.acl = NULL;
  1722. }
  1723. head->r.group = NULL;
  1724. return true;
  1725. }
  1726. /**
  1727. * tomoyo_read_policy - Read "struct tomoyo_..._entry" list.
  1728. *
  1729. * @head: Pointer to "struct tomoyo_io_buffer".
  1730. * @idx: Index number.
  1731. *
  1732. * Returns true on success, false otherwise.
  1733. *
  1734. * Caller holds tomoyo_read_lock().
  1735. */
  1736. static bool tomoyo_read_policy(struct tomoyo_io_buffer *head, const int idx)
  1737. {
  1738. struct tomoyo_policy_namespace *ns =
  1739. container_of(head->r.ns, typeof(*ns), namespace_list);
  1740. struct list_head *list = &ns->policy_list[idx];
  1741. list_for_each_cookie(head->r.acl, list) {
  1742. struct tomoyo_acl_head *acl =
  1743. container_of(head->r.acl, typeof(*acl), list);
  1744. if (acl->is_deleted)
  1745. continue;
  1746. if (!tomoyo_flush(head))
  1747. return false;
  1748. switch (idx) {
  1749. case TOMOYO_ID_TRANSITION_CONTROL:
  1750. {
  1751. struct tomoyo_transition_control *ptr =
  1752. container_of(acl, typeof(*ptr), head);
  1753. tomoyo_print_namespace(head);
  1754. tomoyo_set_string(head, tomoyo_transition_type
  1755. [ptr->type]);
  1756. tomoyo_set_string(head, ptr->program ?
  1757. ptr->program->name : "any");
  1758. tomoyo_set_string(head, " from ");
  1759. tomoyo_set_string(head, ptr->domainname ?
  1760. ptr->domainname->name :
  1761. "any");
  1762. }
  1763. break;
  1764. case TOMOYO_ID_AGGREGATOR:
  1765. {
  1766. struct tomoyo_aggregator *ptr =
  1767. container_of(acl, typeof(*ptr), head);
  1768. tomoyo_print_namespace(head);
  1769. tomoyo_set_string(head, "aggregator ");
  1770. tomoyo_set_string(head,
  1771. ptr->original_name->name);
  1772. tomoyo_set_space(head);
  1773. tomoyo_set_string(head,
  1774. ptr->aggregated_name->name);
  1775. }
  1776. break;
  1777. default:
  1778. continue;
  1779. }
  1780. tomoyo_set_lf(head);
  1781. }
  1782. head->r.acl = NULL;
  1783. return true;
  1784. }
  1785. /**
  1786. * tomoyo_read_exception - Read exception policy.
  1787. *
  1788. * @head: Pointer to "struct tomoyo_io_buffer".
  1789. *
  1790. * Caller holds tomoyo_read_lock().
  1791. */
  1792. static void tomoyo_read_exception(struct tomoyo_io_buffer *head)
  1793. {
  1794. struct tomoyo_policy_namespace *ns =
  1795. container_of(head->r.ns, typeof(*ns), namespace_list);
  1796. if (head->r.eof)
  1797. return;
  1798. while (head->r.step < TOMOYO_MAX_POLICY &&
  1799. tomoyo_read_policy(head, head->r.step))
  1800. head->r.step++;
  1801. if (head->r.step < TOMOYO_MAX_POLICY)
  1802. return;
  1803. while (head->r.step < TOMOYO_MAX_POLICY + TOMOYO_MAX_GROUP &&
  1804. tomoyo_read_group(head, head->r.step - TOMOYO_MAX_POLICY))
  1805. head->r.step++;
  1806. if (head->r.step < TOMOYO_MAX_POLICY + TOMOYO_MAX_GROUP)
  1807. return;
  1808. while (head->r.step < TOMOYO_MAX_POLICY + TOMOYO_MAX_GROUP
  1809. + TOMOYO_MAX_ACL_GROUPS) {
  1810. head->r.acl_group_index = head->r.step - TOMOYO_MAX_POLICY
  1811. - TOMOYO_MAX_GROUP;
  1812. if (!tomoyo_read_domain2(head, &ns->acl_group
  1813. [head->r.acl_group_index]))
  1814. return;
  1815. head->r.step++;
  1816. }
  1817. head->r.eof = true;
  1818. }
  1819. /* Wait queue for kernel -> userspace notification. */
  1820. static DECLARE_WAIT_QUEUE_HEAD(tomoyo_query_wait);
  1821. /* Wait queue for userspace -> kernel notification. */
  1822. static DECLARE_WAIT_QUEUE_HEAD(tomoyo_answer_wait);
  1823. /* Structure for query. */
  1824. struct tomoyo_query {
  1825. struct list_head list;
  1826. char *query;
  1827. size_t query_len;
  1828. unsigned int serial;
  1829. u8 timer;
  1830. u8 answer;
  1831. u8 retry;
  1832. };
  1833. /* The list for "struct tomoyo_query". */
  1834. static LIST_HEAD(tomoyo_query_list);
  1835. /* Lock for manipulating tomoyo_query_list. */
  1836. static DEFINE_SPINLOCK(tomoyo_query_list_lock);
  1837. /*
  1838. * Number of "struct file" referring /sys/kernel/security/tomoyo/query
  1839. * interface.
  1840. */
  1841. static atomic_t tomoyo_query_observers = ATOMIC_INIT(0);
  1842. /**
  1843. * tomoyo_truncate - Truncate a line.
  1844. *
  1845. * @str: String to truncate.
  1846. *
  1847. * Returns length of truncated @str.
  1848. */
  1849. static int tomoyo_truncate(char *str)
  1850. {
  1851. char *start = str;
  1852. while (*(unsigned char *) str > (unsigned char) ' ')
  1853. str++;
  1854. *str = '\0';
  1855. return strlen(start) + 1;
  1856. }
  1857. /**
  1858. * tomoyo_add_entry - Add an ACL to current thread's domain. Used by learning mode.
  1859. *
  1860. * @domain: Pointer to "struct tomoyo_domain_info".
  1861. * @header: Lines containing ACL.
  1862. *
  1863. * Returns nothing.
  1864. */
  1865. static void tomoyo_add_entry(struct tomoyo_domain_info *domain, char *header)
  1866. {
  1867. char *buffer;
  1868. char *realpath = NULL;
  1869. char *argv0 = NULL;
  1870. char *symlink = NULL;
  1871. char *cp = strchr(header, '\n');
  1872. int len;
  1873. if (!cp)
  1874. return;
  1875. cp = strchr(cp + 1, '\n');
  1876. if (!cp)
  1877. return;
  1878. *cp++ = '\0';
  1879. len = strlen(cp) + 1;
  1880. /* strstr() will return NULL if ordering is wrong. */
  1881. if (*cp == 'f') {
  1882. argv0 = strstr(header, " argv[]={ \"");
  1883. if (argv0) {
  1884. argv0 += 10;
  1885. len += tomoyo_truncate(argv0) + 14;
  1886. }
  1887. realpath = strstr(header, " exec={ realpath=\"");
  1888. if (realpath) {
  1889. realpath += 8;
  1890. len += tomoyo_truncate(realpath) + 6;
  1891. }
  1892. symlink = strstr(header, " symlink.target=\"");
  1893. if (symlink)
  1894. len += tomoyo_truncate(symlink + 1) + 1;
  1895. }
  1896. buffer = kmalloc(len, GFP_NOFS);
  1897. if (!buffer)
  1898. return;
  1899. snprintf(buffer, len - 1, "%s", cp);
  1900. if (realpath)
  1901. tomoyo_addprintf(buffer, len, " exec.%s", realpath);
  1902. if (argv0)
  1903. tomoyo_addprintf(buffer, len, " exec.argv[0]=%s", argv0);
  1904. if (symlink)
  1905. tomoyo_addprintf(buffer, len, "%s", symlink);
  1906. tomoyo_normalize_line(buffer);
  1907. if (!tomoyo_write_domain2(domain->ns, &domain->acl_info_list, buffer,
  1908. false))
  1909. tomoyo_update_stat(TOMOYO_STAT_POLICY_UPDATES);
  1910. kfree(buffer);
  1911. }
  1912. /**
  1913. * tomoyo_supervisor - Ask for the supervisor's decision.
  1914. *
  1915. * @r: Pointer to "struct tomoyo_request_info".
  1916. * @fmt: The printf()'s format string, followed by parameters.
  1917. *
  1918. * Returns 0 if the supervisor decided to permit the access request which
  1919. * violated the policy in enforcing mode, TOMOYO_RETRY_REQUEST if the
  1920. * supervisor decided to retry the access request which violated the policy in
  1921. * enforcing mode, 0 if it is not in enforcing mode, -EPERM otherwise.
  1922. */
  1923. int tomoyo_supervisor(struct tomoyo_request_info *r, const char *fmt, ...)
  1924. {
  1925. va_list args;
  1926. int error;
  1927. int len;
  1928. static unsigned int tomoyo_serial;
  1929. struct tomoyo_query entry = { };
  1930. bool quota_exceeded = false;
  1931. va_start(args, fmt);
  1932. len = vsnprintf((char *) &len, 1, fmt, args) + 1;
  1933. va_end(args);
  1934. /* Write /sys/kernel/security/tomoyo/audit. */
  1935. va_start(args, fmt);
  1936. tomoyo_write_log2(r, len, fmt, args);
  1937. va_end(args);
  1938. /* Nothing more to do if granted. */
  1939. if (r->granted)
  1940. return 0;
  1941. if (r->mode)
  1942. tomoyo_update_stat(r->mode);
  1943. switch (r->mode) {
  1944. case TOMOYO_CONFIG_ENFORCING:
  1945. error = -EPERM;
  1946. if (atomic_read(&tomoyo_query_observers))
  1947. break;
  1948. goto out;
  1949. case TOMOYO_CONFIG_LEARNING:
  1950. error = 0;
  1951. /* Check max_learning_entry parameter. */
  1952. if (tomoyo_domain_quota_is_ok(r))
  1953. break;
  1954. /* fall through */
  1955. default:
  1956. return 0;
  1957. }
  1958. /* Get message. */
  1959. va_start(args, fmt);
  1960. entry.query = tomoyo_init_log(r, len, fmt, args);
  1961. va_end(args);
  1962. if (!entry.query)
  1963. goto out;
  1964. entry.query_len = strlen(entry.query) + 1;
  1965. if (!error) {
  1966. tomoyo_add_entry(r->domain, entry.query);
  1967. goto out;
  1968. }
  1969. len = tomoyo_round2(entry.query_len);
  1970. spin_lock(&tomoyo_query_list_lock);
  1971. if (tomoyo_memory_quota[TOMOYO_MEMORY_QUERY] &&
  1972. tomoyo_memory_used[TOMOYO_MEMORY_QUERY] + len
  1973. >= tomoyo_memory_quota[TOMOYO_MEMORY_QUERY]) {
  1974. quota_exceeded = true;
  1975. } else {
  1976. entry.serial = tomoyo_serial++;
  1977. entry.retry = r->retry;
  1978. tomoyo_memory_used[TOMOYO_MEMORY_QUERY] += len;
  1979. list_add_tail(&entry.list, &tomoyo_query_list);
  1980. }
  1981. spin_unlock(&tomoyo_query_list_lock);
  1982. if (quota_exceeded)
  1983. goto out;
  1984. /* Give 10 seconds for supervisor's opinion. */
  1985. while (entry.timer < 10) {
  1986. wake_up_all(&tomoyo_query_wait);
  1987. if (wait_event_interruptible_timeout
  1988. (tomoyo_answer_wait, entry.answer ||
  1989. !atomic_read(&tomoyo_query_observers), HZ))
  1990. break;
  1991. else
  1992. entry.timer++;
  1993. }
  1994. spin_lock(&tomoyo_query_list_lock);
  1995. list_del(&entry.list);
  1996. tomoyo_memory_used[TOMOYO_MEMORY_QUERY] -= len;
  1997. spin_unlock(&tomoyo_query_list_lock);
  1998. switch (entry.answer) {
  1999. case 3: /* Asked to retry by administrator. */
  2000. error = TOMOYO_RETRY_REQUEST;
  2001. r->retry++;
  2002. break;
  2003. case 1:
  2004. /* Granted by administrator. */
  2005. error = 0;
  2006. break;
  2007. default:
  2008. /* Timed out or rejected by administrator. */
  2009. break;
  2010. }
  2011. out:
  2012. kfree(entry.query);
  2013. return error;
  2014. }
  2015. /**
  2016. * tomoyo_poll_query - poll() for /sys/kernel/security/tomoyo/query.
  2017. *
  2018. * @file: Pointer to "struct file".
  2019. * @wait: Pointer to "poll_table".
  2020. *
  2021. * Returns POLLIN | POLLRDNORM when ready to read, 0 otherwise.
  2022. *
  2023. * Waits for access requests which violated policy in enforcing mode.
  2024. */
  2025. static int tomoyo_poll_query(struct file *file, poll_table *wait)
  2026. {
  2027. struct list_head *tmp;
  2028. bool found = false;
  2029. u8 i;
  2030. for (i = 0; i < 2; i++) {
  2031. spin_lock(&tomoyo_query_list_lock);
  2032. list_for_each(tmp, &tomoyo_query_list) {
  2033. struct tomoyo_query *ptr =
  2034. list_entry(tmp, typeof(*ptr), list);
  2035. if (ptr->answer)
  2036. continue;
  2037. found = true;
  2038. break;
  2039. }
  2040. spin_unlock(&tomoyo_query_list_lock);
  2041. if (found)
  2042. return POLLIN | POLLRDNORM;
  2043. if (i)
  2044. break;
  2045. poll_wait(file, &tomoyo_query_wait, wait);
  2046. }
  2047. return 0;
  2048. }
  2049. /**
  2050. * tomoyo_read_query - Read access requests which violated policy in enforcing mode.
  2051. *
  2052. * @head: Pointer to "struct tomoyo_io_buffer".
  2053. */
  2054. static void tomoyo_read_query(struct tomoyo_io_buffer *head)
  2055. {
  2056. struct list_head *tmp;
  2057. unsigned int pos = 0;
  2058. size_t len = 0;
  2059. char *buf;
  2060. if (head->r.w_pos)
  2061. return;
  2062. if (head->read_buf) {
  2063. kfree(head->read_buf);
  2064. head->read_buf = NULL;
  2065. }
  2066. spin_lock(&tomoyo_query_list_lock);
  2067. list_for_each(tmp, &tomoyo_query_list) {
  2068. struct tomoyo_query *ptr = list_entry(tmp, typeof(*ptr), list);
  2069. if (ptr->answer)
  2070. continue;
  2071. if (pos++ != head->r.query_index)
  2072. continue;
  2073. len = ptr->query_len;
  2074. break;
  2075. }
  2076. spin_unlock(&tomoyo_query_list_lock);
  2077. if (!len) {
  2078. head->r.query_index = 0;
  2079. return;
  2080. }
  2081. buf = kzalloc(len + 32, GFP_NOFS);
  2082. if (!buf)
  2083. return;
  2084. pos = 0;
  2085. spin_lock(&tomoyo_query_list_lock);
  2086. list_for_each(tmp, &tomoyo_query_list) {
  2087. struct tomoyo_query *ptr = list_entry(tmp, typeof(*ptr), list);
  2088. if (ptr->answer)
  2089. continue;
  2090. if (pos++ != head->r.query_index)
  2091. continue;
  2092. /*
  2093. * Some query can be skipped because tomoyo_query_list
  2094. * can change, but I don't care.
  2095. */
  2096. if (len == ptr->query_len)
  2097. snprintf(buf, len + 31, "Q%u-%hu\n%s", ptr->serial,
  2098. ptr->retry, ptr->query);
  2099. break;
  2100. }
  2101. spin_unlock(&tomoyo_query_list_lock);
  2102. if (buf[0]) {
  2103. head->read_buf = buf;
  2104. head->r.w[head->r.w_pos++] = buf;
  2105. head->r.query_index++;
  2106. } else {
  2107. kfree(buf);
  2108. }
  2109. }
  2110. /**
  2111. * tomoyo_write_answer - Write the supervisor's decision.
  2112. *
  2113. * @head: Pointer to "struct tomoyo_io_buffer".
  2114. *
  2115. * Returns 0 on success, -EINVAL otherwise.
  2116. */
  2117. static int tomoyo_write_answer(struct tomoyo_io_buffer *head)
  2118. {
  2119. char *data = head->write_buf;
  2120. struct list_head *tmp;
  2121. unsigned int serial;
  2122. unsigned int answer;
  2123. spin_lock(&tomoyo_query_list_lock);
  2124. list_for_each(tmp, &tomoyo_query_list) {
  2125. struct tomoyo_query *ptr = list_entry(tmp, typeof(*ptr), list);
  2126. ptr->timer = 0;
  2127. }
  2128. spin_unlock(&tomoyo_query_list_lock);
  2129. if (sscanf(data, "A%u=%u", &serial, &answer) != 2)
  2130. return -EINVAL;
  2131. spin_lock(&tomoyo_query_list_lock);
  2132. list_for_each(tmp, &tomoyo_query_list) {
  2133. struct tomoyo_query *ptr = list_entry(tmp, typeof(*ptr), list);
  2134. if (ptr->serial != serial)
  2135. continue;
  2136. if (!ptr->answer)
  2137. ptr->answer = answer;
  2138. break;
  2139. }
  2140. spin_unlock(&tomoyo_query_list_lock);
  2141. return 0;
  2142. }
  2143. /**
  2144. * tomoyo_read_version: Get version.
  2145. *
  2146. * @head: Pointer to "struct tomoyo_io_buffer".
  2147. *
  2148. * Returns version information.
  2149. */
  2150. static void tomoyo_read_version(struct tomoyo_io_buffer *head)
  2151. {
  2152. if (!head->r.eof) {
  2153. tomoyo_io_printf(head, "2.5.0");
  2154. head->r.eof = true;
  2155. }
  2156. }
  2157. /* String table for /sys/kernel/security/tomoyo/stat interface. */
  2158. static const char * const tomoyo_policy_headers[TOMOYO_MAX_POLICY_STAT] = {
  2159. [TOMOYO_STAT_POLICY_UPDATES] = "update:",
  2160. [TOMOYO_STAT_POLICY_LEARNING] = "violation in learning mode:",
  2161. [TOMOYO_STAT_POLICY_PERMISSIVE] = "violation in permissive mode:",
  2162. [TOMOYO_STAT_POLICY_ENFORCING] = "violation in enforcing mode:",
  2163. };
  2164. /* String table for /sys/kernel/security/tomoyo/stat interface. */
  2165. static const char * const tomoyo_memory_headers[TOMOYO_MAX_MEMORY_STAT] = {
  2166. [TOMOYO_MEMORY_POLICY] = "policy:",
  2167. [TOMOYO_MEMORY_AUDIT] = "audit log:",
  2168. [TOMOYO_MEMORY_QUERY] = "query message:",
  2169. };
  2170. /* Timestamp counter for last updated. */
  2171. static unsigned int tomoyo_stat_updated[TOMOYO_MAX_POLICY_STAT];
  2172. /* Counter for number of updates. */
  2173. static unsigned int tomoyo_stat_modified[TOMOYO_MAX_POLICY_STAT];
  2174. /**
  2175. * tomoyo_update_stat - Update statistic counters.
  2176. *
  2177. * @index: Index for policy type.
  2178. *
  2179. * Returns nothing.
  2180. */
  2181. void tomoyo_update_stat(const u8 index)
  2182. {
  2183. struct timeval tv;
  2184. do_gettimeofday(&tv);
  2185. /*
  2186. * I don't use atomic operations because race condition is not fatal.
  2187. */
  2188. tomoyo_stat_updated[index]++;
  2189. tomoyo_stat_modified[index] = tv.tv_sec;
  2190. }
  2191. /**
  2192. * tomoyo_read_stat - Read statistic data.
  2193. *
  2194. * @head: Pointer to "struct tomoyo_io_buffer".
  2195. *
  2196. * Returns nothing.
  2197. */
  2198. static void tomoyo_read_stat(struct tomoyo_io_buffer *head)
  2199. {
  2200. u8 i;
  2201. unsigned int total = 0;
  2202. if (head->r.eof)
  2203. return;
  2204. for (i = 0; i < TOMOYO_MAX_POLICY_STAT; i++) {
  2205. tomoyo_io_printf(head, "Policy %-30s %10u",
  2206. tomoyo_policy_headers[i],
  2207. tomoyo_stat_updated[i]);
  2208. if (tomoyo_stat_modified[i]) {
  2209. struct tomoyo_time stamp;
  2210. tomoyo_convert_time(tomoyo_stat_modified[i], &stamp);
  2211. tomoyo_io_printf(head, " (Last: %04u/%02u/%02u "
  2212. "%02u:%02u:%02u)",
  2213. stamp.year, stamp.month, stamp.day,
  2214. stamp.hour, stamp.min, stamp.sec);
  2215. }
  2216. tomoyo_set_lf(head);
  2217. }
  2218. for (i = 0; i < TOMOYO_MAX_MEMORY_STAT; i++) {
  2219. unsigned int used = tomoyo_memory_used[i];
  2220. total += used;
  2221. tomoyo_io_printf(head, "Memory used by %-22s %10u",
  2222. tomoyo_memory_headers[i], used);
  2223. used = tomoyo_memory_quota[i];
  2224. if (used)
  2225. tomoyo_io_printf(head, " (Quota: %10u)", used);
  2226. tomoyo_set_lf(head);
  2227. }
  2228. tomoyo_io_printf(head, "Total memory used: %10u\n",
  2229. total);
  2230. head->r.eof = true;
  2231. }
  2232. /**
  2233. * tomoyo_write_stat - Set memory quota.
  2234. *
  2235. * @head: Pointer to "struct tomoyo_io_buffer".
  2236. *
  2237. * Returns 0.
  2238. */
  2239. static int tomoyo_write_stat(struct tomoyo_io_buffer *head)
  2240. {
  2241. char *data = head->write_buf;
  2242. u8 i;
  2243. if (tomoyo_str_starts(&data, "Memory used by "))
  2244. for (i = 0; i < TOMOYO_MAX_MEMORY_STAT; i++)
  2245. if (tomoyo_str_starts(&data, tomoyo_memory_headers[i]))
  2246. sscanf(data, "%u", &tomoyo_memory_quota[i]);
  2247. return 0;
  2248. }
  2249. /**
  2250. * tomoyo_open_control - open() for /sys/kernel/security/tomoyo/ interface.
  2251. *
  2252. * @type: Type of interface.
  2253. * @file: Pointer to "struct file".
  2254. *
  2255. * Returns 0 on success, negative value otherwise.
  2256. */
  2257. int tomoyo_open_control(const u8 type, struct file *file)
  2258. {
  2259. struct tomoyo_io_buffer *head = kzalloc(sizeof(*head), GFP_NOFS);
  2260. if (!head)
  2261. return -ENOMEM;
  2262. mutex_init(&head->io_sem);
  2263. head->type = type;
  2264. switch (type) {
  2265. case TOMOYO_DOMAINPOLICY:
  2266. /* /sys/kernel/security/tomoyo/domain_policy */
  2267. head->write = tomoyo_write_domain;
  2268. head->read = tomoyo_read_domain;
  2269. break;
  2270. case TOMOYO_EXCEPTIONPOLICY:
  2271. /* /sys/kernel/security/tomoyo/exception_policy */
  2272. head->write = tomoyo_write_exception;
  2273. head->read = tomoyo_read_exception;
  2274. break;
  2275. case TOMOYO_AUDIT:
  2276. /* /sys/kernel/security/tomoyo/audit */
  2277. head->poll = tomoyo_poll_log;
  2278. head->read = tomoyo_read_log;
  2279. break;
  2280. case TOMOYO_PROCESS_STATUS:
  2281. /* /sys/kernel/security/tomoyo/.process_status */
  2282. head->write = tomoyo_write_pid;
  2283. head->read = tomoyo_read_pid;
  2284. break;
  2285. case TOMOYO_VERSION:
  2286. /* /sys/kernel/security/tomoyo/version */
  2287. head->read = tomoyo_read_version;
  2288. head->readbuf_size = 128;
  2289. break;
  2290. case TOMOYO_STAT:
  2291. /* /sys/kernel/security/tomoyo/stat */
  2292. head->write = tomoyo_write_stat;
  2293. head->read = tomoyo_read_stat;
  2294. head->readbuf_size = 1024;
  2295. break;
  2296. case TOMOYO_PROFILE:
  2297. /* /sys/kernel/security/tomoyo/profile */
  2298. head->write = tomoyo_write_profile;
  2299. head->read = tomoyo_read_profile;
  2300. break;
  2301. case TOMOYO_QUERY: /* /sys/kernel/security/tomoyo/query */
  2302. head->poll = tomoyo_poll_query;
  2303. head->write = tomoyo_write_answer;
  2304. head->read = tomoyo_read_query;
  2305. break;
  2306. case TOMOYO_MANAGER:
  2307. /* /sys/kernel/security/tomoyo/manager */
  2308. head->write = tomoyo_write_manager;
  2309. head->read = tomoyo_read_manager;
  2310. break;
  2311. }
  2312. if (!(file->f_mode & FMODE_READ)) {
  2313. /*
  2314. * No need to allocate read_buf since it is not opened
  2315. * for reading.
  2316. */
  2317. head->read = NULL;
  2318. head->poll = NULL;
  2319. } else if (!head->poll) {
  2320. /* Don't allocate read_buf for poll() access. */
  2321. if (!head->readbuf_size)
  2322. head->readbuf_size = 4096 * 2;
  2323. head->read_buf = kzalloc(head->readbuf_size, GFP_NOFS);
  2324. if (!head->read_buf) {
  2325. kfree(head);
  2326. return -ENOMEM;
  2327. }
  2328. }
  2329. if (!(file->f_mode & FMODE_WRITE)) {
  2330. /*
  2331. * No need to allocate write_buf since it is not opened
  2332. * for writing.
  2333. */
  2334. head->write = NULL;
  2335. } else if (head->write) {
  2336. head->writebuf_size = 4096 * 2;
  2337. head->write_buf = kzalloc(head->writebuf_size, GFP_NOFS);
  2338. if (!head->write_buf) {
  2339. kfree(head->read_buf);
  2340. kfree(head);
  2341. return -ENOMEM;
  2342. }
  2343. }
  2344. /*
  2345. * If the file is /sys/kernel/security/tomoyo/query , increment the
  2346. * observer counter.
  2347. * The obserber counter is used by tomoyo_supervisor() to see if
  2348. * there is some process monitoring /sys/kernel/security/tomoyo/query.
  2349. */
  2350. if (type == TOMOYO_QUERY)
  2351. atomic_inc(&tomoyo_query_observers);
  2352. file->private_data = head;
  2353. tomoyo_notify_gc(head, true);
  2354. return 0;
  2355. }
  2356. /**
  2357. * tomoyo_poll_control - poll() for /sys/kernel/security/tomoyo/ interface.
  2358. *
  2359. * @file: Pointer to "struct file".
  2360. * @wait: Pointer to "poll_table".
  2361. *
  2362. * Waits for read readiness.
  2363. * /sys/kernel/security/tomoyo/query is handled by /usr/sbin/tomoyo-queryd and
  2364. * /sys/kernel/security/tomoyo/audit is handled by /usr/sbin/tomoyo-auditd.
  2365. */
  2366. int tomoyo_poll_control(struct file *file, poll_table *wait)
  2367. {
  2368. struct tomoyo_io_buffer *head = file->private_data;
  2369. if (!head->poll)
  2370. return -ENOSYS;
  2371. return head->poll(file, wait);
  2372. }
  2373. /**
  2374. * tomoyo_set_namespace_cursor - Set namespace to read.
  2375. *
  2376. * @head: Pointer to "struct tomoyo_io_buffer".
  2377. *
  2378. * Returns nothing.
  2379. */
  2380. static inline void tomoyo_set_namespace_cursor(struct tomoyo_io_buffer *head)
  2381. {
  2382. struct list_head *ns;
  2383. if (head->type != TOMOYO_EXCEPTIONPOLICY &&
  2384. head->type != TOMOYO_PROFILE)
  2385. return;
  2386. /*
  2387. * If this is the first read, or reading previous namespace finished
  2388. * and has more namespaces to read, update the namespace cursor.
  2389. */
  2390. ns = head->r.ns;
  2391. if (!ns || (head->r.eof && ns->next != &tomoyo_namespace_list)) {
  2392. /* Clearing is OK because tomoyo_flush() returned true. */
  2393. memset(&head->r, 0, sizeof(head->r));
  2394. head->r.ns = ns ? ns->next : tomoyo_namespace_list.next;
  2395. }
  2396. }
  2397. /**
  2398. * tomoyo_has_more_namespace - Check for unread namespaces.
  2399. *
  2400. * @head: Pointer to "struct tomoyo_io_buffer".
  2401. *
  2402. * Returns true if we have more entries to print, false otherwise.
  2403. */
  2404. static inline bool tomoyo_has_more_namespace(struct tomoyo_io_buffer *head)
  2405. {
  2406. return (head->type == TOMOYO_EXCEPTIONPOLICY ||
  2407. head->type == TOMOYO_PROFILE) && head->r.eof &&
  2408. head->r.ns->next != &tomoyo_namespace_list;
  2409. }
  2410. /**
  2411. * tomoyo_read_control - read() for /sys/kernel/security/tomoyo/ interface.
  2412. *
  2413. * @head: Pointer to "struct tomoyo_io_buffer".
  2414. * @buffer: Poiner to buffer to write to.
  2415. * @buffer_len: Size of @buffer.
  2416. *
  2417. * Returns bytes read on success, negative value otherwise.
  2418. */
  2419. ssize_t tomoyo_read_control(struct tomoyo_io_buffer *head, char __user *buffer,
  2420. const int buffer_len)
  2421. {
  2422. int len;
  2423. int idx;
  2424. if (!head->read)
  2425. return -ENOSYS;
  2426. if (mutex_lock_interruptible(&head->io_sem))
  2427. return -EINTR;
  2428. head->read_user_buf = buffer;
  2429. head->read_user_buf_avail = buffer_len;
  2430. idx = tomoyo_read_lock();
  2431. if (tomoyo_flush(head))
  2432. /* Call the policy handler. */
  2433. do {
  2434. tomoyo_set_namespace_cursor(head);
  2435. head->read(head);
  2436. } while (tomoyo_flush(head) &&
  2437. tomoyo_has_more_namespace(head));
  2438. tomoyo_read_unlock(idx);
  2439. len = head->read_user_buf - buffer;
  2440. mutex_unlock(&head->io_sem);
  2441. return len;
  2442. }
  2443. /**
  2444. * tomoyo_parse_policy - Parse a policy line.
  2445. *
  2446. * @head: Poiter to "struct tomoyo_io_buffer".
  2447. * @line: Line to parse.
  2448. *
  2449. * Returns 0 on success, negative value otherwise.
  2450. *
  2451. * Caller holds tomoyo_read_lock().
  2452. */
  2453. static int tomoyo_parse_policy(struct tomoyo_io_buffer *head, char *line)
  2454. {
  2455. /* Delete request? */
  2456. head->w.is_delete = !strncmp(line, "delete ", 7);
  2457. if (head->w.is_delete)
  2458. memmove(line, line + 7, strlen(line + 7) + 1);
  2459. /* Selecting namespace to update. */
  2460. if (head->type == TOMOYO_EXCEPTIONPOLICY ||
  2461. head->type == TOMOYO_PROFILE) {
  2462. if (*line == '<') {
  2463. char *cp = strchr(line, ' ');
  2464. if (cp) {
  2465. *cp++ = '\0';
  2466. head->w.ns = tomoyo_assign_namespace(line);
  2467. memmove(line, cp, strlen(cp) + 1);
  2468. } else
  2469. head->w.ns = NULL;
  2470. } else
  2471. head->w.ns = &tomoyo_kernel_namespace;
  2472. /* Don't allow updating if namespace is invalid. */
  2473. if (!head->w.ns)
  2474. return -ENOENT;
  2475. }
  2476. /* Do the update. */
  2477. return head->write(head);
  2478. }
  2479. /**
  2480. * tomoyo_write_control - write() for /sys/kernel/security/tomoyo/ interface.
  2481. *
  2482. * @head: Pointer to "struct tomoyo_io_buffer".
  2483. * @buffer: Pointer to buffer to read from.
  2484. * @buffer_len: Size of @buffer.
  2485. *
  2486. * Returns @buffer_len on success, negative value otherwise.
  2487. */
  2488. ssize_t tomoyo_write_control(struct tomoyo_io_buffer *head,
  2489. const char __user *buffer, const int buffer_len)
  2490. {
  2491. int error = buffer_len;
  2492. size_t avail_len = buffer_len;
  2493. char *cp0 = head->write_buf;
  2494. int idx;
  2495. if (!head->write)
  2496. return -ENOSYS;
  2497. if (!access_ok(VERIFY_READ, buffer, buffer_len))
  2498. return -EFAULT;
  2499. if (mutex_lock_interruptible(&head->io_sem))
  2500. return -EINTR;
  2501. head->read_user_buf_avail = 0;
  2502. idx = tomoyo_read_lock();
  2503. /* Read a line and dispatch it to the policy handler. */
  2504. while (avail_len > 0) {
  2505. char c;
  2506. if (head->w.avail >= head->writebuf_size - 1) {
  2507. const int len = head->writebuf_size * 2;
  2508. char *cp = kzalloc(len, GFP_NOFS);
  2509. if (!cp) {
  2510. error = -ENOMEM;
  2511. break;
  2512. }
  2513. memmove(cp, cp0, head->w.avail);
  2514. kfree(cp0);
  2515. head->write_buf = cp;
  2516. cp0 = cp;
  2517. head->writebuf_size = len;
  2518. }
  2519. if (get_user(c, buffer)) {
  2520. error = -EFAULT;
  2521. break;
  2522. }
  2523. buffer++;
  2524. avail_len--;
  2525. cp0[head->w.avail++] = c;
  2526. if (c != '\n')
  2527. continue;
  2528. cp0[head->w.avail - 1] = '\0';
  2529. head->w.avail = 0;
  2530. tomoyo_normalize_line(cp0);
  2531. if (!strcmp(cp0, "reset")) {
  2532. head->w.ns = &tomoyo_kernel_namespace;
  2533. head->w.domain = NULL;
  2534. memset(&head->r, 0, sizeof(head->r));
  2535. continue;
  2536. }
  2537. /* Don't allow updating policies by non manager programs. */
  2538. switch (head->type) {
  2539. case TOMOYO_PROCESS_STATUS:
  2540. /* This does not write anything. */
  2541. break;
  2542. case TOMOYO_DOMAINPOLICY:
  2543. if (tomoyo_select_domain(head, cp0))
  2544. continue;
  2545. /* fall through */
  2546. case TOMOYO_EXCEPTIONPOLICY:
  2547. if (!strcmp(cp0, "select transition_only")) {
  2548. head->r.print_transition_related_only = true;
  2549. continue;
  2550. }
  2551. /* fall through */
  2552. default:
  2553. if (!tomoyo_manager()) {
  2554. error = -EPERM;
  2555. goto out;
  2556. }
  2557. }
  2558. switch (tomoyo_parse_policy(head, cp0)) {
  2559. case -EPERM:
  2560. error = -EPERM;
  2561. goto out;
  2562. case 0:
  2563. switch (head->type) {
  2564. case TOMOYO_DOMAINPOLICY:
  2565. case TOMOYO_EXCEPTIONPOLICY:
  2566. case TOMOYO_STAT:
  2567. case TOMOYO_PROFILE:
  2568. case TOMOYO_MANAGER:
  2569. tomoyo_update_stat(TOMOYO_STAT_POLICY_UPDATES);
  2570. break;
  2571. default:
  2572. break;
  2573. }
  2574. break;
  2575. }
  2576. }
  2577. out:
  2578. tomoyo_read_unlock(idx);
  2579. mutex_unlock(&head->io_sem);
  2580. return error;
  2581. }
  2582. /**
  2583. * tomoyo_close_control - close() for /sys/kernel/security/tomoyo/ interface.
  2584. *
  2585. * @head: Pointer to "struct tomoyo_io_buffer".
  2586. *
  2587. * Returns 0.
  2588. */
  2589. int tomoyo_close_control(struct tomoyo_io_buffer *head)
  2590. {
  2591. /*
  2592. * If the file is /sys/kernel/security/tomoyo/query , decrement the
  2593. * observer counter.
  2594. */
  2595. if (head->type == TOMOYO_QUERY &&
  2596. atomic_dec_and_test(&tomoyo_query_observers))
  2597. wake_up_all(&tomoyo_answer_wait);
  2598. tomoyo_notify_gc(head, false);
  2599. return 0;
  2600. }
  2601. /**
  2602. * tomoyo_check_profile - Check all profiles currently assigned to domains are defined.
  2603. */
  2604. void tomoyo_check_profile(void)
  2605. {
  2606. struct tomoyo_domain_info *domain;
  2607. const int idx = tomoyo_read_lock();
  2608. tomoyo_policy_loaded = true;
  2609. printk(KERN_INFO "TOMOYO: 2.5.0\n");
  2610. list_for_each_entry_rcu(domain, &tomoyo_domain_list, list) {
  2611. const u8 profile = domain->profile;
  2612. const struct tomoyo_policy_namespace *ns = domain->ns;
  2613. if (ns->profile_version != 20110903)
  2614. printk(KERN_ERR
  2615. "Profile version %u is not supported.\n",
  2616. ns->profile_version);
  2617. else if (!ns->profile_ptr[profile])
  2618. printk(KERN_ERR
  2619. "Profile %u (used by '%s') is not defined.\n",
  2620. profile, domain->domainname->name);
  2621. else
  2622. continue;
  2623. printk(KERN_ERR
  2624. "Userland tools for TOMOYO 2.5 must be installed and "
  2625. "policy must be initialized.\n");
  2626. printk(KERN_ERR "Please see http://tomoyo.sourceforge.jp/2.5/ "
  2627. "for more information.\n");
  2628. panic("STOP!");
  2629. }
  2630. tomoyo_read_unlock(idx);
  2631. printk(KERN_INFO "Mandatory Access Control activated.\n");
  2632. }
  2633. /**
  2634. * tomoyo_load_builtin_policy - Load built-in policy.
  2635. *
  2636. * Returns nothing.
  2637. */
  2638. void __init tomoyo_load_builtin_policy(void)
  2639. {
  2640. /*
  2641. * This include file is manually created and contains built-in policy
  2642. * named "tomoyo_builtin_profile", "tomoyo_builtin_exception_policy",
  2643. * "tomoyo_builtin_domain_policy", "tomoyo_builtin_manager",
  2644. * "tomoyo_builtin_stat" in the form of "static char [] __initdata".
  2645. */
  2646. #include "builtin-policy.h"
  2647. u8 i;
  2648. const int idx = tomoyo_read_lock();
  2649. for (i = 0; i < 5; i++) {
  2650. struct tomoyo_io_buffer head = { };
  2651. char *start = "";
  2652. switch (i) {
  2653. case 0:
  2654. start = tomoyo_builtin_profile;
  2655. head.type = TOMOYO_PROFILE;
  2656. head.write = tomoyo_write_profile;
  2657. break;
  2658. case 1:
  2659. start = tomoyo_builtin_exception_policy;
  2660. head.type = TOMOYO_EXCEPTIONPOLICY;
  2661. head.write = tomoyo_write_exception;
  2662. break;
  2663. case 2:
  2664. start = tomoyo_builtin_domain_policy;
  2665. head.type = TOMOYO_DOMAINPOLICY;
  2666. head.write = tomoyo_write_domain;
  2667. break;
  2668. case 3:
  2669. start = tomoyo_builtin_manager;
  2670. head.type = TOMOYO_MANAGER;
  2671. head.write = tomoyo_write_manager;
  2672. break;
  2673. case 4:
  2674. start = tomoyo_builtin_stat;
  2675. head.type = TOMOYO_STAT;
  2676. head.write = tomoyo_write_stat;
  2677. break;
  2678. }
  2679. while (1) {
  2680. char *end = strchr(start, '\n');
  2681. if (!end)
  2682. break;
  2683. *end = '\0';
  2684. tomoyo_normalize_line(start);
  2685. head.write_buf = start;
  2686. tomoyo_parse_policy(&head, start);
  2687. start = end + 1;
  2688. }
  2689. }
  2690. tomoyo_read_unlock(idx);
  2691. #ifdef CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER
  2692. tomoyo_check_profile();
  2693. #endif
  2694. }