auth_gss.c 33 KB

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