auth_gss.c 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299
  1. /*
  2. * linux/net/sunrpc/auth_gss/auth_gss.c
  3. *
  4. * RPCSEC_GSS client authentication.
  5. *
  6. * Copyright (c) 2000 The Regents of the University of Michigan.
  7. * All rights reserved.
  8. *
  9. * Dug Song <dugsong@monkey.org>
  10. * Andy Adamson <andros@umich.edu>
  11. *
  12. * Redistribution and use in source and binary forms, with or without
  13. * modification, are permitted provided that the following conditions
  14. * are met:
  15. *
  16. * 1. Redistributions of source code must retain the above copyright
  17. * notice, this list of conditions and the following disclaimer.
  18. * 2. Redistributions in binary form must reproduce the above copyright
  19. * notice, this list of conditions and the following disclaimer in the
  20. * documentation and/or other materials provided with the distribution.
  21. * 3. Neither the name of the University nor the names of its
  22. * contributors may be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  26. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  27. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  28. * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  29. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  30. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  31. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  32. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  33. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  34. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  35. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. *
  37. * $Id$
  38. */
  39. #include <linux/module.h>
  40. #include <linux/init.h>
  41. #include <linux/types.h>
  42. #include <linux/slab.h>
  43. #include <linux/sched.h>
  44. #include <linux/pagemap.h>
  45. #include <linux/sunrpc/clnt.h>
  46. #include <linux/sunrpc/auth.h>
  47. #include <linux/sunrpc/auth_gss.h>
  48. #include <linux/sunrpc/svcauth_gss.h>
  49. #include <linux/sunrpc/gss_err.h>
  50. #include <linux/workqueue.h>
  51. #include <linux/sunrpc/rpc_pipe_fs.h>
  52. #include <linux/sunrpc/gss_api.h>
  53. #include <asm/uaccess.h>
  54. static struct rpc_authops authgss_ops;
  55. static struct rpc_credops gss_credops;
  56. #ifdef RPC_DEBUG
  57. # define RPCDBG_FACILITY RPCDBG_AUTH
  58. #endif
  59. #define NFS_NGROUPS 16
  60. #define GSS_CRED_EXPIRE (60 * HZ) /* XXX: reasonable? */
  61. #define GSS_CRED_SLACK 1024 /* XXX: unused */
  62. /* length of a krb5 verifier (48), plus data added before arguments when
  63. * using integrity (two 4-byte integers): */
  64. #define GSS_VERF_SLACK 56
  65. /* XXX this define must match the gssd define
  66. * as it is passed to gssd to signal the use of
  67. * machine creds should be part of the shared rpc interface */
  68. #define CA_RUN_AS_MACHINE 0x00000200
  69. /* dump the buffer in `emacs-hexl' style */
  70. #define isprint(c) ((c > 0x1f) && (c < 0x7f))
  71. static DEFINE_RWLOCK(gss_ctx_lock);
  72. struct gss_auth {
  73. struct rpc_auth rpc_auth;
  74. struct gss_api_mech *mech;
  75. enum rpc_gss_svc service;
  76. struct list_head upcalls;
  77. struct rpc_clnt *client;
  78. struct dentry *dentry;
  79. spinlock_t lock;
  80. };
  81. static void gss_destroy_ctx(struct gss_cl_ctx *);
  82. static struct rpc_pipe_ops gss_upcall_ops;
  83. void
  84. print_hexl(u32 *p, u_int length, u_int offset)
  85. {
  86. u_int i, j, jm;
  87. u8 c, *cp;
  88. dprintk("RPC: print_hexl: length %d\n",length);
  89. dprintk("\n");
  90. cp = (u8 *) p;
  91. for (i = 0; i < length; i += 0x10) {
  92. dprintk(" %04x: ", (u_int)(i + offset));
  93. jm = length - i;
  94. jm = jm > 16 ? 16 : jm;
  95. for (j = 0; j < jm; j++) {
  96. if ((j % 2) == 1)
  97. dprintk("%02x ", (u_int)cp[i+j]);
  98. else
  99. dprintk("%02x", (u_int)cp[i+j]);
  100. }
  101. for (; j < 16; j++) {
  102. if ((j % 2) == 1)
  103. dprintk(" ");
  104. else
  105. dprintk(" ");
  106. }
  107. dprintk(" ");
  108. for (j = 0; j < jm; j++) {
  109. c = cp[i+j];
  110. c = isprint(c) ? c : '.';
  111. dprintk("%c", c);
  112. }
  113. dprintk("\n");
  114. }
  115. }
  116. EXPORT_SYMBOL(print_hexl);
  117. static inline struct gss_cl_ctx *
  118. gss_get_ctx(struct gss_cl_ctx *ctx)
  119. {
  120. atomic_inc(&ctx->count);
  121. return ctx;
  122. }
  123. static inline void
  124. gss_put_ctx(struct gss_cl_ctx *ctx)
  125. {
  126. if (atomic_dec_and_test(&ctx->count))
  127. gss_destroy_ctx(ctx);
  128. }
  129. static void
  130. gss_cred_set_ctx(struct rpc_cred *cred, struct gss_cl_ctx *ctx)
  131. {
  132. struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
  133. struct gss_cl_ctx *old;
  134. write_lock(&gss_ctx_lock);
  135. old = gss_cred->gc_ctx;
  136. gss_cred->gc_ctx = ctx;
  137. cred->cr_flags |= RPCAUTH_CRED_UPTODATE;
  138. cred->cr_flags &= ~RPCAUTH_CRED_NEW;
  139. write_unlock(&gss_ctx_lock);
  140. if (old)
  141. gss_put_ctx(old);
  142. }
  143. static int
  144. gss_cred_is_uptodate_ctx(struct rpc_cred *cred)
  145. {
  146. struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
  147. int res = 0;
  148. read_lock(&gss_ctx_lock);
  149. if ((cred->cr_flags & RPCAUTH_CRED_UPTODATE) && gss_cred->gc_ctx)
  150. res = 1;
  151. read_unlock(&gss_ctx_lock);
  152. return res;
  153. }
  154. static const void *
  155. simple_get_bytes(const void *p, const void *end, void *res, size_t len)
  156. {
  157. const void *q = (const void *)((const char *)p + len);
  158. if (unlikely(q > end || q < p))
  159. return ERR_PTR(-EFAULT);
  160. memcpy(res, p, len);
  161. return q;
  162. }
  163. static inline const void *
  164. simple_get_netobj(const void *p, const void *end, struct xdr_netobj *dest)
  165. {
  166. const void *q;
  167. unsigned int len;
  168. p = simple_get_bytes(p, end, &len, sizeof(len));
  169. if (IS_ERR(p))
  170. return p;
  171. q = (const void *)((const char *)p + len);
  172. if (unlikely(q > end || q < p))
  173. return ERR_PTR(-EFAULT);
  174. dest->data = kmemdup(p, len, GFP_KERNEL);
  175. if (unlikely(dest->data == NULL))
  176. return ERR_PTR(-ENOMEM);
  177. dest->len = len;
  178. return q;
  179. }
  180. static struct gss_cl_ctx *
  181. gss_cred_get_ctx(struct rpc_cred *cred)
  182. {
  183. struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
  184. struct gss_cl_ctx *ctx = NULL;
  185. read_lock(&gss_ctx_lock);
  186. if (gss_cred->gc_ctx)
  187. ctx = gss_get_ctx(gss_cred->gc_ctx);
  188. read_unlock(&gss_ctx_lock);
  189. return ctx;
  190. }
  191. static struct gss_cl_ctx *
  192. gss_alloc_context(void)
  193. {
  194. struct gss_cl_ctx *ctx;
  195. ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
  196. if (ctx != NULL) {
  197. ctx->gc_proc = RPC_GSS_PROC_DATA;
  198. ctx->gc_seq = 1; /* NetApp 6.4R1 doesn't accept seq. no. 0 */
  199. spin_lock_init(&ctx->gc_seq_lock);
  200. atomic_set(&ctx->count,1);
  201. }
  202. return ctx;
  203. }
  204. #define GSSD_MIN_TIMEOUT (60 * 60)
  205. static const void *
  206. gss_fill_context(const void *p, const void *end, struct gss_cl_ctx *ctx, struct gss_api_mech *gm)
  207. {
  208. const void *q;
  209. unsigned int seclen;
  210. unsigned int timeout;
  211. u32 window_size;
  212. int ret;
  213. /* First unsigned int gives the lifetime (in seconds) of the cred */
  214. p = simple_get_bytes(p, end, &timeout, sizeof(timeout));
  215. if (IS_ERR(p))
  216. goto err;
  217. if (timeout == 0)
  218. timeout = GSSD_MIN_TIMEOUT;
  219. ctx->gc_expiry = jiffies + (unsigned long)timeout * HZ * 3 / 4;
  220. /* Sequence number window. Determines the maximum number of simultaneous requests */
  221. p = simple_get_bytes(p, end, &window_size, sizeof(window_size));
  222. if (IS_ERR(p))
  223. goto err;
  224. ctx->gc_win = window_size;
  225. /* gssd signals an error by passing ctx->gc_win = 0: */
  226. if (ctx->gc_win == 0) {
  227. /* in which case, p points to an error code which we ignore */
  228. p = ERR_PTR(-EACCES);
  229. goto err;
  230. }
  231. /* copy the opaque wire context */
  232. p = simple_get_netobj(p, end, &ctx->gc_wire_ctx);
  233. if (IS_ERR(p))
  234. goto err;
  235. /* import the opaque security context */
  236. p = simple_get_bytes(p, end, &seclen, sizeof(seclen));
  237. if (IS_ERR(p))
  238. goto err;
  239. q = (const void *)((const char *)p + seclen);
  240. if (unlikely(q > end || q < p)) {
  241. p = ERR_PTR(-EFAULT);
  242. goto err;
  243. }
  244. ret = gss_import_sec_context(p, seclen, gm, &ctx->gc_gss_ctx);
  245. if (ret < 0) {
  246. p = ERR_PTR(ret);
  247. goto err;
  248. }
  249. return q;
  250. err:
  251. dprintk("RPC: gss_fill_context returning %ld\n", -PTR_ERR(p));
  252. return p;
  253. }
  254. struct gss_upcall_msg {
  255. atomic_t count;
  256. uid_t uid;
  257. struct rpc_pipe_msg msg;
  258. struct list_head list;
  259. struct gss_auth *auth;
  260. struct rpc_wait_queue rpc_waitqueue;
  261. wait_queue_head_t waitqueue;
  262. struct gss_cl_ctx *ctx;
  263. };
  264. static void
  265. gss_release_msg(struct gss_upcall_msg *gss_msg)
  266. {
  267. if (!atomic_dec_and_test(&gss_msg->count))
  268. return;
  269. BUG_ON(!list_empty(&gss_msg->list));
  270. if (gss_msg->ctx != NULL)
  271. gss_put_ctx(gss_msg->ctx);
  272. kfree(gss_msg);
  273. }
  274. static struct gss_upcall_msg *
  275. __gss_find_upcall(struct gss_auth *gss_auth, uid_t uid)
  276. {
  277. struct gss_upcall_msg *pos;
  278. list_for_each_entry(pos, &gss_auth->upcalls, list) {
  279. if (pos->uid != uid)
  280. continue;
  281. atomic_inc(&pos->count);
  282. dprintk("RPC: gss_find_upcall found msg %p\n", pos);
  283. return pos;
  284. }
  285. dprintk("RPC: gss_find_upcall found nothing\n");
  286. return NULL;
  287. }
  288. /* Try to add a upcall to the pipefs queue.
  289. * If an upcall owned by our uid already exists, then we return a reference
  290. * to that upcall instead of adding the new upcall.
  291. */
  292. static inline struct gss_upcall_msg *
  293. gss_add_msg(struct gss_auth *gss_auth, struct gss_upcall_msg *gss_msg)
  294. {
  295. struct gss_upcall_msg *old;
  296. spin_lock(&gss_auth->lock);
  297. old = __gss_find_upcall(gss_auth, gss_msg->uid);
  298. if (old == NULL) {
  299. atomic_inc(&gss_msg->count);
  300. list_add(&gss_msg->list, &gss_auth->upcalls);
  301. } else
  302. gss_msg = old;
  303. spin_unlock(&gss_auth->lock);
  304. return gss_msg;
  305. }
  306. static void
  307. __gss_unhash_msg(struct gss_upcall_msg *gss_msg)
  308. {
  309. if (list_empty(&gss_msg->list))
  310. return;
  311. list_del_init(&gss_msg->list);
  312. rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
  313. wake_up_all(&gss_msg->waitqueue);
  314. atomic_dec(&gss_msg->count);
  315. }
  316. static void
  317. gss_unhash_msg(struct gss_upcall_msg *gss_msg)
  318. {
  319. struct gss_auth *gss_auth = gss_msg->auth;
  320. spin_lock(&gss_auth->lock);
  321. __gss_unhash_msg(gss_msg);
  322. spin_unlock(&gss_auth->lock);
  323. }
  324. static void
  325. gss_upcall_callback(struct rpc_task *task)
  326. {
  327. struct gss_cred *gss_cred = container_of(task->tk_msg.rpc_cred,
  328. struct gss_cred, gc_base);
  329. struct gss_upcall_msg *gss_msg = gss_cred->gc_upcall;
  330. BUG_ON(gss_msg == NULL);
  331. if (gss_msg->ctx)
  332. gss_cred_set_ctx(task->tk_msg.rpc_cred, gss_get_ctx(gss_msg->ctx));
  333. else
  334. task->tk_status = gss_msg->msg.errno;
  335. spin_lock(&gss_msg->auth->lock);
  336. gss_cred->gc_upcall = NULL;
  337. rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
  338. spin_unlock(&gss_msg->auth->lock);
  339. gss_release_msg(gss_msg);
  340. }
  341. static inline struct gss_upcall_msg *
  342. gss_alloc_msg(struct gss_auth *gss_auth, uid_t uid)
  343. {
  344. struct gss_upcall_msg *gss_msg;
  345. gss_msg = kzalloc(sizeof(*gss_msg), GFP_KERNEL);
  346. if (gss_msg != NULL) {
  347. INIT_LIST_HEAD(&gss_msg->list);
  348. rpc_init_wait_queue(&gss_msg->rpc_waitqueue, "RPCSEC_GSS upcall waitq");
  349. init_waitqueue_head(&gss_msg->waitqueue);
  350. atomic_set(&gss_msg->count, 1);
  351. gss_msg->msg.data = &gss_msg->uid;
  352. gss_msg->msg.len = sizeof(gss_msg->uid);
  353. gss_msg->uid = uid;
  354. gss_msg->auth = gss_auth;
  355. }
  356. return gss_msg;
  357. }
  358. static struct gss_upcall_msg *
  359. gss_setup_upcall(struct rpc_clnt *clnt, struct gss_auth *gss_auth, struct rpc_cred *cred)
  360. {
  361. struct gss_upcall_msg *gss_new, *gss_msg;
  362. gss_new = gss_alloc_msg(gss_auth, cred->cr_uid);
  363. if (gss_new == NULL)
  364. return ERR_PTR(-ENOMEM);
  365. gss_msg = gss_add_msg(gss_auth, gss_new);
  366. if (gss_msg == gss_new) {
  367. int res = rpc_queue_upcall(gss_auth->dentry->d_inode, &gss_new->msg);
  368. if (res) {
  369. gss_unhash_msg(gss_new);
  370. gss_msg = ERR_PTR(res);
  371. }
  372. } else
  373. gss_release_msg(gss_new);
  374. return gss_msg;
  375. }
  376. static inline int
  377. gss_refresh_upcall(struct rpc_task *task)
  378. {
  379. struct rpc_cred *cred = task->tk_msg.rpc_cred;
  380. struct gss_auth *gss_auth = container_of(task->tk_client->cl_auth,
  381. struct gss_auth, rpc_auth);
  382. struct gss_cred *gss_cred = container_of(cred,
  383. struct gss_cred, gc_base);
  384. struct gss_upcall_msg *gss_msg;
  385. int err = 0;
  386. dprintk("RPC: %4u gss_refresh_upcall for uid %u\n", task->tk_pid, cred->cr_uid);
  387. gss_msg = gss_setup_upcall(task->tk_client, gss_auth, cred);
  388. if (IS_ERR(gss_msg)) {
  389. err = PTR_ERR(gss_msg);
  390. goto out;
  391. }
  392. spin_lock(&gss_auth->lock);
  393. if (gss_cred->gc_upcall != NULL)
  394. rpc_sleep_on(&gss_cred->gc_upcall->rpc_waitqueue, task, NULL, NULL);
  395. else if (gss_msg->ctx == NULL && gss_msg->msg.errno >= 0) {
  396. task->tk_timeout = 0;
  397. gss_cred->gc_upcall = gss_msg;
  398. /* gss_upcall_callback will release the reference to gss_upcall_msg */
  399. atomic_inc(&gss_msg->count);
  400. rpc_sleep_on(&gss_msg->rpc_waitqueue, task, gss_upcall_callback, NULL);
  401. } else
  402. err = gss_msg->msg.errno;
  403. spin_unlock(&gss_auth->lock);
  404. gss_release_msg(gss_msg);
  405. out:
  406. dprintk("RPC: %4u gss_refresh_upcall for uid %u result %d\n", task->tk_pid,
  407. cred->cr_uid, err);
  408. return err;
  409. }
  410. static inline int
  411. gss_create_upcall(struct gss_auth *gss_auth, struct gss_cred *gss_cred)
  412. {
  413. struct rpc_cred *cred = &gss_cred->gc_base;
  414. struct gss_upcall_msg *gss_msg;
  415. DEFINE_WAIT(wait);
  416. int err = 0;
  417. dprintk("RPC: gss_upcall for uid %u\n", cred->cr_uid);
  418. gss_msg = gss_setup_upcall(gss_auth->client, gss_auth, cred);
  419. if (IS_ERR(gss_msg)) {
  420. err = PTR_ERR(gss_msg);
  421. goto out;
  422. }
  423. for (;;) {
  424. prepare_to_wait(&gss_msg->waitqueue, &wait, TASK_INTERRUPTIBLE);
  425. spin_lock(&gss_auth->lock);
  426. if (gss_msg->ctx != NULL || gss_msg->msg.errno < 0) {
  427. spin_unlock(&gss_auth->lock);
  428. break;
  429. }
  430. spin_unlock(&gss_auth->lock);
  431. if (signalled()) {
  432. err = -ERESTARTSYS;
  433. goto out_intr;
  434. }
  435. schedule();
  436. }
  437. if (gss_msg->ctx)
  438. gss_cred_set_ctx(cred, gss_get_ctx(gss_msg->ctx));
  439. else
  440. err = gss_msg->msg.errno;
  441. out_intr:
  442. finish_wait(&gss_msg->waitqueue, &wait);
  443. gss_release_msg(gss_msg);
  444. out:
  445. dprintk("RPC: gss_create_upcall for uid %u result %d\n", cred->cr_uid, err);
  446. return err;
  447. }
  448. static ssize_t
  449. gss_pipe_upcall(struct file *filp, struct rpc_pipe_msg *msg,
  450. char __user *dst, size_t buflen)
  451. {
  452. char *data = (char *)msg->data + msg->copied;
  453. ssize_t mlen = msg->len;
  454. ssize_t left;
  455. if (mlen > buflen)
  456. mlen = buflen;
  457. left = copy_to_user(dst, data, mlen);
  458. if (left < 0) {
  459. msg->errno = left;
  460. return left;
  461. }
  462. mlen -= left;
  463. msg->copied += mlen;
  464. msg->errno = 0;
  465. return mlen;
  466. }
  467. #define MSG_BUF_MAXSIZE 1024
  468. static ssize_t
  469. gss_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
  470. {
  471. const void *p, *end;
  472. void *buf;
  473. struct rpc_clnt *clnt;
  474. struct gss_auth *gss_auth;
  475. struct rpc_cred *cred;
  476. struct gss_upcall_msg *gss_msg;
  477. struct gss_cl_ctx *ctx;
  478. uid_t uid;
  479. int err = -EFBIG;
  480. if (mlen > MSG_BUF_MAXSIZE)
  481. goto out;
  482. err = -ENOMEM;
  483. buf = kmalloc(mlen, GFP_KERNEL);
  484. if (!buf)
  485. goto out;
  486. clnt = RPC_I(filp->f_dentry->d_inode)->private;
  487. err = -EFAULT;
  488. if (copy_from_user(buf, src, mlen))
  489. goto err;
  490. end = (const void *)((char *)buf + mlen);
  491. p = simple_get_bytes(buf, end, &uid, sizeof(uid));
  492. if (IS_ERR(p)) {
  493. err = PTR_ERR(p);
  494. goto err;
  495. }
  496. err = -ENOMEM;
  497. ctx = gss_alloc_context();
  498. if (ctx == NULL)
  499. goto err;
  500. err = 0;
  501. gss_auth = container_of(clnt->cl_auth, struct gss_auth, rpc_auth);
  502. p = gss_fill_context(p, end, ctx, gss_auth->mech);
  503. if (IS_ERR(p)) {
  504. err = PTR_ERR(p);
  505. if (err != -EACCES)
  506. goto err_put_ctx;
  507. }
  508. spin_lock(&gss_auth->lock);
  509. gss_msg = __gss_find_upcall(gss_auth, uid);
  510. if (gss_msg) {
  511. if (err == 0 && gss_msg->ctx == NULL)
  512. gss_msg->ctx = gss_get_ctx(ctx);
  513. gss_msg->msg.errno = err;
  514. __gss_unhash_msg(gss_msg);
  515. spin_unlock(&gss_auth->lock);
  516. gss_release_msg(gss_msg);
  517. } else {
  518. struct auth_cred acred = { .uid = uid };
  519. spin_unlock(&gss_auth->lock);
  520. cred = rpcauth_lookup_credcache(clnt->cl_auth, &acred, RPCAUTH_LOOKUP_NEW);
  521. if (IS_ERR(cred)) {
  522. err = PTR_ERR(cred);
  523. goto err_put_ctx;
  524. }
  525. gss_cred_set_ctx(cred, gss_get_ctx(ctx));
  526. }
  527. gss_put_ctx(ctx);
  528. kfree(buf);
  529. dprintk("RPC: gss_pipe_downcall returning length %Zu\n", mlen);
  530. return mlen;
  531. err_put_ctx:
  532. gss_put_ctx(ctx);
  533. err:
  534. kfree(buf);
  535. out:
  536. dprintk("RPC: gss_pipe_downcall returning %d\n", err);
  537. return err;
  538. }
  539. static void
  540. gss_pipe_release(struct inode *inode)
  541. {
  542. struct rpc_inode *rpci = RPC_I(inode);
  543. struct rpc_clnt *clnt;
  544. struct rpc_auth *auth;
  545. struct gss_auth *gss_auth;
  546. clnt = rpci->private;
  547. auth = clnt->cl_auth;
  548. gss_auth = container_of(auth, struct gss_auth, rpc_auth);
  549. spin_lock(&gss_auth->lock);
  550. while (!list_empty(&gss_auth->upcalls)) {
  551. struct gss_upcall_msg *gss_msg;
  552. gss_msg = list_entry(gss_auth->upcalls.next,
  553. struct gss_upcall_msg, list);
  554. gss_msg->msg.errno = -EPIPE;
  555. atomic_inc(&gss_msg->count);
  556. __gss_unhash_msg(gss_msg);
  557. spin_unlock(&gss_auth->lock);
  558. gss_release_msg(gss_msg);
  559. spin_lock(&gss_auth->lock);
  560. }
  561. spin_unlock(&gss_auth->lock);
  562. }
  563. static void
  564. gss_pipe_destroy_msg(struct rpc_pipe_msg *msg)
  565. {
  566. struct gss_upcall_msg *gss_msg = container_of(msg, struct gss_upcall_msg, msg);
  567. static unsigned long ratelimit;
  568. if (msg->errno < 0) {
  569. dprintk("RPC: gss_pipe_destroy_msg releasing msg %p\n",
  570. gss_msg);
  571. atomic_inc(&gss_msg->count);
  572. gss_unhash_msg(gss_msg);
  573. if (msg->errno == -ETIMEDOUT) {
  574. unsigned long now = jiffies;
  575. if (time_after(now, ratelimit)) {
  576. printk(KERN_WARNING "RPC: AUTH_GSS upcall timed out.\n"
  577. "Please check user daemon is running!\n");
  578. ratelimit = now + 15*HZ;
  579. }
  580. }
  581. gss_release_msg(gss_msg);
  582. }
  583. }
  584. /*
  585. * NOTE: we have the opportunity to use different
  586. * parameters based on the input flavor (which must be a pseudoflavor)
  587. */
  588. static struct rpc_auth *
  589. gss_create(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
  590. {
  591. struct gss_auth *gss_auth;
  592. struct rpc_auth * auth;
  593. int err = -ENOMEM; /* XXX? */
  594. dprintk("RPC: creating GSS authenticator for client %p\n",clnt);
  595. if (!try_module_get(THIS_MODULE))
  596. return ERR_PTR(err);
  597. if (!(gss_auth = kmalloc(sizeof(*gss_auth), GFP_KERNEL)))
  598. goto out_dec;
  599. gss_auth->client = clnt;
  600. err = -EINVAL;
  601. gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
  602. if (!gss_auth->mech) {
  603. printk(KERN_WARNING "%s: Pseudoflavor %d not found!",
  604. __FUNCTION__, flavor);
  605. goto err_free;
  606. }
  607. gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
  608. if (gss_auth->service == 0)
  609. goto err_put_mech;
  610. INIT_LIST_HEAD(&gss_auth->upcalls);
  611. spin_lock_init(&gss_auth->lock);
  612. auth = &gss_auth->rpc_auth;
  613. auth->au_cslack = GSS_CRED_SLACK >> 2;
  614. auth->au_rslack = GSS_VERF_SLACK >> 2;
  615. auth->au_ops = &authgss_ops;
  616. auth->au_flavor = flavor;
  617. atomic_set(&auth->au_count, 1);
  618. err = rpcauth_init_credcache(auth, GSS_CRED_EXPIRE);
  619. if (err)
  620. goto err_put_mech;
  621. gss_auth->dentry = rpc_mkpipe(clnt->cl_dentry, gss_auth->mech->gm_name,
  622. clnt, &gss_upcall_ops, RPC_PIPE_WAIT_FOR_OPEN);
  623. if (IS_ERR(gss_auth->dentry)) {
  624. err = PTR_ERR(gss_auth->dentry);
  625. goto err_put_mech;
  626. }
  627. return auth;
  628. err_put_mech:
  629. gss_mech_put(gss_auth->mech);
  630. err_free:
  631. kfree(gss_auth);
  632. out_dec:
  633. module_put(THIS_MODULE);
  634. return ERR_PTR(err);
  635. }
  636. static void
  637. gss_destroy(struct rpc_auth *auth)
  638. {
  639. struct gss_auth *gss_auth;
  640. dprintk("RPC: destroying GSS authenticator %p flavor %d\n",
  641. auth, auth->au_flavor);
  642. gss_auth = container_of(auth, struct gss_auth, rpc_auth);
  643. rpc_unlink(gss_auth->dentry);
  644. gss_auth->dentry = NULL;
  645. gss_mech_put(gss_auth->mech);
  646. rpcauth_free_credcache(auth);
  647. kfree(gss_auth);
  648. module_put(THIS_MODULE);
  649. }
  650. /* gss_destroy_cred (and gss_destroy_ctx) are used to clean up after failure
  651. * to create a new cred or context, so they check that things have been
  652. * allocated before freeing them. */
  653. static void
  654. gss_destroy_ctx(struct gss_cl_ctx *ctx)
  655. {
  656. dprintk("RPC: gss_destroy_ctx\n");
  657. if (ctx->gc_gss_ctx)
  658. gss_delete_sec_context(&ctx->gc_gss_ctx);
  659. kfree(ctx->gc_wire_ctx.data);
  660. kfree(ctx);
  661. }
  662. static void
  663. gss_destroy_cred(struct rpc_cred *rc)
  664. {
  665. struct gss_cred *cred = container_of(rc, struct gss_cred, gc_base);
  666. dprintk("RPC: gss_destroy_cred \n");
  667. if (cred->gc_ctx)
  668. gss_put_ctx(cred->gc_ctx);
  669. kfree(cred);
  670. }
  671. /*
  672. * Lookup RPCSEC_GSS cred for the current process
  673. */
  674. static struct rpc_cred *
  675. gss_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
  676. {
  677. return rpcauth_lookup_credcache(auth, acred, flags);
  678. }
  679. static struct rpc_cred *
  680. gss_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int flags)
  681. {
  682. struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
  683. struct gss_cred *cred = NULL;
  684. int err = -ENOMEM;
  685. dprintk("RPC: gss_create_cred for uid %d, flavor %d\n",
  686. acred->uid, auth->au_flavor);
  687. if (!(cred = kzalloc(sizeof(*cred), GFP_KERNEL)))
  688. goto out_err;
  689. atomic_set(&cred->gc_count, 1);
  690. cred->gc_uid = acred->uid;
  691. /*
  692. * Note: in order to force a call to call_refresh(), we deliberately
  693. * fail to flag the credential as RPCAUTH_CRED_UPTODATE.
  694. */
  695. cred->gc_flags = 0;
  696. cred->gc_base.cr_ops = &gss_credops;
  697. cred->gc_base.cr_flags = RPCAUTH_CRED_NEW;
  698. cred->gc_service = gss_auth->service;
  699. return &cred->gc_base;
  700. out_err:
  701. dprintk("RPC: gss_create_cred failed with error %d\n", err);
  702. return ERR_PTR(err);
  703. }
  704. static int
  705. gss_cred_init(struct rpc_auth *auth, struct rpc_cred *cred)
  706. {
  707. struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
  708. struct gss_cred *gss_cred = container_of(cred,struct gss_cred, gc_base);
  709. int err;
  710. do {
  711. err = gss_create_upcall(gss_auth, gss_cred);
  712. } while (err == -EAGAIN);
  713. return err;
  714. }
  715. static int
  716. gss_match(struct auth_cred *acred, struct rpc_cred *rc, int flags)
  717. {
  718. struct gss_cred *gss_cred = container_of(rc, struct gss_cred, gc_base);
  719. /*
  720. * If the searchflags have set RPCAUTH_LOOKUP_NEW, then
  721. * we don't really care if the credential has expired or not,
  722. * since the caller should be prepared to reinitialise it.
  723. */
  724. if ((flags & RPCAUTH_LOOKUP_NEW) && (rc->cr_flags & RPCAUTH_CRED_NEW))
  725. goto out;
  726. /* Don't match with creds that have expired. */
  727. if (gss_cred->gc_ctx && time_after(jiffies, gss_cred->gc_ctx->gc_expiry))
  728. return 0;
  729. out:
  730. return (rc->cr_uid == acred->uid);
  731. }
  732. /*
  733. * Marshal credentials.
  734. * Maybe we should keep a cached credential for performance reasons.
  735. */
  736. static __be32 *
  737. gss_marshal(struct rpc_task *task, __be32 *p)
  738. {
  739. struct rpc_cred *cred = task->tk_msg.rpc_cred;
  740. struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
  741. gc_base);
  742. struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
  743. __be32 *cred_len;
  744. struct rpc_rqst *req = task->tk_rqstp;
  745. u32 maj_stat = 0;
  746. struct xdr_netobj mic;
  747. struct kvec iov;
  748. struct xdr_buf verf_buf;
  749. dprintk("RPC: %4u gss_marshal\n", task->tk_pid);
  750. *p++ = htonl(RPC_AUTH_GSS);
  751. cred_len = p++;
  752. spin_lock(&ctx->gc_seq_lock);
  753. req->rq_seqno = ctx->gc_seq++;
  754. spin_unlock(&ctx->gc_seq_lock);
  755. *p++ = htonl((u32) RPC_GSS_VERSION);
  756. *p++ = htonl((u32) ctx->gc_proc);
  757. *p++ = htonl((u32) req->rq_seqno);
  758. *p++ = htonl((u32) gss_cred->gc_service);
  759. p = xdr_encode_netobj(p, &ctx->gc_wire_ctx);
  760. *cred_len = htonl((p - (cred_len + 1)) << 2);
  761. /* We compute the checksum for the verifier over the xdr-encoded bytes
  762. * starting with the xid and ending at the end of the credential: */
  763. iov.iov_base = xprt_skip_transport_header(task->tk_xprt,
  764. req->rq_snd_buf.head[0].iov_base);
  765. iov.iov_len = (u8 *)p - (u8 *)iov.iov_base;
  766. xdr_buf_from_iov(&iov, &verf_buf);
  767. /* set verifier flavor*/
  768. *p++ = htonl(RPC_AUTH_GSS);
  769. mic.data = (u8 *)(p + 1);
  770. maj_stat = gss_get_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
  771. if (maj_stat == GSS_S_CONTEXT_EXPIRED) {
  772. cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
  773. } else if (maj_stat != 0) {
  774. printk("gss_marshal: gss_get_mic FAILED (%d)\n", maj_stat);
  775. goto out_put_ctx;
  776. }
  777. p = xdr_encode_opaque(p, NULL, mic.len);
  778. gss_put_ctx(ctx);
  779. return p;
  780. out_put_ctx:
  781. gss_put_ctx(ctx);
  782. return NULL;
  783. }
  784. /*
  785. * Refresh credentials. XXX - finish
  786. */
  787. static int
  788. gss_refresh(struct rpc_task *task)
  789. {
  790. if (!gss_cred_is_uptodate_ctx(task->tk_msg.rpc_cred))
  791. return gss_refresh_upcall(task);
  792. return 0;
  793. }
  794. static __be32 *
  795. gss_validate(struct rpc_task *task, __be32 *p)
  796. {
  797. struct rpc_cred *cred = task->tk_msg.rpc_cred;
  798. struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
  799. __be32 seq;
  800. struct kvec iov;
  801. struct xdr_buf verf_buf;
  802. struct xdr_netobj mic;
  803. u32 flav,len;
  804. u32 maj_stat;
  805. dprintk("RPC: %4u gss_validate\n", task->tk_pid);
  806. flav = ntohl(*p++);
  807. if ((len = ntohl(*p++)) > RPC_MAX_AUTH_SIZE)
  808. goto out_bad;
  809. if (flav != RPC_AUTH_GSS)
  810. goto out_bad;
  811. seq = htonl(task->tk_rqstp->rq_seqno);
  812. iov.iov_base = &seq;
  813. iov.iov_len = sizeof(seq);
  814. xdr_buf_from_iov(&iov, &verf_buf);
  815. mic.data = (u8 *)p;
  816. mic.len = len;
  817. maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &verf_buf, &mic);
  818. if (maj_stat == GSS_S_CONTEXT_EXPIRED)
  819. cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
  820. if (maj_stat)
  821. goto out_bad;
  822. /* We leave it to unwrap to calculate au_rslack. For now we just
  823. * calculate the length of the verifier: */
  824. task->tk_auth->au_verfsize = XDR_QUADLEN(len) + 2;
  825. gss_put_ctx(ctx);
  826. dprintk("RPC: %4u GSS gss_validate: gss_verify_mic succeeded.\n",
  827. task->tk_pid);
  828. return p + XDR_QUADLEN(len);
  829. out_bad:
  830. gss_put_ctx(ctx);
  831. dprintk("RPC: %4u gss_validate failed.\n", task->tk_pid);
  832. return NULL;
  833. }
  834. static inline int
  835. gss_wrap_req_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
  836. kxdrproc_t encode, struct rpc_rqst *rqstp, __be32 *p, void *obj)
  837. {
  838. struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
  839. struct xdr_buf integ_buf;
  840. __be32 *integ_len = NULL;
  841. struct xdr_netobj mic;
  842. u32 offset;
  843. __be32 *q;
  844. struct kvec *iov;
  845. u32 maj_stat = 0;
  846. int status = -EIO;
  847. integ_len = p++;
  848. offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
  849. *p++ = htonl(rqstp->rq_seqno);
  850. status = encode(rqstp, p, obj);
  851. if (status)
  852. return status;
  853. if (xdr_buf_subsegment(snd_buf, &integ_buf,
  854. offset, snd_buf->len - offset))
  855. return status;
  856. *integ_len = htonl(integ_buf.len);
  857. /* guess whether we're in the head or the tail: */
  858. if (snd_buf->page_len || snd_buf->tail[0].iov_len)
  859. iov = snd_buf->tail;
  860. else
  861. iov = snd_buf->head;
  862. p = iov->iov_base + iov->iov_len;
  863. mic.data = (u8 *)(p + 1);
  864. maj_stat = gss_get_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
  865. status = -EIO; /* XXX? */
  866. if (maj_stat == GSS_S_CONTEXT_EXPIRED)
  867. cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
  868. else if (maj_stat)
  869. return status;
  870. q = xdr_encode_opaque(p, NULL, mic.len);
  871. offset = (u8 *)q - (u8 *)p;
  872. iov->iov_len += offset;
  873. snd_buf->len += offset;
  874. return 0;
  875. }
  876. static void
  877. priv_release_snd_buf(struct rpc_rqst *rqstp)
  878. {
  879. int i;
  880. for (i=0; i < rqstp->rq_enc_pages_num; i++)
  881. __free_page(rqstp->rq_enc_pages[i]);
  882. kfree(rqstp->rq_enc_pages);
  883. }
  884. static int
  885. alloc_enc_pages(struct rpc_rqst *rqstp)
  886. {
  887. struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
  888. int first, last, i;
  889. if (snd_buf->page_len == 0) {
  890. rqstp->rq_enc_pages_num = 0;
  891. return 0;
  892. }
  893. first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
  894. last = (snd_buf->page_base + snd_buf->page_len - 1) >> PAGE_CACHE_SHIFT;
  895. rqstp->rq_enc_pages_num = last - first + 1 + 1;
  896. rqstp->rq_enc_pages
  897. = kmalloc(rqstp->rq_enc_pages_num * sizeof(struct page *),
  898. GFP_NOFS);
  899. if (!rqstp->rq_enc_pages)
  900. goto out;
  901. for (i=0; i < rqstp->rq_enc_pages_num; i++) {
  902. rqstp->rq_enc_pages[i] = alloc_page(GFP_NOFS);
  903. if (rqstp->rq_enc_pages[i] == NULL)
  904. goto out_free;
  905. }
  906. rqstp->rq_release_snd_buf = priv_release_snd_buf;
  907. return 0;
  908. out_free:
  909. for (i--; i >= 0; i--) {
  910. __free_page(rqstp->rq_enc_pages[i]);
  911. }
  912. out:
  913. return -EAGAIN;
  914. }
  915. static inline int
  916. gss_wrap_req_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
  917. kxdrproc_t encode, struct rpc_rqst *rqstp, __be32 *p, void *obj)
  918. {
  919. struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
  920. u32 offset;
  921. u32 maj_stat;
  922. int status;
  923. __be32 *opaque_len;
  924. struct page **inpages;
  925. int first;
  926. int pad;
  927. struct kvec *iov;
  928. char *tmp;
  929. opaque_len = p++;
  930. offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
  931. *p++ = htonl(rqstp->rq_seqno);
  932. status = encode(rqstp, p, obj);
  933. if (status)
  934. return status;
  935. status = alloc_enc_pages(rqstp);
  936. if (status)
  937. return status;
  938. first = snd_buf->page_base >> PAGE_CACHE_SHIFT;
  939. inpages = snd_buf->pages + first;
  940. snd_buf->pages = rqstp->rq_enc_pages;
  941. snd_buf->page_base -= first << PAGE_CACHE_SHIFT;
  942. /* Give the tail its own page, in case we need extra space in the
  943. * head when wrapping: */
  944. if (snd_buf->page_len || snd_buf->tail[0].iov_len) {
  945. tmp = page_address(rqstp->rq_enc_pages[rqstp->rq_enc_pages_num - 1]);
  946. memcpy(tmp, snd_buf->tail[0].iov_base, snd_buf->tail[0].iov_len);
  947. snd_buf->tail[0].iov_base = tmp;
  948. }
  949. maj_stat = gss_wrap(ctx->gc_gss_ctx, offset, snd_buf, inpages);
  950. /* RPC_SLACK_SPACE should prevent this ever happening: */
  951. BUG_ON(snd_buf->len > snd_buf->buflen);
  952. status = -EIO;
  953. /* We're assuming that when GSS_S_CONTEXT_EXPIRED, the encryption was
  954. * done anyway, so it's safe to put the request on the wire: */
  955. if (maj_stat == GSS_S_CONTEXT_EXPIRED)
  956. cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
  957. else if (maj_stat)
  958. return status;
  959. *opaque_len = htonl(snd_buf->len - offset);
  960. /* guess whether we're in the head or the tail: */
  961. if (snd_buf->page_len || snd_buf->tail[0].iov_len)
  962. iov = snd_buf->tail;
  963. else
  964. iov = snd_buf->head;
  965. p = iov->iov_base + iov->iov_len;
  966. pad = 3 - ((snd_buf->len - offset - 1) & 3);
  967. memset(p, 0, pad);
  968. iov->iov_len += pad;
  969. snd_buf->len += pad;
  970. return 0;
  971. }
  972. static int
  973. gss_wrap_req(struct rpc_task *task,
  974. kxdrproc_t encode, void *rqstp, __be32 *p, void *obj)
  975. {
  976. struct rpc_cred *cred = task->tk_msg.rpc_cred;
  977. struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
  978. gc_base);
  979. struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
  980. int status = -EIO;
  981. dprintk("RPC: %4u gss_wrap_req\n", task->tk_pid);
  982. if (ctx->gc_proc != RPC_GSS_PROC_DATA) {
  983. /* The spec seems a little ambiguous here, but I think that not
  984. * wrapping context destruction requests makes the most sense.
  985. */
  986. status = encode(rqstp, p, obj);
  987. goto out;
  988. }
  989. switch (gss_cred->gc_service) {
  990. case RPC_GSS_SVC_NONE:
  991. status = encode(rqstp, p, obj);
  992. break;
  993. case RPC_GSS_SVC_INTEGRITY:
  994. status = gss_wrap_req_integ(cred, ctx, encode,
  995. rqstp, p, obj);
  996. break;
  997. case RPC_GSS_SVC_PRIVACY:
  998. status = gss_wrap_req_priv(cred, ctx, encode,
  999. rqstp, p, obj);
  1000. break;
  1001. }
  1002. out:
  1003. gss_put_ctx(ctx);
  1004. dprintk("RPC: %4u gss_wrap_req returning %d\n", task->tk_pid, status);
  1005. return status;
  1006. }
  1007. static inline int
  1008. gss_unwrap_resp_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
  1009. struct rpc_rqst *rqstp, __be32 **p)
  1010. {
  1011. struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
  1012. struct xdr_buf integ_buf;
  1013. struct xdr_netobj mic;
  1014. u32 data_offset, mic_offset;
  1015. u32 integ_len;
  1016. u32 maj_stat;
  1017. int status = -EIO;
  1018. integ_len = ntohl(*(*p)++);
  1019. if (integ_len & 3)
  1020. return status;
  1021. data_offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
  1022. mic_offset = integ_len + data_offset;
  1023. if (mic_offset > rcv_buf->len)
  1024. return status;
  1025. if (ntohl(*(*p)++) != rqstp->rq_seqno)
  1026. return status;
  1027. if (xdr_buf_subsegment(rcv_buf, &integ_buf, data_offset,
  1028. mic_offset - data_offset))
  1029. return status;
  1030. if (xdr_buf_read_netobj(rcv_buf, &mic, mic_offset))
  1031. return status;
  1032. maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &integ_buf, &mic);
  1033. if (maj_stat == GSS_S_CONTEXT_EXPIRED)
  1034. cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
  1035. if (maj_stat != GSS_S_COMPLETE)
  1036. return status;
  1037. return 0;
  1038. }
  1039. static inline int
  1040. gss_unwrap_resp_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
  1041. struct rpc_rqst *rqstp, __be32 **p)
  1042. {
  1043. struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
  1044. u32 offset;
  1045. u32 opaque_len;
  1046. u32 maj_stat;
  1047. int status = -EIO;
  1048. opaque_len = ntohl(*(*p)++);
  1049. offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
  1050. if (offset + opaque_len > rcv_buf->len)
  1051. return status;
  1052. /* remove padding: */
  1053. rcv_buf->len = offset + opaque_len;
  1054. maj_stat = gss_unwrap(ctx->gc_gss_ctx, offset, rcv_buf);
  1055. if (maj_stat == GSS_S_CONTEXT_EXPIRED)
  1056. cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
  1057. if (maj_stat != GSS_S_COMPLETE)
  1058. return status;
  1059. if (ntohl(*(*p)++) != rqstp->rq_seqno)
  1060. return status;
  1061. return 0;
  1062. }
  1063. static int
  1064. gss_unwrap_resp(struct rpc_task *task,
  1065. kxdrproc_t decode, void *rqstp, __be32 *p, void *obj)
  1066. {
  1067. struct rpc_cred *cred = task->tk_msg.rpc_cred;
  1068. struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
  1069. gc_base);
  1070. struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
  1071. __be32 *savedp = p;
  1072. struct kvec *head = ((struct rpc_rqst *)rqstp)->rq_rcv_buf.head;
  1073. int savedlen = head->iov_len;
  1074. int status = -EIO;
  1075. if (ctx->gc_proc != RPC_GSS_PROC_DATA)
  1076. goto out_decode;
  1077. switch (gss_cred->gc_service) {
  1078. case RPC_GSS_SVC_NONE:
  1079. break;
  1080. case RPC_GSS_SVC_INTEGRITY:
  1081. status = gss_unwrap_resp_integ(cred, ctx, rqstp, &p);
  1082. if (status)
  1083. goto out;
  1084. break;
  1085. case RPC_GSS_SVC_PRIVACY:
  1086. status = gss_unwrap_resp_priv(cred, ctx, rqstp, &p);
  1087. if (status)
  1088. goto out;
  1089. break;
  1090. }
  1091. /* take into account extra slack for integrity and privacy cases: */
  1092. task->tk_auth->au_rslack = task->tk_auth->au_verfsize + (p - savedp)
  1093. + (savedlen - head->iov_len);
  1094. out_decode:
  1095. status = decode(rqstp, p, obj);
  1096. out:
  1097. gss_put_ctx(ctx);
  1098. dprintk("RPC: %4u gss_unwrap_resp returning %d\n", task->tk_pid,
  1099. status);
  1100. return status;
  1101. }
  1102. static struct rpc_authops authgss_ops = {
  1103. .owner = THIS_MODULE,
  1104. .au_flavor = RPC_AUTH_GSS,
  1105. #ifdef RPC_DEBUG
  1106. .au_name = "RPCSEC_GSS",
  1107. #endif
  1108. .create = gss_create,
  1109. .destroy = gss_destroy,
  1110. .lookup_cred = gss_lookup_cred,
  1111. .crcreate = gss_create_cred
  1112. };
  1113. static struct rpc_credops gss_credops = {
  1114. .cr_name = "AUTH_GSS",
  1115. .crdestroy = gss_destroy_cred,
  1116. .cr_init = gss_cred_init,
  1117. .crmatch = gss_match,
  1118. .crmarshal = gss_marshal,
  1119. .crrefresh = gss_refresh,
  1120. .crvalidate = gss_validate,
  1121. .crwrap_req = gss_wrap_req,
  1122. .crunwrap_resp = gss_unwrap_resp,
  1123. };
  1124. static struct rpc_pipe_ops gss_upcall_ops = {
  1125. .upcall = gss_pipe_upcall,
  1126. .downcall = gss_pipe_downcall,
  1127. .destroy_msg = gss_pipe_destroy_msg,
  1128. .release_pipe = gss_pipe_release,
  1129. };
  1130. /*
  1131. * Initialize RPCSEC_GSS module
  1132. */
  1133. static int __init init_rpcsec_gss(void)
  1134. {
  1135. int err = 0;
  1136. err = rpcauth_register(&authgss_ops);
  1137. if (err)
  1138. goto out;
  1139. err = gss_svc_init();
  1140. if (err)
  1141. goto out_unregister;
  1142. return 0;
  1143. out_unregister:
  1144. rpcauth_unregister(&authgss_ops);
  1145. out:
  1146. return err;
  1147. }
  1148. static void __exit exit_rpcsec_gss(void)
  1149. {
  1150. gss_svc_shutdown();
  1151. rpcauth_unregister(&authgss_ops);
  1152. }
  1153. MODULE_LICENSE("GPL");
  1154. module_init(init_rpcsec_gss)
  1155. module_exit(exit_rpcsec_gss)