From owner-svn-src-head@freebsd.org Fri May 13 12:57:44 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 95112B395C3 for ; Fri, 13 May 2016 12:57:44 +0000 (UTC) (envelope-from alexandrosperdikomatis@gmail.com) Received: from mail-wm0-x235.google.com (mail-wm0-x235.google.com [IPv6:2a00:1450:400c:c09::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 30BAC1DC6 for ; Fri, 13 May 2016 12:57:44 +0000 (UTC) (envelope-from alexandrosperdikomatis@gmail.com) Received: by mail-wm0-x235.google.com with SMTP id v200so3353249wmv.1 for ; Fri, 13 May 2016 05:57:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to; bh=m853a3Q76xWu/I5Ao9ErDz0tpj2Vz9WvrbmCSPoBfjM=; b=NPDaGoapADXBNMe9M/W6JYX3/0X8qbNfIAHPZ7IdAWRgIsXzYGnq3q8Sex/S0ZY1HB GiXLdhw0GbuCHeKznGUweKjEwMzD1efqUL/b6wc5MK5tw+zMRxelyiaIGpjDQ5nPlFDX bO0/SSYLYmPgZPXatyJtILLywKYhc6hdywYEwuJinAyGE4EUqDC10E8VMhSiZOZFnbN3 GuyDuxJZsxfirR34PycGCRlYmWti+hG/gtSiQCml9J+Jj1VSvQUMO9Nkam5UYMcnwvqi /aq/b6OlT9ZT7ldk0o14Hw96fliRRrM09LA0tTH0StKiFvhPsPYmRMFbMjeROYyUNs0U 4hdg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to; bh=m853a3Q76xWu/I5Ao9ErDz0tpj2Vz9WvrbmCSPoBfjM=; b=EBfDeaVWqlX3VyRvkqBKykSeIn2YsnQ5WlQ0XE2rf1Ilo0lWqDuZ6CsirmYwYgVQyc y2hay3ckSjzvObpSqK8aS07F/8YoVeXNzr5IKbUsHMGOfSOyV8CD8Hw7lOM6UjvbbUDr /RXzb1Uh9wmOgaxblLn5HGj4HnyJdBTVsyEMSbnWiYUpk1hxzxJY9C3eJkf4CoKmwRut OISBn+yoMlK/xXXbHr6ffGHoHMRlpW4iepQYrG8Esa8asPlNhYR4mFnGNn8jeHzAL/Pp lI6ofRRk6SYilLJzIh/vKMruAJhbWAWNivp03ix8U5XMlelWaD4zMXiUxQtrj0xdRMr1 SMhA== X-Gm-Message-State: AOPr4FUnYhfIAay46QAEBN9CDXK3Dlv4FB+0xQ/Sq+q9qIABC6FqrcpJ4MFtTYMdJHeC2KJVGnR8zZGEU08mow== MIME-Version: 1.0 X-Received: by 10.28.85.3 with SMTP id j3mr3866529wmb.0.1463144262646; Fri, 13 May 2016 05:57:42 -0700 (PDT) Received: by 10.194.133.72 with HTTP; Fri, 13 May 2016 05:57:42 -0700 (PDT) Date: Fri, 13 May 2016 15:57:42 +0300 Message-ID: Subject: FreeBSD kernel NFS RPCGSS_KRB5 subversion commit From: =?UTF-8?B?zpHOu86tzr7Osc69zrTPgc6/z4IgzqDOtc+BzrTOuc66zr/OvM6sz4TOt8+C?= To: svn-src-head@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 May 2016 12:57:44 -0000 hello, I am writing to you since I've got no other way in mind to discuss this subject. The reason I am writing is that I know no one to help my project on FreeBSD and the kernel commision from you is a proof tha you know the subject very well. by the way, if you allow me, I would want to complain about one of your messages. at the state where + ret2 = rpc_gss_set_svc_name_call(principal, + "kerberosv5", GSS_C_INDEFINITE, NFS_PROG, NFS_VER2); + ret3 = rpc_gss_set_svc_name_call(principal, + "kerberosv5", GSS_C_INDEFINITE, NFS_PROG, NFS_VER3); + ret4 = rpc_gss_set_svc_name_call(principal, + "kerberosv5", GSS_C_INDEFINITE, NFS_PROG, NFS_VER4); + + if (!ret2 || !ret3 || !ret4) + printf("nfsd: can't register svc name\n"); it means that if one of three versions of NFS is failed to register, then kernel prints this message. So, in case where we use only verion 4, we'll allways see thie message. Does't bother me really but it confused me. Now, back to the sunbject: I would be glad if you guide me on using rpc_gss_krb5 calls on NFSv4. I have no one to discuss this, and I would love your consultance. We need NFSv4 client/server comunication on FreeBSD. yours sincerelly, Alexandros Perdikomatis