xref: /titanic_50/usr/src/lib/libnsl/rpc/rpc_td.c (revision 61961e0f20c7637a3846bb39786bb9dffa91dfb9)
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 #pragma ident	"%Z%%M%	%I%	%E% SMI"
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #include "mt.h"
317c478bd9Sstevel@tonic-gate #include "rpc_mt.h"
327c478bd9Sstevel@tonic-gate #include <stdio.h>
337c478bd9Sstevel@tonic-gate #include <rpc/rpc.h>
347c478bd9Sstevel@tonic-gate #include <errno.h>
357c478bd9Sstevel@tonic-gate #include <tiuser.h>
367c478bd9Sstevel@tonic-gate #include <string.h>
377c478bd9Sstevel@tonic-gate #include <stropts.h>
387c478bd9Sstevel@tonic-gate #include <netinet/tcp.h>
397c478bd9Sstevel@tonic-gate #include <stdlib.h>
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate #define	MAXOPTSIZE 64
427c478bd9Sstevel@tonic-gate 
437c478bd9Sstevel@tonic-gate int
__td_setnodelay(int fd)44*61961e0fSrobinson __td_setnodelay(int fd)
457c478bd9Sstevel@tonic-gate {
467c478bd9Sstevel@tonic-gate 	int rval = 0;
477c478bd9Sstevel@tonic-gate 	static mutex_t td_opt_lock = DEFAULTMUTEX;
487c478bd9Sstevel@tonic-gate 	static struct t_optmgmt t_optreq, t_optret;
497c478bd9Sstevel@tonic-gate 	int state;
507c478bd9Sstevel@tonic-gate 
517c478bd9Sstevel@tonic-gate 
527c478bd9Sstevel@tonic-gate 	/* VARIABLES PROTECTED BY td_opt_lock: t_optreq, t_optret */
537c478bd9Sstevel@tonic-gate 
547c478bd9Sstevel@tonic-gate 	if ((state = t_getstate(fd)) == -1)
557c478bd9Sstevel@tonic-gate 		return (-1);
567c478bd9Sstevel@tonic-gate 
57*61961e0fSrobinson 	(void) mutex_lock(&td_opt_lock);
587c478bd9Sstevel@tonic-gate 	if ((state == T_IDLE) && (t_optreq.flags != T_NEGOTIATE)) {
597c478bd9Sstevel@tonic-gate 		int i = 1;
607c478bd9Sstevel@tonic-gate 		struct opthdr *opt;
617c478bd9Sstevel@tonic-gate 
627c478bd9Sstevel@tonic-gate 		t_optreq.flags = T_NEGOTIATE;
637c478bd9Sstevel@tonic-gate 		t_optreq.opt.maxlen = MAXOPTSIZE;
64*61961e0fSrobinson 		t_optreq.opt.buf = malloc(MAXOPTSIZE);
657c478bd9Sstevel@tonic-gate 		if (t_optreq.opt.buf == NULL) {
66*61961e0fSrobinson 			(void) mutex_unlock(&td_opt_lock);
677c478bd9Sstevel@tonic-gate 			t_errno = TSYSERR;
687c478bd9Sstevel@tonic-gate 			return (-1);
697c478bd9Sstevel@tonic-gate 		}
70*61961e0fSrobinson 		/* LINTED pointer cast */
717c478bd9Sstevel@tonic-gate 		opt = (struct opthdr *)(t_optreq.opt.buf);
727c478bd9Sstevel@tonic-gate 		opt->name = TCP_NODELAY;
737c478bd9Sstevel@tonic-gate 		opt->len = 4;
747c478bd9Sstevel@tonic-gate 		opt->level = IPPROTO_TCP;
757c478bd9Sstevel@tonic-gate 		(void) memcpy((caddr_t)(t_optreq.opt.buf +
767c478bd9Sstevel@tonic-gate 				sizeof (struct opthdr)), &i, sizeof (int));
777c478bd9Sstevel@tonic-gate 		t_optreq.opt.len = (int)(sizeof (struct opthdr) +
787c478bd9Sstevel@tonic-gate 						sizeof (int));
797c478bd9Sstevel@tonic-gate 
807c478bd9Sstevel@tonic-gate 		t_optret.opt.maxlen = MAXOPTSIZE;
817c478bd9Sstevel@tonic-gate 		t_optret.opt.len = 0;
82*61961e0fSrobinson 		t_optret.opt.buf = malloc(MAXOPTSIZE);
837c478bd9Sstevel@tonic-gate 		if (t_optret.opt.buf == NULL) {
84*61961e0fSrobinson 			(void) mutex_unlock(&td_opt_lock);
857c478bd9Sstevel@tonic-gate 			free(t_optreq.opt.buf);
867c478bd9Sstevel@tonic-gate 			t_errno = TSYSERR;
877c478bd9Sstevel@tonic-gate 			return (-1);
887c478bd9Sstevel@tonic-gate 		}
897c478bd9Sstevel@tonic-gate 	}
907c478bd9Sstevel@tonic-gate 
917c478bd9Sstevel@tonic-gate 	if (state == T_IDLE)
927c478bd9Sstevel@tonic-gate 		rval = t_optmgmt(fd, &t_optreq, &t_optret);
937c478bd9Sstevel@tonic-gate 
94*61961e0fSrobinson 	(void) mutex_unlock(&td_opt_lock);
957c478bd9Sstevel@tonic-gate 	return (rval);
967c478bd9Sstevel@tonic-gate }
97