xref: /illumos-gate/usr/src/lib/libnsl/rpc/rpc_td.c (revision 1da57d55)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
22*61961e0fSrobinson 
237c478bd9Sstevel@tonic-gate /*
247c478bd9Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
257c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
267c478bd9Sstevel@tonic-gate  */
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate #include "mt.h"
297c478bd9Sstevel@tonic-gate #include "rpc_mt.h"
307c478bd9Sstevel@tonic-gate #include <stdio.h>
317c478bd9Sstevel@tonic-gate #include <rpc/rpc.h>
327c478bd9Sstevel@tonic-gate #include <errno.h>
337c478bd9Sstevel@tonic-gate #include <tiuser.h>
347c478bd9Sstevel@tonic-gate #include <string.h>
357c478bd9Sstevel@tonic-gate #include <stropts.h>
367c478bd9Sstevel@tonic-gate #include <netinet/tcp.h>
377c478bd9Sstevel@tonic-gate #include <stdlib.h>
387c478bd9Sstevel@tonic-gate 
397c478bd9Sstevel@tonic-gate #define	MAXOPTSIZE 64
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate int
__td_setnodelay(int fd)42*61961e0fSrobinson __td_setnodelay(int fd)
437c478bd9Sstevel@tonic-gate {
447c478bd9Sstevel@tonic-gate 	int rval = 0;
457c478bd9Sstevel@tonic-gate 	static mutex_t td_opt_lock = DEFAULTMUTEX;
467c478bd9Sstevel@tonic-gate 	static struct t_optmgmt t_optreq, t_optret;
477c478bd9Sstevel@tonic-gate 	int state;
487c478bd9Sstevel@tonic-gate 
497c478bd9Sstevel@tonic-gate 
507c478bd9Sstevel@tonic-gate 	/* VARIABLES PROTECTED BY td_opt_lock: t_optreq, t_optret */
517c478bd9Sstevel@tonic-gate 
527c478bd9Sstevel@tonic-gate 	if ((state = t_getstate(fd)) == -1)
537c478bd9Sstevel@tonic-gate 		return (-1);
547c478bd9Sstevel@tonic-gate 
55*61961e0fSrobinson 	(void) mutex_lock(&td_opt_lock);
567c478bd9Sstevel@tonic-gate 	if ((state == T_IDLE) && (t_optreq.flags != T_NEGOTIATE)) {
577c478bd9Sstevel@tonic-gate 		int i = 1;
587c478bd9Sstevel@tonic-gate 		struct opthdr *opt;
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate 		t_optreq.flags = T_NEGOTIATE;
617c478bd9Sstevel@tonic-gate 		t_optreq.opt.maxlen = MAXOPTSIZE;
62*61961e0fSrobinson 		t_optreq.opt.buf = malloc(MAXOPTSIZE);
637c478bd9Sstevel@tonic-gate 		if (t_optreq.opt.buf == NULL) {
64*61961e0fSrobinson 			(void) mutex_unlock(&td_opt_lock);
657c478bd9Sstevel@tonic-gate 			t_errno = TSYSERR;
667c478bd9Sstevel@tonic-gate 			return (-1);
677c478bd9Sstevel@tonic-gate 		}
68*61961e0fSrobinson 		/* LINTED pointer cast */
697c478bd9Sstevel@tonic-gate 		opt = (struct opthdr *)(t_optreq.opt.buf);
707c478bd9Sstevel@tonic-gate 		opt->name = TCP_NODELAY;
717c478bd9Sstevel@tonic-gate 		opt->len = 4;
727c478bd9Sstevel@tonic-gate 		opt->level = IPPROTO_TCP;
737c478bd9Sstevel@tonic-gate 		(void) memcpy((caddr_t)(t_optreq.opt.buf +
747c478bd9Sstevel@tonic-gate 				sizeof (struct opthdr)), &i, sizeof (int));
757c478bd9Sstevel@tonic-gate 		t_optreq.opt.len = (int)(sizeof (struct opthdr) +
767c478bd9Sstevel@tonic-gate 						sizeof (int));
777c478bd9Sstevel@tonic-gate 
787c478bd9Sstevel@tonic-gate 		t_optret.opt.maxlen = MAXOPTSIZE;
797c478bd9Sstevel@tonic-gate 		t_optret.opt.len = 0;
80*61961e0fSrobinson 		t_optret.opt.buf = malloc(MAXOPTSIZE);
817c478bd9Sstevel@tonic-gate 		if (t_optret.opt.buf == NULL) {
82*61961e0fSrobinson 			(void) mutex_unlock(&td_opt_lock);
837c478bd9Sstevel@tonic-gate 			free(t_optreq.opt.buf);
847c478bd9Sstevel@tonic-gate 			t_errno = TSYSERR;
857c478bd9Sstevel@tonic-gate 			return (-1);
867c478bd9Sstevel@tonic-gate 		}
877c478bd9Sstevel@tonic-gate 	}
887c478bd9Sstevel@tonic-gate 
897c478bd9Sstevel@tonic-gate 	if (state == T_IDLE)
907c478bd9Sstevel@tonic-gate 		rval = t_optmgmt(fd, &t_optreq, &t_optret);
917c478bd9Sstevel@tonic-gate 
92*61961e0fSrobinson 	(void) mutex_unlock(&td_opt_lock);
937c478bd9Sstevel@tonic-gate 	return (rval);
947c478bd9Sstevel@tonic-gate }
95